

.circle{
    position: absolute;
    border-radius: 100%;
    filter: blur(400px);
}
.circle.var1{
    width: 445px;
    height: 445px;
    background-color: #5712E0;
    filter: blur(400px);

}
.circle.var2{
    width: 484px;
    height: 484px;
    background-color: #FF6F59;
    filter: blur(600px);
}
.circle.var3{
    width: 484px;
    height: 484px;
    background-color: #F5990F;
    filter: blur(520px);
}
.h2{
    font-weight: 300;
    font-size: 64px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
}
@media (min-width: 1921px) {
    .h2 {
        font-size: 80px;
    }
}

@media (max-width: 1700px) {
    .h2 {
        font-size: 58px;
    }
}
@media (max-width: 1400px) {
    .h2 {
        font-size: 52px;
    }
}
@media (max-width: 1200px) {
    .h2 {
        font-size: 42px;
    }
}
@media (max-width: 991px) {
    .h2 {
        font-size: 36px;
    }
}
@media (max-width: 500px) {
    .h2 {
        font-size: 32px;
    }
}
header {
    nav li.menu-item-has-children:after {
        content: '>';
        transform: rotate(90deg);
        color: inherit;
    }

    nav li.menu-item-has-children ul {
        display: none;
    }

    nav li.menu-item-has-children:hover ul {
        display: block;
        position: absolute;
        padding: 8px 10px;
        background-color: #fff;
        margin-top: 47px;
        margin-left: 20px;
    }
}

footer{



    nav li.menu-item-has-children ul {
        display: none;
        padding-left: 20px;
    }
}
/* ================= HEADER ================= */
header{
    /*position: absolute;*/
    z-index: 9;
    width: 100%;
    max-width: 1920px;
    position: fixed;
    top: 0;
    transition: top 0.5s;
}
header.header--hidden{
    top: -100%;
}
header.color-bg{
    background-color: #090B3280;

}

@media (min-width: 1921px) {
    header{
        left: calc(50% - 960px);
    }
}
.header {
    width: 100%;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.header .logo img{
    width: 124px;
    max-width: 100%;
    max-height: 100px;
    height: auto;
}
.header .logo-front{
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 1px;
    align-items: center;
}
.header .logo-front h1{
    font-size: 18px;
    text-transform: uppercase;
    color: #eabe89;
    font-weight: 200;
}


.header .logo-front img{
    width: 70px;
}

@media (max-width: 1200px) {
    .header .logo-front img{
        width: 65px !important;
    }
}
@media (max-width: 900px) {
    .header .logo-front h1{
        font-size: 16px;
    }
}
.header nav ul{
    display: flex;
    margin-top: 0;
    color: #fff;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.header nav li  {
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.header nav a {
    position: relative;
    width: fit-content;
    font-family: "Inter Tight-Regular", Helvetica;
    font-weight: 400;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    text-decoration: none;
    text-transform: uppercase;
}
.header nav a:hover{
    text-decoration: underline;
}

.header .arrow-stroke-wrapper {
    position: relative;
    width: 10px;
    height: 6px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .arrow-stroke {
    position: absolute;
    top: 2px;
    left: 0;
    width: 10px;
    height: 6px;
    aspect-ratio: 0.57;
}
.header .burger{
    display: none;
}
/* интерактивные состояния header */

.header .arrow-stroke-wrapper:hover {
    opacity: 0.8;
}

.header .arrow-stroke-wrapper:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

.header .view:hover .text-wrapper {
    opacity: 0.8;
}

.header .view:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
    border-radius: 2px;
}
.header .menu .lang ul{
    display: flex;
    gap: 4px;
}
.header .menu .lang ul li{
    list-style: none;

}
.header .menu .lang ul li a{
    font-family: Inter-my, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #737373;
    text-decoration: none;
}
.header .menu .lang ul li:not(:last-child) a:after{
    content: "/";
    margin-left: 4px;
    color: #737373;

}
.header .menu .lang ul li.current-lang a{
    color: #fff;
}
/* ================= FOOTER ================= */



footer{
    width: 100%;
    background-color: #090B32;
    color: #fff;
    position: relative;
    z-index: 5;
    font-family: Inter-my,sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
}
footer .footer-inner-top a{
    color: #fff;
    text-decoration: none;
    font-family: Inter-my,sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
}

footer .footer-inner-top{
    display: grid;
    grid-template-columns:230px 1fr 135px 1.3fr;
    column-gap: 150px;
    row-gap: 40px;
    padding: 30px 0 60px;


}
footer .footer-inner-top .name-block{
    display: block;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 11px;
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
}
footer .footer-inner-top .div-1 img{
    width: 150px;
}
footer .footer-inner-top .contacts{
    margin: 22px 0 18px;
}
footer .footer-inner-top .contacts .tel,
footer .footer-inner-top .mail{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
footer .footer-inner-top .div-3 span{
    font-size: 20px;
}
footer .footer-inner-top .div-4 ul li{
    list-style: none;
    padding: 6px 0;
}
footer .footer-inner-top .div-4 ul li a{
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
}
footer .footer-inner-top .social{
    display: flex;
    gap: 12px;
    margin-top: 40px;

}
footer .footer-inner-top .social img{
    width: 28px;
    opacity: 0.4;
    transition: opacity 0.2s;
}
footer .footer-inner-top .social a:hover img{
    opacity: 0.8;
}
footer .footer-inner-top .div-5{
    display: flex;
    flex-direction: column;
}
footer .footer-inner-top .div-5 .title-form{
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 20px;
}
footer .footer-inner-top .div-5 .wpcf7{
    width: 100%;
}
footer .footer-inner-top .div-5 input:not([type="submit"]){
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    box-shadow: none;
    border-radius: 0;
    font-weight: 300;
    font-size: 12px;
    line-height: 130%;
    padding:8px;
    margin-bottom: 8px;
    color: #fff;
    opacity: 0.5;
}
footer .footer-inner-top .div-5 input::placeholder{
    color: rgba(255, 255, 255, 0.5);
}

footer .footer-inner-top .div-5 input:not([type="submit"]):focus-visible{
    outline: none;
}

footer .footer-inner-top .div-5 input[type="submit"]{
    background-color: #fff;
    color:#090B32;
    opacity: 0.5;
    border-radius: 5px;
    width: fit-content;
    border: none;

    padding: 8px 40px;
    cursor: pointer;
    margin-top: 20px;
    transition: opacity 0.2s;
}

footer .footer-inner-top .div-5 input[type="submit"]:hover{
    opacity: 1;
}

footer .footer-inner-bottom{
    border-top: 0.5px solid #FFFFFF;

}
footer .footer-inner-bottom-inner{
    display: flex;
    justify-content: space-between;

    gap: 20px;
    align-items: center;
    padding: 22px 0;
}
footer .footer-inner-bottom-inner a,
footer .footer-inner-bottom-inner span,
footer .footer-inner-bottom-inner div{
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.5);

}
footer .footer-inner-bottom-inner div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
footer .footer-inner-bottom-inner div p{
    margin: 0;
    margin-left: auto;
}
footer .footer-inner-top .map-points{
    margin-top: 12px;
    display: flex;
    gap: 20px;
}
footer .footer-inner-top .map-points a{
    display: flex;
    width: fit-content;
    gap: 5px;
    align-items: center;
    text-decoration: underline;
    line-height: 1.5;
    opacity: 0.5;
}
footer .footer-inner-top .div-3{
    grid-column: 1;
    grid-row: 2 ;
}
footer .footer-inner-top .div-2{
    grid-row: 1;
     grid-column: 2;
 }

footer .footer-inner-top .div-2-2{
    grid-column: 2;
    grid-row: 2;
}

footer .footer-inner-top .div-5,
footer .footer-inner-top .div-4{
    grid-row:span 2;
}
footer .wpcf7-spinner{;
    display: none;
}
footer .footer-inner-top a:hover{
    opacity: 1;
    text-decoration: underline;
}
footer .footer-inner-bottom a:hover{
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 600px) {
    footer .footer-inner-top a,
    footer .footer-inner-top .div-4 ul li a,
    footer .footer-inner-top .div-5 .title-form{
        font-size:14px ;
    }
}



/* ============ MEDIA QUERIES (АДАПТИВ) ============ */

@media (max-width: 1700px) {

    .header nav ul {
        gap: 30px;
    }
    footer .footer-inner-top{
        gap: 100px;
    }
    footer .footer-inner-bottom-inner  {
        flex-direction: column;
        align-items: normal;
    }
    footer .footer-inner-bottom-inner div:first-child{

    }
    footer .footer-inner-bottom-inner .info p{
        margin: 0;
    }
    footer a.webfox{
        margin-left: auto;
    }
    footer .footer-inner-bottom-inner a,
    footer .footer-inner-bottom-inner span,
    footer .footer-inner-bottom-inner div{
        font-size: 15px;
    }
}

@media (max-width: 1550px) {
    footer .footer-inner-top{
        column-gap: 60px;
        row-gap: 20px;
    }
}
@media (max-width: 1500px) {
    .header nav ul{
        gap: 30px;
    }
    footer .footer-inner-top{
        grid-template-columns: 230px 1fr 135px 1fr;
    }
}

@media (max-width: 1300px) {
    footer .footer-inner-top .map-points{
        flex-direction: column;
        gap: 8px;
    }
    footer .footer-inner-top{
        column-gap: 30px;
    }
}
@media (max-width: 1100px) {
    footer .footer-inner-top{
        grid-template-columns: 1fr 0.7fr;
        gap: 40px;
    }
    footer .footer-inner-top .div-1,
    footer .footer-inner-top .div-2,
    footer .footer-inner-top .div-2-2,
    footer .footer-inner-top .div-4,
        footer .footer-inner-top .div-5{
         grid-row: auto;
         grid-column: auto;
    }
    footer .footer-inner-top .div-3 {
        grid-column: 2;
        grid-row: 1;
    }
    footer .footer-inner-top .div-4{
        grid-column: 2;
        grid-row: 2/4;
    }
    footer .footer-inner-top .div-5{
        grid-column: 1;
    }
}
@media (max-width: 1200px) {
    .header .logo img {
        width: 108px;
    }
        .header nav ul {
        gap: 45px;
    }
}
@media (max-width: 991px) {
    .header nav {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        max-width: 400px;
        margin: auto;
        padding-top: 150px;
        transition: right 0.4s;
        background-color: #250365;
    }
    .header nav.active{
        right: 0;
    }

    .header nav ul{
        flex-direction: column;
        gap: 30px;
    }
    .header nav a {
        font-size: 16px;
    }
    .header .burger{
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 2;
    }
    .header nav.active + .burger{
        position: fixed;
        right: 40px;
        top: 40px;
    }
    .header .burger span{
        background-color: #fff;
        display: block;
        width: 30px;
        height: 3px;
    }

}

@media (max-width: 800px) {
    footer .footer-inner-bottom-inner div:first-child{
        flex-direction: column;
        gap: 8px;
        align-items: start;
    }
}
@media (max-width: 600px) {

    footer .footer-inner-top .div-5{
        grid-column: 1/-1;
        text-align: center;
        max-width: 500px;
        margin: auto;
    }
    .header{
        padding: 8px 15px;
    }
    footer .footer-inner-bottom-inner a, footer .footer-inner-bottom-inner span, footer .footer-inner-bottom-inner div {
        font-size: 14px;
    }
}
@media (max-width: 450px) {
    footer .footer-inner-top .div-3 span{
        font-size: 18px;
    }
    footer{
        font-size: 14px;
    }
}
@media (max-width: 350px) {
    footer .footer-inner-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    footer .footer-inner-top .div-3 {
        grid-column:auto;
        grid-row: 2;
    }
    footer .footer-inner-top .div-4 {
        grid-column: auto;
        grid-row: auto;
    }
}
/*===============================================*/
.section-1-baner{
    width: 100%;

    position: relative;
    font-family: Cormorant_Garamond , sans-serif;
}

.section-1-baner .swiper-slide{
    width: 100%;
    height: 100%;
    /*height: 100vh;*/
    /*max-height: 1080px;*/
    display: flex;
    overflow: hidden;
}

.section-1-baner .swiper-slide .img{
    width: 100%;
    height: 100%;
    /*position: absolute;*/
    top: 0;
    left: 0;

}

.section-1-baner .swiper-slide .img img{
    width: 100%;
    height: 100%;
    z-index: 1;
    object-position: center;
    object-fit: cover;
}

.section-1-baner .swiper-slide.first-slide .img:after{
    content: "";
    position: absolute;
    top: 0  ;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(89.66deg, rgba(0, 0, 0, 0.5) 19.67%, rgba(0, 0, 0, 0.1) 31.56%, rgba(0, 0, 0, 0) 58.16%, rgba(0, 0, 0, 0.1) 87.04%, rgba(0, 0, 0, 0.5) 98.93%);
}
.section-1-baner .swiper-slide.first-slide .img:after{
    content: "";
    position: absolute;
    top: 0  ;
    left: 0;
    width: 100%;
    height: 100%;
    background:    linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.05) 21.58%, rgba(0, 0, 0, 0) 48.08%, rgba(0, 0, 0, 0.5) 75%, #000000 100%);

}

.section-1-baner .pagination{
    position: absolute;
    bottom: 20px;
    z-index: 9;
    display: flex;
    justify-content: center;
}
.section-1-baner .pagination .swiper-pagination-bullet{
    background-color: #fff;
}
@media (min-width: 1921px) {
    .section-1-baner .swiper-slide .img.bg{
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        backdrop-filter: blur(40px);
    }
}
.section-1-baner .swiper-slide .img.bg:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0px;
    backdrop-filter: blur(20px);
}
.section-1-baner .swiper-slide .img.bg img{
    /*position: absolute;*/
    position: relative;
    width: 100%;
    height: 100%;
    max-width: calc(1920px + 160px);

    object-position: center;
    object-fit: contain;
}

@media (max-width: 1925px ) and (min-width:1650px) {
    .section-1-baner .swiper-slide .img.bg img{
        max-height: 920px;
        height: 100vh;
        object-fit: cover   ;

    }
}

@media (min-width: 1921px) {
    .section-1-baner .swiper-slide .img.bg img {

        left: calc(50% - 1040px);
    }
}
.section-1-baner .swiper-slide .img.front{
    display: flex;
    margin: auto;
    z-index: 2;

}
@media (min-width: 1921px) {
    max-width: 1920px;
    left: calc(50% - 960px);
}
.section-1-baner .swiper-slide .img.front img{
    object-fit: contain;
    width: auto;
    margin: auto;
    height: 100%;
    width: 100%;
    /*height: 95%;*/
    /*max-width: 100%;*/
}
.section-1-baner .swiper-slide .img.front picture{
    margin: auto;
    height: 100%;
    max-width: 100%;
}
.section-1-baner .container{
    height: 100%;
}
.section-1-baner .section-1-baner-inner {
    padding: 100px 0 65px;
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    justify-content: start;
}

.section-1-baner .section-1-baner-inner .top{
    /*margin: 0 auto;*/
}
.section-1-baner .section-1-baner-inner .top .title{
    font-weight: 500;
    /*font-size: clamp(80px, 12vw, 250px);*/
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    /*-webkit-background-clip: text !important;*/
    /*background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    /*text-fill-color: transparent;*/
    /*color: transparent;*/
    /*background:    linear-gradient(90deg, #D08C39 0%, #E7B454 74.4%, #D08C39 100%);*/
    /*background: linear-gradient(90deg, #CAA460 0%, #D6BA7B 24.52%, #E0B769 53.37%, #A6885D 74.04%, #B29265 100%);*/

    display: flex;
    flex-direction: column;
}
.section-1-baner .section-1-baner-inner .top .title span:first-child{
    font-family: Inter-my, sans-serif;

    font-weight: 200;
    font-size: 120px;
    line-height: 75%;
    text-transform: uppercase;
}
.section-1-baner .section-1-baner-inner .top .title span:last-child{
    font-family: Cormorant_Garamond , sans-serif;

    font-weight: 600;
    font-size: 240px;
    line-height: 75%;
    letter-spacing: -1px;
    text-transform: uppercase;

}
.section-1-baner .section-1-baner-inner .top .mini-title{
    /*-webkit-background-clip: text !important;*/
    /*background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    /*text-fill-color: transparent;*/
    /*color: transparent;*/
    /*ba/ckground: linear-gradient(90deg, #D08C39 0%, #E7B454 74.4%, #D08C39 100%);*/
    /*background:     linear-gradient(0deg, #B99766, #B99766);*/
    /**/
    /*text-shadow: 7px 3px 25.7px 4px #FFF09C4D;*/
    width: fit-content;
    font-family: Inter-my, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-align: left;
    position: relative;
    /*margin: 0 auto;*/
    color: #fff;
    margin-top: 40px;
}


.section-1-baner .section-1-baner-inner .bottom{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.section-1-baner .section-1-baner-inner .bottom .block{
    width: 100%;
    border: 2px solid #E0DBCF4D;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 50px 1fr ;
    align-items: center;
    gap: 20px;
    padding: 24px;
}
.section-1-baner .section-1-baner-inner .bottom .block img{
    width: 100%;
}.section-1-baner .section-1-baner-inner .bottom .block span{
     color: #E0DBCFB2;
     font-family: Inter-my, sans-serif;
     font-weight: 500;
     font-size: 18px;
     line-height: 140%;
     align-items: center;
 }


@media (max-width: 1700px) {

    .section-1-baner .section-1-baner-inner .top .title span:first-child{
        font-size: 100px;
    }
    .section-1-baner .section-1-baner-inner .top .title span:last-child{
        font-size: 200px;
    }
    .section-1-baner .section-1-baner-inner .top .mini-title{
        font-size: 22px;
    }
}

@media (max-width: 1350px) {

    .section-1-baner .section-1-baner-inner .top .title span:first-child{
        font-size: 90px;
    }
    .section-1-baner .section-1-baner-inner .top .title span:last-child{
        font-size: 180px;
    }
    .section-1-baner .section-1-baner-inner .top .mini-title{
        font-size: 20px;
    }
}


@media (max-width: 650px) {
    .section-1-baner .section-1-baner-inner .top .title span:first-child{
        font-size: 60px;
    }
    .section-1-baner .section-1-baner-inner .top .title span:last-child{
        font-size: 120px;
    }
    .section-1-baner .section-1-baner-inner .top .mini-title{
        margin-top: 20px;
    }
    .section-1-baner .section-1-baner-inner{
        padding: 100px 0 100px;
        align-items: end;
    }
    .section-1-baner .swiper-slide.first-slide .img img{
        object-position: -680px;
    }
}
@media (max-width: 450px) {
    .section-1-baner .section-1-baner-inner .top .title span:first-child{
        font-size: 55px;
    }
    .section-1-baner .section-1-baner-inner .top .title span:last-child{
        font-size: 100px;
    }
    .section-1-baner .section-1-baner-inner .top .mini-title{
        font-size: 18px;
    }
}
/*==========================*/

.section-2 .section-2-inner{
    position: relative;
}
.section-2 .circle-group{
    position: absolute;
    right: -350px;
    top: -200px;
    width: 700px;
    height: 700px;
    z-index: 0;
}
.section-2 .circle-group .var1{
    right: 300px;


}
.section-2 .circle-group .var2{
    top: 300px;
    right: 500px;

}
.section-2 .circle-group .var3{
    top: 20px;

}
.section-2-inner .top{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.section-2-inner .top .h2{
    font-weight: 400;
    font-size: 80px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    text-wrap-mode: nowrap;
}
.section-2 .top .flex{
    display: flex;
    justify-content: space-between;
}
.section-2-inner .top .right p{
    font-family: Inter-my, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: #fff;
    max-width:480px;
    margin: 0px;
}

@media (min-width: 1900px) {
    .section-2-inner .top .right p{
        font-size: 18px;
        max-width: 510px;
    }
}
.section-2-inner .top .right .button{
    position: absolute;
    margin-top: 55px;
}
.section-2-inner .bottom{
    position: relative;
    z-index: 1;
}
.section-2-inner .bottom .tabs{
    overflow-x: auto;
    padding-bottom: 5px;
}
.section-2-inner .bottom .tabs-inner{
    display: flex;
    gap: 10px;
    width: max-content;
}
.section-2-inner .bottom .tabs .tab{
    padding: 10px 20px;
    color: #fff;
    font-family: Inter-my, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    cursor: pointer;
}
.section-2-inner .bottom .tabs .tab:last-child{
    cursor: default;
}
.section-2-inner .bottom .tabs .tab:not(:last-child):hover{
    opacity: 0.7;
}
.section-2-inner .bottom .tabs .tab.active{
    color: #D08C39;
    text-decoration: underline;
}
.section-2-inner .bottom .pages .page{
    display: none;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.section-2-inner .bottom .pages .page.active{
    display: grid;
}
.section-2-inner .bottom .pages .page .block{
    width: 100%;
    height: calc(100vh - 300px );
    max-height:  720px;
    min-height: 300px;
    border-radius: 25px;
    position: relative;
    background-size: 0px;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;

    overflow: hidden;
}
.section-2-inner .bottom .pages .page .block:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: opacity 0.2s;
    border: 1px solid transparent;
    box-sizing: border-box;

}
.section-2-inner .bottom .pages .page .block:hover:before{
    opacity: 0.2;
    border: 1px solid #B99766;
}
.section-2-inner .bottom .pages .page .block:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: #00000033;
    /*background: linear-gradient(0deg, rgba(12, 6, 26, 0.5), rgba(12, 6, 26, 0.5));*/

    z-index: 2;
}

.section-2-inner .bottom .pages .page .block span.num{
    font-family: Suranna;
    font-weight: 400;
    font-size: 120px;
    line-height: 100%;
    text-transform: uppercase;
    color: transparent;
    -webkit-background-clip: text !important;

    background: linear-gradient(89.87deg, rgba(193, 153, 107, 0.3) 9.01%, rgba(206, 185, 155, 0.3) 37.35%, rgba(202, 177, 141, 0.3) 69.2%, rgba(200, 168, 128, 0.3) 102.49%, rgba(198, 165, 123, 0.3) 141.58%);
    text-decoration: none;
    position: absolute;
    top: 0px;
    left: 20px;
    z-index: 3;
}
@media (max-width:991px) {
    .section-2-inner .bottom .pages .page .block span.num{
        font-size: 98px;
    }
}

@media (max-width: 600px) {
    .section-2-inner .top {
        gap: 30px;
    }
    .section-2-inner .bottom.pt60{
        padding-top: 30px;
    }
}
@media (max-width: 500px) {
    .section-2-inner .bottom .pages .page .block span.num{
        font-size: 90px;
    }
}
.section-2-inner .bottom .pages .page .block .content{
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 3;

    display: flex;
    flex-direction: column-reverse;

    /*transform: translateY(90px);*/

    transition: all .5s ease;
    max-width: calc(100% - 53px);
}
.section-2-inner .bottom .pages .page  .block:hover .content {
    flex-direction: column;

}

.section-2-inner .bottom .pages .page .block span.name{
    color: #fff;
    font-weight: 300;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: -1px;
    text-transform: uppercase;

    /*position: absolute;*/
    /*bottom: 28px;*/
    /*left: 28px;*/
    /*z-index: 3;*/
    transition: all 0.5s;
    transform: translateY(0px);
}
.section-2-inner .bottom .pages .page .block:hover span.name{
    /*bottom: 120px;*/
    transform: translateY(-20px);

}
.section-2-inner .bottom .pages .page .block .text{
    /*position: absolute;*/
    /*z-index: 3;*/
    /*bottom: 150px;*/
    /*left: 28px;*/
    font-family: Inter-my,sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: #fff;

    opacity: 0;
    transform: translateY(-100px);
    transition: opacity .5s ease, transform .7s ease;
}
.section-2-inner .bottom .pages .page  .block:hover .text {
    opacity: 1;
    transform: translateY(0);
}
.section-2-inner .bottom .pages .page .block:hover .text{
    display: block;
    top: auto;
    bottom: 28px;
    opacity: 1;
}
.section-2-inner .bottom .pages .page .block:hover .text p{
    margin: 0;
}
@media (max-width: 1700px) {
    .section-2-inner .top .h2{
        font-size: 64px;
    }
    .section-2-inner .top .right p {
        font-size: 18px;
        max-width: 600px;
    }

    .section-2-inner .bottom .pages .page .block span.name{
        font-size: 32px;
    }
    .section-2-inner .bottom .pages .page .block {
        max-height: 550px;
    }
}

@media (max-width: 1400px) {
    .section-2-inner .top .h2 {
        font-size: 58px;
    }
    .section-2-inner .top .right .button{
        position: relative;
    }

}
@media (max-width: 1200px) {
    .section-2-inner .top .h2 {
        font-size: 52px;
    }
    .section-2-inner .top .right p {
        max-width: 500px;
    }

    .section-2-inner .bottom .pages .page .block {
        height: 43vw;
        max-height: 450px;
    }
    .section-2-inner .bottom .pages .page .block span.name {
        font-size: 24px;
    }
    .section-2-inner .bottom .pages .page .block .text{
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .section-2-inner .top{
        flex-direction: column;
        gap: 36px;
    }
    .section-2-inner .top .h2 {
        font-size: 44px;
    }
    .section-2-inner .top .right p {
        font-size: 18px;
        max-width: 800px;
        line-height: 1.5;
    }
    .section-2-inner .bottom .tabs .tab {
        font-size: 16px;
    }

}

@media (min-width: 750px) and (max-width: 870px) {
    .section-2-inner .bottom .pages .page .block .text{
        font-size: 12px;
    }
}

@media (max-width: 750px) {
    .section-2-inner .bottom .pages .page .block span{
        bottom: 20px;
        left: 20px;
        font-size: 18px;
    }
    .section-2-inner .bottom .pages .page {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-2-inner .bottom .pages .page .block {
        height: 48vw;
        min-height:  280px;
    }
}
@media (max-width: 700px) {
    .section-2-inner .top .h2 {
        font-size: 34px;
    }
    .section-2-inner .bottom .tabs-inner{
        gap: 0;
    }
    .section-2-inner .bottom .pages .page .block:hover span.name{
        /*bottom: 120px;*/
        transform: translateY(-8px);

    }
}

@media (max-width: 480px) {
    .section-2-inner .bottom .pages .page .block span.num {
        font-size: 70px;
    }
    .section-2-inner .bottom .pages .page .block:hover span.name {
        transform: translateY(-10px);
    }
}

@media (max-width: 390px) {
    .section-2-inner .bottom .pages .page .block .text{
        font-size: 13px;
    }

}

/*=============================*/
.dzhanket-tury .dzhanket-tury-inner{
    display: grid;
    grid-template-columns: 610px 1fr;
    column-gap: 30px;
    row-gap: 60px;
    position: relative;
}

.dzhanket-tury .dzhanket-tury-inner .mini-text{
    font-family: Inter-my, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
}
.dzhanket-tury .dzhanket-tury-inner .mini-text p{
    margin-bottom: 0;
}

.dzhanket-tury .dzhanket-tury-inner .text{
    font-family: Inter-my,sans-serif;
    color: #FFFFFF;
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    align-items: center;
    row-gap: 60px;
    column-gap: 60px;

}
.dzhanket-tury .dzhanket-tury-inner .text hr{
    display: block;
    width: 100%;
    height: 0.5px;
    background-color: #FFFFFF4D;
    grid-column: 1/-1;
    margin: 0;
}
.dzhanket-tury .dzhanket-tury-inner .text p{
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    margin: 0;
}

.dzhanket-tury .dzhanket-tury-inner .text ul{
    padding-left: 32px;
    position: relative;
}
.dzhanket-tury .dzhanket-tury-inner .text li{
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    list-style: none;
    margin: 4px 0;
}
.dzhanket-tury .dzhanket-tury-inner .text li:before{
    content: url(/wp-content/themes/royal/assets/icon/star.svg);
    position: absolute;
    left: 0;
}



.dzhanket-tury .dzhanket-tury-inner .img{
    width: 100%;
    height: 100%;
    max-height: 885px;
    min-height: 400px;
    grid-column: 2;
    grid-row: 1/3;
    position: relative;

}
.dzhanket-tury .dzhanket-tury-inner .img img{
    width: 100%;
    height: 100%;
    max-height: 885px;
    max-width: 885px;
    object-position: center;
    object-fit: cover;
    border-radius: 25px;
    position: absolute;
    right: -90px;
}


@media (min-width: 1921px) {

    .dzhanket-tury .dzhanket-tury-inner .left .mini-text{

        font-size: 24px;

    }
    .dzhanket-tury .dzhanket-tury-inner .left .text p{
        font-size: 28px;

    }
    .dzhanket-tury .dzhanket-tury-inner .left .button{
        font-size: 24px;
        padding: 16px 80px;
        margin-top: 80px;

    }
    .dzhanket-tury .dzhanket-tury-inner .left .text li{
        font-size: 20px;
    }
}



@media (max-width: 1800px) {
    .dzhanket-tury .mt60{
        margin-top: 40px;
    }
    .dzhanket-tury .dzhanket-tury-inner{
        row-gap: 40px;
    }
    .dzhanket-tury .dzhanket-tury-inner .text{
        row-gap: 20px;
        column-gap: 40px;
    }
    .dzhanket-tury .dzhanket-tury-inner .left .button {
        margin-top: 40px;
    }
}
@media (max-width: 1300px) {
    .dzhanket-tury .dzhanket-tury-inner{
        grid-template-columns:1fr 1fr;
    }
    .dzhanket-tury .dzhanket-tury-inner .top{
        grid-column: 1/-1;
        text-align: center;
    }
    .dzhanket-tury .dzhanket-tury-inner .top .mini-text{
        max-width: 800px;
        margin: 0px auto;
    }


    .dzhanket-tury .dzhanket-tury-inner .img{
        grid-row: auto;
    }
    .dzhanket-tury .dzhanket-tury-inner .img img{
        position: relative;
        right: -10px;
    }
    .dzhanket-tury .dzhanket-tury-inner .text p{
        font-size: 18px;
    }
    .dzhanket-tury .dzhanket-tury-inner .text ul {
        padding-left: 26px;
    }
    .dzhanket-tury .dzhanket-tury-inner .text hr:first-child,
    .dzhanket-tury .dzhanket-tury-inner .text hr:last-child{
        display: none;
    }
}

@media (max-width: 850px) {
    .dzhanket-tury .dzhanket-tury-inner{
        grid-template-columns: 0.8fr 1fr;
    }
    .dzhanket-tury .dzhanket-tury-inner .text{
        grid-template-columns: 1fr;
    }

}
@media (max-width: 650px) {
    .dzhanket-tury .dzhanket-tury-inner {
        grid-template-columns:  1fr;
    }
    .dzhanket-tury .dzhanket-tury-inner .text{
        justify-items: center;

        text-align: center;
    }
    .dzhanket-tury .dzhanket-tury-inner .img{
        grid-column: 1;
        grid-row: 2;
    }
    .dzhanket-tury .dzhanket-tury-inner .img img{
        right: auto;
    }
    .dzhanket-tury .dzhanket-tury-inner .button{
        margin: 30px auto;
    }
}
@media (max-width:600px) {
    .dzhanket-tury .dzhanket-tury-inner .top .mini-text{
        font-size: 16px;
    }

    .dzhanket-tury .dzhanket-tury-inner .img{
        max-height: 350px;
    }
    .dzhanket-tury .dzhanket-tury-inner .text p{
        font-size: 18px;
    }
    .dzhanket-tury .dzhanket-tury-inner .text li{
        font-size: 16px;
        margin: 8px 0;
    }
}

@media (max-width: 450px) {
    .dzhanket-tury .dzhanket-tury-inner .text p{
        font-size: 16px;
    }
    .dzhanket-tury .dzhanket-tury-inner .text li{
        font-size: 14px;
        margin: 5px 0;
    }
}
/*========================================*/
.read-line{
    max-width: 1920px;
    margin: 0 auto;
}
.read-line-inner{
    width: 100%;
    position: relative;
    height: 160px;
    overflow: hidden;
}

.read-line .read-line-inner .line{
    position: absolute;
    display: flex;
    gap: 30px;
    height: 70px;
    white-space: nowrap;      /* чтобы блоки не переносились */
    will-change: transform;
    animation-duration: 50s;  /* скорость движения */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.read-line .read-line-inner .line:first-child{
    top: 0;
    animation-name: move-left;
}
.read-line .read-line-inner .line:last-child{
    bottom: 0;
    right: 0;
    animation-name: move-right;
}
.read-line .read-line-inner .line .block{
    border: 4px solid #E0DBCF;
    font-family: Inter-my,sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 14px 70px;
    width: max-content;
    color: #fff;
    display: flex;
    align-items: center;
}
.read-line .read-line-inner .line .block.bg{
    background-color: #fff;
}

/* Анимация верхней строки: 0 -> -40% -> 0, с паузами */
@keyframes move-left {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-40%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Анимация нижней строки: 0 -> +40% -> 0, с паузами */
@keyframes move-right {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(40%);
    }
    100% {
        transform: translateX(0);
    }
}
@media (min-width: 1921px) {
    .read-line .read-line-inner .line .block{
        padding: 15px 80px;
        font-size: 40px;

    }
}

@media (max-width: 1700px) {
    .read-line .read-line-inner .line .block{
        font-size: 26px;
    }
    .read-line .read-line-inner .line{
        height: 65px;
    }
}
@media (max-width: 1200px) {
    .dzhanket-tury .dzhanket-tury-inner{
        row-gap: 30px;
    }
    .read-line-inner{
        height: 130px;
    }
    .read-line .read-line-inner .line .block {
        font-size: 20px;
        padding: 14px 50px;
    }
    .read-line .read-line-inner .line {
        height: 55px;
    }
}
@media (max-width: 800px) {
    .dzhanket-tury .dzhanket-tury-inner{
        row-gap: 30px;

    }
    .read-line-inner{
        height: 120px;
        gap: 15px;
    }
    .read-line .read-line-inner .line .block {
        font-size: 16px;
        padding: 11px 37px;
    }
    .read-line .read-line-inner .line {
        height: 50px;
    }
}
@media (max-width: 600px) {
    .dzhanket-tury .dzhanket-tury-inner{
        row-gap: 30px;

    }
    .read-line-inner{
        height: 100px;
        gap: 10px;
    }
    .read-line .read-line-inner .line .block {
        font-size: 14px;
        padding: 11px 30px;
    }
    .read-line .read-line-inner .line {
        height: 45px;
    }
}
/*===================================================*/
.events{
    position: relative;
    padding-bottom: 20px;
}
.events .top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    text-align: center;

}
.events .top .mini-text{
    font-family: Inter-my, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;

    max-width: 758px;
    color: #FFFFFF;
}
.events .top .mini-text p{
    margin: 0px;
}
.events .bottom{
position: relative;
}
.events .bottom .swiper{
    max-width: 1000px;
}
.events .bottom .swiper-wrapper{
    height: 580px;
    padding: 60px 0;
}
.events .bottom .swiper-slide{
    perspective:100px;
    margin: auto;
    transition: transform .6s ease, opacity .6s ease;
    transform-style: preserve-3d;
}

.events .bottom .swiper-slide img{
    width: 100%;

    max-height: 587px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /*transition: all 0.5s;*/
    margin: auto;
    transition:
            transform .6s ease,
            box-shadow .6s ease,
            filter .6s ease;
    backface-visibility: hidden;
    will-change: transform;


}
.events .bottom .swiper-slide:not(.swiper-slide-active) img{
    transform-origin: left center; /* ВАЖНО */
    transform: scale(0.7) rotateY(4deg);
}
.events .bottom .swiper-slide.swiper-slide-active{
    /*height: 100%;*/
    transform: scale(0.8);
}

.events .bottom .swiper-slide.swiper-slide-next,
.events .bottom .swiper-slide.swiper-slide-prev{
    /*height: 90%;*/
    transform: scale(0.9);
}
.events .bottom .swiper-slide.swiper-slide-next img{
    transform-origin: right center; /* ВАЖНО */
    transform:  scale(0.9)  rotateY(-2deg) translateX(-30px);


}
.events .bottom .swiper-slide.swiper-slide-prev img{
    transform-origin: left center; /* ВАЖНО */
    transform:   scale(0.9) rotateY(2deg)  translateX(30px);
}
.events .bottom .swiper-slide.swiper-slide-next +.swiper-slide,
.events .bottom .swiper-slide:has(+ .swiper-slide-prev){
    /*height: 80%;*/
    transform: scale(0.8);

}

.events .bottom .swiper-slide.swiper-slide-next +.swiper-slide img{
    transform-origin: right center; /* ВАЖНО */
    /*transform: scale(0.9) rotateY(-3deg) translateX(-170px);*/
}
.events .bottom .swiper-slide:has(+ .swiper-slide-prev) img{
    transform-origin: left center; /* ВАЖНО */
    /*transform: scale(0.9) rotateY(3deg) translateX(170px);*/
}

.events .bottom .swiper-slide.swiper-slide-next +.swiper-slide +.swiper-slide img{
    transform-origin: right center; /* ВАЖНО */
    transform: scale(0.7) rotateY(-4deg);

}
.events .button{
    margin-left:   auto;
    margin-right:   auto;
}
.events .circle{
    bottom: -70px;
    left: calc(50% - 400px);
}

.tilt-card {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    max-height: 587px;
}

.tilt-card img {

    transform: translateZ(15px);
    transition: transform 0.15s ease-out;
}

@media (min-width: 1921px) {
    .events .top .mini-text {
        font-size: 18px;
    }
}

@media (max-width: 1700px) {
    .events .bottom .swiper-slide.swiper-slide-next +.swiper-slide img{
        transform: scale(0.9) rotateY(-3deg) translateX(-100px);
    }
    .events .bottom .swiper-slide:has(+ .swiper-slide-prev) img{

        transform: scale(0.9) rotateY(3deg) translateX(100px);
    }
    .events .bottom .swiper-slide.swiper-slide-next img{
        transform:  scale(0.9)  rotateY(-2deg) translateX(-15px);


    }
    .events .bottom .swiper-slide.swiper-slide-prev img{
        transform:   scale(0.9) rotateY(2deg)  translateX(15px);
    }
    /*.events .bottom .swiper-wrapper {*/
    /*    height: 500px;*/
    /*}*/
}

@media (max-width: 1500px) {
    .events .bottom .swiper-wrapper {
        /*height: 30vw;*/
    }
}
@media (max-width: 1200px) {
    .events{
        position: relative;
        padding-bottom: 0px;
    }
    .events .top .mini-text {
        max-width: 800px;
    }

    .events .bottom .swiper-wrapper{
        padding: 30px 0;
    }
    .events .bottom .swiper-slide.swiper-slide-next +.swiper-slide img{
        /*transform: scale(0.9) rotateY(-3deg) translateX(-70px);*/
        transform: scale(0.9) rotateY(-3deg) translateX(-20px);
    }
    .events .bottom .swiper-slide:has(+ .swiper-slide-prev) img{

        /*transform: scale(0.9) rotateY(3deg) translateX(70px);*/
        transform: scale(0.9) rotateY(3deg) translateX(20px);
    }

}

@media (max-width: 1000px) {

    .events .bottom .swiper{
        max-width: 700px;
    }

    .events .bottom .swiper-wrapper {
        height: 420px;
    }
}
    
@media (max-width: 850px) {
    .events .bottom .swiper{
        max-width: 550px    ;
        margin: auto;
    }
    .events .bottom .swiper-wrapper {
        height: 320px;
    }
}

@media (max-width: 550px) {
    .events .bottom .swiper{
        max-width: 300px    ;
        margin: auto;
    }
    .events .bottom .swiper-wrapper {
        height: 535px;
    }
}

@media (max-width: 450px) {
    .events .bottom .swiper{
        max-width: 230px    ;
        margin: auto;
    }
    .events .bottom .swiper-wrapper {
        height: 410px;
    }
}

/*==========================================*/
.restaurant {
    position: relative;
    height:100vh;
    max-height: 960px;
    display: block;
    text-decoration: none;
}

@media (min-width: 1800px) {
    max-height: 960px;

}
.restaurant .bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    backdrop-filter: blur(100px);
    overflow: hidden;
}

@media (max-width: 2000px) {


}
.restaurant .bg .bg-inner{
    position: relative;
    z-index: 2;

    max-width: calc(1920px + 160px);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-image: inherit;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s;
}
.restaurant:hover .bg .bg-inner{
    transform: scale(1.05);
}
.restaurant .bg:after,
.restaurant .bg-inner:after{
    content: "";
    /*background:    linear-gradient(180deg, rgba(23, 8, 49, 0) 39.08%, rgba(23, 8, 49, 0.5) 73.35%, rgba(23, 8, 49, 0.8) 100%);*/
    background:    linear-gradient(180deg, rgba(23, 8, 49, 0.1) 39.08%, rgba(24, 9, 50, 0.4) 70%, rgba(14, 5, 32, 0.7) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.restaurant .bg:before,
.restaurant .bg-inner:before{
    content: "";
    /*background: linear-gradient(0deg, rgba(12, 6, 26, 0.5), rgba(12, 6, 26, 0.5));*/
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.restaurant .bg:before{
    background: linear-gradient(0deg, rgba(12, 6, 26, 0.7), rgba(12, 6, 26, 0.7));

    backdrop-filter: blur(20px);

}
.restaurant .container{
    height: 100%;
}
.restaurant .restaurant-inner  {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.restaurant .restaurant-inner .h2{
    font-weight: 500;
    font-size: 80px;
    line-height: 120%;
    text-transform: uppercase;
    color: #fff;
}
.restaurant .restaurant-inner .text{
    display: flex;
    max-width: 850px;
    font-family: Inter-my,sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #fff;
}
.restaurant .restaurant-inner  .bottom{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 80px;
}

.restaurant .restaurant-inner .bottom .block{
    width: 100%;
    border-bottom: 1px solid #E0DBCF4D;
    display: grid;
    grid-template-columns: auto 1fr ;
    /*align-items: center;*/
    gap: 28px;
    padding-bottom: 12px;
}
.restaurant .restaurant-inner .bottom .block img{
    width: 100%;
    max-width: 28px;
}
.restaurant .restaurant-inner .bottom .block span{
     color: #FFFFFF;
     font-family: Inter-my, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
 }

@media (min-width: 1921px) {
    .restaurant .restaurant-inner .bottom .block {
        grid-template-columns: 50px 1fr;
    }

    .restaurant .restaurant-inner .bottom .block span {
        font-size: 18px;
    }
    .restaurant .restaurant-inner .text{
        font-size: 18px;
    }
    .restaurant .restaurant-inner .h2 {
        font-size: 96px;
        margin-bottom: 24px;
    }

}

@media (max-width: 1700px) {

    .restaurant .restaurant-inner .h2{
        font-size: 64px;
    }

}
@media (max-width: 1700px) {
    .restaurant .restaurant-inner .bottom {
        gap: 40px;
    }
}
@media (max-width: 1350px) {

}

@media (max-width: 1200px) {
    .restaurant .restaurant-inner .h2{
        font-size: 54px;
    }
    .restaurant .restaurant-inner .bottom {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 80px;
    }

}
@media (max-width: 991px) {
    .restaurant {
        height: calc(100vh - 100px);
    }


    .restaurant .restaurant-inner .top{
        margin: 0 auto;
    }
    .restaurant .restaurant-inner .h2{
        font-size: 42px;
    }

}

@media (max-width: 650px) {
    .restaurant .restaurant-inner .bottom {
        column-gap: 40px;
    }

    .restaurant .restaurant-inner .bottom .block {
gap: 10px;
    }
}

@media (max-width: 600px) {
    .restaurant .restaurant-inner .h2{
        font-size: 32px;
    }

    .restaurant .restaurant-inner .bottom .block span {
        line-height: 1.3;
    }
}

@media (max-width: 530px) {
    .restaurant .restaurant-inner .bottom {
        grid-template-columns: 1fr;
    }
    .restaurant .restaurant-inner .bottom .block {
        gap: 10px;
    }

}
/*==============================================*/
.img-slider-section-inner{
    position: relative;
}
.img-slider-section .top{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;

}
.img-slider-section .top span{
    font-family: Inter-my, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #fff;
}
.img-slider-section  .swiper-photo {
    max-width: 1920px;
    margin: 0 auto;
    width: calc(100% - 30px);
    height: clamp(500px, calc(100vh - 150px), 960px);
    position: relative;
}
.img-slider-section  .swiper-slide:after,
.img-slider-section  .swiper-slide:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));*/
}
.img-slider-section  .swiper-slide:before{
    /*background:  linear-gradient(90deg, rgba(0, 0, 0, 0.6) 1.22%, rgba(0, 0, 0, 0.2) 16.04%, rgba(0, 0, 0, 0) 48.71%, rgba(0, 0, 0, 0.2) 85.18%, rgba(0, 0, 0, 0.6) 100%);*/

}
.img-slider-section  .swiper-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.arrow{

}
.arrow-inner{


}
.arrow-inner div{
    padding:16px 14px ;
    border: 1px solid #E0DBCF;
    border-radius: 50px;
    width: fit-content;
    justify-content: space-between;
    top: 50%;
    left:0px;
    position: absolute;
    margin: auto 0;
    z-index: 1;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: box-shadow 0.2s;
}
.arrow-inner div:hover {
    backdrop-filter: blur(4px);
    box-shadow: 0 0 2px 0px #ffffff;

}

.img-slider-section .arrow-inner div{
    top: 50%;
    left: 95px;
}
.arrow div img{
    width: 22px;
}
.img-slider-section  .arrow-inner div.l-next{
    right: 95px;
    left: auto;
}
.arrow-inner div.l-next{
    right: 0px;
    left: auto;
}
.arrow-inner div.l-next img{
    transform: rotate(180deg);
}
/*==*/
.events .arrow-inner div{
    opacity: 0.6;
}

/*==*/
@media (min-width: 1800px) {
    .events .arrow-inner div{
        left: 200px;
    }
    .events .arrow-inner div.l-next{
        right: 200px;
        left: auto;
    }
}
@media (max-width: 1800px) {
    .img-slider-section .mb80{
        margin-bottom: 60px;
    }
    .img-slider-section .mt80{
        margin-top: 60px;
    }
    .img-slider-section  .swiper-photo {
        height: clamp(500px, calc(100vh - 200px), 960px);
    }
}
@media (max-width: 1200px) {
    .img-slider-section .arrow-inner div{
        left: 15px;
    }
    .img-slider-section .arrow-inner div.l-next{
        right: 15px;
        left: auto;
    }
}

@media (max-width: 600px) {
    .img-slider-section .mb80 {
        margin-bottom: 40px;
    }
}
@media (max-width: 500px) {
    .img-slider-section  .swiper-photo {
        height: clamp(300px, calc(100vh - 250px), 500px);
    }
}
@media (max-width: 340px) {
    .img-slider-section  .swiper-photo {
        height: clamp(300px, calc(100vh - 300px), 450px);
    }
}

.img-slider-section-inner > .container > a{
    margin: 0  auto;
}
.img-slider-section-inner  .circle{
    left: 0;
    bottom: 80px;
}
.img-slider-section-inner  .button{
    margin-left: auto;
    margin-right: auto;
    /*position: absolute;*/
    /*z-index: 2;*/
    /*bottom: 40px;*/
    /*left: calc(50% - 90px);*/
}

/*================================*/

.social-media-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 8;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s, transform 0.3s;
    transform: translateX(200%);

}
.social-media-widget.is-visible{
    transform: translateX(0);
}


.social-media-widget .social-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.social-media-widget .social-icon img {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}
.social-media-widget:has(.social-links.sssss){
    bottom: 30px;
    right: 85px;
}
.social-media-widget:has(.social-icon.active){
    bottom: 30px;
    right: 30px;
}
.social-media-widget .social-icon.active {
    display: inline-block;
    /*transition: transform 0.3s ease;*/
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1);

    }
    100% {
        transform: scale(0.9);

    }
}

.social-media-widget .social-links {
    display: flex;
    position: relative;
    z-index: -1;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.social-media-widget .social-links a {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.10);
    bottom: 0px;
    scale: 0;
    transition: all 0.8s;
}


.social-media-widget .social-links.active a:nth-child(1) {
    transform: translate(15px, -80px);
    scale: 1;

}

.social-media-widget .social-links.active a:nth-child(2) {
    transform: translate(-34px, -70px);
    scale: 1;
}

.social-media-widget .social-links.active a:nth-child(3) {
    transform: translate(-69px, -34px);
    scale: 1;

}

.social-media-widget .social-links.active a:nth-child(4) {
    transform: translate(-80px, 15px);
    scale: 1;

}

.social-media-widget .social-links.sss.active a:nth-child(1) {
    transform: translate(5px, -70px);
    scale: 1;

}

.social-media-widget .social-links.sss.active a:nth-child(2) {
    transform: translate(-50px, -50px);
    scale: 1;
}

.social-media-widget .social-links.sss.active a:nth-child(3) {
    transform: translate(-70px, 5px);
    scale: 1;

}

.social-media-widget .social-links.sssss.active a:nth-child(1) {
    transform: translate(-70px, 0px);
    scale: 1;

}

.social-media-widget .social-links.sssss.active a:nth-child(2) {
    transform: translate(-50px, -50px);
    scale: 1;
}

.social-media-widget .social-links.sssss.active a:nth-child(3) {
    transform: translate(0px, -65px);
    scale: 1;

}
.social-media-widget .social-links.sssss.active a:nth-child(4) {
    transform: translate(50px, -50px);
    scale: 1;

}

.social-media-widget .social-links.sssss.active a:nth-child(5) {
    transform: translate(70px, 0px);
    scale: 1;
}


.social-media-widget .social-links.sssss.active a:hover {
    opacity: 1;
    scale: 1.1;

}
.social-media-widget .social-links img {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
@media (min-width: 1921px) {
    .social-media-widget,
    .social-media-widget:has(.social-icon.active){
        right: calc((100vw - 1920px) / 2 - 80px);
    }
}

/*========================*/
.arrow-up-page{
    padding: 13px 13px;
    position: fixed;
    bottom: 30px;
    border-radius: 100%;
    border: 1px solid #fff;
    backdrop-filter: blur(8px);
    z-index: 9;
    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    right:  -100%;
    transition: opacity .3s ease, right 0.5s, transform 0.5s;

    transform: translateY(0px);

}

.arrow-up-page.is-visible{
    opacity: 0.9;
    right: 35px;

    visibility: visible;
    pointer-events: auto;
}
.arrow-up-page:hover{
    opacity: 1;
    box-shadow: 0 0 2px 0px #ffffff;

}
.arrow-up-page img{
    transform: rotate(90deg);
}
@media (min-width: 1921px) {
    .arrow-up-page.is-visible,
    .amo-button-holder{
        right: calc((100vw - 1920px) / 2 - 80px) !important;
    }

}

.social-media-widget:has(.social-links.active) ~ .arrow-up-page{
    transform: translateY(-60px);
}

.error{
    padding: 120px 0;
    color: #fff;
}
.error h1{
    font-size: 80px;
}

@media (max-width: 1800px) {
    .error h1{
        font-size: 64px;
    }
}
@media (max-width: 991px) {
    .error h1{
        font-size: 44px;
    }
}
@media (max-width: 500px) {
    .error h1{
        font-size: 38px;
    }
}
.breadcrumbs a {
    color: #fff;
    text-decoration: none;
}
.breadcrumbs span{
    color: rgba(255, 255, 255, 0.8);

}
.amo-button-holder{
    right: 31px !important;
}
.arrow-up-page.is-visible ~ .amo-button-holder{
    bottom: 90px !important;
}
@media (max-width: 500px) {
    .amo-button-holder{
        right: 20px !important;
        bottom: 30px !important;
    }
    .arrow-up-page.is-visible {
        right: 30px;
    }
}