
/* New css for templates */

.mian_video_sec .video_box {
    position: relative;
    width: 100%;
    cursor: pointer;
}


.mian_video_sec .video_placeholder {
    position: relative;
}


.mian_video_sec .video_placeholder img {
    width: 100%;
    display: block;
    border-radius: 8px;
    filter: brightness(0.5);
}
.mian_video_sec .video_placeholder::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
   background: rgba(0, 0, 0, 0.247);
    width: 100%;
    height: 100%;
    border-radius: 8px;

}

.mian_video_sec .play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: rgba(0,0,0,0.65); */
    color: white;
    font-size: 58px;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
}


/* .mian_video_sec .video_box:hover .play_btn {
    background: rgba(0,0,0,0.85);
} */

.mian_video_sec .video_box iframe{
  width:100%;
   height:650px;
}