
:root {
    --body-font-size:18px;
    --font1: "Inter", sans-serif;
    --font2: "";
    --activeColor:#F5F5F5;
    --activeColorHover:#FFF;
    --blu:#007BC1;
    --blulight:#3495CD;
    --grey:#7A878F;

    --lightgrey:#f8f9fa;
    --shadowgrey:#c9c9c9;
    --linegrey:#f0f0f0;
    --superlightgrey:#f5f5f5;
    --mediumgrey:#c9c9c9;

    --success:#e9f7d9;
    --green:#39b43d;
    --red:#ff0033;

    --white:#FFF;
    --white10:rgb(255 255 255 /10%);
    --white20:rgb(255 255 255 /20%);
    --white30:rgb(255 255 255 /30%);
    --white40:rgb(255 255 255 /40%);
    --white50:rgb(255 255 255 /50%);
    --white60:rgb(255 255 255 /60%);
    --white70:rgb(255 255 255 /70%);
    --white80:rgb(255 255 255 /80%);
    --white90:rgb(255 255 255 /90%);

    --black:#000;
    --black5:rgb(0 0 0 /5%);
    --black10:rgb(0 0 0 /10%);
    --black20:rgb(0 0 0 /20%);
    --black30:rgb(0 0 0 /30%);
    --black40:rgb(0 0 0 /40%);
    --black50:rgb(0 0 0 /50%);
    --black60:rgb(0 0 0 /60%);
    --black70:rgb(0 0 0 /70%);
    --black80:rgb(0 0 0 /80%);
    --black90:rgb(0 0 0 /90%);
}

/* ========================================
   GLOBAL STYLES
======================================== */

* {
    border-radius: 0;
}

body {
    font-family: var(--font1);
    font-size: var(--body-font-size);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--blu);
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6{
    font-weight: 200;
}
.pt-100{
    padding-top: 99px;
}
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.black{
    color: var(--black);
}

.bg-blu {
    background: var(--blu) !important;
    color: var(--white) !important;
}
.blu, .card .card-text.blu{
    color: var(--blu) !important;
}
a.whitelink{
    color: var(--white);
    transition: all 0.3s ease;
}

a.whitelink:hover{
    color: var(--white50);
    transition: all 0.3s ease;
}

.breadcrump {
    font-size: 12px;
}
.breadcrump a{
    
    color: var(--white50);
    transition: all 0.3s ease;
}
.breadcrump a:hover{
    color: var(--white);
    transition: all 0.3s ease;
}

.numerStep{
    font-size: 30px;
    border-top:1px solid var(--white);
    padding-top: 10px;
}

a:link,a:visited{
    color: var(--black);
    transition: all 0.3s ease;
}
a:hover{
    color: var(--black50);
    transition: all 0.3s ease;
}

a.cta-standard{
    color: var(--blu);
    border: 1px solid var(--white);
    border-radius: 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    padding: 10px 40px 10px 20px;
    background: url(../img/arrow-forward-long.svg)no-repeat center right var(--white);
    background-size: 12px;
    background-position-x: calc(100% - 20px);
    width: max-content;
    transition: all 0.3s ease;
    cursor: pointer;
}

a.cta-standard:hover{
    color: var(--blu);
    border: 1px solid var(--white70);
    border-radius: 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    padding: 10px 40px 10px 20px;
    background: url(../img/arrow-forward-long.svg)no-repeat center right var(--white70);
    background-size: 12px;
    background-position-x: calc(100% - 15px);
    width: max-content;
    transition: all 0.3s ease;
}

a.cta-standard-blu,
button.cta-standard-blu{
    color: var(--white);
    border: 1px solid var(--blu);
    border-radius: 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    padding: 10px 40px 10px 20px;
    background: url(../img/arrow-forward-long-w.svg)no-repeat center right var(--blu);
    background-size: 12px;
    background-position-x: calc(100% - 20px);
    width: max-content;
    transition: all 0.3s ease;
}

a.cta-standard-blu:hover,
button.cta-standard-blu:hover{
    color: var(--white);
    border: 1px solid var(--blulight);
    border-radius: 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    padding: 10px 40px 10px 20px;
    background: url(../img/arrow-forward-long-w.svg)no-repeat center right var(--blulight);
    background-size: 12px;
    background-position-x: calc(100% - 15px);
    width: max-content;
    transition: all 0.3s ease;
}

a.cta-standard-blu.nofrec,
button.cta-standard-blu.nofrec{
    color: var(--white);
    border: 1px solid var(--blu);
    background: var(--blu);
    border-radius: 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    padding: 10px 20px;
    width: max-content;
    transition: all 0.3s ease;
}

a.cta-standard-blu.nofrec:hover,
button.cta-standard-blu.nofrec:hover{
    color: var(--white);
    border: 1px solid var(--blu);
    background: var(--blu);
    transition: all 0.3s ease;
}


a.cta-standard-blu-outline,
button.cta-standard-blu-outline{
    color: var(--blu);
    border: 1px solid var(--blu);
    background: transparent;
    border-radius: 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    padding: 10px 20px;
    width: max-content;
    transition: all 0.3s ease;
}

a.cta-standard-blu-outline:hover,
button.cta-standard-blu-outline:hover{
    color: var(--white);
    border: 1px solid var(--blulight);
    background: var(--blu);
    transition: all 0.3s ease;
}


.argumentBan{
    position: relative;
}

.argumentBan .textOverlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.argumentBan .textOverlay small{
    font-size: 14px;
    line-height: 1em;
}
.argumentBan .textOverlay .centeBox{
     width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.argumentBan .overlay{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:var(--black30);
    z-index: 2;
    display: block;
}

.circleWhiteIcon{
    background: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circleWhiteIcon img{
    width: 50px;
}

.imgCtaWrap {
    position: relative;
}

.imgCtaWrap .ctaCustom{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.glassCta{
    background: var(--white40);
    border:1px solid var(--white);
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    padding: 10px 20px;
    width: max-content;
    cursor: pointer;
    color: var(--white) !important;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}
.glassCta:hover{
    background: var(--white);
    color: var(--blu) !important;
    transition: all 0.3s ease;
}

ul.nobullet li{
    list-style: none;
    margin-bottom: 10px;
}

a.faqlink{
    background: var(--white20);
    color: var(--white);
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
    line-height: 1.1em;
    display: flex;
}
a.faqlink:hover{
    color: var(--black);
    background: var(--white);
    transition: all 0.3s ease;
}

a.downloadlink{
    background: var(--white20);
    color: var(--white);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
    line-height: 1.1em;
}
a.downloadlink .dwn-but{
    display: flex; 
    align-items: center;
}

a.downloadlink:hover{
    color: var(--black);
    background: var(--white);
    transition: all 0.3s ease;
}

ul.pagination li.page-item a.page-link{
    color: var(--white);
    background: var(--white20);
    border-radius: 0;
    border:0;
    transition: all 0.3s ease;
}
ul.pagination li.page-item a.page-link:hover{
    background: var(--white40);
    transition: all 0.3s ease;
}
ul.pagination li.page-item.active a.page-link{
    color: var(--blu);
    background: var(--white);
}


/* ========================================
   TOP NAVIGATION BAR STYLES
======================================== */

#top_nav {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
}

#top_nav .navbar-brand img {
    height: 70px;
    width: auto;
}

#top_nav .navbar-nav .nav-link {
    font-family: var(--font1);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem !important;
}

#top_nav .navbar-nav .nav-link:hover {
    background-color: var(--white20);
    color: var(--white) !important;
}

#top_nav .dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 6px var(--black20);
    margin-top: 0;
}

#top_nav .dropdown-item {
    font-family: var(--font1);
    font-size: 14px;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
}

#top_nav .dropdown-item:hover {
    background-color: var(--superlightgrey);
    color: var(--blu);
}

/* Desktop Dropdown Hover Behavior */



@media (min-width: 992px) {
    #top_nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    #top_nav .dropdown-menu {
        margin-top: 0;
    }
}

#top_nav .btn-link {
    font-family: var(--font1);
    font-size: 14px;
    font-weight: 500;
    border: none;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

#top_nav .btn-link:hover {
    color: var(--white90) !important;
}

#top_nav .btn-white {
    font-family: var(--font1);
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
}

#top_nav .btn-white:hover {
    background-color: var(--superlightgrey) !important;
    color: var(--blu) !important;
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    #top_nav .navbar-collapse {
        background-color: var(--blu);
        margin-top: 1rem;
        padding: 1rem 0;
    }
    
    #top_nav .navbar-nav {
        margin-bottom: 1rem;
    }
    
    #top_nav .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: none;
    }
    
    #top_nav .d-flex {
        justify-content: flex-end;
        align-items: center;
        padding-top: 1rem;
        border-top: none;
    }
    
    /* Mobile search button positioning */
    #top_nav .d-lg-none .btn-link {
        margin-right: 30px;
    }
    
    /* Show chevron icons in mobile */
    #top_nav .nav-link .fa-chevron-down {
        display: inline !important;
    }
    
    /* Hide dropdown menus by default in mobile */
    #top_nav .dropdown-menu {
        display: none;
    }
    
    /* Align dropdown links to the left in mobile */
    #top_nav .navbar-nav .dropdown .nav-link {
        justify-content: flex-start !important;
        text-align: left !important;
    }
}

/* Navbar Toggler Custom Styles */
#top_nav .navbar-toggler {
    padding: 0.25rem 0.5rem;
    background: transparent;
}

#top_nav .navbar-toggler:focus {
    box-shadow: none;
}

/* Hide Bootstrap dropdown arrows */
#top_nav .dropdown-toggle::after {
    display: none;
}

/* Chevron icon styling */
#top_nav .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

a.hublnk{
    font-size: 15px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
a.hublnk:hover{
    opacity:0.5; 
    transition: all 0.3s ease;
}


.worldMapper{
    /* width: 100%;
    height: 900px;
    background: url(../img/map.png)no-repeat top center var(--blu);
    background-size: cover; */
    color: var(--white);
    background: var(--blu);
}

.mapWrapper{
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.mapWrapper .mapDesc{
    position: absolute;
    top: 50px;
    width: 100%;
    z-index: 2;
}
.worldMapperMobileDesc,
.worldMapperMobileLocations{
    display: none;
    background: var(--blu);
    color: var(--white);
    line-height: 1em;
}

.mapPointers{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}
.mapPointers .dot_circle{
    width: 15px;
    height: 15px;
    background: var(--white);
    display: block;
    border-radius: 50%;
}


.mapPointers .location{
    width: 300px;
    transition: all 0.3s ease;
}

.mapPointers .location.n_01{
    position: absolute;
    top: 35%;
    left: 16%;
    z-index: 2;
}
.mapPointers .location.n_02{
    position: absolute;
    top: 63%;
    left: 12%;
    z-index: 3;
}
.mapPointers .location.n_03{
    position: absolute;
    top: 43%;
    left: 74%;
    z-index: 4;
}

.mapPointers .location.n_04{
    position: absolute;
    top: 49.5%;
    left: 74%;
    z-index: 4;
}

.mapPointers .location .location_info{
    display: flex;
    width: 60px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.mapPointers .location.n_04 .location_info{
    display: flex;
    width: 60px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 5px;
}
.mapPointers .location:hover .location_info{
    width: 100%;
    transition: all 0.3s ease;
}
.mapPointers .location .location_info .location_thumb{
    width: 60px;
    height: 60px;
}
.mapPointers .location .location_info .location_thumb img{
    object-fit: cover;
     width: 60px;
    height: 60px;
}
.mapPointers .location .location_info .location_address{
    font-size: 13px;
    line-height: 1em;
    height: 60px;
    background: var(--white);
    color: var(--blu);
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.mapPointers .location:hover .location_info .location_address{
    opacity: 1;
    transition: all 0.3s ease;
}
.mapPointers .location .location_info .location_address .location_address_wrap{
    padding: 10px;
    overflow: hidden;
}

.wFull{
    background: url(../img/w-full.png)no-repeat bottom center var(--blu);
    background-size: cover;
    color: var(--white);
}

.wFull2{
    background: url(../img/w-full2.png)no-repeat bottom center var(--blu);
    background-size: cover;
    color: var(--white);
}

a.accBut{
    margin-top:1px;
}

a.accBut[aria-expanded="false"]{
    background: url(../img/arrow-down.svg)no-repeat center right var(--white20);
    background-size: 20px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-position: calc(100% - 20px);
    color: var(--white);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding:20px;
}
a.accBut[aria-expanded="true"]{
    background: url(../img/arrow-up.svg)no-repeat center right var(--white);
    background-size: 20px;
    background-position: calc(100% - 20px);
    color: var(--blu);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding:10px 20px;
}
.accDesc{
    color: var(--blu);
    padding:20px;
    background: var(--white);
}

a.cardImgWrap{
    display: block;
    transition: all 0.3s ease-in-out;
}

a.cardImgWrap:hover{
    opacity: 0.5; 
    transition: all 0.3s ease-in-out;
}

a .specialCard{
    position: relative;
}
a .specialCard .icoWrap{
    position: absolute;
    top: 30px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: var(--black50);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--white);
}
a .specialCard.forProduct .icoWrap{
    position: absolute;
    top: 0;
    left: 0;
    padding:30px 30px 0 30px;
    width: 100%;
    height: 280px;
    background: transparent;
    z-index: 6;
    border-bottom: 0;
    display: block;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
a .specialCard .icoWrap img{
    width: 40px;
}
a .specialCard.forProduct .icoWrap img{
    height: 100%;
    width: auto;
}
a .specialCard .titleWrap{
    position: absolute;
    top: 300px;
    width: 100%;
    padding: 0 20px;
    z-index: 5;
    font-size: 26px;
    font-weight: 300;
    color: var(--white);
}

a .specialCard.forProduct .titleWrap{
    position: absolute;
    top: 300px;
    width: 100%;
    padding: 0 20px;
    z-index: 5;
    font-size: 26px;
    font-weight: 300;
    color: var(--blu);
}
a .specialCard .butWrap{
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 4;
    color: var(--blu);
    background: var(--white);
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}
a:hover .specialCard .butWrap{
    margin:20px;
    transition: all 0.3s ease-in-out;
    width: calc(100% - 40px);
}
a .specialCard .imgWrap:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    display: block;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

a .specialCard.forProduct .imgWrap:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: transparent;
    display: block;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

a .specialCard .imgWrap:after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 80px;
    width: 100%;
    background: var(--blu);
    display: block;
    z-index: 3;
    transition: all 0.3s ease-in-out;
}

a .specialCard.whitebg .imgWrap:after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 80px;
    width: 100%;
    background: var(--white);
    display: block;
    z-index: 3;
    transition: all 0.3s ease-in-out;
}

a:hover .specialCard .imgWrap:after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 0;
    width: 100%;
    background: var(--blu);
    display: block;
    z-index: 3;
    transition: all 0.3s ease-in-out;
}
a:hover .specialCard.whitebg .imgWrap:after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 0;
    width: 100%;
    background: var(--white);
    display: block;
    z-index: 3;
    transition: all 0.3s ease-in-out;
}

.customForm .form-floating input,
.customForm .form-check-input{
    border-radius: 0;
}
.customForm .form-check-label{
    color: var(--grey);
    font-size: 13px;
}
.customForm .form-check-input:checked {
    background-color: var(--blu);
    border-color:var(--blu);
}

/* ========================================
   HERO VIDEO SECTION STYLES
======================================== */

.hero-video-section {
    height: 800px;
    background: linear-gradient(135deg, var(--blu) 0%, #005a8b 100%);
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    background-color: var(--black30);
    z-index: 2;
}

.hero-content {
    z-index: 3;
    position: absolute;
    text-align: left;
    width: 100%;
    /* bottom: 80px; */
    top: 50px;
}


@media (min-width: 768px) and (max-width: 1024px) {
    a .specialCard.forProduct .icoWrap{
        height: 180px;
    }
    a .specialCard.forProduct .titleWrap {
        top: 175px;
        font-size: 26px;
    }
}

/* Fallback when video is not available */

.hero-video-section{
   position: relative;
}

/* .hero-video-section:after{
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   z-index: 2;
   display: block;
   height: 100%;
   width: 100%;
   background: url(../img/w.svg)no-repeat center right;
   background-size: contain;
   background-position-x: calc(100% + 30px);
} */

.hero-video-section .col-md-12 {
    height: 800px;
    display: flex;
    align-items: center;
    
}

.hero-subtitle {
    font-family: var(--font1);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font1);
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-content .btn {
    font-family: var(--font1);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    text-transform: lowercase;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    background-color: var(--white);
    color: var(--blu);
    border-color: var(--white);
}

.heroSection{
    position: relative;
    color: var(--white);
    margin-top: 80px;
}
.heroSection .overText{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
}
.heroSection .overText .preTitle{
    text-transform: uppercase;
}

.story-carousel .card-header,
.story-carousel .card-footer{
    padding: 30px;
    height:250px
}
.story-carousel .card-header{
    display: flex;
    align-items: end;
    position: relative;
}
.story-carousel .card-header:after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background: var(--blu);
}
.story-carousel .info{
    padding: 0 20px;
}
.story-carousel .info p{
    font-size: 12px;
}
.story-carousel .card-header{
    border-bottom: 1px solid var(--black10);
}



/* Mobile Responsive */
@media (max-width: 767.98px) {
    .hero-video-section {
        height: 800px;
    }
    
    .hero-content {
        padding: 20px;
        width: auto;
    }
    
    .hero-content .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .hero-content .btn {
        font-size: 14px;
        padding: 10px 25px;
    }

    .hero-video-section:after{
        background-size: initial;
    }
    .worldMapper .mapDesc{
        display: none;
    }
    .worldMapperMobileDesc,
    .worldMapperMobileLocations{
        display: block;
    }
    .mapPointers .location .location_info{
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* ========================================
   FOOTER STYLES
======================================== */

.site-footer {
    background-color: var(--blu);
}

.site-footer h5 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.8;
}

.site-footer p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.site-footer .social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid var(--white30);
    margin-right: 5px;
    transition: all 0.3s ease;
}

.site-footer .social-icons a:hover {
    background-color: var(--white);
    color: var(--blu) !important;
}

.site-footer .footer-links li {
    margin-bottom: 10px;
}

.site-footer .footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.site-footer .footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    transition: left 0.3s ease;
}

.site-footer .footer-links a:hover {
    opacity: 0.7;
}

.site-footer .footer-links a:hover::before {
    left: 5px;
}

.site-footer hr {
    border-color: var(--white30);
}

/* ========================================
   SETTORI CAROUSEL STYLES
======================================== */

.settori-carousel-section {
    padding: 80px 0;
    overflow: hidden;
}

.settori-carousel .item {
    padding: 0;
}

.settore-card {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.settore-card .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.8) contrast(1.1);
}

.settore-card:hover .img-cover {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.settore-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%), var(--black40);
    z-index: 1;
}

.settore-card .card-content {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: var(--white);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.settore-card .icon-box {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-bottom: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.settore-card .icon-box img{
    max-width: 40px;
    max-height: 40px;
}

.settore-card h3 {
    font-weight: 300;
    font-size: 2rem;
    margin-top: auto;
}

.scopri-di-piu {
    display: block;
    background: url(../img/arrow-forward-long.svg) no-repeat center right var(--white);
    background-position-x: calc(100% - 20px);
    background-size: 12px;
    color: var(--blu);
    text-align: center;
    padding: 20px 40px 20px 20px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.scopri-di-piu:hover {
    background-color: var(--superlightgrey);
    color: var(--blu);
    background-position-x: calc(100% - 15px);
}

.scopri-di-piu .fas {
    transition: transform 0.3s ease;
}

.scopri-di-piu:hover .fas {
    transform: translateX(5px);
}

.settori-carousel.owl-theme .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.settori-carousel.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 7px;
    background: var(--white50);
    transition: all 0.3s ease;
}

.settori-carousel.owl-theme .owl-dots .owl-dot.active span,
.settori-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
}

.settori-carousel-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.settori-carousel-section .owl-nav button.owl-prev,
.settori-carousel-section .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: var(--white20) !important;
    color: var(--white) !important;
    border-radius: 0 !important;
    font-size: 24px !important;
    line-height: 1;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: all;
}

.story-carousel-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.story-carousel-section .owl-nav button.owl-prev,
.story-carousel-section .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: var(--blu) !important;
    color: var(--white) !important;
    border-radius: 0 !important;
    font-size: 24px !important;
    line-height: 1;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: all;
    border: 1px solid var(--linegrey) !important;
    transition: all 0.3s ease;
}

.story-carousel-section:hover .owl-nav button.owl-prev,
.story-carousel-section:hover .owl-nav button.owl-next {
    opacity: 1;
}

.story-carousel-section .owl-nav button.owl-prev {
    margin-left: 25px;
}

.story-carousel-section .owl-nav button.owl-next {
    margin-right: 25px;
}

.story-carousel-section .owl-nav button.owl-prev:hover,
.story-carousel-section .owl-nav button.owl-next:hover {
    opacity: 0.8;
}

.settori-carousel-section:hover .owl-nav button.owl-prev,
.settori-carousel-section:hover .owl-nav button.owl-next {
    opacity: 1;
}

.settori-carousel-section .owl-nav button.owl-prev {
    margin-left: 25px;
}

.settori-carousel-section .owl-nav button.owl-next {
    margin-right: 25px;
}

.settori-carousel-section .owl-nav button.owl-prev:hover,
.settori-carousel-section .owl-nav button.owl-next:hover {
    background: var(--white) !important;
    color: var(--blu) !important;
}


/******************************************************************
    FAQ
*******************************************************************/
.faq .accordion-item {
    border: none;
    border-bottom: 1px solid var(--linegrey);
}

.faq .accordion-button {
    background-color: transparent;
    color: var(--black);
    font-weight: bold;
    padding: 1.5rem 0;
}

.faq .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--blu);
    box-shadow: none;
}

.faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.faq .accordion-button::after {
    background-image: url(../img/arrow-forward-long.svg);
    background-size: 20px;
    transform: rotate(-90deg);
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: url(../img/arrow-forward-long.svg);
    background-size: 20px;
    transform: rotate(90deg);
}

.faq .accordion-body {
    padding: 0 0 1.5rem 0;
}

/******************************************************************
    CAROUSEL MERCATO
*******************************************************************/
.carousel-mercato .card {
    border: none;
    border-radius: 0;
}

.carousel-mercato .card-body {
    padding: 1rem 0;
}

.carousel-mercato .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-mercato .owl-nav button.owl-prev,
.carousel-mercato .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: var(--white20) !important;
    color: var(--blu) !important;
    border-radius: 0;
    font-size: 24px !important;
    line-height: 1;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: all;
    border: 1px solid var(--linegrey) !important;
}

.carousel-mercato:hover .owl-nav button.owl-prev,
.carousel-mercato:hover .owl-nav button.owl-next {
    opacity: 1;
}

.carousel-mercato .owl-nav button.owl-prev {
    margin-left: -25px;
}

.carousel-mercato .owl-nav button.owl-next {
    margin-right: -25px;
}

.carousel-mercato .owl-nav button.owl-prev:hover,
.carousel-mercato .owl-nav button.owl-next:hover {
    background: var(--white) !important;
    color: var(--blu) !important;
}


.owl-market-details .item{
    
    line-height: 1.2em;
}
.owl-market-details .card-title{
    font-size: 20px;
    height: 60px;
    display: flex;
    align-items: end;
    width: 100%;
    margin-bottom: 20px;
    color: var(--blu);
}
.owl-market-details .card-title .box{
    border-top: 1px solid var(--blu);
    padding-top: 7px;
    width: 100%;
}
.owl-market-details .card-text{
    font-size: 13px;
    color: var(--blu);
}

/******************************************************************
    CAROUSEL MERCATI PRODOTTO
*******************************************************************/
.owl-prd-mercati {
    margin-top: 30px;
}

.owl-prd-mercati .item {
    padding: 0 10px;
}

.owl-prd-mercati.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-prd-mercati.owl-carousel .owl-nav button.owl-prev,
.owl-prd-mercati.owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: var(--white20) !important;
    color: var(--blu) !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    line-height: 1;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: all;
    border: 1px solid var(--linegrey) !important;
}

.owl-prd-mercati.owl-carousel:hover .owl-nav button.owl-prev,
.owl-prd-mercati.owl-carousel:hover .owl-nav button.owl-next {
    opacity: 1;
}

.owl-prd-mercati.owl-carousel .owl-nav button.owl-prev {
    margin-left: -25px;
}

.owl-prd-mercati.owl-carousel .owl-nav button.owl-next {
    margin-right: -25px;
}

.owl-prd-mercati.owl-carousel .owl-nav button.owl-prev:hover,
.owl-prd-mercati.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--white) !important;
    color: var(--blu) !important;
}

.owl-prd-mercati.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-prd-mercati.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: var(--mediumgrey);
    transition: all 0.3s ease;
}

.owl-prd-mercati.owl-carousel .owl-dots .owl-dot.active span,
.owl-prd-mercati.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--blu);
}



.blogNewsList .col .imgWrapper{
	position: relative;
	overflow: hidden;
}

.blogNewsList .col .imgWrapper .goodDate{
	position: absolute;
	bottom: 0;
	transform: translateY(100%);
	left: 0;
	text-align: right;
	background: var(--blu);
	color: var(--white);
	width: 100%;
	padding: 10px 20px;
	transition: all 0.3s ease-in-out;
}

.blogNewsList .col a:hover .imgWrapper .goodDate{
	transform: translateY(0%);
}


.blogNewsList .col .imgWrapper .newsTag{
	position: absolute;
	top: 0px;
	left:0px;
	padding: 15px;
	z-index: 2;
    font-size: 12px;
}
.blogNewsList .col .imgWrapper .newsTag span{
	background: var(--white);
	color: var(--black);
	padding: 3px 10px;
	margin-right: 5px;
	margin-bottom: 5px;
	border-radius: 0px;
}