.action-hero {
    display: block;
    overflow: hidden;
    position: relative;
    /* width: 80em; */
    max-width: 1800px;
    height: 30em;
    margin: auto;
    --primary-color: #007078;
    --secondary-color: #7B2881;
}

.action-hero img {
    display: block;
    pointer-events: none;
    position: absolute;
    transform: translate(-25%, 0);
    width: 80em;
    max-width: none;
    height: auto;
    z-index: -1;
    border-radius: 0px 0px 50px 50px;
}

.action-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -3px;
    left: 0;
    border-radius: 0px 0px 50px 50px;
}

.action-hero .headline {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50vw;
    background-color: white;
    width: 85%;
    padding: .5em 1em;
    text-align: center;
    border-radius: 15px;
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.15));
    font-size: 1.25em;
    font-weight: 400;
}

.action-hero .headline:before,
.action-hero .headline:after {
    content: '"';
    font-style: italic;
}

.action-hero .ah-link {
    position: absolute;
    top: 75%;
    transform: translate(-50%, -25%);
    left: 50vw;
    color: white;
    box-shadow: 0px 5px 15px rgba(47, 16, 49, 0.5);
    border-radius: 43px;
    padding: 1em 1.5em;
    font-weight: 700;
    font-size: 1.125em;
    letter-spacing: 0.1em;
    text-align: center;
    width: 75%;
}

@media only screen and (min-width: 720px) {
    .action-hero {
        width: 100%;
        height: auto;
    }
    .action-hero img {
        transform: translate(0, 0);
        width: 100%;
        max-width: 1800px;
        position: static;
        z-index: -1;
    }
    .action-hero .headline {
        padding: .5em 1em;
        left: 50%;
        width: auto;
        font-size: 2em;
    }
    .action-hero .ah-link {
        left: 50%;
        width: auto;
        font-size: 1.125em;
    }
}