.page{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.page .etiquette1{
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #FFFAFF;
    flex-grow: 1;
    margin: 10px 0;
}

.page .etiquette2{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    background: #FFFAFF;
    flex-grow: 1;
    margin: 10px 0;
}

.etiquette1 .photo, .etiquette2 .photo{
    height: 400px;
    width: 400px;
}

.etiquette1 .photo img, .etiquette2 .photo img{
    height: 400px;
    width: 400px;
}

.etiquette1 .info, .etiquette2 .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.etiquette1 .info .poste, .etiquette2 .info .poste{
    font-size: 40px;
    font-weight: 700;
    border-bottom: solid 1px #000;
    padding: 10px;
    line-height: 50px;
    text-align: center;
}

.etiquette1 .info .nom, .etiquette2 .info .nom{
    font-size: 25px;
    font-weight: 600;
    margin: 10px 0 5px 0;
    padding: 10px;
}


.etiquette1 .info .mail, .etiquette1 .info .tel,
.etiquette2 .info .mail, .etiquette2 .info .tel{
    font-size: 20px;
    font-weight: 400;
    margin: 5px 0;
    padding: 5px;
}

@media all and (max-width: 800px) {
    .page .etiquette1{
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #FFFAFF;
        flex-grow: 1;
        margin: 10px 0;
    }
    
    .page .etiquette2{
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #FFFAFF;
        flex-grow: 1;
        margin: 10px 0;
    }

    .etiquette1 .photo, .etiquette2 .photo{
        height: 100%;
        width: 100%;
    }
    
    .etiquette1 .photo img, .etiquette2 .photo img{
        height: 100%;
        width: 100%;
    }
}