/* Дополнительные стили для поддержки разных браузеров */
* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
	font-family: 'Neue Montreal Light';
	src: url('../fonts/NeueMontreal/NeueMontreal-Light.eot');
	src: local('Neue Montreal Light'), local('NeueMontreal-Light'),
		url('../fonts/NeueMontreal/NeueMontreal-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/NeueMontreal/NeueMontreal-Light.woff2') format('woff2'), url('../fonts/NeueMontreal/NeueMontreal-Light.woff') format('woff'),
		url('../fonts/NeueMontreal/NeueMontreal-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Neue Montreal Regular';
	src: url('../fonts/NeueMontreal/NeueMontreal-Regular.eot');
	src: local('Neue Montreal Regular'), local('NeueMontreal-Regular'),
		url('../fonts/NeueMontreal/NeueMontreal-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/NeueMontreal/NeueMontreal-Regular.woff2') format('woff2'), url('../fonts/NeueMontreal/NeueMontreal-Regular.woff') format('woff'),
		url('../fonts/NeueMontreal/NeueMontreal-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Neue Montreal Medium';
	src: url('../fonts/NeueMontreal/NeueMontreal-Medium.eot');
	src: local('Neue Montreal Medium'), local('NeueMontreal-Medium'),
		url('../fonts/NeueMontreal/NeueMontreal-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/NeueMontreal/NeueMontreal-Medium.woff2') format('woff2'), url('../fonts/NeueMontreal/NeueMontreal-Medium.woff') format('woff'),
		url('../fonts/NeueMontreal/NeueMontreal-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Neue Montreal Bold';
	src: url('../fonts/NeueMontreal/NeueMontreal-Bold.eot');
	src: local('Neue Montreal Bold'), local('NeueMontreal-Bold'),
		url('../fonts/NeueMontreal/NeueMontreal-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/NeueMontreal/NeueMontreal-Bold.woff2') format('woff2'), url('../fonts/NeueMontreal/NeueMontreal-Bold.woff') format('woff'),
		url('../fonts/NeueMontreal/NeueMontreal-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}


/* СТИЛЬ ТЕКСТА ДЛЯ ТЕЛА */
body {
    font-family: 'Neue Montreal Regular', Neue Montreal Regular, Dancing Script, Neue Montreal, Helvetica, sans-serif;
}

/* Стили для шапки (header) */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: while; 
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.1); 
}

/* Логотип и его контейнер */
.logo {
  flex-shrink: 0;
  margin-right: 0;
}

.logo img {
    height: 40px; 
}

/* Стили для навигационного меню */
.nav-circle {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 20px; 
    padding: 8px 12px; 
    border: 1px solid #ddd; 
    border-radius: 30px; 
    background-color: #FFFFFF; 
    width: fit-content; 
    height: auto; 
    flex-grow: 1; 
    left: 50%;
    transform: translateX(28%); 
}


/* Стиль для ссылок внутри меню */
.nav-circle a {
    text-decoration: none; 
    color: black; 
    font-size: 16px; 
    font-weight: 500; 
    padding: 5px 10px; 
    transition: all 0.3s; 
}

/* Эффект наведения на ссылки */
.nav-circle a:hover {
    background-color: rgba(255, 255, 255, 0.6); 
    color: black; 
    border-color: rgba(0, 0, 0, 0.6); 
}

/* Общие стили для выпадающего меню */
.nav-circle .dropdown {
  position: relative;
  display: inline-block;
}

.nav-circle .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  left: 0;
  top: 100%; 
}

.nav-circle .dropdown:hover .dropdown-content {
  display: block;
  background-color: rgba(255, 255, 255, 0.6); 
}

/* Стили для ссылок в выпадающем меню */
.nav-circle .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap; 
}

.nav-circle .dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.6); 
}

/* Стили для основной ссылки */
.nav-circle .dropdown a {
  text-decoration: none;
  color: #000;
  padding: 12px 16px;
  display: inline-block;
  cursor: pointer;
}

/* Дополнительные стили для поддержки разных браузеров */
* {
  box-sizing: border-box; 
}

/* Исправление для Chrome, добавление блокировки контента */
.nav-circle .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 0;
}

.nav-circle .dropdown:hover .dropdown-content {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
}
/* Стили для секции контактов */
.contact {
    display: flex; 
    flex-shrink: 0;
    align-items: center; 
    gap: 16px; 
    border-radius: 40px; 
    gap: 16px;
}

/* Номер телефона в шапке профиля  */
.contact .phone-circle {
    display: flex;
    align-items: center;
    gap: 10px; 
    font-size: 16px; 
    color: black; 
    padding: 8px 15px; 
}

/* Стили для изображения иконки телефона */
.contact .phone-circle img {
    width: 15px; 
    height: 15px; 
}

/* Стили для стрелки внутри ссылок */
.nav-circle a i {
    margin-left: 5px; 
    font-size: 10px; 
}

/* Скрываем мобильную версию по умолчанию */
.contact-mobile {
    display: none;
}

/* Гамбургер-меню */
.hamburger-menu {
    display: none;

}

.side-menu {
    display: none;
}


/* Общая настройка для мобильных устройств */
@media screen and (max-width: 768px) {
    /* Адаптация шапки */
    header {
        padding-left: 15px;
        padding-right: 15px;
        border-bottom: 0;
        padding: 30px 0;
        position: initial;
        display: flex;
        flex-wrap: wrap;  
        align-items: center;
        justify-content: space-between; 
    }
   
    /* Логотип */
    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%; 
        margin: 0;
    }

    .logo img {
        width: 157.22px;
        height: 30px;
        top: 30px;
        left: 118px;
        gap: 0px;
        opacity: 0px;        
    }
    .nav-circle ul {
  position: absolute;
  left: 0; 
  top: 60%;
  transform: translateY(-50%); /* Если нужно чуть подправить выравнивание */
}

    /* Адаптация меню */
    .nav-circle {
        display: none; /* Скрывает навигацию для мобильных */
    }

    .nav-circle a {
        padding: 10px 0;
        font-size: 14px;
    }

    .contact button {
        display:none;
    }

    /* Адаптация контактных кнопок */
      /* Скрыть номер телефона */
      .contact .phone-button {
        width: 52px !important;
        height: 52px !important;
        top: -40px; 
        left: 20px;
        padding: 10px 20px 10px 20px;
        gap: 10px;
        border-radius: 40px 0px 0px 0px;
        opacity: 1; 
        position: relative;
        border: 0.5px solid rgba(0, 0, 0, 0.2) !important;
    }
    
    .phone-button img {
        width: 16.27px !important;
        height: 16.27px !important;
        left: 16px;
        gap: 0px;
        opacity: 0px;
        margin: 4px;
    }

    .phone-button span {
        display: none;  
    }


    /* Стили для гамбургер-меню */

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        width: 52px;
        height: 52px;
        cursor: pointer;
        border: 0.5px solid rgba(0, 0, 0, 0.2);
        border-radius: 40px;
        position: fixed;  
        top: 20px;  
        right: 20px;  
        z-index: 1000; 
        padding-top: 16px;
        gap: 6px;
    }
    
    .icon-bar {
        width: 100%;
        height: 2px;
        background-color: black;
        border-radius: 2px;
    }

    .hamburger-menu .icon-bar:nth-child(1) {
        width: 14px;
        margin-left: 18px;
    }
    
    .hamburger-menu .icon-bar:nth-child(2) {
        width: 25px;
        margin-left: 13px;
    }
    
    .hamburger-menu .icon-bar:nth-child(3) {
        width: 14px;
        margin-left: 18px;
    }

.side-menu {
    position: fixed;
    top: 0;
    left: -300px; /* Уходит за левую границу экрана */
    width: 300px;
    height: 100%;
    background-color: #BE3455;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); /* Тень слева */
    z-index: 1000;
    transition: left 0.3s ease-in-out; /* Плавное появление */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
  
/* Активное состояние меню */
.side-menu.open {
    left: 0; /* Позиция при открытии */
}

.vector-3 {
    border-top: 0.5px solid rgba(255, 255, 255, 0.3);
    width: 245px;
    margin: 11px 0;
    margin-bottom: 27px;
}

/* Стили для списка меню */
.side-menu ul {
    list-style: none;
    padding: 0;
}


.side-menu ul li {
    margin-bottom: 15px;
    margin-top: 30px;
}

.side-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

/* Вложенные пункты меню */
.side-menu ul .dropdown-menu {
    display: none; /* Скрыто по умолчанию */
    padding-left: 20px;
}

.side-menu ul .dropdown-menu li {
    margin-bottom: 10px;
}

.side-menu ul .dropdown a {
    cursor: pointer;
}

.side-menu ul .dropdown.open .dropdown-menu {
    display: block; /* Показать при открытии */
}

/* Стили для кнопок вызова */
.call-button {
    margin-top: auto;
}

.call-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}


}

/* Секция hero (главный баннер) */
.hero {
    padding: 40px 20px;
    background-color: #f2f2f2;
    height: 550px;
}

/*Стили для кнопки на шапке */
.contact button {
    background-color: #BE3455;
    width: 189px;
    height: 52px;
    border-radius: 40px;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #BE3455;
    transition: background-color 0.3s, color 0.3s;
}

.contact button:hover {
    background-color: transparent;
    color: #BE3455;
    border: 2px solid #BE3455;
}

/*Стили для кнопки с номером*/
.contact .phone-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: black;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 17px;
    text-decoration: none;
    width: 189px;
    height: 52px;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, border-color 0.3s;
}

.contact .phone-button:hover {
    background-color: rgba(255, 255, 255, 0.6); 
    color: black; 
    border-color: rgba(0, 0, 0, 0.6);
}

.contact .phone-button img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

/* Контейнер для содержимого hero */
.hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    padding-top: 20px;
    margin-top: 20px;
}

/* ИЗОБРАЖЕНИЕ ГОРОДА */
.image-container img {
    width: 630px;
    height: 510px;
    top: 149px;
    left: 160px;
    gap: 0px;
    border-radius: 30px;
    opacity: 0px;
}

/* Контейнер для текста в секции hero */
.info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
}

/* Десктопные стили маршрута */
 h1 {
    width: 419px;
    height: 150px;
    top: 149px;
    left: 829px;
    gap: 0px;
    opacity: 0px;
    font-family: 'Neue Montreal Regular', Neue Montreal Regular, Neue Montreal, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 700px;
    line-height: 50px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

/* Стили формы quote */
.quote-form {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 19px; 
    max-width: 610px;
    height: 345px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

/* Кнопки скрыты на десктопах */
form.quote-form {
  margin-top: 64px; 
}

/* Заголовок формы quote */
.quote-form h2 {
    font-size: 18px;
    font-weight: 300;
    color: #000;
}

/* Надпись над формой */
b {
    font-size: 21px;
    font-weight: 900;
    color: #000;
}

/* Поля ввода и выпадающие списки формы quote */
.quote-form input,
.quote-form select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    width: 100%;
}

.phone-group {
  flex-direction: row;
  display: flex;
  gap: 10px;
}

/* Стили для выбора кода страны */
/* Поле ввода телефона */
.phone-group input {
    flex: 1; 
}

/* СТИЛИ ДЛЯ КНОПКИ ВОЙТИ */
.quote-form button {
    background-color: #BE3455;
    width: 500px;
    height:50px;
    top: 361px;
    left: 830px;
    gap: 19px;
    border-radius: 20px;
    color: #FFFFFF;
    font-size: 16px;
    border: none ;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Плавные переходы */
}

/* Эффект наведения на кнопку отправки */
.quote-form button:hover {
    background-color: transparent;
    color: #BE3455;
    border: 2px solid #BE3455;
}

/* Стили для дополнительной информации в секции quote */
.additional-info p,
.quote-form h2 {
    font-weight: bold; 
    font-size: 20px; 
    color: black; 
    text-align: center; 
    margin-top: 10px; 
}

.phone-code {
    width: 150px; 
    min-width: 150px; 
    font-size: 16px; 
    padding: 5px; 
}


/* Стили для выпадающего списка с кодами стран */
.phone-code {
    color: gray; 
}

/* Стили для опций в выпадающем списке */
.phone-code option {
    color: black; 
}

/* Стили для неактивных (disabled) опций */
.phone-code option:disabled {
    color: gray; 
}

.phone-icon-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}


.phone-icon {
  position: absolute;
  left: 15px; 
  width: 15px; 
  height: 15px; 
}

.phone-code {
    text-align: right; 
    padding: 10px; 
    font-size: 14px; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    background-color: white;

}

/* Стили среднего блока */
body {
    font-family: 'Neue Montreal Regular', Neue Montreal Regular, Helvetica;
    margin: 0;
    padding: 0;
  }
  
  .testimonials {
    text-align: center;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .intro {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
  }
  
  .divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px auto;
    width: 80%;
  }
  
  /* Заголовок второго блока*/
  .title {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    margin-top: 5px;
    font-size: 33px;
    font-weight: 900;
  }
  
  .cards {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
  }
  
  /* Блоки с комментариями */
  .card {
    background-color: #f2f2f2;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    margin: 70px;
    width: 500px;
    height: 600px;
    margin: 50px;
  }

  /* Краткий комментарий */
  
  .quote {
    font-size: 23px;
    font-weight: bold;
    width: 300px;
    height: 104px;
  }
  
  /* Тест комменатрия клиента*/
  .details {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
    width: 365px;
    height: 200px;
    gap: 0px;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: black;
  }
  
  /* Имя комментатора */
  .author {
    display: flex; 
    align-items: center; 
    gap: 15px; 
  }
  
  /* Аватарка профиля автора */
  .author img {
    margin-right: 10px;
    width: 64px;
    height: 64px;
    top: 1625px;
    left: 1170px;
    gap: 0px;
    border-radius: 50px 50px 50px 50px;
    margin-top: 27px;
  }

  .author div {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    line-height: 1.2; 
}

  /* Имя комментатора */
  .name {
    font-weight: bold;
    width: 105px;
    height: 26px;
    top: 1633px;
    left: 1260px;
    gap: 0px;
    opacity: 0px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }
  
  /* Дата комментария */
  .date {
    font-size: 14px;
    color: #888;
    width: 105px;
    height: 20px;
    top: 1662px;
    left: 1258px;
    gap: 0px;
    opacity: 0px;
    margin: 0px; 

  }

  section.testimonials {
    margin-top: 100px; 
  }

  /* Текст про Франкфурт*/
  p.intro {
    width: 824px;
    height: auto;
    top: 719px;
    left: 388px;
    gap: 0px;
    opacity: 0px;
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-left: 200px;
    color:  black;
    top: 30px;
    position: relative;
    transform: translateX(-47%); /* Точность центрирования */
  }

  /*  Линия между заголовками */
  hr.divider {
    width: 1280px;
    height: 0px;
    top: 939px;
    left: 160px;
    gap: 0px;
    border: 1px 0px 0px 0px;
    opacity: 0.2px;
    margin-top: 50px;
  }

 /*надпись над заголовком */
  p {
    margin-top: 40px;
}

/* Стили для стрелок */
/* Стили стрелок */
.c-mid {
  text-align: center;
  position: relative;
  margin-top: 100px;
}

.swiper-container {
  position: relative;
  display: inline-block; 
}

.swiper-prev-style2,
.swiper-next-style2,
.client-carousel-arrow-prev,
.client-carousel-arrow-next {
  position: absolute;
  bottom: -120px; 
  z-index: 1;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  width: 60px;
  height: 60px;
  line-height: 58px;
  text-align: center;
  border: 1px solid rgba(66, 66, 66, 0.3); 
  color: rgba(66, 66, 66, 0.3); 
  border-radius: 50%; 
  outline: none;
  transition: 0.4s;
}

/* Кнопка "Предыдущий слайд"  */
.swiper-prev-style2,
.client-carousel-arrow-prev {
  right: -50px; 
  transform: translateX(0);
}

/* Кнопка "Следующий слайд" */
.swiper-next-style2,
.client-carousel-arrow-next {
  left: -80px; 
  transform: translateX(0);
}

/* При наведении на мобилке */
.swiper-next-style2:hover,
.swiper-prev-style2:hover,
.client-carousel-arrow-prev:hover,
.client-carousel-arrow-next:hover {
  background-color: var(--base-color); 
  border: 1px solid rgba(66, 66, 66, 1); 
  color: rgba(66, 66, 66, 1); 
  transition: 0.4s;
}

.swiper-prev-style-custom,
.swiper-next-style-custom {
  top: 45%; 
  transform: translateY(-230%);
}
/* Скрытия кнопок на большом экране*/
@media (min-width: 769px) {
    .swiper-action-tesi-next, 
    .swiper-action-tesi-prev,
    .swiper-next-style2,
    .swiper-prev-style2,
    .swiper-container {
        display: none;
    }
}

/*СТИЛИ КНОПОК ДЛЯ КОМПЬЮТЕРОВ*/
.carousel-container {
  position: relative;
  display: inline-block; 
}

.carousel-prev-arrow,
.carousel-next-arrow {
  position: absolute;
  bottom: -120px; 
  z-index: 1;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  width: 60px;
  height: 60px;
  line-height: 58px;
  text-align: center;
  border: 1px solid rgba(66, 66, 66, 0.3); 
  color: rgba(66, 66, 66, 0.3); 
  border-radius: 50%; 
  outline: none;
  transition: 0.4s;
}

/* Кнопка "Предыдущий слайд"  */
.carousel-prev-arrow {
  right: -50px; 
  transform: translateX(0);
}

/* Кнопка "Следующий слайд" */
.carousel-next-arrow {
  left: -80px; 
  transform: translateX(0);
}

/* При наведении */
.carousel-next-arrow:hover,
.carousel-prev-arrow:hover {
  background-color: var(--base-color); 
  border: 1px solid rgba(66, 66, 66, 1); 
  color: rgba(66, 66, 66, 1); 
  transition: 0.4s;
}

/* Для вертикального центрирования стрелок в области слайда */
.custom-prev-arrow,
.custom-next-arrow {
  top: 45%; /* Поднимаем выше */
  transform: translateY(-230%);
}

/*СТИЛИ ДЛЯ ТРЕТЕГО БЛОКА*/

/*Задний блок подписки*/
.subscribe-rear-block {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-height: 240px;
    box-sizing: border-box;
}

/*Блок подписки*/
.subscribe-block {
    background-image: url('/template/landing/img/icon/subscribe.png'); 
    background-size: cover; 
    background-position: center; 
    width: 1200px;
    height: 320px;
    padding: 40px;
    border-radius: 30px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 105px;
}

.subscribe-block h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.subscribe-block p {
    font-size: 20px;
    margin-bottom: 10px;
    width: 431px;
    height: 64px;
    overflow: hidden;
}

.subscribe-block form {
    display: flex;
    gap: 10px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper img {
    position: absolute;
    left: 20px; 
    width: 20px; 
    height: 20px;
}

.subscribe-block input[type="email"] {
    padding: 12px 12px 12px 50px;
    border: 1px solid #ddd;
    border-radius: 40px;
    font-size: 14px;
    width: 360px;
    height: 56px;
}

.subscribe-block button {
    background-color: #BE3455;
    width: 167px;
    height: 56px;
    top: 361px;
    left: 830px;
    gap: 19px;
    border-radius: 40px;
    opacity: 1; 
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #BE3455; 
    transition: background-color 0.3s, color 0.3s;
}

.subscribe-block button:hover {
    background-color: transparent;
    color: #BE3455; 
    border: 2px solid #BE3455; 
}

body {
    justify-content: space-between; 
}

/*СТИЛИ ДЛЯ ЧЕТВЕРТОГО БЛОКА*/
footer {
    padding: 40px;
    width: 100%;
    height: 884px;
    margin: 0 auto;
    opacity: 1;
    background-color: #BE3455;
    color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

@media (max-height: 5020px) {
    footer {
        min-height: 40vh;
    }
}
/*Основной блок footer для выравнивания по краям */
.footer-full {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; 
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*Выравние для текста и кнопок*/
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1200px;
    color: #fff;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 60px auto 0 auto;
}

/*Блочный текст который идет в столбик*/
.footer-frame {
    margin-bottom: 20px;
    flex: 1;
    min-width: 200px;
    font-size: 18px;
    margin-bottom: 30px;

}

.footer-frame h3 {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
}

.footer-frame p {
    font-size: 18px;
    color: #fff;
    margin: 38px;
}

.footer-frame ul {
    list-style-type: none;
    padding: 0;
}

.footer-frame ul li {
    margin-bottom: 10px;

}

.footer-frame ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.footer-frame ul li a:hover {
    text-decoration: underline;
}

/*Болк текста с описанием*/
.footer-text {
    width: 1200px;
    margin: 20px auto 0 auto;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 30px;
}

.footer-text p {
    margin: 0;
}
/*Кнопки с почтой и с номером*/
.footer-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
}

.footer-contact-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    width: 240px;
    text-align: center;
    height: 50px;
    border: 1px solid transparent;
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s; 
    border: 2px solid rgba(255, 255, 255, 0.5); 
}

.footer-contact-button img {
    width: 20px; 
    height: 20px;
    margin-right: 10px;
}

.footer-contact-button:hover {
    background-color: rgba(255, 255, 255, 0.4); 
    color: #fff; 
    border-color: rgba(255, 255, 255, 0.8); /* Полупрозрачная обводка при наведении */
}

/*Логотип*/
.footer-image-container {
    width: 100%; 
    max-width: 1200px;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    margin: 0 auto; 
    align-items: flex-end; 
    height: 160px;
}

.image {
    width: 209.62px;
    height: 40px;
    top: 2393px;
    left: 160px;
    gap: 0px;
    opacity: 0px;
}

/*Короткая линия*/
.vector-1 {
    border-top: 0.5px solid rgba(255, 255, 255, 0.3);
    width: 245px;
    margin: 11px 0;
    margin-bottom: 27px;
}

/*Длинная линия*/
.vector-2 {
    border-top: 0.5px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    margin: 25px 0;
}

/*Иконки с соц-сетями*/
.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    margin-right: 6px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    line-height: 35px;
}

.footer-social a img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2); 
    border-color: rgba(255, 255, 255, 1); 
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
}

.footer-social a:hover img {
    opacity: 1; 
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
}

/*Стили для текстов Terms & Conditions и Privacy Policy*/
.footer-terms-container {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-terms-privacy {
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
}
/* Мобильные стили МАРШРУТА*/
@media (max-width: 768px) {

html, body {
    width: 100%;
    overflow-x: hidden;
}
/* Стили для шапки */
header {
    height: 92px;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 700px; 
    margin: 0;
    padding: 0;
}


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px; 
}


.image-container img {
    align-items: center;
    justify-content: center;
    width: 373px;
    height: 180px;

}

/* Контейнер для текста в секции hero */
.info-container {
    margin: 0; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    width: 393px; 
    height: auto; 
    margin: -40px;
}

/* Десктопные стили маршрута */
 h1 {
    width: 347px;
    height: 64px;
    align-items: center;
    justify-content: center;
    font-family: 'Neue Montreal Regular', Neue Montreal Regular, Neue Montreal, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 30.2px;
    text-align: center;
    font-weight: 900;
    margin-bottom: -5px; 
    margin-top: 10px;
}


.quote-form {
    align-items: center;
    gap: 15px; 
    width: 373px; 
    height: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    font-family: 'Neue Montreal Regular', Neue Montreal Regular, Neue Montreal, Helvetica, sans-serif;
}

form.quote-form {
  margin: 30px;
}

.quote-form input{
     height: 60px;
     border-radius: 20px;
}

.quote-form h2 {
  margin-bottom: 15px;
  size: 20px;
}

/* Стили для выбора кода страны */
.phone-group {
      flex-direction: column; 
      gap: 0;
}

/* Поле ввода телефона */
.phone-group input {
    flex: 1; 
    height: 60px;
}

.phone-group select {
    height: 60px;
    border-radius: 20px;
    text-align: left;
    padding-left: 45px;
}

.quote-form button {
    width: 333px;
    height: 60px;
    border-radius: 60px;
}

.phone-icon-container {
  flex-direction: column; 
      width: 333px;
      gap: 0;
      margin: 0; 
}

.phone-icon-container input {
  flex-direction: column; 
      width: 333px;
      gap: 0;
      border-radius: 20px;
}

.phone-group {
      width: 333px;
      height:135px;
      gap: 15px;
}
.phone-icon {
  margin: 22px; 
  left:0;
}

.title-p {
  margin-left: 460px;
  margin-top: -5px;
}

.testimonials {
  width: 100%;
  height: auto;
}

.container {
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  margin-left: -450px;
  margin-top: -70px; 
  place-items: center;
}

p.intro {
  display: block; 
  width: 90%; 
  max-width: 353px; 
  height: auto; 
  margin: 0 auto 20px; 
  text-align: left; 
  line-height: 1.6; 
  font-size: 16px;

}
.title {
  margin-left: 450px;
}

.cards {
  width: 349px;
  height: auto;
  margin: 0 auto 20px;
  margin-left: 925px;
  margin-top: -40px; 
}

p.details {
  max-width: 300px;
}

.swiper-prev-style-custom,
.swiper-next-style-custom {
  transform: translate(15px, -250%);
}

/*СКРЫВАЕМ КНОПКИ ДЕСКТОПА НА МОБИЛКЕ*/
@media (max-width: 769px) {
    .carousel-container, 
    .carousel-prev-arrow,
    .carousel-next-arrow {
        display: none;
    }
}


/*Блок подписки*/
.subscribe-block {
    flex-direction: column; 
    align-items: flex-start;
    width: 352px;
    height: 410px;
    margin-top: 30px;
}
.subscribe-block {
    background-position: 12% 0%;
}


.subscribe-block h2 {
    font-size: 24px;

}

.subscribe-block p {
    width: 270px;
    height: 96px;
    font-size: 18px;
    line-height: 1.2;
}

.subscribe-block form {
    flex-direction: column;

}

.input-wrapper {
    display: flex;
    align-items: center;
}

.input-wrapper img {
    left: 70px; 
    width: 20px;
    height: 20px;
    position: absolute;
}

.subscribe-block input[type="email"] {
    width: 280px;
    height: 56px;
    text-align: center;
    font-size: 16px;
    padding: 12px 12px 12px 40px;
}

.subscribe-block button {
    width: 280px;
    height: 56px;
}
/*Стили для 4 блока*/
    footer {
        height: auto; 
        width: 100%;
        padding: 0; 
        margin: 0; 
    }

    .footer-full {
        max-width: 393px;
        align-items: center;
        margin-top: 40px;
    }

    .footer-image-container {
        max-width: 333px;
        justify-content: center; 
        align-items: center;
        align-items: flex-end; 
        height: 190px;
    }

    .footer-container {
        justify-content: center;  
        align-items: center;      
        width: 333px;
        text-align: center;  
        line-height: 1.5;
    }

    .vector-1 {
          width: 80%; 
          margin: 0 auto;
          margin-bottom: 15px;
          margin-top: -10px;
    }

    .footer-frame {
        width: 100%;
        text-align: center;
    }
    .footer-text {
        width: 333px;
        text-align: left;
    }

    .footer-contact-buttons {
        align-items: center;
        justify-content: center;
}
    .footer-frame p {
        margin-top: -10px; 
    }

.footer-terms-container {
    display: flex;
    gap: 45px;
    margin-top: 30px;
}

.footer-terms-privacy {
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
}


}
.burgundy{
    color: #BE3455;
}
.datepicker{
    position: relative;
    width: calc(100% - 5px);
    min-width: 220px;
    margin: 0 0 0px 0;
    padding: 0 16px 0 42px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.5);
}
.datepicker:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 16px;
    width: 14px;
    height: 14px;
    background-size: contain !important;
    background: url("../images/calendar.svg") no-repeat;
}
.datepicker:after {
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    content: '\f107';
    font-weight: 900;
    top: 13px;
    right: 16px;
    line-height: 1;
}
.datepicker input {
    margin: 0;
    padding: 0;
    border: none;
    height: 42px;
    line-height: 42px;
    background-color: transparent;
    cursor: pointer;
}
.datepicker input:focus-visible {
    outline: unset;
}
.date-group{
    display: flex;
}
.date-group .datepicker:nth-of-type(1){
    margin-right: 5px;
}
@media (max-width: 768px) {
    .date-group{
        flex-direction: column;
        width: 100%;
    }
    .datepicker{
        width: 100%;
        border-radius: 20px;
    }
    .datepicker:before {
        top: 22px;
    }
    .datepicker:after {
        top: 22px;
    }
    .datepicker input {
        height: 60px;
        line-height: 60px;
    }
    .date-group .datepicker:nth-of-type(1){
        margin-right: 0px;
        margin-bottom: 15px;
    }
    section.testimonials{
        margin-top: 200px;
    }
}