.form-section {
  background-color: color: var(--additional3-color);
  padding: 78px 20px 67px 20px;
}

.form-section .fs-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.form-section .fs-container .fsc-row {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.form-section .fs-container .fsc-row .fscr-col {
  width: calc(50% - 40px);
}

.form-section .fs-container .fsc-row .fscr-col .fscrc-image {
  position: relative;
  z-index: 1;
}

.form-section .fs-container .fsc-row .fscr-col .fscrc-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.form-section.fs_layout_three .fs-container .fsc-row .fscr-col .fscrc-image img {
  border-radius: 0;
  border-bottom-left-radius: 32px;
  border-top-right-radius: 32px;
}

.form-section.fs_layout_three .fs-container .fsc-row .fscr-col .fscrc-image .fscrci-backimg {
  display: none;
}

.form-section .fs-container .fsc-row .fscr-col .fscrc-image .fscrci-backimg {
  width: 100%;
  max-width: 154px;
  position: absolute;
  bottom: -37px;
  left: -24px;
  z-index: -1;
}

.form-section .fs-container .fsc-row .fscr-col .fscrc-image .fscrci-backimg img {
  border-radius: 0px;
}

.form-section .fs-container .fsc-row .fscr-col .fscrc-content {
  margin-top: 24px;
}

.form-section .fs-container .fsc-row .fscr-col .fscrc-content h2 {
  font-family: var(--font-family-base);
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  font-weight: var(--h2-font-weight);
  color: var(--secondary-color);
  margin: 0; 
}

.form-section .fs-container .fsc-text {
  margin-top: 80px;
  text-align: center;
}

.form-section .fs-container .fsc-text p {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: var(--font-weight-normal);
  color: var(--secondary-color);
  opacity: 0.64;
  margin: 0 auto;
  max-width: 825px;
}
.form-section .fscrc-form {
  margin-top: 40px;
}
.form-section .fscrc-form .form-title {
  display: none;
}
.form-section .fscrc-form .hs-form {
  padding: 0;
  margin: 0;
  background-color: #fff; 
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}

.form-section .fscrc-form .hs-form .hs-form-field,
.form-section .fscrc-form .hs-form .hs-dependent-field {
  width: calc(50% - 8px); 
}

.form-section .fscrc-form .hs-form .hs-dependent-field {
  margin-bottom: 16px;
}

.form-section .fscrc-form .hs-form .hs-dependent-field .hs-form-field {
  margin: 0;
  width: 100%;
}

.form-section .fscrc-form .hs-form .hs-form-field.hs_comments {
  width: 100%;
  float: unset;
  margin-bottom: 16px;
}

.form-section .fscrc-form .hs-form .hs-form-field > label {
  margin: 0;
  padding: 8px;
  padding-top: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-normal);
  font-size: 16px;
  line-height: var(--line-height-base);
  color: var(--secondary-color);
  display: flex;
  gap: 4px;
}

.form-section .fscrc-form .hs-form .hs-form-field .input {
  margin: 0;
  width: 100%;
}

.form-section .fscrc-form .hs-form .hs-form-field .input input,
.form-section .fscrc-form .hs-form .hs-form-field .input textarea {
  border: 1px solid #E8ECEC;
  border-radius: 16px;
  padding: 15px;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-normal);
  font-size: 16px;
  line-height: var(--line-height-base);
  color: var(--secondary-color);
  outline: 0;
  display: block;
}

.form-section .fscrc-form .hs-form .hs-form-field .input textarea {
  min-height: 132px;
  resize: none;
}

.form-section .fscrc-form .hs-form .hs-submit {
  margin-top: 24px;
}

.form-section .fscrc-form .hs-form .hs-submit .actions {
  display: flex;
}

.form-section .fscrc-form .hs-form .hs-submit .actions input.hs-button {
  width: auto;
  font-family: var(--font-family-base);
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  line-height: var(--button-line-height);
  text-transform: capitalize;
  border: 1px solid var(--additional1-color);
  background-color: var(--additional1-color);
  color: var(--additional3-color);
  border-radius: 16px;
  padding: 16px 32px; 
  transition: all .3s ease;
}

.form-section .fscrc-form .hs-form .hs-submit .actions input.hs-button:hover {  
  background-color: var(--additional3-color);
  color: var(--additional1-color);
}

.form-section.fs_layout_two .fscrc-form .hs-form .hs-submit .actions input.hs-button { 
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--additional3-color);
}

.form-section.fs_layout_two .fscrc-form .hs-form .hs-submit .actions input.hs-button:hover { 
  background-color: var(--additional3-color);
  color: var(--secondary-color);
}

.form-section.fs_layout_three .fscrc-form .hs-form .hs-submit .actions input.hs-button { 
  border-color: var(--additional2-color);
  background-color: var(--additional2-color);
  color: var(--additional3-color);
  border-radius: 50px;
}
 
.form-section.fs_layout_three .fscrc-form .hs-form .hs-submit .actions input.hs-button:hover { 
  background-color: var(--additional3-color);
  color: var(--additional2-color); 
}

.form-section .fscrc-form .hs-form .hs-form-field .hs-error-msgs {
  margin: 0;
  padding-top: 4px;
}

.form-section .fscrc-form .hs-form .hs-form-field .hs-error-msgs li {
  margin: 0;
}

.form-section .fscrc-form .hs-form .hs-form-field .hs-error-msgs li label.hs-error-msg {
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #ff0000;
}
.form-section .fscrc-form .hs-form  .hs_error_rollup {
  display: none;
}
.form-section .fscrc-form .submitted-message {
  background-color: #4aa1ff;
  color: #fff;
}
.form-section .fscrc-form .submitted-message p {
  margin: 0;
}
@media (max-width: 1024px) {
  .form-section .fs-container .fsc-row {
    gap: 40px;
  }

  .form-section .fs-container .fsc-row .fscr-col .fscrc-content h2 {
    font-size: 32px;
  }

  .form-section .fs-container .fsc-row .fscr-col {
    width: calc(50% - 20px);
  }

  .form-section .fscrc-form .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 100%; 
  }
}

@media (max-width: 767.98px) {
  .form-section {
    padding: 50px 15px;
  }

  .form-section .fs-container .fsc-row {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .form-section .fs-container .fsc-row .fscr-col {
    width: 100%;
  }

  .form-section .fs-container .fsc-row .fscr-col .fscrc-content h2 {
    font-size: 32px;
  }

  .form-section .fs-container .fsc-text {
    margin-top: 30px;
  }

  .form-section .fs-container .fsc-text p {
    font-size: 14px;
  }

  .form-section .fscrc-form .hs-form .hs-form-field,
  .form-section .fscrc-form .hs-form .hs-dependent-field {
    width: 100%; 
  }
}