/* TOUTES MISES EN FORME CONCERNANT LA SECTION DE PRESENTATION DES PROJETS ET REALISATIONS */

section#sectionReals
{
    padding-top: 30px;
}

div#ventreReals
{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}
.boiteProjet
{
    width: 45%;
    margin: 20px auto;

    border: #2B2E4A solid 2px;
    border-radius: 25px;
}
.boiteProjet > h2
{
    margin: 0;
    padding: 10px 20px;
    text-align: left;
    color: whitesmoke;
    background-color: #2B2E4A;

    border-radius: 20px 20px 0 0;
    border-bottom: #2B2E4A solid 2px;
}
.boiteProjet > p
{
    margin: 10px 20px;

}
.boiteProjet > div
{
    display: flex;
    margin: 10px 20px;
    align-items: center;

}
.boiteProjet img
{
    margin: 0 auto;
    max-width: 45%;
    height: fit-content;

    transition: transform .5s ease;

}
.boiteProjet img:hover
{
    cursor: zoom-in;
    transform: scale(2);
    transition: transform .5s ease;
    z-index: 7;

    /* ZOOM IN AMELIORABLE MAIS INUTILE ET NON PERTINENT D'Y PASSER DU TEMPS MAINTENANT */
    /* PISTE D'AMELIORATION --> RENDRE LE ZOOM PLUS GROS ET CENTRAL, MAIS PAR RAPPORT A LA PAGE */

}




/* POUR LA GESTION DU RESPONSIVE DANS CETTE SECTION */
@media (max-width: 1024px) {

    .boiteProjet
    {
        width: 100%;
        margin: 20px;
    }



}
