/*Hero*/

.hero-section {
  background: url('../assets/images/banners/hero.jpg') no-repeat center;
  background-size: cover;
  height: 500px;
  position: relative;
  border-radius: 20px;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 6rem;
}

.hero-content {
  color: #FFFFFF;
  max-width: 388px;
  text-align: center;
}

.hero-content .hero-title {
  font-size: 1.87rem;
  margin-bottom: 40px;
  line-height: 36px;
  letter-spacing: 3px;
}

h2{
  font-size: 1.87rem;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 3px;
}

 .hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  padding: 40px 25px;
}

@media (max-width: 768px) {
  .hero-section {
    height: 660px;
    background-image: url(../assets/images/banners/hero.jpg);
  }

  .hero-overlay {
    padding: 0;
  }

  .hero-content .hero-title {
    font-size: 1.5rem;
   }
  .hero-content .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-content {
    max-width: 380px;
    margin: 0 auto;
  }

  .btn{
    font-size: 1.2rem;
  }


}