.full-width-image {
    position: relative;
    overflow: hidden;
}

.full-width-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.full-width-image.overlay-full:after,
.full-width-image.overlay-gradient:after {
    background: rgba(0, 0, 0,0.5);
}

.full-width-image__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: bottom;
    -o-object-position: bottom;
    z-index: -1;
}

.full-width-image__wrapper {
    z-index: 1000;
}

.full-width-image__heading {
    margin-bottom: 8px;
    font-weight: 900;
}

.full-width-image__heading,
.full-width-image__content,
.full-width-image__wrapper,
.full-width-image__wrapper a,
.full-width-image__wrapper h2,
.full-width-image__wrapper h4 {
    color: var(--color-white);
}

.full-width-image__wrapper h2 a,
.full-width-image__wrapper h4 a {
    text-decoration: underline;
}

.full-width-image__wrapper a {
    font-weight: 700;
}

.full-width-image__wrapper .btn-white {
    background: var(--color-white);
    color: var(--color-blue);
}

.full-width-image__wrapper .btn-white:hover {
    background: rgb(255 255 255 / 85%);
}

@media ( min-width: 1025px ) {
    .full-width-image.overlay-gradient:after {
        background: -moz-linear-gradient(left,rgba(0,0,0,.8) 0%,rgba(0,0,0,.5) 50%,rgba(0,0,0,0) 100%);
        background: -webkit-linear-gradient(left,rgba(0,0,0,.8) 0%,rgba(0,0,0,.5) 50%,rgba(0,0,0,0) 100%);
        background: linear-gradient(to right,rgba(0,0,0,.8) 0%,rgba(0,0,0,.5) 50%,rgba(0,0,0,0) 100%)
    }
}


/* Full-Width Text w/ Content Style */
.full-width-text {
    position: relative;
}

.full-width-text .full-width-text__wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.full-width-text__heading {
    color: inherit;
    margin-bottom: 8px;
    font-weight: 900;
}

.full-width-text__heading span {
    color: var(--color-blue);
}

.full-width-text__wrapper p {
    font-size: 1.25rem;
    font-weight: 700;
}

.full-width-text .full-width-image.overlay-full:after{
    background: rgba(0,0,0,.25);
}

.full-width-text .full-width-image__wrapper {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.full-width-text .full-width-text__wrapper p:first-of-type,
.full-width-text .full-width-image__wrapper p:first-of-type {
    margin-bottom: 0;
}

.full-width-text .full-width-image {
    z-index: 1;
}