.gp-container {
    margin: 0 auto;
    clear:both;
}

.gp-container  .title {
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 25px;
    color: #BE5404;
}

@media screen and (max-width: 719px) {
    .gp-container  .title {
        font-size: 16px;
    }
}

  .gp-container .grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 2em;
  }

 .gp-container .grid .gp-link {
    display: grid;
    grid-template-rows: 300px 100px;
    text-decoration: none;
  }

  .gp-container .grid .gp-link  .parent {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }

  .gp-container .grid .gp-link .parent .img {
      height: 100%;
      width: 100%;
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;
    transition: all .5s;
  }

  .gp-container .grid .gp-link:hover .parent .img {
    transform: scale(1.2);
  }

  .gp-container .grid .gp-link  p.label {
    text-align: center;
    padding: 25px 0;
    height: 100px;
    font-size: 20px;
    color: #636466;
    text-decoration: none;
  }

  .gp-container .grid .gp-link:hover p.label {
    text-decoration: underline;
  }

  @media screen and (max-width: 1140px) {
    .gp-container .grid {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
      gap: 10px 0;
    }
  }

.il-card {
    background: white;
    border-radius: 8px;
    padding: 13px 7px;
    display: flex;
    height: 51px;
    align-items: center;
}

@media screen and (max-width: 719px) {
    .il-card {
        padding: 7px;
    }
}

.il-card img {
    width: 65px;
    height: 51px;
    border-radius: 9px;
}

.il-card p {
    display: inline-block;
    width: calc(100% - 65px);
    padding: 0;
    margin: 0 0 0 12px;
}

.il-card .truncate-3 {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3;
   -webkit-box-orient: vertical;
}

