.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slides-container {
    height: calc(100vh - 13rem);
    width: 100vw;
    display: flex;
    overflow: scroll;
    scroll-behavior: smooth;
}

.slider {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
}

.content {
    width: 80%;
    top: 60%;
    left: 7%;
    transform: translateY(-50%);
}


@media (min-width: 992px) {
    .content {
        width: 40%;
        top: 50%;
    }
}

.content h1 {
    font-family: 'Nasalization', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
}

.content p {
    margin-top: 25px;
    font-size: 18px;
    color: #fdfdfd;
    font-weight: 400;
    line-height: 24.4px;
}

.download-app-link {
    background-color: #239066;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;
}

.download-app-link :hover {
    background-color: #239066;
    color: #ffffff;
}

.slides-container {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

/* WebKit */
.slides-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.slider-button {
    border: none;
    background: transparent;
}

@media (max-width: 992px) {

    .banner-button-bg,
    .slider-button {
        display: none;
    }

    .content h1 {
        font-size: 25px;
    }

    .content p {
        font-size: 15px;
        margin-top: 15px;
        color: #fdfdfd;
        font-weight: 400;
        line-height: 20.4px;
    }

    .download-app-link {
        font-size: 15px;
        padding: 10px 12px;
     }
}