.process-block {
  background-color: #101826;
  color: white;
}

.process-block-wrap {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.process-block-wrap .process-step {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 30px 0;
}

.process-block-wrap .process-block-header h2 {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
}

.process-block-wrap .process-block-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100px;
  height: 1px;
  right: 50%;
  transform: translate(50%);
  background-color: #FB2B32;
}

.process-block-wrap .process-step .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 275px;
  width: 100%;
}

.process-block-wrap .process-step .step p {
  text-align: center;
  font-size: 17px;
  font-weight: 400;
}

.process-block-wrap .process-step .step img {
  width: 95px;
  height: 85px;
  margin-bottom: 10px;
  object-fit: contain;
}

.process-block-wrap .process-step .step h3 {
  font-size: 20px;
  font-weight: 500;
}

.process-block-wrap .process-step .step .bg-number-step {
  width: 45px;
  height: 45px;
  position: relative;
  border-radius: 50%;
  background-color: #FB2B32;
}

.process-block-wrap .process-step .step .bg-number-step .number-step {
  position: absolute;
  top: 50%;
  font-size: 20px;
  left: 50%;
  margin: 0;
  transform: translate(-50%,-50%);
}

@media screen and (max-width: 1053px) {
  .process-block-wrap .process-step {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}