/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  color: #000;
}

*:focus {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: auto;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: #000c49;
  background-color: #fff;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #999;
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000000;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #fff;
}

.hover {
  transition: opacity 0.4s;
}

.hover:hover {
  opacity: 0.5;
}

.layout {
  display: block;
  position: relative;
  width: 1200px;
  /* padding: 0 190px; */
  padding: 0;
  margin: 0 auto;
  height: 100%;
}

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/
.menu {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  background-color: #fff;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: block;
  width: 184px;
  padding: 25px 0;
}

.lang__wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lang__img {
    width: 30px;
    height: 30px;
}
.nav {
  padding: 4px;
  border-radius: 50px;
  background: #f8f8f8;
  backdrop-filter: blur(7.5px);
  display: flex;
  align-items: center;
  gap: 1px;
}
.nav__item {
  border-radius: 50px;
  background: #f8f8f8;
  backdrop-filter: blur(4px);
  padding: 11px 35px;
  position: relative;
  transition: all 0.3s;
}
.nav__item.current_page_item {
  background: #fff;
}
.nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #fff;
  width: 100%;
  display: block;
  height: 100%;
  border-radius: 50px;
  transition: all 0.3s;
  scale: 0;
}
.nav__link {
  z-index: 2;
  display: block;
  position: relative;
  color: #272727;
  font-weight: 500;
}
.nav__item:hover {
  scale: 0.9;
}
.nav__item:hover .nav__overlay {
  scale: 1;
}
.turs-wrap__inner {
  display: flex;
  gap: 80px;
  flex-direction: column;
  padding: 150px 0 80px;
}
.turs {
  display: flex;
  gap: 20px;
}
.turs__item {
  flex: 1;
}
.turs__content {
  border-radius: 20px;
  background: #f8f8f8;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.turs__title {
  color: #0a3d98;
  font-size: 24px;
  font-weight: 600;
}
.turs__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.turs__list-item {
  display: flex;
  gap: 10px;
}
.turs__list-item p {
  color: #999;
  font-family: Montserrat;
  font-size: 18px;
  flex: 1;
}
.turs__list-item span {
  color: #000;
  flex: 2;
  font-size: 18px;
}
.blue__btn {
  border-radius: 500px;
  background: #0a3d98;
  padding: 10px 36px;
  display: block;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.4s;
  font-weight: 500;
  width: max-content;
}
.blue__btn:hover {
  background: #063280;
}
.turs:nth-child(2n) .turs__item,
.turs:nth-child(2n) {
  transform: rotateY(180deg);
}
.form__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  border-radius: 20px;
  background: #e7ecf5;
  padding: 15px;
}
.form__content {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form__content .wpcf7-response-output {
    position: relative;
    margin-top: -40px !important;
}
.form__image {
  flex: 1;
}
.form__text {
  margin: 20px 0 50px;
  text-align: center;
  font-size: 18px;
}
.form__title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
}
.input__wrap {
  width: 100%;
}
.form__btn {
  margin: 24px auto;
}
.form__wrap {
  width: 353px;
}
.input {
  padding: 12px;
  width: 100%;
  border-radius: 50px;
  margin-bottom: 5px;
}
.footer {
  margin-top: 130px;
}
.footer .form__wrap .wpcf7-response-output {
    position: relative;
    margin-top: -40px !important;
  }
.footer__inner {
  display: flex;
  justify-content: space-between;
}
.footer__top {
  background: #f8f8f8;
}
.footer__item {
  flex: 1;
}
.footer__flex {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.footer__text {
  font-size: 14px;

  line-height: 130%;
  text-transform: capitalize;
}
.footer__title {
  font-weight: 500;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.footer__top {
  padding: 40px 0;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__social {
  display: flex;
  gap: 20px;
}
.footer a {
  transition: all 0.3s;
  cursor: pointer;
}
.footer a:hover {
  opacity: 0.5;
}
.footer__top .footer__flex img {
  width: 20px;
  height: 20px;
}
.footer__local {
  margin-bottom: 30px;
}
.footer__bottom {
  padding: 20px 0;
}
.mkey__wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
.burger {
  display: none;
}
.map iframe {
  width: 100% !important;
  height: 400px !important;
}
.contact {
  padding: 150px 0 20px;
}
.contact__title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
}
.contact__title p {
  font-weight: 500;
}
.blue-text {
  color: #0a3d98;
}
.contact__wrap {
  margin-top: 65px;
  display: flex;
  justify-content: space-between;
}
.contact__content {
  flex: 2;
}
.contact__form {
  flex: 1;
}
.form__wrap-grey {
  width: auto;
}
.form__wrap-grey .input {
  background: #f8f8f8;
  color: #999;
}
.contact__item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}
.contact__item img {
  width: 24px;
  height: 24px;
}
.contact__middle {
  display: flex;
  gap: 50px;
  align-items: flex-end;
}
.contact__middle h4 {
  color: #272727;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  margin-bottom: 17px;
}
.contact__middle-item-2 {
  display: flex;
  gap: 30px;
}
.contact__text {
  margin-top: 10px;
  font-size: 14px;
}
.contact a {
  transition: all 0.3s;
}
.contact a:hover {
  opacity: 0.7;
}
.about-hero {
  height: 100vh;
}
.about-hero__inner {
  display: flex;
  align-items: end;
  justify-content: flex-end;
}
.about-hero__content {
  position: absolute;
  right: 0;
  bottom: 115px;
  width: 55%;
}
.about-hero__title {
  text-align: right;
  font-size: 32px;
  color: #0a3d98;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.about-hero__text {
  color: #0a3d98;
  text-align: right;
  font-size: 20px;
  line-height: 130%; /* 26px */
}
.about-hero__img-mobile {
  display: none;
}
.about-car {
  position: relative;
}
.about-car__inner {
  position: absolute;
  top: 50px;
  left: 50%;
  translate: -50%;
  width: 60%;
  z-index: 2;
}
.about-car__title {
  color: #fff;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-car__text {
  color: #fff;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}
.whyus {
  padding-top: 130px;
}
.whyus__title {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.whyus__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.whyus__top {
  display: flex;
  gap: 20px;
}
.whyus__item {
  flex: 1;
  padding: 30px;
  border-radius: 20px;
  background: #f8f8f8;
}
.whyus__item img {
  width: 49px;
  height: 40px;
  margin-bottom: 37px;
}
.whyus__title {
  color: #0a3d98;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  margin-bottom: 20px;
}
.whyus__text {
  color: #000;
  font-size: 18px;
  line-height: 130%; /* 23.4px */
  padding-right: 30px;
}
.whyus__bottom {
  border-radius: 20px;
  background: #e7ecf5;
  display: flex;
  padding: 10px;
  gap: 32px;
}
.whyus__bottom-content {
  padding: 30px;
  flex: 2;
}
.whyus__bottom-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.whyus__bottom-content p {
  color: #000;
  font-size: 18px;
  margin-bottom: 44px;
  line-height: 130%; /* 23.4px */
}
.whyus__bottom-image {
  flex: 1.4;
  border-radius: 20px;
  overflow: hidden;
}
.whyus__bottom-image img {
  height: 100%;
  object-fit: cover;
}
.popup {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffffa8;
  opacity: 0;
  transition: all 0.4s;
  z-index: -10;
}
.popup__inner {
  position: relative;
  width: 1200px;
  height: 70%;
  border-radius: 20px;
  background: #272727;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/popup-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: -200px;
  transition: all 0.4s;
}
.popup__content {
  width: 488px;
}
.popup__title {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
.popup__text {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
}
.form-popup {
  width: 100%;
}
.closeModal {
  font-size: 70px;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 0.6;
  padding: 20px;
  cursor: pointer;
  rotate: 45deg;
}
.popup.active {
  z-index: 100;
  opacity: 1;
}
.popup.active .popup__inner {
  margin-bottom: 0;
}

/* TODO */
.vh {
  height: 100vh;
  background-color: #999;
}
.benefits__wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 50px;
}
.benefits__title {
  flex: 1;
  font-size: 32px;

  font-weight: 700;

  text-transform: uppercase;
}
.benefits__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.benefits__right-item {
  flex: 1;
}
.benefits__right-item p {
  border-top: 1px solid #d9d9d9;
  padding-top: 12px;
  font-size: 18px;
}
.benefits {
  padding-top: 130px;
}
.benefits__right-item:first-child p {
  opacity: 0;
}
.benefits__elem {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-bottom: 50px;
}
.benefits__item {
  width: 40%;
  height: 100%;
}
.benefits__image img {
  height: 100%;
  object-fit: cover;
}
.benefits__image {
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  display: block;
  position: relative;
}
.benefits__content {
  border-radius: 20px;
  background: #f8f8f8;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  z-index: 2;
}
.benefits__content h3 {
  margin-bottom: 35px;
  color: #0a3d98;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
}
.benefits__content ul {
  list-style: disc;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefits__content li {
  font-size: 18px;
}
.benefits__content p {
  font-size: 18px;
}
.benefits__elem-rotate {
  transform: rotateY(180deg);
}
.benefits__elem-rotate .benefits__content {
  transform: rotateY(180deg);
}
.reviews {
  padding: 100px 0;
}
.reviews__title {
  margin: 0 auto 30px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;

  text-transform: uppercase;
}
.reviews__btns {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.reviews__btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #0a3d98;
  display: flex;
  align-items: center;
  padding: 5px;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.6s;
}
.reviews__btn:hover {
  opacity: 0.3;
}
.button-prev {
  rotate: 180deg;
}
.reviewsSlider-slide {
  border-radius: 18px;
  background: #f8f8f8;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  height: auto;
}
.reviewsSlider__top-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.reviewsSlider__top img {
  width: 45px;
  height: 45px;
}
.reviewsSlider__top span {
  color: #7d7d7d;
}
.reviewsSlider__content {
  color: #454545;
  font-size: 18px;
}
.reviewsSlider__bottom h5 {
  color: #181818;
  margin-bottom: 4px;
}
.reviewsSlider__bottom p {
  color: #181818;
}
.text-section {
    margin-top: 70px;
}
.text-section__wrap {
  border-radius: 20px;
  background: #f8f8f8;
  padding: 24px;
}
.text-section__content {
  height: 220px;
  overflow: auto;
  padding-right: 15px;
}

.text-section__content::-webkit-scrollbar {
  width: 4px; /* ширина всей полосы прокрутки */
}

.text-section__content::-webkit-scrollbar-track {
  background: #bfbfbf; /* цвет зоны отслеживания */
}

.text-section__content::-webkit-scrollbar-thumb {
  background-color: #909090; /* цвет бегунка */
  border-radius: 20px; /* округлось бегунка */
}
.terms__inner {
  display: flex;
  justify-content: space-between;
}
.terms__elem {
  width: 48%;
}
.terms__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
}
.terms__text {
  color: #999;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 28px */
  margin: 30px 0 40px;
}
.terms__item {
  border-radius: 10px;
  background: #f8f8f8;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
  margin-bottom: 24px;
  scale: 0.95;
  filter: blur(3px);
  /* scale: 1;
  filter: blur(0px); */
}
.terms__item img {
  width: 41px;
  height: 41px;
}
.terms__item h3 {
  color: #0a3d98;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  margin-bottom: 15px;
}
.terms__item p {
  font-size: 20px;
}
.terms__left {
  margin-top: 150px;
  position: sticky;
  top: 50%;
  translate: 0 -50%;
  height: min-content;
}
main,
section,
.container {
  overflow: visible;
}
.discounts {
  padding: 50px 60px;
}
.discounts_wrap {
  border-radius: 20px;
  background: #272727;
}
.discounts__inner {
  display: flex;
  align-items: center;
  padding: 70px 0;
}
/* .discounts__content {
  width: 66%;
} */
.discounts__title {
  color: #fff;
  font-size: 48px;
  text-transform: uppercase;
}
.discounts__title span {
  font-weight: 700;
  color: #fff;
}
.discounts__text {
  margin: 20px 0 50px;
  color: #999;

  font-size: 20px;

  font-weight: 500;
}

/* TODO */
.form-hero {
  height: 100%;
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.form-hero .container {
  height: auto;
}
.form-popup .wpcf7-response-output {
  color: #fff;
  text-align: center;
}

.hero {
  /* filter: brightness(0.2); */
  height: calc(100vh);
  /* background-image: url(../images/hero-bg.png); */
  background-image: url(../images/testBg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.text-page {
  padding: 100px 0;
}
.text-page__title {
  font-size: 42px;
  margin-bottom: 40px;
}
.m-text-center {
  text-align: center;
  margin-left: -30px;
}
.about-hero__img {
  margin-bottom: -5px;
}
