.matlin-form {
  max-width: 1500px;
  width: 95%;
  margin: 160px auto 40px;
  background-color: var(--color-dark-blue);
  border-radius: 26.667px;
  position: relative;
  z-index: 3;
}

.matlin-form__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  padding: 53px 68px;
}

.matlin-form__wrapper .form-text {
  width: 50%;
}

.matlin-form__wrapper .form-text .form-header h3 {
  color: #FFF;
  font-family: var(--font-header);
  font-size: 66.667px;
  font-weight: 700;
  line-height: 98%;
  text-transform: uppercase;
}

.matlin-form__wrapper .form-text .form-header p {
  color: #FFF;
  font-size: 25px;
  font-weight: 400;
  line-height: 133.333%;
  letter-spacing: -0.25px;
  margin: 14px 0 40px;
}

.matlin-form__wrapper .form-text form .input-row {
  display: flex;
  gap: 18px;
}

.matlin-form__wrapper .form-text form input {
  appearance: none;
  border-radius: 6.667px;
  border: 0.933px solid rgba(255, 255, 255, 0.6);
  background: rgba(84, 83, 104, 0.9);
  box-shadow: 5.333px 5.333px 20.667px 0 rgba(33, 23, 71, 0.2) inset;
  color: rgba(255, 255, 255, 0.6980392157);
  font-family: var(--font-body);
  font-size: 22.667px;
  height: 61px;
  margin-bottom: 8px;
  outline: none;
  padding: 2%;
  width: 100%;
}

.matlin-form__wrapper .form-text form input::placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
  font-family: var(--font-body);
  font-size: 22.667px;
}

.matlin-form__wrapper .form-text form textarea {
  appearance: none;
  border-radius: 6.667px;
  border: 0.933px solid rgba(255, 255, 255, 0.6);
  background: rgba(84, 83, 104, 0.9);
  box-shadow: 5.333px 5.333px 20.667px 0 rgba(33, 23, 71, 0.2) inset;
  color: rgba(255, 255, 255, 0.6980392157);
  font-family: var(--font-body);
  font-size: 22.667px;
  width: 100%;
  resize: none;
  padding: 16px;
  margin-bottom: 18px;
  min-height: 125px;
}

.matlin-form__wrapper .form-text form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
  font-family: var(--font-body);
  font-size: 22.667px;
}

.matlin-form__wrapper .form-text form input[type=submit] {
  border-radius: 6.667px;
  background: var(--gold-gradient, linear-gradient(90deg, #DAB128 9.62%, #FDE8A4 56.25%, #DAB128 100%));
  box-shadow: 6.667px 6.667px 10.933px 0 rgba(0, 0, 0, 0.1);
  color: var(--color-dark-blue);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
  width: 100%;
}

.matlin-form__wrapper .form-text form input[type=submit]:hover {
  background: #FFF;
}

.matlin-form__wrapper .form-image {
  width: 50%;
}

.matlin-form__wrapper .form-image img {
  position: absolute;
  bottom: 0;
  right: 10%;
  z-index: 1;
  width: 420px;
}

.matlin-form__wrapper .form-image .image-tag {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 10%;
  border-right: 3px solid var(--color-yellow);
  padding-right: 16px;
}

.matlin-form__wrapper .form-image .image-tag p {
  color: #FFF;
  font-size: 19px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 1.9px;
  text-align: right;
  text-transform: uppercase;
}

.matlin-form__wrapper .form-image .image-tag p strong {
  font-weight: 700;
  display: block;
}

.matlin-form::before {
  content: "";
  background: url("../img/form-bg.jpg") 50% no-repeat;
  background-size: cover;
  border-radius: 26.667px;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.mtl-check .gfield_checkbox .gchoice {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.mtl-check .gfield_checkbox .gchoice input[type=checkbox] {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 4px;
  cursor: pointer;

}

.mtl-check .gfield_checkbox .gchoice input[type=checkbox]:checked {
  background-color: #DAB128;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mtl-check .gfield_checkbox .gchoice input[type=checkbox]:checked::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  vertical-align: -0.125em;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23211747' d='m10.586 13.414l-2.829-2.828L6.343 12l4.243 4.243l7.07-7.071l-1.413-1.415z'/%3E%3C/svg%3E");
}

.mtl-check .gfield_checkbox .gchoice label {
  color: #FFF;
  font-family: var(--font-body-regular);
}

@media screen and (max-width: 1380px) {
  .matlin-form__wrapper .form-image img {
    right: 5%;
  }
}

@media screen and (max-width: 1380px) {
  .matlin-form__wrapper .form-text .form-header h3 {
    font-size: 50px;
  }

  .matlin-form__wrapper .form-text .form-header p {
    font-size: 20px;
  }

  .matlin-form__wrapper .form-image img {
    right: 5%;
    max-width: 400px;
  }
}

@media screen and (max-width: 880px) {
  .matlin-form {
    overflow: hidden;
  }

  .matlin-form__wrapper {
    flex-direction: column;
    gap: 25px;
    padding: 53px 0 0;
  }

  .matlin-form__wrapper .form-text {
    padding: 0 63px;
    width: 100%;
  }

  .matlin-form__wrapper .form-text .form-header h3 {
    font-size: 50px;
  }

  .matlin-form__wrapper .form-text .form-header p {
    font-size: 20px;
  }

  .matlin-form__wrapper .form-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .matlin-form__wrapper .form-image img {
    position: static;
    width: 100%;
    max-width: unset;
    max-height: 480px;
    object-fit: cover;
    object-position: top center;
  }

  .matlin-form__wrapper .form-image .image-tag {
    bottom: 5%;
    right: unset;
    border-color: #5581F1;
  }

  .matlin-form__wrapper .form-image .image-tag p {
    color: var(--color-dark-blue);
  }
}

@media screen and (max-width: 600px) {
  .matlin-form__wrapper {
    padding: 53px 0 0;
  }

  .matlin-form__wrapper .form-text {
    padding: 0 20px;
    width: 100%;
  }

  .matlin-form__wrapper .form-text .form-header h3 {
    font-size: 36px;
  }

  .matlin-form__wrapper .form-text form .input-row {
    flex-direction: column;
    gap: 0;
  }

  .matlin-form__wrapper .form-text form input {
    font-size: 20px;
  }

  .matlin-form__wrapper .form-text form input::placeholder {
    font-size: 20px;
  }

  .matlin-form__wrapper .form-text form textarea {
    font-size: 20px;
  }

  .matlin-form__wrapper .form-text form textarea::placeholder {
    font-size: 20px;
  }

  .matlin-form__wrapper .form-image img {
    max-height: 420px;
  }

  .matlin-form__wrapper .form-image .image-tag {
    bottom: 2%;
  }

  .matlin-form__wrapper .form-image .image-tag p {
    color: var(--color-dark-blue);
  }
}

/* --------------- Hero Form ------------- */
.hero-form {
  max-width: 515px;
  width: 95%;
  background-color: var(--color-dark-blue);
  border-radius: 23.853px;
  border: 1.578px solid rgba(255, 255, 255, 0.48);
  padding: 40px;
  position: absolute;
  right: 5%;
  top: 10px;
  z-index: 4;
}

.hero-form h3 {
  color: #FFF;
  font-family: var(--font-header);
  font-size: 47px;
  font-weight: 700;
  line-height: 113%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-form form .input-row {
  display: flex;
  gap: 18px;
}

.hero-form form input {
  appearance: none;
  border-radius: 6.667px;
  border: 0.933px solid rgba(255, 255, 255, 0.6);
  background: rgba(84, 83, 104, 0.9);
  box-shadow: 5.333px 5.333px 20.667px 0 rgba(33, 23, 71, 0.2) inset;
  color: rgba(255, 255, 255, 0.6980392157);
  font-family: var(--font-body);
  font-size: 22.667px;
  height: 61px;
  margin-bottom: 18px;
  outline: none;
  padding: 2%;
  width: 100%;
}

.hero-form form input::placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
  font-family: var(--font-body);
  font-size: 22.667px;
}

.hero-form form textarea {
  appearance: none;
  border-radius: 6.667px;
  border: 0.933px solid rgba(255, 255, 255, 0.6);
  background: rgba(84, 83, 104, 0.9);
  box-shadow: 5.333px 5.333px 20.667px 0 rgba(33, 23, 71, 0.2) inset;
  color: rgba(255, 255, 255, 0.6980392157);
  font-family: var(--font-body);
  font-size: 22.667px;
  width: 100%;
  resize: none;
  padding: 16px;
  margin-bottom: 18px;
  min-height: 125px;
}

.hero-form form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
  font-family: var(--font-body);
  font-size: 22.667px;
}

.hero-form form input[type=submit] {
  border-radius: 6.667px;
  background: var(--gold-gradient, linear-gradient(90deg, #DAB128 9.62%, #FDE8A4 56.25%, #DAB128 100%));
  box-shadow: 6.667px 6.667px 10.933px 0 rgba(0, 0, 0, 0.1);
  color: var(--color-dark-blue);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
}

.hero-form form input[type=submit]:hover {
  background: #FFF;
}

@media screen and (max-width: 1440px) {
  .hero-form {
    right: 1%;
  }
}

@media screen and (max-width: 1080px) {
  .hero-form {
    position: static;
    margin: 50px auto 0;
  }
}

@media screen and (max-width: 600px) {
  .hero-form h3 {
    font-size: 34px;
  }

  .hero-form form .input-row {
    flex-direction: column;
    gap: 0;
  }

  .hero-form form input,
  .hero-form form textarea {
    font-size: 15px;
  }

  .hero-form form input::placeholder,
  .hero-form form textarea::placeholder {
    font-size: 15px;
  }
}

/*# sourceMappingURL=form.css.map */

@media screen and (min-width:768px) {
  .matlin-form__wrapper {
    min-height: 650px;
  }
}