.z-index-up {
  z-index: 1;
}

* {
  box-sizing: border-box;
}

.cta {
  background-color: #000;
  color: #fff;
  overflow: hidden;
  padding: 3.125rem 0 3.75rem 0;
  position: relative;
}
.cta .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  top: 0;
  background: #000;
  opacity: 0.5;
}
.cta h2 {
  font-size: 4.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .cta h2 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 480px) {
  .cta h2 {
    font-size: 2.5rem;
  }
}
.cta h2 .gold-heading {
  color: #FAAF3F;
}
.cta .cta-bg-img {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.cta a.btn-outline {
  color: #fff;
}
