.videowrap{
  min-height: 600px;
  padding:15px;
  margin-top:90px;
  background:#fbfbfb;
}

.videocontent{ 
  position: relative;
  margin: 15px 0 30px;}
.videocontent img{
  border-radius: 30px;
  box-shadow: 0px 2px 10px #CCC;
  width:100%;
  transition: transform 0.3s ease;
}
@media (max-width: 480px) {
  .videocontent img{
    border-radius: 20px;
  }
}

.videocontent:hover img{
  transform: scale(1.05);
}
.videocontent img:hover + h3.videotitle{
  color: #009C48;
}
.videocontent .play{
  display: block;
  position: absolute;
  right: 41%;
  bottom: 36%;
  width: 70px;
}
@media screen and (max-width: 992px){
  .videocontent .play{
    width: 60px;
    right: 35%;
    bottom: 26%;  
  }
}
@media screen and (max-width: 768px){
  .videocontent .play{
    right: 41%;
    bottom: 36%;
    width: 70px;
  }
}
@media screen and (max-width: 480px){
  .videocontent .play{
    right: 38%;
    bottom: 30%;
    width: 70px;
  }
}
.videocontent .play>img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

h3.videotitle {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #333350;
  margin-top: -10px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: left;
}
.video_text{
  margin: 0 20px;
}

.plyr__control--overlaid{
  background: #D31C25;
}
.plyr--full-ui input[type=range]{
  color: #D31C25;
}