@charset "UTF-8";
/* 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: #000;
  background-size: cover;
}

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

.header {
  padding: 25px 0;
  position: fixed;
  z-index: 10;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
}
.header__burger {
  display: none;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__nav-item {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 500;
  transition: 200ms ease all;
}
.header__nav-item:hover {
  color: #b87d58;
}
.header__nav-mob {
  display: none;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__icons {
  display: flex;
  align-items: center;
  gap: 13px;
}
.header__icons img {
  max-width: 56px;
  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: 18px;
}
.header__tel:hover {
  color: #b87d58;
}
.header .header__popup {
  font-size: 15px;
  text-decoration: underline;
}
.header .header__popup:hover {
  text-decoration: none;
}

.hero {
  min-height: 724px;
  position: relative;
  padding: 200px 0 55px;
}
.hero .video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero .video-layer {
  background: rgba(40, 40, 40, 0.65);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.hero__text {
  position: relative;
  z-index: 5;
}
.hero__text h1 {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  padding-bottom: 30px;
}
.hero__text h1 span {
  display: block;
  text-transform: uppercase;
  font-size: 50px;
  padding-top: 5px;
}
.hero__desc {
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 30px;
  text-align: center;
}
.hero__logos {
  display: flex;
  gap: 25px;
  padding-bottom: 25px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.hero__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.hero .popup-video {
  text-align: center;
  margin-bottom: 22px;
}
.hero .popup-video a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  font-weight: 700;
  font-size: 21px;
}
.hero .popup-video a img {
  transition: 300ms ease all;
}
.hero .popup-video a:hover {
  color: #fd883f;
}
.hero .popup-video a:hover img {
  transform: scale(1.1);
}

.btn-w {
  padding: 22px 32px;
  color: #000;
  display: inline-block;
  background: #fff;
  border-radius: 20px;
  font-size: 24px;
  transition: 200ms ease all;
}
.btn-w:hover {
  background: #bbbbbb;
}
.btn-w--sm {
  padding: 14px 24px;
  font-size: 18px;
  border-radius: 10px;
}

.btn-o {
  padding: 22px 32px;
  color: #fff;
  display: inline-block;
  background: #b87d58;
  border-radius: 20px;
  font-size: 24px;
  transition: 200ms ease all;
}
.btn-o:hover {
  background: #fd883f;
}
.btn-o--sm {
  padding: 14px 24px;
  font-size: 18px;
  border-radius: 10px;
}

.title {
  text-align: center;
  font-size: 48px;
  padding-bottom: 30px;
  text-transform: uppercase;
}

.advantages {
  padding-top: 55px;
  padding-bottom: 55px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.advantages__item {
  text-align: center;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 800;
  padding: 12px;
  border: 3px solid #b87d58;
  border-radius: 25px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.run-line {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #fff;
  white-space: nowrap;
  width: 100%;
  font-size: 43px;
  font-weight: 800;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
  height: 93px !important;
}
.run-line span {
  display: inline-flex;
  margin: 0 20px;
}
.run-line .str_move {
  top: auto !important;
  margin: 0 10px;
}
.run-line .str_move_clone {
  left: 100% !important;
}

.swiper__left {
  display: inline-block;
  width: 59px;
  min-width: 59px;
  height: 59px;
  background: url("../img/left.png") no-repeat;
  transition: 200ms ease all;
}
.swiper__left:hover {
  transform: scale(1.15);
}

.swiper__right {
  display: inline-block;
  width: 59px;
  min-width: 59px;
  height: 59px;
  background: url("../img/right.png") no-repeat;
  transition: 200ms ease all;
}
.swiper__right:hover {
  transform: scale(1.15);
}

.special {
  background: url("../img/stock-bg.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 55px;
  padding-bottom: 55px;
}
.special p {
  line-height: 150%;
  max-width: 835px;
  padding-bottom: 20px;
  padding-top: 50px;
  font-size: 18px;
}
.special__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
.special__group-title {
  font-size: 36px;
  font-weight: 700;
}
.special__group-time {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.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;
}

.trib {
  background: url("../img/trib-bg.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 45px;
  padding-bottom: 80px;
}
.trib__info {
  display: flex;
  justify-content: space-between;
  gap: 45px;
}
.trib__imgs {
  min-width: 590px;
  max-width: 590px;
  position: relative;
}
.trib__imgs img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
}
.trib__text {
  flex: 1;
}
.trib__title {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 50px;
}
.trib p {
  font-size: 18px;
  line-height: 1.2;
  padding-bottom: 25px;
}
.trib__slider {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.trib__slider-container {
  overflow: hidden;
}
.trib__slider-container .swiper-slide {
  display: flex;
  border-radius: 10px;
  outline: none;
  width: 100%;
  height: 328px;
}
.trib__slider-container .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}

.tarrifs-gallery {
  padding-top: 50px;
  background: url("../img/tariffs-bg.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

.tariffs__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
}
.tariffs__item {
  position: relative;
  background: #fff;
  color: #1e1d1c;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding-bottom: 25px;
  gap: 20px;
  transition: 300ms ease all;
  border-radius: 10px;
  background-image: linear-gradient(160deg, rgb(195, 207, 226) 0%, rgb(245, 247, 250) 100%);
  box-shadow: 0px 5px 3.4px 1.6px rgba(0, 0, 0, 0.13);
}
.tariffs__item-group {
  width: 100%;
}
.tariffs__item-header {
  width: calc(100% + 10px);
  margin-left: -5px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-size: 36px;
  text-align: center;
  height: 120px;
  border-radius: 10px;
  padding: 10px 15px;
  background-image: linear-gradient(160deg, rgb(93, 93, 93) 0%, rgb(67, 67, 67) 31%, rgb(41, 41, 41) 51%, rgb(21, 21, 21) 74%, rgb(0, 0, 0) 100%);
}
.tariffs__item-header span {
  display: block;
  font-size: 18px;
  font-weight: 800;
}
.tariffs__item-price {
  text-align: center;
  font-size: 44px;
  font-weight: 600;
}
.tariffs__item-price span {
  display: inline-block;
  font-size: 23px;
}
.tariffs__item-desc {
  font-size: 16px;
  line-height: 130%;
  padding: 20px 12px;
}
.tariffs__item-btn {
  width: 100%;
  text-align: center;
}
.tariffs__item:last-child {
  box-shadow: 0 0 18px rgba(164, 223, 240, 0.31);
  /* Эффект свечения */
}
.tariffs__item:last-child::before {
  content: "";
  position: absolute;
  top: -9px;
  /* Смещение по вертикали */
  left: -9px;
  /* Смещение по горизонтали */
  right: -9px;
  /* Смещение по горизонтали */
  bottom: -9px;
  /* Смещение по вертикали */
  border-radius: 10px;
  /* Закругление углов (по желанию) */
  background-color: rgba(164, 223, 240, 0.31);
  /* Цвет свечения с прозрачностью */
  filter: blur(18px);
  /* Размытие */
  z-index: -1;
  /* Помещаем под основной элемент */
}

.reviews {
  padding-top: 55px;
  padding-bottom: 50px;
}
.reviews__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.reviews__slider {
  overflow: hidden;
}
.reviews .swiper-wrapper {
  align-items: stretch;
}
.reviews .swiper-slide {
  height: auto;
}
.reviews .reviews__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px 30px;
  background: #2b2927;
  border-radius: 20px;
  height: 100%;
}
.reviews .reviews__item-title {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 25px;
}
.reviews .reviews__item p {
  line-height: 1.3;
}
.reviews .reviews__item-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}
.reviews .reviews__item-footer img {
  width: 108px;
  border-radius: 50%;
}
.reviews .reviews__item-footer span {
  display: block;
}
.reviews .reviews__item-footer span:first-child {
  font-size: 22px;
  font-weight: 700;
}
.reviews .reviews__item-footer span:last-child {
  font-size: 18px;
}

.approval {
  padding-top: 40px;
}
.approval img {
  width: 100%;
  max-width: 100%;
}

.moments {
  padding-top: 75px;
  overflow-x: hidden;
  padding-bottom: 30px;
}
.moments__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.moments .swiper-slide {
  margin: 0 70px;
  text-align: center;
  max-height: 600px;
  height: 600px;
  overflow: hidden;
}
.moments .swiper-slide a {
  display: block;
  height: 100%;
  outline: none;
  border-radius: 10px;
}
.moments .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 10px;
}
.moments .swiper__left,
.moments .swiper__right {
  position: relative;
  z-index: 3;
}

.clients {
  padding-top: 75px;
  padding-bottom: 85px;
}
.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;
}

.footer {
  padding-top: 30px;
  padding-bottom: 20px;
  background: #13161b;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 25px;
}
.footer .footer__group {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.footer .footer__group--center {
  align-items: center;
}
.footer .footer__group--end {
  align-items: flex-end;
}
.footer .socials {
  display: flex;
  gap: 10px;
}
.footer .socials img {
  max-width: 56px;
  width: 56px;
}
.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: 250px;
  margin: 0 auto 15px;
}
.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: #b87d58 !important;
  border-radius: 10px;
  color: #fff;
  cursor: pointer !important;
}
.form-submit:hover {
  background: #fd883f !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__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,
  .btn-o {
    font-size: 20px;
  }
  .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__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: 1199px) {
  .header__nav-item {
    font-size: 16px;
  }
  .header__logo {
    max-width: 170px;
  }
  .main {
    padding-top: 72px;
  }
  .hero {
    min-height: 600px;
    max-height: 600px;
    padding-top: 100px;
  }
  .hero__text h1 {
    font-size: 32px;
    padding-bottom: 20px;
  }
  .hero__text h1 span {
    font-size: 40px;
  }
  .advantages {
    padding-top: 30px;
    padding-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .tib__info {
    gap: 20px;
  }
  .trib__imgs {
    min-width: 40%;
    max-width: 40%;
  }
  .trib__imgs img {
    max-width: 300px;
  }
  .title {
    font-size: 35px;
  }
  .trib__title {
    font-size: 28px;
    padding-bottom: 25px;
  }
  .moments__container {
    gap: 0;
  }
  .moments__slider {
    padding: 0 15px;
  }
  .footer .copyright {
    font-size: 12px;
  }
  .footer .container {
    gap: 15px;
  }
  .footer .politic {
    font-size: 12px;
    text-align: center;
  }
  .footer .dev {
    font-size: 12px;
  }
  .footer .dev img {
    top: 0;
    margin-top: -15px;
  }
  .footer__logo img {
    max-width: 200px;
  }
}
@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: 58px;
  }
  .hero__text h1 {
    font-size: 30px;
  }
  .hero__desc {
    font-size: 20px;
  }
  .btn-w,
  .btn-o {
    font-size: 16px;
    padding: 15px;
    border-radius: 10px;
  }
  .special__group-title {
    font-size: 30px;
  }
  .special__group-title br {
    display: none;
  }
  .special p {
    padding-top: 30px;
  }
  .trib__info {
    display: flex;
    flex-direction: column;
  }
  .trib__imgs img:last-child {
    position: static;
  }
  .trib__imgs {
    width: 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trib__imgs img {
    margin: 0 -25px;
  }
  .trib__imgs img:last-child {
    margin-top: 25px;
  }
  .reviews .reviews__item-footer img {
    max-width: 60px;
  }
  .reviews .reviews__item-footer span:first-child {
    font-size: 16px;
  }
  .reviews .reviews__item-footer span:last-child {
    font-size: 14px;
  }
  .moments__slider .swiper-slide-prev {
    opacity: 0;
  }
  .moments__slider .swiper-slide-next {
    opacity: 0;
  }
  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;
    max-height: none;
  }
  .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;
  }
  .advantages__item {
    height: auto;
  }
  .advantages__item {
    font-size: 18px;
    border-radius: 20px;
  }
  .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;
  }
  .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;
  }
  .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: 58px;
  }
  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .footer__group--center {
    order: 1;
    gap: 10px;
  }
  .footer__group--end {
    order: 3;
  }
  .footer .footer__group--1 {
    order: 2;
    align-items: center;
  }
  .top {
    display: none;
  }
}
@media (max-width: 767px) {
  .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;
  }
  .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: 22px;
    padding-bottom: 0;
  }
  .hero__text h1 span {
    font-size: 26px;
  }
  .hero .popup-video a img {
    max-width: 80px;
  }
  .hero .popup-video a {
    font-size: 16px;
  }
  .hero__desc {
    padding: 10px 0;
    font-size: 14px;
  }
  .hero__logos {
    gap: 10px;
  }
  .hero__logos img {
    max-width: 100%;
  }
  .btn-w,
  .btn-o {
    font-size: 14px;
    min-width: auto;
    padding: 8px 14px;
  }
  .advantages__item {
    font-size: 14px;
  }
  .run-line {
    font-size: 30px;
    height: 64px !important;
  }
  .special__group-title {
    font-size: 22px;
  }
  .trib {
    overflow-x: hidden;
  }
  .modal {
    padding: 30px 10px !important;
  }
  .modal-form .modal__form-title {
    font-size: 20px !important;
  }
  .modal .modal__close {
    right: 0 !important;
    top: 0 !important;
  }
  .trib__imgs img {
    max-width: 220px;
  }
  .tariffs__item-header {
    height: auto;
  }
  .tariffs__item-price {
    padding-top: 0;
  }
  .header__right {
    gap: 10px;
  }
  .header__burger {
    margin-left: 0;
  }
  .header__tel,
  .header .header__popup {
    font-size: 12px;
  }
}
@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;
  }
  .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 {
    font-size: 22px;
  }
  .tariffs__item-desc {
    font-size: 13px;
  }
  .dops__item img {
    height: 130px;
  }
  .footer .politic {
    text-align: center;
  }
  .header--active .header__nav {
    top: 57px;
  }
  .moments .swiper-slide {
    max-height: 250px;
    height: 250px;
  }
  .hero__text h1 {
    font-size: 18px;
  }
  .hero__text h1 span {
    font-size: 20px;
  }
  .hero .popup-video a img {
    max-width: 40px;
  }
  .hero .popup-video a {
    font-size: 14px;
    gap: 8px;
  }
  .advantages {
    grid-template-columns: repeat(1, 1fr);
  }
  .advantages__item {
    border-radius: 12px;
  }
  .trib .btn-o {
    text-align: center;
  }
}
.modal a.close-modal {
  display: none;
}

.modal {
  padding: 45px;
  max-width: 800px !important;
  border: 4px solid #b87d58;
  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.modal-video {
  width: 100%;
  max-width: 100% !important;
  padding: 0;
  border: none;
  border-radius: 0;
}
.modal.modal-video video {
  width: 100%;
}
.modal.modal-video .modal__close {
  z-index: 40;
}

.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;
}

.modal.modal-video video {
  min-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=index.css.map */

.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;
}
