.videopro-wrapper{
    display:flex;
    gap:20px;
    overflow-x:auto;
    padding:20px 0;
    scroll-snap-type:x mandatory;
}

.videopro-item{
    min-width:320px;
    max-width:320px;
    scroll-snap-align:center;
}

.videopro-item iframe{
    width:100%;
    height:570px;
    border:0;
    border-radius:20px;
    background:#000;
}

.videopro-title{
    text-align:center;
    margin-top:10px;
    font-size:16px;
    font-weight:600;
}

@media(max-width:768px){

    .videopro-item{
        min-width:85%;
    }

    .videopro-item iframe{
        height:75vh;
    }

}





.videopro-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-top:12px;
}

.videopro-buy{
    background:#111;
    color:#fff !important;
    padding:10px 18px;
    border-radius:30px;
    text-decoration:none !important;
    font-size:14px;
    font-weight:700;
    transition:all .3s ease;
    white-space:nowrap;
}

.videopro-buy:hover{
    opacity:.9;
    transform:scale(1.05);
}

@media(max-width:768px){

    .videopro-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

}