.banner {
  width: 100%;
  background: linear-gradient(to right, #a229f5 0%, #5695ec 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.463rem;
  padding: 2.195rem 0;
}
.banner p {
  font-size: 1.463rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin: 0;
}
.banner span {
  font-size: 0.732rem;
  color: #ffffff;
  text-align: center;
}

.steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  column-gap: 1.098rem;
  padding: 1.951rem 20px;
}
.steps .steps-title {
  font-size: 1.463rem;
  font-weight: bold;
  text-align: center;
}

.steps .steps-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  column-gap: 128px;
  padding: 1.098rem 20px 0;
}
.steps .steps-list .steps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 360px;
}
.steps .steps-list .steps-item>img {
  width: 200px;
  margin-bottom: 25px;
}
.steps .steps-list .steps-item .steps-item-title {
  font-size: 0.732rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.steps .steps-list .steps-item .steps-item-desc {
  font-size: 0.61rem;
  text-align: center;
  margin-bottom: 8px;
}
.steps .steps-list .steps-item .steps-item-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
}
.steps .steps-list .steps-item .steps-item-btns a {
  display: flex;
}
.steps .steps-list .steps-item .steps-item-btns img {
  height: 24px;
}

.guides {
  width: 100%;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.951rem 20px;
  row-gap: 1.951rem;
}
.guides .guides-title {
  font-size: 1.463rem;
  font-weight: bold;
  text-align: center;
}
.guides .guides-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  column-gap: 2.195rem;
  padding: 0 20px;
}
.guides .guides-list .guides-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 288px;
  border-radius: 20px;
  overflow: hidden;
}
.guides .guides-list .guides-item img {
  width: 288px;
}
.guides .guides-list .guides-item .guides-item-title {
  width: 100%;
  font-size: 0.732rem;
  font-weight: bold;
  text-align: center;
  padding: 24px 20px;
  background-color: white;
  color: black;
}

.guides .guides-learn-more-btn {
  font-size: 0.977rem;
  color: white;
  background: linear-gradient(to right, #a229f5 0%, #5695ec 100%);
  border-radius: 36px;
  padding: 13.5px 62px;
  cursor: pointer;
}
@media screen and (min-width: 1024px) and (max-width: 1639.9px) {
  .steps .steps-list {
    row-gap: 1.951rem;
    flex-wrap: wrap;
  }
  .guides .guides-list {
    width: 700px;
    flex-wrap: wrap;
    row-gap: 2.195rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .steps .steps-list {
    row-gap: 28px;
    flex-wrap: wrap;
  }
  .guides .guides-list {
    width: 700px;
    flex-wrap: wrap;
    row-gap: 1.463rem;
    column-gap: 1.463rem;
  }
}
@media screen and (max-width: 767.9px) {
  .steps .steps-list {
    row-gap: 28px;
    flex-wrap: wrap;
  }
  .steps .steps-list .steps-item {
    width: 320px;
  }
  .guides .guides-list {
    width: 328px;
    flex-wrap: wrap;
    row-gap: 48px;
    column-gap: 48px;
  }
}