.hero {
    background-color: var(--color-primary-dark);
    padding: var(--spacing-md);
}

.hero-heading {
    color: var(--color-primary-light);
    text-align: center;
    margin: var(--spacing-md) 0;
}

.hero-cta-wide {
    display: none;
    margin: var(--spacing-lg) auto var(--spacing-sm);
    background-color: var(--color-highlight);
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    max-width: 800px;
}

.sticky-note {
    filter: drop-shadow(8px 8px 8px rgb(0, 0, 0, .8));
}

.hero-testimonial-card {
    position: relative;
    padding: var(--spacing-sm);
    color: var(--color-primary-dark);
    width: 320px;
    height: 320px;
    background-color: var(--color-highlight);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 0);
}

.hero-flex .sticky-note:first-child,
.arrow-curved-left,
.hero-image-label,
.arrow-curved-right {
    display: none;
}

.hero-flex .sticky-note:last-child {
    margin-top: var(--spacing-lg);
}

.hero-testimonial-highlight {
    color: var(--color-success);
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.hero-testimonial-quote {
    font-size: 1rem;
    line-height: 1.2rem;
    margin-top: var(--spacing-sm);
}

.hero-testimonial-card figcaption {
    position: absolute;
    bottom: var(--spacing-sm);
    font-size: 0.8rem;
    width: 80%;
    line-height: 1rem;
    font-weight: bold;
    color: var(--color-primary-dark);
}

.testimonial-author {
    color: var(--color-secondary-dark);
    font-weight: lighter;
}

.hero-image {
    width: 400px;
    position: relative;
}

.hero-image-main {
    width: 100%;
    position: relative;
    left: -20px;
}

.label-wrapper {
    width: 500px;
    position: absolute;
    top: calc(50% + 60px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: radial-gradient(rgb(51, 68, 67, 0.8), rgb(51, 68, 67, 0) 60%);
    padding: var(--spacing-x-lg) 0;
}

.hero-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-sm);
}

.hero-social img {
    width: 48px;
    height: 48px;
    border: solid 1px var(--color-highlight);
    border-radius: 50%;
    margin: 0 -8px;
}

.hero-social-text {
    color: var(--color-highlight);
    margin-left: var(--spacing-md);
    font-size: 1.2rem;
}

.hero-image-label {
    width: 100%;
}

.arrow-curved-left,
.arrow-curved-right {
    position: absolute;
}

.arrow-curved-left {
    top: 120px;
    left: -168px;
}

.arrow-curved-right {
    transform: rotate(-15deg);
    top: -80px;
    right: -140px;
}

@media screen and (width > 960px) {

    .hero {
        padding: var(--spacing-jumbo);
        padding-top: 0;
    }

    .hero-flex {
        flex-direction: row;
        align-items: unset;
    }

    .hero-flex .sticky-note:last-child {
        align-self: end;
        margin-top: 0;
    }

    .hero-image-label,
    .arrow-curved-right,
    .hero-cta-wide {
        display: block;
    }

    .cta-wrapper {
        text-align: center;
    }

    .hero-social,
    .hero-cta-mobile {
        display: none;
    }

    .label-wrapper {
        background: unset;
        padding: 0;
    }

}

@media screen and (width > 1300px) {

    .hero-flex {
        max-width: 1400px;
    }

    .hero-flex .sticky-note:first-child,
    .arrow-curved-left {
        display: block;
    }

}