/** Shopify CDN: Minification failed

Line 67:1 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.client-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  color: #fff;
  text-align: center;
}

.client-logo-section h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 40px;
}

.client-logo-section .logo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.client-logo-section .logo-box {
  transition: transform 0.3s ease;
}

.client-logo-section .logo-box:hover {
  transform: scale(1.1);
}

.client-logo-section img {
  width: 100%;
  height: auto;
}

a.logo-box {
    pointer-events: none !important;
    cursor: grab !important;
}
  
.logo-box {
    border-radius: 0.75em;
    background-color: #131314;
    justify-content: center;
    align-items: center;
    min-height: 10em;
    padding: 10px;
    display: flex;
}

@media only screen and (min-width:320px){
  .logo-container .logo-box {
    width: 44%;
   }
}

@media only screen and (min-width:992px){
  .logo-container .logo-box {
    width: 22.4% !important;
}