body{
    height: 100%;
    font-family: url(Poppins-Medium.ttf);
}

.navbar {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0%;
    z-index: 999;
    background-color: black;
}

.navbar .logo {
    color: white;
    cursor: pointer;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    margin-left: 20px;
    color: white;
    border-bottom: 4px solid transparent;
    font-size: 15px;
    text-decoration: none;
}

.navbar .menu li .active {
    border-bottom: 4px solid #f63e4e;
}

.navbar .menu li .a:hover {
    border-bottom: 4px solid #f63e4e;
}

.content {
    background-image: url(img/Bg_banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #424144;
    height:100vh;
}

.content h1 {
    font-size: 40px;
}

.content p {
    font-size: 20px;
    margin-top: 20px;
}

.content button {
    margin-top: 30px;
    padding: 15px 30px;
    border: none;
    background: #f63e4e;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.produits_text {
    text-align:  left;
    font-size:   30px;
    font-weight: 300;
    margin-top:  30px;
    margin-left: 80px;
    color:#424144;

}

.produits{
    gap: 20px;
    display: grid flexbox;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
}

.produits .carte {
    
    width: 310px;
    background: #f5f5f5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-radius: 10px;
    margin-bottom : 20px;

}

.produits .carte img {
    height:250px;
    border-radius: 20px;
    width: 100%;
}

.produits .carte .desc {
    padding: 5px 20px;
    opacity: .8;
}

.produits .carte .titre {
    font-weight: 900;
    font-size: 20px;
    color:#424144;
    padding: 0 20px;
}

.produits .carte .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.produits .carte .prix{
    color: #f63e4e;
    font-size: 20px;
    font-weight:bold ;
}

.produits .carte button{
    font-size:13px;
    font-weight: 900;
    color:#f63e4e;
    padding: 10px 18.1px;
    border-radius: 5px solid #f63e4e;
}

.produits .carte .box button:hover{
    cursor:pointer;
    background: black;
    color:white;
}
.section_produits {
    padding: 40px 5%;
}
