/**
Calculate rem
*/
.h-video {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.h-video .containerCVO {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  height: 560px;
  position: absolute;
  top: 0;
  left: 0;
}
.h-video-overlay {
  top: 0;
  z-index: 9999;
  position: absolute;
  height: 100%;
  background: rgba(4, 53, 69, 0.8);
  width: 100%;
}
.h-video-overlay-canvas {
  position: absolute;
  bottom: 0;
  padding: 60px 30px 72px;
}
.h-video-overlay-canvas h1 {
  color: #dee1d5;
  margin-bottom: 10px;
}
.h-video-overlay-canvas p {
  color: white;
  margin-bottom: 20px;
}
.h-video-overlay-canvas button {
  font-family: "Dinpro Regular", sans-serif;
  padding: 14px 20px;
  outline: none;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0 0 46px -10px rgb(20, 20, 20);
          box-shadow: 0 0 46px -10px rgb(20, 20, 20);
  cursor: pointer;
  position: relative;
}
.h-video-overlay-canvas button:after {
  background-color: #fd422d;
  cursor: pointer;
  content: "";
  height: 100%;
  right: -50px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  top: 0;
  width: 50px;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/assets/images/icons/arrowIconWhite.svg);
}
.h-video-overlay-canvas button:hover, .h-video-overlay-canvas button:focus {
  right: 0;
  top: 0;
  width: calc(100% + 50px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (min-width: 992px) {
  .h-video-overlay-canvas {
    padding: 60px;
  }
}
@media (min-width: 992px) {
  .h-video-overlay {
    max-width: 800px;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .h-video-overlay {
    left: calc(50vw - 660px);
  }
}