.scroll-slider .image-wrapper {
    position: absolute;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: auto;
    background-size: cover;
    justify-content: center;
    padding: 20px;
}

.scroll-slider .image-wrapper::before {
    height: 100%;
    width: 100%;
    background: rgb(12, 32, 49);
    background: radial-gradient(circle, rgba(12, 32, 49, 1) 0%, rgba(12, 32, 49, 0.65) 100%);
    content: ' ';
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
}

.scroll-slider .content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 920px;
    text-align: center;
}

.scroll-slider .slider-title {
    font-size: 50px;
}

.scroll-slider .slider-description {
    font-size: 20px;
}

.scroll-slider .container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

@media screen and (max-width:1024px) {
    .scroll-slider .slider-title {
        font-size: 35px!important;
    }
    .scroll-slider .slider-description {
        font-size: 18px!important;
    }
}