#vsp-slider-home{
    position:relative;
    width:100%;
    overflow:hidden;
    margin-bottom:30px;
}

.vsp-slider-track{
    display:flex;
    transition:transform .5s ease;
    width:100%;
}

.vsp-slide{
    min-width:100%;
    position:relative;
}

.vsp-video{
    width:100%;
    height:auto;
    display:block;
    background:#000;
    object-fit:contain;
}

.vsp-prev,
.vsp-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border-radius:50%;
    border:0;
    cursor:pointer;
    z-index:99;
    font-size:24px;
    background:rgba(0,0,0,.5);
    color:#fff;
}

.vsp-prev{
    left:20px;
}

.vsp-next{
    right:20px;
}
 
 
 
 
 @media(max-width:768px){

    #vsp-slider-home{
        width:100%;
        overflow:hidden;
    }

    .vsp-slide{
        width:100%;
    }

    .vsp-video{
        width:100%;
        height:auto;
        object-fit:contain;
        display:block;
    }

    .vsp-prev,
    .vsp-next{
        width:36px;
        height:36px;
        font-size:16px;
    }

    .vsp-prev{
        left:10px;
    }

    .vsp-next{
        right:10px;
    }
}


 