.stepSection {
  margin-top: 35px;
  margin-bottom: 30px;
}

.stepSection-title {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 49px;
  text-align: center;
  color: #E3120B;
  margin-bottom: 30px;
}

.stepSection-title .brandName {
  color: inherit;
}

.stepSection img {
  margin-bottom: 30px;
}

.stepSection-subtitle {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 35px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin: 60px 0 30px;
}

.stepWrp {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  border-radius: 10px;
}

.stepWrp:not(:last-of-type) {
  margin-bottom: 60px;
}

.stepWrp:not(:first-of-type) {
  margin-top: 60px;
}

.stepWrp.step2 {
  flex-direction: row-reverse;
}

.step-part1 {
  max-width: 355px;
  margin-right: 10px;
}

.step2 .step-part1 {
  margin-left: 10px;
  margin-right: 0;
}

.step-part1.step3 {
  max-width: 410px;
  margin-right: 0;
}

.step-subtitle {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #323232;
  margin-bottom: 10px;
  text-align: start;
}

.step-subtitle:first-of-type {
  margin-top: 30px;
}

.step-title {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
}

.step-text {
  font-family: 'Georgia';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #323232;
  margin-bottom: 30px;
  text-align: start;
}

.step-part2 {
  display: flex;
}

.step-cardWrp {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.step-card {
  background: rgba(56, 255, 24, 0.02);
  border: 2px solid #01c65a;
  border-radius: 5px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: 180px;
  margin-right: 5px;
}

.step-card.top {
  height: 48%;
}

.step-card.bottom {
  height: 48%;
}

.step-card.secondStep {
  height: 100%;
  max-width: 180px;
  max-height: 226px;
  margin-right: 5px;
  padding: 0 10px;
}

.card-text {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;
  color: #323232;
}

.regStep .step-img {
  max-width: 190px;
}

.step-img {
  height: 100%;
}

.stepSection_formContainerImg {
  width: 190px;
}

.deposit-card * {
  font-family: Open Sans;
  text-align: left;
}

.regStep,
.depStep {
  position: relative;
}

.regStep::before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 29px;
  background: center url(../images/formVector.png) no-repeat;
  background-size: cover;
  top: 38%;
  left: -25px;
  animation: bounce 1600ms infinite;
}

.regStep::after {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 29px;
  background: center url(../images/formVector.png) no-repeat;
  background-size: cover;
  top: 61%;
  left: -25px;
  animation: bounce 1600ms infinite;
}

.depStep::before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 29px;
  background: center url(../images/formVector.png) no-repeat;
  background-size: cover;
  top: 68%;
  left: -30px;
  z-index: 2;
  animation: bounceDep 1600ms infinite;
}

@keyframes bounce {
  50% {
    left: -35px;
  }
}

@keyframes bounceDep {
  50% {
    left: -40px;
  }
}

.arrowDown {
  text-align: center;
  transform: translateY(-25px);
  animation: arrows 1.5s infinite;
}

@keyframes arrows {
  to {
    transform: translateY(25px);
    opacity: 0;
  }
}

.manager-img {
  margin-left: 30px;
  width: 250px;
  height: 250px;
  border-radius: 100%;
  filter: drop-shadow(0px 10px 50px rgba(0, 0, 0, 0.1));
}

/*response*/
@media screen and (max-width: 1600px) {
  .stepSection {
    background-size: contain;
  }
}

@media screen and (max-width: 1200px) {
  .stepWrp {
    max-width: 750px;
    margin: 0 auto;
  }

  .card-text {
    font-size: 12px;
    line-height: 16px;
  }

  .dep-img {
    width: 166px;
    height: 170px;
  }

  .part2-img.step3 {
    display: flex;
    justify-content: center;
  }

  .regStep::before {
    width: 40px;
    height: 29px;
    left: -20px;
  }

  .regStep::after {
    width: 40px;
    height: 29px;
    left: -20px;
  }

  .depStep::before {
    width: 40px;
    height: 29px;
    left: -25px;
    z-index: 2;
  }

  @keyframes bounce {
    50% {
      left: -30px;
    }
  }

  @keyframes bounceDep {
    50% {
      left: -30px;
    }
  }

  .manager-img {
    margin-left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .stepSection {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .stepSection-subtitle {
    margin-top: 45px;
    font-size: 24px;
    line-height: 120%;
  }

  .step-subtitle:first-of-type {
    margin-top: 20px;
  }

  .stepWrp {
    text-align: center;
    flex-direction: column;
  }

  .step-part1 {
    max-width: unset;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .step-part1.step3 {
    max-width: unset;
  }

  .stepWrp.step2 {
    flex-direction: column;
  }

  .step2 .step-part1 {
    margin-left: 0;
  }

  .step-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .step-title {
    font-size: 24px;
    line-height: 120%;
  }

  .step-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .stepSection img {
    margin-bottom: 20px;
  }

  .step-card {
    width: unset;
  }

  .card-text {
    text-align: left;
  }

  .regStep {
    height: 270px;
  }

  .stepWrp:not(:last-of-type) {
    margin-bottom: 30px;
  }

  .stepWrp:not(:first-of-type) {
    margin-top: 25px;
  }

  .step-card.secondStep {
    max-width: unset;
  }

  .stepSection-title {
    font-size: 24px;
    line-height: 115%;
    margin: 0 auto 20px;
  }

  .manager-img {
    width: 225px;
    height: 225px;
    margin: 30px 0 0;
  }

  .depStep::before {
    top: 66%;
  }

  @keyframes bounce {
    50% {
      left: -25px;
    }
  }

  .arrowDown img {
    width: 100%;
    max-width: 200px;
  }
}