/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
.questions-block {
  padding: 50px 0;
}

.questions-title {
  margin-bottom: 40px;
}

.questions-holder {
  display: flex;
  gap: 30px;
}

.questions-form {
  padding: 40px;
  width: 23%;
  position: sticky;
  top: 150px;
  height: -moz-fit-content;
  height: fit-content;
  background: var(--text);
  border-radius: 3px;
  z-index: 10;
  min-height: 300px;
}

.questions-form .form-title {
  font-weight: 700;
  font-size: clamp(18px, 0.01375 * 100vw + 13.6px, 40px);
  line-height: 100%;

  font-family: var(--second-font);
  color: var(--card);
  margin-bottom: 10px;
}

.questions-form .form-desc {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 140%;
  font-family: var(--first-font);
  color: var(--bgDark);
}

.questions-form .form-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.questions-form .form-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.questions-form .form-callback {
  margin-top: 54px;
  width: 100%;
}

.questions-wrapper {
  width: 77%;
}

.questions-wrapper .question-item {
  margin-bottom: 10px;
}

.questions-wrapper .question-item:last-child {
  margin-bottom: 0;
}

.questions-wrapper .question-item.hidden {
  display: none;
}

.questions-more-items {
  margin-top: 30px;
  margin-inline: auto;
}

@media (max-width: 992px) {
  .questions-block {
    padding: 20px 0;
  }

  .questions-title {
    margin-bottom: 20px;
  }

  .questions-holder {
    flex-direction: column;
    gap: 20px;
  }

  .questions-wrapper {
    width: 100%;
  }

  .questions-form {
    width: 100%;
    position: relative;
    top: 0;
    padding: 20px;
  }

  .questions-more-items {
    margin-top: 10px;
  }
}

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