/* Loading GIF */
#video-loading-gif {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
  background-image: url(../images/loader.gif);
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 999;
}
/* Vimeo videos page */
#vimeo-videos .filters {
  display: inline-block;
  width: 100%;
}
#vimeo-videos .filters .filter {
  display: inline-block;
  float: left;
  margin: 0 20px 20px 0;
  border: 2px solid #dcd9d9;
  border-radius: 2px;
  padding: 7.5px 30px;
}
#vimeo-videos .filter span,
#vimeo-videos .filter select {
  font-family: 'Open Sans';
  font-size: 14px;
  display: inline-block;
  float: left;
  height: 30px;
  line-height: 30px;
}
#vimeo-videos .filter span {
  color: #b7b6b6;
}
#vimeo-videos .filter select {
  outline: none;
  border: none;
  font-weight: 500;
  color: #74bcf7;
  text-transform: uppercase;
}
#vimeo-videos .videos {
  display: inline-block;
  width: 100%;
  margin: 0 -20px;
}
#vimeo-videos .video {
  float: left;
  width: 33.33%;
  padding: 20px;
}
#vimeo-videos .video .image {
  position: relative;
  height: 250px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  cursor: pointer;
}
#vimeo-videos .video img {
  display: none;
  max-width: 100%;
}
#vimeo-videos .video .image:before,
#vimeo-videos .video img:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 106px;
  height: 72px;
  background: url(../images/play-button.png);
  background-size: 100% 100%;
}
#vimeo-videos .video .text {
  padding: 20px;
  background: #eaeaea;
  height: 180px;
  overflow: hidden;
}
#vimeo-videos .video .text .title {
  color: #0f6cb6;
  font-weight: 600;
}
#vimeo-videos .video .text .description {
  color: #707f8a;
  font-size: 14px;
}
@media only screen and (max-width: 1024px) {
  #vimeo-videos .video {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  #vimeo-videos .video {
    width: 100%;
  }
  #vimeo-videos .video .image {
    background: none;
    height: auto;
  }
  #vimeo-videos .video img {
    display: block;
  }
}
/* End of vimeo videos page */
/* Vimeo Video Details page */
#vimeo-videos .single-video .title {
  font-family: "Barlow Condensed";
  font-weight: 700;
  line-height: 1.3;
  font-size: 26px;
  color: #b20838;
  margin-bottom: 0;
}
#vimeo-videos .single-video .video-frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
#vimeo-videos .single-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* End of imeo Video Details page */
