.banner {
  position: relative;
  padding-top: clamp(96px, 16vw, 222px);
  padding-bottom: clamp(40px, 6vw, 73px);
  margin-top: calc(-1 * clamp(56px, 10vw, 106px));
}
.banner:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../../../../assets/img/page-banner.webp") no-repeat center/cover;
  pointer-events: none;
}
.banner__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding: 0 56px;
  align-items: center;
}
.banner__content {
  max-width: 490px;
}
.banner__title {
  margin-bottom: 20px;
}
.banner__snippet p + p {
  margin-top: 1em;
}
.banner__action {
  margin-top: clamp(20px, 3vw, 40px);
}
.banner__image img {
  max-width: 486px;
  width: 100%;
}
@media (width < 992px) {
  .banner__grid {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 0;
  }
}
@media (width < 768px) {
  .banner {
    padding-bottom: 0;
    margin-bottom: 40px;
  }
  .banner:after {
    background-position: top left;
    background-size: contain;
  }
  .banner__action .btn {
    width: 100%;
  }
}

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