.hero {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  min-height: 100vh;
}

.hero.hero-half {
  min-height: 70vh;
}

.hero .z-index-wrapper {
  z-index: 1;
}

.hero .z-index-wrapper .btn {
  font-family: Inter Tight, serif;
  font-weight: 600;
}

.hero .hero-img-wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
}

.hero .hero-wrapper {
  display: flex;
  height: 100%;
  width: 100%;
  flex: 1 1 0%;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .content-wrapper .description {
  max-width: 43.75rem;
}

.hero .date-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

@media (max-width: 96rem) {
  .hero .hero-wrapper {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero .content-wrapper .description {
    max-width: 50rem;
  }

  .hero .date-wrapper {
    gap: 0.5rem;
  }
}

@media (max-width: 87.5rem) {
  .hero .hero-wrapper {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero .content-wrapper .description {
    max-width: 45rem;
  }
}

@media (max-width: 75rem) {
  .hero .hero-wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero .content-wrapper .description {
    max-width: 40rem;
  }
  .hero .content-wrapper{
    margin-top:4rem;
  }
}

@media (max-width: 62rem) {
  .hero .hero-wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero .content-wrapper .description {
    max-width: 35rem;
  }

  .hero .date-wrapper {
    gap: 0.25rem;
  }

  .hero .content-wrapper{
    margin-top:4rem;
  }
}

@media (max-width: 35.4375rem) {
  .hero .hero-wrapper {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero .content-wrapper .description {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero .content-wrapper{
    margin-top:4rem;
  }
}

/*# sourceMappingURL=hero.css.map */