.hero-header-container {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}
.hero-header-container .section {
  position: relative;
  min-height: 70vh;
  min-width: 100vh;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .hero-header-container .section {
    min-width: 0;
  }
}
.hero-header-container .section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-header-container .section .text-container {
  position: absolute;
  bottom: 100px;
  padding: 0 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-header-container .section .text-container {
    flex-direction: column;
    padding: unset;
  }
}
.hero-header-container .section .text-container .text {
  color: #fff;
  font-weight: 900;
  font-size: 64px;
  width: 50%;
}
@media (max-width: 768px) {
  .hero-header-container .section .text-container .text {
    width: 100%;
    text-align: center;
  }
}
.hero-header-container .section .text-container .cta-button {
  border-radius: 50px;
  background: #fff;
  align-self: center;
  height: auto;
  max-height: 80px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  width: 20%;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .hero-header-container .section .text-container .cta-button {
    width: 100%;
    margin-top: 16px;
  }
}
@media (max-width: 576px) {
  .hero-header-container .section .text-container .cta-button {
    padding: 0 12px;
  }
}
.hero-header-container .section .text-container .cta-button .cta-button-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  width: 100%;
  font-size: 24px;
}
@media (max-width: 576px) {
  .hero-header-container .section .text-container .cta-button .cta-button-text {
    font-size: 16px;
  }
}
