main#home {
  padding: 0 !important;
  top: 0 !important;
}

.background-col-container {
  flex-basis: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .background-col-container {
    gap: 0px 30px;
  }
}
.background-col {
  grid-column: span 12;
}
.background-video-wrap .Normal {
  padding: 0;
  font-size: inherit;
  position: relative;
  z-index: 1;
}
.background-video-wrap .Normal h1, .background-video-wrap .Normal h2 {
  text-shadow: 0px 0px #003974;
  font-size: calc(1.825rem + 6.9vw);
  color: #FFFFFF;
  position: relative;
}
@media (min-width: 1200px) {
  .background-video-wrap .Normal h1, .background-video-wrap .Normal h2 {
    font-size: 7rem;
  }
}
.background-video-wrap .Normal p {
  font-size: calc(1.55rem + 3.6vw);
  text-shadow: 0px 0px 20px #003974;
  color: #FFFFFF;
  font-family: "acumin-pro-condensed";
  margin: 0;
  line-height: 1.2;
  padding: 0 15px;
  position: relative;
}
@media (min-width: 1200px) {
  .background-video-wrap .Normal p {
    font-size: 4.25rem;
  }
}
@media (min-width: 1024px) {
  .background-video-wrap .Normal p {
    padding: 0 60px;
  }
}
.background-video-wrap .Normal hr {
  height: 4px;
  width: 779px;
  margin-left: auto;
  margin-right: auto;
  background-color: #FAA62F;
  position: relative;
  border-top: none;
}
.background-video {
  height: 720px;
  overflow: hidden;
  background-color: rgba(0, 57, 116, 0.64);
  display: flex;
}
.background-video .videoWrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.5;
}
.background-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}
@media (min-aspect-ratio: 16/9) {
  .background-video video {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .background-video video {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}
