html{
    min-height:100%;
    --top-bar-height:0px;
    --header-height:0px;
    --fixed-bars-height:0px;
}
body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    font-family: "Roboto", 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;
    font-weight:200;
}
li{
    list-style: disc;
}
em{
    font-style:italic;
}
p a{
    color:#555;
    text-decoration:underline;
}
p a:hover{
    color:#073631;
}
.btn-default{
    display:inline-block;
    background-color:#8ca7a4;
    border:solid 1px #8ca7a4;
    color:#073631;
    font-size:1.2rem;
    line-height:1.2;
    padding:1.2rem 1.7rem;
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;
    -webkit-box-shadow: 0px 8px 15px -15px #000000; 
    box-shadow: 0px 8px 15px -15px #000000;
}
.btn-default.invert{
    background-color:transparent;
    color:#78ff00;
    border-color:#78ff00;
}
.btn-default.alt{
    border-color:#073631;
    color:#073631;
    background-color:transparent;
}
.btn-default:hover{
    background-color:#010b0a;
    color:#8ca7a4;
    border-color:#010b0a;
}
.btn-default.alt:hover{
    background-color:#8ca7a4;
    color:#073631;
    border-color:#8ca7a4;
}

.light{
    background-color:#fafafa;
}
.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;
    }
}

h2, h3, h4{
    font-family: "Besley";
}
h3{
    font-size:1.4rem;
}
h4{
    font-size:1.2rem;
}

.loading{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index: 999;
    background-color: rgba(255,255,255,.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.loading img{
    position:absolute;
    top:50%;
    left:50%;
    width:54px;
    margin-left:-27px;
    margin-top:-25px;
}

/*

    TOP BAR

----------- */
.top-bar{
    background-color:#073631;
    padding:1rem;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index: 97;
}
.top-bar-btns a{
    display:inline-block;
    color:#8ca7a4;
    font-size:0.85rem;
    line-height:1.2;
    text-decoration: none;
    padding:0;
}
.top-bar-btns a:hover{
    color:#fff;
}
.top-bar-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:1rem;
}
.top-bar .btns a{
    display:inline-block;
    color:#073631;
    background-color:#8ca7a4;
    border-radius:5px;
    padding:0.65rem 1rem;
    text-decoration:none;
    line-height:1;
    font-size:0.9rem;
    font-weight:bold;
    text-align:center;
    white-space:nowrap;
}
.top-bar .btns a:hover{
    background-color:#010b0a;
    color:#8ca7a4;
}
.top-bar .lang-switcher{
    position:relative;
    display:inline-block;
    z-index: 99;
}
.top-bar .lang-switcher > a{
    display:inline-block;
    color:#000;
    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 .socials{
    display:inline-flex;
    align-items:center;
    gap:0.5rem;
}
.top-bar .socials a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:2rem;
    height:2rem;
    border:none;
    border:solid 1px #8ca7a4;
    background-color:#073631;
    border-radius:50%;
    color:#8ca7a4;
    text-decoration:none;
    font-size:1rem;
    line-height:1;
}
.top-bar .socials a:hover{
    background-color:#8ca7a4;
    color:#073631;
    border-color:#8ca7a4;
}
@media(min-width:768px){
    .top-bar-btns a{
        font-size:1rem;
    }
    .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:1.5rem 3rem;
    }
    
}

/*

    HEADER

---------- */
header{
    position:absolute;
    left:0;
    width:100%;
    top:56px;
    z-index:98;
    padding:1.5rem 1rem;
    background-color:transparent;
    transition:padding 0.2s ease;
}
header.is-sticky{
    position:fixed;
    top:0;
    left:0;
    right:0;
    padding-top:0.85rem;
    padding-bottom:0.85rem;
    background-color: #073631;
}
header.is-sticky.animate__animated{
    --animate-duration:0.45s;
}
.header-placeholder{
    display:none;
    height:var(--header-flow-height, 0px);
}
.header-placeholder.is-active{
    display:block;
}
header .logo{
    display:block;
    max-width:180px;
    transform-origin:left center;
    transition:transform 0.2s ease;
}
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:#fff;
    font-size:1rem;
    line-height:1.2;
    text-decoration:none;
    padding:0.5rem 0;
    white-space:nowrap;
}
header .nav-items .item:hover{
    color:#8ca7a4;
}
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:#073631;
    background-color:#8ca7a4;
    border-radius:5px;
    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:#010b0a;
    color:#8ca7a4;
}
header .btn-open-nav{
    display:inline-block;
}
header .btn-open-nav span{
    display:block;
    height:2px;
    background-color:#fff;
    width:30px;
    margin:10px 0;
}
@media(min-width:768px){
    header{
        padding:2rem;
    }
    header .logo{
        max-width:240px;
    }
}
@media(min-width:1200px){
    header{
        padding:4rem 3rem;
    }
    header .logo{
        max-width:300px;
    }
    header .header-actions{
        gap:2.5rem;
    }
    header .btns a{
        font-size:1.1rem;
        padding:1.1rem 1.3rem;
    }
}
@media(min-width:1300px){
    header .nav-items .nav-list{
        gap:1.5rem;
    }
}

/*

    PAGE HEADER

--------------- */
.page-header{
    padding:calc(var(--fixed-bars-height, 0px) + 2rem) 1rem 2rem;
    background-color:#fafafa;
    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:40px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 65%);
}
.page-header .gradient-bottom{
    bottom:0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(255, 255, 255, 0) 50%);
}
@media(min-width:768px){
    .page-header{
        padding:calc(var(--fixed-bars-height, 0px) + 4rem) 2rem 4rem;
    }
}
@media(min-width:992px){
    .page-header h1,
    .page-header h2{
        font-size:3rem;
    }
}
@media(min-width:1200px){
    .page-header{
        padding:calc(var(--fixed-bars-height, 0px) + 5rem) 2rem 5rem;
    }
}

/*

    NAV SLIDE

------------- */
.nav-slide{
    position:fixed;
    background-color:#073631;
    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:#fff;
    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:#fff;
    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:#ccc;
    line-height:1.2;
    padding:0 0 1rem 0;
    text-decoration:none;
}
.nav-slide .socials{
    padding:2rem 0;
    text-align:center;
}
.nav-slide .socials a{
    display:inline-block;
    color:#fff;
    font-size:1.5rem;
    width:50px;
    height:50px;
    line-height:50px;
    text-align:center;
    border:solid 1px #fff;
    border-radius:50%;
    margin:0 5px;
}
.nav-slide .btns{
    padding:1rem 0;
    text-align:center;
}
.nav-slide .btns a{
    display:inline-block;
    color:#073631;
    background-color:#8ca7a4;
    border-radius:5px;
    padding:1rem 1.2rem;
    text-decoration:none;
    line-height:1;
    font-size:1rem;
    font-weight:bold;
    text-align:center;
    white-space:nowrap;
}
.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;
}

/*

    PAGES

--------- */
.section-page{
    padding:3rem 1rem;
}
.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:#aaa;
    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;
}
.section-page .socials{
    display:inline-flex;
    align-items:center;
    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{
    min-height:100vh;
    position:relative;
    background-attachment:fixed;
    background-size:cover;
    overflow:hidden;
}
.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    z-index:0;
}
.hero .gradient{
    position:absolute;
    left:0;
    right:0;
    height:100%;
    z-index: 1;
    background: #000000;
}
.hero .gradient-top{
    top:0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 30%);
}
.hero .gradient-bottom{
    bottom:0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}
.hero-details{
    position:absolute;
    bottom:0;
    left:0;
    z-index: 2;
    padding:4rem 2rem 6rem 2rem;
    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:800;
    color:#eee;
    font-family: Besley;
}
.hero .btns a{
    margin:0 0.5rem 0.5rem 0;
}
@media(min-width:768px){
    .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-details{
        top:60%;
        bottom:auto;
        left:3rem;
        right:3rem;
        width:auto;
        max-width:1400px;
        margin:0 auto;
        padding:0 0.75rem;
        transform:translateY(-50%);
    }
    .hero .h1-block span{
        margin:0 0 1rem 0;
        font-size:1.2rem;
    }
    .hero .h1-block h1{
        font-size:4rem;
        margin:0 0 2rem 0;
    }
}
@media(min-width:1400px){
    .hero-details{
        width:1400px;
    }
}

@media(max-width:991.98px){
    .hero{
        background-attachment:scroll;
    }
}
@media(prefers-reduced-motion:reduce){
    .hero-video{
        display:none;
    }
}

/*

    SECTION  PICS + TEXT

------------------------ */
.section-pics-text .pics{
    position:relative;
    height:255px;
}
.section-pics-text .pic{
   width:180px;
   height:210px; 
   position:absolute;
   border-radius:5px;
   overflow: hidden;
}
.section-pics-text .pic-1{
    background-color:#eee;
    left:0;
    top:0;
}
.section-pics-text .pic-2{
    background-color:#ddd;
    left:150px;
    top:45px;
}
.section-pics-text.dark{
    background-color:#010b0a;
}
.section-pics-text.dark .h2-block span{
    color:#eee;
}
.section-pics-text.dark .h2-block h2{
    color:#8ca7a4;
}
.section-pics-text.dark p{
    color:#eee;
}
@media(min-width:992px){
    .section-pics-text .pics{
        height:285px
    }
    .section-pics-text .pic{
        width:210px;
        height:240px;
    }
    .section-pics-text .pic-2{
        left:180px
    }
}
@media(min-width:1200px){
    .section-pics-text .pics{
        height:435px
    }
    .section-pics-text .pic{
        width:280px;
        height:390px;
    }
    .section-pics-text .pic-2{
        left:230px
    }
}
@media(min-width:1300px){
    .section-pics-text .pic{
        width:310px;
    }
    .section-pics-text .pic-2{
        left:260px
    }
}
@media(min-width:1400px){
    .section-pics-text .pic{
        width:330px;
    }
    .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 .bg-video-container{
    position:relative;
    overflow:hidden;
    background-size:cover;
    background-position:center;
}
.section-divider-text-pic .bg-video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}
.section-divider-text-pic .content{
    padding:2rem;
    border-radius:15px;
    background-color:#010b0a;
    margin-top:-100px;
}
.section-divider-text-pic .h2-block span{
    color:#fff
}
.section-divider-text-pic .h2-block h2{
    color:#8ca7a4;
}
.section-divider-text-pic p{
    color:#fff;
}
.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;
    }
}
@media(prefers-reduced-motion:reduce){
    .section-divider-text-pic .bg-video{
        display:none;
    }
}

/*

    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 .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:#78ff00;
    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;
        left:0;
    }
    .section-pic-50-text-50 .pic-xl .pic{
        height:340px;
    }
    .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 .pic-xl .pic{
        height:500px;
    }
    .section-pic-50-text-50 .details{
        min-height:500px;
    }
    .section-pic-50-text-50 .details{
        padding:0 3rem;
    }
}
@media(min-width:1200px){
    .section-pic-50-text-50 .details{
        padding:0 4rem;
    }
}
@media(min-width:1400px){
    .section-pic-50-text-50 .pic-xl .pic{
        height:600px;
    }
    .section-pic-50-text-50 .details{
        min-height:600px;
    }
    .section-pic-50-text-50 .details{
        padding:0 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:#cbdbd9;
    border:solid 2px #073631;
    color:#073631;
    line-height:60px;
    border-radius:50%;
    text-align:center;
    font-size:1.5rem;
}
.horizontal-icon-card .icon a:hover{
    background-color:#8ca7a4;
    color:#073631;
}
.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:#000;
    text-decoration:none;
}
.horizontal-icon-card .details a:hover{
    color:#000;
}

/*

    APPOINTMENT CALENDAR

------------------------ */
.appointment-calendar{
    margin:0 0 3rem 0;
    padding:1.5rem;
    background-color:#fff;
    border:1px solid rgba(7,54,49,0.12);
    border-radius:8px;
    box-shadow:0 18px 45px rgba(1,11,10,0.08);
}
.appointment-calendar-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:1rem;
    margin:0 0 1.25rem 0;
}
.appointment-calendar-header span{
    display:block;
    color:#888;
    font-size:1rem;
    line-height:1.2;
    margin:0 0 0.5rem 0;
}
.appointment-calendar-header h2{
    color:#000;
    font-size:1.5rem;
    line-height:1.2;
    font-weight:bold;
    margin:0;
}
.appointment-calendar-nav{
    display:grid;
    grid-template-columns:44px minmax(0, 1fr) 44px;
    align-items:center;
    gap:0.75rem;
    max-width:470px;
    margin:0 auto 1.5rem auto;
    text-align:center;
}
.appointment-calendar-nav strong{
    color:#000;
    font-size:1.1rem;
    line-height:1.2;
    font-weight:bold;
}
.calendar-nav-button{
    width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid transparent;
    border-radius:50%;
    background-color:transparent;
    color:#073631;
    font-size:1.1rem;
    line-height:1;
    transition:background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.calendar-nav-button:hover,
.calendar-nav-button.is-active{
    background-color:#cbdbd9;
    border-color:#cbdbd9;
    color:#073631;
}
.appointment-calendar-grid{
    display:grid;
    grid-template-columns:repeat(7, minmax(0, 1fr));
    gap:0.55rem 0.35rem;
    max-width:560px;
    margin:0 auto;
}
.calendar-weekday{
    color:#000;
    font-size:0.9rem;
    line-height:1.2;
    font-weight:bold;
    text-align:center;
    padding:0 0 0.35rem 0;
}
.calendar-day-placeholder{
    justify-self:center;
    width:2.55rem;
    aspect-ratio:1;
}
.calendar-day{
    position:relative;
    justify-self:center;
    width:2.55rem;
    aspect-ratio:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid transparent;
    border-radius:50%;
    background-color:#f2f6f5;
    color:#073631;
    font-size:1rem;
    line-height:1;
    font-weight:bold;
    transition:background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.calendar-day:hover{
    background-color:#8ca7a4;
    border-color:#073631;
    color:#073631;
}
.calendar-day.is-muted{
    background-color:transparent;
    color:#b7b7b7;
    font-weight:400;
}
.calendar-day.is-muted:hover{
    border-color:transparent;
}
.calendar-day.is-today::after{
    content:"";
    position:absolute;
    bottom:0.35rem;
    left:50%;
    width:0.25rem;
    height:0.25rem;
    border-radius:50%;
    background-color:#073631;
    transform:translateX(-50%);
}
.appointment-time-view{
    position:relative;
    min-height:260px;
    padding:0.25rem 0 0 0;
}
.appointment-back-button{
    position:absolute;
    top:0;
    left:0;
    width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(7,54,49,0.15);
    border-radius:50%;
    background-color:#fff;
    color:#073631;
    font-size:1.1rem;
    line-height:1;
    transition:background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.appointment-back-button:hover{
    background-color:#cbdbd9;
    border-color:#cbdbd9;
    color:#073631;
}
.appointment-time-header{
    max-width:520px;
    margin:0 auto 1.5rem auto;
    padding:0 3rem;
    text-align:center;
}
.appointment-time-header strong{
    display:block;
    color:#000;
    font-size:1.2rem;
    line-height:1.2;
    font-weight:bold;
    margin:0 0 0.35rem 0;
}
.appointment-time-header span{
    display:block;
    color:#777;
    font-size:1rem;
    line-height:1.3;
    margin:0 0 1rem 0;
}
.appointment-time-header h3{
    color:#000;
    font-family:"Roboto", sans-serif;
    font-size:1.35rem;
    line-height:1.2;
    font-weight:bold;
    margin:0;
}
.appointment-time-slots{
    display:grid;
    gap:0.55rem;
}
.appointment-time-slot{
    width:100%;
    min-height:3rem;
    border:1px solid #073631;
    border-radius:4px;
    background-color:#fff;
    color:#073631;
    font-size:1rem;
    line-height:1.2;
    font-weight:bold;
    text-align:center;
    transition:background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.appointment-time-slot:hover,
.appointment-time-slot.is-selected{
    background-color:#073631;
    border-color:#073631;
    color:#fff;
}
.appointment-no-slots{
    width:100%;
    padding:1rem;
    border:1px solid rgba(7,54,49,0.12);
    border-radius:4px;
    background-color:#f4f4f4;
    color:#777;
    font-size:1rem;
    line-height:1.4;
    text-align:center;
}
.appointment-form-view{
    position:relative;
    padding:0.25rem 0 0 0;
}
.appointment-details-form{
    display:flex;
    flex-direction:column;
    min-height:520px;
    padding:4.5rem 0 0 0;
}
.appointment-details-form h3{
    color:#000;
    font-size:1.5rem;
    line-height:1.2;
    font-weight:bold;
    margin:0 0 2rem 0;
}
.appointment-details-form h4{
    color:#000;
    font-family:"Roboto", sans-serif;
    font-size:1.25rem;
    line-height:1.2;
    font-weight:bold;
    margin:0 0 1.75rem 0;
}
.appointment-field{
    margin:0 0 1.25rem 0;
}
.appointment-field label{
    display:block;
    color:#000;
    font-size:0.98rem;
    line-height:1.2;
    margin:0 0 0.65rem 0;
}
.appointment-field input{
    width:100%;
    min-height:3.35rem;
    display:block;
    border:1px solid transparent;
    border-radius:0;
    background-color:#f4f4f4;
    color:#000;
    font-size:1rem;
    line-height:1.2;
    padding:0 1.15rem;
    outline:none;
    transition:border-color 0.2s ease, background-color 0.2s ease;
}
.appointment-field input::placeholder{
    color:#999;
}
.appointment-field input:focus{
    background-color:#fff;
    border-color:#8ca7a4;
}
.appointment-input-icon,
.appointment-input-prefix{
    position:relative;
    display:flex;
    align-items:center;
    background-color:#f4f4f4;
}
.appointment-input-icon i{
    position:absolute;
    left:1rem;
    color:#999;
    font-size:1rem;
    line-height:1;
    z-index:1;
}
.appointment-input-icon input{
    padding-left:2.7rem;
}
.appointment-input-prefix span{
    position:absolute;
    left:1rem;
    color:#000;
    font-size:0.95rem;
    line-height:1;
    font-weight:bold;
    z-index:1;
}
.appointment-input-prefix input{
    padding-left:3.8rem;
}
.appointment-consent{
    display:flex;
    flex-wrap:wrap;
    align-items:flex-start;
    gap:0.85rem;
    margin:0.25rem 0 2rem 0;
}
.appointment-consent input{
    width:1rem;
    height:1rem;
    flex-shrink:0;
    margin:0.1rem 0 0 0;
}
.appointment-consent label{
    flex:1;
    color:#000;
    font-size:0.95rem;
    line-height:1.45;
}
.appointment-consent a{
    color:#073631;
    text-decoration:underline;
}
.appointment-submit{
    width:100%;
    min-height:3.35rem;
    margin:auto 0 0 0;
    border:1px solid #073631;
    border-radius:6px;
    background-color:#073631;
    color:#fff;
    font-size:1rem;
    line-height:1.2;
    font-weight:bold;
    transition:background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.appointment-submit:hover{
    background-color:#8ca7a4;
    border-color:#8ca7a4;
    color:#fff;
}
.section-appointment-confirmation .appointment-confirmation-card{
    width:100%;
    max-width:560px;
    margin:30px auto 0 auto;
    border:1px solid rgba(7, 54, 49, .16);
    border-radius:8px;
    background:#fff;
    overflow:hidden;
    text-align:left;
}
.appointment-confirmation-row{
    display:grid;
    grid-template-columns:130px minmax(0, 1fr);
    gap:18px;
    padding:17px 20px;
    border-bottom:1px solid rgba(7, 54, 49, .12);
    align-items:center;
}
.appointment-confirmation-row:last-child{
    border-bottom:0;
}
.appointment-confirmation-row span{
    color:#8f8b8b;
    font-size:14px;
    line-height:1.3;
}
.appointment-confirmation-row strong{
    color:#151b2b;
    font-size:16px;
    line-height:1.35;
    word-break:break-word;
}
@media(min-width:768px){
    .appointment-calendar{
        margin-bottom:4rem;
        padding:2rem;
    }
    .appointment-calendar-grid{
        gap:0.85rem 0.75rem;
    }
    .calendar-day{
        width:3rem;
        font-size:1.05rem;
    }
    .calendar-day-placeholder{
        width:3rem;
    }
    .appointment-time-view{
        min-height:300px;
    }
    .appointment-time-header{
        margin-bottom:2rem;
    }
    .appointment-time-header strong{
        font-size:1.35rem;
    }
    .appointment-time-header h3{
        font-size:1.55rem;
    }
    .appointment-time-slots{
        gap:0.75rem;
    }
    .appointment-time-slot{
        min-height:3.4rem;
    }
    .appointment-details-form{
        min-height:620px;
    }
    .appointment-details-form h3{
        font-size:1.7rem;
    }
    .appointment-details-form h4{
        font-size:1.35rem;
    }
    .appointment-field{
        padding:0 1.5rem;
    }
    .appointment-consent{
        padding:0 1.5rem;
    }
}
@media(max-width:767.98px){
    .appointment-confirmation-row{
        grid-template-columns:1fr;
        gap:5px;
        padding:15px 16px;
    }
}
@media(min-width:1200px){
    .appointment-calendar{
        padding:2.5rem 3rem;
    }
    .appointment-calendar-header h2{
        font-size:2rem;
    }
}

.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;
    }
}
@media(min-width:1200px){
    .card-pic-text .pic{
        height:410px;
    }
}

.card-icon-text{
}
.card-icon-text .icon{
    color:#073631;
    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-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:#78ff00;
    opacity:1;
}
.section-testimonials{
    overflow:hidden;
}

/*

    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;
}
.divider-video{
    overflow:hidden;
    background-size:cover;
    background-position:center;
}
.divider-bg-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    z-index:0;
}
.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;
        background-attachment: fixed;
    }
    .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;
    }
}
@media(prefers-reduced-motion:reduce){
    .divider-bg-video{
        display:none;
    }
}

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

/*

    SECTION PHOTO GALLERY

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

.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: #8ca7a4;
}
.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 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-alert{
    padding:0.85rem 1rem;
    margin:0 0 1rem 0;
    border-radius:6px;
    font-size:0.95rem;
    line-height:1.4;
}
.form-alert-error{
    color:#842029;
    background-color:#f8d7da;
    border:1px solid #f5c2c7;
}
.form-alert-success{
    color:#0f5132;
    background-color:#d1e7dd;
    border:1px solid #badbcc;
}
#form-contact .invalid-feedback,
#form-appointment .invalid-feedback,
#form-footer-newsletter .invalid-feedback,
#form-newsletter-popup .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-appointment .form-control.is-invalid,
#form-appointment .form-check-input.is-invalid,
#form-footer-newsletter .form-control.is-invalid,
#form-newsletter-popup .form-control.is-invalid{
    border-color:#dc3545;
}
#form-contact .form-control.is-invalid:focus,
#form-contact .form-check-input.is-invalid:focus,
#form-appointment .form-control.is-invalid:focus,
#form-appointment .form-check-input.is-invalid:focus,
#form-footer-newsletter .form-control.is-invalid:focus,
#form-newsletter-popup .form-control.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-appointment .appointment-field:has(.is-invalid) label,
#form-appointment .form-check-input.is-invalid + label{
    color:#dc3545;
}
#form-contact .form-control.is-invalid ~ .invalid-feedback,
#form-contact .form-check-input.is-invalid ~ .invalid-feedback,
#form-appointment .appointment-field:has(.is-invalid) .invalid-feedback,
#form-appointment .appointment-consent:has(.is-invalid) .invalid-feedback,
#form-footer-newsletter .form-control.is-invalid ~ .invalid-feedback,
#form-newsletter-popup .form-control.is-invalid ~ .invalid-feedback{
    display:block;
}
#form-appointment .appointment-consent .invalid-feedback{
    flex-basis:100%;
    margin-left:1.85rem;
}
#form-footer-newsletter .newsletter-recaptcha,
#form-newsletter-popup .newsletter-recaptcha{
    margin-top:1rem;
}
#form-footer-newsletter [type="submit"]:disabled,
#form-newsletter-popup [type="submit"]:disabled{
    cursor:wait;
    opacity:0.7;
}

/*

    NEWSLETTER POPUP

------------------- */
.newsletter-popup{
    position:fixed;
    inset:0;
    z-index:101;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:1rem;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity 0.2s ease, visibility 0.2s ease;
}
.newsletter-popup.visible{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}
.newsletter-popup-dialog{
    position:relative;
    width:100%;
    max-width:920px;
    max-height:calc(100vh - 2rem);
    display:grid;
    grid-template-columns:1fr;
    overflow:auto;
    border-radius:8px;
    background-color:#fff;
    box-shadow:0 25px 65px rgba(0,0,0,0.35);
    transform:translateY(12px);
    transition:transform 0.2s ease;
}
.newsletter-popup.visible .newsletter-popup-dialog{
    transform:translateY(0);
}
.newsletter-popup-media{
    min-height:180px;
}
.newsletter-popup-content{
    padding:2rem;
}
.newsletter-popup-content p{
    margin-bottom:1.25rem;
}
.btn-close-newsletter-popup{
    position:absolute;
    top:1rem;
    right:1rem;
    z-index:2;
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    background-color:#073631;
}
.btn-close-newsletter-popup span{
    position:absolute;
    top:50%;
    left:50%;
    width:18px;
    height:2px;
    background-color:#fff;
}
.btn-close-newsletter-popup span:first-child{
    transform:translate(-50%, -50%) rotate(45deg);
}
.btn-close-newsletter-popup span:last-child{
    transform:translate(-50%, -50%) rotate(-45deg);
}
#form-newsletter-popup{
    display:flex;
    flex-direction:column;
    gap:0.9rem;
}
#form-newsletter-popup .newsletter-field{
    width:100%;
}
#form-newsletter-popup .form-control{
    min-height:3.25rem;
    border:1px solid #d9d9d9;
    border-radius:5px;
    box-shadow:none;
}
#form-newsletter-popup .form-control:focus{
    border-color:#8ca7a4;
    box-shadow:0 0 0 0.25rem rgba(140,167,164,0.18);
}
#form-newsletter-popup .btn-default{
    width:100%;
    text-align:center;
}
@media(min-width:768px){
    .newsletter-popup-dialog{
        grid-template-columns:0.85fr 1.15fr;
    }
    .newsletter-popup-media{
        min-height:100%;
    }
    .newsletter-popup-content{
        padding:3rem;
    }
}

/*

    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;
}
@media(min-width:1200px){
    .google-map .map iframe{
        height:400px;
    }
}

/*

    FOOTER

---------- */
footer{
    margin-top:auto;
    padding:0;
    background-color:#cbdbd9;
}
.footer-contact-row{
    padding:2rem 1rem 0 1rem;
}
.footer-row-widgets{
    background-color:#010b0a;
    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;
    gap:0.5rem;
}
.footer-socials .socials a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:2rem;
    height:2rem;
    border:none;
    background-color:#073631;
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    font-size:1rem;
    line-height:1;
}
.footer-socials .socials a:hover{
    background-color:#8ca7a4;
    color:#073631;
}
#form-footer-newsletter{
    margin-top:1.5rem;
}
#form-footer-newsletter .form-alert{
    margin-bottom:0.75rem;
}
#form-footer-newsletter .newsletter-field{
    width:100%;
}
#form-footer-newsletter .input-group{
    max-width:520px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0.75rem;
}
#form-footer-newsletter .form-control{
    min-height:3.25rem;
    border:1px solid transparent;
    box-shadow:none;
    min-width:0;
    width:100%;
    border-radius:0.25rem !important;
}
#form-footer-newsletter .form-control.is-invalid{
    border-color:#dc3545;
}
#form-footer-newsletter .form-control:focus{
    box-shadow:none;
}
#form-footer-newsletter .btn{
    min-width:3.25rem;
    min-height:3.25rem;
    border:0;
    border-radius:0.25rem !important;
    background-color:#073631;
    color:#fff;
    font-size:1.2rem;
}
#form-footer-newsletter .btn:hover{
    background-color:#8ca7a4;
    color:#073631;
}
@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:#000;
    color:#ccc;
    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: #000;
    color:#8ca7a4;
    font-size:1.5rem;
    text-align:center;
    border-radius:50%;
    border:0;
    padding:0;
    cursor:pointer;
}
.bottom-bar .btns{
    color:#555;
    padding:1rem 0;
    line-height:1.4;
}
.bottom-bar a{
    display:inline-block;
    text-decoration:none;
    color:#ccc;
    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:#8ca7a4;
}
.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;
    }
}

.spec{
    display:flex;
    align-items:center;
    gap:5px;
}
.spec i{
    color:#8ca7a4;
}
.spec span{
    display:inline-block;
}
@media(min-width:992px){
    .spec{
        font-size:1.1rem;
        gap:10px;
    }
}

/*

    COOKIE BANNER

----------------- */
.cookies-container{
    background-color:rgba(0,0,0,.8);
    box-shadow:0 -18px 45px rgba(0,0,0,0.18);
    padding:1.25rem 0;
    text-align:left;
}
.cookies-inner{
    display:flex;
    flex-direction:column;
    gap:1rem;
}
.cookies-copy strong{
    display:block;
    color:#8ca7a4;
    font-family:"Besley";
    font-size:1.25rem;
    line-height:1.2;
    margin:0 0 0.35rem 0;
}
.cookies-container p{
    color:#fff;
    font-size:0.95rem;
    line-height:1.5;
    margin:0;
    max-width:820px;
}
.cookies-container p a{
    color:#8ca7a4;
    text-decoration:underline;
}
.cookies-container p a:hover{
    color:#fff;
}
.cookies-actions{
    display:flex;
    flex-wrap:wrap;
    gap:0.75rem;
}
.cookies-container .btn-cookies,
.cookies-container button.btn-cookies{
    appearance:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    margin:0;
    padding:0.85rem 1.15rem;
    border:solid 1px #8ca7a4;
    border-radius:5px;
    background-color:transparent;
    color:#8ca7a4;
    font-family:"Roboto", sans-serif;
    font-size:0.95rem;
    font-weight:700;
    line-height:1.1;
    text-decoration:none;
    cursor:pointer;
    transition:background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cookies-container .btn-cookies:hover,
.cookies-container button.btn-cookies:hover{
    background-color:#010b0a;
    border-color:#010b0a;
    color:#8ca7a4;
    box-shadow:none;
}
.cookies-container .btn-cookies.ok{
    background-color:#8ca7a4;
    border-color:#8ca7a4;
    color:#073631;
}
.cookies-container .btn-cookies.ok:hover{
    background-color:#fff;
    border-color:#fff;
    color:#073631;
}
@media(min-width:768px){
    .cookies-container{
        padding:1.5rem 0;
    }
    .cookies-inner{
        align-items:center;
        flex-direction:row;
        justify-content:space-between;
    }
    .cookies-actions{
        flex:0 0 auto;
        justify-content:flex-end;
    }
}

.btn-play{
    position:absolute;
    font-size:2rem;
    top:50%;
    left:50%;
    width:80px;
    height:80px;
    line-height:80px;
    background-color:rgba(255,255,255,0.8);
    border-radius: 50%;
    margin-left:-40px;
    margin-top:-40px;
    text-align:center;
    color:#073631;
    isolation:isolate;
    transition:background-color .25s ease, transform .25s ease;
}
.btn-play::before,
.btn-play::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    z-index:-1;
    background:linear-gradient(135deg, rgba(255,255,255,0), #ffffff, rgba(255,255,255,0.78), #ffffff);
    background-size:220% 220%;
    animation:btn-play-gradient 4s ease infinite;
}
.btn-play::before{
    inset:-6px;
    padding:3px;
    -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
}
.btn-play::after{
    opacity:.72;
    filter:blur(2px);
    animation:btn-play-pulse 2.4s ease-out infinite, btn-play-gradient 4s ease infinite;
}
.btn-play:hover{
    color:#073631;
    background-color:#fff;
    transform:scale(1.04);
}
@keyframes btn-play-gradient{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}
@keyframes btn-play-pulse{
    0%{
        transform:scale(.9);
        opacity:.85;
    }
    70%{
        transform:scale(1.75);
        opacity:0;
    }
    100%{
        transform:scale(1.75);
        opacity:0;
    }
}
@media(prefers-reduced-motion:reduce){
    .btn-play::before,
    .btn-play::after{
        animation:none;
    }
}
