.video-list {
  margin: 0px 20px 10px 0px;
  background: #000;
  overflow: hidden;
  position: relative;
  border: 1px solid #555;    
}
.video-list:hover {
  border: 1px solid #e2e2e2;    
}
.video-list figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 64%;
}
.video-list figure .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.video-list:after {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: -30%;
  bottom: 0;
  right: 70%; z-index: 2;
  transform: skew(35deg) translateX(-50%);
  transition: all 0.35s ease 0s;
}
.video-list:hover:after {
  transform: skew(20deg) translateX(0);
}
.video-list img {
  max-height: 100%;
  opacity: 1;
  transition: all 0.35s ease 0s;
}
.video-list:hover img {
  opacity: 0.8;
}
.video-list .video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%, -50%);
  z-index: 3;
}
.video-list .video-content .title {
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 10px 0;
  transform: scale(1);
  transition: all 0.35s ease 0s;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
}
.video-list .video-content .title:after {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  margin: 10px auto;
  background: #ccb77a;
}
.video-list .video-content .link {
  position: relative;
  display: block;
  margin: 5px auto;
  width: 50px;
  height: 50px;
  padding-top: 1.5vh;
  opacity: 0;
  border-radius: 50em;
  background: #FFFDFD;
  transition: all 0.35s ease 0s;
}
.video-list .video-content .link:before {
  position: absolute;
  left: 11px;
  top: 11px;
  content: "";
  display: block;
  background: url(icons/icon-link.svg) no-repeat;
  width: 30px;
  height: 30px;
}
.video-list:hover .link {
  opacity: 1;
}
.video-list-title{
    font-size: 1.25rem;
    color: #fff;
    margin: 0 0 30px 0;
    transform: scale(1);
    transition: all 0.35s ease 0s;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);  
    padding-right: 20px;
    text-align: center;
}

@media only screen and (max-width: 1024px) {
  .video-list {
    margin: 0 0 25px 0;
  }
}

@media only screen and (max-width: 575px) {
  .video-list {
    max-width: 480px; margin: 0 auto 30px auto;
  }
}