@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: cerapro;
    src: url(../fonts/Cera-Pro-Bold.otf);
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: cerapro;
    src: url(../fonts/Cera-Pro-Medium.otf);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: cerapro;
    src: url(../fonts/Cera-Pro-Light.otf);
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: tenorite;
    src: url(../fonts/tenorite-bold.ttf);
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: tenorite;
    src: url(../fonts/tenorite-regular.ttf);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root{
    --light: #F6F6F6;
    --light2: #FAFAFA;
    --light3: #F5F5F5;
    --primary: #FF9D00;
    --body: #787878;
    --gradient1: linear-gradient(90deg, #fff 10%, #000 100%);
    --gradient2: linear-gradient(90deg, #D6B037 30%, rgba(255, 255, 255, 0.2) 100%);
    --gradient3: linear-gradient(90deg, rgba(232, 232, 232, 0.1) 0%, rgba(137, 137, 137, 0.75) 13%, #000 33%);
    --gradient2_180: linear-gradient(180deg, #D6B037 30%, rgba(255, 255, 255, 0.2) 100%);
    --gradient4: linear-gradient(90deg, #A3D5D4 30%, rgba(255, 255, 255, 0.2) 100%);
    --gradient5: linear-gradient(90deg, #B77B59 30%, rgba(255, 255, 255, 0.2) 100%);
    --gradient6: linear-gradient(90deg, #F18D82 30%, rgba(255, 255, 255, 0.2) 100%);
    --gradient7: linear-gradient(90deg, #CAC6D7 30%, rgba(255, 255, 255, 0.2) 100%);
}
html{
    font-size: 16px;
}
body{
    font-family: tenorite;
    font-weight: 400;
    font-size: 1rem;
    color: var(--body);
}
h1, h2, h3, h4, h5, h6{
    font-family: cerapro;
}
.f-18{font-size: 1.125rem;}
.lh-17{line-height: 1.7 !important;}
.cerapro{
    font-family: cerapro;
}
.tenorite{
    font-family: tenorite;
}
a,a:hover{
    color: inherit;
    text-decoration: none;
}
.light-bg{
    background-color: var(--light) !important;
}
.light-bg2{
    background-color: var(--light2) !important;
}
.light-bg3{
    background-color: var(--light3) !important;
}
.primary-text{
    color: var(--primary);
}
.border-primary{
    border-color: var(--primary) !important;
}
.gradient1{
    background: var(--gradient1);
}
.gradient2{
    background: var(--gradient2);
}
.gradient3{
    background: var(--gradient3);
}
.nav-link{
    color: #000;
}
.common-uc {
    text-transform: uppercase;
}
.common-btn{
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #fff;
    border-radius: 3.5rem;
    padding: 1rem 1.5rem;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    text-decoration: none!important;
}
.common-btn.underline{
    text-decoration: underline;
}
.common-btn.hover{
    background-color: transparent;
    color: var(--primary);
}
.common-btn.sm{
    padding: .5rem 1.25rem;
}
.cta{
    letter-spacing: 10%;
}
.common-btn:hover{
    background: var(--light);
    color: var(--primary);
}
.common-btn.hover:hover{
    background-color: var(--primary);
    color: #fff;
}
.common-btn.withicon img{
    filter: brightness(0) invert(1);
    transition: all .3s ease;
}
.common-btn.withicon:hover img{
    filter: none;
}
.common-btn.withicon.hover img {
    filter: none;
    width: 15px;
    margin: 0px 3px;
}
.common-btn.withicon.hover:hover img{
    filter: brightness(0) invert(1);
}


.arrow{
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background: url(../images/arrow-right.svg) no-repeat center center;
    background-size: 50%;
    background-color: var(--primary);
}
.cta-btn{
    display: inline-block;
    width: 150px;
    height: 150px;
    position: relative;
    border: 5px solid #233D4D;
    transition: all 0.3s ease-in-out;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 1rem;
    background-color: #fff;
    color: #455A64;
    text-align: left;
    padding: .5rem 1rem;
    line-height: 1.2;
    transition: all .3s ease;
    text-transform: uppercase;
}
.cta-btn svg{
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
.cta-btn:hover{
    background-color: #f8a100;
    color: #fff;
}
.cta-btn svg path{
    fill: #233D4D;
    transition: all .3s ease;
}
.cta-btn:hover svg path{
    fill: #fff;
}
header{
    font-family: cerapro;
}
header.home-top{
    position: absolute;
    top: 0;
    z-index: 9;
    width: 100%;
}
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item small{
    font-family: tenorite;
}
.dropdown-item.active, .dropdown-item:active {
    color: #212529;
    background-color: var(--bs-dropdown-link-hover-bg);
}



.trusted-slider .slick-track{
    display: flex;
    align-items: center;
}
.bg-cyan{
    background-color: #455A64;
}
.purpose1{
    background: var(--gradient2);
}
.purpose2{
    background: var(--gradient4);
}
.purpose3{
    background: var(--gradient5);
}
.purpose4{
    background: var(--gradient6);
}
.purpose5{
    background: var(--gradient7);
}

.component-bg{
    background-color: #263238;
}
.non-component h2, .non-component h3{
    color: #263238;
}
.non-component .desc{
    color: #455A64;
}

.timeline{
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    /* background-color: #dedede; */
}
.timeline-track{
    display: flex;
    width: 500vw;
    height: 100vh;
    will-change: transform;
}
.slide{
    flex: 0 0 100vw;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.slide-shell{
    position: relative;
    width: 100%;
    height: 100%;
}
.slide-card{
    position: relative;
    overflow: visible;
}
.slide-copy{
    position: absolute;
    z-index: 3;
}
.slide-title{
    margin: 0;
    font-family: cerapro;
    font-weight: 600;
    line-height: .95;
    text-transform: uppercase;
}
.slide-description{
    font-family: tenorite;
    font-weight: 400;
    line-height: 1.45;
}
.slide-media{
    position: absolute;
    z-index: 4;
}
.slide-year{
    position: absolute;
    z-index: 2;
    font-family: cerapro;
    font-weight: 700;
    line-height: .78;
    white-space: nowrap;
    pointer-events: none;
}
.slide--orange .slide-card{
    background-color: #f8a100;
}
.slide--orange .slide-title,
.slide--orange .slide-description{
    color: #fff;
}
.slide--orange .slide-year{
    color: rgba(255, 230, 182, .62);
}
.slide--navy .slide-card{
    background-color: #274357;
}
.slide--navy .slide-title{
    color: var(--primary);
}
.slide--navy .slide-description{
    color: #fff;
}
.slide--navy .slide-year{
    color: rgba(94, 145, 177, .58);
}
.slide-image{
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transform: translateZ(0);
    will-change: transform, opacity;
}
.slide--spark .slide-card{
    /* width: min(82vw, 860px);
    height: min(41vw, 424px); */
    width: calc(100% - 150px);
    height: calc(100vh - 100px);
    margin: 50px auto;
}
.slide--spark .slide-copy{
    top: 0;
    left: 34px;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px 0;
}
.slide--spark .slide-title{
    font-size: 5.5vw;
}
.slide--spark .slide-description{
    max-width: 80%;
    margin-top: 294px;
    font-size: 2vw;
}
.slide--spark .slide-media{
    right: -78px;
    bottom: 0;
    width: 60%;
    height: 100%;
}
.slide--spark .slide-year{
    left: -66px;
    top: calc(50% - 15%);
    font-size: 25vw;
    letter-spacing: -10%;
    height: 40%;
    display: inline-flex;
    align-items: center;
}

.slide--reva .slide-card{
    /* width: min(67vw, 690px);
    height: min(37vw, 360px); */
    width: calc(100% - 150px);
    height: calc(100vh - 100px);
    margin: 50px auto;
}
.slide--reva .slide-copy{
    right: 0;
    bottom: 110px;
    width: 40%;
}
.slide--reva .slide-title{
    font-size: 7vw;
    font-style: italic;
}
.slide--reva .slide-description{
    max-width: 300px;
    font-size: 1.5vw;
}
.slide--reva .slide-media {
    left: -100px;
    top: 0;
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide--reva .slide-year{
    right: -18px;
    top: 30%;
    font-size: 24vw;
    letter-spacing: -10%;
    height: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slide--exports .slide-card{
    /* width: min(72vw, 746px);
    height: min(40vw, 392px); */
    width: calc(100% - 150px);
    height: calc(100vh - 100px);
    margin: 50px auto;
}
.slide--exports .slide-copy{
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    padding: 6% 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.slide--exports .slide-title{
    font-size: 5vw;
}
.slide--exports .slide-description{
    /* max-width: 300px; */
    margin-top: 286px;
    font-size: 2vw;
}
.slide--exports .slide-media{
    right: -86px;
    top: 0;
    width: 60vw;
    height: 100%;
    display: flex;
    align-items: center;
}
.slide--exports .slide-year{
    left: -86px;
    top: 0;
    font-size: 25vw;
    letter-spacing: -10%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide--future .slide-card{
    /* width: min(68vw, 720px);
    height: min(39vw, 392px); */
    width: calc(100% - 150px);
    height: calc(100vh - 100px);
    margin: 50px auto;
}
.slide--future .slide-copy{
    top: 0;
    left: 47%;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5% 0;
}
.slide--future .slide-title{
    font-size: 4vw;
}
.slide--future .slide-description{
    /* max-width: 400px; */
    margin-top: 272px;
    font-size: 2vw;
}
.slide--future .slide-media{
    left: -50px;
    top: 0;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
}
.slide--future .slide-year{
    left: 47%;
    top: 25%;
    font-size: 25vw;
    letter-spacing: -12%;
    height: 50%;
    display: inline-flex;
    align-items: center;
}

.slide--next-wave .slide-card{
    /* width: min(73vw, 760px);
    height: min(40vw, 392px); */
    width: calc(100% - 150px);
    height: calc(100vh - 100px);
    margin: 50px auto;
}
.slide--next-wave .slide-copy{
    top: 0;
    left: 0;
    width: 46%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5% 30px;
}
.slide--next-wave .slide-title{
    font-size: 5vw;
}
.slide--next-wave .slide-description{
    max-width: 100%;
    margin-top: 310px;
    font-size: 2vw;
}
.slide--next-wave .slide-media{
    right: -76px;
    top: 0;
    width: 55vw;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.slide--next-wave .slide-year{
    left: -60px;
    top: 30%;
    font-size: 25vw;
    letter-spacing: -12%;
    height: 50%;
    display: flex;
    align-items: center;
}





/*Footer*/
footer{
    background-color: #5A6A75;
}
.copyright{
    font-size: .75rem;
}
.social a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: all .3s ease;
}
.social a:hover{
    background-color: #fff;
}
.social a.whatsapp:hover{
    border-color: #25D366;
}
.social a.linkedin:hover{
    border-color: #0072B1;
}
.social a.whatsapp:hover svg path{
    fill: #25D366;
}
.social a.linkedin:hover svg path{
    fill: #0072B1;
}
.pos-btn{
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 4rem;
    background-color: rgba(255, 157, 0, 1);
    color: #fff;
    transition: all .3s ease;
    padding: .5rem 1.5rem;
    text-transform: uppercase;
}
.pos-btn:hover{
    background-color: #FF9D00;
    color: #fff;
}
.contact-card{
    background-color: #fff;
    transition: background-color .2s ease, transform .4s ease;
}
.contact-card:hover{
    transform: translateY(-.5rem);
    background-color: var(--primary);
    color: #fff;
}
/*Home page solutions section*/
.home-solutions {
    height: 420px;
}
/* Cards */
.home-solutions .hs {
    flex: 1;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    text-align: center;
}
/* Image */
.hsimg {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}
/* Caption */
.hs-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: all 0.4s ease;
}
/* Hide description initially */
.hs-cap-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* =========================
   HOVER EFFECT
========================= */

/* Expand hovered */
.home-solutions:hover .hs {
    flex: 0.8;
}
.home-solutions .hs:hover {
    flex: 1.2;
    text-align: left;
}
/* Show description */
.home-solutions .hs:hover .hs-cap-description {
    opacity: 1;
    transform: translateY(0);
}
.policy-block h2,
.policy-block h3,
.policy-block h4,
.policy-block h5,
.policy-block h6{
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.custom-tab-head{
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
}
.custom-tab-head::after{
    content: '';
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2219%22%20height%3D%2219%22%20viewBox%3D%220%200%2019%2019%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M11.2305%207.42188H18.2617V11.1914H11.2305V18.6914H7.05078V11.1914H0V7.42188H7.05078V0H11.2305V7.42188Z%22%20fill%3D%22%23787878%22/%3E%3C/svg%3E");
    background-size: 1rem;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all .3s ease;
}
.custom-tab-head.active::after{
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%225%22%20viewBox%3D%220%200%2020%205%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200H19.8242V4.02344H0V0Z%22%20fill%3D%22%23787878%22/%3E%3C/svg%3E");
}
.custom-tab-content{display: none; padding-top: 1rem;}


@media screen and (min-width: 768px){
    .cta-btn{
        transform: translateY(-50%);
    }
    .ratio-md-1{
        aspect-ratio: 1 / 1;
    }
}
@media screen and (min-width: 992px){
    .navbar{
        border-radius: 50rem;
    }
    .navbar-expand-lg .navbar-nav .nav-item:not(:first-child){
        margin-left: 4rem;
    }
    .navbar-expand-lg .navbar-nav .nav-link{
        font-size: 1.25rem;
        padding-top: 0;
        padding-bottom: 0;
    }
    .dropdown-toggle::after {
        margin-left: .5em;
        vertical-align: .1em;
        border-top: .4em solid;
        border-right: .4em solid transparent;
        border-left: .4em solid transparent;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu{
        display: block;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transform-origin: top;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu.show{
        transition: .5s ease;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item{
        padding-top: .5rem;
        padding-bottom: .5rem;
        font-size: 1.25rem;
        line-height: 1.3;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item small{
        color: #8C8C8C;
        font-size: .875rem;
    }
    .career-cta{
        background-image: url(../images/career-cta.png);
        background-position: 0 100%;
        background-repeat: no-repeat;
        background-size: 19%;
    }
    .custom-tab-content{
        padding-left: 20%;
    }
    .purpose-sticky {
        position: absolute;
        top: 50%;
        right: 2rem;
        width: min(50%, 450px);
        transform: translateY(-50%);
        z-index: 1;
        text-align: right;
        pointer-events: none;
    }
    .purpose{
        height: 400px;
    }
}
@media screen and (min-width: 1200px){
    .pos{
        height: 100%;
    }
    .pos-btn{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0;
        font-size: 1.25rem;
        font-weight: 700;
        opacity: 0;
        visibility: hidden;
    }
    .pos:hover .pos-btn{
        color: #fff;
        opacity: 1;
        visibility: visible;
        background-color: rgba(255, 157, 0, .8);
    }
}
@media screen and (min-width: 1350px){
    .container{
        max-width: 1290px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199.98px){
    .timeline{
        min-height: auto;
        padding: 2rem 0;
    }
    .timeline-track{
        display: grid;
        width: auto;
        height: auto;
        gap: 1.5rem;
        will-change: auto;
    }
    .slide{
        width: 100%;
        height: auto;
        display: block;
    }
    .slide-shell{
        width: auto;
        height: auto;
    }
    .slide-card{
        width: auto !important;
        height: auto !important;
        min-height: 0;
        margin: 0 1rem !important;
        padding: 1.5rem 1.25rem 1.5rem;
        overflow: hidden;
        border-radius: 1.25rem;
    }
    .slide-copy{
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: auto !important;
        padding: 0 !important;
        z-index: 3;
    }
    .slide-title{
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
    .slide-description{
        max-width: none !important;
        margin-top: 1rem !important;
        font-size: 1rem !important;
    }
    .slide-media{
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: auto !important;
        margin-top: 1.5rem;
    }
    .slide-year{
        right: 1rem !important;
        left: auto !important;
        top: auto !important;
        font-size: clamp(4.5rem, 20vw, 7rem) !important;
        display: block !important;
        height: auto !important;
    }
    .slide-image{
        max-height: 280px;
        margin-left: auto;
    }
}

@media screen and (max-width: 991.98px){
    body{
        margin-top: 81px;
    }
    header,header.home-top{
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 999;
    }
    .home-solutions {
        height: auto;
    }
    .home-solutions .hs {
        flex: 1 1 100%;
        text-align: left;
    }
    .hs-caption{
        position: relative;
    }
    /* Always show content on mobile */
    .hs-cap-description {
        opacity: 1;
        transform: none;
    }
    /* Remove hover resizing */
    .home-solutions:hover .hs,
    .home-solutions .hs:hover {
        flex: 1;
    }
    .hsimg {
        position: absolute;
        top: 0;
        left: 0;
    }
    .timeline {
        min-height: calc(100vh - 81px);
        min-height: calc(100svh - 81px);
        overflow: hidden;
    }
    .timeline-track {
        width: 500vw;
        height: calc(100vh - 81px);
        height: calc(100svh - 81px);
        display: flex;
        will-change: transform;
    }
    .slide {
        flex: 0 0 100vw;
        width: 100vw;
        height: calc(100vh - 81px);
        height: calc(100svh - 81px);
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .slide-shell {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slide-card,
    .slide--spark .slide-card,
    .slide--reva .slide-card,
    .slide--exports .slide-card,
    .slide--future .slide-card,
    .slide--next-wave .slide-card {
        width: 100%;
        max-width: 430px;
        height: auto;
        min-height: min(570px, calc(100vh - 115px));
        min-height: min(570px, calc(100svh - 115px));
        max-height: calc(100vh - 115px);
        max-height: calc(100svh - 115px);
        margin: 0 auto;
        padding: 1.25rem;
        border-radius: 1.25rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1rem;
    }
    .slide-card::before {
        content: '';
        position: absolute;
        left: 1.25rem;
        right: 1.25rem;
        top: clamp(6.6rem, 18vw, 6.1rem);
        height: 2px;
        background-color: rgba(255, 255, 255, .42);
        z-index: 1;
    }
    .slide--navy .slide-card::before {
        background-color: rgba(255, 157, 0, .55);
    }
    .slide-copy,
    .slide--spark .slide-copy,
    .slide--reva .slide-copy,
    .slide--exports .slide-copy,
    .slide--future .slide-copy,
    .slide--next-wave .slide-copy {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        padding: 0;
        display: block;
        order: 2;
        z-index: 3;
    }
    .slide-title,
    .slide--spark .slide-title,
    .slide--reva .slide-title,
    .slide--exports .slide-title,
    .slide--future .slide-title,
    .slide--next-wave .slide-title {
        font-size: clamp(2.15rem, 10vw, 2rem);
        line-height: 1;
        overflow-wrap: anywhere;
    }
    .slide-description,
    .slide--spark .slide-description,
    .slide--reva .slide-description,
    .slide--exports .slide-description,
    .slide--future .slide-description,
    .slide--next-wave .slide-description {
        max-width: 100%;
        margin-top: .75rem;
        font-size: clamp(1rem, 4.4vw, 1.18rem);
        line-height: 1.35;
        overflow-wrap: anywhere;
    }
    .slide-media,
    .slide--spark .slide-media,
    .slide--reva .slide-media,
    .slide--exports .slide-media,
    .slide--future .slide-media,
    .slide--next-wave .slide-media {
        position: relative;
        inset: auto;
        width: 100%;
        height: min(260px, 34svh);
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 3;
        z-index: 2;
    }
    .slide-image {
        width: auto;
        max-width: 100%;
        max-height: 100%;
        margin: 0 auto;
        object-fit: contain;
    }
    .slide-year,
    .slide--spark .slide-year,
    .slide--reva .slide-year,
    .slide--exports .slide-year,
    .slide--future .slide-year,
    .slide--next-wave .slide-year {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        height: auto;
        display: block;
        width: 100%;
        font-size: clamp(4.25rem, 21vw, 6.25rem);
        line-height: .85;
        letter-spacing: 0;
        text-align: center;
        order: 1;
        z-index: 2;
    }
    .purpose1 {
        background: #d7b038;
    }
    .purpose2 {
        background: #A3D5D4;
    }
    .purpose3 {
        background: #B77B59;
    }
    .purpose4 {
        background: #F18D82;
    }
    .purpose5 {
        background: #CAC6D7;
    }
}

@media screen and (max-width: 767.98px){
    .purpose-slider {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto !important;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        transform: none !important;
        margin-right: calc(var(--bs-gutter-x, 1.5rem) * -.5);
        padding-bottom: .25rem;
        padding-right: calc(var(--bs-gutter-x, 1.5rem) * .5);
        scrollbar-width: none;
    }
    .purpose-slider::-webkit-scrollbar {
        display: none;
    }
    .purpose-slider > div {
        flex: 0 0 min(86vw, 360px);
        width: min(86vw, 360px) !important;
        min-width: min(86vw, 360px);
        transform: none !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    .purpose-slider > div + div {
        margin-top: 0;
    }
    .purpose-slider .purpose {
        height: 100%;
        min-height: auto;
    }
}

@media (min-width: 992px) {
    /* 1. Ensure the caption box precisely matches the card width */
    .hs-caption {
        width: 100%;
    }

    /* 2. Lock the invisible description so it never squishes. */
    .hs-cap-description {
        min-width: 550px;
    }
}


.component-image{
    opacity:1;
    transition: opacity 0.5s ease-in-out;
}
.system-image{
    opacity:1;
    transition: opacity 0.5s ease-in-out;
}
