.rem_video_player {
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.rem_video_player .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.rem_video_player .play_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.rem_video_player .play-button {
  position: relative;
  height: 4em;
  width: 4em;
  background-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary);
  border-radius: 50%;
  cursor: pointer;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.rem_video_player .play-button__triangle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  border: solid var(--white);
  border-right-width: 0;
  border-left-width: 15px;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-top-color: transparent;
  border-bottom-color: transparent;
  height: 0;
  width: 0;
  transition: 0.6s;
}
.rem_video_player .video-container {
  position: absolute;
  display: none;
  left: 0;
  height: 0;
  width: 0;
  transition: 0.6s;
}
.rem_video_player .video {
  position: absolute;
  right: 0;
  opacity: 0;
  height: 0;
  width: 0;
  transition: 0.6s;
  visibility: hidden;
}
.rem_video_player .video.fired {
  visibility: visible;
}
.rem_video_player .play_container.-clicked .video {
  opacity: 1;
  width: 853px;
  height: 180px;
}
.rem_video_player .play_container.-clicked .play-button {
  box-shadow: 0 0 0 3px transparent, 0 0 0 3px var(--primary);
}
.rem_video_player .play_container.-clicked .play-button__triangle {
  width: 853px;
  height: 480px;
  border-top-width: 0;
  border-bottom-width: 0;
  border-left-width: 853px;
}
.rem_video_player .play_container.-clicked .video-container {
  width: 853px;
  height: 480px;
}
.rem_video_player .vid_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -2;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.rem_video_player .vid_overlay.fired {
  opacity: 1;
  z-index: 1;
}
.rem_video_player .videobox {
  position: relative;
  backgrouund-repeat: none;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
}
.rem_video_player .zoomin:hover {
  transform: scale(1.3);
}
@media (max-width: 770px) {
  .rem_video_player .videobox {
    position: relative;
    backgrouund-repeat: none;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 170px;
  }
  .rem_video_player .play_container {
    top: 43%;
    left: 49%;
  }
  .rem_video_player .play-button__triangle {
    left: 54%;
    top: 51%;
  }
}

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