@charset "UTF-8";

.video-wrapper {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 56.25vw;
  max-height: 100vh;
}
.video-wrapper video {
  display: block;
  position: relative;
  margin: auto;
  width: 100% !important;
  height: auto !important;
}
.vid-wrapper,
.vid-main,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.video-overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
}
.after-video {
  margin-top: 56.25vw;
}
.video-cta {
  text-align: center;
  margin-top: 20px;
}
.video-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ba9642;
  padding: 5px 25px;
  border: none;
  color: white;
  text-transform: uppercase;
  transition: .2s linear all;
}
.video-cta a i {
  font-size: 24px;
  margin-left: 15px;
  transition: .2s linear all;
}
.video-cta a:hover {
  color: white;
  box-shadow: 0px 0px 60px -3px rgba(0, 0, 0, 0.33);
  background: #313740;
}
.video-cta a:hover i {
  margin-left: 25px;
}