@font-face {
  font-family: "kica";
  src: url("./fonts/if-kica.ttf");
  font-weight: normal;
  font-style: normal;
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  font-family: "Montserrat", serif;
  color: #fff;
  font-size: 16px;
  overflow-x: hidden;
  background-color: #19212a;
  background-image: url("../img/bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.main {
  padding-top: 116px;
}

.header {
  padding: 20px 0;
  position: fixed;
  z-index: 10;
  width: 100%;
  left: 0;
  top: 0;
  background: url("../img/header-bd.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

.header__burger {
  display: none;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav-item {
  font-size: 25px;
  border-bottom: 2px solid transparent;
  transition: 200ms ease all;
}

.header__nav-item:hover {
  border-color: #fff;
}

.header__nav-mob {
  display: none;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__icons img {
  max-width: 35px;
  transition: 200ms ease all;
}

.header__icon:hover img {
  transform: scale(1.1);
}

.header__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.header__tel {
  font-size: 24px;
}

.header__tel:hover {
  color: #5974cc;
}

.header .header__popup {
  font-size: 15px;
  text-decoration: underline;
}

.header .header__popup:hover {
  text-decoration: none;
}

.hero {
  min-height: 631px;
  background: url("../img/banner.webp") no-repeat;
  background-position: center;
  background-size: cover;
  padding: 90px 0;
}

.hero__text h1 {
  font-size: 48px;
}

.hero__text h1 span {
  display: block;
  text-transform: uppercase;
  font-family: "kica";
  padding-top: 5px;
}

.hero__desc {
  font-size: 30px;
  line-height: 150%;
  padding-top: 40px;
  padding-bottom: 35px;
}

.hero__logos {
  display: flex;
  gap: 25px;
  padding-bottom: 60px;
}

.hero__btns {
  display: flex;
  gap: 40px;
}

.btn-w {
  padding: 22px 15px;
  color: #000;
  display: inline-block;
  background: #fff;
  border-radius: 20px;
  font-size: 24px;
  font-weight: 500;
  transition: 200ms ease all;
}

.btn-w:hover {
  background: #bbbbbb;
}

.btn-big {
  padding: 22px 15px;
  color: #fff;
  display: inline-block;
  background: #5974cc;
  border-radius: 20px;
  font-size: 24px;
  font-weight: 500;
  transition: 200ms ease all;
  min-width: 256px;
  text-align: center;
}

.btn-big:hover {
  background: #2148c9;
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.about {
  margin-bottom: 65px;
  padding-top: 20px;
}

.about__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.about__video {
  width: 100%;
  min-width: 545px;
  max-width: 545px;
  height: 400px;
  margin-right: 25px;
  border-radius: 10px;
}

.about__video video {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about__info {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 10px;
}

.about__info-item {
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 15px;
}

.about__info-item-title {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 20px;
}

.about__info-item-desc {
  font-size: 16px;
  line-height: 138%;
}

.about__swiper-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.about__slider {
  overflow: hidden;
  height: 190px;
}

.about__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.swiper__left {
  display: inline-block;
  width: 61px;
  min-width: 61px;
  height: 62px;
  background: url("../img/arrow-left.png") no-repeat;
  transition: 200ms ease all;
}

.swiper__left:hover {
  transform: scale(1.15);
}

.swiper__right {
  display: inline-block;
  width: 61px;
  min-width: 61px;
  height: 62px;
  background: url("../img/arrow-right.png") no-repeat;
  transition: 200ms ease all;
}

.swiper__right:hover {
  transform: scale(1.15);
}

.special {
  background: url("../img/spec-2.jpg") no-repeat;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.special p {
  line-height: 150%;
  padding-bottom: 20px;
}

.special__container {
  padding-top: 30px;
  padding-bottom: 30px;
  min-height: 505px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.special__group-text {
  max-width: 60%;
}

.special__group-time {
  width: 100%;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-end;
}

.special__group-time .btn-sm {
  position: relative;
  top: -30px;
}

.special .date-container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.special .date-container .date__group {
  text-align: center;
}

.special .date-container .date__item {
  font-size: 70px;
  border-radius: 10px;
  font-weight: 600;
  background: #fff;
  color: #000;
  padding: 10px;
  min-width: 120px;
}

.special .date-container .divider {
  font-size: 60px;
  position: relative;
  top: -20px;
}

.special .date-container span {
  font-size: 18px;
  display: inline-flex;
  padding-top: 10px;
}

.title-def {
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 35px;
}

.subtitle {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 25px;
}

.btn-sm {
  padding: 13px 17px;
  color: #fff;
  display: inline-block;
  background: #5974cc;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  transition: 200ms ease all;
  min-width: 180px;
  text-align: center;
}

.btn-sm:hover {
  background: #2148c9;
}

.btn-sm-w {
  padding: 13px 17px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  transition: 200ms ease all;
  min-width: 180px;
  text-align: center;
  color: #000;
  display: inline-block;
  background: #fff;
}

.btn-sm-w:hover {
  background: #bbbbbb;
}

.events {
  padding-top: 60px;
  margin-bottom: 55px;
}

.events__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 35px;
  grid-column-gap: 20px;
}

.events__item-holder {
  position: relative;
  height: 335px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 20px;
}

.events__item-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
  transition: 800ms ease all;
}

.events__item-title {
  width: 100%;
  border-radius: 0 0 20px 20px;
  padding: 25px;
  position: relative;
  z-index: 3;
  font-size: 24px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.7);
}

.events__item:hover img {
  transform: scale(1.15);
}

.kviz {
  min-height: 1184px;
  background: url("../img/kviz.webp") no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 60px;
}

.kviz__title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  padding-bottom: 40px;
}

.kviz__title-pink {
  text-align: center;
  font-size: 24px;
  color: #e978fd;
  font-weight: 800;
}

.kviz__list {
  max-width: 500px;
  margin: 50px auto 0;
}

.kviz__list-item {
  font-size: 18px;
  padding-left: 60px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  position: relative;
}

.kviz__list-item::before {
  content: url("../img/mic.png");
  position: absolute;
  left: 0;
}

.kviz__info {
  text-align: center;
  max-width: 550px;
  margin: 30px auto 0;
  padding: 25px 25px 10px;
  border-radius: 10px;
  border: 2px solid #fff;
}

.kviz__info-title {
  color: #e4dac7;
  font-size: 21px;
  font-weight: 600;
  padding-bottom: 20px;
}

.kviz__info-desc {
  font-size: 25px;
  font-weight: 600;
}

.kviz__form {
  width: 794px;
  display: block;
  margin: 50px auto 0;
  background: #fff;
  border-radius: 10px;
  border: 3px solid #e978fd;
}

.kviz__form-header {
  background: #1e1d1c;
  color: #fff;
  padding: 20px;
}

.kviz__form-title {
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 20px;
}

.kviz__form-desc {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.kviz__form-step {
  padding: 20px 30px 30px;
  color: #000;
}

.kviz__form-step--hidden {
  display: none;
}

.kviz__form-step-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 20px;
}

.kviz__form-step-count {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
}

.kviz__form-step-title {
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 6px;
}

.kviz__form-step-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kviz__form-step-footer-next {
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #1e1d1c;
  transition: 200ms ease all;
  color: #fff;
}

.kviz__form-step-footer-next:hover {
  background: #3d3a38;
}

.kviz__form-step-footer-prev {
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 13px;
  border: 1px solid #e978fd;
  border-radius: 10px;
  background: #fff;
  transition: 200ms ease all;
  color: #000;
}

.kviz__form-step-footer-prev:hover {
  background: #f6c2ff;
}

.kviz__form-content {
  padding-bottom: 40px;
}

.kviz__form-date-input {
  width: 250px;
  border-bottom: 2px solid #000;
  padding-bottom: 3px;
}

.tariffs {
  padding-top: 75px;
}

.tariffs__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
}

.tariffs__item {
  background: #fff;
  color: #1e1d1c;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding-bottom: 25px;
  border-radius: 15px 15px 10px 10px;
  gap: 20px;
  position: relative;
  transition: 300ms ease all;
}

.tariffs__item-group {
  width: 100%;
}

.tariffs__item:nth-child(3) {
  box-shadow: 0px 0px 39px 16px rgba(246, 0, 255, 0.47);
}

.tariffs__item-header {
  background: #8550af;
  width: 100%;
  position: relative;
  color: #fff;
  font-size: 36px;
  text-align: center;
  padding: 40px 15px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  transition: 200ms ease all;
}

.tariffs__item-header span {
  display: block;
  font-size: 12px;
}

.tariffs__item-header img {
  position: absolute;
  left: -55px;
  top: -44px;
}

.tariffs__item:hover .tariffs__item-header {
  background: #6300b4;
}

.tariffs__item-price {
  text-align: center;
  font-size: 44px;
  font-weight: 600;
  padding: 20px 10px 30px;
}

.tariffs__item-desc {
  font-size: 16px;
  line-height: 130%;
  padding: 0 12px;
}

.tariffs__item-btn {
  width: 100%;
  text-align: center;
}

.tariffs__item:last-child .tariffs__item-header {
  padding-bottom: 25px;
}

.reviews {
  padding-top: 75px;
}

.reviews__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.reviews__slider {
  overflow: hidden;
}

.reviews__slider .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews__slider .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.moments {
  padding-top: 75px;
  overflow-x: hidden;
}

.moments__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.moments .swiper-slide {
  margin: 0 40px;
  text-align: center;
  max-height: 600px;
  height: 600px;
  overflow: hidden;
}

.moments .swiper-slide a {
  display: block;
  height: 100%;
  transition: 200ms ease all;
  transform: scale(0.8);
  outline: none;
  opacity: 0.4;
}

.moments .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.moments .swiper-slide-active a {
  transform: scale(1);
  opacity: 1;
}

.moments .swiper__left,
.moments .swiper__right {
  position: relative;
  z-index: 3;
}

.dops {
  padding-top: 80px;
}

.dops__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}

.dops__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.dops__item img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.dops__item-title {
  font-size: 20px;
  font-weight: 700;
}

.dops__item p {
  line-height: 140%;
  padding-bottom: 20px;
}

.clients {
  padding-top: 75px;
}

.clients__container {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.clients__slider-container {
  overflow: hidden;
}

.clients__slider img {
  max-width: 170px;
  display: block;
}

.clients__slider .swiper-slide {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}

.clients__slider .swiper-wrapper {
  align-items: center !important;
}

.socials {
  padding-top: 60px;
  padding-bottom: 40px;
}

.socials__items {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
}

.socials__items a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  font-size: 18px;
}

.footer {
  padding-top: 30px;
  padding-bottom: 20px;
  background: #13161b;
}

.footer .rider {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.footer__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .copyright {
  font-size: 14px;
}

.footer .politic {
  font-size: 14px;
  text-decoration: underline;
}

.footer .politic:hover {
  text-decoration: none;
}

.footer .dev {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

.footer .dev a {
  text-decoration: underline;
  display: inline-block;
  margin-left: 3px;
  margin-right: 8px;
}

.footer .dev a:hover {
  text-decoration: none;
}

.footer .dev img {
  position: relative;
  top: -3px;
}

.form_radio {
  margin-bottom: 10px;
}

.form_radio input[type=radio] {
  display: none;
}

.form_radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 0;
  line-height: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.form_radio label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #000;
  position: absolute;
  left: 0;
  bottom: 1px;
}

/* Checked */
.form_radio input[type=radio]:checked+label:before {
  border: 5px solid #000;
}

.form-group {
  width: 280px;
  margin: 0 auto 15px;
}
.form-note-spec{
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
}

.form-note-spec span{
  color: red;
}

.form-group__title span{
  color: red;
}

.form-group-help{
  font-size: 12px;
  color: #880808;
  padding-top: 5px;
  display: none;
}

.form-group--error input{
  border-color: #880808!important;
}
.form-group--error .form-group-help{
  display: block;
}

.form-group__title {
  text-align: center;
  font-size: 12px;
  padding-bottom: 5px;
}

.form-group .input__field {
  width: 100%;
  font-size: 12px;
  text-align: center;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid #a4a4a4;
}

.form-submit {
  display: block !important;
  margin: 15px auto 0;
  text-align: center;
  padding: 10px 30px;
  font-size: 14px;
  background: #5974cc !important;
  border-radius: 10px;
  color: #fff;
  cursor: pointer !important;
}

.form-submit:hover {
  background: #284dc7 !important;
}

.form-note {
  font-size: 13px;
  color: #7b7b7b;
  text-align: center;
  padding-top: 20px;
}

.form-note a {
  text-decoration: underline;
}

@media (max-width: 1365px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header {
    padding: 15px 0;
  }

  .header__logo img {
    max-width: 130px;
  }

  .header__nav-item {
    font-size: 20px;
  }

  .header__tel {
    font-size: 20px;
  }

  .main {
    padding-top: 90px;
  }

  .moments .swiper-slide {
    max-height: 400px;
    height: 400px;
  }
}

@media (max-width: 1259px) {
  body {
    font-size: 14px;
  }

  .header__left {
    gap: 20px;
  }

  .header__nav {
    gap: 15px;
  }

  .header__nav-item {
    font-size: 18px;
  }

  .header__tel {
    font-size: 16px;
  }

  .header__right {
    gap: 20px;
  }

  .header__icons img {
    max-width: 30px;
  }

  .hero__text h1 {
    font-size: 40px;
  }

  .hero__desc {
    font-size: 28px;
  }

  .btn-w {
    font-size: 20px;
    min-width: 180px;
  }

  .btn-big {
    font-size: 20px;
    min-width: 180px;
  }

  .hero__btns {
    gap: 20px;
  }

  .title {
    font-size: 44px;
  }

  .about__main {
    flex-direction: column;
  }

  .about__video {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .swiper__left,
  .swiper__right {
    width: 50px;
    min-width: 50px;
    height: 51px;
    background-size: cover;
  }

  .tariffs__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .tariffs__item-header {
    padding: 30px 15px;
    font-size: 34px;
  }

  .tariffs__item-price {
    font-size: 40px;
  }

  .footer__logo img {
    max-width: 130px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .tariffs__item:last-child .tariffs__item-header {
    padding-bottom: 15px;
  }
}

@media (max-width: 989px) {
  .header__logo img {
    max-width: 120px;
  }

  .header__left {
    gap: 15px;
  }

  .header__nav {
    gap: 10px;
  }

  .header__nav-item {
    font-size: 14px;
  }

  .header__tel {
    font-size: 14px;
  }

  .header .header__popup {
    font-size: 13px;
  }

  .header__icons img {
    max-width: 25px;
  }

  .header {
    padding: 10px 0;
  }

  .main {
    padding-top: 75px;
  }

  .hero__text {
    max-width: 60%;
  }

  .hero__text h1 {
    font-size: 30px;
  }

  .hero__desc {
    font-size: 20px;
  }

  .btn-w {
    font-size: 16px;
    padding: 15px;
    border-radius: 10px;
  }

  body {
    font-size: 14px;
  }

  .btn-big {
    font-size: 14px;
    padding: 15px;
    border-radius: 10px;
  }

  .hero__logos {
    padding-bottom: 30px;
  }

  .hero__desc {
    padding: 20px 0;
  }

  .hero {
    min-height: auto;
  }

  .special .date-container .date__item {
    font-size: 50px;
    min-width: 90px;
  }

  .special .date-container {
    gap: 10px;
  }

  .title {
    font-size: 40px;
  }

  .events__item-holder {
    height: 300px;
  }

  .kviz__title {
    font-size: 40px;
  }

  .kviz {
    min-height: auto;
  }

  .kviz__form {
    width: 100%;
  }

  .tariffs__item-header {
    padding: 15px;
  }

  .tariffs__item-price {
    font-size: 35px;
  }

  .moments .swiper-slide {
    margin: 0;
  }

  .dops__item img {
    height: 180px;
  }

  .dops__item-title {
    font-size: 16px;
  }

  .socials__items a img {
    max-width: 60px;
  }

  .moments .swiper-slide {
    max-height: 300px;
    height: 300px;
  }

  .tariffs__item:last-child .tariffs__item-header {
    padding-bottom: 8px;
    padding-top: 7px;
  }
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
    width: 35px;
    flex-direction: column;
    padding: 5px 0;
    gap: 6px;
    margin-left: 10px;
  }

  .header__burger span {
    width: 100%;
    display: inline-block;
    background: #fff;
    height: 2px;
    min-height: 2px;
    border-radius: 4px;
    transition: 200ms ease all;
    position: relative;
  }

  .header__burger--active span:nth-child(2) {
    opacity: 0;
  }

  .header__burger--active span:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
  }

  .header__burger--active span:nth-child(3) {
    transform: rotate(-45deg);
    top: -8px;
  }

  .header__nav {
    display: none;
  }

  .header__icons {
    gap: 5px;
  }

  .about__video {
    min-width: auto;
    width: 100%;
    height: 350px;
  }

  .about__video img {
    -o-object-fit: cover;
    object-fit: cover;
  }

  .about__info {
    grid-template-columns: repeat(1, 1fr);
  }

  .about__info-item-title {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .swiper__left,
  .swiper__right {
    width: 40px;
    min-width: 40px;
    height: 41px;
  }

  .about__swiper-container {
    gap: 10px;
  }

  .special__group-text {
    max-width: 100%;
  }

  .title-def {
    font-size: 35px;
    padding-bottom: 20px;
  }

  .subtitle {
    font-size: 20px;
  }

  .special__container {
    min-height: auto;
    gap: 30px;
  }

  .special .date-container .date__item {
    font-size: 35px;
    min-width: 70px;
  }

  .special__group-time {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .special__group-time .btn-sm {
    position: static;
  }

  .title {
    font-size: 30px;
  }

  .title img {
    max-width: 100%;
  }

  .events__item-title {
    font-size: 18px;
    padding: 15px;
  }

  .events__item-holder {
    height: 200px;
  }

  .kviz__title {
    font-size: 30px;
    padding-bottom: 20px;
  }

  .kviz__title br {
    display: none;
  }

  .kviz__title-pink {
    font-size: 20px;
  }

  .kviz__info-title {
    font-size: 18px;
  }

  .kviz__info-desc {
    font-size: 20px;
  }

  .kviz__form-title {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .kviz__form-desc {
    font-size: 16px;
  }

  .kviz__form-header {
    padding: 20px 15px;
  }

  .kviz__form-step {
    padding: 20px 15px;
  }

  .kviz__form-step-title {
    font-size: 18px;
  }

  .kviz__form-step-count {
    font-size: 16px;
  }

  .kviz__form-step-footer-next,
  .kviz__form-step-footer-prev {
    min-width: 140px;
  }

  .tariffs__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .tariffs__item-header {
    font-size: 28px;
  }

  .tariffs__item-price {
    font-size: 30px;
    padding: 15px 10px;
  }

  .reviews__container {
    gap: 10px;
  }

  .dops__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .socials__items a img {
    max-width: 30px;
  }

  .socials__items {
    gap: 15px;
  }

  .socials__items a {
    font-size: 14px;
  }

  .footer__line {
    flex-direction: column;
  }

  .top {
    display: none;
  }

  .btn-sm-w {
    padding: 8px 14px;
    font-size: 16px;
    min-width: auto;
  }

  .hero {
    padding: 40px 0;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__text h1 {
    font-size: 25px;
    max-width: 70%;
  }

  .hero__desc {
    padding: 10px 0;
    font-size: 14px;
  }

  .hero__logos {
    gap: 10px;
  }

  .hero__logos img {
    max-width: 100%;
  }

  .btn-w,
  .btn-big {
    font-size: 14px;
    min-width: auto;
    padding: 8px 14px;
  }

  .header--active .header__nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    align-items: flex-start;
    left: 0;
    padding: 25px;
    background: #000;
    top: 76px;
  }

  .modal {
    padding: 30px 10px !important;
  }

  .modal-form .modal__form-title {
    font-size: 20px !important;
  }

  .modal .modal__close {
    right: 0 !important;
    top: 0 !important;
  }

  .header__right {
    gap: 10px;
  }

  .header__burger {
    margin-left: 0;
  }

  .header__tel,
  .header .header__popup {
    font-size: 12px;
  }

  .header__group {
    gap: 0;
    align-items: flex-end;
  }
}

@media (max-width: 479px) {
  .header__logo img {
    width: 85px;
  }

  .main {
    padding-top: 59px;
  }

  .hero__text h1 {
    font-size: 20px;
  }

  .hero {
    padding: 30px 0;
    background-position-x: -350px;
  }

  .hero__desc {
    font-size: 13px;
  }

  .hero__logos img {
    width: 22%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .hero__btns {
    gap: 10px;
  }

  .btn-w,
  .btn-big {
    font-size: 13px;
    padding: 8px 10px;
  }

  .title {
    font-size: 25px;
  }

  .about__info-item-title {
    font-size: 16px;
  }

  .about__info-item-desc {
    font-size: 14px;
  }

  .swiper__left,
  .swiper__right {
    min-width: 28px;
    width: 28px;
    height: 29px;
    background-size: contain;
  }

  .title-def {
    font-size: 25px;
    padding-bottom: 10px;
  }

  .subtitle {
    font-size: 18px;
    padding-bottom: 10px;
  }

  .special p {
    font-size: 14px;
    padding-bottom: 10px;
  }

  .special .date-container .date__item {
    font-size: 16px;
    min-width: 50px;
    max-width: 50px;
    width: 50px;
    padding: 10px 0;
  }

  .special .date-container {
    gap: 5px;
  }

  .special .date-container .divider {
    font-size: 30px;
  }

  .special .date-container span {
    font-size: 14px;
  }

  .btn-sm {
    font-size: 14px;
    padding: 11px 10px;
  }

  .events__items {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }

  .events__item-holder {
    height: 150px;
  }

  .events__item-holder img {
    border-radius: 10px;
  }

  .events__item-title {
    border-radius: 0 0 10px 10px;
  }

  .events__item-title {
    font-size: 14px;
    padding: 15px 10px;
  }

  .events__item .btn-sm {
    width: 100%;
    text-align: center;
  }

  .kviz__title {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .kviz__title-pink {
    font-size: 14px;
  }

  .kviz__list {
    margin-top: 30px;
  }

  .kviz__list-item {
    font-size: 14px;
    padding-left: 49px;
  }

  .kviz__info {
    padding: 20px 10px;
  }

  .kviz__info-title {
    font-size: 14px;
    padding-bottom: 10px;
  }

  .kviz__info-desc {
    font-size: 14px;
  }

  .kviz__form {
    margin-top: 30px;
  }

  .kviz__form-title {
    font-size: 15px;
  }

  .kviz__form-desc {
    font-size: 13px;
  }

  .kviz__form-step {
    padding: 15px 10px;
  }

  .kviz__form-step-title,
  .kviz__form-step-count {
    font-size: 14px;
  }

  .kviz__form-step-desc {
    font-size: 13px;
  }

  .kviz__form-step-footer-next,
  .kviz__form-step-footer-prev {
    min-width: 110px;
    font-size: 12px;
    padding: 8px 12px;
  }

  .form_radio label {
    font-size: 12px;
  }

  .form_radio label:before {
    width: 17px;
    height: 17px;
  }

  .tariffs__item-header {
    font-size: 18px;
    padding: 10px;
  }

  .tariffs__item-price {
    padding: 10px;
    font-size: 22px;
  }

  .tariffs__item-desc {
    font-size: 13px;
  }

  .dops__item img {
    height: 130px;
  }

  .footer .politic {
    text-align: center;
  }

  .header--active .header__nav {
    top: 59px;
  }

  .moments .swiper-slide {
    max-height: 250px;
    height: 250px;
  }
}

.modal a.close-modal {
  display: none;
}

.modal {
  padding: 45px;
  max-width: 800px !important;
  border: 4px solid #e978fd;
  color: #000;
  border-radius: 20px;
}

.modal .modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
}

.modal .modal-success {
  text-align: center;
  display: none;
}

.modal .modal-success .modal__form-title {
  padding-top: 25px;
}

.modal--success .modal-content {
  display: none;
}

.modal--success .modal-success {
  display: block;
}

.blocker {
  z-index: 20 !important;
}

.modal a.close-modal {
  display: none;
}

.modal-form .modal__form-title {
  font-size: 30px;
  text-align: center;
  padding-bottom: 30px;
  font-weight: 700;
}

.modal-form .form-note {
  padding-top: 40px;
}

.kviz-thank {
  display: none;
  text-align: center;
}

.kviz-thank p {
  font-size: 30px;
  font-weight: 700;
  padding: 15px 0;
}

.kviz-success .kviz-thank {
  display: block;
}

.kviz-success .kviz-last {
  display: none;
}

.about__video {
  position: relative;
}

.about__video-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  flex-direction: column;
  z-index: 3;
}

.about__video-holder img {
  transition: 300ms ease all;
}

.about__video-holder a:hover img {
  transform: scale(1.2);
}

/*# sourceMappingURL=index.css.map */

.kviz-thank__title{
  font-weight: 600;
  font-size: 20px;
  margin: 15px 0;
}
