#hero {
    height: calc(100vh - 53px) !important;
    background-color: white;
    background-image: url("../img/hero-background.png");
    background-position: 100% 65%;
    background-size: 105% !important;
    background-repeat: no-repeat;
    position: relative;
}

#hero .hero-content {
    height: 100%;
    width: 100%;
    justify-content: center !important;
    padding-top: 88px !important;
    gap: 0;
}

#hero .hero-content>.col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#hero .hero-content>.hero-landing {
    position: absolute;
    top: 45vh;
    transform: translateY(-50%);
    right: 0;
    padding: 0 3% !important;
    z-index: 10;
}

/* Intro text styles */
#hero .hero-wordmark {
    font-size: clamp(3rem, 9vw, 10rem) !important;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    padding-right: 1rem !important;
    color: var(--primary-color);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.001em;
    text-transform: uppercase;
}

#hero .hero-tagline {
    padding-right: 1rem !important;
    font-size: clamp(1.75rem, 3.5vw, 4rem) !important;
    line-height: normal !important;
    padding: 0;
    margin: 0;
    text-align: right;
    width: fit-content;
    color: var(--secondary-color);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

#hero .hero-tagline:first-of-type {
    padding-top: 12px;
    border-top: 3px solid var(--secondary-color) !important;
}

#hero .hero-tagline:last-of-type {
    font-size: clamp(1.75rem, 3.25vw, 4rem) !important;
}

#hero .hero-text-row {
    display: none !important;
}

@media (max-width: 992px) {
    #hero {
        padding-bottom: 0 !important;
        height: auto !important;
        background-image: none;
        /* min-height: 100vh; */
    }

    #hero .hero-content {
        height: auto;
        /* min-height: 100vh; */
        padding: 0;
        padding-top: 0 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }

    #hero .hero-content>.hero-landing {
        position: static;
        transform: none;
        width: 100%;
        padding: 5% !important;
        order: 2;
        align-items: center;
        background: white;
    }

    #hero .hero-wordmark {
        color: var(--primary-color) !important;
    }

    #hero .hero-tagline {
        color: var(--secondary-color) !important;
        border-top-color: var(--secondary-color) !important;
    }

    #hero::before {
        content: '';
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 11 / 9;
        background-image: url("../img/laptop.png");
        background-position: 0% 50%;
        background-size: 167% auto;
        background-repeat: no-repeat;
        order: 1;
    }

    #hero .hero-text-row {
        display: none !important;
    }
}