
.clearfix:before, .clearfix:after {
    content: '';
    display: table;
}
.clearfix:after {
    clear: both;
}

*::-webkit-input-placeholder {
	color: #000;
	opacity: .8;
}

*:-moz-placeholder {
	color: #000;
	opacity: .8;
}
*::-moz-placeholder {
	color: #000;
	opacity: .8;
}
*:-ms-input-placeholder {
	color: #000;
	opacity: .8;
}

*{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body{
    width: 100%;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    background: #2b2b2b;
    position: relative;
    -webkit-font-smoothing: antialiased;

}

* {
  -webkit-tap-highlight-color: transparent;
}

.container{
    width: 100%;
    max-width: 1200px;
    min-width: 320px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hidden {
  display: none !important;
}

.label{
    display: block;
    margin-bottom: 1px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}

.label span{
    color: #998865;
}

.form-group{
    margin-bottom: 24px;
}

.agree{
    padding-top: 24px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    color: #fff;
}

.agree a{
    color: inherit;
}

input[type='text'],
input[type='password'],
input[type='search']{
    width: 100%;
    height: 42px;
    padding: 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    transition: .3s;
}

input[type='text']:focus,
input[type='password']:focus,
input[type='search']:focus{
    border-color: #998865;
}

textarea{    
    width: 100%;
    height: 120px;
    padding: 12px;
    
    resize: none;
}

input:focus{
    outline: none;
}

textarea:focus{
    outline: none;
}

.cols{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col{
    padding: 0 15px;
}

.btn{
    display: inline-block;
    font-family: 'Inter', sans-serif;
    border: medium none;
    background: transparent;
    cursor: pointer;
    transition: .3s;
}

.btn-border-white{
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 55px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}

.btn-border-white:before{
    content: "";
    width: calc(100% - 55px);
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.btn-border-white:after{
    content: "";
    width: 1px;
    height: calc(100% - 10px);
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
}

.btn-border-white:hover{
    color: #998865;
    background: #fff;
}

.btn-border-white:active{
    color: #998865;
    background: #fff;
}

.btn-white{
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 55px;
    background: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: #998865;
    position: relative;
}


.btn-white:hover{
    background: #998865;
    color: #fff;
}

.btn-white:active{
    background: #998865;
    color: #fff;
}

.btn-white .arrow{
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    margin-right: 10px;
    background: url(../img/icons/arrow_right_gold.svg) center no-repeat;
}

.btn-white:hover .arrow{
    background-image: url(../img/icons/arrow_right_white.svg);
}

.btn-white:active .arrow{
    background-image: url(../img/icons/arrow_right_white.svg);
}

button:focus{
    outline: none;
}

.slick-dots{
    position: absolute;
    text-align: center;
    bottom: 25px;    
    width: 100%;
    margin: 0 auto !important;
    padding: 0 !important;
}

.slick-dots li{
    width: auto;
    height: auto;
    margin: 0 6px!important;
    padding: 0!important;
}

.slick-dots li:before{
    display: none;
}

.slick-dots li button{
    width: 15px;
    height: 15px;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #00728A;
    opacity: 1;
    text-indent: -9999px;
    transition: .3s;
}

.slick-dots li.slick-active button{
    background-color: #00728A;
}

.slick-prev, 
.slick-next{
    width: 65px;
    height: 65px;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    border-radius: 0;
    background-position: center !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
}

.slick-prev:before,
.slick-next:before{
    content: none;
    
}

.slick-prev{
    left: 0;
    background-image: url(../img/prev.svg)!important;
}

.slick-prev:hover{
    opacity: .8;
}

.slick-next{
    right: 0;
    background-image: url(../img/next.svg)!important;

}

.slick-next:hover{
    opacity: .8;
}

.slick-dotted.slick-slider{
    margin-bottom: 0;
}



.swiper{
    width: 100%;
    
}

.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after{
    display: none;
}

.swiper-button-next:after, 
.swiper-rtl .swiper-button-prev:after{
    display: none;
}

.swiper-button-next,
.swiper-button-prev{
    outline: none;
    box-shadow: none;
    transition: .3s;
}

.swiper-slide *:focus{
    outline: none;
}

.swiper-button-next{
    background: url(../img/icons/next.svg) center no-repeat;
    right: 0;
    left: auto;
}

.swiper-button-next:hover{
    background-image: url(../img/icons/next_h.svg);
}

.swiper-button-prev{
    background: url(../img/icons/prev.svg) center no-repeat;
    left: 0;
    right: auto;
}

.swiper-button-prev:hover{
    background-image: url(../img/icons/prev_h.svg);
}

.arrow-center{
    width: 116px;
    height: 52px;
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.arrow-center .swiper-button-next,
.arrow-center .swiper-button-prev{
    width: 52px;
    height: 52px;
    top: 0;
    margin: 0;
}

.arrow-center .swiper-button-next{
    right: 0;
    left: auto;
}

.arrow-center .swiper-button-prev{
    left: 0;
    right: auto;
}

.arrow-append{
    width: 56px;
    height: 22px;
    position: relative;
}

.arrow-append .swiper-button-next,
.arrow-append .swiper-button-prev{
    width: 22px;
    height: 22px;
    top: 0;
    margin: 0;
}

.arrow-append .swiper-button-next{
    background: url(../img/icons/arrow_right_white.svg) center no-repeat;
    right: 0;
    left: auto;
}

.arrow-append.black .swiper-button-next{
    background-image: url(../img/icons/arrow_right.svg);
}

.arrow-append .swiper-button-next:hover{
    opacity: .8;
}

.arrow-append .swiper-button-prev{
    background: url(../img/icons/arrow_left_white.svg) center no-repeat;
    left: 0;
    right: auto;
}

.arrow-append.black .swiper-button-prev{
    background-image: url(../img/icons/arrow_left.svg);
}

.arrow-append .swiper-button-prev:hover{
    opacity: .8;
}

.w20{
    width: 20%;
}

.w25{
    width: 25%;
}

.w33{
    width: 33.33%;
}

.w50{
    width: 50%;
}

.w66{
    width: 66.66%;
}

.w100{
    width: 100%;
}

.overflow-hidden{
    overflow: hidden;
}

.wrap{
    position: relative;
    overflow: hidden;
}

.section{
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section.top-30{
    padding-top: 30px;
}

.section.bot-0{
    padding-bottom: 0;
}

.section.white{
    background: #fff;
}

.title-block{
    margin-bottom: 24px;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
}

.title-block.black{
    color: #242424;
}

.go-to{
    margin-bottom: 35px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #998865;
}

.go-to a{
    display: inline-flex;
    align-items: center;
    color: inherit;
    transition: .3s;
}

.go-to a:hover{

}

.go-to i{
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    margin-left: 12px;
    background: url(../img/icons/arrow_right_gold.svg) center no-repeat;
    transition: .3s;
}

.go-to a:hover i{
    transform: translateX(50px);
    opacity: 0;
}

.b-head{
    margin-bottom: 42px;
}

.b-head .cols{
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.b-head .cols.start{
    align-items: flex-start;
}

.b-head .col{

}

.b-head .col.left{
    width: 415px;
    flex-shrink: 0;
}

.b-head .col.right{
    flex-grow: 1;
}

.b-head .title-block,
.b-head .go-to{
    margin-bottom: 0;
}

.b-head p{
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}

.flex-bot{
    padding-top: 40px;
    display: flex;
    justify-content: center;
}

/**HEADER**/
.header{
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 12;
}

.header{
    -webkit-animation-name: pointer;
    animation-name: pointer;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-fill-mode: both;
}

@keyframes pointer {
    0% {
       pointer-events: none;

    }
    100% {
        pointer-events: auto;
    }
}

.header_inner{
    pointer-events: auto;
    position: relative;
    animation: none;
}

.header:before{
    content: "";
    width: 100%;
    height: 100%;
    /*backdrop-filter: blur(40px);*/
    /*background: rgba(43, 43, 43, 0.04);*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /*animation: blur 10s linear infinite;*/
    transition: 1.2s;
}

.header:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: 1.2s;
    opacity: 0;
}

.header.blur:before{
    -webkit-animation-name: blur;
    animation-name: blur;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-fill-mode: both;
}

@keyframes blur {
    0% {
        backdrop-filter: blur(0px);
        background: rgba(43, 43, 43, 0);

    }
    100% {
        background: rgba(43, 43, 43, 0.04);
        backdrop-filter: blur(40px);
    }
}

.header_inner:before{
    display: none;
}

.header__top{
    height: 78px;
    padding-top: 18px;
    padding-bottom: 18px;
    position: relative;
    z-index: 5;
}

.header__top:before{
    content: "";
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 49.71%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header_inner .header__top:before{
    width: 100%;
}

.header__top.flat:before{
    width: 0;
    -webkit-animation-name: flat;
    animation-name: flat;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes flat {
    0% {
       width: 0; 

    }
    100% {
        width: 100%;
    }
}

.header__top .container{
    height: 100%;
}

.header__top .cols{
    height: 100%;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.header__top .col_right{
    margin-left: auto;
}

.header .logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.header .logo img{
    width: 212px;
    display: block;
}

.header__top .items{
    display: flex;
    align-items: center;
    margin: 0 -12px;
}

.header__top .item{
    padding: 0 12px;
}

.enroll{
    position: relative;
}

.btn-enroll{
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
}

.enroll-btn i{
    margin-left: 12px;
}

.i-plus-white{
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    background: url(../img/icons/plus_white.svg) center no-repeat;
}

.enroll-drop{
    width: 340px;
    display: none;
    padding-top: 112px;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
}

.enroll:hover .enroll-drop{
    display: block;
}

.enroll-drop__item{
    margin-bottom: 18px;
}

.enroll-drop__item a{
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(40px);
    background: rgba(43, 43, 43, 0.04);
    transition: .3s;
}

.enroll-drop__item.dark a{
    color: #2b2b2b;
}

.enroll-drop__item a:hover{
    backdrop-filter: blur(12px);
}

.enroll-drop__item a i{
    margin-right: 10px;
}

.enroll-drop__item.dark a i{
    filter: brightness(10%);
}

.i-wh{
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
    background: url(../img/footer/wh.svg) center no-repeat;
    background-size: contain;
}

.i-max{
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
    background: url(../img/footer/max.svg) center no-repeat;
    background-size: contain;
}

.i-tg{
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
    background: url(../img/footer/tg.svg) center no-repeat;
    background-size: contain;
}

.i-vk{
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
    background: url(../img/footer/vk.svg) center no-repeat;
    background-size: contain;
}

.header__bottom{
    position: relative;
    z-index: 3;
}

.header__bottom .container{
    position: static;
}

.stable{
    /*animation-name: stable;
    animation-duration: 1s;
    animation-delay: 1.2s;
    animation-fill-mode: both;*/
    animation: stable 1s 1.2s both;
    opacity: 1;
}

.no-animation {
  animation: none !important;
}


@keyframes stable {
    0% {
       opacity: 0;

    }
    100%{
        opacity: 1;
    }
}



.nav{

}

.nav > ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0 -8px;
}

.nav > ul > li{
    padding: 0 8px;
    position: relative;
}

.nav > ul > li > a{
    display: flex;
    align-items: center;
    padding: 24px 0 24px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    transition: .3s;
}

.nav > ul > li:hover > a{
    color: #998865;
}

.nav > ul > li.active > a{
    color: #998865;
}

.nav > ul > li > a i{
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    margin-left: 4px;
    background: url(../img/icons/chevron-right.svg) center no-repeat;
    transition: .3s;
}

.nav > ul > li:hover > a i{
    background-image: url(../img/icons/chevron-right_gold.svg);
}

.nav ul ul{
    width: 300px;
    display: none;
    padding-top: 20px;
    padding-bottom: 36px;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
}

.nav ul ul:before{
    content: "";
    width: 300vw;
    height: 100%;
    backdrop-filter: blur(40px);
    background: rgba(43, 43, 43, 0.04);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    transition: 1.2s;
    will-change: transform;
}

.nav > ul > li:hover > ul{
    display: block;
}

.nav ul ul li{
    position: relative;
    z-index: 3;
}

.nav ul ul li a{
    min-height: 48px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    transition: .3s;
}

.nav ul ul li a:hover{
    color: #998865;
}

.nav ul ul li.active a{
    color: #998865;
}

.phone-mob{
    width: 22px;
    height: 22px;
    display: block;
    background: url(../img/header/phone.svg) center no-repeat;
}

.burger{
    width: 22px;
    height: 22px;
    background: url(../img/header/burger_white.svg) center no-repeat;
    cursor: pointer;
}

.burger.active{
    background-image: url(../img/header/close_white.svg);
}

.menu-mob{
    width: 100%;
    display: none;
    padding-bottom: 12px;
    backdrop-filter: blur(40px);
    background: rgba(43, 43, 43, 0.04);
    position: absolute;
    overflow: auto;
    top: 100%;
    left: 0;
    z-index: 5;
}

.nav-mob{
    

}

.nav-mob ul{
    list-style: none;
}

.nav-mob ul li{
    position: relative;
}

.nav-mob ul li a{
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 10px 3px;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    transition: .3s;
}

.nav-mob ul li a i{
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    background: url(../img/icons/chevron-right.svg) center no-repeat;
    transform: rotate(-90deg);
}

.nav-mob ul li.active > a{
    color: #998865;
}

.nav-mob__level-2{
    display: none;
}

.nav-mob__level-3{
    display: none;
}

.level-back{
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 3px 10px;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}

.level-back i{
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    margin-right: 6px;
    background: url(../img/icons/arrow_left_white.svg) center no-repeat;
}

.mob-soc{

}

.mob-soc .sub{
    min-height: 38px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
}

.mob-soc__item{
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 3px 10px;
    font-weight: 300;
    font-size: 10px;
    line-height: 1.3;
    color: #fff;
}

.mob-soc__item img{
    width: 12px;
    display: block;
    margin-right: 6px;
}

/**INTRO**/
.intro{
    width: 100%;
    display: block;
    background: #636363;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.intro .pic{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
}

.intro .pic:before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #2b2b2b 0%, rgba(43, 43, 43, 0) 100%);
    /*background: url(../img/intro/overlay.svg) center no-repeat;*/
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.intro .pic_mob{
    display: none;
}

.intro .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: right center;
}

.intro .pic_mob img{
    object-position: center;
}

.intro video{
    width: 100%;
    height: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
    object-position: center;
}

.intro .overlay{
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #2b2b2b 0%, rgba(43, 43, 43, 0) 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.intro .container{
    position: relative;
    z-index: 7;
}

.intro .item{
    position: relative;
}

.intro .in{
    height: 880px;
    display: flex;
    align-items: flex-end;
    padding-top: 200px;
    padding-bottom: 100px;
}

.intro .vert{
    width: 100%;
}

.intro .title{
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fafafa;     
}

.intro .title span{
    width: 100%;
    max-width: 500px;
    display: inline-block;
    padding-bottom: 24px;
    position: relative;
}

.intro .title span:before{
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 49.71%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.intro p{
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.3;
    color: #fff;
}

.intro p span{
    color: #998865;
}

.intro .btn{
    width: 100%;
    max-width: 340px;
}

.blob{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background-image: radial-gradient(83.1% 50% at 16.9% 50%, rgb(153, 136, 101) 0%, rgb(153, 136, 101) 100%);
    filter: blur(80px);
    transition: all 250ms ease-out;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 5;
}


/**CONTENT**/
.content{
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.content h1{
    margin-bottom: 24px;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
}

.content__top{
    padding-top: 24px;
    padding-bottom: 24px;
    position: relative;
    z-index: 1;
}

.content__body{
    padding-top: 24px;
}

.breadcrumbs{
    
}

.breadcrumbs ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs ul li{
    padding-right: 35px;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
}

.breadcrumbs ul li:before{
    content: "/";
    color: #fff;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.breadcrumbs ul li:last-child:before{
    content: none;
}

.breadcrumbs ul li a{
    display: block;
    color: #fff;
}

/**STORY**/
.story{

}

.story .items{
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
}

.story .item{
    padding: 0 10px;
}

.story .item .in{
    width: 72px;
    cursor: pointer;
}

.story .item .pic{
    width: 72px;
    height: 72px;
    padding: 4px;
    border: 1px solid #998865;
    border-radius: 100%;
    overflow: hidden;
}

.story .item .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
}

.story .item .title{
    padding-top: 8px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    color: #fff;
}

/**ABOUT**/
.about{
    padding-bottom: 50px;
}

.about.p-l{
    padding-left: 210px;
}

.about .items{
    display: flex;
    gap: 100px;
}

.about .item{
    width: 50%;
}

.about p{
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}

.view{
    position: relative;
}

.view .slider-wrap{

}

.view .swiper-slide{
    width: 1200px;
    position: relative;
}

.view .pic{
    height: 560px;
    position: relative;
    z-index: 1;
}

.view .pic img{
    width: 100%;
    height: 100%;
    display: block;
}

.view .overlay{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 64px 24px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.view .overlay .vert{
    width: 100%;
}

.view .title{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
}

.fraction{
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100%;
}

.view .fraction{
    position: absolute;
    bottom: 32px;
    left: 50%;
    z-index: 3;
    transform: translateX(498px);
}

.fraction:before{
    content: "";
    width: 72px;
    height: 72px;
    border: 1px solid #fff;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/**SERV**/
.serv{

}

.serv .slider-wrap{
    margin-right: -50%;
}

.serv .swiper-slide{
    width: 372px;
    position: relative;
}

.serv .item{

}

.serv .item .in{
    height: 660px;
    position: relative;
}

.serv .item .pic{
    height: 100%;
    position: relative;
    z-index: 1;
}

.serv .item .pic:before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #2b2b2b 0%, rgba(43, 43, 43, 0) 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    transition: .3s;
}

.serv .item .in:hover .pic:before{
    opacity: 0;
}

.serv .item .pic:after{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #998865 0%, rgba(153, 136, 101, 0) 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    transition: .3s;
    opacity: 0;
}

.serv .item .in:hover .pic:after{
    opacity: 1;
}

.serv .item .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.serv .item .overlay{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 18px 18px 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.serv .item .top{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.serv .item .bottom{
    width: 100%;
}

.serv .item .title{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
}

.serv .item .title a{
    color: inherit;
}

.btn-up-white{
    width: 56px;
    height: 56px;
    display: block;
    flex-shrink: 0;
    background: transparent url(../img/icons/up_white.svg) center no-repeat;
    background-size: contain;
    cursor: pointer;
    transition: .3s;
}

.btn-up-white:hover,
.btn-up-white:active{
    background-image: url(../img/icons/up_gold.svg);

}

.serv .item .in:hover .btn-up-white{
    background-image: url(../img/icons/up_gold.svg);
    transform: translate(5px, -5px);
}

/**TEAM**/
.team{

}

.team .slider-wrap{
    margin-right: -50%;
}

.team .swiper-slide{
    width: 360px;
    position: relative;
}

.team .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.team .items .item{
    width: 33.33%;
    padding: 0 20px;
    margin-bottom: 60px;
}

.team .item{

}

.team .item .in{
    position: relative;
}

.team .item .pic{
    height: 476px;
    position: relative;
    z-index: 1;
}

.team .item .pic.big{
    height: 530px;
}

.team .item .pic:before{
    /*content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #2b2b2b 0%, rgba(43, 43, 43, 0) 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    transition: .3s;*/
}

.team .item .in:hover .pic:before{
    opacity: 0;
}

.team .item .pic:after{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #998865 0%, rgba(153, 136, 101, 0) 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    transition: .3s;
    opacity: 0;
}

.team .item .in:hover .pic:after{
    opacity: 1;
}

.team .item .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.team .item .bottom{
    padding: 24px 18px 0;
}

.team .item .top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.team .item .title{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    transition: .3s;
}

.team .item .in:hover .title{
    color: #998865;
}

.team .item .title a{
    color: inherit;
}

.team .item .in:hover .btn-up-white{
    background-image: url(../img/icons/up_gold.svg);
    transform: translate(5px, -10px);
}

.team .item p{
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    transition: .3s;
}

.team .item .in:hover p{
    color: #998865;
}

/**ACCII**/
.accii{

}

.accii .slider-wrap{
    margin-right: -50%;
}

.accii .swiper-slide{
    width: 372px;
    position: relative;
}

.accii .item{

}

.accii .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -11px;
}

.accii .items .item{
    width: 33.33%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 11px;
    margin-bottom: 22px;

}

.accii .item .in{
    height: 660px;
    position: relative;
}

.accii .item .pic{
    height: 100%;
    position: relative;
    z-index: 1;
}

.accii .item .pic:before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #2b2b2b 0%, rgba(43, 43, 43, 0) 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    transition: .3s;
}

.accii .item .in:hover .pic:before{
    opacity: 0;
}

.accii .item .pic:after{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #998865 0%, rgba(153, 136, 101, 0) 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    transition: .3s;
    opacity: 0;
}

.accii .item .in:hover .pic:after{
    opacity: 1;
}

.accii .item .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.accii .item .overlay{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 18px 18px 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.accii .item .top{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.accii .item .bottom{
    width: 100%;
}

.accii .item .title{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
}

.accii .item .title span{
    display: block;
    margin-top: 16px;
    font-weight: 300;
    font-size: 18px;
    text-transform: none;
}

.accii .item .title a{
    color: inherit;
}

.btn-up-white{
    width: 56px;
    height: 56px;
    display: block;
    background: transparent url(../img/icons/up_white.svg) center no-repeat;
    background-size: contain;
    cursor: pointer;
    transition: .3s;
}

.btn-up-white:hover,
.btn-up-white:active{
    background-image: url(../img/icons/up_gold.svg);
}

.accii .item .in:hover .btn-up-white{
    background-image: url(../img/icons/up_gold.svg);
    transform: translate(5px, -5px);
}

/**PRICE-LIST**/
.price-list{

}

.price-list__item{

}

.price-list__in{
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #AFAFAF;
    transition: .3s;
}

.price-list__in:hover{
    border-color: #998865;
}

.price-list__item .f{
    padding-right: 20px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    transition: .3s;
}

.price-list__in:hover .f{
    color: #998865;
}

.price-list__item .s{
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    transition: .3s;
    white-space: nowrap;
}

.price-list__in:hover .s{
    color: #998865;
}

/**ACTION**/
.action-section{
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.action .cols{
    margin: 0 -12px;
}

.action .col{
    width: 33.33%;
    padding: 0 12px;
}

.action__btn{
    width: 100%;
}

.sorting{

}

.sorting .slider-wrap{
    margin-right: 0;
    padding-bottom: 24px;
}

.sorting .swiper-slide{
    width: auto!important;
}

.sorting .arrow-append{
    margin-left: auto;
    margin-bottom: 24px;
    display: none;
}

.sorting .item{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    transition: .3s;
    white-space: nowrap;
}

.sorting .item:hover{
    color: #998865;
}

.sorting .item.active{
    color: #998865;
}

.sorting .item a{
    color: inherit;
    white-space: nowrap;
}

/**WELL**/
.well{
    width: 100%;
    display: block;
    background: #636363;
    position: relative;
    z-index: 3;
}

.well .pic{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.well .pic:before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #2b2b2b 0%, rgba(43, 43, 43, 0) 100%);
    /*background: url(../img/intro/overlay.svg) center no-repeat;*/
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.well .pic_mob{
    display: none;
}

.well .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: right center;
}

.well .pic_mob img{
    object-position: center;
}

.well .overlay{
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #2b2b2b 0%, rgba(43, 43, 43, 0) 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.well .container{
    position: relative;
    z-index: 5;
}

.well .item{
    position: relative;
}

.well .in{
    height: 670px;
    display: flex;
    align-items: flex-end;
    padding-top: 50px;
    padding-bottom: 100px;
}

.well .vert{
    width: 100%;
}

.well .title{
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fafafa;     
}

.well .title span{
    width: 100%;
    max-width: 500px;
    display: inline-block;
    padding-bottom: 24px;
    position: relative;
}

.well .title span:before{
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 49.71%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.well p{
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
}

.well p span{
    color: #998865;
}

.well .btn{
    width: 100%;
    max-width: 340px;
}

.spec{
    padding-top: 100px;
}

.spec{

}

.spec__cols{
    display: flex;
    flex-wrap: wrap;
}

.spec__left{
    width: 368px;
    flex-shrink: 0;
}

.spec__right{
    width: calc(100% - 368px);
    padding-left: 52px;
}

.spec .pic{

}

.spec .pic img{
    width: 100%;
    display: block;
}

.spec p{
    margin-bottom: 24px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}

.contacts{
    padding-bottom: 80px;
}

.contacts__top{

}

.contacts__center{
    max-width: 775px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.contacts__item{
    width: 50%;
    padding: 0 10px;
    margin-top: 70px;
}

.contacts p{
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
}

.contacts p.first{
    margin-bottom: 34px;
}

.contacts p span{
    display: block;
    padding-top: 8px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}

.contacts p a{
    color: inherit;
}

.map-section{
    position: relative;
}

.map-section .overlay{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.map-section .container{
    position: relative;
}

.map-section .chisel{
    width: 340px;
    position: absolute;
    top: 140px;
    right: 10px;
    z-index: 3;
}

.map{
    height: 670px;
    background: #ccc;
    position: relative;
    z-index: 1;
}

.map .ymaps-layers-pane {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
    filter: grayscale(100%);
}

/**COMPANY**/
.company{

}

.company__cols{
    display: flex;
    flex-wrap: wrap;
}

.company__left{
    width: 580px;
    flex-shrink: 0;
}

.company__right{
    width: calc(100% - 580px);
    padding-left: 48px;
}

.company p{
    margin-bottom: 24px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}

.company p span,
.company p a{
    font-weight: 400;
    font-size: 20px;
    color: #998865;
}

/**ADVANTAGES**/
.advantages{

}

.advantages__cols{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.advantages__left{
    width: 580px;
    flex-shrink: 0;
}

.advantages__right{
    width: calc(100% - 580px);
    padding-left: 48px;
}

.advantages .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.advantages .item{
    width: 50%;
    padding: 32px 10px;
}

.advantages .item .num{
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.advantages .item p{
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    color: #fff;
}

.advantages .item .pic{

}

.advantages .pic img{
    width: 100%;
    display: block;
}

/**CERT**/
.cert{

}

.cert__cols{
    display: flex;
    flex-wrap: wrap;
}

.cert__left{
    width: 580px;
    flex-shrink: 0;
}

.cert__right{
    width: calc(100% - 580px);
    padding-left: 48px;
}

.cert p{
    margin-bottom: 24px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}

.cert .pic{

}

.cert .pic img{
    width: 100%;
    display: block;
}

/**FOOTER**/
.footer{
    width: 100%;
    display: block;
    background: #2b2b2b;
    position: relative;
    z-index: 1;
}

.footer__top{
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid #717680;
    border-bottom: 1px solid #717680;
}

.footer__top .cols{
    flex-wrap: nowrap;
    justify-content: space-between;
}

.footer .logo{
    margin-bottom: 24px;
}

.footer .logo img{
    width: 254px;
    display: block;
}

.footer .slogan{
    margin-bottom: 24px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}

.ya{
    width: 100%;
    max-width: 264px;    
}

.ya__in{
    padding: 18px;
}   

.ya__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.ya-pin{
    display: flex;
    align-items: center;
    padding-right: 6px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}

.ya-pin img{
    width: 26px;
    display: block;
    flex-shrink: 0;
}

.ya-pin span{
    display: block;
    margin-left: 12px;
}

.raiting{
    display: flex;
    gap: 8px;
}

.raiting__item{
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url(../img/footer/star_gray.svg) center no-repeat;
}

.raiting__item.half{
    background-image: url(../img/footer/star_half.svg);
}

.raiting__item.active{
    background-image: url(../img/footer/star.svg);
}

.ya__sub{
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}

.footer .subtitle{
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    pointer-events: none;
}

.footer-nav{
    list-style: none;
}

.footer-nav li{
    margin-bottom: 12px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}

.footer-nav li a{
    color: inherit;
    transition: .3s;
}

.footer-nav li a:hover{
    color: #998865;
}

.footer__contacts{
    margin-bottom: 12px;
    display: flex;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}

.footer__contacts a{
    display: flex;
    align-items: center;
    color: inherit;
}

.soc{
    display: flex;
    align-items: center;
    padding-top: 8px;
    gap: 12px;
}

.soc__item{
    
}

.soc__item img{
    max-width: 100%;
    display: block;
}

.footer__middle{
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #717680;
}

.footer__middle .text{
    margin-bottom: 24px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    color: #fff;
}

.footer__middle .center{
    display: flex;
    justify-content: center;
}

.footer__bottom{
    padding-top: 24px;
    padding-bottom: 24px;
}

.footer__bottom .cols{
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.footer__bottom p{
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}   

.footer__bottom p a{
    color: inherit;
}

.show1200{
    display: none!important;
}

.wow{
    visibility: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2b2b2b; /* Цвет фона */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Поверх всего */
    transition: opacity 1s ease;
}

.loader {
    width: 70px;
    height: 70px;
    border: 4px solid #998865;
    border-top: 4px solid #fff; /* Цвет спиннера */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Класс для скрытия */
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    z-index: -999;
    pointer-events: none;
}

.text-block{

}

.text-block h1,
.text-block h2{
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
}

.text-block p{
    margin-bottom: 24px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}




.policy {
    padding: 60px 20px;
    background: #f8f9fb;
}

.policy__container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.policy__title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

.policy__content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

/* блок с данными */
.policy__box {
    background: #f4f6f8;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
}

.policy__box h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.policy__box ul {
    padding-left: 18px;
}

.policy__box li {
    margin-bottom: 6px;
}

/* предупреждение */
.policy__alert {
    background: #fff3f3;
    color: #a94442;
    padding: 15px 20px;
    border-left: 4px solid #ff4d4f;
    border-radius: 8px;
    margin: 25px 0;
    font-size: 14px;
}

/* адаптив */
@media (max-width: 768px) {
    .policy__container {
        padding: 25px;
    }

    .policy__title {
        font-size: 22px;
    }
}



.story-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    z-index: 9999;
}

.story-modal.active {
    display: block;
}

/* центр */
.story-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* GROUP */
.story-group {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 640px;
    transform: translate(-50%, -50%) scale(.8);
    opacity: 0;
    transition: .4s ease;
}

/* активная */
.story-group.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 5;
}

/* следующая (справа) */
.story-group.next {
    transform: translate(85%, -50%) scale(.75);
    opacity: .35;
    z-index: 3;
}

/* предыдущая (слева) */
.story-group.prev {
    transform: translate(-185%, -50%) scale(.75);
    opacity: .35;
    z-index: 3;
}

/* скрытые */
.story-group.hide {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.6);
}

/* SLIDES */
.story-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .3s;
}

.story-slide.active {
    opacity: 1;
}

.story-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PROGRESS */
.story-progress {
    position: absolute;
    top: 12px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.story-progress div {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,.25);
    overflow: hidden;
    border-radius: 10px;
}

.story-progress span {
    display: block;
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: #fff;
}

/* NAV */
#storyModal > .left {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 10;
}
#storyModal > .right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 10;
}

.nav.left { left: 0; }
.nav.right { right: 0; }

/* CLOSE */
.story-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #fff;
    z-index: 20;
    cursor: pointer;
}
.form-message {
    display: none;
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.form-message.success {
    display: block;
    background: #eafff1;
    color: #1b7f3a;
    border: 1px solid #b7f5c8;
}

.form-message.error {
    display: block;
    background: #ffeaea;
    color: #b3261e;
    border: 1px solid #ffb3b3;
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}