/* Hero section */
.hero {
  padding: 60px 0 80px;
}

.hero__banner {
  position: relative;
  background-size: cover;
  border-radius: 10px;
  padding: 60px 32px;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, rgba(40, 40, 40, 0.6) 11%, rgba(40, 40, 40, 0) 37%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #FFFFFF;
}

.hero__title {
  font-weight: 600;
  font-size: 64px;
  line-height: 1.14;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.hero__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56;
  margin: 0 0 32px 0;
  opacity: 0.9;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--color-primary);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  transition: all 0.3s ease;
}

.hero__button:hover {
  background: #D01920;
  transform: translateY(-2px);
}

/* Responsive */


@media (max-width: 1024px) {

  
  .hero__title {
    font-size: 48px;
  }
  
  .hero__description {
    font-size: 16px;
  }
  
  .hero__button {
    font-size: 16px;
    padding: 14px 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 0 40px;
  }
    
  .hero__banner {
    padding: 40px 20px;
    min-height: 320px;
  }
  
  .hero__title {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .hero__description {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .hero__button {
    font-size: 14px;
    padding: 12px 16px;
  }
}
@media (max-width: 490px) {

  .hero__title {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .hero__description {
    font-size: 14px;
  }
}

