@charset "UTF-8";
.problem {
  color: #fff;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .problem {
    padding: 50px 0;
  }
}
.problem .problem__title {
  max-width: 750px;
  text-align: center;
  margin: 0 auto 40px;
}
@media (max-width: 991px) {
  .problem .problem__title {
    margin-bottom: 32px;
  }
}
.problem .problem__content {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .problem .problem__content {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
}
.problem .problem-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .problem .problem-card {
    gap: 16px;
  }
}
.problem .problem-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  border-radius: 10px;
  padding: 15px 20px;
}
@media (max-width: 575px) {
  .problem .problem-card__title {
    font-size: 18px;
  }
}
.problem .problem-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .problem .problem-card__list {
    gap: 16px;
  }
}
.problem .problem-card__list li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.31;
  padding-left: 65px;
}
@media (max-width: 575px) {
  .problem .problem-card__list li {
    gap: 8px;
    line-height: 1.305;
  }
}
.problem .problem-card__list li:before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  position: absolute;
  font-size: 24px;
  font-weight: 800;
  color: #000;
  top: 0;
  left: 0;
  border-radius: 10px;
}
.problem .problem-card__list li b {
  font-size: 20px;
  font-weight: 800;
}
@media (max-width: 575px) {
  .problem .problem-card__list li b {
    font-size: 18px;
  }
}
.problem .problem-card__list li span {
  font-size: 16px;
  font-weight: 400;
}
.problem .problem-card_warning .problem-card__title {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px #4f4f4f;
}
.problem .problem-card_warning .problem-card__list li:before {
  content: '!';
  background: #f3f3f3;
}
.problem .problem-card_success .problem-card__title {
  color: #000;
  background: #fed700;
  box-shadow: inset 0 0 0 1px #4f4f4f;
}
.problem .problem-card_success .problem-card__list li:before {
  content: '✓';
  background: #fed700;
}
.problem .problem__hint {
  max-width: 995px;
  width: 100%;
  font-size: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px #4f4f4f;
  border-radius: 20px;
  padding: 30px 40px;
  margin: 0 auto 40px;
}
@media (max-width: 575px) {
  .problem .problem__hint {
    font-size: 16px;
    line-height: 1.5;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 32px;
  }
}
.problem .problem__btn {
  max-width: 386px;
  margin: auto;
}

/*# sourceMappingURL=problem.css.map */
