@charset "UTF-8";

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.video-grid .video-item {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 30%;
  padding: 10px;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  background-color: #193651;
  border-radius: 3px;
  margin: 10px;
}

.video-grid .video-item:hover {
  background-color: #2EA2DB;
  color: #fff;
}

.video-grid .video-item:hover:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 75px;
  font-weight: 400;
  font-family: "Font Awesome 5 Brands";
  content: "\F167";
  color: #F16051;
}

.video-grid .video-item span {
  font-size: 15px;
  text-align: center;
  margin: 10px;
}

.video-grid .video-item span.title:before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  content: "\F167";
  margin-right: 5px;
}

.video-grid .video-item span b {
  font-weight: bold;
}

.video-grid .video-item img {
  width: 100%;
  height: auto;
}

.fancybox-nav {
  position: absolute;
  top: 20%;
  width: 20%;
  height: 60%;
}

.fancybox-nav:hover {
  background-color: #2EA2DB;
  opacity: 0.8;
}

.fancybox-prev span {
  left: 50px;
}

.fancybox-next span {
  right: 50px;
}

@media screen and (max-width: 1300px) {
  .video-grid .video-item {
    width: 45%;
  }
}

@media screen and (max-width: 1000px) {
  .video-grid .video-item {
    width: 100%;
  }
}

