.stepostin-questions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 50px 16px;
  box-sizing: border-box;
  background: #00643B;
  width: 100%;
  margin-top: 20px;
}

.stepostin-questions-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  max-width: 1140px;
  gap: 10px;
}

.stepostin-questions-title {
  font-family: "Inter", sans-serif;
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #070707;
}

.stepostin-questions-block {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.stepostin-question {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  border: 1px solid #070707;
  box-shadow: 0px 4px 0px #070707;
  box-sizing: border-box;
}

.stepostin-questions-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  box-sizing: border-box;
}

.stepostin-collapsible {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  background-color: #fef8e2;
  color: #070707;
  cursor: pointer;
  padding: 20px;
  width: 100%;
  border: none;
  text-align: left;
  overflow: hidden;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stepostin-collapsible-icon {
  transform: rotate(180deg);
  transition: transform .3s ease;
  cursor: pointer;
}

.stepostin-collapsible.stepostin-active .stepostin-collapsible-icon {
  transform: rotate(0deg);
  transition: transform .3s ease;
}

.stepostin-content {
  padding: 0 20px 20px 20px;
  display: none;
  overflow: hidden;
  background-color: #fef8e2;
  font-family: "Inter", sans-serif;
  margin: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #070707;
}

@media (min-width: 1024px) {
  .stepostin-question-img {
    width: 560px;
    height: 560px;
  }
}