.a-propos-head-container {
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
background-image: url(../img/top-view-frame-with-cleaning-products-wooden-background.jpg);
   background-size: cover;
   background-position: 50% 60%;
   
}

.a-propos-head-title {
    position: relative;
     z-index: 1;
     width: fit-content;
     margin: auto;
     padding: 1rem;
}

.a-propos-head-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px); /* flou du fond */
    -webkit-backdrop-filter: blur(10px); /* compatibilité Safari */
    z-index: -1; /* derrière le contenu */
    background-color: rgba(240, 248, 255, 0.174);
border-radius:25px;

}


/* Responsive */
@media (max-width: 862px) {

.a-propos-head-container {
    height: 30vh;
  
}

.a-propos-head-title {
    margin-top: 70px;
}

}




