.c-58, .magasins {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 100px;
}

.magasins_title {
    width: 100%;
    text-align: center;
    color: #D86018;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
}

.magasins_title a, .magasins_title a:visited {
    color: #155144;
}

.magasin_media {
    width: 150px;
    height: 150px;
}

.magasin_media img {
    height: 100%;
    object-fit: cover;
}

.magasin_photo {
    border-radius: 10px;
    height: 300px;
    margin-bottom: 20px;
    object-fit: cover;
}

.magasin {
    color: #155144;
    display: flex;
    flex-direction: column;
    padding: 20px;
    min-width: 350px;
    max-width: 25%;
    width: 100%;
    margin: 0 70px 40px 70px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    background-color: #E0C8B5;
}

.magasin:nth-of-type(even) {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.magasin_nom {
    font-family: 'gotham';
    font-size: 18px;
    line-height: 23px;
    margin-bottom: auto;
}

.magasin_infos {
    margin-top: 5px;
}

.magasin_infos p {
    font-size: 16px;
    line-height: 21px;
    margin: 5px;
}

.magasin_infos a, .magasin_infos a:visited {
    color: #155144;
    text-decoration: underline;
}

.magasin_infos a:hover {
    color: #D86018;
}

@media all and (max-width: 800px) {
    .c-58, .magasins {
        margin: 20px;
    }

    .magasin {
        max-width: 100%;
    }
}