/** Shopify CDN: Minification failed

Line 181:0 Unexpected "}"

**/
.brand-showcase {
  padding: 80px 0 40px;
}

.brand-showcase__header {
  text-align: center;
  margin-bottom: 50px;
}

.brand-showcase__header h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 12px;
  color: #111;
}

.brand-showcase__header p {
  font-size: 18px;
  color: #666;
}

.brand-showcase__slider{
    display:flex;
    align-items:center;
    gap:18px;
}

.brand-showcase__viewport{
    overflow:hidden;
    flex:1;
}

.brand-showcase__grid {
  display: flex;
  gap: 24px;

  overflow-x: auto;
  overflow-y: visible;

  scroll-behavior: smooth;

  scrollbar-width: none;
  -ms-overflow-style: none;

  flex: 1;

  padding: 12px 0;
}

.brand-showcase__grid::-webkit-scrollbar {
  display: none;
}

.brand-card {
  flex: 0 0 calc((100% - 120px) / 5);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 40px 20px;

  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;

  text-decoration: none;

  box-shadow: 0 8px 24px rgba(0,0,0,.04);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.brand-card img {
  max-width:150px;
  width: 100%;
  height: auto;
  margin-bottom: 24px;

  transition: transform .35s ease;
}

.brand-card:hover img {
  transform: scale(1.05);
}

.brand-card h3 {
  color: #111;
  margin-bottom: 8px;
  font-size: 20px;
}

.brand-card span {
  color: #b99a58;
  font-size: 14px;
}


.brand-card:hover {
  border-color: #b99a58;
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* ===========================
   Slider Arrows
=========================== */

.brand-slider__arrow{

    width:48px;
    height:48px;

    border-radius:50%;

    border:1px solid #b99a58;

    background:#fff;

    color:#b99a58;

    cursor:pointer;

    flex-shrink:0;

    font-size:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.25s;
}

.brand-slider__arrow:hover{

    background:#b99a58;

    color:white;

    transform:scale(1.08);

}



@media (max-width:749px){

  .brand-showcase{
    padding:50px 0;
  }

  .brand-showcase__header h2{
    font-size:32px;
  }

  .brand-showcase__grid{
    gap:16px;
    padding:12px 16px;
  }

.brand-card{
  flex:0 0 44%;
  min-width:44%;
  padding:18px 12px;
}

  .brand-slider__arrow{
    display:none;
  }

}

}