/* ============================================
   START: CSS Variables
   ============================================ */
:root {
    --primary-yellow: #FFDE53;
    --primary-red: #FC5856;
    --text-black: #000000;
    --text-white: #FFFFFF;
    --text-dark-gray: #9A9A9A;
    --font-main: 'Inter', sans-serif;
}
/* ============================================
   END: CSS Variables
   ============================================ */


/* ============================================
   START: Reset & Base Styles
   ============================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-black);
    line-height: 1.5;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ============================================
   START: Typography - Global Heading Class
   ============================================ */
.heading-primary {
    font-size: 62px!important;
    line-height: 71px;
    font-weight: 600!important;
    color: var(--text-black);
}

.heading-secondary {
    font-size: 46px!important;
    line-height: 71px;
    font-weight: 500!important;
    color: var(--text-black);
}

.heading-tertiary {
    font-size: 38px!important;
    font-weight: 500!important;
}

.text-large {
    font-size: 32px!important;
    font-weight: 500!important;
    line-height: 1.2;
}

.text-medium {
    font-size: 24px!important;
    line-height: 1.2;
}
/* ============================================
   END: Typography - Global Heading Class
   ============================================ */

/* Override Bootstrap container max-width to match original */
.container {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
}
/* ============================================
   END: Reset & Base Styles
   ============================================ */


/* ============================================
   START: Header (Global Component)
   ============================================ */
.header {
    background-color: var(--text-black);
    color: var(--text-white);
    padding: 20px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.header__container .row {
    margin: 0;
}

.header__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.header__hamburger-bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: 0.3s;
}

.header__nav {
    position: static;
    display: block;
    background-color: transparent;
    padding: 0;
    z-index: 100;
    color: var(--text-white);
}

.header__nav-list {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.header__nav-link {
    color: var(--primary-yellow);
    font-size: 20px;
}

.header__nav-link:hover {
    color: var(--text-white);
}

.header__nav-link.active {
    color: var(--text-white);
}

.header__logo {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 30px;
}
/* ============================================
   END: Header (Global Component)
   ============================================ */


/* ============================================
   START: Hero Section (Global Component)
   ============================================ */
.hero {
    background-color: #333;
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    padding: 0;
    position: relative;
    min-height: calc(var(--hero-height-ratio, 0.41667) * 100dvw);
    aspect-ratio: var(--aspect-ratio-hero, 1920 / 800);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero__container {
    position: relative;
    z-index: 1;
    min-height: 100%;
    padding: 0 20px 120px;
}

.hero__logo {
    position: absolute;
    top: clamp(20px, 2.1vw, 40px);
    left: clamp(15px, 1.04vw, 20px);
    z-index: 2;
}

.hero__logo-lottie {
    max-width: clamp(200px, 26vw, 500px);
    max-height: clamp(100px, 13vw, 250px);
}

.hero__logo-lottie svg {
    width: 100%;
    height: 100%;
}

.hero__headline {
    position: absolute;
    bottom: clamp(40px, 5.2vw, 100px);
    left: clamp(15px, 1.04vw, 20px);
    font-size: clamp(2.5rem, 4.5vw, 90px);
    font-weight: 600;
    line-height: 1.1;
    z-index: 2;
    margin: 0;
}
/* ============================================
   END: Hero Section (Global Component)
   ============================================ */


/* ============================================
   START: Intro Section (Global Component)
   ============================================ */
.intro {
    padding: 120px 0;
}
/*.intro .intro__text p {
    padding: 0 30px!important;
}*/
/* ============================================
   END: Intro Section (Global Component)
   ============================================ */


/* ============================================
   START: Footer (Global Component)
   ============================================ */
.footer {
    background-color: var(--text-black);
    color: var(--text-white);
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer a:hover {
    text-decoration: underline;
}

.footer__top .row {
    margin: 0 0 40px 0;
}

.footer__top .g-4 {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 0;
}

.footer__column--center {
    display: flex;
    /*justify-content: center;*/
}

.footer__heading {
    font-size: 62px;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer__text {
    margin-bottom: 10px;
}

.footer__logo {
    width: 350px;
    height: 200px;
    /*margin: 0 auto;*/
}

.footer__logo-lottie {
    width: 100%;
    height: 100%;
}

.footer__logo-lottie svg {
    width: 100%;
    height: 100%;
}

.footer__middle .row {
    margin: 0 0 80px 0;
}

.footer__middle .g-4 {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 0;
}

.footer__contact-icon {
    margin-bottom: 10px;
    display: inline-block;
}

.footer__contact-icon img,
.footer__icon-img {
    width: 40px;
    height: 40px;
}

.footer__contact-name {
    margin-bottom: 5px;
    color: #ccc;
}

.footer__contact-info {
    margin-bottom: 5px;
}

.footer__bottom {
    border-top: 1px solid var(--text-white);
    border-bottom: 1px solid var(--text-white);
    padding: 60px 20px;

}

.footer__bottom .row {
    margin: 0;
}

.footer__bottom .g-4 {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 0;
}

.footer__acknowledgement {
    padding-right: 20px;
}

.footer__acknowledgement-text {
    font-size: 33px;
    color: var(--primary-yellow);
    margin: 0;
    line-height: 1.2;
}

.footer__badges {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer__badges-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__badge-image {
    max-width: 150px;
    height: auto;
}

.footer__badge-text {
    color: var(--text-white);
    margin: 0;
    white-space: nowrap;
}

.footer__copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 10px;
    font-size: 20px;
    color: var(--text-dark-gray);
}

.footer__copyright-link {
    text-decoration: underline;
}
/* ============================================
   END: Footer (Global Component)
   ============================================ */


/* ============================================
   START: Buttons (Global Utility)
   ============================================ */
.btn {
    display: inline-block;
    border: 1px solid var(--text-black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 20px;
    text-transform: uppercase;
    transition: background 0.3s;
    background: transparent;
}

.btn--outline:hover {
    background-color: var(--text-black);
    color: var(--primary-yellow);
}
/* ============================================
   END: Buttons (Global Utility)
   ============================================ */

.feature-image {
    position: relative;
    width: 100%;
    /* Background image gets set inline */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    /* Takes the value that is set inline, or fallback to the default */
    aspect-ratio: var(--feature_banner_aspect_ratio, 1920 / 900);
}

/* ============================================
   START: Responsive Design (Global)
   ============================================ */

@media (max-width: 1199px) and (min-width: 1025px) {

    .footer {
        padding-top: 60px;
    }

    .footer__heading {
        font-size: 55px;
        margin-bottom: 40px;
    }

    .footer__contact {

        .footer__contact-name.heading-secondary {
            font-size: 38px !important;
            line-height: 48px;
        }

        .footer__contact-info.text-medium {
            font-size: 17px !important;
        }

    }

    .footer__logo--wrap {
        justify-content: flex-end;

        .footer__logo {
            width: 320px;
        }

    }

    .footer__middle .row {
        margin-bottom: 80px;
    }

    .footer__bottom {

        .footer__acknowledgement {

            .footer__acknowledgement-text {
                font-size: 25px;
            }

        }

        .footer__badges {

            .footer__badges-wrapper {

                .image-holder {

                    > img {
                        max-width: 100%;
                    }

                }

                .footer__badge-text {

                }

            }

        }

    }

    .footer__copyright {
        font-size: 19px;
    }

}

@media (max-width: 1024px) and (min-width: 769px) {

    .footer {
        padding-top: 50px;
    }

    .footer__heading {
        font-size: 52px;
        margin-bottom: 30px;
    }

    .footer__contact {

        .footer__contact-name.heading-secondary {
            font-size: 36px !important;
            line-height: 44px;
        }

        .footer__contact-info.text-medium {
            font-size: 15px !important;
        }

    }

    .footer__logo--wrap {
        justify-content: flex-end;

        .footer__logo {
            width: 280px;
        }

    }

    .footer__middle .row {
        margin-bottom: 70px;
    }

    .footer__bottom {

        .footer__acknowledgement {

            .footer__acknowledgement-text {
                font-size: 23px;
            }

        }

        .footer__badges {

            .footer__badges-wrapper {

                .image-holder {

                    > img {
                        max-width: 100%;
                    }

                }

                .footer__badge-text {

                }

            }

        }

    }

    .footer__copyright {
        font-size: 18px;
    }

}

@media (min-width: 993px) and (max-width: 1270px) {
    /* Header - Medium Screen Adjustments */
    .header__nav-list {
        gap: 20px;
    }

    .header__nav-link {
        font-size: 16px;
        white-space: nowrap;
    }

    .header__logo {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    /* Header - Hamburger Menu */
    .header__hamburger {
        display: flex;
    }

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--text-black);
        padding: 20px 0;
        display: none;
    }

    .header__nav.active {
        display: block;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Fix horizontal scrolling */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .container {
        padding: 0 15px;
    }

    /* Hero Section */
    .hero {
        /*min-height: calc(var(--hero-height-ratio, 0.41667) * 100dvw);*/
        aspect-ratio: auto;
        height: auto;
        padding: clamp(15px, 2.6vw, 20px) 0;
    }

    .hero__container {
        padding: 0 clamp(15px, 2.6vw, 20px);
        height: 100%;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: clamp(30px, 5.2vw, 40px);
        gap: clamp(20px, 8vw, 60px);
    }

    .hero__logo {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero__headline {
        position: relative;
        bottom: 0;
        left: 0;
        right: auto;
        font-size: clamp(1.5rem, 5.5vw, 2.5rem);
        line-height: 1.2;
    }

    .hero__logo-lottie {
        max-width: clamp(150px, 26vw, 200px);
        max-height: clamp(75px, 13vw, 100px);
    }

    .header__logo {
        font-size: 21px!important;
    }

    /* Intro Section */
    .intro {
        padding: 60px 0 !important;
    }

    /* Typography adjustments */
    .heading-primary {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .heading-secondary {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .text-large {
        font-size: 20px !important;
    }

    .text-medium {
        font-size: 18px !important;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px !important;
    }

    .footer__top .row {
        margin-bottom: 30px !important;
    }

    .footer__top .g-4 {
        --bs-gutter-y: 20px !important;
    }

    .footer__column {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer__column--center {
        justify-content: center;
    }

    .footer__heading {
        font-size: 28px !important;
        margin-bottom: 40px;
    }

    .footer__logo {
        width: 250px !important;
        height: 140px !important;
        margin: 0 auto;
    }

    .footer__logo-lottie {
        width: 100%;
        height: 100%;
    }

    .footer__middle {
        margin-bottom: 40px !important;
    }

    .footer__middle .row {
        margin-bottom: 0 !important;
    }

    .footer__middle .g-4 {
        --bs-gutter-y: 30px !important;
    }

    .footer__contact {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer__contact-icon {
        margin: 0 auto 15px;
    }

    .footer__bottom {
        padding: 40px 15px !important;
        text-align: center;
    }

    .footer__bottom .g-4 {
        --bs-gutter-y: 30px !important;
    }

    .footer__acknowledgement {
        padding: 0 !important;
        margin-bottom: 20px;
    }

    .footer__acknowledgement-text {
        font-size: 18px !important;
        text-align: center;
    }

    .footer__badges {
        justify-content: center !important;
    }

    .footer__badges-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer__badge-image {
        max-width: 120px !important;
    }

    .footer__badge-text {
        font-size: 16px !important;
    }

    .footer__copyright {
        font-size: 14px !important;
        padding: 15px 0;
        text-align: center;
    }
}
/* ============================================
   END: Responsive Design (Global)
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {

    h2.heading-primary {
        margin-bottom: 90px;
        font-size: 54px !important;
        line-height: 60px;
    }

    h3.heading-primary {
        font-size: 52px !important;
    }

}

@media (min-width: 1025px) and (max-width: 1199px) {

    h2.heading-primary {
        margin-bottom: 105px;
        font-size: 58px !important;
        line-height: 66px;
    }

    h3.heading-primary {
        font-size: 55px !important;
    }

}