*, ::before, ::after {
    box-sizing: border-box;
  }
  html, body {
    background: #F9FAFA;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    color: #242932;
    margin: 0;
    width: 100%;
    height: 100%;
  }
  .list {
    margin: 20px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  @media screen and (min-width: 768px) {
    .list {
      grid-template-columns: 1fr 1fr;
      grid-gap: 20px;
    }
  }
  @media screen and (min-width: 1340px) {
    .list {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .list__item {
    display: flex;
    padding: 10px;
    justify-content: space-between;
    position: relative;
  }
  @media screen and (max-width: 767px) {
    .list__item:nth-child(odd) {
      background: #fff;
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1339px) {
    .list__item:nth-child(4n+1), .list__item:nth-child(4n+2) {
      background: #fff;
    }
  }
  @media screen and (min-width: 1340px) {
    .list__item:nth-child(6n-3), .list__item:nth-child(6n-4), .list__item:nth-child(6n-5) {
      background: #fff;
    }
  }
  