

.home-slider-cont{
    position: relative;
    height: 100%;
}
.home-slider{
    height: 100%;
}
.slider-img,
.slider-img .img{
    width: 100%;
    height: 100%;
}
.slider-img {
    position: absolute;
    overflow: hidden;
}
.slider-img .img{
    width: 120%;
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    animation: 20s linear c infinite;
}
.slider-buttons{
    display: flex;
}
.slider-buttons div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    outline: 0;
    transition: all ease .3s;
}
.slider-buttons div:hover {
    background-color: rgba(0, 0, 0, 1);
}
.slider-buttons img {
   width: 30px;
   height: 30px;
}
.slider-buttons div:not(.swiper-button-disabled) {
    cursor: pointer;
}
.slider-container-controls{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 20;
}
@media screen and (max-width: 1000px) {

}
@keyframes c {
    0% {
        transform: translateX(-10%)
    }

    50% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-10%)
    }
}