:root {
  --spinner-color: #E94E1B;
  --spinner-size: 40;
  --spinner-position: static;
  --spinner-top: auto;
  --spinner-left: auto;
  --spinner-margin-top: auto;
  --spinner-margin-left: auto;
  --spinner-display: block;
}

@-webkit-keyframes spinnerRotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinnerRotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.section--jrs-other-services {
  --section-padding-left: 12px;
  --section-padding-right: 12px;
}

.section--jrs-other-services .section__title {
  --section-title-margin-bottom: 20px;
}

.section--jrs-other-services .section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 8px;
}

.jrs-other-services__image {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.jrs-other-services__image--mobile {
  border-radius: 8px;
}

.jrs-other-services__image--desktop {
  display: none;
  visibility: hidden;
  border-radius: 12px;
}

.jrs-other-services__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.jrs-other-services__info strong {
  color: #b08e72;
  font-weight: 500;
}

.jrs-other-services__info .steps {
  margin: 0;
}

.jrs-other-services__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.jrs-other-services__framed {
  position: relative;
  padding: 12px 12px 12px 28px;
  border-radius: 20px;
  background-color: #e9e4da;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.jrs-other-services__framed::before {
  content: "";
  position: absolute;
  display: block;
  top: 19px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b08e72;
}

.jrs-other-services__additional {
  padding-left: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #b08e72;
  border-left: 1px solid #b08e72;
}

:root {
  --spinner-color: #E94E1B;
  --spinner-size: 40;
  --spinner-position: static;
  --spinner-top: auto;
  --spinner-left: auto;
  --spinner-margin-top: auto;
  --spinner-margin-left: auto;
  --spinner-display: block;
}

@-webkit-keyframes spinnerRotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinnerRotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.steps {
  --steps-item-width: 243;
  --steps-item-margin: 32;
  --steps-stroke-width: 183;
  --steps-stroke-color: #F4F4F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  counter-reset: steps-counter;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  margin-top: 24px;
}

.steps__item {
  position: relative;
  counter-increment: steps-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 132%;
}

.steps__item:before {
  content: counter(steps-counter);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  background: #f4f4f4;
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 31px;
  font-weight: 400;
  line-height: 132%;
  margin-bottom: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.steps:not(.steps--vert) .steps__item {
  margin-top: 32px;
}

.steps:not(.steps--vert) .steps__item:first-child {
  margin-top: 0;
}

.steps:not(.steps--vert) .steps__item:after {
  position: absolute;
  top: 20px;
  right: calc(100% - var(--steps-stroke-width)/var(--steps-item-width)*100%/2 + var(--steps-item-margin)/2*1px);
  width: calc(var(--steps-stroke-width)/var(--steps-item-width)*100%);
  height: 1px;
  background: var(--steps-stroke-color);
}

.steps--vert {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.steps--vert .steps__item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  text-align: left;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4px;
}

.steps--vert .steps__item:before {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.steps--jrs {
  gap: 8px;
}

.steps--jrs .steps__item {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  gap: 4px;
}

.steps--jrs .steps__item:before {
  margin: 5px;
  width: 30px;
  height: 30px;
  background: #b08e72;
  color: #fff;
  font-size: 14px;
}

.steps--jrs .steps__item div {
  -ms-flex-item-align: center;
  align-self: center;
}

.steps--jrs strong {
  font-weight: 400;
}

.steps--loan {
  --steps-stroke-width: 150;
  --steps-item-width: 297;
  --steps-item-margin: 16;
  --steps-stroke-color: #C4C4C4;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  row-gap: 16px;
}

.steps--loan:not(.steps--vert) .steps__item {
  margin-top: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  gap: 8px;
}

.steps--loan:not(.steps--vert) .steps__item:before {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  color: #e94e1b;
}

.steps--loan a {
  margin-top: 4px;
}

.steps--loan-3 {
  --steps-stroke-width: 100;
}

@media (min-width: 1040px) {
  .section--jrs-other-services {
    --section-padding-left: 16px;
    --section-padding-right: 16px;
  }

  .section--jrs-other-services .section__title {
    --section-title-margin-bottom: 40px;
  }

  .section--jrs-other-services .section__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .section--jrs-other-services .section__content--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .jrs-other-services__image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
  }

  .jrs-other-services__image--mobile {
    display: none;
    visibility: hidden;
  }

  .jrs-other-services__image--desktop {
    display: block;
    visibility: visible;
  }

  .jrs-other-services__info {
    font-size: 18px;
    line-height: 150%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    gap: 16px;
  }

  .jrs-other-services__info .steps {
    margin: 0;
  }

  *+.jrs-other-services__link {
    margin-top: -4px;
  }

  *+.jrs-other-services__framed {
    margin-top: -8px;
  }

  *+.jrs-other-services__additional {
    margin-top: -4px;
  }

  .steps:not(.steps--vert) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .steps:not(.steps--vert) .steps__item {
    margin-top: 0;
    width: calc(var(--steps-item-width)*1px);
    margin-left: calc(var(--steps-item-margin)*1px);
  }

  .steps:not(.steps--vert) .steps__item {
    font-size: 20px;
  }

  .steps:not(.steps--vert) .steps__item:first-child {
    margin-left: 0;
  }

  .steps:not(.steps--vert) .steps__item:first-child:after {
    content: none;
  }

  .steps:not(.steps--vert) .steps__item:after {
    content: "";
  }

  .steps--jrs .steps__item {
    font-size: 18px;
    line-height: 150%;
  }

  .steps--loan {
    row-gap: 40px;
  }

  .steps--loan:not(.steps--vert) .steps__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    font-size: 16px;
  }

  .steps--loan:not(.steps--vert) .steps__item:before {
    width: 50px;
    height: 50px;
    font-size: 32px;
    line-height: 120%;
  }

  .steps--loan a {
    margin-top: 10px;
  }

  .steps--loan-3 {
    margin: 0 auto;
    max-width: 930px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .steps--loan-3 .steps__item:nth-child(3n+1) {
    margin-left: 0;
  }

  .steps--loan-3 .steps__item:nth-child(3n+1)::after {
    display: none;
  }

  .steps--loan-4:not(.steps--vert) {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .steps--loan-4:not(.steps--vert) .steps__item {
    width: calc((100% - 48px)/4);
  }

  .steps--loan-4:not(.steps--vert) .steps__item:nth-child(4n+1) {
    margin-left: 0;
  }

  .steps--loan-4:not(.steps--vert) .steps__item:nth-child(4n+1)::after {
    display: none;
  }
}