.basPage {
    padding: 40px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.basPage .boutonSimple{
    display: block;
    width: 250px;
    font-size: 15px;
    text-align: center;
    margin: 0px auto;
    background-color: white;
    color: black;
}

.basPage .boutonSimple:hover {
    background-color: rgb(0, 153, 51);
    color: white;
}

.basPage-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 300px;
    margin-top: 1em;
    margin-bottom: 1em;
}
.basPage .column-left{
    -webkit-box-flex: 1.25;
    -ms-flex: 1.25;
    flex: 1.25;
}

.basPage-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.basPage-links li {
    /*margin-bottom: 2em;  Espacement entre chaque élément de la liste */
}

.basPage-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; /* Pour aligner l'icône et le texte sur la même ligne */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; /* Pour centrer verticalement l'icône et le texte */
    text-decoration: none; /* Retirer la décoration de texte par défaut */
    color: white; /* Couleur du texte*/
    font-size: 1.5em;
    -webkit-transition: color 0.3s, fill 0.3s;
    -o-transition: color 0.3s, fill 0.3s;
    transition: color 0.3s, fill 0.3s; /* Transition de couleur */
}

.basPage-links a:hover {
    color: rgb(237,247,241); /* Couleur du texte et de l'icône en blanc au survol */
}

.basPage-contact {
    font-size: 1em;
}

.basPage-contact div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1em;
    color : rgb(237,247,241);
    line-height: 1.4em;
}

.basPage-contact div  a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgb(237,247,241);
}

.basPage-contact div  a:hover{
    color: white;
}

.basPage-contact svg {
    width:24px;
    height:24px;
    margin-right: 0.5em;
}

@media (min-width: 850px) and (max-width: 1300px) {
    .basPage .column-left{
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
    .basPage .column-centre{
        padding-left: 10%;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 60%;
        flex: 0 1 60%;
    }
    .basPage .column-right{
        padding-left: 5%;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
        flex: 0 1 40%;
    }
}

@media (max-width: 850px) {
    .basPage {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .basPage-column {
        width: 350px;
    }
}

@media (max-width: 500px) {
    .basPage {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align:start;
        -ms-flex-align:start;
        align-items:flex-start;
    }
}

@media (max-width: 400px) {
    .basPage-column {
        width: 300px;
    }
    .basPage .nav-button{
        width: 300px;
        font-size: 14px;
    }
}