.video-list {
  margin: 0px 20px 25px 0px;
  background: #000;
  overflow: hidden;
  position: relative;
}
.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%;
  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: 0.3;
  transition: all 0.35s ease 0s;
}
.video-list:hover img {
  opacity: 0.8;
}
.video-list .video-content {
  position: absolute; width: 100%;
  top: 50%;
  left: 50%; transform: translate(-50%, -50%);
  padding: 20px;
  z-index: 1;
}
.video-list .video-content .title {
  font-size: 1.25rem; text-align: center;
  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-image: linear-gradient(135deg, #89dc65 10%, #89dc65 100%);
}
.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: #5d7677;
  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;
}

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