@font-face {
  font-family: 'Sofia';   /* Название шрифта (любое, на ваше усмотрение) */
  src: url('../fonts/SofiaSansCondensed-ExtraBold.woff') format('woff'); /* Путь к файлу */
  font-weight: 800;           /* Вес шрифта */
  font-style: normal;            /* Стиль шрифта */
  font-display: swap;            /* Опционально: как браузер будет отображать текст до загрузки шрифта */
}

@font-face {
  font-family: 'Sofia';   /* Название шрифта (любое, на ваше усмотрение) */
  src: url('../fonts/SofiaSansCondensed-Black.woff') format('woff'); /* Путь к файлу */
  font-weight: 900;           /* Вес шрифта */
  font-style: normal;            /* Стиль шрифта */
  font-display: swap;            /* Опционально: как браузер будет отображать текст до загрузки шрифта */
}

@font-face {
  font-family: 'Rubik';   /* Название шрифта (любое, на ваше усмотрение) */
  src: url('../fonts/Rubik-Regular.woff') format('woff'); /* Путь к файлу */
  font-weight: 400;           /* Вес шрифта */
  font-style: normal;            /* Стиль шрифта */
  font-display: swap;            /* Опционально: как браузер будет отображать текст до загрузки шрифта */
}

@font-face {
  font-family: 'Rubik';   /* Название шрифта (любое, на ваше усмотрение) */
  src: url('../fonts/Rubik-Medium.woff') format('woff'); /* Путь к файлу */
  font-weight: 500;           /* Вес шрифта */
  font-style: normal;            /* Стиль шрифта */
  font-display: swap;            /* Опционально: как браузер будет отображать текст до загрузки шрифта */
}



:root {
  --color-main: #E9744C;     /* Цвет ссылок */
  --color-title: #657097;  /* Цвет заголовков */
  --color-subtitle: #9AA1BB;  /* Цвет заголовков */
  
}

a {color: var(--color-main); transition: .4s;}
a:hover { transition: .2s;
opacity: 0.8;}

h1 {font-family: 'Sofia'; font-weight: 800; color: var(--color-title); text-transform: uppercase;}
h2 {font-size: 50px; line-height: 60px; font-family: 'Sofia'; font-weight: bold; color: var(--color-title); text-transform: uppercase;}
h4 { font-size: 21px; line-height: 31px; font-family: 'Sofia'; font-weight: bold; text-transform: uppercase;}
h5 { font-size: 18px; line-height: 24px; text-transform: uppercase;}

.section-title {
    margin-bottom: 60px;
}
    .section-title h2 {}
        .section-title h4.subtitle {
            font-size: 24px;
            line-height: 35px;
            color: var(--color-subtitle);
            text-transform:none;
            font-family: 'Rubik';
            font-weight: 500;
        }

        .section-title .subtitle {
            color: #657097;
            opacity: .65;
            font-size: 24px;
            line-height: 35px;
            font-weight: 500;
        }

/* Сброс */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Базовые стили */
body {
  font-family: 'Rubik', sans-serif;
  background: #fff;
  color: #686868;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Обёртка*/
.wrapper {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px; /* на случай небольших отступов */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.wrapper-small {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 20px; /* на случай небольших отступов */
  /*display: flex;*/
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

/* Просто чтобы видеть результат */
.header, .footer {
  padding: 50px 0;
}
.main {
  padding: 40px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}




.mainlogo, .maincontacts, .mainmenu {
  /* Чтобы ширина была по содержимому */
  flex-shrink: 0;
  white-space: nowrap;
}








#firstscreen {
    background-image: linear-gradient(
    180deg,
    rgba(245, 247, 254, 1) 0%,
    rgba(245, 247, 254, 0) 100%
  );
  background-size: auto 700px; /* Высота градиента */
  background-repeat: no-repeat;
}

.mainlogo {
        z-index: 10000;
}

    .mainlogo img {}

.mainmenu {}

    .mainmenu ul {
        padding: 0; 
        margin: 0;
        display: flex;
        gap: 30px;
    }

        .mainmenu ul li {
            list-style-type: none;
        }

            .mainmenu ul li.separator {
                border-left: 1px solid #eee;
            }

            .mainmenu ul li a {
                font-size: 16px;
                line-height: 18px;
                font-weight: 500;
                color: var(--color-title);
                text-decoration: none;
            }







/* === Базовые стили для бургера === */
.burger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1000;
}

.burger span {
  height: 3px;
  background-color: #657097;
  display: block;
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: -25%;
  left: 0;
  right: 0;
  background-color: white;
  padding: 140px 40px 100px 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  text-align: center;
}

.mobile-menu .maincontacts {
    text-align: center;
}

.mobile-menu .maincontacts .walink a {
    display: inline-block;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu a {
  font-size: 18px;
  color: #657097;
  text-decoration: none;
  display: block;
}

.desktop-only {
  display: flex;
}
























.maincontacts {
    text-align: right;
    display: block;
}

    .phonelink {
        font-size: 21px;
        line-height: 30px;
    }

        .phonelink a {
            color: var(--color-title);
    font-weight: 500;
    text-decoration: none;
        }

    .walink {
    margin-right: -5px;
    margin-top: 3px;
}

        .walink a {
            background-color: var(--color-title);
            color: #fff;
        font-size: 12px;
    line-height: 12px;
padding: 5px 15px;
text-decoration: none;
border-radius: 20px;}

.walink a img {
    top: 2px;
    position: relative;
    margin-right: 5px;
}







#mainytp {
    padding-top: 100px;
}

    h1.mainytp {
        color: var(--color-title);
        font-size: 120px;
        line-height: 110px;
        text-transform: uppercase;
    }

        h1.mainytp span {
            color: var(--color-main);
            font-size: 90px;
            line-height: 95px;
            display: block;
        }

        h2.mainsubytp {
            font-size: 32px;
            line-height: 38px;
            color: #5E5E5E;
            font-family: "Rubik";
            font-weight: 500;
            margin-bottom: 45px;
            text-transform: lowercase;
        }


.welcometext {
    color:#E0E0E0;
    font-size: 30px;
    font-family: 'Sofia';   /* Название шрифта (любое, на ваше усмотрение) */
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-left: 10px;
}
    .welcometext img {
    margin-right: 18px;
    top: 3px;
    position: relative;
    animation: pulse 1s infinite;
}

/* Анимация пульса */
@keyframes pulse {
  0% {
    transform: scale(1) rotate(-0deg);
  }
  50% {
    transform: scale(1.2) rotate(-2deg);
  }
  100% {
    transform: scale(1) rotate(1deg);
  }
}









a.button {
    background: #FF9B78;
background: linear-gradient(90deg,rgba(255, 155, 120, 1) 0%, rgba(233, 116, 76, 1) 100%);
color: #fff;
display: inline-block;

}

    .mainytpbutton {
        padding: 20px 40px;
    border-radius: 20px;
    font-size: 24px;
    line-height: 36px;
    text-decoration: none;
    }
    .mainytpbutton img {margin-right: 20px;}
    
    a.simplebutton {
        display: block;
        color: #9D9D9D;
        font-size: 18px;
        margin-top: 15px;
    padding-left: 45px;
    }


    .ytppics {
        position: relative;
        height: 500px;}

        img.ytppic1 {
    position: absolute;
    top: -550px;
    right: 20px;
}

        img.ytppic2 {
    position: absolute;
    top: 120px;
    left: 60px;
}

        img.ytppic3 {
    position: absolute;
    top: 160px;
    right: -370px;
    filter: blur(6px);
}

        img.ytppic4 {
    position: absolute;
    bottom: -900px;
    left: -330px;
    filter: blur(3px);
}

        img.ytppic5 {
    position: absolute;
    top: -120px;
    left: -400px;
    filter: blur(5px);
}

    img.ytpchinatext {
    position: absolute;
    top: -370px;
    left: 580px;
}





#tourstypes {

}

h2.tourstypestitle {
        margin-left: 700px;
}

h2.tourstypestitle span {
    color: var(--color-main);
    font-weight: 900;
    display: block;
}

.tourstypestable {
    margin-left: 200px;
    position: relative;
}

    .tourstypestable-touritem {
        display: flex;
        padding: 20px 40px;
        align-items: center;
        
    }
    .tourstypestable-touritem:nth-child(even) {
    background: #F9F9F9;
    border-radius: 20px;
}

        .tourstypestable-days {
            font-size: 21px;
            width: 100%;
            max-width: 220px;
        }

            .tourstypestable-days span {color: #BABABA;}

        .tourstypestable-iskit {
            width: 100%;
            max-width: 335px;
            text-align: center;
        }

            .tourstypestable-iskit a {
                text-decoration:none;
                color: #9E9E9E;
                font-size: 16px;
                border-bottom: 2px dotted;
            }

        .tourstypestable-booking {}

            .tourstypestable-booking a {
                text-decoration: none;
                padding: 10px 30px;
                border-radius: 10px;
            }

.tourschinatext {
    position: absolute;
    top: 80px;
    right: -420px;
    z-index: -10;
}

.tourstypewarning {
    color: #B2B2B2;
    font-size: 14px;
    line-height: 21px;
    margin-top: 50px;
    margin-left: 40px;
    position: relative;
}

.tourstypewarning::before {
    content: "*";
    position: absolute;
    left: -15px;
}

.tourstypewarning a {
    color: #B2B2B2;
    text-decoration: none;
    border-bottom: 2px dotted;
}






.blueblock {
    background-color:#ECF0FE;
    padding: 100px;
    margin-left: -100px;
    margin-right: -100px;
    width: 100%;
    border-radius: 70px;
    width: calc(100% + 200px);
}




#areas {
    margin-top: 150px;
}

.areastable {
    position: relative;
}

    .areastable-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

    .areasitem {
        background-color: #fff;
        padding: 45px;
        border-radius: 20px;
        width: 348px;
        height: 207px;
        transition: .4s;
    }

    .areasitem:hover, .areasitem-twin:hover {
    transform: scale(0.98);
    transition: .2s;
    cursor: pointer;
    opacity: 0.65;
}

    .areasitem-twin {
        background-color: #fff;
        padding: 45px;
        border-radius: 20px;
        width: 738px;
        height: 207px;
        transition: .4s;
    }

        .areasitem h5, .areasitem-twin h5 {
            font-size: 21px;
            color: #686868;
            font-family: 'Rubik';
            font-weight: 400;
            text-transform: none;
        }

.china-doctor-1 {
    position: absolute;
    pointer-events: none;
    top: -470px;
    right: -100px;
}

.managerblock {
    background-color: #F5F9FE;
    border-radius: 35px 35px 0 0;
    position: relative;
    padding: 70px;
}

.manager-pic {
    position: absolute;
    left: 0;
    bottom: -10px;
}

.managerblock-info {
    margin-left: 700px;
}

.managerblock-list {}

    .managerblock-list-item {
        margin-bottom: 30px;
    }

        .managerblock-list-item-title {
            font-size: 21px;
            font-weight: 500;
            position: relative;
        }

            .managerblock-list-item-title:before {
            content: "";
            position: absolute;
            width: 20px;
            height: 23px;
            left: -35px;
            top: 0;
            background: url(../images/manager-block-ok-icon.svg) no-repeat;
            }

        .managerblock-list-item-desc {
            font-size: 18px;
            font-weight: 400;
            color: #7E7E7F;
        }


.feedbackblock {
    background-color: var(--color-title);
    padding: 70px 90px;
    color: #fff;
    border-radius: 0 0 35px 35px;
    z-index: 10;
    position: relative;
    display: flex;
    gap: 40px;
}

.feedbackblock-single {
    border-radius:35px 35px;
}


.feedbackblock-title {max-width: 600px;}

    .feedbackblock-title h2 {color: #fff;}

    .feedbackblock-title .subtitle {font-size: 21px; line-height: 28px; color: #fff; opacity: 0.65;}

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

.inputs-wrap {
    display: flex;
    position: relative;
        }

        .input-group {
        }

        .input-group label {
    font-size: 18px;
    color: #fff;
    opacity: .5;
    padding: 0 0 5px 20px;
    display: block;
}
    .popmake .input-group label {color: #1f1f1f;}

        .input-group input {
            padding: 15px 20px;
            font-size: 16px;
            border: none;
            border-radius: 8px;
            background-color: white;
            color: #333;
            width: 100%;
        }
            .popmake .input-group input {
            background-color: white;
            border: 3px solid #dfdfdf;
            margin-top: 10px;
        }

        .feedback-button {
    padding: 13px 20px;
    font-size: 21px;
    color: white;
    background-color: #ff7f50;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    height: fit-content;
    min-width: 225px;
    margin-bottom: -30px;
    /**/
    position: relative;
    top: 23px;
    left: 15px;
}
        .feedback-button:hover {
            background-color: #ff5e3a; /* Сlightly darker orange on hover */
        }

        .wpcf7-spinner {
    position: absolute;
}

.wpcf7-not-valid-tip {
    color: #f5f9fe;
    font-size: 0.7em;
    font-weight: normal;
    display: block;
    background: #ff0000;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 5px;
}

    .end-block-title {
        text-align: center;
        padding-top: 50px;
}
        .end-block-title h2 {font-size: 42px; line-height: 52px;}




/************************************************ 4 ЭКРАН - ПРОГРАММА ТУРА *************************************************/

#programm {
    padding: 150px 0;
}

    .programm_wrap {
        display: flex;
        gap: 60px;
        text-align: center;
        width: 100%;
    }

        .programm_column {display: flex;
    flex-direction: column;
    gap: 35px; /* Расстояние между пунктами в столбце */
width: 100%;}

            .programm_title {}

                .programm_title h3 {
                    color: #BDBDBD;
                    font-size: 28px;
                    line-height: 48px;
                    font-family: 'Sofia';
                    font-weight: bold;
                    text-transform: uppercase;
                }

            .programm-step {
                background: #F9F9F9;
                padding: 35px 35px;
                border-radius: 20px;
                display: flex;
                align-items: center;
                justify-content: center;  /* горизонтальное центрирование */
    text-align: center;
            }

                .programm-step span {
                    color: #6E6E6E;
                    opacity: .65;
                    font-size: 14px;
                    display: block;
                    max-width: 300px;
                    line-height: 1.35;
                    }

                .day-1 {
    flex-grow: 1; /* Растягивается на всю доступную высоту */
}

.day-1 .programm-step {
    flex: 1; /* Все пункты равномерно распределяют высоту */
}

.day-2 {
    flex-grow: 1; /* Растягивается на всю доступную высоту */
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.day-2 .programm-step {
    flex: 0 0 auto; /* Обычные пункты не растягиваются */
}

.day-2 .programm-step:last-child {
    flex-grow: 1; /* Только последний пункт растягивается */
    flex-direction: column;
}

.day-last {
    flex-grow: 1; /* Растягивается на всю доступную высоту */
}

/* Дочерние элементы третьего столбца */
.day-last .programm-step {
    flex: 1; /* Все пункты равномерно распределяют высоту */
}

.programm-china-text {
    position: absolute;
    top: -60px;
    right: -200px;
}

    .programm-china-text img {}





/************************************************ 5 ЭКРАН - БОЛЬНИЦЫ *************************************************/

    #hospitals {}
        .clouds-bg-block {background: url(../images/clouds-bg.png) no-repeat right center #ECF0FE;}


    #hospitals .section-title {max-width: 705px;}

    .hospital-masked-pic {
    width: 585px;
    height: 385px;
    mask: url(#hospitalMask);
    -webkit-mask: url(#hospitalMask); /* Для Chrome */
}

.hospital-item {
    display: flex;
    gap: 100px;
    align-items: center;
    margin-bottom: 100px;
}

    .hospital-image {
        position: relative;
    }

        .hospital-image img {}

        .play-button {
            width: 124px;
            height: 124px;
            border-radius: 200px;
            background: url(../images/play-icon.svg) no-repeat center center #fff;
            position: absolute;
            top: -12px;
            right: -0;
        }

    .hospital-info {}

        .hospital-name {}

            .hospital-name h3 {
    font-size: 30px;
    line-height: 40px;
    font-family: 'Sofia';
    font-weight: bold;
    color: var(--color-title);
    text-transform: uppercase;
    margin-bottom: 20px;
}

        .hospital-desc {
    max-width: 600px;
    margin-bottom: 50px;
}

        .hospital-link {}

           .hospital-link a {
    color: #9D9D9D;
    font-weight: 500;
    background-color: #fff;
    padding: 15px 30px;
    display: block;
    width: fit-content;
    border-radius: 10px;
}


/************************************************ 6 ЭКРАН - ДОКТОРА *************************************************/


#doctors {}

.doctor-item {
    display: flex;
    gap: 100px;
    align-items: center;
    margin-bottom: 40px;
}

    .doctor-image {}

        .doctor-image img {
            border-radius: 35px;
        }

    .doctor-info {}

        .doctor-name {}

            .doctor-name h3 {
                font-size: 30px;
                line-height: 40px;
                font-family: 'Sofia';
                font-weight: bold;
                color: var(--color-title);
                text-transform: uppercase;
            }

        .doctor-status {
            color: #657097;
            opacity: .65;
            font-size: 21px;
            line-height: 31px;
            font-weight: 500;
        }

        .doctor-desc {
            margin-top: 30px;
            max-width: 800px;
        }

            .doctor-desc p {
    margin-bottom: 20px;
}




/************************************************ 7 ЭКРАН - ПРЕИМУЩЕСТВА ЛЕЧЕНИЯ В ХУНЬЧУНЕ *************************************************/





#benefits {padding: 165px 0;}

.china-doctor-2 {
    position: absolute;
    right: -80px;
    top: -165px;
    z-index: 20;
}
    .china-doctor-2 img {}

    .benefits-row-1 {
        display: flex;
        align-items: end;
        gap: 30px;
        margin-bottom: 35px;
        z-index: 10;
    }

    .benefits-row-2 {
        display: flex;
        align-items: start;
        gap: 30px;
        z-index: 30;
        position: relative;
    }

    .benefits-wrap {
        padding: 60px 50px;
        background-color: #fff;
        border-radius: 35px;
        width: fit-content;
    }

    .benefit-item-1 {}

    .benefit-title {
        margin-bottom: 10px;
        font-weight: 500;
        max-width: 640px;
    }
    .benefit-desc {
        max-width: 640px;
    }

    .benefits-pic {}

        .benefits-pic img {
            border-radius: 35px;
        }

    .benefits-items-wrap {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }



/************************************************ 8 ЭКРАН - О ЧЕМОДАНЕ *************************************************/

    .dblock {
        display: block;
    }

    #about {

    }

    .about-desc {
        position: relative;
        padding-left: 750px;
    }

        .about-manager-pic {
            position: absolute;
            top: -370px;
            left: -50px;
        }

            .about-manager-pic img {}


    .about-video-block {
    display: flex;
    gap: 30px;
    z-index: 10;
    position: relative;
    padding-top: 125px;
}

        .about-video-item {
            max-width: 348px;
            border-radius: 35px;
            text-align: center;
            margin-bottom: 100px;
        }

            .about-video-item iframe {
                border: none;
                border-radius: 35px;
            }

            .about-video-title {
                padding-top: 25px;
                font-size: 21px;
                line-height: 31px;
                color: #657097;
                font-weight: 500;
            }

            .about-video-desc {
                padding-top: 5px;
                font-size: 18px;
                line-height: 27px;
                color: #686868;
            }

    .about-benefits-mask {
    width: 1521px;
    height: 339px;
    mask: url(#aboutbenefitsMask);
    -webkit-mask: url(#aboutbenefitsMask); /* Для Chrome */
}

.about-benefits-block {
    background-color: #657097;
    color: #fff;
    display: flex;
    padding: 50px 100px;
    gap: 110px;
    border-radius: 35px;
}

.about-benefits-column {}

    .about-benefit-item {
        margin-bottom: 30px;
    }
        .about-benefit-item:last-child {
        margin-bottom: 0;
    }

        .about-benefit-item-title {
            font-size: 21px;
            margin-bottom: 5px;
            position: relative;
        }

            .about-benefit-item-title:before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: url(../images/about-benefits-list-icon.svg) no-repeat top left;
    top: 0;
    left: -35px;
}

        .about-benefit-item-desc {
            font-size: 18px;
            opacity: .65;
        }

    .about-benefits-button-block {
    width: fit-content;
    text-align: center;
    position: absolute;
    right: 0;
    bottom: -100px;
    background: #fff;
    padding: 40px;
    border-radius: 50px;
}
        .about-benefits-button-block a {}

        .about-benefits-button-block p {
    font-size: 16px;
    color: #C0C0C0;
    padding-top: 5px;
}









/************************************************ 9 ЭКРАН - ОТЗЫВЫ *************************************************/

#reviews {
    padding: 150px 0;
}

.reviews-block {
    display: flex;
}

    .review-item {
    position: relative;
    padding-right: 260px;
}

        .review-item-photo {}

            .review-item-photo img {
                border-radius: 35px;
            }

        .review-item-text {
            width: 318px;
            height: 565px;
            background: url(../images/review-comment-bg.jpg) no-repeat top center;
            border-radius: 35px;
            position: absolute;
            left: 240px;
            top: 100px;
        }

        .review-client-name {
    position: absolute;
    top: 12px;
    left: 85px;
    font-size: 14px;
}

        .review-client-review {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 20px;
    left: 15px;
    font-size: 16px;
    line-height: 24px;
    max-width: 255px;
    top: 60px;
    box-shadow: 0 4px 3px #0000000d;
}








/************************************************ 10 ЭКРАН - ЧАВО *************************************************/
#faq {
    background:url(../images/white-clouds.jpg) no-repeat top right;
}

    .faq-block {
}

.faq-item {
    padding: 0 0 40px 0;
}

.faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question a {
    font-size: 21px;
    color:#657097;
    font-weight: 500;
    text-decoration: none;
}

.faq-question:hover {}

.faq-question .icon {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    font-size: 14px;
    user-select: none;
    margin-right: 15px;
    color: #676f9654;
}

.faq-question.open .icon {
  transform: rotate(270deg);
}

.faq-answer {
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 0;
  max-width: 1000px;
  line-height: 27px;
}

.faq-answer.open {
  max-height: 9999px; /* "Плавающая" высота */
  padding-top: 10px;
  padding-left: 27px;
}




/************************************************ 11 ЭКРАН - МЕНЕДЖЕР *************************************************/

#manager {
    padding: 150px 0;
}


/************************************************ 12 ЭКРАН - КОНТАКТЫ *************************************************/

#contacts {}

    .contacts-info {
        flex: 1;
    }

        .contact-info-item {
            margin-bottom: 30px;
        }

            .contact-info-title {
                font-size: 18px;
                opacity: .85;
                margin-bottom: 10px;
            }

            .contact-info-value {
                font-size: 21px;
                font-weight: 500    ;
            }

    .contacts-map {
        flex: 1;
    }

    .contacts-map iframe {
    border-radius: 35px;
}

.contacts-days {
    padding-bottom: 5px;
}

.contacts-times {
    padding-left: 40px;
    padding-bottom: 5px;
}


/************************************************ 12 ЭКРАН - КОНТАКТЫ *************************************************/

.footer .wrapper {
    align-items: start;
    border-top: 5px solid #F9F9F9;
    padding-top: 75px;
}

.logo-part {
    min-width: 260px;
}

    .footer-logo {
        margin-bottom: 25px;
    }

        .footer-logo img {}

    .footer-years {
        color: #DEDEDE;
    }

        .footer-years span#year {}


.desc-part {
    
}

    .footer-desc {
        opacity: .5;
        margin-bottom: 40px;
        padding-right: 115px;
    }

        .footer-desc strong {
            display: block;
            font-weight: 500;
            margin-bottom: 10px;
            opacity: .5;
        }

    .footer-links {
        color: #DEDEDE;
        display: flex;
        gap: 50px;
    }

        .footer-links .inn {}

        .footer-links .policy {}

            .footer-links .policy a {color: #DEDEDE;}

.contacts-part {
    min-width: 280px;
    padding-top: 30px;
    text-align: center;
}




/************************************************ ВСПЛЫВАЮЩИЕ ОКНА *************************************************/

.tour-options-block {}
        .tour-options-title {
            margin-bottom: 30px;
        }
                .tour-options-title h3 {
                    font-size: 28px;
                    line-height: 28px;
                    font-family: 'Sofia';
                    font-weight: bold;
                    color: #636363;
                    text-transform: uppercase;
                }
        .tour-options-title h2 {}
        .tour-options-title p {
            font-size: 28px;
            line-height: 28px;
            font-family: 'Sofia';
            font-weight: bold;
            color: #eee;
            text-transform: uppercase;}

    .tour-options-short-desc {}
                .tour-options-short-desc p {
                    margin-bottom: 30px;
                    font-size: 18px;
                    max-width: 600px;
                    line-height: 1.35;
                    color: #656565;
                }

    .tour-options-items {}
        .tour-options-items ul {}
                                .tour-options-items ul li {
                                    list-style: none;
                                    margin-bottom: 10px;
                                    color: #676f96;
                                    font-weight: 500;
                                    font-size: 18px;
                                }

.tour-options-feedback-block {
    background: #676f96;
    padding: 40px;
    margin-top: 40px;
    border-radius: 20px;
    color: #fff;
}
                .tour-options-feedback-block h3 {
                    font-size: 34px;
                    line-height: 44px;
                    font-family: 'Sofia';
                    font-weight: bold;
                    text-transform: uppercase;
                }
                .tour-options-feedback-block p {
                    font-size: 18px;
                    max-width: 500px;
                    color: #ffffff;
                    margin-bottom: 14px;
                }

.tour-options-feedback-block label {
    padding: 0;
}

.tour-options-feedback-block .inputs-wrap {
    display: block;
    position: relative;
}

.popmake .tour-options-feedback-block .input-group label {
    color: #ffffff;
}