.videos-page {
    width: 80%;
    margin: auto;
}

.videos-page h2 {
    margin-bottom: 0 !important;
}

.videoQty {
    font-size: 12px;
    margin-bottom: 1em;
}

.videoSectionWrapper {
    display: flex;
    flex-wrap: wrap;
}

.videoBlock {
    display: flex;
    flex-direction: column;
    width: 24%;
    margin-right: 1%;
    margin-bottom: 40px;
    cursor: pointer;
}

.videoBlock:nth-child(4n){
    margin-right: 0%;
}

.videoPlayer_wrapper {
    width: 100%;
    height: 220px;
    max-height: 220px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
    border-radius: 6px;
}

.videoPlayer_wrapper::after {
    content: "";
    background: url("/images/videoplayer.svg") no-repeat center center;
    background-color: rgba(0, 0, 0, 0.5);
    background-size: 5%;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 2;
    border-radius: 6px;
    height: 220px;
    max-height: 220px;
}


@media only screen and (max-width:1600px) and (min-width:769px){
    .videos-page {
        width: 90%;
    }

    .videoBlock {
        width: 32%;
    }

    .videoBlock:nth-child(3n){
        margin-right: 0%;
    }

    .videoBlock:nth-child(4n){
        margin-right: 1%;
    }
}

@media only screen and (max-width: 768px)
/*and (-webkit-device-pixel-ratio: 3)*/
{
    .videos-page {
        width: 100%;
    }

    .videoBlock {
        width: 99%;
        margin-right: 0%;
    }

    .videoBlock:nth-child(4n){
        margin-right: 0%;
    }
}