#customPageTitle {
  display: none
}
.customPageCenteredContent {
  max-width: unset;
}
.container {
  width: 100%;
  margin: 0rem auto 2.2rem;
  color: #fff;
  display: grid;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 50px;
  overflow: hidden;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  text-align: center
}

.banner {
  display: block;
  width: 100%;
  object-fit: cover;
  height: calc(100vh - 3.4rem);
  filter: blur(2px);
  filter:brightness(70%);
  transition: 0.3s all ease-in
}

.col {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  position: relative;
}

a.col.observer.onViewport {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s
    both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
}

.col:hover .textContainer {
  -webkit-animation: fade-in-top 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  filter: brightness(1.2);
}

.col:hover .create {
  -webkit-animation: fade-in-bottom 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s
    both;
  animation: fade-in-bottom 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
  filter: brightness(1.2);
}


.textContainer {
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  left: 0;
  right: 0;
  top: 40%;
  margin: auto;
}

.textContainer h1 {
  font-size: 3.8rem;
  font-weight: 600
}

.textContainer h2 {
  margin: 0;
  font-size: 45px;
  color: var(--white);
  opacity: 0;
  transition: 0.3s all ease;
  font-family: 'Trirong Italic';
  font-weight: 400;
  font-style: italic;
  max-width: unset;
  text-align: center;
}

.verMasText {
  position: relative;
  opacity: 0;
  top: 1px;
  font-size: 16px;
  transition: 0.3s all ease;
  font-family: 'Figtree';
  font-weight: 500;
  line-height: 28px;
}

.create{
  position: absolute;
  bottom: 50px;
  right: 0;
  LEFT: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: 0.3s all ease;
}
.create h3{
  padding: 5px 30px;
  width: fit-content;
  line-height: 30px;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid var(--white);
  transition: 0.3s all ease;
  border: 1px solid #FFFFFF;
}
.create h3:hover{
 background:var(--base-aux);
 color:var(--base);
}
.col:hover .verMasText,
.col:hover .textContainer h2,
.col:hover .banner,
.col:hover .create{
  filter:brightness(0.8);
  opacity: 1;
}

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

  .textContainer h1 {
      font-size: 2.6rem
  }

  .textContainer h2 {
  }

  .banner {
      object-fit: cover;
      height: auto;
      aspect-ratio: 1;
  }

  .verMasText {
      opacity: 0;
      margin: 0
  }
}
@media screen and (max-width: 768px){
  .verMasText{
  opacity: 1;
  line-height: normal;
  height: 20px;
  top: 6px;
  font-size: 12px;
  }
  .textContainer{
    width: 100%;
    height: 40%;
    margin: 0;
    flex-direction: column-reverse;
    justify-content: start;
    font-weight: 300;
    /* left: 14px; */
  }
  .textContainer h2{
    margin-top: 0px;
    font-size: 25px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
  }
  .textContainer h2,
  .create{
    opacity: 1;
  }
  .create{
    opacity: 1;
    right: 15px;
    bottom: 15px;
  }
}