#customPageTitle {
  display: none
}

.container {
  width: calc(100% - 4rem);
  margin: 0rem auto 2.2rem;
  margin-top: 40px;
  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;
}

.textContainer {
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  left: 30px;
  top: 2rem;
}

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

.textContainer h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 400;
  color: var(--white);
  opacity: 0;
  transition: 0.3s all ease;
  font-family: var(--font1);
  font-weight: 400;
}

.verMasText {
  position: relative;
  opacity: 0;
  top: 15px;
  transition: 0.3s all ease;
  font-family: var(--font1);
  font-weight: 400;
}

.create{
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: flex;
  justify-content: end;
  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);
  border-radius: 100px;
  transition: 0.3s all ease;
}
.create h3:hover{
 background:var(--white);
 color:var(--text);
}
.col:hover .verMasText,
.col:hover .textContainer h2,
.col:hover .banner,
.col:hover .create{
  filter:blur(0px);
  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: contain;
      height: auto
  }

  .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;
  }
  .textContainer h2,
  .create{
    opacity: 1;
  }
  .create{
    opacity: 1;
    right: 15px;
    bottom: 15px;
  }
}