

/* =======================
   1. CTA SECTION
   ======================= */
.footer-cta-section {
    background: transparent;
    text-align: center;
    position: relative;
    /* background: url('/assets/images/footer-background.webp');
    background-attachment: fixed;
    background-position: 0 200px;
    background-size: contain;
    background-repeat: no-repeat; */
    aspect-ratio: 19.2/7;
    width: 100vw;
}
.footer-cta-section .container{
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center;
    background:var(--primary);
}

.footer-cta-section .footer-background{
    position: absolute;
    width:100vw;
    top: 0;
    left: 0;
    z-index: 0;
}
/* .footer-cta-section h1 {
    font-size: 150px;
    font-weight: 300;
    line-height: 1.1;
    color: #c6d3dc;
}

.footer-cta-section h1 span {
    color: #e2c200;
    font-weight: 600;
} */

.footer-cta-section .headline-1 {
    position:relative;
}
.footer-cta-section p.body-medium {
    color: #99a6ae;
    margin-left: auto;
    margin-right: auto;
    max-width: 958px;
    position:relative;
}


/* =======================
   1.5 Divider Image
   ======================= */
.footer-divider img {
    width: 100%;
    display: block;
    margin-bottom: -4px;
}


/* =======================
   2. MAIN FOOTER
   ======================= */
.footer-main {
    background: linear-gradient(to bottom, #0f232b, #0d1f27);
    color: #cbd5db;
    font-family: Inter, sans-serif;
}

.footer-main .container {
    padding-bottom: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 0.6fr;
    gap: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    font-size: 13px;
    margin-bottom: 8px;
    font-family: 'Montserrat',sans-serif;
}

.brand .logo {
    width: 140px;
    margin-bottom: 25px;
}

.brand h2 {
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
}


/* =======================
   3. BOTTOM COPYRIGHT
   ======================= */
.footer-bottom {
    background: #0d1b23;
    text-align: center;
    padding: 20px 0 30px;
    font-size: 12px;
    opacity: 0.5;
    color: #fff;
}


/* =======================
   RESPONSIVE
   ======================= */
@media (max-width: 1000px) {

    /* .footer-cta-section h1 {
        font-size: 48px;
    } */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        justify-items: center;
        align-content: start;
    }
    .footer-grid > *:nth-child(odd) {
        justify-self: start;
    }

    .footer-grid > *:nth-child(even) {
        justify-self: end;
    }
}

@media (max-width: 768px) {
/* 
    .footer-cta-section h1 {
        font-size: 34px;
    } */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid > *:nth-child(odd),
    .footer-grid > *:nth-child(even) {
        justify-self: start;
    }
    /* .brand h2 {
        font-size: 22px;
    } */
}
