.video-section {
  display: block;
}

.video-section--bg {
  -webkit-clip-path: polygon(0 30%, 100% 5%, 100% 100%, 0 100%);
  clip-path: polygon(0 30%, 100% 5%, 100% 100%, 0 100%);
  background: url("handshake-background.png") no-repeat;
  height: 490px;
  position: relative;
  background-size: cover;
}

@media screen and (max-width: 1198px) {
  .video-section--bg {
    -webkit-clip-path: polygon(0 30%, 100% 10%, 100% 100%, 0 100%);
    clip-path: polygon(0 30%, 100% 10%, 100% 100%, 0 100%);
  }
}

@media screen and (max-width: 900px) {
  .video-section--bg {
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .video-section--bg {
    -webkit-clip-path: polygon(0 30%, 100% 15%, 100% 100%, 0 100%);
    clip-path: polygon(0 30%, 100% 15%, 100% 100%, 0 100%);
    background-position: center center;
  }
}

.video-section--bg:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(5, 180, 249, .9);
  z-index: -1;
}

.video-section__icon {
  background-color: transparent;
  border: 0;
  margin-top: 20px;
}

.video-section__icon:focus {
  outline: 0;
}