.gp-container {
    max-width: 1140px;
    padding: 20px 0;
    margin-left: auto;
    margin-right: auto;
    background:transparent;
    display: flex;
    flex-direction: column;
	  margin-bottom:20px;
  }

.gp-container  .title {
  margin-bottom: 12px;
/*	border-bottom:1px solid #146ff5;*/
  }

.gp-container  .title span {
    font-size: 14px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
/*	  background-color: #146ff5;*/
/*	font-family: Inter !important;*/
/*    font-size: 18px !important;*/
/*	color:white;*/
/*	float:left;*/
/*	padding: 7px 12px 4px 12px;*/
}

  .gp-container .grid {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
      gap: 0 0;
  }

 .gp-container .grid .gp-link {
    /*display: grid;
    grid-template-rows: 162px 50px;*/
    text-decoration: none;
	   margin-bottom: 20px;
  }

  .gp-container .grid .gp-link  .parent {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /*height: 162px;
    overflow: hidden;*/
  }

  .gp-container .grid .gp-link .parent .img {
    height: 100%;
    width: 100%;
    max-width: 78px;
    min-width: 78px;
    max-height: 60px;
    min-height: 60px;
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;
    border-radius: 12px;
    margin-right: 24px;
    
  }

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

  .gp-container .grid .gp-link  p {
	  text-align:left;
    font-size: 14px;
    color: #1F2852;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 0;
    transition:color 0.3s ease-in;
  }

  .gp-container .grid .gp-link:hover p {
	  color: #146ff5;
  }

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

