* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family:'Poppins';

}

body{
    font-family:'Poppins';
    background: linear-gradient(rgb(221, 211, 211), white, rgb(196, 134, 71));
    background-size: cover;

}

header{
  height: 20vh;
  width: 10vw;
}

.navbar{
    position: absolute;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing :border-box;
}

.navbar a {
    color: black;

}

.navbar .logo {
    font-size: 1.2em;
    font-weight: bold;
    width:15%;
    height:15%;}

.navbar .nav-links ul {
    display: flex;
    align-items: center;

}

.navbar .nav-links ul li  {
    margin : 0 25px;
}

.navbar .nav-links ul li.active a{
    color: rgb(255, 140, 0);
    font-weight: 600;
}

.navbar .menu-hamburger{
    display:none;
    position: absolute;
    right: 30px;
    top: 35px;
    width: 35px ;

}



.buttonDevis{
    font-weight: bold;
    font-size: 1.2em;

}
.buttonDevis:hover{
    background-color: rgb(237, 157, 60) ;
    
}

.textMobile{
    display: none;
}

.buttonDevis2{
  display: none;
}

.textMobile2{
    display: none;
}

.textMobile3{
  display: none;
}


@media screen and (max-width:900px){

    .navbar{
        padding: 0;
    }

    .navbar .menu-hamburger{
        display: block;
    }

    .nav-links{
        top: 0;
        left: 0;
        position: absolute;
        background-color: rgba(255, 255, 255 ,0,2);
        -webkit-backdrop-filter: blur(7px);
        backdrop-filter: blur(7px) ;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.5s ease;
        
    }

    .nav-links.mobile-menu{
        margin-left: 0;
    
    }
    
    .nav-links ul{
        display: flex;
        flex-direction: column;
    }

    .navbar .nav-links ul li  {
        margin : 19px 0;
        font-size: 1.2em;
    }

    .navbar .logo {
      font-size: 1.2em;
      font-weight: bold;
      width:30%;
      height:30%;}
   
    .textMobile{
        display: block;
        position: absolute;
        top: 5%;
        left: 28%;
        text-align: center;
        font-size: 115%;
        color: rgb(237, 113, 60);
        font-weight: bold;
    }

    .textMobile2{
      display: block;
      position: absolute;
      top: 14%;
      left: 34.5%;
      text-align: center;
      font-size: 100%;
      color: rgb(237, 113, 60);
      background-color: rgb(221, 211, 211); /* Couleur de fond du bouton */
      border : none;

    }

    .textMobile3{

      display: block;
      position: absolute;
      top: 19%;
      left: 7%;
      text-align: center;
      font-size: 100%;
      color: rgb(237, 113, 60);
      background-color: rgb(221, 211, 211);; /* Couleur de fond du bouton */
      border : none;
    }

    .imagesDes img{
        margin-bottom: 20px;

    }

    .textFirst{
      margin-left: 13%;
      font-size: 200%;
      text-align: center;
      font-weight: bold;

    }


}

@media screen and (min-width:900px){

  .textFirst{
    
    top: 40%;
    font-size: 350%;
    text-align: center;
    font-weight: bold;

  }

  .u-header{
      height: 28vh;

  }

}



.presentation {
	padding: 20px 5%;
	margin-top: 5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.presentation .product-presentation {
	width: 90%;
	flex-shrink: 2;
}
.presentation .product-presentation h1 {
	margin: 0;
	font-size: 4vw;
	width: 80%;
}
.presentation .product-presentation p {
	font-weight: 300;
	color: black;
}
.presentation .product-presentation button {
	margin-top: 20px;
	padding: 15px 20px;
	font-size: 15px;
	border-radius: 10px;
	border: none;
	outline: none;
	cursor: pointer;
}
.presentation .image-presentation img {
    width: 60%;
    margin: 0 30%;
}

.buttonHome {
    padding: 10% 4%; /* Utilisation de pourcentages pour le padding */
    margin-right: 2%; /* Espacement entre les boutons */
    border: 5px solid #171515; /* Bordure grise foncée */
    color: #333; /* Couleur du texte */
    cursor: pointer;
    justify-content: center;


  }

  .buttonHome:hover {
    background-color: rgb(237, 157, 60) ;
  }


.first .product-presentation button:hover {
	background-color: inherit;
	color: var(--violet);
}
.first .product-presentation .small-images {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.first .product-presentation .small-images .small {
	padding: 20px;
	margin: 0 15px 15px 0;
	border-radius: 100px;
	transition: filter 0.5s;
}
.first .product-presentation .small-images .small:hover {
	filter: brightness(50%);
}
.first .product-presentation .small-images .small img {
	width: 120px;
    border-radius: 10px;

}

.second {
	margin: 0;
}
.second .product-presentation .new {
	color: var(--violet);
}
.second .product-presentation button {
	background-color: inherit;
	border: 1px solid var(--violet);
	color: var(--violet);
	transition: background-color 0.5s, color 0.5s;
}
.second .product-presentation button:hover {
	background-color: var(--violet);
	color: rgb(184, 178, 178);
}

footer {
	margin: 0;
	padding: 20px;
	background-color: black;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
footer h3 {
	color: var(--violet);
}
footer p {
	cursor: pointer;
	color: #ccc;
}
footer p:hover {
	color: white;
}

.rectangles {
    display: flex; /* Pour que les rectangles soient alignés côte à côte */
    margin-left: 50px;
  }

  .clearfix {
    clear: both;
  }

  .titre{
    font-size: 100%;
  }

  .presentation .image-presentation2 img {
    width: 60%;
    justify-content: center;
    margin-left: 20%;
    } 

    .firstctivite {
        display: flex;
        justify-content: space-around;
    }
    
    .rect {
    
        background-color: #fff;
        border: 1px solid #000000;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        margin: 10px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease; /* Transition de couleur fluide */
    }
    
    .rect:hover {
        background-color: #ccc; /* Couleur grise au survol */
    }
    
    .img1 {
        width: 100px;
        height: auto;
        border-radius: 50%;
        margin-bottom: 10px;
    }
    
    .text.description {
        font-size: 18px;
        font-weight: bold;
    }
    
    .text {
        font-size: 16px;
    }
    
    .buttons{
        display: flex;
        align-items :baseline;
        flex-direction: row;
        margin-left: 400px;
        /*margin:200px;*/
        }
    .button1{
        margin:20px;
    }
   
  
    .u-section-1 .u-sheet-1 {
        min-height: 626px;
        margin: -20px;
      }
      
      .u-section-1 .u-image-1 {
          width: 70%;
          height: 50%;
          margin: 60px auto 0;
      
      }
      
      .u-section-1 .u-list-1 {
        margin : 50%;
      }
      
      .u-section-1 .u-repeater-1 {
        grid-template-columns: calc(65% - 20px) calc(65% - 11px);
        grid-gap: 22px 22px;
        min-height: 506px;
      }
      
      .u-section-1 .u-list-item-1 {
        background-image: none;
        
      }
      
      .u-section-1 .u-container-layout-1 {
        padding: 30px;
      }
      
      .u-section-1 .u-text-1 {
        margin-top: 0;
        font-weight: 600;
        margin-bottom: 0;
      }
      
      .u-section-1 .u-text-2 {
        margin-left: 0;
      }
      
      .u-section-1 .u-list-item-2 {
        background-size: auto;
      }
      
      .u-section-1 .u-container-layout-2 {
        padding: 30px;
      }
      
      .u-section-1 .u-text-3 {
        margin-top: 0;
        font-weight: 700;
        margin-bottom: 0;
      }
      
      .u-section-1 .u-text-4 {
        margin-left: 0;
      }
      
      .u-section-1 .u-list-item-3 {
        background-size: auto;
      }
      
      .u-section-1 .u-container-layout-3 {
        padding: 30px;
      }
      
      .u-section-1 .u-text-5 {
        margin-top: 0;
        font-weight: 700;
        margin-bottom: 0;
      }
      
      .u-section-1 .u-text-6 {
        margin-left: 0;
      }
      
      .u-section-1 .u-list-item-4 {
        background-size: auto;
      }
      
      .u-section-1 .u-container-layout-4 {
        padding: 30px;
      }
      
      .u-section-1 .u-text-7 {
        margin-top: 0;
        font-weight: 700;
        margin-bottom: 0;
      }
      
      .u-section-1 .u-text-8 {
        margin-left: 0;
      }

      .logoMobile{
        display: none;
      }

      @media screen and (max-width : 900px){
        .rectangles{
            display: flex;
            margin-left: 20px;
            flex-direction: column;
        }
        
      }
      
      
      
        .u-section-1 .u-list-1 {
          width: 505px;
          margin-top: -534px;
        }
      
      
      @media screen and (max-width: 900px) {
        .u-section-1 .u-sheet-1 {
          min-height: 1260px;
        }
      
      
      
        .u-section-1 .u-list-1 {
          margin-top: 22px;
          margin-bottom: -132px;
          margin-right: initial;
          margin-left: initial;
          width: auto;
        }
      }
      
      @media screen and (max-width: 900px) {
        .u-section-1 .u-sheet-1 {
          min-height: 1117px;
        }
      
   
      
        .u-section-1 .u-list-1 {
          margin-bottom: 60px;
          width: auto;
          margin-right: initial;
          margin-left: initial;
        }
      
        .u-section-1 .u-container-layout-1 {
          padding-left: 10px;
          padding-right: 10px;
        }
      
        .u-section-1 .u-container-layout-2 {
          padding-left: 10px;
          padding-right: 10px;
        }
      
        .u-section-1 .u-container-layout-3 {
          padding-left: 10px;
          padding-right: 10px;
        }
      
        .u-section-1 .u-container-layout-4 {
          padding-left: 10px;
          padding-right: 10px;
        }
      }
      
      @media screen and (max-width: 900px) {
        .u-section-1 .u-sheet-1 {
          min-height: 372px;
        }
      

      
        .u-section-1 .u-repeater-1 {
          grid-template-columns: 100%;
        }
      }

      .u-header .u-sheet-1 {
        min-height: 80px;
      }
      .u-footer .u-sheet-1 {
        min-height: 120px;
      }

      @media screen and (max-width: 900px) {
        .u-footer .u-sheet-1 {
          min-height: 99px;
        }
      }
      @media screen and (max-width: 900px) {
        .u-footer .u-sheet-1 {
          min-height: 76px;
        }
      }
      @media screen and (max-width: 900px) {
        .u-footer .u-sheet-1 {
          min-height: 57px;
        }
      }
      @media screen and (max-width: 900px) {
        .u-footer .u-sheet-1 {
          min-height: 36px;
        }
      
        .u-footer .u-text-1 {
          width: 500px;
        }
      }

      .u-border-grey-25,
.u-border-grey-25.u-input,
.u-border-grey-25.u-field-input.u-field-input,
.u-separator-grey-25:after {
  border-color: #c0c0c0;
  stroke: #c0c0c0;
  border: outset;
}

.u-border-2,
.u-separator-2:after,
.u-text.u-border-2,
.u-input.u-border-2,
.u-field-input.u-field-input.u-border-2,
a.u-button-style.u-border-2 {
  border-width: 2px;
}

.u-tabs:not([class*="u-align-"]),
.u-accordion:not([class*="u-align-"]),
.u-repeater-item:not([class*="u-align-"]),
.u-container-style:not([class*="u-align-"]) {
  text-align: left;
}

.u-repeater {
    display: grid;
    grid-template-columns: repeat(3, 33.33333333%);
  }
  .u-repeater-item {
    display: flex;
    position: relative;
  }
  .u-list-control {
    display: flex;
    position: relative;
  }
  .u-list-control.has-pagination.has-sorting {
    display: grid;
    grid-auto-flow: column;
    position: relative;
    align-items: center;
    grid-template-columns: calc(33.3333%) calc(33.3333%) calc(33.3333%);
  }

  .u-align-left {
    text-align: left;
  }

  @media  screen and (min-width: 900px) {
    .u-align-left-xxl {
      text-align: left;
    }
  }

  @media screen and (min-width: 900px) {
    .u-xl-mode .u-align-left-xl {
      text-align: left;
    }
  }

.imagesDes img {
    display: block;
    width: auto;
    height: auto;
    max-width: 30%; /* Limite la largeur maximale à 60% de la largeur de la fenêtre */
    max-height: 30%; /* Limite la hauteur maximale à 50% de la hauteur de la fenêtre */
}


.onglet-desinsectisation {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .insecte {
    display: flex;
    flex-direction: column; /* Affiche le texte en dessous de l'image */
    border: 1px outset rgb(27, 24, 24); /* Style "outset" et couleur de contour grise */
    padding: 10px;
    border-radius: 5px;
  }

  
  .insecte img {
  display: flex;
  }
  
  .insecte p {
    margin-top: 10px;
    align-self: center; /* Pour aligner le texte verticalement au centre */
    margin-top: 20px;
  }

  .desin{
    text-align: center;
  }

  .desinfection{
    text-align: center;

  }

  .image-presentationDes{
    width: px;

  }

  .imgACC{
    width: 100px;
    height: 100px;
  }

  .form {
    text-align: center; /* Centre les éléments internes horizontalement */
    margin: 0 auto; /* Centre la div elle-même horizontalement */
    width: 90%; /* Ajustez la largeur en fonction de vos préférences */
}

/* Ajoutez ces règles CSS pour aligner les champs de formulaire verticalement */
label {
    width: 150px; /* Ajustez la largeur en fonction de vos besoins */
    vertical-align: top; /* Alignement vertical en haut */
    text-align: right; /* Alignez le texte à droite */
    margin-right: 10px; /* Espacement entre le label et le champ de formulaire */
}

