/* certification section */
.certification {
    scroll-margin-top: 80px;
  }
  
  .certification__table {
    border: 1px solid #e4e4e4;
  }
  
  .certification__row {
    display: flex;
    border-bottom: 1px solid #e4e4e4;
  }

  .certification__logo img {
    margin: 0 auto 60px auto;
  }
  
  @media screen and (max-width: 768px) {
    .certification__row {
      flex-direction: column;
    }
  }
  
  .certification__row:last-child {
    border: 0;
  }
  
  .certification__row .title {
    width: 220px;
    font-weight: 700;
    padding: 1.6rem 2rem 1.6rem 3rem;
  }
  
  @media screen and (max-width: 768px) {
    .certification__row .title {
      width: 100%;
      padding: 1rem 1.6rem;
      padding-bottom: .25rem;
    }
  }
  
  .certification__row .desc {
    padding: 1.6rem 2rem;
  }
  
  @media screen and (max-width: 768px) {
    .certification__row .desc {
      padding: 1rem 1.6rem;
      padding-top: 0;
    }
  }
  