.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.about p {
    justify-content: center;
    text-align: center;
}

.partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partners ul{
    list-style: none;
    padding: 0;
    border-radius: 300px;
    -webkit-box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.4);
}

.location {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.location-img {
    align-self: center;
    width: 30%;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.4);
}

.location-text {
    margin-left: 20px;
    text-decoration: none;
    color: black;
}

.links {
    width: 100%;
}

.links ul {
    padding: 0;
}

.links li {
    list-style: none;
    margin-bottom: 5px;
}

.links a {
    margin: 0;
    text-decoration: none;
    color: var(--color-2);
    transition: 0.1s;
}
.links a:hover {
    color: var(--color-1);
    font-size: 22px;
    transition: 0.1s;
}

.materiel ul li {
    margin-top: 15px;
}

.materiel ul li:first-child {
    margin-top: 0;
}

@media only screen and (max-width: 1140px) {
    .location {
        flex-direction: column;
    }

    .location-img {
        width: 100%;
        margin-bottom: 20px;
    }
  }