@font-face {
    font-family: 'Merriweather Sans';
    src: url('../fonts/MerriweatherSans-Regular.woff2') format('woff2'),
        url('../fonts/MerriweatherSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather Sans';
    src: url('../fonts/MerriweatherSans-Bold.woff2') format('woff2'),
        url('../fonts/MerriweatherSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yanone Kaffeesatz';
    src: url('../fonts/YanoneKaffeesatz-Regular.woff2') format('woff2'),
        url('../fonts/YanoneKaffeesatz-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yanone Kaffeesatz';
    src: url('../fonts/YanoneKaffeesatz-Bold.woff2') format('woff2'),
        url('../fonts/YanoneKaffeesatz-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
	padding: 0px;
	margin: 0px;
	border: none;
}

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

html, body {
    font-family: 'Merriweather Sans';
    font-size: 18px;
    color: #757575;

}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Yanone Kaffeesatz';
    font-weight: bold;
}

a {
    transition: .4s; 
    color: var(--main-cian);
}

a:hover {
    opacity: 0.7;
    transition: .2s;
    cursor: pointer;
}


:root {
    --main-cian: #00BCD4;
    --main-light-cian:#E0F7FA;
    --main-titles-cian:#ABC9C9;
    --container-width: 1414px;
}

.light_gradient_bg {
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(230, 248, 251, 1) 100%);
}

.dark_gradient_bg {
background: #7EDDE9;
background: linear-gradient(0deg,rgba(126, 221, 233, 1) 0%, rgba(0, 188, 212, 1) 100%);
}

.light_cian_bg {
    background: var(--main-light-cian);
}


.main_overflow {
    overflow: hidden;
}

.container {
    width: 1414px;
    margin: 0 auto;
}

#typing-span::after {
    content: '|';
    margin-left: 4px;
    animation: blink 1s infinite;
    font-weight: 400;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.mobile_view_only {
    display: none;
}



/* ЗАГОЛОВКИ */
.title_block {
    margin-bottom: 40px;
}

    .title_block h3 {
        color: var(--main-titles-cian);
        font-size: 38px;
    }

    .title_block .subtitle {
        color: var(--main-titles-cian);
        font-size: 18px;
    }




/* ШАПКА */
.hero {
position: relative;
height: 1000px;
display: flex;
flex-direction: column;
overflow: hidden;
}

.hero_bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: opacity 0.6s ease;
    z-index: 0;
  }

  /* Базовый фон */
.hero_bg--base {
    /*background: url(../img/hero_bg.jpg) no-repeat top center;*/
    background-size: cover!important;
    opacity: 1;
  }
  
  /* Фон при ховере */
  .hero_bg--hover {
    opacity: 0;
    pointer-events: none;
}

.hero.has-hover-bg .hero_bg--hover {
    opacity: 1;
}
  

  

.hero:before {
    background: #000000;
background: linear-gradient(0deg,rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
content: '';
position: absolute;
bottom:0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 10;
}

.hero:after {
    background: #0000003a;
    content: '';
position: absolute;
bottom:0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 10;
}

.hero_container {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  z-index: 20;
}

.absolute_header_container {
    position: absolute;
    width: 100%;
}

.absolute_header_container.site-header--light {
    position: relative;
    width: 100%;
}

.header_wrap {
    display: flex;
    align-items: center;
    z-index: 100;
    position: relative;

    max-width: 1414px;
    margin: 0 auto;
}

    .header_logo {
        background-color: var(--main-cian);
        padding: 30px 20px;
        border-radius: 0 0 5px 5px;
        flex: 0 0 auto;
        transition: background-color 0.15s linear; /* чтобы смягчить */
    }

    .header_slogan {
        color: #fff;
        font-size: 16px;
        margin-left: 20px;
        font-family: 'Yanone Kaffeesatz';
        flex: 0 0 auto;
    }

        .header_slogan span {
            color: var(--main-cian);
            font-weight: bold;
            display: block;
        }







    .header_menu {
        font-family: 'Yanone Kaffeesatz';
        display: flex;
    align-items: center;

    flex: 0 1 auto;
    min-width: 0; 

    padding: 0 75px;
    overflow: hidden;
    }

    .header_menu ul {
        list-style-type: none;
        
        /* gap: 50px; */
        /* justify-content: space-between; */ 
        /* width: max-content; */
        display: flex;
    gap: 40px;
    list-style: none;
    white-space: nowrap;
    flex-shrink: 0;
    }

    .header_menu ul li {}

    .header_menu ul li a {
        font-size: 21px;
        color: #fff;
        text-decoration: none;
    }

    .site-header--light .header_menu ul li a {
        color: #757575;
    }

    .site-header--light .header_slogan {
        color: #757575bb;
    }

   /* Бургер по умолчанию скрыт */
.header_burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    cursor: pointer;
}

.header_burger span {
    width: 28px;
    height: 3px;
    background: #fff;
    display: block;
}

.header_menu.open .header_burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header_menu.open .header_burger span:nth-child(2) {
    opacity: 0;
}

.header_menu.open .header_burger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header_burger span {
    transition: .3s;
}



li.menu_item_more {
    display: none;
}






    .header_contacts {
        text-align: right;
        margin-left: auto;
        flex: 0 0 auto;
        margin-top: 28px;
        position: relative;
    z-index: 5;
    }

    .header_contacts_calls {
        display: flex;
        font-size: 16px;
        align-items: center;
    }
    
    .header_contacts_calls_phone {}

        .header_contacts_calls_phone a {
            background-color: #fff;
            text-decoration: none;
            color: #757575;
            padding: 9px 40px 9px 20px;
            display: block;
            border-radius: 50px;
        }

        .header_contacts_calls_phone a:hover {
            opacity: 1;
            background: #eee;
           }

        .site-header--light .header_contacts_calls_phone a {
            background-color: #fff;
        }

        .site-header--light .header_contacts_address {
            color: #757575bf;
        }

        .absolute_header_container.site-header--light:before {
            content: "";
            width: 100%;
            height: 450px;
            z-index: 1;
            background: #E6F8FB;
background: linear-gradient(180deg, rgba(230, 248, 251, 1) 0%, rgba(230, 248, 251, 0) 100%);
position: absolute;
pointer-events: none;
        }
        
        .header_contacts_calls_phone a img {}
        .header_contacts_calls_phone a span {}
    
    .header_contacts_calls_wa {margin-left: -30px;}

        .header_contacts_calls_wa a {
            background-color: #2CB742;
            text-decoration: none;
            color: #fff;
            padding: 9px 20px;
            display: block;
            border-radius: 50px;
        }
        .header_contacts_calls_wa a img {}
        .header_contacts_calls_wa a span {}

        .header_contacts_calls_wa a:hover {
            opacity: 1;
            background: #218b32;
            }


    .head_calls_icon {
        margin-right: 10px;
    }

    .header_contacts_address {
        font-size: 14px;
        color: #ffffffa8;
        margin-top: 10px;
    }

.hero_info {
    margin-top: auto;
    margin-bottom: 160px;
}

    .ytp_wrap {
        margin-bottom: 50px;
        z-index: 10;
        position: relative;
        padding: 0 125px;
        
    }

        .ytp_wrap h1 {
            color: #fff;
            font-size: 64px;
        }

            .ytp_wrap h1 span {
                background-color: var(--main-cian);
                padding: 5px 15px;
                border-radius: 10px;
                color: #fff;
            }

            .ytp_wrap .subtitle {
                margin-top: 30px;
            }

                .ytp_wrap .subtitle h2 {
                    color: #ABABAB;
                    font-size: 26px;
                    font-family: 'Merriweather Sans';
                    font-weight: 400;
                    max-width: 750px;
                    }




/* ХЛЕБНЫЕ КРОШКИ */
.breadcrumbs {
    margin-bottom: 45px;
    padding: 0 125px;
    font-family: 'Yanone Kaffeesatz';
    font-size: 20px;
}

    .breadcrumbs ul {
        list-style: none;
        display: flex;
        gap: 10px;
    }
    .breadcrumbs ul li {}
            .breadcrumbs ul li a {
                
                color: #ffffffa0;
            }

            .breadcrumbs ul li .separator {
                color: #ffffff40;
            }

            .breadcrumbs ul li .current_item {
                color: #ffffff40;
            }




            .inner_page .ytp_wrap {
                padding: 0;
            }

            .inner_page .ytp_wrap h1 {
                color: #757575;
            }

            .inner_page .breadcrumbs {
                padding: 0;
            }

            .inner_page .breadcrumbs ul li a {
                color: #757575;
            }

            .inner_page .breadcrumbs ul li.current_item {
                color: #eee;
            }
                
/*****************************************     БАННЕРЫ В HERO     *****************************************/
.ytp_banners_wrap {
                z-index: 10;
                position: relative;
                font-family: 'Yanone Kaffeesatz';
                display: flex;
                padding: 0 125px;
                gap: 25px;
                
            }

            .ytp_banners_wrap a:hover {
                opacity: 1;
            }

                .ytp_banner_item {
                    position: relative;
                    box-shadow: 0 20px 40px #00000025;
                    border-radius: 10px;
                    flex: 1 1 0;
                    max-width: 370px;
                    width: 100%;
                }

                .ytp_banner_item:hover {
                    cursor: pointer;
                }

                .tilted {}

                    .ytp_banner_item_info {
                        position: absolute;
                        bottom: 15px;
                        left: 10px;
                    }

                    a .ytp_banner_item_title {
                        color: #757575;
                    }

                        .ytp_banner_item_title {
                            background-color: #fff;
                            padding: 10px 20px;
                            border-radius: 5px 5px 5px 0;
                            font-size: 26px;
                            transform: translateZ(30px);
                        }

                        .ytp_banner_item_subtitle {
                            background-color: var(--main-cian);
                            color: #fff;
                            padding: 10px 20px;
                            border-radius: 0px 5px 5px 5px;
                            width: fit-content;
                        }

                    .ytp_banner_item_image {
                        line-height: 0;
                        z-index: 10;
                    }

                        .ytp_banner_item_image img {
                            border-radius: 10px;
                        }

                    .ytp_banner_item_video {
                        height: 190px;          /* ВСЕГДА одна высота */
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
                    }
                        
                        .ytp_banner_item_video video {
                            border-radius: 10px;
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }


/****************************************************************/
/*********************** ПОИСКОВАЯ ПЛАШКА ***********************/
/****************************************************************/
.search_wrap {
    padding: 0 125px;
    margin-top: -80px;
}

.search_block {
background: #7FDDE9;
background: linear-gradient(0deg,rgba(127, 221, 233, 1) 0%, rgba(1, 187, 211, 1) 100%);
border-radius: 10px;
padding: 45px;
color: #fff;
z-index: 10;
position: relative;
}

.search_block:before {
    content: "";
    background-color: #fff;
    width: 100%;
    height: 100%;

}

.search_block_title {
    position: absolute;
    background: #0BBFD6;
    color: #ffffff87;
    font-size: 14px;
    padding: 10px 30px;
    border-radius: 10px 10px 0 0;
    top: -25px;
    left: 15px;
}

.search_block_title img {
    margin-right: 10px;
}





/*********************************************************************************/
/*********************** СЕКЦИЯ: СОБЫТИЯ И СПЕЦПРЕДЛОЖЕНИЯ ***********************/
/*********************************************************************************/

#news_block {
padding: 175px 0 100px 0;
}






/*********************************************************************************/
/*************************** СЕКЦИЯ: НАПРАВЛЕНИЯ ТУРОВ ***************************/
/*********************************************************************************/

#tours {}

.china_tour_block {
    background-color: #DC3134;
    position: relative;
    background-size: cover;
    background-position: left;
    transition: background-image 0.4s ease;
}

.health_tour_block {}

    .health_tour_block .tour_title_block {
        position: relative;
    }

    .health_tour_block .tour_title_block .snoska {
        position: absolute;
        background: var(--main-cian);
        color: #fff;
        font-size: 14px;
        padding: 5px 15px;
        top: -20px;
        line-height: 1;
        border-radius: 5px;
        left: 45px;
        }

    .health_tour_block .tour_title_block h2 {
        color: #5D5D5D;
        font-size: 82px;
    }
        .health_tour_block .tour_title_block h2 span {
            color: var(--main-cian);
        }

        .health_tour_block .tour_title_block .subtitle {
            color: #4F4F4F;
            font-size: 30px;
            }

            .health_tour_block .tour_title_block .subtitle span {
                display: block;
                color: var(--main-cian);
            }

            .health_tour_block .tour_more_button {
                text-align: left;
            }

            .health_tour_block .tour_more_button a {
                background: var(--main-cian);
                color: #fff;
            }

    .health_tour_pic {
        z-index: 10;
    }

    .health_fly_pic_01 {
        position:absolute;
        top: 150px;
        left: -165px;
    }

    .health_fly_pic_02 {
        position:absolute;
        top: 50px;
        left: 500px;
    }

    .health_fly_pic_03 {
        position:absolute;
        top: 500px;
        left: 1000px;
    }

.beach_tour_block {}


.individual_tour_block {}

    .individual_tour_block .tour_title_block h2 {
        color: #5D5D5D;
        font-size: 82px;
        margin-bottom: 30px;
    }
    .individual_tour_block .tour_title_block h2 span {
        color: var(--main-cian);
        display: block;
    }

    .individual_tour_block .tour_title_block .subtitle {
        color: #4F4F4F;
        font-size: 30px;
        max-width: 450px;
    }

    
    .individual_tour_block .tour_more_button {
        text-align: left;
    }

    .individual_tour_block .tour_more_button a {
        background: var(--main-cian);
        color: #fff;
    }
    
    .individual_tour_pic {
        z-index: 10;
        margin-top: -80px;
    }

    .individual_fly_pic_01 img,
        .individual_fly_pic_02 img,
        .individual_fly_pic_03 img,
        .individual_fly_pic_04 img,
        .individual_fly_pic_05 img {
            border-radius: 10px;
        }

    .individual_fly_pic_01 {
        position: absolute;
        top: 100px;
        left: -190px;
        transform: rotate(-15deg);
        }

        .individual_fly_pic_02 {
            position: absolute;
            top: 520px;
            left: -150px;
            transform: rotate(-13deg);
            }

            .individual_fly_pic_03 {
                position: absolute;
                top: -20px;
                left: 850px;
                transform: rotate(-11deg);
                }

                .individual_fly_pic_04 {
                    position: absolute;
                    top: 600px;
                    left: 700px;
                    transform: rotate(22deg);
                    }

                    .individual_fly_pic_05 {
                        position: absolute;
                        top: 400px;
                        left: 1000px;
                        transform: rotate(15deg);
                        }




.tour_block_content {
    position: relative;
    display: flex;
    gap: 20px;
    /*padding: 100px 0;*/
    align-items: center;
}

    .tour_block_content_info {
        padding: 100px 0;
    }

        .tour_title_block {
            margin-bottom: 30px;
        }

            .tour_title_block h2 {
            font-size: 52px;
            color: #fff;
        }

        .tour_title_block h2 span {
            color:#FCCE8D;
        }


        .tour_more_button {
            margin-top: 40px;
            text-align: right;
        }

            .tour_more_button a {
                background:#FCCE8D;
                color:#5B5B5B;
                padding:10px 30px;
                display: inline-block;
                text-decoration: none;
                border-radius: 5px;
            }

    .tour_block_content_pic {}


    .china_tour_pic {
        position: absolute;
        right: -170px;
        bottom:0;
    }

    .beach_tour_pic {
        position: absolute;
        right: -170px;
        bottom:0;
    }

    .tours_table {
        display: grid;
    /*grid-template-columns: repeat(auto-fill, minmax(240px, 350px));*/
    grid-template-columns: repeat(2, minmax(0, 350px));
    gap: 20px;
    }

    .tour_item_block {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tour_item_block:hover {
    cursor: pointer;
}
  
  .tour_item_block .tour_item-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }
  
  .tour_item_block .tour_item-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tour_item-info_block {
    position: absolute;
    z-index: 10;
    bottom: 10px;
    left: 10px;
    display: flex;
  }

    .tour_item-info_block-city {
        background: #fff;
        color: #5B5B5B;
        padding: 10px 20px;
        border-radius: 5px 0 0 5px;
        font-family: 'Yanone Kaffeesatz';
        font-size: 26px;
    }
    
    .tour_item-info_block-price {
        background: #FCCE8D;
        color: #5B5B5B;
        padding: 10px 20px;
        border-radius: 0 5px 5px 0;
        font-family: 'Yanone Kaffeesatz';
        font-size: 26px;
    }

    .beach_tour_block .tour_item-info_block-price {
        background: #FE4F3B;
        color: #fff;
    }

    .beach_tour_block .tour_more_button a {
        background: #fff;
        color: var(--main-cian);
    }

/*********************************************************************************/
/*************************** СЕКЦИЯ: НОВОСТИ ***************************/
/*********************************************************************************/
.news_item {
    max-width: 350px;
}
a.news_item {
    text-decoration: none;
}

.news_item_image {
    margin-bottom: 10px;
    }

        .news_item_image img {
            width: 100%;
            border-radius: 10px;
            border-left:5px solid #fff;
            border-bottom:5px solid #fff;
            border-right:5px solid #fff;
            box-shadow: 0 10px 40px #8c8c8c3b;
        }

    a .news_item_title {
        text-decoration: none;
        color: #757575;
        font-weight: bold;
    }

    a .news_item_shortdesc {
        color: #ABABAB;
        font-size: 16px;
        font-weight: 400;
        margin-top: 5px;
    }

/* 1. Обертка — на весь экран */
.news-slider-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* 2. Слайдер — смещаем ВПРАВО до контейнера */
.news-slider-wrap .news_slider {
    padding-left: calc((100vw - 1414px) / 2);
    padding-top: 25px;
}

/* 3. Слайды */
.news_slider .swiper-slide {
    width: 350px;
}


/*********************************************************************************/
/*************************** СЕКЦИЯ: ГОРЯЧИЕ ТУРЫ ***************************/
/*********************************************************************************/
    
#hot_tours {
    padding: 100px 0 0 0;
}

.hot_tours_table {}







/*********************************************************************************/
/*************************** БЛОК: МЕНЕДЖЕР / ТРИГГЕР ***************************/
/*********************************************************************************/

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

    .manager_trigger_block-title {
        max-width: 345px;
    }

        .manager_trigger_block-title h4 {
            font-size: 42px;
            color: var(--main-titles-cian);
        }
            .manager_trigger_block-title h4 span {
                display: block;
                font-size: 82px;
            }

    .manager_trigger_block-girl {}

    .manager_trigger_block-form {}


.feedbackform_wrap {}
    .feedbackform_title {
        margin-bottom: 20px;
    }
        .feedbackform_title h3 {
            font-size: 42px;
            color: #6D6D6D;
            margin-bottom: 10px;
        }
        .feedbackform_title .subtitle {
            font-size: 18px;
            color: #757575;
            max-width: 315px;
        }

.feedbackform_items_wrap {
    display: flex;
    gap: 10px;
}

    .feedbackform_item_block {
        margin-bottom: 30px;
    }
        .feedbackform_item_title {
            font-size: 12px;
            color: var(--main-titles-cian);
            padding: 0 0 10px 10px;
        }
        .feedbackform_item_input {}

            .feedbackform_item_input input {
                font-size: 18px;
                color: #9A9A9A;
                padding: 10px 20px;
                border-radius: 10px;
                max-width: 275px;
            }

            .feedbackform_buttons_wrap {
                display: flex;
                align-items: flex-start;
                gap: 20px;
                }

    .feedbackform_button_block {}

    .feedbackform_button_block a {
        background: var(--main-cian);
        color: #fff;
        font-size: 28px;
        padding: 10px 30px;
        font-family: 'Yanone Kaffeesatz';
        text-decoration: none;
        border-radius: 10px;
        display: inline-block;
        }

        .feedbackform_button_block input {
            background: var(--main-cian);
            color: #fff;
            font-size: 28px;
            padding: 10px 30px;
            font-family: 'Yanone Kaffeesatz';
            text-decoration: none;
            border-radius: 10px;
            width: 100%;
            }

    .feedbackform_snoska_block {
        font-size: 12px;
        color: var(--main-titles-cian);
        max-width: 270px;
        margin-top: 8px;
    }

    .wpcf7 form .wpcf7-response-output {
        margin: 0em 0.5em 1em;
        padding: 0.2em 1em;
        border: 2px solid #00a0d2;
        max-width: 550px;
        text-align: center;
        }

        .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
            border-color: #ffb900;
            background: #ffb900;
            color: #fff;
            border-radius: 10px;
            padding: 15px 15px;
            font-size: 14px;
            }


/*********************************************************************************/
/*************************** БЛОК: ОТЗЫВЫ ***************************/
/*********************************************************************************/
            .review_card {
                position: relative;
                font-family: 'Yanone Kaffeesatz';
            }

                .review_card_video {}

                .review_card_video video {
                    width: 100%;
                    max-width: 350px;
                    display: block;
                    border-radius: 10px;
                }

                .review_card_info {
                    position: absolute;
                    bottom: 40px;
                    left: 40px;
                }

                    .review_card_info_name {
                        background-color: #fff;
                        padding: 10px 20px;
                        font-size: 26px;
                        display: inline-block;
                        border-radius: 5px 5px 0 0;
                    }
                    
                    .review_card_info_tourYear {
                        background-color: var(--main-cian);
                        padding: 10px 20px;
                        font-size: 26px;
                        color: #fff;
                        border-radius: 0 5px 5px 5px;
                    }

                    #reviews_block .swiper-slide {
                        width: 350px!important;
                        }



/*********************************************************************************/
/*************************** БЛОК: О КОМПАНИИ ***************************/
/*********************************************************************************/

#about-us {
    padding: 100px 0;
}

.about_title-and-photos {
    display: flex;
    margin-bottom: 100px;
    gap: 40px;
}
    .about_title-and-photos .about_title {
        min-width: 400px;
    }
        .about_title-and-photos .about_title h2 {
            font-size: 42px;
        }

        .about_photos {
            overflow: hidden;
            position: relative;
            }

            .about_photos:before {
                position: absolute;
                width: 150px;
                height: 100%;
                background: #ffffff;
                background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
                content: "";
                left: 0;
                top: 0;
                z-index: 10;
                pointer-events: none;
                }

                .about_photos:after {
                    position: absolute;
                    width: 150px;
                    height: 100%;
                    background: #ffffff;
                    background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
                    content: "";
                    right: 0;
                    top: 0;
                    z-index: 10;
                    pointer-events: none;
                    }

            
    
    .about_photos_track {
        display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 40s linear infinite;
    }

    @keyframes marquee {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }

    .about_photo_item {}
        .about_photo_item img {
            border-radius: 10px;
        }

.about_description {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}
    .about_description-text1 {
        max-width: 555px;
    }
        .about_description-text1 p {
            margin-bottom: 20px;
        }

    .about_description-text2 {
        max-width: 555px;
    }
        .about_description-text2 p {
            margin-bottom: 20px;
        }
            .about_description-text2 p a {}

.about_benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px; /* расстояние между айтемами */
}
    .about_benefit_item {
        background: var(--main-light-cian);
        padding: 50px;
        flex: 0 1 415px;
        text-align: center;
        border-radius: 10px;
    }
        .about_benefit_item-title {
            margin-bottom: 10px;
            font-family: 'Yanone Kaffeesatz';
            font-size: 28px;
        }
        .about_benefit_item-desc {
            line-height: 1.40;
            color: #878787;
            }


/* ДЕТАЛЬНАЯ СТРАНИЦА О КОМПАНИИ */
.aboutPage_content_wrap {
    display: flex;
    gap: 24px;
    position: relative;
    padding: 200px 0 350px 0;
}

    .aboutPage_content_leftSide {
        max-width: 555px;
    }

        .aboutPage_content_leftSide p {
            margin-bottom: 20px;
        }

        .aboutPage_content_rightSide {
            padding-left: 100px;
            }

    .manager-about-page {
        position: absolute;
        right: -150px;
        bottom: -249px;
        pointer-events: none;
        }


        /* НАША КОМАНДА */
        #about-team {
            padding: 100px 0;
        }

        .cartGrid-team {
            display: grid;
            grid-template-columns: repeat(
              auto-fit,
              minmax(335px, 1fr)
            );
            gap: 24px;
          }

          .teamCard-item {
            margin-bottom: 60px;
          }

            .teamCard-item-image {}

                .teamCard-item-image img {
                    border-radius: 10px;
                }

                .teamCard-item-info {
                    margin-top: 10px;
                    }

                .teamCard-item-info-name {
                    font-size: 18px;
                    margin-top: 5px;
                }

                .teamCard-item-info-job {
                    font-size: 16px;
                    color:#ABABAB;
                }
            


                /* Блок преимуществ */
                #company-benefits {
                    padding: 100px 0;
                }

                #company-benefits .about_benefit_item {
                    background-color: #fff;
                }



/*********************************************************************************/
/*************************** БЛОК: ОТЗЫВЫ КЛИЕНТОВ ***************************/
/*********************************************************************************/

#reviews_block {
    background-color: var(--main-light-cian);
    padding: 100px 0;
}



/*********************************************************************************/
/*************************** БЛОК: ПОДВАЛ ***************************/
/*********************************************************************************/

#footer {
    padding: 100px 0;
    background: #E6F8FB;
    background: linear-gradient(0deg, rgba(230, 248, 251, 1) 0%, rgba(230, 248, 251, 0) 100%);
}


.footer_contacts_block {
    display: flex;
    align-items: center;
}
    .footer_contacts_left {
        min-width: 600px;
    }
    .footer_contacts_right {
        width: 100%;
    }
        .map_block {
            max-width: 740px;
            margin: 0 0 0 auto;
        }
            
        .map_block iframe {
            width: 100%;
            border-radius: 10px;
            border-right: 5px solid #fff;
            border-bottom: 5px solid #fff;
            border-left: 5px solid #fff;
            box-shadow: 0 10px 40px #abc9c97c;
            }

                .footer_contacts_info-item {
                    margin-bottom: 30px;
                }
                .footer_contacts_info-item_title {
                    font-size: 18px;
                    color: var(--main-titles-cian);
                    margin-bottom: 5px;
                }
                .footer_contacts_info-item_value {
                    font-size: 21px;
                    font-weight: bold;
                    line-height: 1.5;
                }
                .footer_contacts_info-item_value-table {}
                    .footer_contacts_info-item_value-table tr td {padding-right: 20px;}


                    .footer_contacts_info-item_phone {
                        background-color: var(--main-light-cian);
                        padding: 40px;
                        display: flex;
                        gap: 40px;
                        border-radius: 10px;
                        margin-left: -40px;
                        width: fit-content;
                        margin-bottom:30px;
                    }
                        .footer_contacts_info-item_phone_item {}
                            .footer_contacts_info-item_phone_item-title {
                                color:var(--main-titles-cian);
                                font-size: 18px;
                                margin-bottom: 5px;
                            }
                            .footer_contacts_info-item_phone_item-value {}
                                .footer_contacts_info-item_phone_item-value a {
                                    text-decoration: none;
                                    color:#757575;
                                    font-size: 21px;
                                    font-weight: bold;
                                    display: inline-block;
                                }

                    










                                .footer_contacts_info-item_messangers {
                                    display: flex;
                                    gap: 40px;
                                    border-radius: 10px;
                                    width: fit-content;
                                }
                                    .footer_contacts_info-item_messangers_item {}
                                        .footer_contacts_info-item_messangers_item-title {
                                            color:var(--main-titles-cian);
                                            font-size: 18px;
                                            margin-bottom: 5px;
                                        }
                                        .footer_contacts_info-item_messangers_item-value {}
                                            .footer_contacts_info-item_messangers_item-value a {
                                                text-decoration: none;
                                                color:#757575;
                                                font-size: 21px;
                                                font-weight: bold;
                                                display: inline-block;
                                            }


                                            .default_footer_block {
                                                border-top: 1px solid var(--main-light-cian);
                                                margin-top: 100px;
                                                padding-top: 100px;
                                                display: flex;
                                                gap: 20px;
                                                color: var(--main-titles-cian);
                                                }

                                                .default_footer_logo {
                                                    padding-right: 80px;
                                                }
                                                .default_footer_nav {}
                                                    .footer_menu {
                                                        margin-bottom: 30px;
                                                        max-width: 550px;
                                                    }

                                                    .footer_menu ul {
                                                        list-style-type: none;
                                                        display: flex;
                                                        flex-wrap: wrap;
                                                        justify-content: flex-start;
                                                        gap: 20px;
                                                    }
                                                    .footer_menu ul li {
                                                        flex: 0 1 30%;
                                                    }
                                                    .footer_menu ul li a {
                                                        text-decoration: none;
                                                        color: var(--main-titles-cian);
                                                        font-weight: bold;
                                                    }

                                                    .footer_desc {
                                                        font-size: 14px;
                                                        max-width: 830px;
                                                    }
                                                    .footer_desc strong {
                                                        display: block;
                                                    }

                                                    .default_footer_contacts {
                                                        text-align: right;
                                                        }

                                                .footer_contacts_phones_block {
                                                    display: flex;
                                                    gap: 20px;
                                                    margin-bottom: 10px;
                                                    }

                                                    .footer_contact_phone {}

                                                        .footer_contact_phone a {
                                                            text-decoration: none;
                                                            color: var(--main-titles-cian);
                                                            font-size: 21px;
                                                        }

                                                        img.footer_phone_icon {
                                                            margin-right: 10px;
                                                        }

                                                    .footer_contact_wa {}

                                                        .footer_contact_wa a {
                                                            text-decoration: none;
                                                            background-color: var(--main-titles-cian);
                                                            color: #fff;
                                                            padding: 10px 20px;
                                                            border-radius: 60px;
                                                            font-size: 16px;
                                                        }

                                                        img.footer_wa_icon {
                                                            margin-right: 10px;
                                                        }

                                                        .footer_contacts_address {
                                                            font-size: 16px;
                                                            }




/*******************************************************************************************************************************/
/*******************************************************************************************************************************/
/***************************************************** СТРАНИЦА ГОРОДА *********************************************************/
/*******************************************************************************************************************************/
/*******************************************************************************************************************************/

#tours {
    padding-top: 150px;
    z-index: 10;
    position: relative;
}


.cartGrid {
    display: grid;
    grid-template-columns: repeat(
      auto-fit,
      minmax(340px, 1fr)
    );
    gap: 24px;
  }


/* КАРТОЧКА (под туры, под гостиницы и под другое */

.cartBlock--link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.cartBlock_link {
    text-decoration: none;  /* убираем подчеркивание */
    color: inherit;         /* наследуем цвет от родителя (контейнера), а не ссылки) */
}

.cartBlock_link .cartBlock_title,
.cartBlock_link .cartBlock_subtitle,
.cartBlock_link .cartBlock_titlesWrap {
    color: inherit;         /* если нужно, чтобы текст внутри блоков не перекрашивался ссылкой */
}

.cartBlock {
    margin-bottom: 60px;
    }

.cartBlock_image {
    width: 100%;
    aspect-ratio: 4 / 3;        /* 🔥 магия */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: flex-end;   /* ↓ вниз */
    padding: 20px;
  }

.cartBlock_titlesWrap {}

.cartBlock_title {
    background: #fff;
    font-size: 26px;
    padding: 10px 20px;
    width: fit-content;
    border-radius: 5px;
    font-family: 'Yanone Kaffeesatz';
    }

.cartBlock_subtitle {
    background-color: var(--main-cian);
    padding: 10px 20px;
    color: #fff;
    font-size: 21px;
    width: fit-content;
    border-radius: 5px;
    font-family: 'Yanone Kaffeesatz';
}

.cartBlock_subtitle.smallSubtitle {
    font-size: 18px;
    padding: 5px 10px;
    color: #fff;
}

.cartBlock_toursTable {
    margin-top: 20px;
    }

.cartBlock_tourItem {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 7px;
    position: relative;
}

    .cartBlock_tourItem:nth-child(even) {
        background-color: var(--main-light-cian);
    }

    .cartBlock_tourItem:hover {
        background-color: var(--main-light-cian);
    }

    .cartBlock_toursTable:has(.cartBlock_tourItem:hover)
.cartBlock_tourItem:nth-child(even) {
  background: transparent;
}

.cartBlock_toursTable:has(.cartBlock_tourItem:hover)
.cartBlock_tourItem:hover {
  background:  var(--main-light-cian);
}
    
.cartBlock_tourItem_days {}

.cartBlock_tourItem_price {}





/*********************************************************************************/
/*************************** БЛОК: ПЛАН ТУРА ***************************/
/*********************************************************************************/

#tourPlan {
    padding: 100px 0;
}

.tourPlanGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  
    align-items: stretch; /* 🔥 важно */
}

.tourPlan_day {
    display: flex;
  flex-direction: column;
  height: 100%;
    gap: 30px;
}

.tourPlan_day_title {
    text-align: center;
    font-family: 'Yanone Kaffeesatz';
    font-size: 28px;
    color: var(--main-titles-cian);
    }

.tourPlan_item {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;

    flex: 1;               /* 🔥 магия */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



/*********************************************************************************/
/*************************** БЛОК: ОТЕЛИ ***************************/
/*********************************************************************************/

#hotels {
    padding: 100px 0;
}

#hotels .cartBlock {
    margin-bottom: 0;
    }


/*********************************************************************************/
/*************************** БЛОК: РАЗВЛЕЧЕНИЯ ***************************/
/*********************************************************************************/

#entertainment {
    padding: 100px 0;
}

#entertainment .cartBlock {
    margin-bottom: 0;
    }



/*********************************************************************************/
/*************************** БЛОК: МЕНЕДЖЕР (обратная связь) ***************************/
/*********************************************************************************/

#manager {}





/*******************************************************************************************************************************/
/*******************************************************************************************************************************/
/**************************************************** СТРАНИЦА ГОСТИНИЦЫ *******************************************************/
/*******************************************************************************************************************************/
/*******************************************************************************************************************************/

#hotel_main_info {
    padding: 100px 0;
}

    .hotel_info_wrap {
        display: flex;
  gap: 100px;
    }

        .hotel_info_gallerySide {
            flex: 1;
        }

        .hotel_info_descSide {
            flex: 1;
            margin-top: 70px;
        }

        .hotel_name {}

        .hotel_name h2 {
            font-size: 52px;
            margin-bottom: 20px;
            }

        .hotel_desc {
            margin-bottom: 60px;
        }

        .room_types_title {
            color: var(--main-titles-cian);
            font-size: 18px;
            margin-bottom: 20px;
        }

        .room_types {}

        .room_type_item {
            background-color: #fff;
            padding: 10px 30px;
            margin-bottom: 20px;
            width: fit-content;
            border-radius: 60px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: -10px;
        }




/*********************************************************************************/
/*************************** БЛОК: ПРЕИМУЩЕСТВА ГОСТИНИЦЫ ***************************/
/*********************************************************************************/
#hotel_benefits {
    padding: 100px 0;
}

.hotel_benefits_title {
    font-size: 34px;
    color: var(--main-titles-cian);
    font-family: 'Yanone Kaffeesatz';
    margin-bottom: 80px;
}

        .hotel_benefits_grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* четыре колонки */
            gap: 24px; /* расстояние между блоками */
            align-items: start; /* по верхнему краю */
            row-gap: 80px;
        }

            .hotel_benefit_item {
                display: flex;
                flex-direction: column; /* иконка сверху, текст снизу */
                align-items: center; /* центрируем по горизонтали */
                text-align: center;
            }

                .hotel_benefit_icon {
                    margin-bottom: 20px;
                }

                .hotel_benefit_title {
                    font-family: 'Yanone Kaffeesatz';
                    font-size: 24px;
                }

                .hotel_benefit_desc {
                    font-size: 14px;
                    color: #9E9E9E;
                    max-width: 270px;
                    margin-top: 5px;
                    }


            
                .special_benefits_block {
                    display: flex;
                    gap: 30px;
                    padding: 100px 0;
                }

                    .special_benefit_item {
                        display: flex;
                        background-color: var(--main-light-cian);
                        padding: 30px;
                        position: relative;
                        gap: 30px;
                        border-radius: 10px;
                        align-items: center;
                    }

                        .special_benefit_icon {}

                        .special_benefit_info {}

                            .special_benefit_title {
                                font-family: 'Yanone Kaffeesatz';
                                font-size: 24px;
                            }

                            .special_benefit_desc {
                                font-size: 14px;
                                color: #9E9E9E;
                            }

                            .special_benefit_snoska {
                                position: absolute;
                                padding: 5px 10px;
                                border-radius: 5px;
                                color: #fff;
                                font-size: 12px;
                                top: -10px;
                                left: 30px;
                                background: var(--main-titles-cian);
                            }

/*********************************************************************************/
/*************************** БЛОК: ГОСТИНИЦА НА КАРТЕ ***************************/
/*********************************************************************************/

#hotelMap {
    
}




/******************************************************************************************************/
/*************************** БЛОК: ОСНОВНОЙ КОНТЕНТ НА ВНУТРЕННИХ СТРАНИЦАХ ***************************/
/******************************************************************************************************/

#main_content {
    padding: 100px 0;
}




/*********************************************************************************/
/********************************* 404 СТРАНИЧКА *********************************/
/*********************************************************************************/

#main_content.page404 {
    padding: 100px 0 0 0!important;
    margin-bottom: -100px;
}

.page404-main-content-wrap {
    display: flex;
    width: 100%;
    position: relative;
}

    .page404-main-content-wrap-left {}

    .page404-main-content-wrap-right {}

        .page404-girl {}

            .page404-girl img  {}

.page404-title-wrap {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 200px;
    }

    .page404-title-wrap-left {
        font-size: 200px;
        font-family: 'Yanone Kaffeesatz';
        font-weight: bold;
    }
        
    .page404-title-wrap-right {
        font-size: 42px;
        font-family: 'Yanone Kaffeesatz';
        max-width: 435px;
        font-weight: bold;
        }


        .page404-tours-adv-wrap {}

        .page404-tours-adv-wrap-title {
            max-width: 395px;
            margin-bottom: 40px;
            }

                .page404-tours-adv-wrap-title h2 {
                    font-size: 42px;
                    font-family: 'Yanone Kaffeesatz';
                    font-weight: bold;
                    color:var(--main-titles-cian);
                }

            .page404-tours-adv-wrap-item {
                display:flex;
                font-size: 28px;
                font-family: 'Yanone Kaffeesatz';
                margin-bottom: 10px;
                gap: 5px;
            }
            
                .page404-tours-adv-wrap-item-tour {}

                .page404-tours-adv-wrap-item-tour-price {
                    color: var(--main-titles-cian);
                }

                .page404-tours-adv-wrap-item.special-tours {
                    display: block;
                }








/* ВИДЖЕТ ОТ CRM  -ПЕРБИВКА СТИЛЕЙ */

.rma_widget_tours__root {
    background: rgba(255, 255, 255, 0)!important;
    margin-top: -220px!important;
}

.rma_widget_tours__filters-header {
    display: none!important;
    }

    .rma_widget_tours__filters {
        padding: 0 100px 0 0!important;
        width: fit-content!important;
        }

        .rma_widget_tours__filters-bar {
            border-radius: 10px!important;
            padding: 50px 50px!important;
            box-shadow: 0 10px 50px #abc9c97b!important;
            background: #00BCD4!important;
            background: linear-gradient(180deg, rgba(0, 188, 212, 1) 0%, rgba(113, 218, 231, 1) 100%)!important;
            }

            .rma_widget_tours__filters-label {
                color: #ffffff!important;
                margin-bottom: 10px!important;
                padding-left: 10px!important;
                }

                .rma_widget_tours__filters-btn--primary {
                    background: #FE4F3B!important;
                    color: #f9fafb!important;
                    box-shadow:none!important;
                    }

                    .rma_widget_tours__filters-btn {
                        border-radius: 5px!important;
                        }



/* Страница Политики Конфиденциальности */
.police_block {}

.police_block h2 {
    margin-bottom: 10px;
    }

    .police_block p {}

    .police_block ul {
        list-style: none;
        padding: 20px;
        }

        .police_block ul li {
            margin-bottom: 10px;
            }

            .footer_policy_block {
                margin: 30px 0;
                }

                .footer_policy_block a {
                    font-size: 14px;
                    color: var(--main-titles-cian);
                    }



/* СТРАНИЦА ВИЗ */
.visa_block_welcome {
    position: relative;
    padding-bottom: 40px;
    }

    .visa_welcome_item {
        margin-bottom: 60px;
    }

    .visa_welcome_item p {
        margin-bottom: 10px;
        }

    .visa_block_welcome_pic {
        position: absolute;
        top: -100px;
        right: -140px;
        pointer-events: none;
        z-index: -10;
        }

        .visa_block_welcome_pic img {}

        .visa_block_welcome .title_block {
            margin-bottom: 20px;
            }

        .type_visa_block {
            padding: 100px 0;
        }

        .tourist_type_visa {}

        .visa_types_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, 335px);
            gap: 24px;
            justify-content: start;
        }

        .visa_type_item {
            box-shadow: 0 10px 40px rgba(171, 201, 201, 0.5);
            max-width: 335px;
            border-radius: 10px;
            height: fit-content;
            }

    .visa_type_content {
        background: #fff;
        padding: 35px;
        border-radius:10px 10px 0 0;
        position: relative;
    }

    .visa_type_icon {
        font-family: 'Yanone Kaffeesatz';
        font-size: 28px;
        font-weight: normal;
        background: var(--main-light-cian);
        width: 40px;
        height: 40px;
        border-radius: 50px;
        position: absolute;
        top: 30px;
        right: 35px;
        text-align: center;
        padding-top: 7px;
        color: var(--main-titles-cian);
        }

        .visa_type_item h3 {
            font-family: 'Yanone Kaffeesatz';
            font-size: 28px;
            font-weight: normal;
            max-width: 180px;
        }

        .visa_type_desc {
            margin: 20px 0;
        }

        .visa_type_desc ul {
            list-style-type: none;
            }

            .visa_type_desc ul li {
                margin-bottom: 10px;
                font-size: 14px;
                color:var(--main-titles-cian);
                }

                a.visa_type_docs_link {
                    font-size: 16px;
                }

                .visa_type_price {
                    background: var(--main-cian);
                    color: #fff;
                    font-family: 'Yanone Kaffeesatz';
                font-size: 28px;
                font-weight: normal;
                padding: 20px 35px;
                border-radius: 0 0 10px 10px;
                }

                .visa_type_price span {
                    display: block;
                    color: #ffffff80;
                    font-size: 18px;
                    margin-top: 5px;
                    }