.hero {
    background-color: var(--color-primary-dark);
    height: 100vh;
    max-height: 640px;
    overflow: hidden;
    padding-top: 68px;
    padding-bottom: 0;
    position: relative;
    display: flex;
    gap: var(--spacing-tiny);
}

.hero>* {
    width: 50%;
}

.hero header,
.hero-image {
    margin-top: var(--spacing-jumbo);
}


.mobile-heading {
    position: absolute;
    top: 80px;
    left: 0;
    text-align: center;
    width: 100%;
}

.hero-heading {
    color: white;
}

.hero header .hero-heading {
    display: none;
    max-width: 500px;
}

.hero-desc {
    color: var(--color-primary-light);
    margin: var(--spacing-tiny) 0 var(--spacing-md);
    font-size: clamp(.9rem, 2vw, 1.25rem);
}

.hero-image-container {
    position: relative;
}

.hero-image-container img {
    margin: 0 auto;
    height: 400px;
    max-height: 800px;
    object-fit: cover;
}

.hero-image-shadow {
    width: 100%;
    height: 100px;
    bottom: 0;
    background-image: linear-gradient(rgb(70, 24, 115, 0), rgb(70, 24, 115));
    position: absolute;
}


.hero-social-proof-photos,
.hero-social-proof-stars {
    display: flex;

}

.hero-social-proof-photos {
    margin: 8px;
}

.hero-social-proof-photos img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    margin-left: -8px;
    border-radius: 50%;
    border: solid 2px var(--color-primary-light);
}

.hero-social-proof-stars img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.hero-social-proof-text {
    color: white;
}

.hero-footer {
    padding: var(--spacing-md) 0;
    position: absolute;
    background-image: linear-gradient(var(--color-primary-dark), var(--color-secondary-dark));
    color: var(--color-primary-light);
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
}

.hero-footer img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

@media screen and (min-width: 600px) {

    .hero header,
    .hero-image {
        margin-top: 0;
    }

    .hero header {
        max-width: 500px;
    }

    .hero {
        gap: var(--spacing-lg);
        align-items: center;
    }

    .mobile-heading {
        display: none;
    }

    .hero header .hero-heading {
        display: block;
    }

    .hero-footer {
        gap: var(--spacing-lg);
    }
    
    .hero-footer img {
        width: 60px;
        height: 60px;
    }

}

@media screen and (min-width: 700px) {

    .hero {
        height: calc(100vh + 108px);
        max-height: 900px;
    }

    .hero-image-shadow {
        bottom: 76px;
    }

    .hero-image-container img {
        height: calc(100vh - 20px);
        max-height: 800px;
    }

}