.video-wrapper {
  background-color: black;
}
.video-wrapper .container {
  cursor: pointer;
  position: relative;
  height: 100vh;
}
.video-wrapper .container .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
}
.video-wrapper .container .cover::after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid white;
  z-index: 1;
}
.video-wrapper .container .cover::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0.2;
  z-index: 1;
}
.video-wrapper .container video {
  width: 100%;
  height: 100%;
}

.video-cta .cover {
  display: inline-block;
  height: 500px;
  width: 800px;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}
@media screen and (max-width: 550px) {
  .video-cta .cover {
    width: 100%;
  }
}

.view .video-item-wrapper {
  position: relative;
}
.view .video-item-wrapper .title {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  color: white;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 550px) {
  .view .video-item-wrapper .title {
    font-size: 1em;
  }
}
.view .video-item-wrapper video {
  width: 100%;
  border-radius: 20px;
}
.view .video-item-wrapper .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-size: cover;
}
.view .video-item-wrapper .cover::after {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid white;
  z-index: 1;
}
.view .video-item-wrapper .cover::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0.2;
  z-index: 1;
}

/*# sourceMappingURL=video.css.map */
