.video-container {
  width: 100%;
  margin: 60px auto 0;
  max-width: 1366px;
  position: relative;
  z-index: 5;
  transform: translateY(70px);
}

.video-container-inner {
  padding: 25px 0 56.25%;
  padding-bottom: calc(56.25% - 25px);
  height: 0;
  max-width: 1366px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-link {
  text-align: center;
  margin: 140px auto 0;
  cursor: pointer;
  font-family: "Helvetica";
  color: black;
  font-weight: bold;
  width: 121px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 250ms ease-in-out, transform 290ms ease-in-out;
  position: relative;
  z-index: 20;
}

.video-link.show {
  opacity: 1;
  transform: translateY(0);
}

.video-link-image {
  width: 22px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-top: 5px;
  display: inline-block;
}

@media (max-width: 480px) {
  .iOS .vjs-fullscreen-control {
    display: none;
  }
  
  .video-container {
    padding-left: 0;
    padding-right: 0;
    margin-left: -40px;
    margin-right: -40px;
    width: 100vw;
    height: 56.25vw !important;
  }

  .video-link {
    margin-top: 30px;
    width: 90px;
  }

  .video-link-image {
    display: none;
  }
}

@media (min-width : 481px) { 
  .video-container video::-webkit-media-controls-start-playback-button,
  .video-container video::-webkit-media-controls-play-button,
  .video-container video::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
  }

  .vjs-afterglow-skin .vjs-duration,
  .vjs-afterglow-skin .vjs-current-time-display,
  .vjs-afterglow-skin .vjs-big-play-button,
  .vjs-afterglow-skin .vjs-play-control,
  .vjs-volume-menu-button {
    display: none !important;
  }

  .vjs-afterglow-skin .vjs-play-progress {
    background-color: #333;
    opacity: 0.7;
  }

  .vjs-afterglow-skin .vjs-slider {
    background-color: #ccc;
    height: 7px;
    margin: 0 12% !important;
  }

  .video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 150;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    opacity: 0;
    cursor: pointer;
    transition: opacity 200ms ease-in-out;
    z-index: 0;
  }

  .volume-button {
    position: absolute;
    left: 5%;
    bottom: 20px;
    display: none;
    width: 5.9%;
    max-width: 56px;
    cursor: pointer;
  }

  .iOS .volume-button {
    display: none !important;
  }

  .vjs-paused ~ .play-button {
    opacity: 1;
    z-index: 1;
  }

  .vjs-playing:hover ~ .pause-button, .vjs-playing ~ .pause-button:hover {
    opacity: 1;
  }

  #android-button-link {
    margin-top: 0;
    margin-left: 15px;
  }
}
.youtube {
    background-color: #000;
    margin-bottom: 30px;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
}
.youtube img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
}
.youtube .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
}
.youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}
.youtube img,
.youtube .play-button {
    cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
    position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
}
.youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
