.hero {
    max-height: 360px;
    background-image: linear-gradient(var(--color-primary-light), white);
    overflow: hidden;
    padding: 0;
    position: relative;
    border-radius: 0 20px 0 0;
}

.hero header {
    position: relative;
    z-index: 2;
    font-weight: 100;
    max-width: 700px;
    box-shadow: 0 24px 48px 60px white;
    background-color: white;
    margin: var(--spacing-jumbo) auto 0;
}

.hero-heading {
    border-radius: var(--spacing-lg);
    text-align: center;
}

.hero-image {
    position: relative;
    height: 420px;
}

.hero-image>img {
    max-width: 500px;
    position: absolute;
    bottom: 192px;
    left: 50%;
    transform: translateX(-50%);
}

.review-banner {
    display: none;
    position: absolute;
    width: 240px;
    padding: var(--spacing-md);
    color: black;
    background-color: rgb(255, 255, 255, 0.5);
    z-index: 5;
}

.left-banner {
    bottom: 120px;
    left: 0;
    border-radius: 8px 8px 0 8px;
}

.right-banner {
    bottom: 200px;
    right: 0;
    border-radius: 8px 8px 8px 0;
}

.review-footer {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-tiny);
    border-top: solid 1px var(--color-gray-300);
}

.review-author {
    color: var(--color-primary-dark);
}

.review-stars {
    display: flex;
}

.review-stars img {
    width: 24px;
    height: 24px;
}

.section-shadow {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-image: linear-gradient(rgb(0, 0, 0, 0), rgb(0, 0, 0));
}

@media screen and (min-width: 550px) {

    .hero {
        max-height: 600px;
    }

    .hero-image>img {
        max-width: 1000px;
        bottom: 0;
    }

    .review-banner {
        display: block;
    }

}

@media screen and (min-width: 900px) {
    .hero {
        border-radius: 0;
    }

    .hero-heading {
        font-size: 5rem;
        line-height: 5rem;
    }
}

@media screen and (min-width: 1060px) {

    .left-banner {
        left: 50%;
        transform: translateX(-520px);
    }

}