.box1 {
    background-color: blueviolet;
    height: 3em;
}

.box2 {
    background-color: pink;
    height: 3em;
}

.box3 {
    background-color: green;
    height: 3em;
}

.box4 {
    background-color: yellow;
    height: 3em;
}

.box5 {
    background-color: blue;
    height: 3em;
}

.box6 {
    background-color: red;
    height: 3em;
}

.box7 {
    background-color: orange;
    height: 3em;
}
/*
.test {
    max-width: 70%;
    padding: 0 15%;
}
*/
.wrapper1 {
    display: grid;
    grid-template-columns: 1fr 2fr 3fr;
    grid-column-gap: 33.6px;
    grid-row-gap: 1em;
    justify-content: center;
    margin-top: 1em;
    padding: 0 15%;
}

.wrapper2 {
    display: grid;
    grid-template-columns: 48px 48% 48px 48%;
    grid-column-gap: 16px;
    grid-row-gap: 1em;
    justify-content: left;
    margin-top: 1em;
    max-width: 45%;
}

.wrapper3 {
    display: grid;
    grid-template-columns: 33.3%;
    grid-column-gap: 12.32px;
    grid-row-gap: 1em;
    justify-content: right;
    margin-top: 1em;
}

.wrapper4 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 33.6px;
    grid-row-gap: 1em;
    justify-content: center;
    margin-top: 1em;
    padding: 0 10%;
}

.wrapper5 {
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-column-gap: 144px;
    grid-row-gap: 1em;
    justify-content: left;
    margin-top: 1em;
    margin-left: 144px;
    max-width: 60%;
}

.wrapper6 {
    display: grid;
    grid-template-columns: repeat(2, 60px) 1fr 1fr 2fr;
    grid-column-gap: 33.6px;
    grid-row-gap: 1em;
    margin-top: 1em;
}

.wrapper7 {
    display: grid;
    grid-template-columns: 40fr 10fr 10fr 9fr 1fr; /*50% 12.5% 12.5% 11.25% 1.25%*/
    grid-column-gap: 81px; /*corps du texte: 36px interlignage: 225%*/
    grid-row-gap: 1em;
    justify-content: center;
    margin-top: 1em;
}
