:root{
    --main-font: 'Comfortaa', sans-serif;
    --heading-font: 'Montserrat Alternates', sans-serif;
    --decor-font: 'El Messiri', sans-serif;
    --brown: #75614C;
    --main-color: #CE8538;
    --very-light-main: #FFF9F3;
    --pale-main: #F7DBBF;
    --light-yellow: #FFFEEB;
    --white: #ffffff;
    --box-shadow: 0px 6px 8px 0px rgba(103, 38, 24, 0.12);
    --section-distance: 96px;
    --border-radius: var(--size-2);
    --size-1: 12px;
    --size-2: 24px;
    --size-3: 48px
}


/* common styles */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
html{
    font-size: 10px
}
body{
    font-size: 1.6rem;
    text-transform: uppercase;
    font-family: var(--main-font);
    font-weight: 400;
    line-height: 1.6;
    color: var(--brown);
    background-color: #FFFEF4
}
address{
    font-style: normal
}
.container, .footer{
    width: 100%;
    max-width: 1440px;
    padding: 0 100px;
    margin: 0 auto
}
a{
    text-decoration: none
}
section a:not(.btn, .gallery-group a){
    color: var(--main-color)
}
section a:not(.btn, .gallery-group a):hover{
    text-decoration: underline
}

h1, .pale-title{
    font-family: var(--decor-font);
    font-size: 18rem;
    line-height: 1;
    color: var(--white)
}
.pale-title{
    color: var(--pale-main)
}
h2{
    font-family: var(--heading-font);
    font-size: 5.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: var(--size-2)
}

h3, .footer-title{ 
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 500
}
section ul:not(:first-child){
    margin-top: var(--size-1)
}
ul li{
    list-style: none
}
ul li:not(nav ul li){
    padding-left: 20px;
    position: relative
}
ul li:not(nav ul li):before{
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
    background-color: var(--main-color)
}
ul li:not(nav ul li):not(:first-child), ol li:not(:first-child){
    margin-top: 10px
}

ol{
    counter-reset: item
}
ol li{
    list-style: none;
    padding-left: 27px;
    position: relative;
    counter-increment: item
}
ol li:before{
    content: counter(item)'.';
    color: var(--main-color);
    position: absolute;
    left: 0;
    font-weight: 600
}

section p:not(:first-child){
    margin-top: var(--size-1)
}

.owl-carousel{
    height: 100%!important
}
/*.prev, .next{*/
/*    color: var(--main-color);*/
/*    width: fit-content;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: var(--size-1);*/
/*    cursor: pointer;*/
/*    transition: 0.3s*/
/*}*/
.prev, .next{
    width: 12.5px;
    height: 25px;
    background: url("/wp-content/themes/olenaweb/assets/img/icons/arrow-right.svg") no-repeat;
    background-size: contain;
    cursor: pointer
}
.prev{
    transform: rotate(180deg)
}
/*.next:hover div, .prev:hover div{*/
/*    width: 48px;*/
/*    transition: 0.3s*/
/*}*/
/*.prev div, .next div{*/
/*    width: 72px;*/
/*    height: 1px;*/
/*    background: var(--main-color)*/
/*}*/
/*.next{*/
/*   margin-right: 45px;*/
/*   justify-content: flex-end;*/
/*   width: 124.38px*/
/*}*/
/*.prev{*/
/*   margin-left: 45px;*/
/*   justify-content: flex-start;*/
/*   width: 143.1px*/
/*}*/
.services >.container, .projects >.container{
    position: relative
}
.slider-nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 240px);
    gap: var(--size-2);
    position: absolute;
    bottom: 266px;
    left: 120px;
    z-index: 1
}
.services .slider-nav{
    width: calc(100% - 145px);
    left: 72.5px;
    bottom: calc(260px - 12.5px )
}
.projects .slider-nav{
    bottom: calc(327.5px - 12.5px )
}
input{
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--brown);
    padding: 0 var(--size-2);
    outline: none;
    background: transparent;
    border: 1px solid var(--brown);
    border-radius: 30px;
    width: 100%;
    height: 56px
}
input::placeholder{
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--brown)
}
.title-center h2{
    text-align: center
}
.title-center h2 + p{
    text-align: center
}
.wpcf7-spinner{
    display: none
}
/* end of common styles */



/* common class styles */

/* buttons */
.btn, input[type="button"]{
    padding: 0 var(--size-2);
    font-weight: 600;
    font-size: 2rem;
    text-decoration: none;
    text-align: center;
    height: 56px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    width: fit-content;
    text-transform: uppercase;
    box-shadow: var(--box-shadow);
    transition: 0.3s
}
.btn:hover{
    transition: 0.3s
}
.main-btn{
    background: var(--main-color);
    border: 2px solid var(--main-color);
    color: var(--white)
}
.main-btn:hover{
    border-color: var(--white)
}
.white-btn{
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--main-color)
}

.white-btn:hover{
    border-color: var(--main-color)
}
.empty-btn{
    background: transparent;
    border: 2px solid var(--brown);
    color: var(--brown)
}

.empty-btn:hover{
    border-color: var(--main-color);
    color: var(--main-color)
}

/* end of buttons */
.grid-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px
}
.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--size-3)
}
.grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--size-3)
}


.none{
    display: none!important
}


.img-container{
    display: flex;
    justify-content: center;
    align-items: center
}
.img-container img, .img-container video{
    object-fit: cover;
    width: 100%;
    height: 100%
}

section .overlay{
    width: 100%;
    height: 100%;
    background: #705F4D85;
    position: absolute;
    top: 0;
    left: 0
}


/* end of common class styles */


/* menu mobile */
.header.only-mobile{
    display: block
}
.header-mobile-wrap.only-desktop{
    top: 89px;
    width: 100%;
    height: fit-content;
    padding: var(--size-2);
    background: var(--main-color)
}
.header-mobile-wrap.only-desktop .main-menu{
    padding: 0
}
.header-mobile-wrap.only-desktop .main-menu ul{
    flex-direction: row;
    justify-content: center
}
.header-mobile-wrap.only-mobile p, .header-mobile-wrap.only-mobile .social-items{
    margin-top: 20px
}
.header-mobile-wrap.only-mobile span, .header-mobile-wrap.only-mobile .footer-title{
    color: var(--white)
}
.header-mobile-wrap.only-mobile span + a{
    color: var(--pale-main)
}

.header.only-mobile .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--size-1)
    }

    .menu-btn-open {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer
    }

    .menu-btn-open > div {
        width: 100%;
        height: 2px;
        background-color: var(--white);
        border-radius: 5px
    }

    .menu-btn-close {
        width: 30px;
        position: absolute;
        top: 20px;
        right: 15px;
        cursor: pointer
    }

    .menu-btn-close > div {
        right: -3px;
        width: 30px;
        height: 2px;
        background-color: var(--white);
        position: absolute;
        top: calc(50% - 1px);
        border-radius: 5px
    }

    .menu-btn-close > div:first-child {
        transform: rotate(45deg)
    }

    .menu-btn-close > div:last-child {
        transform: rotate(-45deg)
    }

    .menu-btns {
        z-index: 3;
        margin: auto
    }

    .menu-btns.open .menu-btn-open {
        display: flex
    }

    .menu-btns.open .menu-btn-close {
        display: none
    }

    .menu-btns:not(.open) .menu-btn-open {
        display: none
    }

    .menu-btns:not(.open) .menu-btn-close {
        display: flex
    }

    .header-mobile-wrap {
        position: fixed;
        top: 0;
        left: 0;
        background-color: var(--main-color);
        width: calc(100vw - 60px);
        height: 100vh;
        z-index: 2;
        padding: 20px;
        transition: 0.3s
    }

    .header-mobile-wrap .main-menu {
        padding-top: 30px
    }

    .header-mobile-wrap .main-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .header-mobile-wrap .main-menu ul li a {
        line-height: 1;
        display: flex;
        font-size: 1.6rem;
        font-weight: 600
    }
    .header-mobile-wrap address{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 30px
    }
   
    .header.menu-translate .header-mobile-wrap{
        transform: translateX(-100%);
        transition: 0.3s
    }
    .header:not(.menu-translate) .overlay{
        position: fixed;
        top: 0;
        right: 0;
        background: #20202047;
        backdrop-filter: blur(5px);
        width: 100vw;
        height: 100vh;
        transition: 0.1s
    }
    .header-mobile-wrap .main-menu nav >ul >li{
        flex-direction: column;
        gap: 20px
    }



/* end of menu mobile */

/* header */
header{
   position: fixed;
   width: 100%;
   z-index: 3
}
header.scroll{
    background-color: var(--main-color)
}
.header .container{
    max-width: 100%;
    padding: var(--size-1)
}

.header .logo{
    display: inline-flex;
    cursor: pointer
}
.header .logo img{
    height: 65px
}

.main-menu a{
    color: var(--white);
    text-transform: uppercase
}

.main-menu >nav >ul{
    display: flex;
    align-items: center;
    gap: var(--size-3)
}

.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--size-3)
}


/* end of header */
.owl-nav{
    display: none
}
.owl-nav button{
    margin: 0px 0 0!important;
    transition: 0.3s
}
.owl-stage-outer, .owl-stage, .owl-item, .owl-item > .item{
    height: 100%
}
.owl-item > .item{
    position: relative
}

.owl-carousel{
    width: 100%!important
}

.owl-carousel .description{
    position: absolute;
    top: var(--size-2);
    left: var(--size-2);;
    padding: var(--size-2);
    background: #75614C73
}
.owl-theme .owl-dots{
    display: flex;
    justify-content: center;
    margin-top: var(--size-2)
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--main-color)
}
.owl-theme .owl-dots .owl-dot span{
    width: 12px;
    height: 12px;
    margin: 0 6px 0;
    background: var(--pale-main)
}
section:not(:first-of-type), footer{
    margin-top: var(--section-distance)
}


/* footer */

.footer{
    border-top: 1px solid var(--main-color);
    padding: var(--size-3) 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--size-2);
    max-width: 1240px;
    margin: 0 auto 0
}
.footer >div:first-of-type{
    padding-right: 15%
}
.footer >div:first-of-type p{
    margin-top: var(--size-2)
}
.footer a{
    color: var(--main-color)
}
.footer a:hover{
    text-decoration: underline
}
.footer >div a:hover{
    color: var(--main-color)
}
.footer-title{
    margin-bottom: var(--size-2);
    line-height: 1
}
.footer-title:not(:first-of-type){
    margin-top: var(--size-2)
}
.footer >div:last-of-type p:not(:first-of-type){
    margin-top: var(--size-2)
}
.footer >div >p >span:first-of-type{
    font-weight: 600
}
.footer-bottom{
    padding: var(--size-1);
    border-top: 1px solid var(--main-color);
}
.footer-bottom p{
    text-align: center
}

.social-items, .social-wrap{
    display: flex;
    align-items: center;
    gap: 8px
}
.social-items img, .social-wrap img{
    width: 35px;
    height: 35px
}
.social-link{
    position: relative;
    display: inline-block;
    padding-left: 22px
}
.social-link:before{
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 3px
}
.social-link.i:before{
    background: url("/wp-content/themes/olenaweb/assets/img/icons/i.svg") no-repeat center;
    background-size: contain
}
.social-link.f:before{
    background: url("/wp-content/themes/olenaweb/assets/img/icons/f.svg") no-repeat center;
    background-size: contain
}
.social-link.tt:before{
    background: url("/wp-content/themes/olenaweb/assets/img/icons/tt.svg") no-repeat center;
    background-size: contain
}
.social-link.v:before{
    background: url("/wp-content/themes/olenaweb/assets/img/icons/v.svg") no-repeat center;
    background-size: contain
}

/* end of footer */