/* ==========================================================================
   Hero Banner
   ========================================================================== */

.hero-banner {
  position: relative;
  min-height: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  padding: 200px 0 180px;
  background-color: var(--clr-black);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-banner-vector {
  position: absolute;
  left: -72px;
  bottom: 0;
  width: 128px;
  height: 135px;
  z-index: 2;
}
.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 81%);
  z-index: 1;
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1312px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-banner__title {
  font-weight: 700;
  color: var(--clr-white);
  margin: 0;
}

.hero-banner__description {
  font-weight: 400;
  line-height: 1.7;
  color: var(--clr-white);
  max-width: 968px;
}

.hero-banner__description p {
  margin: 0;
}

.hero-banner__cta {
  margin-top: 20px;
}

/* Responsive */

@media (max-width: 1280px) {
  .hero-banner {
    min-height: 750px;
  }
  .hero-banner__title {
    font-size: 44px;
  }
}

@media (max-width: 1024px) {
  .hero-banner {
    padding: 120px 40px 120px;
    min-height: 600px;
  }
  .hero-banner__title {
    font-size: 40px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    padding: 140px 20px 100px;
    min-height: 500px;
  }
  .hero-banner__title {
    font-size: 32px;
  }
  .hero-banner__description {
    font-size: 16px;
    line-height: 28px;
  }
  .hero-banner__cta {
    margin-top: 0;
  }
}

@media (max-width: 375px) {
  .hero-banner {
    padding: 120px 16px 80px;
    min-height: 450px;
  }
  .hero-banner__title {
    font-size: 28px;
  }
}
