.lazy-contact-form {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: 550px;
  padding: 84px 56px 72px;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
}

.lazy-contact-form,
.lazy-contact-form * {
  box-sizing: border-box;
}

.lazy-contact-form__watermark {
  position: absolute;
  top: 197px;
  right: 25px;
  z-index: 0;
  /* width: 137px; */
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

@media (max-width:1400px) {
  .lazy-contact-form__watermark{
     display:none
  }
}

.lazy-contact-form__panel {
  position: relative;
  z-index: 1;
  width: 600px;
}

.lazy-contact-form__heading {
  margin: 0 0 17px;
  color: #030303;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
  font-family: "montserrat", sans-serif;
}

.lazy-contact-form__shortcode .wpforms-container {
  margin: 0;
}

.lazy-contact-form__shortcode .wpforms-field-container {
  display: grid;
}

.lazy-contact-form__shortcode .wpforms-field {
  padding: 0;
}

.lazy-contact-form__shortcode .wpforms-field-label {
  display: block;
  margin: 0 0 5px;
  color: #646b78;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.lazy-contact-form__shortcode .wpforms-required-label {
  color: #687184 !important;
}

.lazy-contact-form__shortcode input[type="text"],
.lazy-contact-form__shortcode input[type="email"],
.lazy-contact-form__shortcode input[type="tel"],
.lazy-contact-form__shortcode input[type="number"],
.lazy-contact-form__shortcode input[type="url"],
.lazy-contact-form__shortcode select,
.lazy-contact-form__shortcode textarea {
  width: 100% !important;
  max-width: none !important;
  min-height: 31px;
  padding: 8px 12px !important;
  color: #111827;
  background: #fff;
  border: 1px solid #dbe3ef !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  font-size: 11px;
  line-height: 1.35;
}

.lazy-contact-form__shortcode textarea {
  min-height: 66px;
  resize: vertical;
}

.lazy-contact-form__shortcode select {
  color: #687184;
  appearance: none;
  background-image: url("../../static/images/contact-us/select-arrow.svg");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 11px 7px;
  padding-right: 30px !important;
}

.lazy-contact-form__shortcode input::placeholder,
.lazy-contact-form__shortcode textarea::placeholder {
  color: #a7b0c0;
  opacity: 1;
}

.lazy-contact-form__shortcode input:focus,
.lazy-contact-form__shortcode select:focus,
.lazy-contact-form__shortcode textarea:focus {
  border-color: #87acef !important;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(25, 88, 184, 0.12) !important;
}

.lazy-contact-form__shortcode .wpforms-submit-container {
  margin: 19px 0 0;
  padding: 0;
}

.lazy-contact-form__shortcode button[type="submit"],
.lazy-contact-form__shortcode .wpforms-submit,
.lazy-contact-form__shortcode .wpforms-submit-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100% !important;
  min-height: 40px;
  padding: 12px 22px !important;
  color: #fff !important;
  background: linear-gradient(90deg, #1f5db1 0%, #5d7ee2 100%) !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lazy-contact-form__shortcode button[type="submit"]::after,
.lazy-contact-form__shortcode .wpforms-submit::after,
.lazy-contact-form__shortcode .wpforms-submit-button::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.lazy-contact-form__shortcode button[type="submit"]:hover::after,
.lazy-contact-form__shortcode .wpforms-submit:hover::after,
.lazy-contact-form__shortcode .wpforms-submit-button:hover::after {
  transform: translateX(3px);
}

.lazy-contact-form__shortcode button[type="submit"]:hover,
.lazy-contact-form__shortcode .wpforms-submit:hover,
.lazy-contact-form__shortcode .wpforms-submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 93, 177, 0.2) !important;
}

.lazy-contact-form__base-text {
  margin-top: 8px;
  color: #9aa5b6;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.lazy-contact-form__base-text a {
  color: #1854b6;
  text-decoration: underline;
}

@media (max-width: 1199px) {
  .lazy-contact-form {
    padding: 48px 32px;
  }

  .lazy-contact-form__watermark {
    right: 12px;
    width: 120px;
  }
}

@media (max-width: 991px) {
  .lazy-contact-form {
    min-height: auto;
    padding: 44px 24px;
  }

  .lazy-contact-form__panel {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .lazy-contact-form__heading {
    font-size: 30px;
  }

  .lazy-contact-form__watermark {
    display: none;
  }
}

.g-recaptcha {
    display :flex;
    justify-content:center;
}