.section-slider {
    position: relative;
}

.section-slider::after {
    content: '';
    background-image: url(../../img/slider-shadow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -70%;
    left: 0;
    z-index: 1;
}

.section-slider .hero-img img,
.section-slider .hero-video video {
    max-height: 800px;
    width: 100%;
    object-fit: cover;
}

.section-slider .hero-video {
    overflow: hidden;
}

.section-slider .slider-video {
    display: block;
    object-fit: cover;
}

.section-slider .sw-navigation {
    bottom: clamp(2.5rem, 5vw, 3.5rem);
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 2;
}

.section-slider .sw-navigation .icon-direction-left,
.section-slider .sw-navigation .icon-direction-right {
    color: var(--white);
}

@media screen and (max-width: 767.99px) {
    .section-slider::after {
        height: 90%;
    }
}

@media screen and (min-width: 1920px) {

    .section-slider .hero-img img,
    .section-slider .hero-video video {
        max-height: 100%;
    }
}