.hero-container {
    position: relative;

    .gradient {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.85);
    }
}

@media(min-width: 992px) {
    .hero-container {
        .gradient {
            background: linear-gradient(90deg,rgba(0, 0, 0, .9) 20%, rgba(0 ,0, 0, 0) 80%);
        }
    }
}

.cta {
    position: relative;

    .container {
        position: relative;
        z-index: 2;
        color: var(--text-secondary);
    }

    .gradient {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.8);
    }
}

@media(min-width: 992px) {
    .cta {
        .gradient {
            background: linear-gradient(90deg,rgba(0, 0, 0, .9) 20%, rgba(0 ,0, 0, 0) 80%);
        }
    }
}
