.lp-contact-form {
  padding: 80px 20px;
}

.lp-contact-form .wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}
.lp-contact-form .wrap .column-arrow {
  min-height: 31px;
}
.lp-contact-form  h2 {
  color: #FFF;
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 44px;
  margin-bottom: 16px;
}
.lp-contact-form  h2 > span {
  color: #00488e;
}
.lp-contact-form .desc p,
.lp-contact-form .desc p > a {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}
.lp-contact-form .desc {
  margin-bottom: 12px;
}
.lp-contact-form .desc p > a {
  text-decoration: underline;
}

.lp-contact-form .button-wrapper a {
  border-radius: 40px;
  background: #73926F;
  box-shadow: -2px 4px 34px 0px rgba(0, 0, 0, 0.15);
  padding: 24px 40px;
  display: block;
  text-align: center;
  width: fit-content;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: ease-in-out all 200ms;
}
.lp-contact-form .button-wrapper a:hover {
  background: #347196;
  text-decoration: none;
}
.lp-contact-form .button-wrapper a:active {
  background: #155176;
  text-decoration: none;
}
.lp-contact-form .optional-description {
  margin-top: 20px;
}
.lp-contact-form .optional-description *{
  color: #FFF;
  text-align: center;
}

.lp-contact-form .down-arrow-animated span {
  border-bottom: 3px solid #BEEBB8;
  border-right: 3px solid #BEEBB8;
}

.lp-contact-form .form-wrapper {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  margin-top: 40px;

}

.lp-contact-form .form-input-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-contact-form .form-input-wrap .input-wrap {
  width: 100%;
  max-width: 100%;
}
.lp-contact-form .form-input-wrap .input-wrap.half-form-control {
 max-width: calc(100% / 2 - 8px);
}

.lp-contact-form .form-input-wrap .input-wrap > p {
  margin-bottom: 0;
}

.lp-contact-form .form-input-wrap .input-wrap input:not([type="submit"]),
.lp-contact-form .form-input-wrap .input-wrap textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 6px;
}

.lp-contact-form .form-footer input[type="submit"] {
  padding: 24px 32px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 200px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: capitalize;
  text-decoration: none !important;
  background: #73926F;
  color: #fff;
  transition: ease-in-out all 200ms;
  margin: 0 auto;
}

.lp-contact-form .form-footer input[type="submit"]:hover {
  background: #347196;
  text-decoration: none;
}
.lp-contact-form .form-footer input[type="submit"]:active {
  background: #155176;
  text-decoration: none;
}
.lp-contact-form .form-footer {
  margin-top: 32px;
}
.lp-contact-form .form-footer .wpcf7-spinner {
  position: absolute;
}

.lp-contact-form .form-input-wrap .input-wrap label {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #fff;
}

.lp-contact-form .bottom-text p {
  font-family: Lato;
  font-weight: 400;
  font-style: Italic;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: justify;
  margin: 0;
  color: #fff;
}

.lp-contact-form .bottom-text p span.separator {
  display: inline-block;
  width: 1px;
  background: #fff;
  height: 16px;
  margin: 0 12px;
  margin-bottom: -2px;
}

/* Responsive Area */

@media screen and (max-width: 1279px) {
  .lp-contact-form .desc p,
  .lp-contact-form .desc p > a {
    font-size: 18px;
    line-height: 26px;
  }
  .lp-contact-form  h2 {
    font-size: 32px;
    line-height: 40px;
  }
}


@media screen and (max-width: 767px) {
  .lp-contact-form {
    padding: 40px 20px;
  }
  .lp-contact-form .wrap {
    gap: 40px;
  }
  
  .button-wrapper,
  .lp-contact-form .button-wrapper a {
    width: 100%;
  }
  .lp-contact-form .button-wrapper a {
    padding: 16px 20px;
  }

  .lp-contact-form .form-input-wrap .input-wrap.half-form-control {
    max-width: 100%;
  }
  .lp-contact-form .form-input-wrap .input-wrap input:not([type="submit"]), 
  .lp-contact-form .form-input-wrap .input-wrap textarea {
    padding: 11px 20px;
  }
  .lp-contact-form .bottom-text p {
    text-align: center;
  }
  .lp-contact-form .bottom-text p span.separator {
    display: block;
    margin: 0;
    width: 0;
    height: 0;
  }
}