/*====================================  MAP ==================================*/
.accueil-map{
    width: 100%;
    height: 500px;
    background: linear-gradient(#FF2B19 , #FF9549);
    display: flex;
    justify-content: center;
}
.container-map-info{
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
}
.map{
    height: 450px;
    width: 500px;
}
.map-info{
    height: 200px;
    width: 500px;
}
.map-info > h2{
    font-family: 'Bebas Neue';
    color: white;
    font-size: 40px;
    margin: 40px 0px 20px 0px;
    letter-spacing: 2px;
}
.map-info > p{
    color: white;
    font-size: 20px;
}
.map-departement{
    height: 300px;
    width: 500px;
}
.map-departement > a{
    border: solid 2px white;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 18px;
    margin: 2px 5px;
    display: inline-block;
    transition: 0.2s;
}
.map-departement > a:hover{
    transform: scale(1.1);
}

@media screen and (max-width: 1100px) {
    .accueil-map{
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 10px 0px;
    }
    .container-map-info{
        align-items: center;
    }
    .map{
        order: 2;
        width: 350px;
        height: 350px;
    }
    .map-info{
        order: 1;
        height: auto;
        width: 100%;
    }
    .map-info > h2{
        font-family: 'Bebas Neue';
        color: white;
        font-size: 40px;
        margin: 0px;
        text-align: center;
        letter-spacing: 2px;
    }
    .map-info > p{
        color: white;
        font-size: 20px;
        text-align: center;
    }
    .map-departement{
        order: 3;
        height: auto;
        width: 100%;
        text-align: center;
        margin: 5px 0px;
    }
    .map-departement > a{
        border: solid 2px white;
        color: white;
        border-radius: 20px;
        text-decoration: none;
        padding: 5px 10px;
        font-size: 15px;
        margin: 2px 2px;
        display: inline-block;
        transition: 0.2s;
    }

}