.media-links-container {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 170px;
}
@media screen and (max-width: 600px) {
    .media-links-container {
        margin-bottom: 70px;
    }
}
.media-links {
    width: 240px;
    height: fit-content;

    margin-top: 60px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 600px) {
    .media-links {
        width: 200px;

        margin-top: 40px;
    }
}
@media screen and (max-width: 600px) {
    .a-propos-main-content .media-links {
        width: calc(100% - 40px);

        margin-top: 40px;

        justify-content: center;
    }
    .a-propos-main-content .media-links a {
        margin: 0 10px;
    }
}
.media-links .media-link {
    height: 40px;
}
@media screen and (max-width: 600px) {
    .media-links .media-link {
        height: 35px;
    }
}
