@import url('https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&display=swap');

:root {
    /* Фон */
    --bg-primary: #252825;
    --bg-secondary: #2e2e33;
    
    /* Акценты */
    --gold-primary: #D4AF37;
    --gold-hover: #F1D468;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #AA8C2C 100%);
    
    /* Текст */
    --text-main: #E0E0E0;
    --text-muted: #B0B0B0;
    --text-white: #FFFFFF;
}





html {
  font-family: "Geologica", sans-serif;
    scroll-behavior: smooth;
    -moz-user-select: none;
    -o-user-select:none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
     user-select: none;
}
input,
textarea,
button,
select,
a,div {
    -webkit-tap-highlight-color: transparent;
}
body{
    background-color: var(--bg-primary);
    color: var(--text-main);
    scroll-behavior: smooth;
    -moz-user-select: none;
    -o-user-select:none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
     user-select: none;
}
.section{
    padding: 60px 0px;
    position: relative;
    z-index: 2;
    scroll-margin-top: 100px;
    /* background: #f8f7f4; */
}
.container{
    max-width: 1440px;
    width: 100%;
    padding: 0px 30px;
    margin: 0px auto;
}

.title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 40px;
    margin-top: 0px;
    color: var(--text-white);
    position: relative;
    padding-bottom: 10px;
}
.title:before{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 120px;
    height: 2px;
    background: var(--gold-primary);
}

.button{
    color: var(--text-white);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 20px;
    padding: 10px 20px;
    height: 46px;

    cursor: pointer;
    transition: all 0.32s ease-in;

    background: var(--gold-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;

    transition: all 0.32s ease-in;
    z-index: 1;
}
/* .button:before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0.2;
    border-radius: 20px;
    overflow: hidden;
    z-index: -1;
} */
.button:hover {
  /* transform: translateY(2px); */
  box-shadow: 
    0 6px 20px rgba(218, 165, 32, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}



/* header */
.home{
    padding-top: 0px;
}
.home .header{
    opacity: 0;
    transform: translateY(-200px);
    transition: all 0.3s ease-in-out;
}
.home .header.active{
    opacity: 1;
    transform: translateY(0px);
}

.header-mobile{
    display: none;
    transition: all 0.2s linear;

}
.header-mobile__burger_close{
    display: none;
}
.header{
    position: fixed;
    top: 10px;
    left: 0px;
    z-index: 9;
    width: 100%;
}
.header__wrap{
    /* padding: 12px 0px; */
    background: transparent;
    border-radius: 40px;
    overflow: hidden;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}




.header__start{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header__top { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;padding-top: 10px;
    height: 60px;
    transition: all 0.32s ease-in;
}   

.header.active .header__top{
    height: 0px;
    /* overflow: hidden; */
    padding: 0px;
    transform: scaleY(0);
}
.header.active .header__wrap{
    backdrop-filter: blur(7px);
    background: rgba(0, 0, 0, 0.7);
}

.navbar__logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--text-white);
    text-decoration: none;
    gap: 20px;
    max-width: 200px;
}
.navbar__logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header__top .navbar__logo{
    max-width: 150px;
}
.header__icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.header__btn {}

.header__search form input {
    width: 100%;
    height: 100%;
    padding: 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #212121;
}

.header__search {
    background: #f0f6fa;

    border-radius: 20px;
    width: 100%;
    height: 46px;
    position: relative;
}

.header__search form {
    width: 100%;
    height: 100%;
}

.header__search form input {
    width: 100%;
    height: 100%;
    padding: 12px;
    font-size: 14px;
    color: #212121;
    background: #f0f6fa;
}

.header__search-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}

.header__search-icon svg {
    color: #8b8f94;
    width: 20px;
    height: 20px;
}

.header__search-close {
    position: absolute;
    right: 15px;
    width: 30px;
    height: 30px;
    top: 48%;
    right: 8px;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

.header__search-close svg {
    color: #8b8f94;
    width: 100%;
    height: 100%;
}

.header__search-wrap.active .header__search-icon {
    display: none;
}

.header__search-wrap.active .header__search-close {
    display: block;
}

.header__search-wrap {
    max-width: 100%;
    width: 100%;
    position: relative;
}

.header__search form input::placeholder {
    color: #8b8f94;
    font-size: 14px;
}

.header__search .myfieldset-searh {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px;
    margin: 0px;
    border: 0px;
}
.header__icon_vk svg{
    fill: #0077ff !important;
    color: #0077ff !important;
}

.header__icon {
    height: 46px;
    width: 46px;
    min-width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
background: #f9f9f9;
border: 1px solid #e9e9e9;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    color: #311e1b;
}

.favorites strong {
    position: absolute;
    top: 2px;
    right: 1px;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #bdbdbd;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
}

.header__icon svg {
    width: 20px;
    height: 20px;
    fill: #9e9b98;
}
.header__icon_social svg{
    width: 22px;
    height: 22px;
    color: #4e4e4e;
    transition: all 0.2s linear;
}
.header__icon_social a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition: all 0.2s linear;
}
.header__icon_social a:hover{
    background: #f3f3f3;
}
/*
.header__icon_tg a:hover{
    background: #0088cc;
}
.header__icon_tg a:hover svg{
    color: #ffffff;
}
 .header__icon_wh a:hover{
    background: #43d854;
} */
.header__icon_wh a:hover svg{
    color: #ffffff;
}
.header__icon a{
    color: #4e4e4e;
}
.favorites a {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #21201f;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 700;
    gap: 15px;
    width: 100%;
    padding: 0px 15px;
}
.header__nav .topmenu{
    width: 100%;
}
.header__bottom .header__nav{
    font-weight: 500;
}
.header__wrap .header__nav{
    padding: 0px;
}
.header__nav a {
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s linear;
}
.header__nav a:hover{
    color: var(--gold-primary)
}

/* .header__nav a.green {
    color: #003e2f;
} */

.header__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
border-top: 1px solid rgb(49 30 27 / 9%);
}
.header__place{
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    text-decoration: none;
    color: var(--text-main);
}
.header__place span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__place  svg{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.header__btn {
    /* padding: 6px 20px;
    font-size: 14px;
    min-width: 220px;
    color: #ffffff;
    border-radius: 20px;
    background: #003e2f;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center; */
}
.header__btn .button{
    height: 46px;
    font-size: 14px;
    max-width: 190px;
    min-width: 190px;
    padding: 10px;
    width: 100%;
}
.header__end{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap:30px;
}
.header__catalog {
    background:  #0aa648;
    margin-right: 15px;
    text-decoration: none;
}


.header__contact {
    color: var(--text-white);
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    
}

.header__contact div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.header__time {
    font-size: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.header__time svg {
    width: 16px;
    height: 16px;
}

.header__contact svg {
    width: 24px;
    height: 24px;
}

.header__contact a {
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    transition: all 0.2s linear;
}
.header__contact a:hover{
    color: var(--text-muted)
}
.header__contact a span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone__top {
    transition: all 0.2s linear;
}

.header__contact a:hover .phone__top {
    color:  #0aa648;
}

.header__messanger {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.header__messanger a {
    display: flex;
    justify-content: center;
    align-items: center;
    background:  #0aa648;
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.header__messanger a svg {
    width: 24px;
    height: 24px;
}
.header__nav ul.topmenu{
    padding: 0px;
}
.header__nav ul{
    margin: 0px;
    padding: 0px;
    padding: 20px;
}
.header__nav ul.submenu{
    background: white;
    border-radius: 20px;
}
.header__nav li{
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.header-mobile__burger{
    display: none;
    -webkit-tap-highlight-color: transparent;

}

.topmenu{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
}
.topmenu li{
    position: relative;
}

.submenu{
    opacity: 0;
    transform-origin: top;
    transform: scale(0);
    position: absolute;
    top: 30px;
    left: -10px;
    max-width: 300px;
    width: 300px;
    border-radius: var(--borderRadiusBlock);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    /* max-height: 407px;
    overflow: auto; */
}
.submenu:before{
    content: '';
    position: absolute;
    top: -15px;
    left: 0px;
    height: 30px;
    width: 100%;
    background: transparent;
}
.topmenu li:hover .submenu{
    opacity: 1;
    transform: scale(1);

}
.topmenu li:hover svg{
    transform: rotate(180deg);
}
.submenu li{
    margin-bottom: 10px;
}
.submenu li:last-child{
    margin-bottom: 0px;
}
.submenu-link{
    display: flex;
    justify-content: center;
    align-items: center;
}
.submenu-link span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.submenu-link svg{
    width: 20px;
    height: 20px;
    transition: all 0.32s ease-in;
}
.nav-list__scroll{
    padding: 0px !important;
    padding-top: 10px !important;
    margin-top: 10px;
    border-top: 1px solid var(--lightGray);
}

.nav-list__scroll li{
    margin-bottom: 5px;
}
.nav-list__wrap{
    padding: 10px;
    height: 200px;
    overflow-y: scroll;
}
.nav-list__title{
    font-weight: 600;
    font-size: 14px;
}
/* /header */

/* hero */
.section_hero{
   padding-top: 160px;
}
/* .section_hero:before{
    content: '';
    position: absolute;
    bottom: px;
    left: 0px;
    height: 50px;
    width: 100%;
} */
.hero{
    padding: 40px;
    position: relative;
    border-radius: 40px;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
 }
.hero__previewtitle{
    font-size: 30px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.49);
}


.hero-slider.slick-initialized{
    display: block;
}

.hero__container{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.header-main__logo{
    color: #3a2626;
    text-shadow: 1px 2px 2px rgb(255 255 255 / 49%);
}
/* .hero__title{
    color: #fff;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.49);
    font-weight: 600;
    font-size: 60px;
    line-height: 1;
    letter-spacing: 2px;
    margin: 0px;
    text-transform: uppercase;
} */
.hero__title{
    margin-bottom: 0px;
}
.hero__title span{
    display: block;
    font-size: 142px;
    font-weight: 600;
    letter-spacing: 2px;
    transform: translateX(-7px);
    text-transform: uppercase;
    margin:0px;
    margin-bottom: 20px;
    line-height: 1;
}
.hero__title h1{

    margin: 0px;
     color: #ffffff;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.49);
    font-weight: 700;
    font-size: 50px;
    line-height: 1.05;
    letter-spacing: 1px;

}
.hero__subtitle{
    font-size: 26px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.49);
    margin-bottom: 20px;
    max-width: 500px;
}
.hero__subtitle p{
    margin: 0px;
}
.hero__subtitle_small{
    text-transform: unset;
    font-size: 22px;
    max-width: 500px;
    width: 100%;
}
.hero__title_big h1{
    font-size: 42px;
}
.hero__subtitle_small p{
    margin-bottom: 20px;
}
.hero__subtitle_small p:last-child{
    margin-bottom: 0px;
}
.hero__btn{
    max-width: 300px;
    width: 100%;
}
.hero .container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

}
/* .hero__btn{
    max-width: 300px;
    margin-top: 40px;
    background: #0aa648;
} */

.hero__bg{
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.hero__bg div{
    height: 100% !important;
}
.hero__bg:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgb(0 0 0 / 27%) 0%, rgb(0 0 0 / 5%) 83%, rgba(255, 255, 255, 0) 100%);}
.hero__bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
    /* transform: scaleX(-1); */
}
.hero__communication{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.hero__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.hero__header_top{
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.hero__header_top .header__place{
    color: #ffffff;
}
.hero__header_top .header__contact a{
    color: #ffffff;
}
.hero__header_bottom{
    max-width: 100%;
    width: 100%;
}
.hero__header .header__nav{
    max-width: 100%;
    width: 100%;
    padding: 0px;
}
.hero__header .header__nav a{
    color: #ffffff;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.49);
}
.hero__header .header__nav a:hover{
    color: #3E8E6E;
}
.hero__header .header__nav ul.submenu a{
    color: #311e1b;
    text-shadow: none;
}
.hero__header .header__nav ul.submenu a:hover{
    color: #3E8E6E;
}
.hero__before{
    transform: scaleY(-1);
    fill: white;
    width: 100%;
    height: 150px;
    position: relative;
}
.hero__before:before{
    content: '';
    position: absolute;
    bottom: 130px;
    left: 0px;
    width: 100%;
    background: white;
    height: 60px;
}
.hero__before svg{
    height: 100%;
    width: 100%;
}
/* .hero__before:before{
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 600px;
    height: 500px;
    background: url('../img/before-3.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
} */
.hero .slick-dots{
    bottom: 200px
}
.hero__btns{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}
.hero__btns-item{
    max-width: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero__btns-item span{
    color: #ffffff;

        font-size: 13px;
text-shadow: 1px 2px 2px rgb(0 0 0 / 63%);
    margin-top: 5px;
}
.hero__booking{
    background: white;
    color: #311e1b;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    width: 100%;
    height: 46px;
    padding: 10px 20px;
    gap: 10px;
    transition: all 0.32s ease-in;
    cursor: pointer;
    text-decoration: none;
}
.hero__booking svg{
    width: 24px;
    height: 24px;
}
.hero__booking:hover{
    background: #0aa648;
    color: #ffffff;
}
.hero__bottom{
    position: absolute;
    bottom: -4px;
    left: 0px;
    width: 100%;
    overflow: hidden;
}

.hero__features{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    color: #311e1b;
    position: relative;
}
/* .hero__features:before{
    content: '';
    position: absolute;
    top: -10px;
    left: 0px;
    width: 100%;
    height: calc(100% + 20px);
    background: red;
} */
/* .hero__features{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #311e1b;
    z-index: 5;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    margin: 0px auto;

    height: 60px;
    width: 100%;
} */
.hero__features-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.hero__features svg{
    color: #0aa648;
}
.hero__features-item{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 2;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 100;
    /* Текст */
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    
    /* Жидкий эффект границы */
    background-clip: padding-box;

    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* .hero__wrap{
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
    0 8px 32px rgba(31, 38, 135, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    padding: 40px;
} */
.hero__features-item span:first-child{
    /* background: linear-gradient(135deg, #f4d03f 0%, #f1c40f 25%, #d4ac0d 50%, #b7950b 75%, #9a7d0a 100%);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2); */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.hero__features-item svg{
    width: 40px;
    height: 40px;
    color: #ffffff;
}
/* .hero__features-item span{
    display: flex;
    justify-content: center;
    align-items: center;
} */
.hero .container{
    position: relative;
}
/* /hero */
/* sale */
.sale__right{
    display: flex;
    justify-content: center;
    align-items: center;
    /* display: none; */
}
.sale__arrows{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}
.sale__arrows div{
    margin: 0px;
    position: unset;
    transform: translate(0px);
}
.sale__item{
    position: relative;
    z-index: 1;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    overflow: hidden;
    text-decoration: none;
    height: 400px;
}
.sale__item:hover .sale__img img{
    transform: scale(1.02);
}
.sale__img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.sale__img:before {
    content: "";
    position: absolute;
    /* transform: scaleY(-1); */
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 200px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}
.sale__img img{
    width: 100%;
    height: 100%;

    transition: all 0.32s ease-in;
    object-fit: cover;
}
.sale__info{
    position: relative;
    z-index: 2;
}
.sale__name{
    font-size: 28px;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0px;
}
.sale__btn{
    max-width: 150px;
    width: 100%;
}
.sale__slider{
    position: relative;
    overflow: hidden;
}
.sale__title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.sale__title .title{
    margin-bottom: 0px;
}
/* /sale */
/* about */
.section_about{
    position: relative;
    overflow: hidden;
    z-index: 3;
    background: #ffffff;
    transform: translateY(-2px);
}
.section_about:before {
    content: '';
    position: absolute;
    top: 203px;
    left: 445px;
    background: url(../img/before-1.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(352deg);
    width: 550px;
    height: 440px;
    opacity: 0.5;
    z-index: -1;
}
.about{
    display: flex;
    justify-content: flex-start;
    align-items:center;
    flex-direction: column;
    gap: 20px;
}
.about__info{
    max-width: 730px;
    width: 100%;
}
.about__title{
    width: 100%;
    margin-bottom: 30px;
}
.about__title p{
    margin: 0px;
    line-height: 1.2;
}
.about__title p:last-child{
    font-size: 30px;
    margin-top: 20px;
}
.about__title .title{
    margin: 0px;
    font-size: 35px;
    text-align: left
}
.about__left{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.about__imgs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 680px;
}
.about__img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}
.about__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: all 0.32s ease-in;
}
.about__img:hover img{
    transform: scale(1.1);
}
.about__right{
    width: 100%;
    gap: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    
}
.about__text{
    font-size: 18px;
    line-height: 1.5;
}
.about__text p{
    margin: 0px;
}

.o-nashey-kompanii .section_hero{
    padding-top: 130px;
}
.single-about .features__img{
    width: 140px;
    height: 140px;
    padding: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
       background: linear-gradient(135deg, #3E8E6E 0%, #2F7F5E 45%, #256A4F 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15);
}
.single-about .features__img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
}
.single-about__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.single-about__text{
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    color: #8b8f94;
    margin-top: 20px;
}
/* /about */

/* video */
.video-wrap{
    height: 370px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.video-wrap.active:before{
    opacity: 0;
}
/* .preview__info{
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0px 1px 7px 0 rgba(255, 255, 255, 0.37);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
} */

.video-wrap:before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
     /* box-shadow: inset 0px 1px 11px 0 rgb(255 255 255 / 38%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3); */
    border-radius: 20px;
    transition: all 0.32s ease-in;
}
.video-wrap video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.video__play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
}
.video__play svg{
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.fullscreen-btn {
    cursor: pointer;
    padding: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    color: var(--black);
    border-bottom-left-radius: 10px;
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.fullscreen-btn.active{
    display: block;
}
.fullscreen-btn svg{
    margin-left: 2px;
    margin-top: 2px;
    width: 20px;
    height: 20px;
}

.progress-bar {
  -webkit-appearance: none; /* Убираем дефолтное оформление */
  height: 6px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;

  cursor: pointer;
  position: absolute;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;

  display: none;
}
.progress-bar.active{
    display: block;
}
/* Убираем стандартные стрелки и слайдер на Firefox */
.progress-bar::-moz-range-track {
  background: transparent;
}

/* Стиль дорожки для WebKit */
.progress-bar::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.3),
    0 4px 30px rgba(255, 255, 255, 0.1);
}

/* Cлайдер (ползунок - ноготь) */
.progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 8px 2px rgba(255, 255, 255, 0.2),
    0 0 20px 5px rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  margin-top: -2px; /* сдвиг, чтобы слайдер был по центру дорожки */
  transition: box-shadow 0.3s ease;
}

.progress-bar::-webkit-slider-thumb:hover {
  box-shadow:
    0 0 12px 4px rgba(255, 255, 255, 0.9),
    0 0 26px 8px rgba(160, 233, 255, 0.9);
}

/* Тот же стиль для Firefox */
.progress-bar::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 8px 2px rgba(21, 170, 220, 0.7),
    0 0 20px 5px rgba(160, 233, 255, 0.8);
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.progress-bar::-moz-range-thumb:hover {
  box-shadow:
    0 0 12px 4px rgba(21, 170, 220, 0.9),
    0 0 26px 8px rgba(160, 233, 255, 0.9);
}

/* Заполненная часть прогресс-бара через градиент */
.progress-bar::-webkit-slider-runnable-track {
  background: linear-gradient(90deg, #0f9bff 0%, #00e3ff 100%);
  border-radius: 12px;
}

.progress-bar {
  background: transparent; /* прозрачный фон для лучшего эффекта */
  position: relative;
  z-index: 0;
}

/* Мы "обманываем" отображение заполненной части с помощью псевдоэлемента */
.progress-bar::-webkit-slider-runnable-track {
  background: rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}

/* Для современных браузеров лучше управлять через JS: динамически менять фон */


/* /video */

/* social */


.ml_wrapper {
    position: fixed;
    bottom: 50px;
    right: 50px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.ml_icon_chat {
    display: none;
}

.ml_bgimg {
    background: #424242;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.34s ease-in;
    height: 100%;
    width: 100%;
}

.ml_bgimg:before {
    content: '';
    background-image: url('../img/chats-open.svg');
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.2s linear;
}

.ml_btn_label {
    position: relative;
    cursor: pointer;
    z-index: 2;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    /* background: #ffffff; */
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 30%);
    overflow: hidden;
}

.ml_btn_input {
    display: none;
}

.ml_icon_link {
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 30%);
    opacity: 0;
    visibility: hidden;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
}
.ml_icon_link svg{
    width: 50px;
    height: 50px;
}
.ml_btn_input:checked~.ml_icon_link {
    opacity: 1;
    visibility: visible;
}

.ml_btn_input:checked~a:nth-of-type(1) {
    transition: all 0.2s ease-in-out;
    transform: translate(0, -135%);
}

.ml_btn_input:checked~a:nth-of-type(1):before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    z-index: -1;
}

.ml_btn_input:checked~a:nth-of-type(2) {
    transition: all 0.225s ease-in-out;
    transform: translate(0, -255%);
}

.ml_btn_input:checked~a:nth-of-type(3) {
    transition: all 0.25s ease-in-out;
    transform: translate(0, -375%);
}

.ml_btn_input:checked~a:nth-of-type(4) {
    transition: all 0.25s ease-in-out;
    transform: translate(0, -492%);
}

.ml_btn_input:checked~a:nth-of-type(5) {
    transition: all 0.25s ease-in-out;
    transform: translate(0, -612%);
}

.ml_tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #fff;
    padding: 6px 9px;
    font-size: 13px;
    border-radius: 3px;
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    background: #292929;
    color: #fff;
    opacity: 0;
    transition: all 0.1s linear;
}

/* .ml_btn_input:checked + label .ml_icon-close {
	opacity: 1;
	visibility: visible;
	
} */
.ml_btn_input:checked+label .ml_bgimg {
    background: white;
}

.ml_btn_input:checked+label .ml_bgimg:before {
    animation: rotateClose;
    animation-duration: 0.5s;
}

.ml_btn_input+label .ml_bgimg:before {
    animation: rotateOpen;
    animation-duration: 0.5s;
}

.ml_btn_input+label .ml_icon-close {
    animation-name: rotateOpen;
    animation-duration: 0.5s;
}

.ml_icon-close {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.1);
}

.ml_icon {
    transition: all 0.3s ease-in-out;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ml_btn_input:checked+label {
    background: #fff !important;
    animation: none;
}

.ml_icon_link:hover .ml_tooltip {
    opacity: 0.85;
}

.ml_btn_input:checked+label .ml_icon-close {
    opacity: 1;
    visibility: visible;
    animation-name: rotateClose;
    animation-duration: 0.5s;
    width: 24px;
    height: 24px;
    transform: scale(1);
}
.statistic__text p:first-child{
    margin-top: 0px;
}
@keyframes rotateClose {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateOpen {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}
.section_first{
    padding-top: 20px;
}
.section_about.section_first{
    background: #f8f7f4;
    transform: translateY(0px);
}
.ml_tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #fff;
    padding: 6px 9px;
    font-size: 13px;
    border-radius: 3px;
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    background: #292929;
    color: #fff;
    opacity: 0;
    transition: all 0.1s linear;
}
/* /social */
/* breadcrumbs */
.section_breadcrumbs{
    background: var(--bg-primary);
    /* padding-top: 150px; */
    padding-top: 146px;
    padding-bottom: 20px;
}
.breadcrumbs {
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
}

.breadcrumbs ol li {
    list-style: none;
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
    font-weight: 600;
}

.breadcrumbs ol li::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -2px;
    width: 3px;
    height: 3px;
    background: #707070;
}

.breadcrumbs ol li.active::before {
    display: none;
}

.breadcrumbs ol li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.32s ease-in;
}
.breadcrumbs ol li a:hover{
    color: var(--green);
}
.breadcrumbs ol li.active {
    color: var(--text-white);
}

.breadcrumbs ol {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 0px;
    margin: 0px;
}
/* /breadcrumbs */

/* product */
.section_detail{
    /* overflow: hidden; */
}
.catalog {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
.catalog-cat{
    margin-bottom: 120px;
}
.catalog-title h2.title{
    font-size: 38px;
}
.catalog-cat:last-child{
    margin-bottom: 0px;
}
.catalog-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px;
    border-radius: 30px;
    max-width: 500px;
    margin: 0px auto;

    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 100;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.catalog-nav a{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 250px;
    width: 100%;
}
.catalog-nav__link_active{
    background: white;
    color: #21201f;
    box-shadow: none;
    pointer-events: none;
    text-shadow: none;
}
.catalog-nav__link_active:hover{
    background: white;
    color: #21201f;
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15); */

}
.section_catalog-nav{
    padding: 30px 0px;
}
.product-carousel__arrows{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 15px;
    width:calc(100% - 30px);
    height: 1px !important;
    transform: translateY(-50%);
}
.preview-slider__next{
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    cursor: pointer;


        background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.product-carousel__arrows-big__prev{
    width: 100px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    padding-left: 10px;
    align-items: center;
    z-index: 2;
    position: absolute;
    top: 0px;
    left: 0px;
    background: transparent
}
.product-carousel__arrows-big__next{
    width: 100px;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
    align-items: center;
    z-index: 2;
    position: absolute;
    top: 0px;
    right: 0px;
    background: transparent
}
.preview-slider__prev{
   
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    cursor: pointer;

    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.slick-dots{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    gap: 5px;
    z-index: 3;
}
.slick-dots li{
    list-style: none;
}
.slick-dots li.slick-active button{
    background: rgba(255, 255, 255, 1);
}
.slick-dots button {
    border: none; 
    border-radius: 3px;
    height: 10px;
    width: 20px; 
    outline: none;
    font-size: 0px;
    cursor: pointer;

    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0px 1px 11px 0 rgb(255 255 255 / 38%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 2px solid rgb(255 255 255 / 46%);
}   
.product-list{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
.product-list:before{
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 600px;
    height: 500px;
    background: url('../img/.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.product-item{
    /* background: #fafafa; */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.product-item__img{
    /* margin-bottom: 20px; */
    /* height: 550px; */
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    
}

.product-item__img-hover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-item__img-hover{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.2s linear;
}
.product-item:hover .product-item__img-hover{
    opacity: 1;
}
.product-item__img img{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: all 0.2s linear;
}
.product-item__info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    /* position: absolute; */
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 250px;
    color: #ffffff;
    text-decoration: none;
    
    border-radius: 20px;

    
    /* transition: all 0.32s ease-in; */
    padding: 10px 20px;
    z-index: 2;

    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* 
.product-item__info:before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.15) 20%, transparent 60%);
    pointer-events: none;
}
.product-item__info:after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.4), transparent 60%);
    opacity: .5;
    pointer-events: none;
} */


.product-item__info div{
    z-index: 2;
}
.product-carousel__elem:before{
    content: "";
    position: absolute;
    /* transform: scaleY(-1); */
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 150px;
    background: #f9f9f9;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.product-item__name{
    font-size: 18px;
    font-weight: 700;
    text-align: center;

}
.product-item__price{

}
.product-carousel__elem{
    position: relative;
}
.product-item__icons{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    gap: 40px;
    font-size: 16px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%);
    color: #ffffff;
    z-index: 4;
    text-decoration: none;
}
.product-item__icons svg{
    width: 42px;
    height: 42px;
}
.product-item__icons div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-direction: column;
}
h5.single-product__title-green{
    margin: 0px;
}
.single-product__price-list p:last-child{
    margin-bottom: 0px;
}
.single-product__gallery .product-item__icons {
    gap: 10px;
    max-width: 445px;
    padding: 0px 20px;
}
.single-product__price-list{
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    margin-top: 50px;
        background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2)
}
.single-product__price-list span{
    font-size: 16px;
}
.single-product__price-list b{
    font-size: 18px;
    background: var(--bg-primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    border-radius: 32px;
    width: 100%;
    color: var(--text-white)
}
.single-product__gallery .product-item__icons div{
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(3px);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.62);
    padding: 10px;
    border-radius: 20px;
    font-size: 14px;
    min-width: 94px;
}
.modal-custom .product-item__icons div{
        background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(3px);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.62);
    padding: 10px;
    border-radius: 20px;
    font-size: 14px;
    min-width: 94px;
}
.modal-custom .product-item__icons{
    gap: 10px;
    max-width: 445px;
    padding: 0px 20px;
}
.product-item__icons span{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .product-item a{
    text-decoration: none;
    color: #311e1b;
    background: #eee;
} */
/* .product-item a:hover img{
    transform: scale(1.1);
} */
.product-item__icons span b{
    font-weight: 400;
    margin-left: 3px;
}

.product-item__place{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-item__place span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.single-product__gallery{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}
.single-prdocut__right{
    max-width: 386px;
    width: 100%;
    position: sticky;
    top: 150px;
    display: grid;
}

.product-info__left .before{
    width: 500px;
    height: 500px;
    top: unset;
    bottom: 0px;
    right: 0px;
    z-index: 1;
}
.product-info__left .before img{
    transform: scaleX(-1);
    opacity: 0.1;
}
.detail-product__open-full{
    display: none;
}
.single-product__gallery .product-carousel-wrapper{
    position: relative;
    aspect-ratio: 16/9;
}
.single-product__gallery .product-carousel-wrapper .slick-slide{
    height: 100%;
}
.swiper-pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 2;
    bottom: 20px !important;
}
.single-product__left{
    width: calc(100% - 406px);
    /* overflow: hidden; */
}
.single-product__form_mobile{
    display: none;
}
.dot {
    border: none; 
    border-radius: 3px;
    height: 10px;
    width: 10px; 
    outline: none;
    font-size: 0px;
    cursor: pointer;

    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0px 1px 11px 0 rgb(255 255 255 / 38%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 2px solid rgb(255 255 255 / 46%);
}
.dot.dot_active{
    background: #ffffff;
}
.single-product__gallery .product-carousel-wrapper .product-carousel-detail a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    outline: none;
}
.single-product__gallery .product-carousel-wrapper .product-carousel-detail img{
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}
.single-product__gallery .product-carousel-detail{
    height: 100%;
    max-width: 1000px;
    width: 100%;
}
.single-product__features{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px;
    /* margin-bottom: 20px; */
    margin-bottom: 20px;
}
.single-product__features-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.single-product__features li{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    color: var(--text-white);
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 5px 10px 5px 5px;
}
.single-product__features li img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
}
.single-product__features span{
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}
.single-product__features span:first-child{
    padding: 5px;
       background: var(--gold-gradient);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}
.single-product__wrap{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.single-product{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.single-product__form{
    border-radius: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.single-product__form h3{
    margin: 0px;
    margin-bottom: 20px;
    font-size: 26px;
}
.single-product__form form input{
    background: #f8f7f4
}
.single-product__form form input.button{
        background: var(--gold-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.single-product__form form input.button:hover{
      box-shadow: 
    0 6px 20px rgba(218, 165, 32, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.single-product__title-green{

       background: var(--gold-gradient);
       box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 24px;
    border-radius: 32px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    padding: 10px 20px;
    position: absolute;
    top: -24px;
}
.single-product__banya{
    background: #ffffff;
    padding: 30px;
    margin: 0px !important;
    max-width: 100% !important;
    border-radius: 20px;
    margin-top: 20px !important;
}
.single-product__about ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
    margin: 0px;
    padding: 0px;
    gap: 5px;
    position: relative;
}
.single-product__about li{
    list-style: none;
    font-size: 14px;
    color: #311e1b;
    background: #f0ead8;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.32s ease-in;
}
.single-product__about li:hover{
    background: #fff;
}
.single-product__about{
    width: 100%;
    margin: 0px auto;
    margin-top: 20px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-top: 50px;
    box-shadow: 0 4px 8px 0 rgb(128 75 2 / 5%), 0 0 4px 0 rgb(255 158 0 / 3%);
    position: relative;
}
.content{
    color: #311e1b;
}
.single-product__about ul{
    margin-top: 14px;
}
.single-product__gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.single-product__gallery-item{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.32s ease-in;
    will-change: transform;
}
.single-product__gallery-item:hover{
    transform: scale(1.02);
}
.single-product__gallery-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: url(../img/zoom.svg) no-repeat rgb(212, 175, 55, 0.5) center;
    z-index: 4;
    background-size: 30%;
    opacity: 0;
    transition: all .3s ease-in-out;
}
.single-product__gallery-item:hover:before {
    opacity: 1;
}
.section_nopadding{
    padding-top: 0px;
}
.single-product__gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
}
.product-info{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.product-info h2.title{
    font-size: 26px;
    margin-bottom: 20px;
}
.product-info__content{
    font-size: 16px;
    line-height: 1.4;
    margin-top: 12px;
    position: relative;
    z-index: 2;
}
.product-info__content ul{
    margin-top: 0px;
    margin-top: 20px;
}
.product-info__content p:first-child{
    margin-top: 0px;
}
.product-info__content li{
    list-style: none;
    position: relative;

}
.product-info__content li:before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: -25px;
    color: #4088F5;
    width: 24px;
    height: 24px;
    font-weight: 600;
    background: url("../img/MaterialSymbolsCheck.svg");
    background-position: center;
    background-size: contain;
}
.product-info__content a{
    color: #0aa648;
    font-weight: 600;
}
.product-info__right{
    min-width: 386px;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    margin-top: 50px;
    box-shadow: 0 4px 8px 0 rgb(128 75 2 / 5%), 0 0 4px 0 rgb(255 158 0 / 3%);
}
.product-info__right .product-info__content ul{
    padding-left: 25px;
}
/* .product-info__left{
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-top: 50px;
    box-shadow: 0 4px 8px 0 rgb(128 75 2 / 5%), 0 0 4px 0 rgb(255 158 0 / 3%);
} */
.product-info__left{
    position: relative;
margin-top: 50px;
    padding: 30px;
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.section_blog .product-info__left{
    margin-top: 0px;
}
.section_product-info{
    position: relative;
    overflow: hidden;
    padding-top: 0px;
}
.section_product-info .before img {
    transform: scaleX(-1);
}
.section_product-info .before{
    width: 900px;
    height: 900px;
    top: -100px;
    right: 30px;
}
.product-info__title .title{
    font-size: 26px;
    margin-bottom: 20px;
}
/* /product */

/* features */
.section_features{

    position: relative;
    overflow: hidden;
}
.section_features:before{
    content: '';
    position: absolute;
    top: 303px;
    left: -370px;
    background: url(../img/features/before.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(276deg);
    width: 1200px;
    height: 700px;
    opacity: 0.2;
}
.features__list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.features__item{
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: inset 0px 1px 11px 0 rgb(255 255 255 / 38%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 2px solid rgb(255 255 255 / 46%);
    transition: all 0.32s ease-in;
    padding: 10px;
}
.single-about .features__item{
    padding: 20px;
}
.single-about .features__info{
    padding: 0px;
}
.features__name{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.features__text{
    line-height: 1.3;
}
.features__text p{
    margin: 0px;
}
.features__img{
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 260px;
}
.features__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.features__info{
    padding: 0px 15px;
}

.features__slider{
    position: relative;
}
.features__arrows{
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 142px;
    left: 12px;
    width: calc(100% - 24px);
    z-index: 2;
    height: 1px;
}
.features__arrows{
    display: none;
}
.features-main{
    margin-top: -70px;
    position: relative;
    z-index: 1;
}
.features-main__bg{
    width: 100%;
    height: 100%;
    height: 800px;
    position: relative;
}
.features-main__bg:before{
    content: '';
    background: linear-gradient(0deg, rgb(248, 247, 244) 20%,  rgb(248, 247, 244, 0.6) 60%, rgb(248, 247, 244, 0.2) 70%, rgb(248, 247, 244, 0.1) 80%, rgb(248, 247, 244, 0) 100%);
    position: absolute;
    top: -50px;
    left: 0px;
    width: 100%;
    height: 250px;
    z-index: 2;
    transform: scaleY(-1);
}
.features-main__bg:after{
    content: '';
    background: linear-gradient(0deg, rgb(248, 247, 244) 20%,  rgb(248, 247, 244, 0.6) 60%, rgb(248, 247, 244, 0.2) 70%, rgb(248, 247, 244, 0.1) 80%, rgb(248, 247, 244, 0) 100%);
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 250px;
    z-index: 1;
}
.features-main__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.features-main__item{
    position: relative;
    border-radius: 20px;
    height: 320px;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    text-decoration: none;
}
.features-main__bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.3);
}
.features-main__img{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.features-main__img img{
    width: 100%;
    height: 100%;
    filter: brightness(1.3);
    object-fit: cover;
}
.features-main__text{
    color: #ffffff;
    font-size: 30px;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.49);
    margin: 0px;
}
.features-main__item_last{
    text-decoration: none;
}
.features-main__item_last .features-main__img{
    opacity: 0.5;
}
/* .features-main__item_last{
    align-items: center;
} */
.features-main__item_last .features-main__text{
    color: #ffffff;
    text-decoration: none;
    max-width: 100%;
    width: 100%;
    font-size: 16px;
}
/* /features */

/* faq */

.faq__list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.faq__item {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    overflow: hidden;
    height: fit-content;
}

.faq__name span:last-child{

}
.faq__item h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0px;
}

.faq__answer {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    display: none;
    padding: 30px;
    padding-top: 0px;
}
.faq__answer p{
   margin: 0px;
}

.faq__name {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding: 30px;
    padding-right: 50px;
}

.faq__name span {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.faq__name span:last-child {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.faq__name svg {
    width: 24px;
    height: 24px;
    transition: all 0.2s linear;
    stroke: #311e1b;
}
.faq__name svg path{
    stroke: var(--gold-primary);
}

.faq__item.open .faq__name span:last-child svg {
    transform: rotate(45deg);
}
.faq__wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
.faq__img{
    width: 676px;
    min-width: 676px;
    height: 452px;
    overflow: hidden;
    border-radius: 20px;
}
.faq__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.faq-fast{
    
}
.faq-fast__item{
    border-radius: 20px;
    background: #f8f7f4;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    text-decoration: none;
    border: 1px solid #f0ead8;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    color: #311e1b;
}
.faq-fast__icon{
    margin-right: 20px;
    color: #0aa648;
}
.faq-fast__info{
    font-size: 16px;
    line-height: 1.5;
}
.faq-fast__info p{
    margin: 0px;
}
.faq-fast__info h5{
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 10px;
    font-weight: 400;
}
.faq-fast__subtitle{
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-muted);
}
.faq-fast__list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.section_faq-fast{
    position: relative;
    overflow: hidden;
}
.section_faq-fast:before {
    content: '';
    position: absolute;
    top: 203px;
    left: 445px;
    background: url(../img/before-1.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(352deg);
    width: 550px;
    height: 440px;
    opacity: 0.5;
    z-index: -1;
}
/* /faq */


/* living */

.living__wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 40px;

    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.living__right{
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    max-width: 600px;
    min-width: 600px;
    margin-left: 30px;
}
.living__right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.living__left{
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-muted);
}

.living_reverse .living__left{
    order: 2;
    margin-left: 30px;
}
.living_reverse .living__right{
    order: 1;
    margin-left: 0px;
}
.living_reverse{
    margin-top: 30px;
    margin-bottom: 30px;
}
.living_reverse:last-child{
    margin-bottom: 0px;
}

/* /living */

/* blog */
.blog__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog__item{
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;

    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.blog__item:hover img{
    transform: scale(1.1);
}
.blog__img{
    height: 250px;
    width: 100%;
        border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}
.blog__img img{
    width: 100%;
    height: 100%;
    transition: all 0.32s ease-in;
    object-fit: cover;

}
.blog__info{
    padding: 20px;
}
.blog__date{
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.blog__date svg{
    width: 26px;
    height: 26px;
}

.blog__date span:last-child{
    margin-top: 2px;
}
.blog__date span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog__name{
    font-size: 18px;
    min-height: 42px;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 10px;
}
.blog__all{

}
.blog__all svg{
    transition: all 0.32s ease-in;
}
.blog__all:hover svg{
    transform: translateX(10px);
}
.blog__all span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog__all svg{
    width: 20px;
    height: 20px;
}
.blog__title{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    line-height: 1;
}
.blog__title .title{
    margin-bottom: 0px;
}
.blog__text{
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.3;
    -webkit-line-clamp: 4; 
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    overflow: hidden;
    margin-bottom: 20px;
    min-height:85px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog__btn{
    max-width: 150px;
    margin: 0px 0px 0px auto;
}

.blog__name_card{
    margin-bottom: 0px;
}
.blog-detail{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}
.blog-detail__left{
    width: 100%;
    padding: 40px;
     position: sticky;
    top: 130px;
    left: 0px;
    background: #ffffff;
    border-radius: 20px;
}
.blog-detail__content a{
    color: var(--violet);
    text-decoration: none;
}
.blog-detail__content a:hover{
    color: var(--violetLight);
}
.blog-detail__content img{
    border-radius: 20px;
    overflow: hidden;
    /* width: 100%;
    height: 100%; */
    object-fit: contain;
}
.blog-detail__content p{
    margin: 10px 0px;
    font-size: 18px;
    line-height: 1.5;
}
.blog-detail__right{
    padding: 40px;
    background: var(--greenLight);
    border-radius: var(--borderRadiusMain);
    position: sticky;
    top: 130px;
    right: 0px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.blog-detail__form-title{
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}
.blog-detail__date{
    color: var(--gray);
    font-size: 14px;
    margin: 10px 0px;
}
/* .blog-detail__right:before{
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: url(../img/form-small-decor.svg);
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.5;
} */
.blog-detail__preview{
    width: 100%;
    height: 400px;
    border-radius: var(--borderRadiusBlock);
    overflow: hidden;
}
.blog-detail__preview img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog__slider{
    position: relative;
}
.blog__slider .blog__arrows{
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 100px;
    left: 5px;
    width: calc(100% - 10px);
    z-index: 2;
    height: 1px;
    display: none;
}
.blog-photo__detail{
    width: 100%;
    height: 240px;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}
.blog-photo__detail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* /blog */


/* contact */
.section_contact{
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.section_contact:before {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -96px;
    background: url(../img/before-2.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1080px;
    height: 800px;
    transform: scaleX(-1);
    opacity: 0.5;
    z-index: -1;
   filter: grayscale(1) brightness(1000%);
}
.contact__wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact__right {
    max-width: 720px;
    width: 100%;
    height: 446px;
}

.contact__right iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgb(128 75 2 / 5%), 0 0 4px 0 rgb(255 158 0 / 3%);
}
.contact__info span svg {
    width: 20px;
    height: 20px;
}
.contact__communication{
    font-size: 20px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}
.contact__requisites{
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    transition: all 0.32s ease-in;
    cursor: pointer;
}
.contact__requisites:hover{
    color: var(--text-main)
}
.contact__requisites span{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main)
}
.contact__time{
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.contact__time span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact__place{
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.contact__place span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact__communication a{
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    transition: all 0.32s ease-in;
}
.contact__communication a:hover{
    color: var(--text-main)
}
.contact__communication a span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact__social a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #8b8f94;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    overflow: hidden;
    padding: 5px;
    transition: all 0.2s linear;
}
.contact__social a:hover{
    color: var(--text-white);
}

.contact__social svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}
.contact__social{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
.contact{
    padding: 40px;
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* /contact */


/* gallery */

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.gallery__item{
        transition: all 0.32s ease-in;
        will-change: transform;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 300px;
    transition: all 0.2s linear;
    border-radius: 20px;
    box-shadow: 2px 4px 10px 0 rgb(97 85 173 / 20%);
    border: 1px solid #ffffffc9;

}
.gallery__item:hover{
    transform: scale(1.02);
}
.gallery__item:nth-child(1) {
    grid-column: 1 / 3;
}
.gallery__item:nth-child(7) {
    grid-column: 3 / 5;
}

.gallery__item:nth-child(10) {
    grid-column: 2 / 4;
}
.gallery__item:nth-child(16) {
    grid-column: 4 / 6;
}
.gallery__item:nth-child(17) {
    grid-column: 1 / 3;
}

/* /gallery */


/* footer */
.footer{
    position: relative;
    z-index: 2;
    padding-top: 60px;
}
.footer .container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer__nav ul{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px;
    padding: 0px;
    gap: 60px;
}
.footer__nav li{
    list-style: none;
}
.footer__nav ul ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
}
.footer__nav a{
    color: var(--text-muted);
    font-weight: 600;
    text-decoration: none;
}
.footer__nav ul ul a{
    font-weight: 400;
}
.footer__nav svg{
    width: 20px;
    height: 20px;
}
.footer__nav ul li a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.footer__nav ul li span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer__logo{
    max-width: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer__logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* /footer */


/* service */
.section_service{
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.section_service:before {
    content: '';
    position: absolute;
    bottom: 200px;
    left: -262px;
    background: url(../img/before-3.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(142deg);
    width: 900px;
    height: 600px;
    opacity: 0.5;
    z-index: -1;
}
.section_service:after {
    content: '';
    position: absolute;
    top: 300px;
    right: -276px;
    background: url(../img/before-3.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(305deg);
    width: 900px;
    height: 600px;
    opacity: 0.5;
    z-index: -1;
}
.service__list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.service__item{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}
.service__item:hover .service__img img{
    transform: scale(1.1);
}
.service__item:hover .service__name{
    background: linear-gradient(135deg, #3E8E6E 0%, #2F7F5E 45%, #256A4F 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}
.service__img{
    width: 100%;
    height: 350px
}
.service__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.32s ease-in;
    will-change: transform;
}
.service__name{
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 20px;
    padding: 20px 40px;
    z-index: 2;
    /* transition: all 0.32s ease-in; */
    /* will-change: transform; */
    color: #311e1b;
}

/* /service */




/* ferm-shop */
.ferm-shop__content{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    font-size: 18px;
    line-height: 1.4;
}
.ferm-shop__content p{
    margin-top: 0px;
}
.ferm-shop__photos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    min-width: 500px;
    width: 100%;
    gap: 10px;
}
.ferm-shop__box{
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.ferm-shop__box:before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    transition: all 0.32s ease-in;
    will-change: transform;
}
.ferm-shop__box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ferm-shop__box h4{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    margin: 0px;
    width: 100%;
}
.section_ferm-shop{
    position: relative;
    overflow: hidden;
}
.before{
    position: absolute;
    top: 188px;
    right: 505px;
    width: 563px;
    height: 530px;
    z-index: -1;
    filter: grayscale(50%);
    /* animation: floatSway 7.8s ease-in-out infinite; */
}
.before img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
}
@keyframes floatSway {
  0%   { transform: translateY(0)  translateX(0)  rotate(4deg); }
  25%  { transform: translateY(-20px) translateX(-6px) rotate(10deg); } 
  50%  { transform: translateY(0)  translateX(0)  rotate(4deg); }
  75%  { transform: translateY(8px)  translateX(30px)  rotate(10deg); } 
  100% { transform: translateY(0)  translateX(0)  rotate(4deg); }
}
/* /ferm-shop */







/* copy */
.copy{
    margin-top: 20px;
    margin-bottom: 20px;
}
.copy__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copy__link{
    font-size: 14px;
    color: #707070;
}
.copy__link a{
    color: #707070;
}
/* /copy */

/* form */
.form__input{
    margin-bottom: 20px;
}
form input {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    height: 50px;
    line-height: 18px;
    width: 100%;
    max-width: 390px;
    border: 1px solid #f5f5f5;
    padding: 20px;
    color: #282828;
    background: #f8f7f4;
    border-radius: 20px;
    -webkit-transition: all .5s ease-in-out;
}
.form__input input{
    width: 100%;
    max-width: 100%;
}
form input:focus{
    outline: none;
}
form textarea {
    line-height: 1;
    padding: 10px 12px;
    border-radius: 5px;
    border: none;
    color: #212121;
    max-width: 100%;
    background: #f4f5f6;
    width: 100%;
    font-size: 14px;
    resize: none;
}

.form__input .placeholder {
    margin-bottom: 10px;
    font-size: 14px;
    display: block;
}

input[name='message'] {
    display: none;
}

.form #readonly {
    display: none;
}

.form__input .placeholder {
    margin-bottom: 5px;
    font-size: 12px;
    display: block;
}

.private-policy{
    margin-bottom: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.private-policy label{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    gap: 5px;
    cursor: pointer;
}
.private-policy label a{
    color: #D4AF37;
    text-decoration: none;
}
.private-policy input{
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    border-radius: 3px;
    overflow: hidden;
}


.private-policy input {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: #fff;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 0;
}

.private-policy input:checked {
    background-color: #D4AF37;
    border-color: #D4AF37;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.private-policy input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.private-policy input:disabled + span {
    opacity: 0.5;
    cursor: not-allowed;
}

input[name='message'] {
    display: none;
}
/* /form */

/* default */
.default__content{
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-white)
}
.default__content a{
    color: var(--gold-primary)
}
.default__content li{
    margin-bottom: 10px;
}
.default__content li:last-child{
    margin-bottom: 0px;
}
/* /default */


/* modal */
.modal{
    display: none;
}
.modal__wrap{
    padding: 30px;
}
.modal__title{
    color: #2e2e33;
}
.modal__close svg{
      color: #2e2e33;
}
.modal__wrapper{
    position: relative;
    padding: 30px;
    color: var(--bg-secondary);
}
.modal__close{
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}
.modal__close svg{
    transition: all 0.32s ease-in;
}
.modal__close:hover svg{
    transform: rotate(90deg);
}
.modal__readonly{
    opacity: 0;
    z-index: -1;
    height: 0px;
    overflow: visible;
}
.modal__title{
    font-size: 26px;
    margin-bottom: 20px;
}
.modal__form .button{
    width: 100%;
    max-width: 100%;
}
.modal__text_content{
    line-height: 1.5;
}


.modal-product__container{
    max-width: 1200px;
    width: 100%;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    padding-bottom: 60px;
}
.modal-product__gallery img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.modal-product__gallery .fancybox{
    height: 400px
}
.modal-product__gallery .slick-slide{
    height: 400px;
}
.modal-product__item{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 20px;
}
.modal-product__gallery{
    max-width: 700px;
    min-width: 700px;
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.modal-tour {
    max-width: 90vw !important;
}
.modal-tour iframe {
    width: 100%;
    max-width: 100%;
    height: 86vh;
    border-radius: 15px;
    overflow: hidden;
}
.single-product__title{
    font-size: 28px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 4;
}
.single-product__title .title{
    margin-bottom: 0px;
}
.see__tour{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}
.see__tour-img{
    width: 100px;
}
.see__tour-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.modal-product__btns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    width: 100%;
    position: absolute;
    bottom: -22px;
}
.single-product__description{
    color: #311e1b;
}
.single-product__description a{
    color: #0aa648;
}

.single-product__left .single-product__information{
        display: none;
        margin-top: 20px;
    }
    .single-product__information_mobile{
        display: none;
    }
.modal-product__item .single-product__about li{
    font-size: 12px;
}
.modal_product{
    max-width: 1200px !important;
}

.modal-custom{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
     max-width: 1200px;
    width: 100%;
    opacity: 0;
    z-index: -1;

    transition: all 0.32s linear;
}
.modal__wrap_container{
    padding: 30px;
}
.modal-custom .modal__wrap{
    transform: scale(0);
   
    z-index: 10;
    background: white;
    border-radius: 30px;
    transition: all 0.32s linear;
}
.modal-custom .modal__wrap .modal__close{
    top: 10px;
    right: 10px;
}
.modal-custom.active{
    opacity: 1;
    z-index: 11;
}
.modal-custom.active .modal__wrap{
    transform: scale(1);
}
.modal-custom-overtlay{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(25, 19, 20, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    z-index: -1;
    
}
.modal-custom-overtlay.active{
    opacity: 1;
    z-index: 10;
}
/* /modal */


/* btns-wrap */


.btns-wrap-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    display: none;
}

.btn-gray {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    padding: 13px 20px;
    border: none;
    border-radius: 15px;
    position: relative;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--bg-primary);
    
    width: 100%;
    height: 40px;
    display: flex;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.btn-gray:hover{
    background: var(--bg-primary);
    color: white
}
.btns-wrap{
    margin-top: 0px;
    width: 100%;
}
.btn-telegram{
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    padding: 13px 20px;
    border: none;
    border-radius: 15px;
    position: relative;
    font-weight: 400;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #27A7E7;
    width: 100%;
    color: #fff;
    height: 60px;
    display: flex;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.btn-telegram:hover{
    filter: brightness(110%);
}
.btn-telegram svg{
    width: 26px;
    height: 26px;
}
.btn-telegram span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-whatsapp{
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    padding: 13px 20px;
    border: none;
    border-radius: 15px;
    position: relative;
    font-weight: 400;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #01c5c8 22%, #046ef4 50%, #572dff 80%);
    width: 100%;
    color: #fff;
    height: 60px;
    display: flex;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.btn-whatsapp span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-whatsapp:hover{
    filter: brightness(112%);
}
.btns-wrap-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}
.btns-wrap-bottom a{
    font-size: 16px;
    height: 40px;
    color: #ffffff;
}
.btns-wrap-bottom svg{
    width: 26px;
    height: 26px;
}
.btns-wrap_container{
    max-width: 500px;
    width: 100%;
    margin: 0px auto;
    margin-top: 30px;
}

/* /btns-wrap */

/* saling */
.saling__title{
    margin-bottom: 20px;
}
.saling__title .title{
    margin-bottom: 0px;
}
.saling__subtitle{
    font-size: 24px;
    margin-bottom: 30px;
}
.saling__text p{
    margin: 0px;
    margin-bottom: 10px;
}
.saling__text p{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 20px;
    gap: 5px;
}
.saling__text p span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_saling{
    position: relative;
    overflow: hidden;
}

.section_saling_two .saling__left{
    max-width: 600px;
}
.section_saling_two .saling__right_photo{
    max-width: 710px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 70%;
}

.saling{
    position: relative;
    z-index: 1;
}
.saling__before{
    position: absolute;
    bottom: 100px;
    left: -200px;
    width: 100%;
    z-index: -1;
    transform: rotate(-15deg);
}
.saling__right{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.saling__right_photo{
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    width: 60%; */
}
.saling__right_photo img{
    object-fit: contain !important;
}
.saling__img{
max-width: 300px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
}
.saling__btn{
    max-width: 300px;
}
.saling__right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.saling__wrap{
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}
.saling__btn{
    margin-top: 30px;
}
/* /saling */


.booking-online{
    position: fixed;
    bottom: 0px;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
    padding: 12px;
    border-radius: 30px;
    background: #ffffff78;
    backdrop-filter: blur(3px);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.max-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #01c5c8 22%, #046ef4 50%, #572dff 80%);
    border-radius: 50%;
    padding: 5px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.product-form__select{
    display: flex;
    justify-content: center;
    /* background: var(--bg-secondary); */
    border-radius: 30px;
    padding: 5px;
    gap: 9px; 
}

.product-form__select-var{
background: var(--gold-gradient);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
  padding: 10px 17px;
    text-align: center;
    cursor: pointer;
    border-radius: 32px;
    color: #ffffff;
    /* transition: all 0.32s ease-in; */
}
.product-form__select-var:hover{
    /* transform: translateY(-2px); */
}
.product-form__content-item form{
    width: 100%;
}
.product-form__select-var.active{
background: white;
    color: var(--bg-primary);
    box-shadow: none;
    pointer-events: none;
}
.product-form__content-item{
    padding: 20px;
    display: none;
}
.product-form__select{

}
.product-form__content-item.active{
    display: flex;
    /* border: 1px solid #003e2f; */
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
.leisure__list{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: flex-start;
    gap: 20px;
}
.leisure__btn{
    margin-top: 30px;
}
.leisure__item{
   
    background: var(--bg-secondary);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #424242;
    z-index: 1;

    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* .leisure__item:nth-child(3) .leisure__photo{
    order: 2;
}
.leisure__item:nth-child(4) .leisure__photo{
    order: 2;
} */

.before-img{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 400px;
}
.before-img_leisure{
    top: unset;
    left: unset;
    bottom: 0px;
    right: 0px;
    /* filter: grayscale(1) brightness(1000%); */

}
.before-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.1;
}

.leisure__name{
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-white);
    min-height: 48px;
    height: 48px;
}
.leisure__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
    min-height: 216px;
}
.leisure__info{
    width: 100%;
    padding: 20px;
    height: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.leisure__photo{
    width: 0%;
    height: 220px;
    max-width: 100%;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.leisure__photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.03) saturate(1.04) brightness(0.98);
}

/* banya */
/* .banya_reverse .title{
    text-align: right;
    
} */
.banya_reverse .banya__text{
    max-width: 900px;
    width: 100%;
}
/* .banya__title{
    display: flex;
    justify-content: flex-end;
    align-items: center;
} */
.banya__text{
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
}
.banya__text strong{
    font-weight: 600;
}
.banya__text p{
    margin: 0px;
}
.banya__slider{
    position: relative;
    overflow: hidden;
}
.banya__item img{
    border-radius: 20px;
    height: 450px;
    width: 100%;
    object-fit: cover;
}

/* /banya */


/* swiper */
.swiper-button-next{
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #292929;
    width: 40px;
    min-width: 40px;
    height: 40px;
    background:#ffffff;
    border-radius: 50%;
}
.swiper-button-next:after{
    display: none;
}
.swiper-button-prev{
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #292929;
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
}
.swiper-button-prev:after{
    display: none;
}
/* /swiper */

/* house */
.house__card {
display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.house__right iframe{
    border-radius: 20px !important;
}
.house__text{
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 30px;
}
.house__list span {
    font-size: 36px;
    line-height: 36px;
    font-weight: 900;
    color:  #00d07d;
}

.house__list p {
    margin: 0px auto;
    font-size: 18px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.house__subtext{
        font-size: 20px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 600;
}
.house__item {
    display: grid;
    grid-template-columns: 60px auto;
}
.house__btn{
    margin-top: 30px;
    max-width: 300px !important;
    width: 100%;
}
.house__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-gap:15px;
}

.house__subtitle {
    margin-bottom: 30px;
    font-size: 50px;
    color: var(--text-main);
    margin-top: 0px;
}
.house__right{}
.house__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.house__right{
    max-width: 650px;
    height: 500px;
    width: 100%;
}
.house__right iframe{
    width: 100%;
    height: 100%;
}
/* /house */
.s-message{display:none}



@media(max-width: 1450px){
    .about__imgs{
        max-width: 550px;
    }
    .footer__nav ul{
        gap: 30px;
    }
    .features-main__bg{
        height: 700px;
    }
}

@media(max-width: 1300px){
    .about__title .title{
        font-size: 30px;
    }
    .about__title p:last-child{
        font-size: 24px;
    }
    .features__list{
        grid-template-columns: repeat(3, 1fr);
    }
    .ml_wrapper{
        right: 10px;
        bottom: 10px;
    }
    .faq__img{
        min-width: 500px;
    }
    .hero__title span{
        font-size: 122px;
    }
    /* .hero__subtitle{
        font-size: 40px;
    }
    .hero__title h1{
        font-size: 28px;
    } */

   .hero__subtitle_small {
        font-size: 20px;
    }
    .hero__title_big h1 {
        font-size: 32px;
    }
    .saling__subtitle{
        font-size: 22px;
    }
    .saling__left{
        min-width: 560px;
        margin-right: 30px;
    }
}

@media(max-width: 1280px) {
    .header__place{
        max-width: 300px;
    }
    .header__contact a{
        font-size: 16px;
    }
    .about__imgs{
        max-width: 450px;
    }
    .hero__features{
        font-size: 20px;
    }
    .footer .container{
        flex-direction: column;
        gap: 20px;
    }
    .copy{
        margin-top: 30px;
    }
    .contact__left{
        margin-right: 60px; 
    }
    .house__left{
        max-width: 620px;
        margin-right: 30px; 
    }
    .leisure__list{
        grid-template-columns: repeat(3, 1fr);
    }
    .living__right{
        min-width: 440px;
        max-width: 440px;
        height: 300px;
    }
}

@media(max-width: 1180px){
    .features-main__text{
        font-size: 18px;
    }
    .header__end{
        gap: 10px;
    }
    .header__contact a{
        font-size: 16px;
    }
    .header__place{
        max-width: 220px;
    }
}
@media(max-width: 1080px) {
    
    .hero{
        padding: 20px;
        height: unset;
    }
    .product-form__select{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .about__title .title{
        font-size: 26px;
    }
    .about__title p:last-child{
        font-size: 20px;
    }
    .booking-online{
        left: 0px;
        bottom: 0px;
        border-top-left-radius: 0px;
        transform: translateX(0px);

    }
    .header-mobile__wrap .header__contact .phone{
        display: flex;
        margin-top: 20px;
    }
    .header-mobile__wrap .header__place{
        display: flex;
        margin-left: 0px;
        margin-top: 20px;
    }
    .modal-product__container{
        padding: 30px;
    }
    .modal-product__btns{
        position: unset;
    }
    .features-main{
        margin-top: -20px;
    }
    .see__tour{
        font-size: 12px;
    }
    
    .see__tour-img{
        width: 80px;
    }
    .hero__before:before{
        bottom: 75px;
    }
    .saling__left{
        min-width: unset;
    }
    /* .detail-product__open-full{
        position: absolute;
        bottom: -10px;
        left: 0px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        cursor: pointer;
        font-size: 16px;
        padding-bottom: 14px;
        font-weight: 600;
        color: var(--gold-primary);
        height: 120px;
        background: linear-gradient(0deg, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.2) 60%, rgb(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0) 100%);
    } */
    /* .product-info__content_full{
        height: 400px;
        overflow: hidden;
    } */
    .about__text{
        font-size: 16px;
    }
    .about__imgs {
        max-width: 400px;
    }
    .header.active .header__top{
        height: 60px;
        padding: 0px;
        transform: scaleY(1);
    }


    .hero__features-item svg{
        width: 28px;
        height: 28px;
    }
    .hero__features{
        font-size: 16px;
    }
    .modal-product__btns{
        max-width: 100%;
    }
    .blog__slider .blog__arrows{
        display: flex;
        top: 160px;
    }
    .blog__name{
        min-height: 42px;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .tpl-10 .blog__list{
        margin: 0px;
    }
    .modal-custom{
        max-height: 90vh;
        height: 100%;
    }
    .modal-custom.active .modal__wrap{
        overflow-y: auto;
        overflow-x: hidden;
        height: 100%;
    }
    .modal-product__gallery{
        max-width: 900px;
        min-width: unset;
    }
    .modal-product__container{
        justify-content: flex-start;
        align-items: flex-start;
    }
    .modal-product__item{
        flex-direction: column;
        width: 100%;
    }
    .modal-product__left{
        width: 100%;
    }
    .submenu:before{
        display: none;
    }
    .single-about__list{
        grid-template-columns: repeat(2, 1fr);
        
    }
    .features__list .slick-slide{
        margin: 0px 10px;
    }
    .features__list{
        margin: 0px -10px;
    }

    .blog__list .slick-slide{
        margin: 0px 10px;
    }
    .blog__list{
        margin: 0px -10px;
    }
    .section_breadcrumbs{
        padding-top: 100px
    }
    .tpl-7 .single-product__form{
        display: none;
    }
    .single-product__form_mobile{
        display: block !important;
        margin-top: 20px;
    }
    .single-product .form__btn{
        margin: 0px auto;
    }
    .submenu-link{
        justify-content: flex-start;
    }
    .header__nav ul.submenu{
        background: unset;
    }
    .header__nav .submenu{
        opacity: 1;
        transform: scale(1);
        position: unset;
        box-shadow: none;
        border-left: 1px solid #f5f5f5;
        border-radius: 0px !important;
        padding: 10px;
        padding-left: 10px;

    }
    .header-mobile{
        display: flex;
        position: fixed;
        top: 105px;
        left: 30px;
        width: calc(100% - 60px);
        height: auto;
        background: #ffffff;
        z-index: -1;
        opacity: 0;
        overflow-y: auto;
        border-radius: 20px;
        -webkit-backdrop-filter: blur(2px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(7px);
        background: rgba(0, 0, 0, 0.7);
        transform-origin: top center;
    }
    .header-mobile.open{
        opacity: 1;
        z-index: 9;
        transform: translateX(0%);
    }
    .header-mobile__burger{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header-mobile .header__bottom{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 0px;
        padding: 0px;
        padding: 30px 0px;
    }

    .header-mobile .header__bottom .header__nav{
        padding: 0px;
    }
    .header-mobile .header__bottom .topmenu{  
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .header-mobile .header__top{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    .hero__header_top{
        margin-bottom: 0px;
    }
    .hero__header_bottom{
        display: none;
    }
    .header__place{
        display: none;
    }
    .header__contact .phone{
        display: none;
    }

    /* .about__title .title br{
        display: none;
    } */
    .about__title p:last-child{
        max-width: 530px;
    }
    .features__list{
        display: block;
    }
    .section_features:before{
        width: 400px;
        height: 400px;
        left: 0px;
        top: 0px;
    }

    .features__arrows{
        display: flex;
    }


    .header__top{
        padding-bottom: 0px;
        margin-bottom: 0px;
        padding-top: 0px;
        border-bottom: unset;
    }
    .header__bottom{
        display: none;
    }


    .header-mobile__burger{
        position: relative;
        width: 46px;
        height: 46px;
        min-width: 46px;
        max-width: 46px;
    }
    
    .header-mobile__burger .header__icon{
        position: absolute;
        top: 50%;
        width: 100%;
        height: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.2s linear;
    }
    .header__icon_close svg{
        transform: rotate(45deg);
    }
    .header-mobile__burger .header__icon_open{
        opacity: 1;
    }
    .header-mobile__burger .header__icon_close{
        opacity: 0;
    }
    .header-mobile__burger.active .header__icon_close{
        opacity: 1;
    }
    .header-mobile__burger.active .header__icon_open{
        opacity: 0;
    }
    .section_hero{

        padding-top: 0px;
    }
    .header .header__contact{
        display: none;
    }

    .submenu-link span:last-child{
        display: none;
    }
    .btns-wrap-top{
        display: flex;
        margin-top: 10px;
    }
    .single-product__form form input.button{
        max-width: 100%;
    }
    .section_hero{
        padding-top: 110px;
    }
    .house__subtitle{
        font-size: 40px;
    }
    .house__text{
        margin-bottom: 0px;
    }
    .house__left{
        max-width: 500px;
    }
    .faq__list{
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .faq__item{
        border-radius: 20px;
    }
}
@media(max-width: 1024px){
    .about__info {
        max-width: 100%;
        width: 100%;
    }
        .about__imgs {
        max-width: 100%;
        width: 100%;
    }
    .service__list{
        grid-template-columns: repeat(1, 1fr);
    }
    .service__name{
        text-align: center;
        padding: 10px 20px;
    }
    .catalog{
        grid-template-columns: repeat(1, 1fr);
    }
    .catalog-title h2.title{
        font-size: 26px;
    }
    .catalog-cat{
        margin-bottom: 60px;
    }
}
@media(max-width: 950px){
    .header-mobile{
        width: calc(100% - 30px);
        left: 15px;
    }
    .house__left{
        max-width: 100%;
        min-width: unset;
    }
    .house__right{
        max-width: 100%;
        margin-top: 30px;
    }
    .living__wrap{
        padding: 20px;
    }
    .living_reverse .living__left{
        margin-left: 0px;
    }
    .living__right{
        order: -1;
        max-width: 100%;
        min-width: unset;
        height: auto;
        aspect-ratio: 16/9;
        margin: 0px;
        margin-bottom: 20px;
    }
    .living__wrap{
        flex-direction: column;
    }
    .product-list{
        grid-template-columns: repeat(1,1fr);
    }
    .section_detail{
        padding-top: 0px;
    }
    .single-product__information_mobile{
        display: block;
    }
    .faq-fast__list{
        grid-template-columns: repeat(1, 1fr);
    }
    .hero__before:before{
        bottom: 75px;
    }
    .saling__subtitle{
        font-size: 18px;
    }
    .saling__text p{
        font-size: 16px;
    }
    .saling__text p svg{
        width: 24px;
        height: 24px;
    }
    .features-main__list{
        grid-template-columns: repeat(2, 1fr);
    }
    .single-product__left .single-product__information{
        display: flex;
        margin-top: 20px;
    }
    .tpl-7 .single-prdocut__right .single-product__information{
        display: none;
    }
    .hero__features-item{
        justify-content: flex-start;
    }
    .hero__features-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .modal-custom .single-product__features{
        margin-bottom: 20px;
    }
    .ferm-shop__content{
        flex-direction: column;
    }

    .ferm-shop__photos{
        width: 100%;
        max-width: 100%;
          min-width: unset;
          order: -1;
    }
    .single-product__features{
        max-width: 100%;
    }
    .single-prdocut__right{
        min-width: unset;
        max-width: unset;
    }
    .tpl-7 .single-prdocut__right{
        min-width: unset;
        max-width: unset;
        display: none;
    }
    .single-product{
        flex-direction: column;
    }
    .single-product__left{
        width: 100%;
    }
    .single-product__right{
        flex-direction: column;
    }

    .gallery__grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery__item:nth-child(1) {
        grid-column: 1 / 3;
    }
    .gallery__item:nth-child(7) {
        grid-column: 2 / 4;
    }

    .gallery__item:nth-child(10) {
        grid-column: 3;
    }
    .gallery__item:nth-child(16) {
        grid-column: 3;
    }
    .gallery__item:nth-child(17) {
        grid-column: 1 / 3;
    }
     .gallery__item:nth-child(20) {
        grid-column: 2 / 4;
    }
    

    .about__left{
        display: flex;
        flex-direction: column;
    }
    .about__imgs{
        max-width: 100%;
        width: 100%;
    }
    .about__info{
        max-width: 100%;
        width: 100%;
    }

    .features__list{
        grid-template-columns: repeat(2, 1fr);
    }

    .faq__wrap{
        flex-direction: column;
        gap: 10px;
    }
    .faq__img{
        max-width: 100%;
        width: 100%;
    }

    .contact__wrap{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .contact__left{
        margin-right: 0px;
        max-width: 100%;
        width: 100%;
    }
    .contact__right{
        max-width: 100%;
        width: 100%;
        margin-top: 20px;
    }
    .footer__nav ul{
        flex-wrap: wrap;
    }
    
    .copy__wrapper{
        flex-wrap: wrap;
        gap: 10px;
    }
    .container{
        padding: 0px 15px;
    }
    .title{
        font-size: 28px;
        margin-bottom: 20px;
    }
    .blog__title{
        margin-bottom: 20px;
    }
    .hero__title{
        margin-bottom: 0px;
    }
    .product-info__left .before{
        right: 10%;
        width: 300px;
        height: 300px;
    }
    .house__card{
        flex-direction: column;
    }
    .sale__title{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .sale__right{
        margin-top: 20px;
    }
}


@media(max-width: 768px){
    .saling__before{
        bottom: 300px;
    }
    .saling__left{
        max-width: 100%;
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }
    .saling__btn{
        margin-top: 20px;
    }
    .saling__subtitle{
        margin-bottom: 20px;
    }
    .saling__right{
        max-width: 100%;
    }
    .saling__img{
        max-width: 500px;
        height: 280px;
    }
    .saling__wrap{
        flex-direction: column;
    }
    .hero__previewtitle{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .hero__title h1{
        font-size: 30px;
        margin-bottom: 20px;
    }
    .hero__subtitle{
        font-size: 20px;
    }
    .hero__btns{
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }
    .blog__list{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .footer__logo{
        max-width: 300px;
        width: 100%;
    }
    .footer__logo img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .copy__link:nth-child(1){
        order: 3;
    }
    .copy__link:nth-child(2){
        order: 2;
    }
    .copy__link:nth-child(3){
        order: 1;
    }

    .faq__img{
        min-width: unset;
        aspect-ratio: 16 / 9;
        height: unset;
    }
    .faq__name svg{
        width: 20px;
        height: 20px;
    }
    .faq__answer{
        padding: 20px;
        padding-top: 0px;
        font-size: 14px;
        color: var(--text-muted);
    }
    .faq__name span:last-child{
        right: 10px;
    }
    .faq__item h4{
        font-size: 16px;
    }
    .faq__name{
        padding: 20px;
        padding-right: 30px;
    }


    .blog__title{
        align-items: flex-end;
    }
    .blog__name{
        font-size: 16px;
        min-height: 36px;
    }

    .blog__text{
        font-size: 14px;
        min-height: 72px;
    }
    .blog__img{
        height: 200px;
    }

    .blog__all svg{
        width: 16px;
        height: 16px;
    }

    .gallery__item img{
        height: 150px;
    }
    .gallery__grid{
        gap: 5px;
    }
}

@media(max-width: 680px){
    .living__title .title{
        line-height: 1;
        
    }
    .house__subtitle{
        font-size: 28px;
    }
    .house__card{
        padding: 20px;
        border-radius: 20px;
    }
    .banya__text{
        font-size: 16px;
    }
    .living__wrap{
        border-radius: 20px;
    }
    .living__right{
        border-radius: 15px;
    }
    .living__text{
        font-size: 16px;
    }
    .swiper-pagination{
        gap: 3px;
    }
    .hero__title span{
        font-size: 20vw;
    }
    .leisure__list{
        grid-template-columns: repeat(1, 1fr);
    }
    .catalog-nav{
        max-width: 370px;
    }
    .hero__btns-item{
        max-width: 250px;
    }
    .hero__btns-item span{
        font-size: 12px;
    }
    .features-main__bg{
        height: 300px;
    }
    .features-main__bg:before{
        height: 100px;
        top: -20px;
    }
    .features-main__bg:after{
        height: 100px;
    }
    .container{
        padding: 0px 10px;
    }
     .features-main{
        margin-top: 0px;
    }
    .faq-fast__icon{
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .faq-fast__subtitle{
        font-size: 20px;
    }
    .faq-fast__item{
        flex-direction: column;
    }
    .faq-fast__info h5{
        font-size: 18px;
        font-weight: 500;
    }
    .single-product__price-list b{
        font-size: 14px;;
    }
    .single-product__price-list span{
        font-size: 14px;
    }
    .single-product__title-green{
        font-size: 20px;
        padding: 5px 15px;
        top: -15px;
    }
    
    .hero__before:before{
        bottom: 38px;
    }
    .blog__title{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        justify-content: center;
    }
    .features-main__list{
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .features-main__item{
        height: 260px;
    }
    .single-product__gallery .product-carousel__arrows{
        top: unset;
        bottom: 105px;
        left: 5px;
        width: calc(100% - 10px);
    }
    
    .single-product__gallery .swiper-pagination{
        bottom: 10px !important;
    }
    .single-product__gallery-item img{
        height: 120px;
    }
    .single-product__gallery-images{
        gap: 10px;
        grid-template-columns: repeat(3, 1fr);
    }
    .header.active .header__top{
        height: 44px;
        padding: 0px;
    }
    .header-mobile .header__bottom{
        padding: 30px;
    }
    .header-mobile .container{
        padding: 0px;
    }
    /* .header-mobile .header__bottom{
        margin-top: 20px;
    } */
    .header .header__top{
        height: 44px;
    }
    .header-mobile__wrap .header__top{
        height: 56px;
    }
    .hero .slick-dots{
        bottom: 140px;
    }
    .hero__before{
        height: 40px;
    }
    .hero__features-container{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;
    }
    .private-policy label{
        font-size: 10px;
        text-align: left;
    }
    .modal-custom .modal__close{
        background: white;
        border-radius: 50%;
        z-index: 2;
    }
    .modal-product__btns .button{
        max-width: 100%;
        width: 100%;
    }
    .modal-product__container{
        padding: 20px;
    }
    .modal-product__btns{
        flex-direction: column;
        gap: 10px;
    }
    .modal-product__gallery img{
        height: 240px;
    }
    .modal-product__gallery .fancybox{
        height: 240px;
    }
    .modal-product__gallery .slick-slide{
        height: 240px;
    }
    .service__img{
        height: 250px;
    }
    .o-nashey-kompanii .hero{
        height: 100%;
    }
    .single-about .features__img{
        width: 100px;
        height: 100px;
        padding: 20px;
    }

     .single-about__list{
        grid-template-columns: repeat(1, 1fr);
        
    }
    .about__title .title{
        font-size: 26px;
    }
    .about__title{
        margin-bottom: 20px;
    }
    .about__title p:last-child{
        font-size: 20px;
    }
    .modal__title{
        font-size: 22px;
    }
    .single-product__features span{
        font-size: 12px;
    }
    .product-info__right{
        padding: 20px;
    }
    .single-product__form h3{
        font-size: 24px;
    }
    .single-product__form h3{
        font-size: 22px;
    }
    .single-product__about li{
        font-size: 12px;
    }
    .dot{
        width: 7px;
        height: 7px;
        max-width: 7px;
        min-width: 7px;
    }
    .single-product__gallery .product-carousel-wrapper .product-carousel-detail img{
        height: 310px;
        aspect-ratio: unset;
    }
    .single-product__gallery .product-item__icons{
        bottom: 22px;
    }
    .single-product__gallery .product-carousel-wrapper{
        aspect-ratio: unset;
        height: 310px;
    }
    .single-product__gallery .product-item__icons div{
        min-width: 65px;
        border-radius: 10px;
        padding: 5px;
    }
    .single-product__gallery .product-item__icons{
        gap: 5px;
    }

    .single-product__gallery .product-item__icons span{
        font-size: 12px;
    }
    .modal-custom .product-carousel__arrows{
        left:5px;
        width: calc(100% - 10px);
        top: unset;
        bottom: 100px;
    }
    .modal-custom .slick-dots{
        bottom: 10px;
    }
    .modal-custom .product-item__icons{
        bottom: 20px;
    }
    .modal-custom .product-item__icons div{
        min-width: 65px;
        border-radius: 10px;
        padding: 5px;
    }
    .modal-custom .product-item__icons{
        gap: 5px;
    }
    .modal-custom .product-item__icons span{
        font-size: 11px;
    }
    .product-info__left{
        padding: 20px;
        border-radius: 20px;
    }
    .product-info__left .before{
        width: 150px;
        height: 150px;
        right: 27%;
    }
    .copy{
        margin-bottom: 100px;
    }
    .single-product__about{
        padding: 20px;
    }
    .product-info__content{
        font-size: 14px;
    }
    .product-info__content li:before{
        top: -2px;
        left: -25px;
    }
    .product-info__right{
        min-width: unset
    }
    .header__end{
        gap: 5px;
    }
    .header__icons{
        gap: 5px;
    }
    .header{
        padding: 6px 0px;
    }
    .header-mobile__wrap .header__top{
        padding: 6px 0px;
    }
    .header__top .navbar__logo{
        max-width: 140px;
    }
    .header .header__icons{
        display: flex;
        margin-left: 10px;
    }
    .header-mobile__wrap .header__icons{
        margin-left: 10px;
    }
    .header .header__btn{
        display: none;
    }
    .section{
        padding: 30px 0px;
    }
    .section_breadcrumbs{
        padding-top: 90px;
    }
    .default__content{
        font-size: 16px;
    }
    .breadcrumbs{
        font-size: 12px;
    }
    .about__imgs{
        gap: 5px;
    }
    .about__right{
        flex-direction: column;
        gap: 10px;
    }
    .video-wrap{
        height: unset;
        aspect-ratio: 16/9;
    }
    .video__play{
        width: 110px;
        height: 110px;
    }

    .hero__title h1{
        font-size: 24px;
    }
    /* .hero__title span{
        font-size: 86px;
    } */
    .hero__subtitle{
        font-size: 20px;
    }



    .product-item__info{
        gap: 5px;
        max-width: 160px;
    }
    .product-item__name{
        font-size: 12px;
    }
    .product-item__price{
        font-size: 12px;
    }

    .product-item__icons{
        max-width: 300px;
        gap: 10px;
        font-size: 12px;
    }
    .product-item__icons svg{
        width: 24px;
        height: 24px;
    }
    .slick-dots button {
        width: 10px;
        height: 4px;
        max-width: 10px;
        min-width: 10px;
        margin: 0px;
        padding: 0px;
    }
    .slick-dots{
        gap: 3px;
    }
    .product-item__img{
        aspect-ratio: unset;
        height: 240px;
    }
    .product-item__img img{
        height: 240px;
        aspect-ratio: unset;
    }


    .contact__communication{
        font-size: 16px;
    }
    .contact__communication a svg{
        width: 24px;
        height: 24px;
    }
    .contact__place svg{
        width: 24px;
        height: 24px;
    }
    .contact__place{
        font-size: 16px;
    }
    .contact__time svg{
        width: 24px;
        height: 24px;
    }
    .contact__time{
        font-size: 16px;
    }
    .contact__requisites{
        font-size: 16px;
    }
    .contact__requisites svg{
        width: 24px;
        height: 24px;
    }

    .contact__right{
        height: 300px;
    }
    .hero__btns{
        gap: 10px;
        margin-top: 20px;
    }
    .hero__btns a{
        max-width: 250px;
        height: 40px;
    }

    .hero__previewtitle{
        font-size: 4.3vw;
    }
    .hero__subtitle{
        font-size: 18px;
    }
    .hero__header .header__btn .button{
        display: none;
    }
    .hero__header{
        padding: 6px 0px;
    }
    .hero__header .navbar__logo{
        max-width: 140px;
    }
    .section_detail{
        padding-top: 0px;
    }
    .single-product__price-list{
        margin-top: 30px;
    }
    .product-info__right{
        margin-top: 30px;
    }
    .catalog-nav__link{
        font-size: 12px;
   
        padding: 5px 10px;
        height: 30px;
    }
    .catalog-nav a{
        max-width: 164px;
    }
        .section_hero{
        padding-top: 100px;
    }
    .header{
        top: 0px;
    }
    .header-mobile{
        top: 75px;
    }
    .header__wrap{
        border-radius: 20px;
        padding: 10px;
    }
    .hero{
        border-radius: 20px;
    }
    
    .contact{
        padding: 20px;
        border-radius: 20px;
    }
    .section_first{
        padding-top: 0px;
    }
}
@media(max-width: 500px){
    .banya__item img{
        height: 350px;
    }
    .product-form__select{
        display: flex;
        width: 100%;
        margin: 0px auto;
        grid-template-columns: unset;
        padding: 7px;
    }
    .product-form__select-var{
        width: 100%;
        font-size: 12px;
    }
    .about__title .title {
        font-size: 5.4vw;
    }
    .about__title p:last-child {
        font-size: 16px;
    }
}
@media(max-width: 390px){
    .sale__right{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .sale__name{
        font-size: 24px;
    }
    .sale__item{
        padding: 20px;
    }
    .sale__title{
        margin-bottom: 20px;
    }
    .sale__arrows{
        margin-left: 0px;
        margin-top: 10px;
    }
    .btns-wrap-top{
        flex-direction: column;
    }
    .btns-wrap-bottom{
        flex-direction: column;
    }
}
@media(max-width: 380px){
    .banya__item img{
        height: 300px;
    }
    .hero__title h1 {
        font-size: 6vw;
    }
    .hero__subtitle {
        font-size: 5vw;
    }
        .about__title p:last-child {
        max-width: 260px;
    }
    .catalog-nav{
        display: flex;
        gap: 10px;
        flex-direction: column;
        max-width: 190px;
        border-radius: 20px;
    }
    .section_catalog-nav{
        padding: 0px;
    }
}