.wc-home-information {
  margin-top: 119px;
  padding-bottom: 95px;
  border-bottom: 1px solid #C1C1C1;
}

.wc-home-information-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* .wc-home-information-header h2 {
  max-width: 700px;
} */

.wc-home-information-cards {
  margin-top: 63px;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.wc-home-information-card {
  width: 32%;
  box-shadow: 0px 4px 50px 0px #0000000A;
  border-radius: 0 32px 32px 32px;
  background-color: #fff;
  padding: 41px 24px;
  height: fit-content;
}

.wc-home-information-card__index {
  color: #7B7B7B;
  display: block;
  font-size: 24px;
  font-weight: 500;
}

.wc-home-information-card__text-bold {
  color: #F30941;
  font-size: 64px;
  display: block;
  font-weight: 700;
}

.wc-home-information-card h3 {
  color: #4F4F4F;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 4px;
}

.wc-home-information-card p {
  color: #4F4F4F;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

@media(max-width: 1000px) {

  .wc-home-information {
    margin-top: 78px;
    padding-bottom: 56px;
    position: relative;
  }

  .wc-home-information-header {
    flex-direction: column;
  }

  .wc-home-information-header h2 {
    width: 100%;
  }

  .wc-home-information-cards {
    flex-direction: column;
    margin-top: 24px;
    gap: 16px;
  }

  .wc-home-information-card {
    padding: 32px 24px;
    width: 100%;
  }

  .wc-home-information-card__index {
    font-size: 24px;
  }

  .wc-home-information-card__text-bold {
    font-size: 48px;
  }

  .wc-home-information-card h3 {
    font-size: 16px;
  }


  .wc-home-information__button {
    margin-top: 24px;
    max-width: 173px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

}