.hero--section {
    background: var(--theme-teal71);
    color: #fff;
}

.hero--copy-wrap {
    position: relative;
}

.hero--container {
    padding: 90px var(--theme-content-padding) 60px;
}

.hero--image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.hero--image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero--text-cta {
    text-decoration: underline;
}

.hero--text-cta {
    margin-bottom: 45px;
}

.hero--copy {
    max-width: 415px;
}

.hero--small-title {
    color: var(--theme-teal77);
}

@media (max-width: 991px) {

    .hero--image {
        height: 265px;
    }

    .hero--small-title {
        display: none;
    }

    .hero--large-title {
        font-size: 4rem; /*64px*/
        font-weight: 600;
        line-height: 1.1em;
        max-width: 370px;
    }
}

@media (min-width: 768px) {
    .hero--large-title {
        max-width: 100%;
    }

    .hero--image {
        width: 50%;
        left: auto;
        bottom: 0;
        height: 100%;
    }

    .hero--button-cta {
        position: absolute;
        right: var(--theme-content-padding);
        bottom: 60px;
    }
}

@media (min-width: 992px) {
    .hero--large-title {
        font-size: 5.5rem;
        margin-bottom: 70px;
    }

    .hero--copy {
        max-width: 439px;
    }

    .hero--container {
        padding-top: 220px;
    }
}

@media (min-width: 1200px) {
    .hero--image {
        width: 55%;
    }
}