.contentBoxContainer {
  .contentBoxList {
    @include flex-direction(column);
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    li {
      &:nth-child(even) {
        align-self: flex-end;
      }
      &:nth-child(1) {
        .icon {
          background-color: #7ba0f5;
          border-color: #ebf1ff;
        }
      }
      &:nth-child(2) {
        .icon {
          background-color: #b7f0c7;
          border-color: #f2faf4;
        }
      }
      &:nth-child(3) {
        .icon {
          background-color: #ffbc64;
          border-color: #faf1e9;
        }
      }
    }
  }
  .item {
    background-color: white;
    border-radius: 0.8rem;
    width: 100%;
    padding: 0 2.5rem 4rem 2.5rem;
    @include flex-direction(column);
    align-items: center;
    margin: 7rem 0 1rem 0;
    box-shadow: 0px 8px 32px rgba(23, 24, 47, 0.15);
    @include min(tablet) {
      @include flex-direction(row);
      justify-content: flex-start;
      margin: 1rem 0 3rem 3.2rem;
      width: calc(100% - 3.2rem);
      max-width: 52rem;
      padding: 3.2rem 3.2rem 3.2rem 0;
    }
  }
  .icon {
    width: 11.2rem;
    height: 11.2rem;
    border: solid 1.6rem white;
    border-radius: 50%;
    @include flex-direction(column);
    justify-content: center;
    align-items: center;
    margin-top: -5.6rem;
    img {
      width: 4.7rem;
      height: 4.7rem;
    }
    @include min(tablet) {
      margin: 0 0 0 -3.2rem;
    }
  }
  .body {
    margin-top: 1.6rem;
    @include min(tablet) {
      margin: 0 0 0 1.6rem;
      max-width: 39rem;
    }
    div {
      color: #000;
      font-weight: 700;
      font-size: 2rem;
    }
    p {
      color: var(--color-44);
      font-size: 1.6rem;
    }
  }
}
