.hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 87.5vh;

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

    .container {
        position: relative;
        color: var(--text-secondary) !important;
    }
}

@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: white;
    }

    .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%);
        }
    }
}
