.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 192px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("./../images/hero-bg.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__left {
  position: absolute;
  left: -40px;
  bottom: 0;
  width: 400px;
  z-index: 2;
}

.hero__left img {
  width: 100%;
  height: auto;
}

.hero__right {
  position: absolute;
  right: -60px;
  bottom: 0;
  width: 480px;
  z-index: 2;
}

.hero__right img {
  width: 100%;
  height: auto;
}

.hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1000px;
  position: relative;
  z-index: 3;
}

.hero__title {
  font-family: "Moul", cursive;
  font-size: 80px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}

.hero__subtitle {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .hero__left {
    width: 300px;
    left: -30px;
  }
  .hero__right {
    width: 350px;
    right: -40px;
  }
  .hero__title {
    font-size: 64px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 140px;
  }
  .hero__left,
  .hero__right {
    display: none;
  }
  .hero__title {
    font-size: 42px;
  }
  .hero__subtitle {
    font-size: 16px;
  }
}
