#customPageTitle {
  display: none
}

h1 {
  opacity: 1;
  margin-top: 40px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: left;
  font-size: 20px
}

.centeredContent>section {
  width: 95%;
  margin: 0 auto
}

.centeredContent>section {
  width: 100%
}

.row {
  display: flex;
  flex-direction: row-reverse
}

.row:nth-of-type(even) {
  flex-direction: row
}

.row:nth-of-type(odd) .col-2:first-child .info.onViewport {
  opacity: 0;
  -webkit-animation: fade-in-left 0.5s cubic-bezier(.39, .575, .565, 1) 0.2s both;
  animation: fade-in-left 0.5s cubic-bezier(.39, .575, .565, 1) 0.2s both
}

.row:nth-of-type(even) .col-2:first-child .info.onViewport {
  opacity: 0;
  -webkit-animation: fade-in-right 0.5s cubic-bezier(.39, .575, .565, 1) 0.2s both;
  animation: fade-in-right 0.5s cubic-bezier(.39, .575, .565, 1) 0.2s both
}

.col-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%
}

.imgContainer,
.img {
  width: 100%;
  display: block
}

.centeredContent {
  width: 100%;
  margin: 0
}

.info {
  opacity: 0;
  width: 71%
}

.centeredContent h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
  width: 100%;
  max-width: unset
}

.videoBanner {
  height: calc(100svh - var(--menu-height));
  width: 100%;
  object-fit: cover
}

@media screen and (max-width: 1100px) {
  .centeredContent {
    font-size: 13px;
  }

  .row {
    flex-direction: column-reverse;
  }

  h1 {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: calc(var(--h1-font-size) - 5px);
    line-height: calc(var(--h1-line-height) - 5px)
  }

  .row:nth-of-type(even) {
    flex-direction: column-reverse;
  }

  .col-2 {
    width: 100%
  }

  .info {
    width: 92%;
    margin: 10px 0 40px;
  }

  .centeredContent h2 {
    margin-bottom: 17px
  }

  .videoBanner {
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9
  }

  .row:nth-of-type(even) .col-2:first-child .info.onViewport {
    margin-top: 2rem;
  }
}