:root {
  --grid-gutter-width: 30px;
  --border-opacity: 1;
}

@media (max-width: 767px) {
  :root {
    --grid-gutter-width: 40px;
  }
}
.home-hero {
  padding: 10rem 0 4rem;
  min-height: calc(100vh - 170px);
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.home-hero__bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.home-hero .ia-container {
  position: relative;
  z-index: 2;
}
.home-hero__text {
  max-width: 64rem;
  border-radius: 2.4rem;
  padding: 4.8rem;
  background: #FEEFD7;
  box-sizing: border-box;
}
.home-hero__btns {
  display: flex;
  gap: 1.6rem;
}
.home-hero__btns a {
  flex: 1;
}
.home-hero + .module {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 1px;
    padding: 0;
    display: block;
  }
  .home-hero__bg {
    width: 100%;
    padding-bottom: 74%;
    position: relative;
  }
  .home-hero__text {
    padding: 3.2rem 2rem;
    margin: 0 -2rem;
    border-radius: 0;
    max-width: none;
  }
  .home-hero__btns {
    flex-wrap: wrap;
  }
  .home-hero__btns a {
    flex: 1 1 100%;
    width: 100%;
  }
}

/*# sourceMappingURL=hero.css.map */