/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 20 2026 | 21:30:05 */
/* Bloc complet pour la section Applications industrielles de la home.
   Gère :
   - La tile cliquable avec image background + overlay gradient sombre
   - Le contenu en bas (carré rouge + icône + label + flèche)
   - Le lien invisible qui couvre toute la tile pour la rendre cliquable
   - L'effet hover : zoom + overlay rouge
   Classes :
   - tile-application sur le container
   - tile-content-wrap sur le widget HTML du label
   - tile-link sur le widget HTML du lien */

/* Tile container */
.tile-application {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  background-size: cover !important;
  background-position: center center !important;
  transition: transform 0.5s ease;
}
.tile-application::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
  transition: background 0.3s ease;
  z-index: 1;
}
.tile-application:hover::before {
  background: linear-gradient(to bottom, rgba(227,6,19,0.3) 0%, rgba(227,6,19,0.85) 100%);
}
.tile-application:hover {
  transform: scale(1.02);
}

/* Wrapper du widget HTML positionné en bas */
.tile-application .tile-content-wrap {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 4;
  width: auto !important;
  pointer-events: none;
}

/* Contenu : icône + texte + flèche */
.tile-application .tile-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}
.tile-application .tile-icon {
  background: #E30613;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tile-application .tile-icon i {
  color: #ffffff;
  font-size: 18px;
}
.tile-application .tile-text {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tile-application .tile-arrow {
  margin-left: auto;
  font-size: 22px;
  color: #ffffff;
}

/* Lien invisible qui couvre toute la tile */
.tile-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  text-indent: -9999px;
  cursor: pointer;
}