

/*-----------------------USE---------------------------
-----------------------------------------------------*/
.limit{
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

section.spaced{
    padding: 6.25em 0;
}

section .title-subtext{
    max-width: 70%;
    margin: 1.5em auto 3.75em;
    text-align: center;
    font-size: 1.25em;
}
/*-----------------------------------------------------*/
/*------------------------ HEADER ---------------------*/
/*-----------------------------------------------------*/
header{
    position: relative;
    z-index: 10;
    height: 100px;
}

header ._inner{
    padding: 1em 0;
    transition: transform .5s ease,top .5s ease;
}

header ._inner.scroll{
    transform: translateY(-100%);
}

header ._inner.fixed{
    position: fixed;
    transform: translateY(0);
    border-bottom: 1px solid #efefef;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 0;
    height: 77px;
    z-index: 100;
}

header ._inner.fixed nav li:not(.active) a{color: #28364b}

header .header-grid{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 -24px;
}

header .header-grid .header-grid_col{
    padding: 0 24px;
}

header .header-grid .logo{display: inline-block}
header .header-grid .logo1{height: 71px;}
header .header-grid .logo2{height: 52px;}

header .header-grid .logo2{display: none}

header ._inner.fixed .logo1{display: none}
header ._inner.fixed .logo2{display: inline-block}

header nav li{padding-left: 1.5em}

header nav li:first-of-type{padding-left: 0}

header nav a{
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
}

header nav .active a,
header nav a:hover{color: #c79e60; text-decoration: underline}

header .mobile-menu{display: none; cursor: pointer}

.adaptive-menu{
    position: fixed;
    z-index: 400;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
}

.adaptive-menu .close{text-align: right; padding: 1.75em 0 1em}

.adaptive-menu nav a{color: #28364b; padding: 8px 0}

.adaptive-menu nav li{display: block; padding: 0}

.adaptive-menu nav li + li{margin-top: 8px;}

/*-----------------------------------------------------*/
/*------------------------ SLIDER ---------------------*/
/*-----------------------------------------------------*/
.block-carousel{
    margin-top: -100px;
    position: relative;
}



@media only screen and (max-height : 749px) {
    .block-carousel{height: 750px;}

}

@media only screen and (max-width: 480px) {

    .the_text {
        padding-bottom: 100px;
    }


}


.block-carousel .mainCarousel_arrBtm{
    bottom: 16px;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
}

@keyframes spin{
    0% {
        transform: translate3d(0, -10px, 0);
    }
    50% {
        transform: translate3d(0, 10px, 0);
    }
    100% {
        transform: translate3d(0, -10px, 0);
    }
}

.block-carousel .mainCarousel_arrBtm .arr{
    cursor: pointer;
    display: inline-block;
    animation: spin 10s infinite linear;
}

.mainCarousel .mainCarousel-content{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mainCarousel .mainCarousel-content h3{
    color: #c79e60;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .2px;
    padding-bottom: 12px;
}

.mainCarousel .mainCarousel-content .mainCarousel_title{
    color: #fff;
    font-size: 3.625em;
}

.mainCarousel .mainCarousel-content .mainCarousel_btn{
    padding-top: 24px;
}

.btn{
    font-size: 20px;
    top: 40px;
    display: inline-block;
    color: #000000;
    background: #fff;
    font-weight: 500;
    padding: 24px 34px;
    border-radius: 40px;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.45);
    /* border: 1px solid #c79e60; */
}

.mainCarousel_btn .btn {
    display: inline-block; /* или flex, если вам нужно дополнительное выравнивание */
    position: relative; /* позволяет позиционировать псевдоэлемент относительно кнопки */
    padding-left: 90px; /* достаточно места для иконки */

    text-decoration: none;
    /* Другие стили для кнопки */
}

.mainCarousel_btn .btn + .btn{margin-left: 12px;}

.mainCarousel_btn .btn::before {
    content: '';
    position: absolute;
    left: 40px; /* или достаточно места слева, чтобы выровнять как на изображении */
    top: 50%; /* выравнивает иконку по центру по вертикали */
    transform: translateY(-50%); /* центрирует иконку точно по центру по вертикали */
    width: 36px; /* размер вашей иконки */
    height: 36px; /* размер вашей иконки */
    background-image: url('../images/icon/360-degrees.svg'); /* используйте относительный путь к SVG иконке */
    background-size: contain;
    background-repeat: no-repeat;
}

.mainCarousel_btn .btn.isVideo::before{
    background-image: url('../images/icon/video.svg');
}


.btn:hover{
    background: #fff;
    /* color: #c79e60; */
    /* font-weight: 600; */
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.75);
    /* transition: all 0.2s ease-in-out; */
    /* border: 1px solid #fff; */
}

@media (max-width: 768px) {
    #mob {
        height: 100vh;
    }
    .btn{
        font-size: 18px;
        top: 0;

        padding: 20px 26px;
        border-radius: 40px;

    }
    .mainCarousel_btn .btn {
        padding-left: 70px;
    }
    .mainCarousel_btn .btn::before {
        left: 30px;
        width: 30px;
        height: 30px;
    }
}



.mainCarousel .slick-slide{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.mainCarousel,
.mainCarousel .slick-list,
.mainCarousel .slick-track{
    height: 100%;
}

.slick-arrow{
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 2;
    width: 80px;
    height: 80px;
    position: absolute;
    font-size: 0;
    line-height: 0;
    color: #c79e60;
    background: rgba(0,0,0,0.25) ;
}

.slick-arrow:before{
    content: '';
    background: url("../images/slider/arr_1.svg") no-repeat center;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -20px;
    margin-left: -20px;
    width: 40px;
    height: 40px;
}

.slick-arrow.slick-next:before{transform: rotate(-180deg)}
.slick-arrow:hover{background: #c79e60;}
.slick-arrow:hover:before{background: url("../images/slider/arr_2.svg") no-repeat center #c79e60;}

.mainCarousel .slick-arrow.slick-prev{left: 16px;}

.mainCarousel .slick-arrow.slick-next{right: 16px;}

.mainCarousel .slick-dots{
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 16px;
    text-align: center;
}

.mainCarousel .slick-dots button{
    height: 12px;
    width: 12px;
    border-radius: 30px;
    background: #fff;
    margin: 0 6px;
    display: block;
    font-size: 0;
    line-height: 0;
}

.mainCarousel .slick-dots .slick-active button,
.mainCarousel .slick-dots button:hover{
    background: #c79e60;
}

@media only screen and (min-height : 600px) {
    .btn{
        /* top: 100px; */
        top: calc(100vh - 85vh);
        /* color:#007bff; */

    }
    .mainCarousel_arrBtm {
        display: none;
    }
}

/*-----------------------------------------------------*/
/*------------------------ PARAMS ---------------------*/
/*-----------------------------------------------------*/
.block-params{
    background: url("../images/bg/bg-params.png") no-repeat center;
    background-size: cover;
    border-bottom: 1px solid #F3EDED;
}

.block-params .info-text{
    padding-top: 24px;
    font-size: 1.25em;
    line-height: 36px;
}

.block-params .scheme-image{
    background: #F1EEEB;
    padding: 65px 0;
    border: 1px solid #DDD;
}

.specifications-info{padding-bottom: 40px;}

ul.specificationsList{
    display: flex;
    flex-wrap: wrap;
    margin: -16px -12px;
}

ul.specificationsList li{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 16px 12px;
}

ul.specificationsList .param{
    font-weight: 700;
    color: #c79e60;
    padding-bottom: 8px;
}

/*-----------------------------------------------------*/
/*----------------------- GALLERY ---------------------*/
/*-----------------------------------------------------*/
.block-gallery{
    background: url("../images/bg/bg-gallery.png") center no-repeat #f1f0e8;
    background-size: cover;
}

.gallerySlider .slick-prev,
.cuisineSlider .slick-prev{left: -104px}
.gallerySlider .slick-next,
.cuisineSlider .slick-next{right: -104px}

.gallerySlider .item{
    margin: 12px;
    position: relative;
    padding: 0 0 70%;
}

.gallerySlider .item a{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.gallerySlider .item img{
    height: 100%;
    max-width: none;
    min-width: 100%;
}
/*
.tile-grid{
    display: flex;
    flex-wrap: wrap;
}

.tile-item{
    position: relative;
}

.tile-item.w-50{
    width: 50%;
    padding: 0 12px 65%;
}

.tile-item.w-25{
    width: 25%;
    padding: 0 12px 25%;
}

.tile-item .tile-item_inner{
    position: absolute;
    left: 12px;
    right: 12px;
    top: 12px;
    bottom: 12px;
}

.tile-item .tile-item_inner:hover .tile-item_img{
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
}

.tile-item .tile-item_box{
    display: block;
    color: #fff;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tile-item .tile-item_img{
    height: 100%;
    max-width: none;
    min-width: 100%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}*/
/*-----------------------------------------------------*/
/*---------------------- DIRECTION --------------------*/
/*-----------------------------------------------------*/
.destinationSlider{padding: 0 130px;}

.destinationSlider .slick-arrow,
.gallerySlider .slick-arrow,
.cuisineSlider .slick-arrow{
    border: 2px solid #c79e60;
    border-radius: 2px;
    background-color: transparent;
}

.destinationSlider .slick-arrow{transform: translate(0, -80%);}

.destinationSlider .slick-arrow.slick-prev{left: 24px;}
.destinationSlider .slick-arrow.slick-next{right: 24px;}

.destinationSlider .slick-arrow:hover,
.gallerySlider .slick-arrow:hover,
.cuisineSlider .slick-arrow:hover{background-color: #c79e60}

.destinationSlider .slide{
    text-align: center;
    padding: 0 13px;
}

.destinationSlider .image{
    margin-bottom: 24px;
}

.destinationSlider .image img{width: 100%}

.destinationSlider .name{
    font-size: 1.875em;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-left: 30px;
}

.destinationSlider .name:before{
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    background: url("../images/icon/map.svg") no-repeat;
    width: 22px;
    height: 26px;
    background-size: 100%;
}

/*-----------------------------------------------------*/
/*------------------------- VIDEO ---------------------*/
/*-----------------------------------------------------*/
.block-video{
    background: url("../images/bg/bg4.jpg") no-repeat center;



    /*min-height: 800px;*/
    min-height: 1000px;
    background-size: cover;
}
/*
.block-video .video {
    height: 800px;
    width: 100%;
    position: relative;
    display: block;
    object-fit: cover;
}*/

@media only screen and (max-width: 767px) {

    .block-video{/*
        background: url("../images/slider/mob-slide-0.jpg") no-repeat center;
*/
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: auto 100%;
        /* width: 100%;  */
        min-height: 800px;
        height: 100%;
    }
}
/*-----------------------------------------------------*/
/*----------------------- SERVICES --------------------*/
/*-----------------------------------------------------*/
.block-services{
    background: url('../images/bg/bg-services.png') no-repeat #263055;
    background-size: cover;
}

.services-grid{
    display: flex;
    flex-wrap: wrap;
    margin: -24px;
}

.services-grid .services-grid_col{
    padding: 24px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

.services-item{
    display: flex;
    align-items: flex-start;
}

.services-item .services-item_content{
    padding-left: 24px;
}

.services-item .name{
    padding-bottom: 12px;
    color: #fff;
    font-size: 1.25em;
    font-weight: 700;
}

.services-item .subname{
    color: #999dac;
    text-align: justify;
}

.services-item .services-item_ico svg{width: 70px; height: 70px;}

/*-----------------------------------------------------*/
/*------------------------- TEEM ----------------------*/
/*-----------------------------------------------------*/
.team-grid{
    margin: -24px;
    text-align: center


}

.team-grid .team-grid_col{

    padding: 24px;
    display: inline-block;
    vertical-align: top;


    width: 32.333%;
    box-sizing: border-box;
}

.team-grid .team-item{
    text-align: center;
}

.team-grid .team-item_photo{
    position: relative;
    margin: 0 auto 24px;
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #c79e60;
}

.team-grid .team-item img{
    height: 100%;
}

.team-grid .team-item_name{
    font-size: 1.375em;
    padding-bottom: 12px;
    font-weight: 300;
}

.team-grid .team-item_subname{color: #c79e60; font-size: 1.125em; font-weight: 600;}


.team-grid .team-item_desc{
    padding-top: 20px;
    color: #333;
    opacity: 0.75;
    font-size: 1.025em;
    font-weight: 400;
    /* width: 33%; */
    /* width: 100%; */
}


@media (max-width: 768px) {
    .team-grid .team-grid_col {
        width: 100%;
    }
}

/*-----------------------------------------------------*/
/*------------------------ CUISINE --------------------*/
/*-----------------------------------------------------*/
.block-cuisine{
    position: relative;
    background: #f1f0e8;
}

.block-cuisine:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: url('../images/bg/bg-gallery.png') center bottom no-repeat;
    background-size: 100% auto;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.cuisineSlider .slick-slide{
    margin: 16px;
    padding: 0 0 10%;
    position: relative;
}

.cuisineSlider a{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transition: all 300ms ease;
}

.cuisineSlider .slick-center a{
    transform: scale(1.1);
}


.cuisineSlider .item img{
    height: 100%;
    min-width: 100%;
    max-width: none;
}
/*
.cuisine-grid{
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.cuisine-grid ._row + ._row{padding-top: 24px}

.cuisine-grid ._col{padding: 12px;}

.cuisine-grid ._col.w-50{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.cuisine-grid ._col.w-25{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.cuisine-grid .item{
    position: relative;
    overflow: hidden;
    display: block;
}

.cuisine-grid .item.s1{
    padding: 0 0 48%
}

.cuisine-grid .item.s2{
    padding: 0 0 100%
}

.cuisine-grid .item.s3{
    padding: 0 0 208%
}

.cuisine-grid .item.s4{
    padding: 0 0 100%
}

.cuisine-grid .item img{
    position: absolute;
    height: 100%;
    max-width: none;
    min-width: 100%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.cuisine-grid .item:hover img{
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
}*/
/*-----------------------------------------------------*/
/*------------------------- PHOTO ---------------------*/
/*-----------------------------------------------------*/
.block-photo{
    background: url("../images/bg/bg3.jpg") no-repeat center;
    background-attachment: cover;
    padding-bottom: 40%;
    position: relative;
}

.block-photo ._inner{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 0 143px 74px;
    color: #fff;
    text-align: left;
}

.block-photo .name{
    font-size: 3em;
    font-weight: 700;
    padding-bottom: 12px;
}

.block-photo .subname{
    font-size: 1.125em;
}


@media only screen and (max-width: 767px) {

    .block-photo{
        /* background: url("../images/slider/mob2.jpg") no-repeat center; */
        background: url("../images/bg/bg3_mob.jpg");
        background-position: center bottom; /* Центрирование изображения */
        background-repeat: no-repeat; /* Избегание повторения изображения */
        /*background-size: 100% auto; *//* Полное заполнение ширины элемента, автоматическая высота */
        width: 100%; /* Ширина элемента */
        height: 100vh;
    }
    .block-photo ._inner{

        padding: 0 143px 45px;
    }
}

/*-----------------------------------------------------*/
/*------------------------ ROUTES ---------------------*/
/*-----------------------------------------------------*/
.block-routes{
    background: url('../images/bg/bg-routes.png') no-repeat center;
    background-size: cover;
}

ul.tabs{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3.75em;
}

.tabs li{
    color: #fff;
    text-decoration: none;
    font-size: 1.25em;
    background: #d1b17f;
    font-weight: 700;
    padding: 16px;
    display: inline-block;
    min-width: 220px;
    cursor: pointer;
    text-align: center;
}

.tabs li:first-of-type{border-radius: 26px 0 0 26px}

.tabs li:last-of-type{border-radius: 0 26px 26px 0}

.tabs li.active,
.tabs li:hover{background: #e9d9c1; color: #85632f}

.tabs-wrap{display: none}

.routeSlider .slide iframe{width: 100%; height: 600px;}

.routeSlider .slick-arrow{
    background: #ede4d4;
    border-radius: 100%;
}

.routeSlider .slick-arrow:hover{background: #c79e60}

.routeSlider .slick-prev{left: -148px;}

.routeSlider .slick-next{right: -148px;}
/*-----------------------------------------------------*/
/*------------------------- BOOK ----------------------*/
/*-----------------------------------------------------*/
.block-booking{background: url('../images/bg/bg-form.jpg') no-repeat center; background-size: cover; padding-bottom: 50em!important;}

.section-grid{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: -8px -12px;
}

.section-col50{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 8px 12px;
}
/*
.booking-photo{
    padding: 24px 24px 24px 0;
    border: 1px solid #DDD;
    display: inline-block;
    background: #fff;
}

*/
.bookForm-container{
    max-width: 800px;
    margin: 0 auto;
}

.form-fieldSet{
    position: relative;
}

.form-fieldSet .form-label{
    display: block;
    font-size: 1.125em;
    color: #fff;
    padding-bottom: 8px;
}

.form-fieldSet input.form-input,
.form-fieldSet select.form-select{
    height: 3.625em;
    border: 1px solid #DDD;
    padding: 0 12px;
    width: 100%;
}

.form-fieldSet input.form-input.has-Datepicker{
    /* background-image: url("../images/icon/calendar.svg");
    background-repeat: no-repeat;
    background-position: right+12px center;
    padding-right: 40px; */
}
.form-fieldSet.check-privacy input {
    margin-top: 20px;
}
.form-fieldSet.check-privacy .form-label a {
    color: white;
    text-decoration: underline;
}

.form-input.has-Datepicker {
    cursor: pointer;
}

.form-fieldSet .form-err{
    color: #fff;
    display: none;
    font-size: 11px;
    position: absolute;
    left: 0;
    top: 100%;
    background: red;
    padding: 1px 8px;
    border-radius: 8px;
}

.form-fieldSet.error .form-err{display: block}

.form-fieldSet button.button{
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    background: #065ebe;
    border-radius: 12px;
    padding: 0.875em 2.875em;
    font-size: 1em;
    margin-top: 36px;
}

.form-fieldSet button.button:hover{
    background: #fff;
    color: #065ebe;
}

.form-label {
    display: flex;
    align-items: center; /* Это выровняет текст и чекбокс по центру по вертикали */
    cursor: pointer;
}

.privacy_checkbox {
    margin-top: 20px;
}
.privacy_checkbox input {
    margin-top: 0px !important;
}


/*-----------------------------------------------------*/
/*------------------------ FOOTER ---------------------*/
/*-----------------------------------------------------*/
footer{
    background: #062447;
    color: #fff;
    font-size: 14px;

}

.hours{
    opacity: .4;
}

footer .footerTop{
    border-bottom: 1px solid #223954;
    padding: 5em 0;

}

footer .footer-logo img{
    height: 60px;
    opacity: .6;
    display:inline;
}

footer .footer-grid_title{
    color: #c79e60;
    padding-bottom: 24px;
    text-transform: uppercase;
}

footer .footer-logo_text{padding-top: 24px; font-size: 16px; line-height: 32px;}

footer .footerBottom{
    padding: 1.5em 0;
    color: #B2BCC8;
}

footer .footer-grid{
    margin: -12px;
    display: flex;
    justify-content: space-between;
}

footer .footerBottom .footer-grid{
    align-items: center;
}

footer .footerTop .footer-grid_col:nth-child(1){max-width: 25%}

footer .footer-grid_col{padding: 12px;}

footer .footer-social li{margin-left: 8px;}

footer .footer-social li:first-of-type{margin-left: 0}

footer .footer-social a{
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 100%;
    transition: transform .1s ease;
}

footer .footer-social a:hover{transform: scale(1.1)}

footer .footer-social svg{fill: #fff}

footer .footer-grid_link li{
    display: block;
}

footer .footer-grid_link li + li{padding-top: 18px;}

footer .footer-grid_link li a{
    color: #fff;
    text-decoration: none;
    transition: all ease 0.5s;
}

footer .footer-grid_link li a:hover{
    color: #c79e60;
    transition: all ease 0.5s;
    padding-left: 10px;
}

footer .footer-grid_row + .footer-grid_row{padding-top: 18px;}

footer .footer-grid_row a{color: #fff}


/* Стили для попапа */
.privacy-popup {
    display: none; /* Скрыть попап по умолчанию */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Полупрозрачный черный фон */
    z-index: 9999; /* Чтобы попап был над другими элементами */
}
.privacy-popup a{
    color: #c9a267;
}

.privacy-popup p{
    text-align: justify;
}
h2.privacy-policy {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0;
    padding-bottom: 20px;
}

h3.privacy-policy {
    /* Здесь пропишите нужные стили, например: */
    color: #c9a267; /* Цвет текста */
    font-size: 16px; /* Размер шрифта */
    margin: 15px 0; /* Отступы сверху и снизу */
    font-weight: 600; /* Насыщенность шрифта */
    text-align: center; /* Выравнивание текста по центру */

    /* Дополнительные стили */
}


.privacy-content {


    background: white;
    width: 80%;
    max-width: 1200px;
    margin: 5% auto; /* Центрирование */
    padding: 20px;
    position: relative;
    overflow-y: auto; /* Добавить прокрутку если текст не умещается */
    height: 80%;
    border-radius: 8px; /* Скругленные углы */
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 30px;
}

#privacyPolicyBtn {
    /* Дополнительные стили для кнопки если необходимо */
}

#agreeButton {

    display: block;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    background-color: #007bff;
    width: 150px;
    height: 40px;
    border-radius:10px;
    color:#fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}


@media (max-width: 768px) {
    .form-fieldSet button.button {
        font-size: 14px;
        padding: 10px 20px;
        background-color: #007bff;
        border: none;
        border-radius: 5px;
        width: 100%;
        height: 60px;

    }
    .destinationSlider .slick-arrow {
        border:none;
    }
    .slick-arrow:hover:before {
        background:none;
        background: url(../images/slider/arr_1.svg) no-repeat center;
    }
    .destinationSlider .slick-arrow:hover {
        background:none;


    }
    .routeSlider .slick-arrow:hover {
        background: #ede4d4;
    }
    .form-fieldSet button.button {

        background: #1f50e0;
        border-radius:10px;
    }

    .privacy-content {


        background: white;
        width: 100%;

        margin: 0; /* Центрирование */
        padding: 20px;
        position: relative;
        overflow-y: auto; /* Добавить прокрутку если текст не умещается */
        height: 100%;
        border-radius: 0; /* Скругленные углы */
    }
}




#desktop {
    display: block;
}

#mob {
    display: none;
}


@media only screen and (max-width: 480px) {

    #desktop {
        display: none;
    }

    #mob {
        display: block;
    }

}

.no-scroll {
    overflow: hidden; /* Отключаем скролл на всей странице */
}
.tour-3d-container {
    display: none; /* Скрываем iframe по умолчанию */
    position: fixed; /* Фиксированное позиционирование */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000; /* Делаем iframe поверх остальных элементов */
    background: rgba(0, 0, 0, 0.8); /* Слегка затемненный фон для улучшения видимости */
}
iframe {
    width: 100%;
    height: 100%;
    border: none; /* Убираем рамку */
}