/* Recent Video List */
.recent-video-list .video-post-block{
  margin-top: 20px;
  margin-bottom: 20px !important;
}
.recent-video-list .video-post-block .image-block{
  position: relative;
  margin-bottom: 10px;
}

/* End Recent Video List */


.video-post-block .image-block {
  position: relative;
  width: 100%;
  min-height: 380px;
}

.video-post-block .image-block  iframe{
  position: absolute;
  left: 0;
  top:0;
}
.video-post-block .image-block .youtube-video {
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 100%;
  min-height: 380px;
  background-size: cover;
}

.video-post-block .image-block .youtube-video .play::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 77px;
  height: 77px;
  background-image: url(../image/video-play-icon.png);
  background-position: center center;
  background-size: auto;
  background-repeat: no-repeat;
  border-radius: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-post-block .image-block .youtube-video .play::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  background-color: rgba(219, 158, 48, 0.66);
  border-radius: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.video-post-block .image-block .youtube-video:hover .play::before {
  background-color: rgba(219, 158, 48, 1);
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.video-post-block .image-block .youtube-video .play:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

@media(max-width:1120px) {
  .video-post-block .image-block .youtube-video ,
  .video-post-block .image-block {
    min-height: 300px;
  }
  .video-post-block .image-block {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  }
}

@media(max-width:800px) {
  .video-post-block .image-block .youtube-video ,
  .video-post-block .image-block {
    min-height: 300px;
  }
}
@media(max-width:768px){
  .video-post-block{
    text-align: center;
  }
}
@media(max-width:480px) {
  .video-post-block .image-block .youtube-video ,
  .video-post-block .image-block {
    min-height: 300px;
  }
}
@media(max-width:320px) {
  .video-post-block .image-block .youtube-video ,
  .video-post-block .image-block {
    min-height: 250px;
  }
}
