.custom-list2 li:nth-child(1) {
    background: url('./zenithal.png') no-repeat left center;
    background-size: 80px;
		height:80px;
		
}

.custom-list2 li:nth-child(2) {
    background: url('./brise-soleil.png') no-repeat left center;
    background-size: 80px;
	height:80px;
		
}

.custom-list2 li:nth-child(3) {
    background: url('./ventilation-naturelle.png') no-repeat left center;
    background-size: 80px;
		height:80px;
			
}

.custom-list2 li:nth-child(4) {
    background: url('./facade-bioclimatique.png') no-repeat left center;
    background-size: 80px;
		height:80px;
		
			
}


.custom-list2 li:nth-child(4) {
    background: url('./facade-bioclimatique.png') no-repeat left center;
    background-size: 80px;
		height:80px;
		
			
}





.custom-list2 {
  list-style: none;
  padding: 0;
  /* margin-bottom:-10px; */
  /* margin: 0; */
  
}

.custom-list2 li {
  display: flex;
  align-items: center; /* Centre verticalement l'image et le texte */
  margin-bottom: 0px;
  font-family:'Dejavu Sans';
  /* font-size:1.3rem; */
    font-size:clamp(1rem, -0.875rem + 4.5vw, 1.3rem);
  color:#0F7270;
    padding-left:10px;
}

.custom-list2 li::before {
  content: "";
  display: inline-block;
  width: 80px;       /* Largeur de l'image */
  /* height: 80px;      /* Hauteur de l'image */ 
  margin-right: 10px;/* Espace entre l'image et le texte */
  background: url('ton-image.png') no-repeat center center;
  background-size: contain; /* L'image s'adapte à la taille */
}





.custom-list3 li:nth-child(1) {
    background: url('./rafraichissement-evapotranspiration.png') no-repeat left center;
    background-size: 80px;
		height:80px;
			
}

.custom-list3 li:nth-child(2) {
    background: url('./systeme-de-traitement-air.png') no-repeat left center;
    background-size: 80px;
	height:80px;
			/* width:280px; */
}

.custom-list3 li:nth-child(3) {
    background: url('./destratification-air.png') no-repeat left center;
    background-size: 80px;
		height:80px;
			/* width:280px; */
}




  .custom-list3 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list3 li {
  display: flex;
  align-items: center; /* Centre verticalement l'image et le texte */
  /* margin-bottom: 10px; */
  padding-left:20px;
    font-family:'Dejavu Sans';
  /* font-size:1.3rem; */
    font-size:clamp(1rem, -0.875rem + 4.5vw,1.3rem);
  color:#0F7270;
}

.custom-list3 li::before {
  content: "";
  display: inline-block;
  width: 80px;       /* Largeur de l'image */
  height: 80px;      /* Hauteur de l'image */
  margin-right: 5px;/* Espace entre l'image et le texte */
  /* background: url('ton-image.png') no-repeat center center; */
  background-size: contain; /* L'image s'adapte à la taille */
}


  /* Le conteneur en grid avec deux colonnes égales */
  
  
/* LISTES RESPONSIVES */
.lists-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}



@media (max-width: 768px) {
  .lists-container {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
}





/* ÉLÉMENTS LI */
.custom-list2 li,
.custom-list3 li {
  display: flex;
  align-items: center;
  font-family: 'Dejavu Sans', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #0F7270;
  padding-left: 90px;
  min-height: 80px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 60px;
  word-break: break-word;
}


.icon-zenithal {
  background-image: url('./zenithal.png');
}
.icon-brise {
  background-image: url('./brise-soleil.png');
}
.icon-ventilation {
  background-image: url('./ventilation-naturelle.png');
}
.icon-facade {
  background-image: url('./facade-bioclimatique.png');
}
.icon-rafraichissement {
  background-image: url('./rafraichissement-evapotranspiration.png');
}
.icon-cta {
  background-image: url('./systeme-de-traitement-air.png');
}
.icon-destratification {
  background-image: url('./destratification-air.png');
}




