.video-block {
    position: relative;
    padding-top: 56.25%;
    margin: 20px 0px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 10px 0px rgba(0, 106, 167, 0.2);
}
.video-block-sec{
    width: 75%;
    margin-left: auto;
    margin-right: auto;    
}
.sidebar-present .video-block-sec {
    width: 100%;
}
.video-block.type-shorts{
    padding-top: 177.77%;
}
.video-block .img-sec, .video-block .video-sec {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-block .img-sec {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.video-block .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    border: none;
    cursor: pointer;
    z-index: 1;
}
.video-block .play-btn::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent white;
}

@media (max-width: 740px){
    .video-block-sec{
        width: 100%;
    }
}