.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.hero-section-content {
  padding: 0 16px;
  max-width: 900px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}

.hero-section .button-wrapper {
  text-align: center;
}

.hero-section-content h1 {
  font-size: 60px;
}

.hero-section-content p {
  font-weight: 300;
  font-size: 24px;
}

@media (max-width: 900px) {
  .hero-section-content h1 {
    font-size: 32px;
  }

  .hero-section-content p {
    font-size: 16px;
    padding: 0 15px 0 15px;
  }
  
  .button {
    margin-top; 20px;
    font-size: 14px;
  }
 
}