#customPageTitle {
  display: none;
}
.container {
  width: calc(100% - 4rem);
  margin: 2.2rem auto;
  color: var(--white);
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.banner {
  position: relative;
  display: block;
  width: 100%;
  object-fit: cover;
  height: calc(100vh - 4.4rem - 150px);
}
.col {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}
.textContainer {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
}
.textContainer h1 {
  font-size: 45px;
  /* font-weight: 600; */
}

.textContainer h2 {
  font-size: 21px;
  margin-top: 1rem;
}

@media screen and (max-width: 1100px) {
  .container {
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }

  .textContainer h1 {
    font-size: 2.6rem;
  }

  .textContainer h2 {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  .banner {
    object-fit: contain;
    height: auto;
  }
}
