.hero-banner {
  position: relative;
  overflow: hidden;
}
.hero-banner__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-banner__image img {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .hero-banner__image img {
    width: 400px;
  }
}
.hero-banner__content {
  text-align: center;
}
@media (min-width: 768px) {
  .hero-banner__content {
    text-align: left;
  }
}
.hero-banner__inner-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
  gap: 50px;
}
@media (max-width: 767.98px) {
  .hero-banner__inner-wrapper {
    grid-template-columns: 1fr;
  }
}
.hero-banner__title {
  color: #377dff;
  font-size: 45px;
}
@media (max-width: 767.98px) {
  .hero-banner__title {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  .hero-banner__title {
    font-size: 35px;
  }
}
.hero-banner__title:first-line {
  font-size: 1.2em;
  font-weight: bold;
}
.hero-banner__description {
  text-wrap: balance;
}
.hero-banner__buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-banner__buttons {
    justify-content: flex-start;
  }
}
