#content
{
  .description
  {
    max-width:600px;
    margin-bottom:88px;
  }
  h2
  {
    font-size: 28px;
    line-height: 42px; /* 150% */
    letter-spacing: 1.12px;
    margin-bottom:88px;
  }
  .data-list
  {
    div
    {
      margin-bottom:48px;
      padding-bottom:48px;
      border-bottom:1px solid #D8DAE5;
      picture
      {
        display: block;
        img
        {
          display: block;
          width: 100%;
        }
      }
      h3
      {
        font-size: 24px;
        font-weight: 400;
        line-height: 36px; /* 150% */
        letter-spacing: 0.96px;
      }
    }
    
  }
  @media(min-width:768px)
  {
    .data-list
    {
      div
      {
        
        display: flex;
        picture
        {
          width:30%;
        }
        h3
        {
          flex:1;
          padding:0 5%;
        }
        p
        {
          width: 30%;
        }
      }
    }
  }
  @media(max-width:767px)
  {
    .data-list
    {
      div
      {
        picture
        {
          margin-bottom:24px;
        }
        h3
        {
          margin-bottom:24px;
        }
      }
    }
  }
}

#step
{
  padding-bottom:88px;
  h2
  {
    font-size: 28px;
    line-height: 42px; /* 150% */
    letter-spacing: 1.12px;
    margin-bottom:88px;
  }
  .data-list
  {
    div
    {
      
      h3
      {
        font-size: 18px;
        line-height: 26px; /* 144.444% */
        letter-spacing: 0.72px;
        margin-bottom:24px;
      }
      ul
      {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px; /* 150% */
        letter-spacing: 0.64px;
        margin-bottom:40px;
        li
        {
          display: flex;
          align-items:center;
          margin-bottom:8px;
          i
          {
            width: 28px;
            height:28px;
            border-radius:100%;
            text-align: center;
            line-height:26px;
            border:1px solid #C4C9D5;
            margin-right:16px;
          }
        }
      }
      picture
      {
        display: block;
        img
        {
          display: block;
          width: 100%;
        }
      }
    }
  }
  @media(min-width:768px)
  {
    .data-list
    {
      display: flex;
      justify-content:center;
      div
      {
        padding-left:6.666%;
        padding-right:6.666%;
        border-right: 1px solid #D8DAE5;
        &:last-child
        {
          border-right:0px;
        }
        flex:1;
        display: flex;
        flex-direction:column;
        justify-content:flex-end;
        ul
        {
          flex:1;
        }
      }
    }
  }
  @media(max-width:767px)
  {
    .data-list
    {
      div
      {
        display: grid;
        padding-bottom:24px;
        margin-bottom:24px;
        border-bottom: 1px solid #D8DAE5;
        &:last-child
        {
          padding-bottom:0px;
          margin-bottom:0px;
          border:0px;
        }
        grid-template-columns: 3fr 1fr;
        grid-template-areas:
        "A B"
        "C B";
        h3
        {
          grid-area: A;
          padding-right:10px;
        }
        ul
        {
          grid-area: C;
          padding-right:10px;
        }
        picture
        {
          grid-area: B;
         
        }
      }
    }
  }
}