html{
    min-height:100%;
}
body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
body.frozen{
    overflow-y: hidden;
}
.container-fluid{
    max-width:1400px;
}
.blur-dark{
    position:fixed;
    top:0;
    bottom:0;
    right:0;
    left:0;
    background-color:rgba(0,0,0,0.7);
    z-index:99;
    display:none;
}
p, li{
    color:#555;
    font-size:1.1rem;
    line-height:1.6;
}
li{
    list-style: disc;
}
li::marker{
    color:#8fa395;
}
em{
    font-style: italic;
}
.btn-default{
    display:inline-block;
    background-color:#8fa395;
    border:solid 1px #8fa395;
    color:#fff;
    font-size:1rem;
    line-height:1.2;
    padding:1rem 1.5rem;
    border-radius:10px;
    text-decoration:none;
}
.btn-default.invert{
    background-color:transparent;
    color:#fff;
    border-color:#fff;
}
.btn-default.alt{
    border-color:#000;
    color:#000;
    background-color:transparent;
}
.btn-default:hover{
    background-color:#b86b5e;
    color:#ffff;
    border-color:#b86b5e;
}

.light{
    background-color:#f6f7f5;
}
.dark{

}

.img-featured{
    height:300px;
    border-radius:10px;
}
@media(min-width:992px){
    .img-featured{
        position:sticky;
        top:calc(var(--header-height, 120px) + 30px);
    }
}
@media(min-width:1200px){
    .img-featured{
        height:400px;
    }
}

@media(min-width:992px){
    .sticky{
        position:sticky;
        top:calc(var(--header-height, 120px) + 30px);
        align-self:flex-start;
    }
}

/*

    TOP BAR

----------- */
.top-bar{
    background-color:#c69c6d;
    padding:1rem;
}
.top-bar-btns a{
    display:inline-block;
    color:#fff;
    font-size:1rem;
    line-height:1.2;
    text-decoration: none;
    padding:0 0.5rem;
}
.top-bar-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:1rem;
}
.top-bar .lang-switcher{
    position:relative;
    display:inline-block;
    z-index: 99;
}
.top-bar .lang-switcher > a{
    display:inline-block;
    color:#fff;
    font-size:1rem;
    line-height:1.2;
    text-decoration:none;
    padding:0 0.5rem;
}
.top-bar .lang-switcher .current-language{
    display:inline-flex;
    align-items:center;
    gap:0.5rem;
}
.top-bar .lang-switcher .current-language i{
    transition:transform 0.25s ease;
}
.top-bar .lang-switcher.is-open .current-language i{
    transform:rotate(180deg);
}
.top-bar .lang-switcher .languages{
    position:absolute;
    top:calc(100% + 0.5rem);
    right:0;
    display:none;
    min-width:100%;
    background-color:#fff;
    border-radius:5px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    padding:0.5rem 0;
    text-align:left;
    z-index:2;
}
.top-bar .lang-switcher .languages a{
    display:block;
    color:#000;
    padding:0.5rem 1rem;
    text-decoration:none;
    white-space:nowrap;
}
.top-bar .lang-switcher .languages a.current{
    color:#b86b5e;
    font-weight:600;
}
.top-bar .socials{
    display:inline-flex;
    align-items:center;
    flex-wrap:wrap;
    gap:0.5rem;
}
.top-bar .socials a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:2rem;
    height:2rem;
    border:none;
    background-color:#78ff00;
    border-radius:50%;
    color:#000;
    text-decoration:none;
    font-size:1rem;
    line-height:1;
}
.top-bar .socials a:hover{
    background-color:#000;
    color:#fff;
}
@media(min-width:768px){
    .top-bar-btns a{
        padding:0 2rem 0 0;
    }
    .top-bar .lang-switcher > a{
        padding:0 1rem;
    }
    .top-bar-actions{
        gap:1.25rem;
    }
    .top-bar .socials{
        gap:0.5rem;
    }
}
@media(min-width:992px){
    .top-bar{
        padding:1rem 2rem;
    }
    
}

/*

    HEADER

---------- */
header{
    position:sticky;
    top:0;
    z-index:98;
    padding:1.5rem 1rem;
    background-color:#fff;
    border-bottom:solid 1px #eee;
    transition:padding 0.2s ease;
}
header.is-sticky{
    padding-top:0.85rem;
    padding-bottom:0.85rem;
    background-color:#f6f7f5;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2); 
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
header .logo{
    display:block;
    transform-origin:left center;
    transition:transform 0.2s ease;
    color:#000;
    text-decoration:none;
    font-weight:bold;
    font-size:1.2rem;
    display:block;
    line-height: 1.2;
}
header .logo span{
    display:block;
    font-size:1rem;
    font-weight:normal;
    color:#b86b5e;
}
header.is-sticky .logo{
    transform:scale(0.80);
}
header .header-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:2rem;
}
header .nav-items{
    display:flex;
    flex:1;
    justify-content:flex-end;
}
header .nav-items .nav-list{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:1rem;
}
header .nav-items .nav-entry{
    position:relative;
}
header .nav-items .item{
    display:inline-flex;
    align-items:center;
    color:#000;
    font-size:1rem;
    line-height:1.2;
    text-decoration:none;
    font-weight:600;
    padding:0.5rem 0;
}
header .nav-items .item:hover{
    color:#888;
}
header .nav-items .item.has-dropdown i{
    font-size:0.9rem;
    transition:transform 0.25s ease;
}
header .nav-items .item.has-dropdown.is-open i{
    transform:rotate(180deg);
}
header .nav-items .dropdown{
    position:absolute;
    top:calc(100% + 0.75rem);
    display:none;
    min-width:180px;
    background-color:#fff;
    border-radius:8px;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    padding:0.75rem 0;
    z-index:5;
}
header .nav-items .dropdown .sub-item{
    display:block;
    color:#000;
    line-height:1.2;
    padding:0.5rem 1rem;
    text-decoration:none;
    white-space:nowrap;
}
header .btns{
    flex-shrink:0;
}
header .btns a{
    display:inline-block;
    color:#fff;
    background-color:#b86b5e;
    border-radius:10px;
    padding:1rem 1.2rem;
    text-decoration:none;
    line-height:1;
    font-size:1rem;
    font-weight:bold;
    text-align:center;
    white-space:nowrap;
}
header .btns a:hover{
    background-color:#b86b5e;
    color:#fff;
    opacity: 0.9;;
}
header .btn-open-nav{
    display:inline-block;
}
header .btn-open-nav span{
    display:block;
    height:3px;
    background-color:#000;
    width:40px;
    margin:10px 0;
}
@media(min-width:768px){
    header{
        padding:2rem;
    }
    header .logo{
        font-size:1.6rem;
    }
    header .logo span{
        font-size:1.2rem;
    }
}
@media(min-width:1200px){
    header .header-actions{
        gap:2.5rem;
    }
    header .nav-items .item{
        font-size:0.9rem;
        gap:1rem;
    }
    header .btns a{
        font-size:1.1rem;
        padding:1.1rem 1.3rem;
    }
}
@media(min-width:1300px){
    header .nav-items .item{
        font-size:1rem;
    }
}
@media(min-width:1400px){
    header .nav-items .nav-list{
        gap:1.2rem;
    }
    header .nav-items .item{
        font-size:1.1rem;
    }
}

/*

    PAGE HEADER

--------------- */
.page-header{
    padding:2rem 1rem;
    background-color:#fafafa;
    background-position:center calc(50% + var(--page-header-parallax-offset, 0px));
    position:relative;
    
}
.page-header .content{
    position:relative;
    z-index: 1;
}
.page-header .crumbs{
    text-align:center;
    padding:0 0 1rem 0;
}
.page-header .crumbs a,
.page-header .crumbs span,
.page-header .crumbs i{
    display:inline-block;
    color:#fff;
    font-size:1rem;
    line-height:1.2;
    text-decoration:none;
}
.page-header h1,
.page-header h2{
    font-size:2rem;
    line-height:1.2;
    font-weight:bold;
    color:#fff;
}
.page-header .gradient{
    position:absolute;
    left:0;
    right:0;
    height:100%;
    z-index: 0;
    background: #000000;
}
.page-header .gradient-top{
    top:0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 65%);
}
.page-header .gradient-bottom{
    bottom:0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(255, 255, 255, 0) 65%);
}
@media(min-width:768px){
    .page-header{
        padding:4rem 2rem;
    }
}
@media(min-width:992px){
    .page-header h1,
    .page-header h2{
        font-size:3rem;
    }
}
@media(min-width:1200px){
    .page-header{
        padding:5rem 2rem;
    }
}

/*

    NAV SLIDE

------------- */
.nav-slide{
    position:fixed;
    background-color:#f6f7f5;
    top:0;
    right:0;
    bottom:0;
    width:340px;
    z-index: 100;
    padding:5rem 2rem 2rem 2rem;
    transform:translateX(100%);
    opacity:1;
    visibility:hidden;
    transition:transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0.35s;
    overflow-y:scroll;
}
.nav-slide.visible{
    transform:translateX(0);
    opacity:1;
    visibility:visible;
    transition:transform 0.35s ease, opacity 0.35s ease;
}
.nav-slide .btn-close-nav{
    position:absolute;
    top:1.5rem;
    right:1.5rem;
    width:44px;
    height:44px;
    display:block;
    opacity:0;
    pointer-events:none;
    transform:translateX(24px);
    transition:transform 1s ease 0.12s, opacity 0.25s ease 0.12s;
}
.nav-slide.visible .btn-close-nav{
    opacity:1;
    pointer-events:auto;
    transform:translateX(0);
}
.nav-slide .btn-close-nav span{
    position:absolute;
    top:50%;
    left:50%;
    width:32px;
    height:3px;
    background-color:#000;
    border-radius:999px;
    transform-origin:center;
    transition:transform 0.3s ease, opacity 0.2s ease;
}
.nav-slide .btn-close-nav span:first-child{
    opacity:0;
    transform:translate(-50%, -50%) rotate(0deg) scaleX(0.4);
}
.nav-slide .btn-close-nav span:last-child{
    opacity:0;
    transform:translate(-50%, -50%) rotate(0deg) scaleX(0.4);
}
.nav-slide.visible .btn-close-nav span:first-child,
.nav-slide .btn-close-nav.is-active span:first-child{
    opacity:1;
    transform:translate(-50%, -50%) rotate(45deg) scaleX(1);
}
.nav-slide.visible .btn-close-nav span:last-child,
.nav-slide .btn-close-nav.is-active span:last-child{
    opacity:1;
    transform:translate(-50%, -50%) rotate(-45deg) scaleX(1);
}
.nav-slide .items .item{
    display:block;
    color:#000;
    font-size:1.4rem;
    line-height:1;
    text-decoration:none;
    font-weight:bold;
    padding:1rem 0;
}
.nav-slide .items .item.has-dropdown{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
}
.nav-slide .items .item.has-dropdown i{
    font-size:1rem;
    transition:transform 0.25s ease;
}
.nav-slide .items .item.has-dropdown.is-open i{
    transform:rotate(180deg);
}
.nav-slide .dropdown{
    display:none;
    padding:1rem 0 0 0;
}
.nav-slide .dropdown .sub-item{
    font-size:1.2rem;
    display:block;
    color:#000;
    line-height:1.2;
    padding:0 0 1rem 0;
    text-decoration:none;
}
.nav-slide .socials{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:0.5rem;
    padding:2rem 0;
    text-align:center;
}
.nav-slide .socials a{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:1.5rem;
    width:50px;
    height:50px;
    line-height:1;
    text-align:center;
    border:solid 1px #fff;
    border-radius:50%;
    text-decoration: none;
}
.nav-slide .btns{
    padding:1rem 0;
    text-align:center;
    margin-top:1rem;
}
.nav-slide .btns a{
    display:inline-block;
    color:#fff;
    background-color:#8fa395;
    border-radius:10px;
    padding:1.2rem;
    text-decoration:none;
    line-height:1;
    font-size:1.2rem;
    font-weight:bold;
    text-align:center;
}
.nav-slide .lang-switcher{
    position:absolute;
    top:2rem;
    left:2rem;
}
.nav-slide .lang-switcher > a{
    display:block;
    color:#fff;
    font-size:1rem;
    text-decoration:none;
}
.nav-slide .lang-switcher .current-language{
    display:flex;
    align-items:center;
    gap:0.5rem;
}
.nav-slide .lang-switcher .current-language i{
    transition:transform 0.25s ease;
}
.nav-slide .lang-switcher.is-open .current-language i{
    transform:rotate(180deg);
}
.nav-slide .lang-switcher .languages{
    display:none;
    background-color:#111;
    padding:0.5rem 1rem;
    border-radius:5px;
    margin-top:0.5rem;
}
.nav-slide .lang-switcher .languages a{
    display:block;
    color:#ccc;
    padding:0.5rem 0;
    text-decoration:none;
}
.nav-slide .lang-switcher .languages a.current{
    color:#c69c6d;
    font-weight:600;
}

/*

    PAGES

--------- */
.section-page{
    padding:3rem 1rem;
    scroll-margin-top:calc(var(--header-height, 90px) + 1rem);
}
.section-legal h2{
    font-size:1.2rem;
    font-weight:bold;
    margin:2rem 0 0 1rem 0;
}
.h1-block{
    padding:0 0 1rem 0;
}
.h1-block span{
    display:block;
    color:#888;
    font-size:1rem;
    line-height:1.2;
    margin:0 0 0.5rem 0;
}
.h1-block h1{
    display:block;
    font-size:1.5rem;
    line-height:1.2;
    font-weight:bold;
    color:#000;
}
.h2-block{
    padding:0 0 1rem 0;
}
.h2-block span{
    display:block;
    color:#888;
    font-size:1rem;
    line-height:1.2;
    margin:0 0 0.5rem 0;
}
.h2-block h2{
    display:block;
    font-size:1.5rem;
    line-height:1.2;
    font-weight:bold;
    color:#000;
}
h3{
    display:block;
    font-size:1.3rem;
    line-height:1.2;
    font-weight:bold;
    color:#000;
}
.section-page .socials{
    display:inline-flex;
    align-items:center;
    flex-wrap:wrap;
    gap:0.5rem;
}
.section-page .socials a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:3rem;
    height:3rem;
    border:none;
    border:solid 1px #000;
    background-color:transparent;
    border-radius:50%;
    color:#000;
    text-decoration:none;
    font-size:1.3rem;
    line-height:1;
}
.section-page .socials a:hover{
    background-color:#000;
    color:#78ff00;
}
@media(min-width:768px){
    .section-page{
        padding:4rem 2rem;
    }
}
@media(min-width:1200px){
    .section-page{
        padding:6rem 2rem;
    }
    .h1-block h1{
        font-size:3rem;
    }
    .h2-block h2{
        font-size:2rem;
    }
}




/*

    HERO

--------- */
.hero{
    height:400px;
    position:relative;
}
.hero .slick-list,
.hero .slick-track{
    height:100%;
}
.hero-slide{
    height:100%;
    position:relative;
    background-position:center calc(50% + var(--hero-parallax-offset, 0px));
}
.hero .gradient{
    position:absolute;
    left:0;
    right:0;
    height:100%;
    z-index: 0;
    background: #000000;
}
.hero .gradient-top{
    top:0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
}
.hero .gradient-bottom{
    bottom:0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
.hero-details{
    position:absolute;
    bottom:0;
    left:0;
    z-index: 1;
    padding:2rem 1rem;
    color:#eee;
}
.hero .h1-block span{
    display:block;
    font-size:1rem;
    line-height:1.2;
    margin:0 0 0.5rem 0;
    color:#eee;
}
.hero .h1-block h1{
    font-size:2rem;
    line-height:1.2;
    margin:0 0 1rem;
    font-weight:bold;
    color:#eee;
}
.hero .btns a{
    margin:0 0.5rem 0.5rem 0;
}
@media(min-width:768px){
    .hero{
        height:500px;
    }
    .hero-details{
        padding:4rem;
    }
    .hero .h1-block span{
        margin:0 0 1rem 0;
    }
    .hero .h1-block h1{
        font-size:3rem;
        margin:0 0 2rem 0;
    }
}
@media(min-width:1200px){
    .hero{
        height:calc(100vh - var(--hero-top-bar-height, 64px) - var(--hero-header-height, 120px));
    }
    .hero-details{
        padding:4rem 6rem;
    }
    .hero .h1-block span{
        margin:0 0 1rem 0;
    }
    .hero .h1-block h1{
        font-size:4rem;
        margin:0 0 2rem 0;
    }
}
@media(min-width:1400px){
    .hero-details{
        padding:0 0 6rem 6rem;
        left:50%;
        margin-left:-700px;
        width:1400px;
    }
}

/*

    SECTION  PICS + TEXT

------------------------ */
.section-pics-text .pics{
    position:relative;
    height:255px;
}
.section-pic-text .pics{
    height:auto;
}
.section-pics-text .pic{
   width:180px;
   height:210px; 
   position:absolute;
   border-radius:10px;
   overflow: hidden;
}
.section-pic-text .pic{
   width:100%;
   height:auto; 
   border-radius:10px;
   overflow: hidden;
   max-width:200px;
}
.section-pics-text .pic-1{
    background-color:transparent;
}
.section-pics-text .pic-2{
    background-color:#ddd;
    left:150px;
    top:45px;
}
.section-pic-text .pics{
    display:flex;
    align-items:center;
    justify-content:center;
}
.section-pic-text .pic{
    position:relative;
    left:auto;
    top:auto;
}
.section-pics-text.dark{
    background-color:#151515;
}
.section-pics-text.dark .h2-block span{
    color:#eee;
}
.section-pics-text.dark .h2-block h2{
    color:#78ff00;
}
.section-pics-text.dark p{
    color:#eee;
}
@media(min-width:992px){
    .section-pics-text .pics{
        height:285px
    }
    .section-pic-text .pics{
        height:auto;
    }
    .section-pics-text .pic{
        width:210px;
        height:240px;
    }
    .section-pic-text .pic{
        width:100%;
        height:auto; 
        max-width: 300px;
    }
    .section-pics-text .pic-2{
        left:180px
    }
}
@media(min-width:1200px){
    .section-pics-text .pics{
        height:435px
    }
    .section-pic-text .pics{
        height:auto;
    }
    .section-pics-text .pic{
        width:280px;
        height:390px;
    }
    .section-pic-text .pic{
        width:100%;
        height:auto; 
    }
    .section-pics-text .pic-2{
        left:230px
    }
}
@media(min-width:1300px){
    .section-pics-text .pic{
        width:310px;
    }
    .section-pic-text .pic{
        width:100%;
        height:auto; 
    }
    .section-pics-text .pic-2{
        left:260px
    }
}
@media(min-width:1400px){
    .section-pics-text .pic{
        width:330px;
    }
    .section-pic-text .pic{
        width:100%;
        height:auto; 
    }
    .section-pics-text .pic-2{
        left:300px
    }
}

/*

    SECTION  PICS + TEXT 2

-------------------------- */
.section-pics-text-2 .pic{
    height:210px;
    border-radius:10px;
    overflow:hidden;
}
@media(min-width:992px){
    .section-pics-text-2 .pic{
        height:300px;
    }
}
@media(min-width:1400px){
    .section-pics-text-2 .pic{
        height:360px;
    }
}

/*

    SECTION DIVIDER TEXT PIC

---------------------------- */
.section-divider-text-pic{
    padding:0 0 2rem 0;
}
.section-divider-text-pic .bg-pic{
    width:100%;
    height:300px;
}
.section-divider-text-pic .content{
    padding:2rem;
    border-radius:15px;
    background-color:#151515;
    margin-top:-100px;
}
.section-divider-text-pic .h2-block span{
    color:#ccc;
}
.section-divider-text-pic .h2-block h2{
    color:#78ff00;
}
.section-divider-text-pic p{
    color:#ccc;
}
.section-divider-text-pic .content .pic{
    height:310px;
    border-radius: 10px;
}
@media(min-width:768px){
    .section-divider-text-pic{
        padding:0 0 3rem 0;
    }
    .section-divider-text-pic .bg-pic{
        height:400px;
    }
    .section-divider-text-pic .content{
        padding:3rem;
        margin-top:-150px;
    }
}
@media(min-width:992px){
    .section-divider-text-pic{
        padding:0 0 4rem 0;
    }
}
@media(min-width:1200px){
    .section-divider-text-pic{
        padding:0 0 6rem 0;
    }
    .section-divider-text-pic .bg-pic{
        height:500px;
    }
    .section-divider-text-pic .content .pic{
        height:410px;
    }
    .section-divider-text-pic .content{
        padding:4rem;
    }
}

/*

    SECTION PIC 50 TEXT 50

-------------------------- */
.section-pic-50-text-50{
    position:relative;
}
.section-pic-50-text-50 .pic-xl .pic{
    height:280px;
}
.section-pic-50-text-50 .pic-xl .pic .img-cover{
    height:calc(100% + 120px);
    transform:translateY(calc(var(--pic-xl-parallax-offset, 0px) - 60px));
    will-change:transform;
}
.section-pic-50-text-50 .pic-xl .carousel{
    margin:0;
}
.section-pic-50-text-50 .pic-xl .slick-slide > div{
    line-height:0;
}
.section-pic-50-text-50 .pic-xl .slick-dots{
    bottom:20px;
}
.slick-dots li{
    margin:0;
}
.slick-dots li button:before{
    font-size:1rem;
    color:#fff;
    opacity:0.25;
}
.slick-dots li.slick-active button:before{
    color:#b86b5e;
    opacity:1;
}
.section-pic-50-text-50 .details{
    padding:2rem 1rem;
}
@media(min-width:768px){
    .section-pic-50-text-50 .pic-xl{
        width:50%;
        position:absolute;
        top:0;
        bottom:0;
        left:0;
    }
    .section-pic-50-text-50 .pic-xl .carousel,
    .section-pic-50-text-50 .pic-xl .slick-list,
    .section-pic-50-text-50 .pic-xl .slick-track,
    .section-pic-50-text-50 .pic-xl .slick-slide,
    .section-pic-50-text-50 .pic-xl .slick-slide > div,
    .section-pic-50-text-50 .pic-xl .pic{
        height:100%;
    }
    .section-pic-50-text-50 .details{
        display:flex;
        flex-direction:column;
        justify-content:center;
        min-height:340px;
    }
    .section-pic-50-text-50.pics-right .pic-xl{
        left:auto;
        right:0;
    }
}
@media(min-width:992px){
    .section-pic-50-text-50 .details{
        min-height:500px;
    }
    .section-pic-50-text-50 .details{
        padding:2rem 3rem;
    }
}
@media(min-width:1200px){
    .section-pic-50-text-50 .details{
        padding:2rem 4rem;
    }
}
@media(min-width:1400px){
    .section-pic-50-text-50 .details{
        min-height:600px;
    }
    .section-pic-50-text-50 .details{
        padding:2rem 5rem;
    }
}

/*

    CARDS

--------- */
.horizontal-icon-card{
    display:flex;
    /*align-items:center;*/
    gap:1rem;
    margin:0 0 2rem 0;
}
.horizontal-icon-card .icon{
    flex-shrink:0;
}
.horizontal-icon-card .icon a{
    display:block;
    width:60px;
    height:60px;
    background-color:#c69c6d;
    color:#fff;
    line-height:60px;
    border-radius:50%;
    text-align:center;
    font-size:1.5rem;
}
.horizontal-icon-card .icon a:hover{
    background-color:#c69c6d;
    color:#fff;
    opacity: 0.9;
}
.horizontal-icon-card .details{
    flex:1;
    line-height:1.4;
}
.horizontal-icon-card .details h4{
    font-size:1.3rem;
    font-weight:bold;
    color:#000;
}
.horizontal-icon-card .details a{
    color:#555;
    text-decoration:none;
}
.horizontal-icon-card .details a:hover{
    color:#000;
}

.card-pic-text .pic{
    height:210px;
    border-radius:10px;
}
.card-pic-text .h3-block{
    margin:1rem 0 0.5rem 0;
}
.card-pic-text .h3-block h3{
    font-size:1.5rem;
    font-weight:bold;
    line-height:1.2;
}
.card-pic-text .h3-block span{
    font-size:1rem;
    color: #888;
    line-height:1;
    display:block;
    margin:0 0 0.5rem 0;
}
@media(min-width:992px){
    .card-pic-text .pic{
        height:310px;
    }
}

.card-no-pic-full-width{
    padding:1rem;
    border:solid 1px #e5e5e5;
    border-radius:15px;
     -webkit-box-shadow: 0px 10px 15px -15px rgba(0,0,0,0.3); 
    box-shadow: 0px 10px 15px -15px rgba(0,0,0,0.5);
}
.card-no-pic-full-width .h3-block{
    margin:1rem 0 0.5rem 0;
}
.card-no-pic-full-width .h3-block h3{
    font-size:1.5rem;
    font-weight:bold;
    line-height:1.2;
}
.card-no-pic-full-width .h3-block span{
    font-size:1rem;
    color: #888;
    line-height:1;
    display:block;
    margin:0 0 0.5rem 0;
}
.card-no-pic-full-width p{
    margin:0;
}
@media(min-width:992px){
    .card-no-pic-full-width{
        padding:2rem;
    }
}

.card-icon-text{
}
.card-icon-text .icon{
    color:#c69c6d;
    font-size:4rem;
    line-height:1;
    margin:0 0 1.5rem 0;
}
.card-icon-text .h3-block{
    margin:1rem 0 1rem 0;
}
.card-icon-text .h3-block h3{
    font-size:1.3rem;
    font-weight:bold;
    line-height:1.2;
}
.card-icon-text .h3-block span{
    font-size:1rem;
    color: #888;
    line-height:1;
    display:block;
    margin:0 0 0.5rem 0;
}
.card-icon-text p{
    font-size:1rem;
}
.card-icon-text p a{
    display:inline-block;
    color:#555;
}

.card-title-text{
    background-color:#fff;
    padding:1.5rem;
    border-radius:15px;
}
.card-title-text .h3-block span{
    color:#888;
    font-size:0.9rem;
}
.card-title-text .h3-block h3{
    font-weight: bold;
    font-size:1.3rem;
    line-height:1.2;
    margin:0.5rem 0 0.5rem 0;
}
.card-title-text .tags span{
    display:inline-block;
    font-size:0.9rem;
    background-color:#78ff00;
    color:#000;
    padding:0.3rem 0.5rem;
    border-radius: 5px;
    margin:0 0.2rem 0.4rem 0;
}
.card-title-text p{
    font-size:1rem;
}

.card-pic-title-small{

}
.card-pic-title-small a{
    display:flex;
    align-items:center;
    gap:1rem;
    color:#000;
    text-decoration: none;
}
.card-pic-title-small a:hover{
    opacity: 0.9;
}
.card-pic-title-small span{
    display:block;
}
.card-pic-title-small .pic{
    flex-shrink:0;
    width:90px;
    height:90px;
    border-radius:10px;
}
.card-pic-title-small .details{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.card-pic-title-small .details h3{
    font-size:1.2rem;
    line-height:1.2rem;
    margin:0 0 0.5rem 0;
}
.card-pic-title-small .details p{
    font-size:1rem;
    line-height:1.4rem;
    margin:0;
}

.card-pic-shadow{
    position:relative;
    color:#fff;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    display:block;
}
.card-pic-shadow img{
    height:210px;
    position:relative;
    z-index: 1;
}
.card-pic-shadow .title{
    position:absolute;
    left:0;
    bottom:0;
    color:#fff;
    font-size:1.2rem;
    line-height:1.2;
    padding:1rem;
    display:inline-block;
    z-index: 2;
    text-align:center;
    width:100%;
}
.card-pic-shadow::after{
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:50%;
    z-index: 1;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 65%);
}
.card-pic-shadow:hover::after{
    height:100%;
}
@media(min-width:992px){
    .card-pic-shadow img{
        height:300px;
    }
    .card-pic-shadow .title{
        font-size:1.3rem;
        padding:1.5rem;
    }
}

.card-testimonial{
    height:100%;
    position:relative;
}
.card-testimonial .details{
    background-color:#fafafa;
    border-radius:10px;
    padding:1rem;
}
.card-testimonial .quote{
    font-size:1.2rem;
    line-height:1.3;
    font-weight:bold;
    margin:0 0 1rem 0;
}
.card-testimonial .author{
    font-weight:bold;
    font-size:1rem;
    line-height:1.4;
}
.card-testimonial .job_title{
    color:#888;
    font-style: italic;
    font-size:1rem;
    line-height:1.4;
}
.card-testimonial .company{
    color:#888;
    font-size:1rem;
    line-height:1.4;
}
.card-testimonial .author-info{
    display:flex;
    align-items:center;
    gap:1rem;
}
.card-testimonial .avatar{
    width:80px;
    height:80px;
    border-radius:50%;
    background-color:#78ff00;
    color:#000;
    font-size:1.2rem;
    font-weight:bold;
    line-height:80px;
    text-align:center;
}
@media(min-width:992px){
    .card-testimonial .details{
        padding:2rem;
    }
}
@media(min-width:1200px){
    .card-testimonial .details{
        padding:3rem;
        background-color:#fafafa;
        border-radius:10px;
    }
    .card-testimonial .quote{
        font-size:1.5rem;
    }
}

/*

    SECTION TESTIMONIALS

------------------------ */
.carousel-testimonials{
    margin:0 -12px;
}
.carousel-testimonials .slick-slide{
    padding:0 12px;
}
.carousel-testimonials .slick-track{
    display:flex;
}
.carousel-testimonials .slick-slide{
    height:inherit;
}
.carousel-testimonials .slick-dots{
    bottom:-45px;
}
.carousel-testimonials .slick-dots li button:before{
    color:rgba(0,0,0,0.5);
    opacity:0.25;
}
.slick-dots li.slick-active button:before{
    color:#b86b5e;
    opacity:1;
}
.section-testimonials{
    overflow:hidden;
}

/*

    CARDS LIST

-------------- */
.card-list{
    background-color: #fff;
    padding:1rem;
    border-left:solid 5px #ccc;
    border-radius: 10px;
}
.card-list h4{
    font-size:1.1rem;
    font-weight:bold;
}
.card-list p{
    color:#555;
    font-size:1rem;
    margin:0;
    line-height:1.4;
}

/*

    CARD STEPS

-------------- */
.card-steps{
   --card-steps-border-color:#eee;
   background-color:#f5f5f5;
   position:relative; 
   padding:2rem;
   border-radius: 10px;
   padding-left:calc(1rem + 25px);
   border-bottom:solid 5px var(--card-steps-border-color);
}
.card-steps .nr{
    display:block;
    font-weight:bold;
    font-size:2rem;
    color:#000;
    background-color:#78ff00;
    border-radius:50%;
    width:50px;
    height:50px;
    line-height: 50px;
    text-align:center;
    position:absolute;
    top:1rem;
    left:-25px;
    transform:translateY(var(--nr-offset, 0px));
    will-change:transform;
}
.card-steps h4{
    font-size:1.2rem;
    font-weight:bold;
}
.card-steps p{
    color:#555;
    font-size:1rem;
    margin:0;
    line-height:1.4;
}
.card-steps .arrow{
    position:absolute;
    left:50%;
    bottom:-17px;
    width:0;
    height:0;
    border-left:12px solid transparent;
    border-right:12px solid transparent;
    border-top:12px solid var(--card-steps-border-color);
    transform:translateX(-50%);
}
@media(min-width:992px){
    .card-steps{
        padding-left:calc(1rem + 40px);
    }
    .card-steps .nr{
        width:70px;
        height:70px;
        line-height: 70px;
        left:-35px;
    }
    .card-steps h4{
        font-size:1.4rem;
    }
}

/*

    SECTION LOGOS

----------------- */
.section-logos{
    --logo-gap:1rem;
    padding:3rem 0;
    overflow:hidden;
}
.section-logos .logos-marquee{
    display:flex;
    width:max-content;
    animation:logos-marquee 34s linear infinite;
    will-change:transform;
}
.section-logos .logos-marquee:hover,
.section-logos .logos-marquee:focus-within{
    animation-play-state:paused;
}
.section-logos .logos-track{
    display:flex;
    align-items:center;
    gap:var(--logo-gap);
    flex-shrink:0;
    padding-right:var(--logo-gap);
}
.section-logos .logo-item{
    flex:0 0 auto;
}
.section-logos .logo{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:120px;
    text-decoration:none;
}
.section-logos .logo img{
    display:block;
    width:auto;
    height:60px;
    max-width:160px;
    object-fit:contain;
}
.section-logos a.logo:hover img{
    opacity:.8;
}
@keyframes logos-marquee{
    from{
        transform:translate3d(0,0,0);
    }
    to{
        transform:translate3d(-50%,0,0);
    }
}
@media(min-width:768px){
    .section-logos{
        --logo-gap:4rem;
        padding:4rem 0;
    }
    .section-logos .logo img{
        height:90px;
        max-width:200px;
    }
}
@media(min-width:1200px){
    .section-logos{
        padding:6rem 0;
    }
}

/*

    DIVIDER

----------- */
.divider{
    min-height:400px;
    position: relative;
    background-position:center calc(50% + var(--divider-parallax-offset, 0px));
}
.divider .gradient{
    position:absolute;
    left:0;
    right:0;
    height:100%;
    z-index: 0;
    background: #000000;
}
.divider .gradient-top{
    top:0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 65%);
}
.divider .gradient-bottom{
    bottom:0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(255, 255, 255, 0) 65%);
}
.divider h2{
    color:#fff;
    font-size:1.5rem;
    line-height:1.4;
    font-weight:bold;
    position: absolute;
    left:0;
    bottom:0;
    z-index: 2;
    padding:2rem;
}
@media(min-width:768px){
    .divider{
        min-height:500px;
    }
    .divider h2{
        padding:4rem;
        width:80%;
    }
}
@media(min-width:992px){
    .divider h2{
        padding:4rem 6rem;
        width:70%;
    }
}
@media(min-width:1200px){
    .divider{
        min-height:600px;
    }
    .divider h2{
        font-size:2rem;
        width:80%;
    }
}
@media(min-width:1400px){
    .divider h2{
        left:50%;
        padding-left:0;
        width:1000px;
        margin-left:-700px;
        font-size:2.5rem;
    }
}

.divider-cta{
    background-color:#b86b5e;
    padding:2rem 1rem;
}
.divider-cta h2{
    color:#fff;
    font-size:1.3rem;
    font-weight:bold;
    margin:0;
}

/*

    SECTION PHOTO GALLERY

-------------------------- */
.section-photo-gallery .pic{
    width:100%;
    height:120px;
    border-radius: 10px;
    background-color: #f6f7f5;
}
.section-photo-gallery .pic a:hover{
    opacity: 0.5;
}
@media(min-width:768px){
    .section-photo-gallery .pic{
        height:160px;
    }
}
@media(min-width:992px){
    .section-photo-gallery .pic{
        height:210px;
    }
}

.section-photo-gallery-xl{
    padding-left:0;
    padding-right:0;
    padding-bottom:0;
}
.section-photo-gallery-xl .container-fluid:last-child{
    width:100%;
    max-width:100%;
}
.section-photo-gallery-xl .pic{
    height:210px;
    background-color: #78ff00;
}
.section-photo-gallery-xl .pic a:hover{
    opacity: 0.5;
}
@media(min-width:992px){
    .section-photo-gallery-xl .pic{
        height:310px;
    }
}
@media(min-width:1400px){
    .section-photo-gallery-xl .pic{
        height:410px;
    }
}

/*

    SECTION FAQ

--------------- */
.faq-item{
    border-bottom:solid 1px #ddd;
}
.faq-item .question{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    font-size:1.2rem;
    font-weight:bold;
    padding:1rem;
    cursor: pointer;
}
.faq-item .question i{
    flex-shrink:0;
}
.faq-item .answer{
    display:none;
    font-size:1.1rem;
    line-height:1.6;
    color:#888;
    padding:0 1rem 1.5rem 1rem;
}

/*

    SECTION TABLE XL

-------------------- */
.table-xl-item{
    background-color:#f8f8f8;
    padding:1rem;
    margin:0 0 10px 0;
    display:block;
    text-decoration: none;
    -webkit-box-shadow: 0px 10px 15px -15px rgba(0,0,0,0.3); 
    box-shadow: 0px 10px 15px -15px rgba(0,0,0,0.5);
}
.table-xl-item h3{
    font-size:1.1rem;
    line-height:1.2;
    margin:0;
    color:#000;
}
.table-xl-item p{
    font-size:1rem;
    line-height:1.4;
    margin:0;
}
.table-xl-item p i{
    color:#78ff00;
}
.table-xl-item .labels span{
    display:inline-block;
    color:#555;
    background-color:#ddd;
    padding:0.5rem 0.7rem;
    border-radius: 5px;
    margin:0 2px 2px 0;
    font-size:0.8rem;
    line-height: 1;
}
.table-xl-item:hover{
    background-color:#f0f0f0;
}
@media(min-width:1200px){
    .table-xl-item{
        padding:2rem;
    }
}

/*

    SPECS BOX

------------- */
.specs-box{
    background-color:#fff;
    padding:0 1rem 1rem 1rem;
    position: sticky;
    top:calc(var(--header-height, 120px) + 1rem);
    border-radius: 15px;
    border:solid 1px #ddd;
    -webkit-box-shadow: 0px 10px 15px -15px rgba(0,0,0,0.5); 
    box-shadow: 0px 10px 15px -15px rgba(0,0,0,0.5);
}
.specs-box div{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:1rem;
    flex-wrap:wrap;
    padding:1rem 0;
    border-bottom:solid 1px #ddd;
}
.specs-box span{
    text-align:right;
}

/*

    SECTION TITLE TEXT

---------------------- */
@media(min-width:992px){
    .section-title-text h2{
        font-size:2rem;
    }
}
@media(min-width:1200px){
    .section-title-text h2{
        font-size:2.5rem;
    }
}

/*

    FORMS

---------- */
label{
    color:#555;
}
label a{
    color:#555;
}
label a:hover{
    color:#000;
}
#form-contact .invalid-feedback,
#form-apply .invalid-feedback{
    display:none;
    color:#dc3545;
    font-size:0.9rem;
    margin-top:0.5rem;
}
#form-contact .form-control.is-invalid,
#form-contact .form-check-input.is-invalid,
#form-apply .form-control.is-invalid,
#form-apply .form-check-input.is-invalid{
    border-color:#dc3545;
}
#form-contact .form-control.is-invalid:focus,
#form-contact .form-check-input.is-invalid:focus,
#form-apply .form-control.is-invalid:focus,
#form-apply .form-check-input.is-invalid:focus{
    border-color:#dc3545;
    box-shadow:0 0 0 0.25rem rgba(220,53,69,0.15);
}
#form-contact .form-control.is-invalid + label,
#form-contact .form-check-input.is-invalid + .form-check-label,
#form-apply .form-control.is-invalid + label,
#form-apply .form-check-input.is-invalid + .form-check-label{
    color:#dc3545;
}
#form-contact .form-control.is-invalid ~ .invalid-feedback,
#form-contact .form-check-input.is-invalid ~ .invalid-feedback,
#form-apply .form-control.is-invalid ~ .invalid-feedback,
#form-apply .form-check-input.is-invalid ~ .invalid-feedback{
    display:block;
}

#form-apply{
    padding: 1rem;
    background-color: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0px 10px 25px -15px rgba(0,0,0,.5); 
    box-shadow: 0px 10px 25px -15px rgba(0,0,0,.5);
}
@media(min-width:1200px){
    #form-apply{
        padding:2rem;
    }
}

/*

    THANK YOU

-------------- */
.section-thank-you .thank-you-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:5rem;
    height:5rem;
    margin-bottom:1.5rem;
    background-color:#8fa395;
    color:#fff;
    border-radius:50%;
    font-size:2rem;
    line-height:1;
}
.section-thank-you p{
    max-width:640px;
    margin:0 auto;
}
.section-thank-you .thank-you-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:1rem;
    flex-wrap:wrap;
    margin-top:2rem;
}

/*

    ARTICLE

----------- */
article h2{
    font-weight:bold;
    font-size:1.5rem;
    line-height:1.2;
    margin:1.5rem 0 0.5rem 0;
}
article h3{
    font-weight:bold;
    font-size:1.2rem;
    line-height:1.2;
    margin:1.5rem 0 0.5rem 0;
}
article li{
    list-style: disc;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}
article li::marker{
    color:#78ff00;
}

/*

    GOOGLE MAP

-------------- */
.google-map .map iframe{
    width:100%;
    height:210px;
    display:block;
}

/*

    FOOTER

---------- */
footer{
    margin-top:auto;
    padding:0;
    background-color:#f6f7f5;
}
.footer-contact-row{
    padding:2rem 1rem 0 1rem;
}
.footer-row-widgets{
    background-color:#222;
    padding:2rem 1rem;
    position:relative;
}
.footer-widget{
    margin:0 0 2rem 0;
}
.footer-widget h4{
    color:#fff;
    font-weight:bold;
    font-size:1.3rem;
    margin:0 0 1rem 0;
}
.footer-widget p{
    color:#ccc;
    font-size:1rem;
    line-height:1.5;
}
.footer-nav a{
    display:block;
    color:#ccc;
    font-size:1rem;
    line-height:1.2rem;
    padding:0.5rem 0;
    text-decoration: none;
}
.footer-nav a:hover{
    color:#fff;
}
.footer-socials .socials{
    display:inline-flex;
    align-items:center;
    flex-wrap:wrap;
    gap:0.5rem;
    max-width:100%;
}
.footer-socials .socials a{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:2rem;
    height:2rem;
    border:none;
    background-color:#78ff00;
    border-radius:50%;
    color:#000;
    text-decoration:none;
    font-size:1rem;
    line-height:1;
}
.footer-socials .socials a:hover{
    background-color:#000;
    color:#78ff00;
}
#form-footer-newsletter{
    margin-top:1.5rem;
}
#form-footer-newsletter .form-control{
    min-height:3.25rem;
    border:0;
    box-shadow:none;
    max-width:300px;
}
#form-footer-newsletter .form-control:focus{
    box-shadow:none;
}
#form-footer-newsletter .btn{
    min-width:3.25rem;
    border:0;
    background-color:#78ff00;
    color:#000;
    font-size:1.2rem;
}
#form-footer-newsletter .btn:hover{
    background-color:#000;
    color:#78ff00;
}
.footer-logo img{
    width:120px;
}
@media(min-width:768px){
    .footer-contact-row{
        padding:4rem 2rem;
    }
    .footer-icon-card{
        margin:0;
    }
    .footer-row-widgets{
        padding:4rem 2rem;
    }
    .footer-widget{
        margin:0;
    }
}
@media(min-width:992px){
    .footer-socials .socials a{
        width:3rem;
        height:3rem;
        font-size:1.5rem;
        line-height:1;
    }
}

/*

    BOTTOM BAR 

--------------- */
.bottom-bar{
    padding:3rem 1rem 0 1rem;
    background-color:#8fa395;
    color:#fff;
    font-size:0.9rem;
    line-height:1;
    position:relative;
}
.bottom-bar-col{
    padding-top:0;
    padding-bottom:0;
}
.bottom-bar .btn-back-to-top{
    width:80px;
    height:80px;
    line-height:60px;
    position:absolute;
    top:-40px;
    left:50%;
    margin-left:-40px;
    background-color: #8fa395;
    color:#fff;
    font-size:1.5rem;
    text-align:center;
    border-radius:50%;
    border:0;
    padding:0;
    cursor:pointer;
}
.bottom-bar .btns{
    color:#fff;
    padding:1rem 0;
    line-height:1.4;
}
.bottom-bar a{
    display:inline-block;
    text-decoration:none;
    color:#fff;
    font-size:0.9rem;
    line-height:1;
}
.bottom-bar a:hover{
    color:#fff;
}
.bottom-bar-brand{
    position:relative;
    padding-top:1rem;
    padding-bottom:2rem;
    overflow: hidden;
}
.btn-idel-container{
    padding:0 2.5rem;
}
.btn-idel{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    white-space:nowrap;
    transform-origin:right center;
    transition:width 0.35s ease, height 0.35s ease;
}
.btn-idel .btn-idel-icon{
    position:absolute;
    top:0;
    right:0;
    display:block;
    width:24px;
    height:24px;
    overflow:visible;
}
.btn-idel .btn-idel-label{
    position:absolute;
    top:5px;
    left:50%;
    margin-left:-45px;
    color:#fff;
    opacity: 0;
}
.btn-idel.is-revealed .btn-idel-label{
    opacity:1;
}
.btn-idel .block{
    position:absolute;
    width:8px;
    height:8px;
    background-color:#fff;
}
.btn-idel .block-1{
    bottom:16px;
    left:0;
}
.btn-idel .block-2{
    bottom:0;
    left:8px;
}
.btn-idel .block-3{
    left:16px;
    bottom:8px;
}
.btn-idel .block-4{
    left:16px;
    bottom:0;
}
@media(min-width:992px){
    .bottom-bar{
        padding:0 2rem 0 2rem;
    }
    .bottom-bar-col{
        padding-top:3rem;
        padding-bottom:3rem;
    }
    .bottom-bar .btns{
        padding:0;
    }
    .bottom-bar-brand{
        padding-top:3rem;
        padding-bottom:3rem;
    }
}
.frontend-pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 60px;
}

.frontend-pagination .page-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: none;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: all .2s ease;
    border-radius:50%;
}

.frontend-pagination .page-link.current{
    background: #78ff00;
    border-color: #78ff00;
    color: #000;
}
.frontend-pagination .page-link:hover{
    background-color:#eee;
}
