#presentation-produits {
    padding: 60px 0;
    text-align: center;
}

#presentation-produits h2 {
    color: #126FA7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    letter-spacing: -0.06px;
    line-height: 37px;
    margin-bottom: 34px;
}

#presentation-produits p {
    color: #252525;
    font-size: 14px;
    letter-spacing: -0.03px;
    margin-bottom: 34px;
}

#presentation-produits .produit-container {
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    flex-wrap: wrap;
    align-items: center;
}

#presentation-produits .produit {
    position: relative;
    max-width: 250px;
    max-height: 150px;
    margin: 10px;
    width: 40%;
}

#presentation-produits img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

#presentation-produits .produit-nom {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.04px;
    line-height: 24px;
    z-index: 3;
}

#presentation-produits .overlay {
    position: absolute;
    bottom: 0;
    background: #00897b80;
    color: white;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    font-size: 20px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.04px;
    line-height: 24px;
}

#presentation-produits .overlay-gray {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.308);
    color: white;
    width: 100%;
    transition: .5s ease;
    opacity: 1;
    color: white;
    font-size: 20px;
    padding: 20px;
    height: 100%;
}

#presentation-produits .produit:hover .overlay {
    opacity: 1;
    cursor: pointer;
}

#presentation-produits .button-devis {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(0, 137, 123, 1) 0%, rgba(15, 112, 167, 0.9139005944174545) 100%);
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.02px;
    border: 2px solid #00897B;
    padding: 10px 25px;
    margin: 25px 0;
}

#presentation-produits .button-devis:hover {
    background: transparent;
    color: #00897B;
    border: 2px solid #00897B;
}

@media (min-width: 576px) {
    #presentation-produits .produit-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    #presentation-produits .produit {
        margin: 10px;
    }
}


/* // Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {}


/* // Large devices (desktops, 992px and up) */

@media (min-width: 992px) {
    #presentation-produits p {
        padding: 0 100px;
    }
}


/* // X-Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
    #presentation-produits .button-devis {
        margin: 50px 0;
    }
    #presentation-produits .produit {
        max-height: 200px;
    }
    #presentation-produits img {
        height: 200px;
    }
}


/* // XX-Large devices (larger desktops, 1400px and up) */

@media (min-width: 1400px) {}