/* HERO SECTION */

#homepage #hero {
    background: #05102c;
    color: #fff;
    overflow: hidden;
    border-bottom: 6px solid #d1f801;
}

#homepage #hero * {
    box-sizing: border-box;
}

/* Disclaimer */
#homepage #hero .disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

#homepage #hero .disclaimer p {
    margin: 0;
    color: inherit;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
}

#homepage #hero .disclaimer p a {
    color: inherit;
    text-decoration: underline;
}

#homepage #hero .disclaimer .close {
    display: none;
}

/* Container */
#homepage #hero .container {
    position: relative;
    width: min(100%, 1200px);
    margin: 0 auto;
}

#homepage #hero .navigation {
    position: absolute;
    top: 28px;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

#homepage #hero .navigation a,
#homepage #hero .navigation .breadCrumbs-icon {
    color: inherit;
}

/* Call to Action */
#homepage #hero .container .call-to-action {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}

#homepage #hero .container .call-to-action h1 {
    max-width: 592px !important;
    margin: 0;
    color: #d1f801;
    font-family: "Montserrat", sans-serif;
    font-size: 48px !important;
    font-weight: 900;
    line-height: 1.22 !important;
    letter-spacing: 0;
    text-align: left;
}

#homepage #hero .container .call-to-action h2 {
    max-width: 680px !important;
    margin: 26px 0 0;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 38px !important;
    font-weight: 700;
    line-height: 1.24 !important;
    letter-spacing: 0;
    text-align: left;
}

#homepage #hero .container .call-to-action p {
    max-width: 720px !important;
    margin: 24px 0 0;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 25px !important;
    font-weight: 500;
    line-height: 1.17;
    text-align: left !important;
}

#homepage #hero .hero-actions {
    display: flex;
    gap: 24px;
    margin-top: 67px;
}

/* Hero Image Area */
#homepage #hero .container .hero {
    position: relative;
    z-index: 1;
    display: block;
    overflow: visible;
}


#homepage #hero .container .hero::after {
    z-index: 1;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #233df2;
    opacity: 0.78;
}

#homepage #hero .container .hero .hero-image {
    position: absolute;
    z-index: 2;
    display: block;
    max-width: none;
    height: auto;
}

/* ========================= */
/* MOBILE (≤1023px) */
/* ========================= */

@media (max-width: 1023px) {
    #homepage {
        --mobile-section-gutter: 20px;
    }

    #homepage #hero {
        min-height: 620px;
    }

    #homepage #hero .disclaimer.pc {
        display: none !important;
    }

    #homepage #hero .container {
        min-height: 620px;
        padding: 12px var(--mobile-section-gutter) 0;
    }

    #homepage #hero .disclaimer.mobile {
        position: relative;
        z-index: 3;
        display: flex !important;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        padding: 6px 28px 7px 9px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.58);
    }

    #homepage #hero .disclaimer.mobile p {
        font-size: 8px;
        font-weight: 600;
        line-height: 1.2;
        text-align: left;
    }

    #homepage #hero .disclaimer.mobile p a {
        color: #05102c;
    }

    #homepage #hero .disclaimer.mobile .close {
        position: absolute;
        top: 9px;
        right: 8px;
        display: block;
        width: 9px;
        height: 9px;
        cursor: pointer;
    }

    #homepage #hero .disclaimer.mobile .close img {
        display: block;
        width: 100%;
        height: 100%;
    }

    #homepage #hero .container .call-to-action {
        align-items: center !important;
        margin-top: 97px;
        text-align: center;
    }

    #homepage #hero .container .call-to-action h1 {
        max-width: 305px !important;
        font-size: 24px !important;
        line-height: 1.07 !important;
        text-align: center;
    }

    #homepage #hero .container .call-to-action h2 {
        max-width: 330px !important;
        margin-top: 12px;
        font-size: 22px !important;
        line-height: 1.12 !important;
        text-align: center;
    }

    #homepage #hero .container .call-to-action p {
        max-width: 318px !important;
        margin-top: 9px;
        font-size: 12px !important;
        font-weight: 500;
        line-height: 1.08;
        text-align: center !important;
    }

    #homepage #hero .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 34px;
    }

    #homepage #hero .container .hero {
        width: min(100%, 355px);
        height: auto;
        margin: 30px auto 0;
    }

    #homepage #hero .container .hero::before {
        top: 0;
        right: 50%;
        width: 250px;
        height: 218px;
        transform: translateX(50%);
    }

    #homepage #hero .container .hero::after {
        top: -8px;
        right: 38px;
    }



    #homepage #hero .container .hero .hero-image {
        position: relative;
        bottom: -30px;
        right: -8px;
        width: 100%;
        max-width: 335px;
        margin: 0 auto;
        transform: none;
    }

}

@media (max-width: 280px) {
    #homepage {
        --mobile-section-gutter: 12px;
    }

    #homepage #hero .container {
        padding-right: var(--mobile-section-gutter);
        padding-left: var(--mobile-section-gutter);
    }

    #homepage #hero .container .call-to-action {
        margin-top: 37px;
    }

    #homepage #hero .container .call-to-action h1 {
        font-size: 25px !important;
    }

    #homepage #hero .container .call-to-action h2 {
        max-width: 270px !important;
        font-size: 20px !important;
    }

    #homepage #hero .container .call-to-action p {
        max-width: 230px !important;
        font-size: 11px !important;
    }

    #homepage #hero .container .hero {
        width: 260px;
        height: auto;
        margin-top: 30px;
    }

    #homepage #hero .container .hero::before {
        width: 213px;
        height: 190px;
    }

    #homepage #hero .container .hero::after {
        right: 30px;
    }

    #homepage #hero .container .hero .hero-image {
        max-width: 260px;
    }
}

/* ========================= */
/* DESKTOP (≥1024px) */
/* ========================= */

@media (min-width: 1024px) {
    #homepage #hero {
        min-height: 743px;
        max-height: 743px;
    }

    #homepage #hero .disclaimer.pc {
        height: 20px;
    }

    #homepage #hero .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 452px;
        column-gap: 0px;
        min-height: 464px;
        padding: 112px 0 0;
    }

    #homepage #hero .container .call-to-action {
        grid-column: 1;
        padding-top: 20px;
    }

    #homepage #hero .container .hero {
        grid-column: 2;
        width: 452px;
        height: 310px;
        margin-top: -5px;
    }

    #homepage #hero .container .hero::before {
        top: 0;
        right: 17px;
        width: 310px;
        height: 310px;
    }

    #homepage #hero .container .hero::after {
        top: 0;
        right: 97px;
    }

    #homepage #hero .container .hero .hero-image {
        top: 0px;
        right: -30px;
        width: 388px;
    }
}

@media (min-width: 1024px) and (max-width: 1239px) {
    #homepage #hero .container {
        width: calc(100% - 80px);
        grid-template-columns: minmax(0, 1fr) 390px;
        column-gap: 36px;
    }

    #homepage #hero .container .call-to-action {
        font-size: 42px !important;
    }

    #homepage #hero .container .call-to-action h1 {
        font-size: 42px !important;
    }

    #homepage #hero .container .call-to-action h2 {
        font-size: 34px !important;
    }

    #homepage #hero .container .call-to-action p {
        font-size: 21px !important;
    }

    #homepage #hero .container .hero {
        width: 390px;
    }

    #homepage #hero .container .hero::before {
        right: 0;
    }

    #homepage #hero .container .hero .hero-image {
        right: -45px;
        width: 406px;
    }

}