/* breakpoints */
/*Large Break*/
/*Custom Break*/
/*Grid Break*/
/* Bootstrap Col breaks */
.logo-grid {
  padding: 0px 90px;
  margin: 3rem 0rem;
}
@media only screen and (max-width: 1366px) {
  .logo-grid {
    padding: 0px 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .logo-grid {
    padding: 0px 0.5rem;
  }
}
.logo-grid > .row {
  grid-template-columns: repeat(6, 1fr);
  display: grid;
  grid-auto-rows: 150px;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media only screen and (max-width: 1200px) {
  .logo-grid > .row {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .logo-grid > .row {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 0.5rem;
  }
}
.logo-grid > .row .image {
  width: auto;
  display: flex;
  flex: 1 1 25%;
  justify-content: center;
  align-items: center;
  border: 1px solid #E9E9E9;
  border-radius: 20px;
}
@media only screen and (max-width: 1024px) {
  .logo-grid > .row .image {
    flex: 1 1 50%;
  }
}
.logo-grid > .row .image .component-content {
  display: inline-flex;
  font-size: 0;
  max-height: 100%;
}
.logo-grid > .row .image .component-content a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-content: center;
  justify-content: center;
}
.logo-grid > .row .image .component-content img {
  transition: all 0.2s ease-in-out;
  width: auto;
  max-height: 100%;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 576px) {
  .logo-grid > .row .image .component-content img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    padding: 1rem 0.5rem;
  }
}
.logo-grid > .row .image:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}