body {
    margin: 0;
    padding: 0 2%;
    overflow: auto;
}

h2 {
    background-color: #000;
    width: fit-content;
    padding: 5px 15px;
    color: #e7c964;
    border-radius: 5px;
}

.partenaires {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    margin: 10px;
    padding: 10px;
}

.partenaire {
    position: relative;
    display: flex;
    margin: 10px;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 5px #000;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.partenaire h3 {
    margin-top: 2%;
}

.partenaire p {
    text-align: justify;
}

.partenaire img {
    height: auto;
    max-width: 100%;
    max-height: 200px;
    border-radius: 5px;
}

.partenaire::after {
    content: "";
    /* image */
    width: 20px;
    height: 20px;
    background-image: url("../images/flèche.svg");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.avant, .arriere {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 300px;
    width: -webkit-fill-available;
    backface-visibility: hidden;
}

.arriere {
    position: absolute;
    padding: 0 5%;
    transform: rotateY(180deg);
}

.active {
    transform: rotateY(180deg);
}

.reseaux {
    position: absolute;
    bottom: 5%;
    right: 5%;
    display: flex;
    justify-content: flex-end;
    width: 80%;
}

.reseaux a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e7c964;
    color: #fff;
}

a.local_contact {
    display: flex;
    align-items: space-around;
    text-decoration: none;
    width: fit-content;
    padding: 0 15px;
    border-radius: 15px;
    color: black;

    img {
        margin-left: 5px;
    }
}