.video-section {
  padding: 0 0 50px;
}

.video-section .video-holder {
  position: relative;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  background-color: #000;
}

.video-section .video-holder:before {
  content: '';
  display: block;
  padding-bottom: 180%;
}

.video-section .video-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-section__container {
  margin: 0 auto;
  max-width: 610px;
  padding: 0 15px;
}

.video-section__text {
  margin: 0 0 25px;
}

.video-recipe {
  display: block;
  position: relative;
}

.video-recipe:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 9vw solid transparent;
  border-bottom: 9vw solid transparent;
  border-left: 18vw solid #fff;
  z-index: 2;
  opacity: 0.75;
  transition: opacity .3s ease-out;
}

.video-recipe:hover:before {
  opacity: 1;
}

@media print, screen and (min-width: 40em) {
  .video-recipe:before {
    border-top: 4.5vw solid transparent;
    border-bottom: 4.5vw solid transparent;
    border-left: 9vw solid #fff;
  }
}

@media print, screen and (min-width: 64em) {
  .video-recipe:before {
    border-top: 3vw solid transparent;
    border-bottom: 3vw solid transparent;
    border-left: 6vw solid #fff;
  }
}

@media print, screen and (min-width: 125em) {
  .video-recipe:before {
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-left: 120px solid #fff;
  }
}
