:root {
    --bg-head-color: rgb(58 125 68);
    --bg-footer-color: rgb(58 125 68);
    --bg-menu-section: rgb(154 198 84);
    --text-color: rgb(58 125 68);
    --bg-content-color: rgb(242 237 199);
    --text-menu-color: rgb(242 237 199);
    --parent-item-link-color: rgb(58 125 68);
    --stop-color: rgb(242 237 199);
    --border-menu: rgb(242 237 199);
    --text-bg-color: ;
    /* --color: #eac794; */
}

/* Styles globaux */
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    background: #fff;
}

.flex-centered{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTENT */
.mainContent{
    padding: 70px 0 40px 0;
    min-height: calc(100vh - 312px);
    /* display: flex;
    justify-content: center;
    align-items: center; */
    position: relative;
    background: var(--bg-content-color);
}


/* FOOTER */

footer{
    width: 100%;
    height: auto;
    background: var(--bg-footer-color);
    border-top: 1px solid var(--AAB734);
}

.footer-sections{
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-title{
    font-weight: bold;
    margin: 0 0 35px 0;
    color: var(--AAB734);
}

.footer-image{
    width: 100px;
    height: auto;
}

.footer-item {
    text-decoration: underline;
    margin: 7px 0;
    cursor: pointer;
    color: #aeaeae;
}

.footer-section {
    margin: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.footer-legal{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0 0 0;
}

.legal-links a{
    color: #aeaeae;
    margin: 0 10px;
}

.legal-links a:hover, .footer-item:hover{
    color: white;
}

@media (max-width: 770px) {
    .footer-sections {
        display: inherit!important;
    }

    .footer-section {
        margin: 50px!important;
        text-align: center;
    }

    .footer-legal {
        padding: 40px 20px!important;
    }

    .footer-title {
        margin: 0!important;
    }
    .footer-section{
        align-items: center!important;
    }
}


/* PALETTE:
F2EDC7
ACA851
DDC484
BA3865
271B34 */