/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 03 2025 | 16:25:35 */
.mainCont {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

/* Dégradé sombre gauche → transparent */
.mainCont::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Flou + dégradé progressif du bas */
.mainCont::after {
  content: "";
  position: absolute;
  inset: 0;
  /* zone floue sur la moitié basse */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(18px);
  
  /* dégradé de visibilité du flou (masque progressif) */
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 60%);
  mask-image: linear-gradient(to top, black 0%, transparent 60%);
  
  /* légère ombre foncée en plus pour l'assombrissement */
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 70%);
  
  pointer-events: none;
  z-index: 2;
}