/** Shopify CDN: Minification failed

Line 40:7 Expected ":"

**/
.brand_item{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.brand_item img{
  transition: 0.4s all;
}
.brand_item:hover img{
  transform: scale(1.1);
}
.brand_item:nth-child(even) {
 flex-direction: column-reverse;
}
.brand_item .brand_image{
  display: block;
  overflow: hidden;
  border-radius: 12px;
  padding-bottom: 120%;
  position: relative;
}
.brand_item .brand_image *{
  transition: 0.5s ease-in-out;
}
.brand_item .brand_image img{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0px;
  margin: auto;
}
.brand_item .brand_image:hover img{
  scale
}
.brand_item .brand_content{
  text-align: center;
}
.brand_content .brand_title{
  font-size: 22px;
  line-height: 33px;
  font-weight: 700;
}
.brand_content .brand_detail{
  color: #4F4F4F;
}
.brand_content .brand_detail,
.brand_content a{
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.brand_content a{
  display: block;
  font-weight: 700;
}
.brand_content a.shop_now_arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.shop_all_brand{
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center; 
}
.shop_all_brand a{
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .brand_item:last-child{
    display: none;
  }
  .brand_item{
    margin-bottom: 0;
  }
  .shop_all_brand{
    margin-top: 24px;
  }
  .shop_all_brand a{
    padding: 8px 32px;
  }
}
@media screen and (max-width: 767px) {
  .brand_item:nth-child(3){
    display: none;
  }
  .brand_item:nth-child(even){
    flex-direction: column;
  }
  .brand_content .brand_detail{
    max-height: 48px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .brand_content .brand_title{
    font-size: 16px;
    line-height: 24px;
  }
  .brand_content .brand_detail, .brand_content a{
    font-size: 14px;
    line-height: 21px;
    margin-top: 4px;
  }
}