*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

}
body{
    background: linear-gradient(45deg, #0004f5, #a4aaea);
    background-attachment: fixed;
    min-height: 100vh;
}
.ecran{
    margin-top: 0;
    flex-shrink: 0;
    width: 100%;
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    flex-direction: column;
}
.carte{
    position: relative;
    margin: 20px auto;
    display: block;
    width: 95%;
    max-width: 450px;
    overflow: hidden;
    color: azure;
    text-align: center;
    padding: 50px 30 px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    margin-bottom: 50px;

}
.carte img{
    width: 120px;
    border-radius: 50%;
}
/* grille des produits responsive*/
.produit{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 30px;
    position: relative;
    left: 0;
}
.item{
    text-align: center;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item img{
    width: 100%;
    transition: 0.3s;
    height: auto;
}
.item img:hover{
    transform: scale(1.1);
}
.item h2{
    font-size: 12px;
    color: white;
    margin-top: 10px;
}
.carte p{
    color: rgb(0, 0, 0);
    font-size: 20px;
    margin: 10px auto;
    max-width: 330px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.carte .reseaux img{
    width: 80px;
    border-radius: 70%;
    margin: 10px 5px;
}
.produit a{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    cursor: pointer;
}
.produit a img{
    max-width: 400px;
    transition: background 0.5s;
    width: 100%;
}
.produit a img:hover{
    background: rgb(77, 149, 245);

}
.bouton{
    text-decoration: none;
    display:  inline-block;
    font-size: 20px;
    font-weight: 700;
    background: rgb(239, 8, 8);
    color: rgb(0, 0, 0);
    padding: 12px 25px;
    border-radius: 40px;
    margin: 30px 4px 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
}
.carte h2{
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(0, 241, 249);
}
.produit h2{
    max-width: 30%;
    font-size: 10px;
    margin-top: 5px;
}
@media screen and (min-width: 768px){
    .produit img{
        max-width: 120px;
    }
    .produit h2 {
        font-size: 14px;
    }
}
.logo{
    float: right;
    height: 25px;
    width: 40px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.logomenu{
    height: 3px;
    width: 30px;
    background-color: azure;
}
.MENU{
    background-color: rgb(36, 120, 199);
    height: 100vh;
    width: 50%;
    padding: 50px;
    transform: translate(-500px);
    transition: 0.5s;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;

}
.MENU li{
    list-style-type: none;
    border-bottom: 1px solid rgb(255, 255, 255);
    padding: 30px 0;
    text-align: center;
}
.showmenu{
    transform: translateX(0);
}
.MENU li:last-child{
    border-bottom: none;
}
.MENU li a{
    color: rgb(8, 3, 60);
    text-decoration: none;
    font-size: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    transition: font-weight 0.2s;
}
.MENU li a:hover{
    font-weight: bold;
}
@media screen and (min-width:1000px){
    .MENU{
        width: 500px;
    }
    
}
@media screen and (max-width:600px){
    .MENU li a{
        font-size: 16px;
    }
}
.signature{
    width: 100%;
    text-align: center;
    padding: 2px 0;
    color: rgb(194, 182, 248);
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    bottom: 0;
}
.signature a{
    margin: 0;
    letter-spacing: 1px;
    color: azure;
}
.rideau img{
    float: center;
    height: 39px;
    width: 40px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.MENU2{
    background-color: rgb(36, 120, 199);
    height: 100vh;
    width: 50%;
    padding: 50px;
    transform: translate(1550px);
    transition: 0.5s;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;

}
.MENU2 li{
    list-style-type: none;
    border-bottom: 1px solid rgb(255, 255, 255);
    padding: 30px 0;
    text-align: center;
}
.showmenu{
    transform: translateX(0);
}
.MENU2 li:last-child{
    border-bottom: none;
}
.MENU2 li a{
    color: rgb(8, 3, 60);
    text-decoration: none;
    font-size: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    transition: font-weight 0.2s;
}
.MENU2 li a:hover{
    font-weight: bold;
}
@media screen and (min-width:1000px){
    .MENU2{
        width: 500px;
    }
    
}
@media screen and (max-width:600px){
    .MENU2 li a{
        font-size: 16px;
    }
}
.rideau{
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    animation : flash 1s 7;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}
@keyframes flash{
        0%{opacity: 1;}
        50%{ opacity: 0.4;}
        100%{ opacity: 1;}
}
.rideau img{
    width: 50px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: absolute;
    left: 5px;
}
.rideau span{
    animation: flashtexte 0.8s,cachetexte 0s forwards 7s;
    font-weight: bold;
    color: #0004f5;
    height: auto;
    display: block;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    left: 1%;
    
}
@keyframes flashtexte{
    50%{opacity: 0;}
}
@keyframes cachetexte{
    to {display: none; visibility: hidden;}
}
.rideau img :hover{
    color: bisque;
}
.map-wrapper{
    width: 100%;
    max-width: 400px;
    height: 200px;
    padding-bottom: 0;
    height: 250px;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0, 1);
    border: 1px solid #ddd;
}
.map-wrapper iframe{
 width: 100%;
 height: 100%;
 border: 0;
}
span{
     animation: flashtexte 0.8s,cachetexte 0s forwards 4s;
    font-weight: bold;
    color: #ffffff;
    height: auto;
    display: block;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    left: 20%;
}
@keyframes flashtexte{
    50%{opacity: 0;}
}
@keyframes cachetexte{
    to {display: none; visibility: hidden;}
}
.MENU2 P{
    font-family: sans-serif;
    font-size: 50%;
}