.elementor-4375 .elementor-element.elementor-element-6819722d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6db87933 */.brand-showcase {
  --blue: #5aabdf;
  --blue-dark: #4798cc;
  --white: #ffffff;
  --black: #161616;
  --text: #2a2a2a;
  --grey: #7a7a7a;

  font-family: inherit;
  background: #fff;
  color: var(--text);
}

/* RESET */

.brand-showcase * {
  box-sizing: border-box;
}

/* =========================================
CONTAINER
========================================= */

.skimp-container {
  width: min(1400px, calc(100% - 50px));
  margin: 0 auto;
}

/* =========================================
HEADER
========================================= */

.skimp-brand-header {
  padding: 60px 0 45px;
  text-align: center;
}

/* LOGO */

.skimp-brand-logo {
  width: 190px;
  max-width: 100%;
  display: block;
  margin: 0 auto 24px;
  transition: transform 0.35s ease;
}

.skimp-brand-logo:hover {
  transform: translateY(-4px);
}

/* DESCRIPTION */

.skimp-brand-header p {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--black);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}

/* =========================================
TITRE
========================================= */

.skimp-products-title {
  padding-bottom: 34px;
  text-align: center;
}

.skimp-products-title span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(90,171,223,0.08);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.skimp-products-title h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

/* =========================================
GALERIE
========================================= */

.skimp-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 80px;
}

/* CARTES */

.skimp-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #f5f5f5;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

/* IMAGES */

.skimp-gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* FILTRE BLANC */

.skimp-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.18),
      rgba(255,255,255,0.04)
    );
  z-index: 1;
  pointer-events: none;
}

/* EFFET LUMIÈRE */

.skimp-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.14),
      transparent
    );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  z-index: 2;
  pointer-events: none;
}

.skimp-gallery-item:hover::after {
  transform: translateX(120%);
}

/* HOVER */

.skimp-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

.skimp-gallery-item:hover img {
  transform: scale(1.03);
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .skimp-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {

  .skimp-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {

  .skimp-container {
    width: min(100% - 24px, 1400px);
  }

  .skimp-gallery {
    gap: 12px;
  }

  .skimp-brand-logo {
    width: 150px;
  }

  .skimp-products-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 520px) {

  .skimp-gallery {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */