.videos {
  margin-top: 20px;
}
.videos .video {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  padding-bottom: 20px;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: white;
}
.videos .video .img {
  position: relative;
  text-align: center;
}
.videos .video .img .play-overlay {
  left: 0px;
  right: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}
.videos .video .img .play-overlay:before {
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}
.videos .video h1 {
  font-size: 20px;
  display: block;
  margin-bottom: 14px;
  margin-top: 0px;
  padding: 21px 8px;
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  background-color: #00ADD7;
  font-weight: bold;
}
.videos .video p {
  color: #231F20;
}
@media (min-width: 769px) {
  .videos .video {
    height: 500px;
    min-height: 500px;
  }
}
.videos .video:hover {
  z-index: 999;
  text-decoration: none;
}
@media (min-width: 769px) {
  .videos .video:hover {
    -webkit-transform: scale(1.14);
    -moz-transform: scale(1.14);
    -o-transform: scale(1.14);
    -ms-transform: scale(1.14);
    transform: scale(1.14);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  }
}
.videos .video:hover h1 {
  background-color: black;
  text-decoration: underline;
}
