.hero {
    background-color: var(--color-primary-light);
}

.hero-inner {
    position: relative;
    z-index: 5;
    height: 100%;
    padding: var(--spacing-jumbo) var(--spacing-md) var(--spacing-lg);
}


@media screen and (min-width: 1224px) {

    .hero-inner {
        padding: var(--spacing-jumbo) 0 var(--spacing-lg);
    }

}

.hero-top,
.hero-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-top {
    gap: var(--spacing-lg);
    position: relative;
}

.hero-bottom {
    margin-top: var(--spacing-lg);
    position: relative;
}

.hero-heading,
.hero-top-image {
    position: relative;
}

.hero-heading {
    font-family: 'Great Vibes';
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: clamp(3rem, 7vw, 6rem);
}

.hero-top-image {
    padding: 0 var(--spacing-md) var(--spacing-md) 0;
}

.hero-top-image-bg {
    position: absolute;
    width: 70%;
    height: calc(100% + var(--spacing-lg));
    right: 0;
    bottom: 0;
    background-color: var(--color-tertiary-light);
}

.hero-bottom-text {
    line-height: 1rem;
}

.hero-desc {
    color: var(--color-primary-darker);
    margin-bottom: var(--spacing-md);
}

.hero-top-image img,
.hero-bottom-image img {
    object-fit: cover;
    aspect-ratio: 2 / 1;
}

.hero-top-image img {
    width: 100%;
}

.hero-bottom-image img {
    width: 100%;
}

.hero-top-image-bg,
.hero-top-image img {
    border-radius: var(--box-radius);

}

.hero-bottom-image img {
    border-radius: 0 0 50% 50%;
}

.hero-top>*,
.hero-bottom>* {
    width: 100%;
    text-align: center;
}

.hero-testimonial {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 160px;
    display: none;
}

.testimonial {
    font-style: italic;
    font-size: 1rem;
}

.hero-testimonial footer {
    line-height: 2rem;
    display: flex;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    border-top: 1px solid var(--color-tertiary-light);
}

.hero-testimonial {
    font-weight: bold;
}

.hero-testimonial footer img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

@media screen and (min-width: 700px) {

    .hero-top,
    .hero-bottom {
        flex-direction: row;
    }

    .hero-top>*,
    .hero-bottom>* {
        text-align: left;
    }

    .hero-bottom-image {
        width: 60%;
    }

    .hero-top-image {
        width: 70%;
    }

    .hero-bottom-text {
        width: 30%;
    }

    .hero-heading {
        width: 30%;
    }

}

@media screen and (min-width: 1000px) {

    .hero-top-image,
    .hero-bottom-text {
        width: 40%;
    }
}

@media screen and (min-width: 1000px) {

    .hero-top-image,
    .hero-bottom-text {
        width: 40%;
    }

    .hero-heading {
        width: 60%;
    }

    .hero-top-image-bg {
        width: 60%;
    }

    .hero-bottom-image img {
        width: 50%;
    }

    .hero-testimonial {
        display: block;
    }

}

@media screen and (min-width: 1250px) {

    .hero-heading {
        font-size: 7rem;
        line-height: 6rem;
    }

}