.hero-section {
  margin-bottom:120px  !important;
  position: relative;
  overflow: hidden;

}

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

.hero-row-fluid {
  max-width: 1240px;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  z-index: 2;
  top:120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section-content {
  padding: 40px;
  max-width: 800px;
  width: 100%;
}


.hero-section .button-wrapper .button {
  color: var(--gold);
  background: #fff;
  padding:12px 32px;
  border::1px solid var(--gold);
}
.hero-section-content h1 {
  font-size: 60px;
}

@media (max-width: 900px) {
  .hero-section-content h1 {
    font-size: 32px !important;
  }
  .hero-section {
    margin-bottom:80px !important;
  }
  .hero-row-fluid{
    left:0;
    justify-content: flex-end;
  }
  .hero-section-content {
    padding: 32px 0 40px;

  }
}

.hero-section-content p {
  font-weight: 400;
  font-size: 16px;
}


