.fees-wrap  {
  position: relative;
  background: var(--darkblue);
}
.fees-wrap + .fees-wrap {
  border-top: 50px solid var(--white);
}
  .fees-wrap > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.fees-wrap .container {
  position: relative;
  display: grid;
  padding-top: 100px;
  padding-bottom: 100px;
}
.fees-wrap:nth-child(even) .container {
  grid-template-columns: 2fr 1fr;
  grid-template-areas: 'heading .'
  'before .'
  'fees .'
  'after .';
}
.fees-wrap:nth-child(odd) .container {
  grid-template-columns: 1fr 2fr;
  grid-template-areas: '. heading'
  '. before'
  '. fees'
  '. after';
}
  .fees-wrap .fees-table {
    grid-area: fees;
    display: table;
    width: 100%;
    background: rgba(255,255,255,0.8);
    list-style: none;
    padding: 10px 60px 60px;
    margin: 0;
  }
    .fees-wrap h2 {
      grid-area: heading;
      padding: 60px 60px 10px;
      margin: 0;
      background: rgba(255,255,255,0.8);
    }
    .fees-wrap .content-before,
    .fees-wrap .content-after {
      padding: 0 60px;
      margin: 0;
      background: rgba(255,255,255,0.8);
    }
    .fees-wrap .content-before {
      grid-area: before;
    }
    .fees-wrap .content-after {
      grid-area: after;
    }
    .fees-table .row {
      display: table-row;
    }
    .row.heading {
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      background: var(--green);
    }
      .row.heading .cell span {
        display: block;
        font-size: 11px;
      }
    .fees-table .row:not(.heading):nth-child(even) {
      background: rgba(255,255,255,0.5);
    }
    .fees-table .cell {
      padding: 6px 12px;
      display: table-cell;
    }
@media screen and (max-width: 1024px) {
  .fees-wrap:nth-child(odd) .container,
  .fees-wrap:nth-child(even) .container {
    grid-template-areas: 'heading heading'
    'before before'
    'fees fees'
    'after after';
  }
}
@media screen and (max-width: 768px) {
  .fees-wrap .fees-table {
    display: block;
  }
  .fees-table .row {
    padding: 14px 0 7px;
    display: block;
  }
  .fees-table .row.heading {
    padding: 0;
    margin: 0 0 10px;
    height: 6px;
  }
  .row.heading .cell {
    display: none;
  }
  .fees-table .cell {
    padding: 2px 16px;
    margin-bottom: 10px;
    display: block;
  }
  .row .cell:before {
    margin-bottom: 3px;
    content: attr(data-title);
    min-width: 98px;
    font-size: 11px;
    line-height: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #969696;
    display: block;
  }
  .fees-wrap h2 {
    padding: 60px 20px 20px;
    word-break: break-all;
    text-align: center;
  }
  .fees-wrap .content-before {
    padding: 0 20px;
    text-align: center;
  }
  .fees-wrap .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}