.res-slider {
    width: 100%;
}

.jscss-res-slider-not-active .res-slider__slide:first-of-type {
    display: flex;
}

.res-slider__slide {
    display: none;
    align-items: center;
    width: 100%;
    height: calc(55vw - 200px);
    /* min-height: 650px; */
    /* background-size: cover; */
}

.res-slider__slide picture {
    width: 100%;
    height: 100%;
    display: flex;
}

.res-slider__slide img {
    object-fit: cover;
    height: auto;
    width: 100%;
}

/* .res-slider__nav-btn {
    position: absolute;
    text-align: center;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff !important;
    border: 0;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 40px !important;
    width: 80px;
    height: 80px;
    color: var(--e-global-color-primary) !important;
}

.res-slider__next-slide-btn {
    right: -50px;
    transform: translateY(-50%) rotate(-90deg);
}

.res-slider__prev-slide-btn {
    left: -50px;
    transform: translateY(-50%) rotate(90deg);
}

.res-slider__nav-btn>i {
    position: relative;
    top: -16px;
    left: 0;
}

.res-slider__next-slide-btn:focus,
.res-slider__next-slide-btn:active {
    outline: none;
} */

@keyframes slideUp {
    0% {
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.res-slider {
    overflow: hidden;
}

.res-slider__slide {
    animation-name: slideUp;
    animation-duration: 0.7s;
}

.res-slider__dotnavs {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.res-slider__dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    padding: 0;
    margin: 2px;
    border-radius: 50%;
}

.res-slider__active-dot {
    background-color: #7C1418;
}