.about-content {

  &__title {
    font-size: 45px;
    line-height: 52px;
    font-weight: 700;
    color: var(--color-dark-1);

    span {
      color: #6440FB;
    }
  }

  &__text {
    margin-top: 20px;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: var(--color-dark-1);
  }

  &__btn {
    margin-top: 30px;

    a {
      display: inline-block;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 400;
      line-height: 18px;
      background-color: #1A064F;
      padding: 21px 55px;
      color: white;
    }
  }

  .about-content-list {
    margin-top: 30px;

    > * + * {
      margin-top: 35px;
    }

    &__item {
      display: flex;
      align-items: center;
    }
  
    &__icon {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 15px;
      width: 25px;
      height: 25px;
      border-radius: 100%;
      background-color: #6440FB;
  
      .icon {
        color: white;
        width: 12px;
        height: 12px;
        stroke-width: 2;
      }
    }
  
    &__title {
      font-size: 15px;
      font-weight: 500;
      line-height: 17px;
      color: var(--color-dark-1);
    }
  }
}

.about-image {
  img {
    width: 100%;
  }
}
