.process_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.process_h2 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
}

.process_p {
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  margin-block: 8px 40px;
}

.process_ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .process_ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 1100px) {
  .process_ul {
    column-gap: 100px;
    row-gap: 25px;
  }
}

.process_li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

@media screen and (min-width: 768px) {
  .process_li {
    width: calc((100% - 32px) / 2);
  }
}

@media screen and (min-width: 1100px) {
  .process_li {
    width: calc((100% - 100px) / 2);
  }
}

.process_li:nth-child(2n) {
  flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  .process_li:nth-child(2n) {
    flex-direction: row;
  }
}

@media screen and (min-width: 1100px) {
  .process_li:nth-child(3),
  .process_li:nth-child(4) {
    flex-direction: row-reverse;
  }
}

.process_img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

@media screen and (min-width: 1100px) {
  .process_img {
    width: 96px;
    height: 96px;
  }
}

.process_li_p {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #2f281e;
  width: 179px;
}

@media screen and (min-width: 1100px) {
  .process_li_p {
    width: 281px;
    height: 71px;
    box-shadow: 2px 2px 10px 0 rgba(23, 58, 86, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30%;
  }
}

.process_button {
  width: 216px;
  height: 53px;
  background-color: #02897a;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border: none;
  margin-bottom: 100px;
}
