:root {
    --header-bg: #ffffff;
    --dark-bg: #403b43;
    --light-bg: #ffffff;
    --footer-bg: #403b43;
    --aesc-green: rgba(48, 134, 61, 1);
    --aesc-green-a50: rgba(48, 134, 61, 0.5);
    --aesc-green-a80: rgba(48, 134, 61, 0.8);
    --spacing: 10px;
}

@media (min-width: 992px) {
    :root {
        --font-size: 16px;
    }
}
@media (min-width: 1200px) {
    :root {
        --font-size: 16px;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: url('/assets/front/images/wallpaper_forest.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

body > header {
    padding: 0 !important;
    height: 80px;
    background: white;
    width: 100%;
}

body h3 {
    margin: 10px 0;
    font-weight: 100;
    font-size: 20px;
    text-decoration: underline;
}

.txt-header {
    padding: 10px 10px;
    font-size: 16px;
    background: #97D700;
    color: white;
    text-transform: uppercase;
    text-align: center;
}

#breadcrumb {
    list-style-type: none;
    display: inline-block;
    padding: 0;
    margin: 0 0 20px 0;
}
#breadcrumb li {
    list-style-type: none;
    display: inline-block;
    padding: 0 7px;
    position: relative;
}
#breadcrumb li a {
    font-size: 12px;
    color: var(--aesc-green);
    text-decoration: underline;
}
#breadcrumb li:first-child {
    padding: 0 7px 0 0;
}
#breadcrumb li:after {
    content: "›";
    position: absolute;
    right: -4px;
    color: var(--aesc-green);
}
#breadcrumb li:last-child:after {
    content: "";
}

#logo {
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 80px;
    max-width: 192px;
}

#logo img {
    height: 80px;
    aspect-ratio: 1454/705 !important;
    display: block;
    margin: 0 auto;
}

#page {
    min-height: calc(100vh - 200px);
    max-width: calc(100% - 20px);
    margin: 20px auto;
    background: #ffffff;
    box-shadow: 0 0 10px #000000;
    border-radius: 3px;
    padding: 20px;
}

body h1 {
    margin: 0 0 20px 0;
    font-weight: 100;
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

p, li {
    line-height: 1.5;
}

.page-illustration {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1200/1200;
    background: rgba(0, 0, 0, 0.2);
}

.enbref {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    max-width: 100%;
    flex-wrap: wrap;
}
.enbref .enbref-elt {
    flex: 1;
    max-width: 200px;
    min-width: 200px;
    margin: 0 50px 50px 50px;
    text-align: center;
    font-size: 13px;
}

footer {
    background-color: var(--footer-bg);
    min-height: 120px;
}

.footer-container {
    display: block;
    padding: 25px 70px;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 150px;
    display: block;
    margin: 0 auto;
}

.footer-links {
    text-align: center;
    margin-bottom: 40px;
}
.footer-link {
    color: #ffffff;
    font-size: 14px;
    padding: 0 22px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 20px 0;
    display: block;
}

.footer-link:last-child {
    border-right: none;
}

.footer-social {
    color: #ffffff;
    text-align: center;
}

.footer-social img {
    max-width: 100px;
    margin: 0 auto;
    display: block;
}

.alert {
    margin: 10px 0;
    padding: 20px;
    border-radius: 5px;
}
.alert.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert.alert-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

#gt4 {
    margin: 0 0 20px 0;
}

label {
    cursor: pointer;
}

textarea {
    height: 140px;
}


@media screen and (min-width: 992px) {

    body h1 {
        font-size: 38px;
    }

    #page {
        max-width: 850px;
    }
    #page > article {
        padding: 0 75px;
    }

    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1024px;
        width: 100%;
        margin: 0 auto;
    }

    .footer-container > div {
        flex: 1;
    }

    .footer-logo {
        max-width: 150px;
        margin-bottom: 0;
    }
    .footer-links {
        margin-bottom: 0;
    }
    .footer-link {
        border-right: 1px solid #ffffff;
        margin: 0;
        display: inline;
    }
    .footer-link:last-child {
        border-right: none;
    }
    .footer-social {
        max-width: 150px;
    }

}
