.customPageCenteredContent {
  width: 95%;
  min-width: 0;
  margin: 40px auto;
  max-width: none
}

.boxContainer {
  display: flex;
  height: 100%;
  gap: 8%;
  width: 100%;
  margin: 0;
  align-items: center;
}

.boxContainer .right {
  width: 100%;
  height: 100%;
  aspect-ratio: 723/690;
}

.left {
  width: 82%;
  margin: 0 auto;
  height: auto;
  align-content: center;
}

.leftContainer {
  width: 100%;
  color: var(--h1);
  display: block;
  margin: 0 auto;
}

.customBanner {
  width: 100%;
  object-fit: contain;
  height: 100%
}

.titleCustom {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 22px;
  text-transform: uppercase;
  text-align: left
}

#customPageTitle {
  display:none
}

.textContainer{
  width: 63%;
  display: flex;
  color: var(--h1);
  flex-direction: column;
  line-height: 18px;
  position: relative;
  justify-content: center;
}

.textContainer p {
  text-align: left;
  font-size: var(--base-font-size);
  margin-block: 1rem 3rem;
}

@media screen and (max-width: 768px) {

.boxContainer {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.left {
  width: 100%;
  align-content: center;
}

.titleCustom {
  font-size: 18px;
  text-align: center;
}

.textContainer{
  width: 100%;
}

.textContainer p {
  text-align: left;
}
}