#customPageTitle {
  display: none;
}

.customPageCenteredContent {
  width: 100% !important;
}

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


.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 {
  width: 92%;
  margin: auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container .left {
  width: 50%;
}

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

.container .right {
  width: 42%;
  box-sizing: border-box;
}

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

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

.textContainer .text {
  font-size: 14px;
  font-weight: 400;
  color: #58595B;
  line-height: 20px;
}

.textContainer .text span {
  font-weight: 700;
}

.green {
  color: #80C342;
}

.textContainer {
  width: 100%;
}

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

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

.centeredContent {
  width: 100%;
  margin: 0;
  max-width: unset;
}

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

.centeredContent h2 {
  margin-bottom: 22px;
  width: 100%;
  max-width: unset;
}

.artiContainer {
  width: 92%;
  margin: auto;
  padding-top: 4rem;
  margin-bottom: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  border-top: 1px solid #CFCFCF;
}

.artiContainer h2 {
  text-align: center;
  font-weight: 600;
}

.artiBox {
  display: flex;
  width: 90%;
  margin-top: 20px;
  gap: 3rem;
}

.article {
  width: calc(100% / 4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4A662E;
  font-size: 13px;
  font-weight: 400;
  gap: 10px;
}

.article br {
  display: none;
}

.article img {
  width: 38px;
  padding: 20px;
  background: #80C3420D;
  border-radius: 4px;
}

.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 {
    width: 80%;
    font-size: 20px;
    margin: 3rem 0 17px;
    font-weight: 600;
  }

  .container {
    flex-direction: column-reverse;
    margin-top: 1.5rem;
    width: 90%;
  }

  .artiContainer {
    width: 100%;
    padding-top: 2.5rem;
  }

  .artiBox {
    flex-direction: column;
  }

  .artiContainer h2 {
    font-size: 14px
  }

  .article {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto 2fr;
    gap: 2rem;
    align-items: center;
    justify-content: center;
  }

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

  .textContainer {
    margin-bottom: 30px;
  }

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