.video-auto-play{
    position: relative;
}
.video-auto-play .video-auto-play-dotted-grid{
    position: absolute;
}
.video-auto-play .video{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 415px;
}
.video-auto-play video{
    max-width: 100%;
    height: auto;
}
.video-auto-play .mute{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}
.video-auto-play .image{
    position: relative;
}
.video-auto-play .image{
    max-width: 100%;
    height: auto;
}
.video-auto-play .video-thumb{
    display: none;
}
.video-auto-play .play-button{
    display: none;
}
.video-auto-play .play-button a{
    background-image: url('../images/videoplay-icon.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 46px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 99;
}
@media screen and (max-width: 991px){
    .video-auto-play .video-auto-play-dotted-grid{
        display: none;
        visibility: hidden;
    }
}
@media screen and (max-width: 768px){
    .video-auto-play .video{
        height: 289px;
    }
}
@media screen and (max-width: 576px){
    .video-auto-play .video{
        min-height: 202px;
        height: auto;
    }
}