.block-landingpageheader {
  max-width: 100%;
  width: 100%;
  position: relative;
  min-height: 1000px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  padding: 0 200px;
}
@media (max-width: 1440px) {
  .block-landingpageheader {
    padding: 0 100px;
    min-height: 700px;
  }
}
@media (max-width: 1024px) {
  .block-landingpageheader {
    padding: 0 60px;
    min-height: 600px;
  }
}
@media (max-width: 768px) {
  .block-landingpageheader {
    padding: 0 30px;
    min-height: 500px;
  }
}
.block-landingpageheader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), color-stop(90%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 90%);
  pointer-events: none;
}
.block-landingpageheader .landingpageheader-content {
  position: relative;
  padding: 2rem;
  z-index: 1;
}
.block-landingpageheader .landingpageheader-content h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 5rem;
  white-space: pre-line;
}
@media (max-width: 1440px) {
  .block-landingpageheader .landingpageheader-content h2 {
    font-size: 4rem;
  }
}
@media (max-width: 1024px) {
  .block-landingpageheader .landingpageheader-content h2 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .block-landingpageheader .landingpageheader-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 480px) {
  .block-landingpageheader .landingpageheader-content h2 {
    font-size: 2rem;
  }
}
.block-landingpageheader .landingpageheader-content .button-container {
  position: relative;
  display: inline-block;
  margin: 20px;
}
@media (max-width: 1024px) {
  .block-landingpageheader .landingpageheader-content .button-container {
    display: none;
  }
}
.block-landingpageheader .landingpageheader-content .button-container .button-text {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFB200;
  font-weight: bold;
  font-size: 1.2rem;
  pointer-events: none;
}
.block-landingpageheader .landingpageheader-content .button-container svg path {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  fill: transparent;
}
.block-landingpageheader .landingpageheader-content .button-container:hover .button-text {
  color: #FFB200;
}