.exquisite-multistep-form h2 {
  color: var(--primaryColor)!important;
  margin-bottom: 20px;
}

/* CTAs */
.multistep-form-ctas {
  margin-bottom: 15px;
}
.multistep-form-cta,
.multistep-form-cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  margin-bottom: 15px;
}
.multistep-form-cta-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: var(--primaryColor);
  border: 1px solid #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60% auto;
  border-radius: 100%;
  margin-right: 10px;
}
.multistep-form-cta-img img {
  display: none;
}
.multistep-form-cta-img span {
  font-size: 20px;
}
.multistep-form-cta a .multistep-form-cta-img {
  transition: all ease-in-out 200ms;
}
  .multistep-form-cta a:hover .multistep-form-cta-img {
    background-color: var(--secondaryColor);
  }
@media (min-width:768px) {
  .multistep-form-cta,
  .multistep-form-cta a {
    font-size: 22px!important;
  }
}

.multistep-form-cta a span {
  padding: 15px 30px;
  background: var(--primaryColor);
  border-radius: 40px;
  border: 1px solid #fff;
  transition: all ease-in-out 200ms;
}
.multistep-form-cta a:hover span {
  background: #0062a5;
  color: #fff;
  border: 1px solid #fff;
}

/* Form */
.multistep-form {
  transition: all ease-in-out 200ms;
  margin-top: 15px;
}
.multistep-form.lp-form-01 {
  background: rgba(255,255,255,.2);
  width: 100%;
}
.multistep-form .slick-list {
  transition: all 200ms ease-in-out 0s;
}
.multistep-form .slick-slide {
  padding-bottom: 70px;
}
.multistep-form legend {
  display: none!important;
}

.multistep-form .field > label {
  font-weight: 400;
}

.multistep-form .hs-input:not([type="radio"]):not([type="select"]) {
  border-bottom: 1px solid rgba(139,198,62,.9);
}
.multistep-form .hs-input:not([type="radio"]):not([type="select"]):focus {
  border-bottom: 1px solid rgba(139,198,62,1);
}

.multistep-form .btn {
  padding: 15px 30px!important;
  width: auto!important;
  float: right;
  position: absolute;
  border: 1px solid #fff!important;
  right: 0;
  bottom: 0;
}
.multistep-form .hs-error-msgs {
  margin: 5px 0 10px!important;
}
.multistep-form .hs-error-msgs li {
  color: #fff;
  margin: 0;
}
.multistep-form .hs-error-msgs li label {
  color: #fff;
}

/* Form Heading */
.multistep-form-heading {
  display: none;
}


/* Footer */
.multistep-form-footer {
  font-size: 14px;
  margin-top: -50px;
}

/* Popup */
.multiple-step-form-cta-popup {
	background: transparent;
	padding: 0;
	text-align: left;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
.multiple-step-form-cta-popup .mfp-close {
  color: #fff!important;
}
.multistep-form textarea {
    min-height: 75px;
}