body{
    margin: 0;
    padding: 0;
}

#content{
    width: 100%;
    min-height: 100px;
}

#subcontent{
    width: 80%;
    margin: auto;
}
/*en tete*/
.logo_menu{
    height: auto;
    width: 50px;
    display: inline;
}
/*partie2 de la page index de page*/
.index_partie2{
    
    margin-bottom: 50px;
}
.index_partie2 #subcontent{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.index_partie2 #subcontent section{
    display: flex;
    flex-direction: row;
    justify-content: center;
    
}

.index_partie2 #subcontent section article {
    font-family: Arial, Helvetica, sans-serif;
    width: 40%;
    padding: 20px;
}
.index_partie2 #subcontent section article:nth-of-type(1){
    border-right: 2px solid red;
}

.index_partie2 #subcontent section article:nth-of-type(1) p{
    text-align: right;
    font-size: 18px;
} 

.index_partie2 #subcontent section article:nth-of-type(1) p:nth-of-type(1){
    font-weight: bold;
    
}

.index_partie2 #subcontent section article:nth-of-type(2) ol li{
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 95%;
    font-style: italic;
}
/*Pied de page*/

#content .footer #subcontent {
    width: 90%;
    padding: 5%;
}
#subcontent footer{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

footer img{
    width: 20%;
    height: auto;
    /* max-height: 60px; */
}
footer img:last-of-type{
    max-height: 60px;
    width: auto;
}


@media only screen and (max-width:768px){
    .index_partie2 #subcontent section{
        flex-direction: column;
        justify-content: center;  
    }

    .index_partie2 #subcontent section article {
        font-family: Arial, Helvetica, sans-serif;
        width: 80%;
        padding: 20px;
    }
}

@media only screen and (max-width:600px){
  
}