.pr-step-card {
  width: 100%;
  height: 100%;
}

.pr-step-card__inner {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 42px 32px 30px;
  min-height: 540px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pr-step-card__inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.pr-step-card__icon {
  margin-bottom: 32px;
  max-height: 140px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.26s cubic-bezier(0.22, 1, 0.36, 1), margin-bottom 0.26s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.18s ease;
}

.pr-step-card__icon img {
  display: inline-block;
  max-width: 92px;
  height: auto;
}

.pr-step-card.is-open.pr-step-card--hide-icon-open .pr-step-card__icon {
  max-height: 0;
  margin-bottom: 0;
  opacity: 0;
}

.pr-step-card__number {
  width: 60px;
  height: 60px;
  margin: 0 auto 26px;
  border: 1px solid rgba(190, 150, 80, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bd9651;
  font-size: 33px;
  line-height: 1;
  font-weight: 700;
  background: #fff;
}

.pr-step-card__title {
  margin: 0 0 14px;
  color: #244d5c;
}

.pr-step-card__abstract {
  margin: 0;
  padding: 0;
  color: #244d5c;
  font-size: 18px;
  line-height: 1.5;
}

.pr-step-card__description-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transform-origin: bottom center;
  will-change: max-height, opacity, transform;
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.pr-step-card.is-open .pr-step-card__description-wrap {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.pr-step-card__separator {
  height: 1px;
  width: 100%;
  margin: 34px 0 30px;
  background: rgba(36, 77, 92, 0.45);
}

.pr-step-card__toggle {
  width: 48px;
  height: 48px;
  margin: auto auto 0;
  border: 0;
  border-radius: 50%;
  background: #f1f2f3;
  color: #244d5c;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr-step-card__toggle:focus-visible {
  outline: 2px solid #bd9651;
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .pr-step-card__inner {
    padding: 34px 24px 28px;
    min-height: 480px;
  }

  .pr-step-card__number {
    width: 64px;
    height: 64px;
    font-size: 36px;
  }

  .pr-step-card__abstract {
    font-size: 16px;
  }

}
