.hero {
  width: 100%;
  height: 100vh;
  background-color: var(--secondary-background);
}

.hero .swiper-slide {
  background-color: var(--secondary-background);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.hero .swiper-slide .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero .swiper-slide:nth-child(1) {
  background-image: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    url(../images/slider-hero/slider-hero-1.webp);
}

.hero .swiper-slide:nth-child(2) {
  background-image: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    url(../images/slider-hero/slider-hero-2.webp);
}

.hero .swiper-slide:nth-child(3) {
  background-image: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    url(../images/slider-hero/slider-hero-3.webp);
}

.hero .swiper-slide:nth-child(4) {
  background-image: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    url(../images/slider-hero/slider-hero-4.webp);
}

.hero .swiper-pagination-bullet {
  background-color: var(--secondary-background);
}

.hero h1 {
  max-width: 1024px;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -2.2px;
  margin: 32px 0 24px 0;
}

.hero h1 strong {
  font-weight: 900;
}

.hero p {
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  letter-spacing: -0.64px;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
    letter-spacing: -1.9px;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-btn {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    letter-spacing: -1.2px;
  }
}

@media screen and (max-width: 475px) {
  .hero h1 {
    font-size: 2.25rem;
    letter-spacing: -0.7px;
  }
}
