.hero {
  position: relative;
  max-width: 1920px;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 32px 0;
  margin: 0 auto;
  max-width: 864px;
}

.hero-h1 {
  text-align: center;
  margin: 20px 0;
}

.hero-subtitle {
  color: #4B5563;
  text-align: center;
  max-width: 680px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin: 40px 0 56px;
}

.hero-img {
  width: 1300px;
  aspect-ratio: 1220/500;
  border-radius: 20px 20px 0 0;
  padding: 10px 10px 0 10px;
  overflow: hidden;
}
.hero-img img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 1300px) {
  .hero-img {
    width: 94vw;
  }
}
@media (max-width: 768px) {
  .hero-wrap {
    padding: 104px 16px 0;
  }
  .hero-btns {
    margin: 40px 0;
  }
  .hero-img {
    border-radius: 6px 6px 0 0;
    padding: 3px 3px 0 3px;
  }
  .hero-img img {
    border-radius: 4px 4px 0 0;
  }
}
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
}