html{
    scroll-behavior: smooth;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
   
    font-family: "Poppins", sans-serif;
    /* position: relative; */
    
}
/* nav  */
.nav-box{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 1.3rem 10%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 1px 1px 10px #e2e2e2;
    z-index: 100;
}
.logo{
    font-size: 2rem;
    color: #000;
    text-decoration: none;
    font-weight: 700;
}
.navbar a{
    font-size: 1.15rem;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2rem;
}
.icon{
    position: absolute;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
    right: 5%;
    display: none;
}
.cross{
    position: absolute;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
    right: 5%;
    display: none;
}
/* RESPONSIVE  */
@media only screen and (max-width: 992px) {
    .header{
        padding: 1.1rem 5%;
    }
} 
@media only screen and (max-width: 768px) {
    .icon{
        display: block;
    }
    /* .cross{
        display: block;
    } */
    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background-color: white;
        box-shadow: 0.5rem 1rem rgba(0,0,0,0.1);
        overflow: hidden;
        transition:all .3s ease;
    }
    .navbar a{
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
    }
}


.description{
    text-align: center;
}
.description a{
    text-decoration: none;
    color: #000;
}
.h1-hero{
    margin: 0;
    color: white;
    font-size: 60px;
    text-align: center;
    @media only screen and (max-width: 768px) {
        font-size: 30px;
    }
}
.div-hero{
   
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    @media only screen and (max-width: 768px) {
        width: 75%;
    }
}
.p-hero{
    color: #fff;
    font-size: 14px;
    width: 50%;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
    @media only screen and (max-width: 768px) {
        width: 100%;
    }
}
.section-hero{
    background: url('../img/MANIPEDI.jpg') no-repeat;
    background-size: cover;
    width: 100%;
    height: 100dvh;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  

    
}
.cta-hero{
    text-decoration: none;
    background-color: white;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 30px;
    color: #000;

}
/* .picture-of-month{
    padding-top: 50px;
    padding-bottom: 80px;
    display: flex;
   
    align-items: center;
    flex-direction: column; 
    min-height: 100dvh;

}
.h2-pom{
    margin: 0;
    color: #000;
    font-size: 60px;
    text-align: center;
    margin-bottom: 30px;
}
.div-pom{
    width: 50%;
    height: 60dvh;

}
.img-pom{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.ul-pom{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}
.ul-pom a{
    color: #000;
    font-weight: bold;
    font-size: 20px;
}
.h4-pom{
    margin-bottom: 5px;
    margin-top: 0;
} */

.disapear{
    display: none;
    
}
.appear{
    display: block;
}


/* Gallery  */
.section-gallery{
    width: 100%;
    /* height: 100dvh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom:150px;
    @media only screen and (max-width: 768px) {
        padding-top: 60px;
    padding-bottom:60px;
    }
    
}
.h1-gallery{
    font-size: 100px;
    margin: 20px;
    text-transform: uppercase;
    @media only screen and (max-width: 768px) {
        font-size: 30px;
    }
}
.gallery-box{
width: 90%;
display: flex;
justify-content: center;
flex-wrap: wrap;
/* height: auto; */
gap: 2rem;
/* border: 1px solid green; */

}
.bg-gallery{
display: flex;
justify-content: center;
align-items: center;
z-index: 200;
}
#img-main{
width: 60%;
height: 80%;
object-fit: contain;

}
.bg-gallery{
background-color: #000;
width: 100%;
height: 100dvh;
position: fixed;
opacity: 0;
top: 0;
bottom: 0;
right: 0;
left: 0;

}
.disapear{
display: none;

}
.opacity{
opacity: 1!important;
}
.div-cross{
background-color: rgb(231, 227, 227);
width: 30px;
height: 30px;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 5%;
right: 5%;
cursor: pointer;
}

.div-cross i{
font-size: 17px;
font-weight: bold;

}


.img-gallery{
width: 150px;
height: 200px;
object-fit: cover;
/* border-radius: 5px; */
cursor: pointer;
padding: 8px;
border: 3px solid #000;
box-shadow: 5px 5px 15px #c8c5c5;
/* transition: all 0.5s ease; */
filter: blur(5px);


}

/********************************************** Footer  **********************************************/
.div-footer{
    /* border: 1px solid red; */
    width: 60%;
}
.div-footer ul{
  list-style: none;
  display: flex;
  justify-content: space-around;
  @media only screen and (max-width: 768px) {
  flex-direction: column;
  align-items: center;
}
}
.div-footer ul a{
    color: #fff;
    text-decoration: none;
   
  }
.div-footer-2{
    width: 60%;
    /* border: 1px solid red; */
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
.div-footer-2 a{
    
    color: #fff;
    @media only screen and (max-width: 768px) {
        font-size: 14px;
      }
}

.footer{
    background: #000;
    padding: 50px 0;
    /* position: absolute;
    bottom: 0;
    left: 0; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.p-footer{
color: #fff;
@media only screen and (max-width: 768px) {
  font-size: 14px;
}
}
.footer-index{
    background: #000;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/****************************************** Dropdown  **************************/
.dropdown{
    position: relative;
    /* margin-top: 100px; */
    width: 200px;
    /* border: 1px solid red ; */
    height: 50px;
    z-index: 90;
    display: flex;
    align-items: center;
    
}
.dropdown-box{
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}
.dropdown input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #fff;
    border: none;
    outline: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 12px 20px;
    border-radius: 10px;
  
}
.dropdown .option{
    position: absolute;
    margin-top: 30px;
    top: 70%;
    width: 100%;
    background: #fff;
    box-shadow: 0 30px 30px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
    display: none;
}
.dropdown.active .option{

    display: block;
}

.dropdown .option div{
    padding: 12px 20px;
    cursor : pointer;

}
#porcelaine:hover{
   background: #F4D4BB;
   color: #000;
}
#ivory:hover{
    background: #F2C48F;
    color: #000;
 }
 #honey:hover{
    background: #D19556;
    color: #fff;
 }
 #chocolate:hover{
    background: #845225;
    color: #fff;
 }
 #allcolor:hover{
    background: #000;
    color: #fff;
 }
 .dropdown::before{
    content:'';
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 91;
    width:8px;
    height: 8px;
    /* border: 2px solid #000; */
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(-45deg);
    transition: 0.3s ease;
    pointer-events: none;
 }
 .dropdown.active::before{
   
    transform: rotate(-225deg);
    transition: 0.3s ease;
    pointer-events: none;
 }

#btn-reset{
    background-color: #e46161;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    box-shadow: -5px -5px 10px #999999, 5px 5px 10px #999999;
    outline: none;
    border: none;
    margin-left: 20px;
    cursor: pointer;
}

/*********************************** page article  ******************************/
.main-articles{
    margin-top: 100px;
    margin-bottom: 60px;
}
.page-article-h2{
    text-align: center;
    font-size: 100px;
    /* margin: 20px; */
    text-transform: uppercase;
    @media only screen and (max-width: 768px) {
        font-size: 30px;
    }
}
.box-page-article{

/* width: 90%; */
display: flex;
justify-content: center;
flex-wrap: wrap;
/* border: 1px solid red; */
/* height: auto; */
gap: 2rem;
}
.article-container{
width: 400px;
/* border: 1px solid red; */
box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 10px 0px;
}
.img-page-article{
    width: 100%;
}
.page-article-description{
padding: 20px;
}
.h3-page-article{
    margin-bottom: 25px;
    font-size: 23px;
}
.p-page-article{
margin-bottom: 20px;
color: #B5B5B5;
font-size: 14px;
}
.link-page-article{
    font-size: 13px;
    color: red;
    font-weight: bold;
 margin: auto;
}

/****************************** Article  ***********************/
.h1-article{
    font-size: 30px;
    width: 60%;
    text-align: center;
    margin-bottom: 20px;
    @media only screen and (max-width: 768px) {
        font-size: 20px;
        width: 80%;
      }
}
.main-article{
    display: flex;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 30px;
    flex-direction: column;
}
.blog-article{
display: flex;
flex-direction: column;
align-items: center;
}
.container-article{
    width: 70%;
}
.h2-article{
    margin-top: 40px;
    margin-bottom: 15px;
    @media only screen and (max-width: 768px) {
        margin-top: 30px;

      }
}
.div-img-article{
    width: 80%;
    height: 300px;
    background: url(../img/shutterstock_1399115060-scaled.jpg) no-repeat;
    background-size: cover;
    background-position: 50% 70%;
    border-radius: 8px;
    object-fit: cover;
    /* border: 1px solid red; */
    overflow: hidden;
    margin-bottom: 20px;
    @media only screen and (max-width: 768px) {
        /* height: 70%; */
      }

}
.img-article{
    width: 100%;
    /* height: 40%; */
}
.div-img-article-2{
    width: 80%;
    height: 300px;
    background: url(../img/vernis.jpg) no-repeat;
    background-size: cover;
    background-position: 50% 70%;
    border-radius: 8px;
    object-fit: cover;
    /* border: 1px solid red; */
    overflow: hidden;
    margin-bottom: 20px;
    @media only screen and (max-width: 768px) {
        /* height: 70%; */
      }
}
.div-img-article-3{
    width: 80%;
    height: 300px;
    background: url(../img/soin.jpg) no-repeat;
    background-size: cover;
    background-position: 50% 70%;
    border-radius: 8px;
    object-fit: cover;
    /* border: 1px solid red; */
    overflow: hidden;
    margin-bottom: 20px;
    @media only screen and (max-width: 768px) {
        /* height: 70%; */
      }
}

.div-img-article-4{
    width: 80%;
    height: 300px;
    background: url(../img/cuticule.jpg) no-repeat;
    background-size: cover;
    background-position: 50% 70%;
    border-radius: 8px;
    object-fit: cover;
    /* border: 1px solid red; */
    overflow: hidden;
    margin-bottom: 20px;
    @media only screen and (max-width: 768px) {
        /* height: 70%; */
      }
}
.keywords-seo{
width: 80%;
margin: 0 auto;
display: flex;
flex-direction: column;
margin-bottom: 50px;
}
.keywords-seo h3{
   
    margin-bottom: 20px;
    }
.ul-keywords{
padding: 0;
margin: 0;

list-style: none;
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.keywords-seo li{

background-color: #e46161;
padding: 5px 10px;
border-radius: 5px;
color: white;

}
/********************************* about us section  ***************************/
.about-section{
margin-top: 80px; 
margin-bottom: 80px; 
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
@media only screen and (max-width: 768px) {
    margin-top: 50px; 
    margin-bottom: 30px; 
    }
}
.h2-about-us{
font-size: 50px;
text-align: center;

line-height: 56px;
text-transform: uppercase;
/*  */
margin-bottom: 30px;
@media only screen and (max-width: 1024px) {
    font-size: 40px;

display: block;
line-height: 46px;
  }
  @media only screen and (max-width: 768px) {
  display: none;
  }
}
.about-us-content{
display: flex;

/* justify-content: center; */
/* align-items: center; */
width: 70%;
/* border: 1px solid red; */
@media only screen and (max-width: 1024px) {
    width: 85%;
  }
  @media only screen and (max-width: 768px) {
    width: 80%;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}
.div-img-about-us{
    width: 50%;
    @media only screen and (max-width: 768px) {
        width: 80%;
        /* flex-direction: column-reverse;
        justify-content: center;
        align-items: center; */
      }
      @media only screen and (max-width: 425px) {
       width: 90%;
        
        }
}
.div-img-about-us img{
    width: 100%;
}
.about-us-text{
    width: 50%;
    padding: 30px;
    @media only screen and (max-width: 768px) {
        padding: 20px;
        width: 80%;
      }
      @media only screen and (max-width: 425px) {
        width: 100%;
        
        }
}
.p-about-us{
    font-size: 20px;
    @media only screen and (max-width: 1024px) {
        font-size: 18px;
      }
      /* @media only screen and (max-width: 768px) {
        
      } */
}
.btn-about-us{
    background: #D60308;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    
}
.title-responsive{
    display: none;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
    @media only screen and (max-width: 768px) {
        display: block;
      }
      @media only screen and (max-width: 425px) {
        font-size: 25px;
        
        }
}
/* article recent  */

.img-article-recent-1{
     /* background: url(../carefeet.jpg) no-repeat; */
    width: 5px; 
    height: 100%; 
    /* background-size: cover; */

}


.h2-article-recent{
    font-size: 50px;
text-align: center;
line-height: 56px;
text-transform: uppercase;
margin-bottom: 30px;
@media only screen and (max-width: 768px) {
    font-size: 30px;
  }
  @media only screen and (max-width: 425px) {
    font-size: 25px;
    
    }
}
.recent-articles{
    margin-bottom: 80px;
}

.ul-produits{
    /* list-style: none; */
    padding: 0;
    margin: 0;
}
.ul-produits li{
    padding: 0;
    margin-left: 20px;
}
/* contact */
.main-contact{
    margin-top: 80px; 
    margin-bottom: 80px; 
}
.page-contact-h2{
    font-size: 50px;
    text-align: center;
    line-height: 56px;
    text-transform: uppercase;
    margin-bottom: 30px;
    @media only screen and (max-width: 768px) {
        font-size: 30px;
      }
      @media only screen and (max-width: 425px) {
        font-size: 25px;
        
        }
}
.page-contact-container{
    display: flex;
    /* border: 1px solid red; */
    justify-content: center;
    align-items: center;
}

.page-contact-box{
    width: 540px;
    /* border: 1px solid red; */
    height: 50dvh;
    background: #1E1E20;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding: 20px;
    justify-content: center;
    @media only screen and (max-width: 768px) {
        width: 60%;
      }
    @media only screen and (max-width: 425px) {
       
        width: 90%;
        }
}
.element-info{
    display: flex;
    align-items: center;
   /* flex-wrap: wrap; */
    gap: 10px;
    margin-bottom:20px ;
}
.element-info i,p{
   color: #E3E2E4;
   font-size: 20px;
   @media only screen and (max-width: 425px) {
    font-size: 16px;
    
    }
    @media only screen and (max-width: 320px) {
        font-size: 14px;
        
        }
}

.element-info p{
    color: #E3E2E4;
    @media only screen and (max-width: 425px) {
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        }
    

 }