.produits{
    height: 100%;
    width: 80%;
}
.fondImage{
    padding-top: 100px;
    height: 40vh;
    background: url(images/abeille-fleur.jpeg) no-repeat center / cover;
    text-align: center;
}
.titreProd{
    display: inline-block;
    margin: 20px auto;
    padding: 20px;
    background: hsla(0, 0%, 100%, 0.75);
    border-radius: 15px;
}
aside{
    width: 20%;
    height: 100vh;
    position: fixed;
    right: 0px;
    top: 0px;
    overflow: hidden;    
    z-index: -2;
}
.video{
    max-width: 100%;
	height: auto;
    transform: translateX(-900px) /*translateY(-200px)*/;
}
#listeProduits{
    height: 100%;
    width: 80%;
}
div[class^="card"]{
    width: 35%;
    display: inline-block;
    margin: 20px 50px;
    background: rgba(223, 134, 46, 0.5);
}
.btnInfo{
    position: relative;
}
.btnInfo button{
    position: absolute;
    top: 50%;
    right: 0;
}
div[class^="card"]:hover{
    padding: 10px;
    margin: 10px 0px 10px 20px;
}
#listeProduits div img{
    box-shadow: 2px -3px 2px #c96805;
}
#listeProduits .description{
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(243, 242, 241, 1);
    padding: 5px;
    box-shadow: 2px -3px 2px #c96805;
}
@media (max-width: 700px){
    #listeProduits .card{
        width: 100%;
        display: block;
        margin: 20px auto;
    }
    .produits{
        margin: 0px;
    }
    #listeProduits .description{
        font-size: 18px;
        width: 100%;
        font-weight: 600;
    }
    div[class^="card"]{
        width: 80%;
        margin: 20px 50px;
    }
    .btnInfo img{
        width: 80%;
    }
}