.about {
  background-color: #fff;
  display: block;
}

.about-mobile {
  background-color: #fff;
  display: none;
}

.about-button {
  color: #2251B1;
  width: 10.75rem;
  height: 2.5rem;
  background: #F2F6FF;
  border-radius: 6.25rem;
  font-weight: 500;
  font-size: 1rem;
  border: none;
}

.about-main-text {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.about-item-title {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 20px;
  color: #4071FB;
  font-weight: 600
}

.about-item-caption {
  font-size: 14px;
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 1024px) {
  .about {
    display: none;
  }

  .about-mobile {
    display: block;
  }

  .about-button {
    width: 157px;
    height: 36px;
    font-size: 14px;
  }

  .about-main-text {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }

  .about-item-title {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 20px;
    color: #4071FB;
    font-weight: 600;
  }

  .about-item-caption {
    padding-right: 16px;
    padding-left: 16px;
  }
}