.hero-stack {
  background-color: #f5f7fa;
  background-image: url('../images/Gradient-Background.png');
  background-position: 0 0;
  background-size: cover;
  border-bottom: 1px solid #e4ebf3;
  width: 100%;
  height: 100vh;
  padding: 80px 0;
  display: flex;
  position: static;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-two {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 750px;
  max-width: 750px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: static;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #ff8555;
  width: 250px;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.hero-image {
  width: 100%;
  margin-top: 50px;
}

.field-label, .field-label-2 {
  color: #2b3440;
  text-align: left;
  font-family: Be Vietnam Pro, sans-serif;
}

.heading {
  color: #2b3440;
  margin-bottom: 0;
  font-family: Be Vietnam Pro, sans-serif;
}

.text-field {
  width: 250px;
  margin-bottom: 15px;
}

.text-field-2 {
  margin-bottom: 15px;
}

.heading-2 {
  text-align: center;
  font-family: Be Vietnam Pro, sans-serif;
  font-size: 30px;
}

.text-block {
  margin-bottom: 30px;
  font-family: Be Vietnam Pro, sans-serif;
  font-size: 20px;
}

.heading-3 {
  color: #2b3440;
  margin-top: 10px;
  margin-bottom: 35px;
  font-family: Be Vietnam Pro, sans-serif;
}

.italic-text {
  margin-bottom: 30px;
  display: block;
}

/* Success message styling */
.form-success {
  font-size: 24px;
  font-weight: 600;
  color: #2b3440;
  font-family: Be Vietnam Pro, sans-serif;
  text-align: center;
  margin: 20px 0;
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 728px;
  }

  .text-field {
    opacity: .8;
    margin-bottom: 25px;
  }

  .text-field-2 {
    opacity: .8;
  }
}

@media screen and (max-width: 767px) {
  .hero-stack {
    padding: 60px 15px;
  }

  .hero-wrapper-two, .heading {
    width: 100%;
  }

  .text-block {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    max-width: none;
  }

  .hero-wrapper-two {
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}


