#customPageTitle {
  display: none;
}

h1 {
  opacity: 0;
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  font-family: var(--secondary-font-family);
  font-style: italic;
  text-transform: lowercase;
}

.bannerContainer,
.bannerContainer img {
  width: 100%;
}

.bannerContainer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.titleContainer {
  position: absolute;
}

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

.centeredContent > section {
  width: 100%;
}

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

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

.row:nth-of-type(odd) .col-2:first-child .info.onViewport {
  opacity: 0;
  -webkit-animation: fade-in-left 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s
    both;
  animation: fade-in-left 0.5s cubic-bezier(0.39, 0.575, 0.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(0.39, 0.575, 0.565, 1) 0.2s
    both;
  animation: fade-in-right 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
}

.contactBanner {}

.container {width: 95%;margin: 2.5vw 2.5vw;display: flex;align-items: center;}

.container .left {
    width: 45%;
}

.container .left img {
    width: 100%;
}

.container .right {
    width: 55%;
    box-sizing: border-box;
    padding: 160px;
}

h2.title {
    text-transform: unset;
    color: black;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.textContainer .text {
    font-size: 13px;
}

.textContainer {
    margin-bottom: 70px;
}

.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) {
  .row {
    flex-direction: column;
  }

  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;
  }

  .col-2 {
    width: 100%;
  }

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

  .centeredContent h2 {
    margin-bottom: 17px;
  }

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

.container .right {
    padding: 2.5%;
}

.container .right, .container .left {
    width: 100%;
}

.textContainer {
    margin-bottom: 30px;
}

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