#customPageTitle {
  display: none;
}
h1 {
  opacity: 0;
  margin-top: 40px;
  margin-bottom: 45px;
}
.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;
}

.container{
  display: flex;
  width: 80%;
  margin: 40px auto;
  gap: 30px;
}
.left{
  width: 50vw;
  display: flex;
  flex-direction: column;
  margin: auto;
}
.left img{
  width: 30%;
}
.textContainer{
  margin-top: 20px;
  width: 72%;
  font-weight: 300;
}
.textInfo{
  margin-top: 20px;
  width: 72%;
  font-weight: 300;
}

.right{
  width: 50vw;
}
.infoDescription{
  width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.infoDescription h3{
  font-weight:700
}
.right img{
  width: 85%;
}
.imagesContainer{
  width: 50vw;
  display: flex;
  gap: 15px;
  margin: 40px 0;
}
.imagesContainer img{
  width: 48%;
}
.col-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.imgContainer,
.img {
  width: 100%;
  display: block;
}
.line{
    border-bottom: 1px solid var(--third);
}
.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: 0px;
    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;
  }
  .videoBanner {
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 768px){
  .container{
    flex-direction: column;
    width: 90%;
    gap: 0px;
    margin-bottom: 40px;
  }
  .reverse{
    flex-direction: column-reverse;
  }
  .left, .right{
    width:100%;
    margin:auto;
  }
  .left {
    margin-top:20px;
  }
  .left img {
    width: 40%;
  }
  .textContainer {
    width:100%;
  }
  .right img{
    width: 100%;
    margin-bottom: 0px;
  }
  .imagesContainer {
    width: 100%;
  }
  .infoDescription {
    width: 100%;
  }
  .textInfo {
    width: 100%;
  }

}