.home-slider {
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.03);
    position: relative;
}
.home-slider .slide:not(:first-child) {
    display: none;
}
.home-slider .slider-dot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 10px 0;
}
.home-slider .slider-dot .dot {
    display: inline-block;
    width: 30px;
    height: 8px;
    background: #fff;
    margin: 0 5px;
    opacity: .5;
    cursor: pointer;
}
.home-slider .slider-dot .dot.active {
    background: var(--s-primary);
    opacity: 1;
}

@media (max-width: 1279px) {
    .home-slider {
        margin-right: -15px;
    }
}
@media (max-width: 991px) {
    .home-slider {
        margin-right: 0px;
    }
}