.lp-enq {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 4.5vw;
}
.lp-enq__card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px 6px 24px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 32px;
}
.lp-enq__qnum {
  color: #FF8728;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 25px;
}
.lp-enq__title {
  text-align: center;
  color: #052387;
  font-size: clamp(4.5vw, 4.5vw, 1.3rem);
  line-height: 1.5;
  margin-bottom: 25px;
}
.lp-enq__image {
  margin: 0 auto 30px;
  text-align: center;
}
.lp-enq__image img {
  width: 65vw;
  height: auto;
}
.lp-enq__options {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 8px;
}
.lp-enq__options .lp-enq__option {
  cursor: pointer;
  display: block;
  position: relative;
  line-height: 1.6;
  font-size: 5vw;
  color: #000;
  margin-bottom: 10px;
  padding-left: 40px;
  background: url(../img/check-off.webp) no-repeat;
  background-position: left 1% center;
  background-size: 22px;
  transition: background 0.2s ease, color 0.2s ease;
}
.lp-enq__options .lp-enq__option.is-active {
  background: url(../img/check-on.webp) no-repeat;
  background-position: left 1% center;
  background-size: 24px;
  color: #052387;
  font-weight: 600;
}
.lp-enq__options .lp-enq__other-input {
  margin-left: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.9rem;
  width: calc(100% - 50px);
}
.lp-enq__textarea {
  width: 100%;
  text-align: center;
}
.lp-enq__textarea textarea {
  width: 100%;
  min-height: 120px;
  border: 1px solid #181818;
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
  resize: vertical;
}

.button_solid017 button {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 55px;
  color: #543618;
  font-size: 5vw;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: rgba(238, 238, 238, 0.9333333333);
  border-radius: 50px;
  border: 0.2rem solid #543618;
  box-shadow: 0.2rem 0.2rem 0px 0.1rem #cccccc;
}

.button_solid017 button:hover {
  transform: translate3d(0.2rem, 0.2rem, 0);
  box-shadow: none;
  opacity: 1;
  transition: all 0.2s;
}

.button_solid017 button:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #543618;
  border-right: 3px solid #543618;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 17px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

#submitBtn.loading {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

@media (min-width: 420px) {
  .lp-enq__options {
    padding-left: 25px;
  }
}
@media (min-width: 450px) {
  .button_solid017 button:after {
    font-size: 1.7rem;
  }
}
@media (min-width: 500px) {
  .lp-enq__options .lp-enq__option {
    font-size: 3vw;
    padding-left: 70px;
    background-size: 40px;
  }
  .lp-enq__options .lp-enq__option.is-active {
    background-size: 41px;
  }
  .button_solid017 button {
    max-width: 350px;
    padding: 20px 110px;
    font-size: 1.5rem;
  }
  .button_solid017 button:after {
    right: 30px;
  }
}
@media (min-width: 1024px) {
  .lp-enq {
    padding: 60px 0;
  }
  .lp-enq__card {
    max-width: 600px;
  }
  .lp-enq__title {
    font-size: 1.5rem;
  }
  .lp-enq__options {
    margin-left: 45px;
  }
  .lp-enq__options .lp-enq__option {
    font-size: 1.1rem;
    padding-left: 60px;
    font-size: 1.5rem;
  }
  .lp-enq__image img {
    width: 360px;
  }
}/*# sourceMappingURL=questionnaire.css.map */