* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Marianne";
    src: url("/assets/fonts/Marianne-Regular.otf");
    font-display: swap;
}

@font-face {
    font-family: "Marianne";
    src: url("/assets/fonts/Marianne-Bold.otf");
    font-weight: bold;
    font-display: swap;
}

:root {
    --primary-color: #000091;
    --primary-reduced: #dbdbef;
    --secondary-color: #0A34ED;
    --color-blue-bold: #1B3194;
    --color-blue: #0a76f6;
    --orange: #FB9B4D;
    --pink: #F582C1;
    --green: #07C496;
}

body {
    font-family: "Marianne", sans-serif;
    font-size: 10px;
    max-width: 1400px;
    margin: auto;
}

.mobile {
    display: none;
}

.logos {
    width: 25%;
    margin-left: 20px;
    display: flex;
    justify-content: start;
    align-items: end;

    &:hover {
        background-color: #e8e6e6;
    }

    .logo1 {
        width: 30%;
    }

    .logo2 {
        width: 65%;
    }
}

.alert {
    display: block;
    padding: 15px 10px;

    width: 100%;
    font-size: 0.9rem;
}

.alert-success {
    background-color: #5aeec994;
    color: #045340;
}

.alert-error {
    background-color: #ee5a5a94;
    color: #530404;
}

.loader {
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary-color);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

a:active {
    color: var(--primary-color);
}

header {
    height: 200px;

    .sup-header {
        height: 120px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #33333330;
        box-shadow: 0 4px 4px rgba(51, 51, 51, 0.032);


        .sup-nav {

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 70px;
            gap: 20px;

            .up {
                display: flex;
                align-items: center;
                font-size: 0.85rem;
                color: var(--primary-color);

                ul {
                    list-style: none;
                    display: flex;
                    gap: 20px;

                    li a {
                        text-decoration: none;
                        font-weight: 600;
                        padding: 10px;

                        &:hover {
                            background-color: #d0d0d014;
                        }
                    }

                }

                .lang {
                    background-color: #fff;
                    position: relative;
                    padding: 5px 15px;
                    margin: 0 20px;
                    border: 1px solid #33333330;
                    font-size: 0.8rem;
                    gap: 5px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;

                    &:hover {
                        background-color: #e8e6e6;
                    }


                    img {
                        width: 1rem;
                    }

                    .fa {
                        font-size: 0.5rem;
                    }

                    .lang-menu {
                        background-color: #fff;
                        box-shadow: 0px 4px 6px rgba(51, 51, 51, 0.194);
                        width: 160px;
                        height: 100px;
                        display: block;
                        position: absolute;
                        top: 30px;

                        li {
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            align-items: center;
                            margin: 0;
                            height: 50px;
                            border-bottom: 1px solid #3333330e;

                            &:hover {
                                background-color: #d8d8d8;
                                border: none;
                            }

                            a {
                                margin: 0;
                                background-color: transparent;
                                color: #333;
                            }
                        }
                    }
                }


            }

            .down {
                width: 100%;
                margin-right: 40px;
                display: flex;
                justify-content: end;

                .connect-button {
                    margin-left: 20px;
                }

                button {
                    background-color: var(--primary-color);
                    padding: 5px 15px;
                    color: #fff;
                    border: none;
                    outline: none;
                    display: flex;
                    align-items: center;
                    gap: 5px;
                    font-family: inherit;
                    font-size: 1rem;
                    cursor: pointer;

                    &:hover {
                        background-color: var(--secondary-color);
                    }

                    span {
                        margin-bottom: 3px;
                    }

                    img {
                        width: 1rem;
                    }
                }

                form {
                    width: 50%;
                    position: relative;
                    display: flex;
                    gap: 0;
                    height: 2.5rem;

                    input {
                        width: 100%;
                        border: none;
                        border-top-left-radius: 4px;
                        background-color: #e7e7e7db;
                        outline: none;
                        padding-left: 10px;
                        margin: none;
                        border-bottom: 2px solid var(--primary-color);
                        font-size: 1rem;

                        &::placeholder {
                            font-style: italic;
                        }

                        &:focus {
                            outline: 2px solid var(--secondary-color);
                            outline-offset: 1.8px;
                        }
                    }

                    button {
                        margin: none;
                        border-top-right-radius: 4px;
                        font-size: 1rem;


                    }
                }


            }
        }

        .sup-nav-mobile {
            display: none;
        }
    }

    .nav {
        border-bottom: 1px solid #33333330;
        box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.032);

        .fa-chevron-down {
            font-size: 0.7rem;
        }

        ul {
            width: 100%;
            height: 80px;
            margin-left: 20px;
            list-style: none;
            display: flex;
            justify-content: start;
            align-items: stretch;
            gap: 20px;

            li {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 0 25px;
                cursor: pointer;

                &:hover {
                    box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.167);
                    background-color: #e8e6e6;
                }

                .demarche-menu {
                    box-shadow: 0px 4px 8px rgba(51, 51, 51, 0.265);
                    width: 350px;
                    height: 150px;
                    position: absolute;
                    top: 80px;
                    left: -29px;
                    background-color: #fff;
                    display: block;
                    margin-left: 28px;

                    li {
                        height: 50px;
                        display: flex;
                        justify-content: start;
                        border-bottom: 1px solid #3333330e;
                        padding: 0 20px;

                        a {
                            text-shadow: none;
                        }

                        &:hover {
                            border: none;
                            box-shadow: 0px 0px 0px rgba(51, 51, 51, 0.265);
                        }
                    }
                }

                .actu-menu {
                    height: 100px;
                }

                .agent-menu {
                    height: 200px;
                }

                a {
                    text-decoration: none;
                    color: #333;
                    font-size: 0.9rem;
                    text-shadow: 8px 0px 8px rgba(51, 51, 51, 0.132);
                }

            }

            .active {
                border-bottom: 2px solid var(--primary-color);
            }

        }
    }
}

main {
    display: flex;
    flex-direction: column;

    a {
        text-decoration: none;
    }

    .hero {
        width: 100%;
        height: 400px;
        margin-bottom: 350px;

        .up {
            width: 80%;
            height: 90%;
            margin: 10px auto;
            margin-bottom: 0;
            display: flex;
            justify-content: space-between;

            .text {
                width: 50%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: start;

                h1 {
                    font-size: 2.5rem;
                    margin-bottom: 40px;
                }

                p {
                    font-size: 2rem;
                    font-weight: bold;
                }
            }

            .img {
                width: 40%;
                height: 100%;
                background-image: url('../assets/img/image-accueil2.png');
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
            }
        }

        .down {
            width: 80%;
            min-height: 200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;

            .category {
                position: relative;
                width: 32.5%;
                height: 160px;
                cursor: pointer;
                z-index: 10;

                .up {
                    font-size: 1rem;
                    font-weight: bold;
                    color: #fff;
                    display: flex;
                    flex-direction: column;
                    justify-content: start;
                    align-items: start;
                    text-align: center;

                    i {

                        font-size: 1.7rem;
                        margin: 10px 0;
                    }
                }

                .down {
                    width: 60px;
                    min-height: 50px;
                    position: absolute;
                    bottom: 0;
                    right: 0;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 1rem;
                    color: #333;
                }
            }

            .clearest {
                background-color: var(--secondary-color);

                .down {

                    background-color: var(--green);
                }
            }

            .clearer {
                background-color: var(--primary-color);

                .down {

                    background-color: var(--pink);
                }


            }

            .clear {
                background-color: var(--color-blue-bold);

                .down {

                    background-color: var(--orange);
                }
            }

        }
    }

    .about {
        position: relative;
        width: 90%;
        height: 300px;
        background-color: #EFF4FD;
        margin-bottom: 180px;

        h2 {
            position: absolute;
            top: 37.5px;
            font-size: 2.5rem;
            margin-left: 10%;
        }

        .description {
            position: absolute;
            top: 110px;
            right: 0;
            width: 90%;
            height: 300px;
            display: flex;
            justify-content: end;

            .img {
                position: relative;
                width: 80%;
                height: 100%;
                background-image: url('../assets/img/image-accueil3.png');
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
            }

            .text {
                position: relative;
                background-color: #fff;
                width: 60%;
                height: 70%;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 1rem;
                color: #333;
                padding: 20px;
                margin-left: -200px;
                z-index: 10;
                border: 2px solid #EFF4FD;

                .sup-menu {
                    list-style: none;
                    position: absolute;
                    top: 155px;

                    li {
                        background-color: var(--primary-color);
                        padding: 10px 150px;
                        margin: 5px 0;

                        a {
                            color: #fff;
                            text-decoration: none;
                        }
                    }
                }
            }

        }
    }

    .missions {
        position: relative;
        align-self: flex-end;
        width: 90%;
        height: 300px;
        background-color: #F1F1F1;

        h2 {
            position: absolute;
            top: 37.5px;
            font-size: 2.5rem;
            margin-left: 5%;
        }

        .description {
            position: absolute;
            top: 112.5px;
            right: 0;

            .description-cp {
                position: relative;
                width: 100%;
                height: 300px;
                display: flex;
                justify-content: center;
                align-items: end;

                .img {
                    position: relative;
                    width: 50%;
                    height: 100%;
                    background-image: url('../assets/img/les-missions-de-l-ants.jpg');
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                }

                .text {
                    background-color: #fff;
                    width: 50%;
                    height: 70%;
                    margin-right: -10%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 1rem;
                    color: #333;
                    padding: 50px;
                    z-index: 10;
                    border: 2px solid #EFF4FD;
                }


                .down-menu {
                    position: absolute;
                    top: 300px;
                    left: 0;
                    width: 90%;
                    display: flex;
                    justify-content: center;
                    align-items: start;
                    flex-wrap: wrap;
                    gap: 15px;
                    margin: 0 5%;
                    margin-bottom: 180px;
                    z-index: 10;

                    .card {
                        position: relative;
                        width: 32.3%;
                        height: 150px;
                        cursor: pointer;
                        background-color: var(--color-blue-bold);
                        padding: 10px;
                        margin: 0;
                        color: #fff;


                        .up {
                            font-size: 1.2rem;
                            font-weight: bold;
                            display: flex;
                            flex-direction: column;
                            justify-content: start;
                            align-items: center;

                            i {
                                font-size: 1.7rem;
                                margin: 10px 0;
                            }
                        }

                        .down {
                            width: 60px;
                            min-height: 50px;
                            position: absolute;
                            bottom: 0;
                            right: 0;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            font-size: 1rem;
                        }
                    }


                }
            }

        }

    }

    .results {
        height: 700px;
        margin-top: 450px;
        display: flex;
        flex-direction: column;
        gap: 10px;

        .summary {
            background-color: #EFF4FD;
            width: 80%;
            height: 400px;
            margin: 20px auto;
            display: flex;
            justify-content: space-between;

            .sum {
                width: 25%;
                margin: 60px 0;
                padding: 20px;
                border-right: 2px solid var(--primary-reduced);

                h3 {
                    font-size: 1.9rem;
                    display: flex;
                    flex-direction: column;
                    align-items: start;
                    gap: 10px;
                    margin-bottom: 20px;
                }

                p {
                    font-size: 1rem;
                    font-weight: bold;
                }
            }

            .last {
                display: flex;
                flex-direction: column;
                justify-content: center;
                border: none;
            }
        }

        h2 {
            font-size: 2.5rem;
            margin-left: 10%;
        }

        button {
            border: none;
            outline: none;
            background-color: var(--primary-color);
            color: #fff;
            padding: 10px 20px;
            font-family: inherit;
            font-size: 1rem;
            font-weight: bold;
            text-align: center;
            align-self: center;
            cursor: pointer;

            &:hover {
                background-color: var(--secondary-color);
            }
        }
    }

    .demarche {
        width: 80%;
        height: 600px;
        margin: 10px auto;
        display: flex;
        margin-bottom: 220px;

        .first {
            width: 67%;

            h2 {
                margin: 20px;
                font-size: 2.5rem;
            }

            .desc {
                font-size: 1rem;
                margin-left: 20px;
            }

            .button {
                width: 300px;
                border: none;
                outline: none;
                padding: 10px 20px;
                margin-top: 20px;
                color: #333;
                text-decoration: none;
                font-family: inherit;
                font-size: 1rem;
                display: flex;
                align-items: end;
                gap: 5px;
            }

            .img {
                display: flex;
                height: 300px;

                .img {
                    margin-left: 20px;
                    margin-top: 20px;
                    width: 97%;
                    height: 100%;
                    background-image: url('../assets/img/95a2af8d-a9a0-49d6-af59-03b9664c7152.jpg');
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                }

                .second {
                    width: 3%;
                    height: 200px;
                    margin-top: 20px;
                    display: flex;
                    align-items: end;

                    .brown {
                        width: 100%;
                        height: 70px;
                    }
                }

            }

        }


        .last {
            list-style: none;
            width: 30%;

            li {
                background-color: var(--primary-color);
                height: 100px;
                margin-top: 8px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 20px;

                a {
                    font-size: 0.9rem;
                    text-decoration: none;
                    color: #fff;
                    padding: 0 20px;
                }

                i {
                    font-size: 1.2rem;
                    color: #fff;
                }
            }

            .bg {


                a {
                    color: #333;
                }

                i {
                    font-size: 1.2rem;
                    color: #333;
                }
            }

        }
    }

    .demarche-two {
        width: 80%;
        height: 600px;
        margin: 30px auto;
        display: flex;
        margin-bottom: 220px;

        .first {
            width: 67%;

            h2 {
                margin: 20px;
                font-size: 2.5rem;
            }

            .desc {
                font-size: 1rem;
                margin-left: 20px;
            }

            .button {
                width: 300px;
                border: none;
                outline: none;
                padding: 10px 20px;
                margin-top: 20px;
                color: #333;
                text-decoration: none;
                font-family: inherit;
                font-size: 1rem;
                display: flex;
                align-items: end;
                gap: 5px;
            }

            .img {
                display: flex;
                height: 300px;

                .img {
                    margin-left: 20px;
                    margin-top: 20px;
                    width: 97%;
                    height: 100%;
                    background-image: url('../assets/img/95a2af8d-a9a0-49d6-af59-03b9664c7152.jpg');
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                }

                .second {
                    width: 3%;
                    height: 200px;
                    margin-top: 20px;
                    display: flex;
                    align-items: end;

                    .brown {
                        width: 100%;
                        height: 70px;
                    }
                }

            }

        }


        .last {
            list-style: none;
            width: 30%;

            li {
                background-color: #fff;
                height: 100px;
                margin-top: 8px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 20px;
                border: 1px solid var(--primary-reduced);

                a {
                    font-size: 0.9rem;
                    text-decoration: none;
                    color: #333;
                    padding: 0 20px;
                }

                i {
                    font-size: 1.2rem;
                    color: #333;
                }
            }

            div {
                background-color: #fff;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 20px;
                border-top: 1px solid var(--primary-reduced);
                font-size: 0.9rem;
                color: var(--primary-color);
                cursor: pointer;
            }

            .bg {
                height: 100px;
                border: none;
                color: var(--primary-color);
                cursor: pointer;
                font-size: 1rem;

                a {
                    text-decoration: none;
                }
            }

            .bg {


                a {
                    color: #333;
                }

                i {
                    font-size: 1.2rem;
                    color: #333;
                }
            }

        }
    }

    .validation {
        height: 500px;
        background-color: #F1F1F1;
        margin-bottom: 40px;

        .box {
            width: 40%;
            min-height: 300px;
            background-color: #fff;
            margin: 100px auto;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: center;
            gap: 10px;

            h3 {
                font-size: 1.5rem;
            }

            form {
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                margin-top: 50px;

                label {
                    font-size: 0.8rem;
                }

                input {
                    width: 100%;
                    margin: 10px auto;
                    border: none;
                    border-top-right-radius: 4px;
                    border-top-Left-radius: 4px;
                    background-color: #e7e7e7db;
                    outline: none;
                    padding: 10px;
                    margin: none;
                    border-bottom: 2px solid #333;
                    font-size: 1rem;

                    &:focus {
                        border: none;
                        border-radius: 4px;
                        outline: 2px solid #333;
                    }
                }

                button {
                    background-color: var(--primary-color);
                    padding: 10px;
                    color: #fff;
                    border: none;
                    outline: none;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-family: inherit;
                    font-size: 1rem;
                    cursor: pointer;

                    &:hover {
                        background-color: var(--secondary-color);
                    }
                }
            }
        }
    }
}

.demarche.pink {
    height: 800px;

    .first .desc .button {
        background-color: var(--pink);
    }

    .first .img .second {
        background-color: pink;

        .brown {
            background-color: var(--pink);
        }
    }

    .last .bg {
        background-color: var(--pink);
    }
}

.demarche.orange {
    height: 1000px;

    .first .desc .button {
        background-color: var(--orange);
    }

    .first .img .img {
        background-image: url('../assets/img/d274b149-47de-4016-accf-7c412e87d451.jpg');
    }

    .first .img .second {
        background-color: #FDD1AE;

        .brown {
            background-color: var(--orange);
        }
    }

    .last .bg {
        background-color: var(--orange) !important;
    }
}

.demarche-two.green {
    height: 800px;

    .first .desc .button {
        background-color: var(--green);
    }

    .first .img .img {
        background-image: url('../assets/img/30fcec10-cd36-4427-a02b-eb7c8e49f0f7.jpg');
    }

    .first .img .second {
        background-color: #CEF8EA;

        .brown {
            background-color: var(--green);
        }
    }

    .last .bg {
        background-color: var(--green) !important;
    }
}

.demarche-two.pink {
    height: 600px;

    .first .desc .button {
        background-color: var(--pink);
    }

    .first .img .img {
        background-image: url('../assets/img/30fcec10-cd36-4427-a02b-eb7c8e49f0f7.jpg');
    }

    .first .img .second {
        background-color: pink;

        .brown {
            background-color: var(--pink);
        }
    }

    .last .bg {
        background-color: var(--pink);
    }
}

.demarche-two.orange {
    height: 800px;

    .first .desc .button {
        background-color: var(--orange);
    }

    .first .img .img {
        background-image: url('../assets/img/30fcec10-cd36-4427-a02b-eb7c8e49f0f7.jpg');
    }

    .first .img .second {
        background-color: #FDD1AE;

        .brown {
            background-color: var(--orange);
        }
    }

    .last .bg {
        background-color: var(--orange);
    }
}

footer {
    height: 800px;

    .sup-footer {
        background-color: #F1F1F1;
        color: #333;
        padding: 30px;
        height: 15%;
        border-bottom: 2px solid var(--primary-color);
        font-weight: bold;
        display: flex;
        justify-content: space-between;

        h3 {
            font-size: 1.1rem;
        }

        ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 15px;

            li a {
                color: var(--primary-color);
                text-decoration: none;
                font-size: 1.5rem;
            }
        }
    }

    .sup-mid-footer {
        width: 100%;
        height: 35%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--primary-reduced);
        margin: 0 auto;

        .logos {
            width: 35%;
        }

        .links {
            display: block;
            width: 50%;
            height: 100%;
            font-size: 1rem;
            list-style: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 40px;

            .first {
                list-style: none;
                display: flex;
                flex-direction: column;

                a {
                    color: #333;
                }

                i {
                    font-size: 0.7rem;
                    margin-left: 5px;
                }
            }

            .last {

                list-style: none;
                display: flex;
                gap: 10px;

                a {
                    text-decoration: none;
                    color: #333;
                    font-weight: bold;

                    &:hover {
                        text-decoration: underline;
                    }
                }

                i {
                    font-size: 0.8rem;
                    margin-left: 5px;
                }
            }
        }
    }

    .sub-mid-footer {
        padding: 20px;
        height: 25%;
        border-bottom: 1px solid var(--primary-reduced);

        p {
            font-size: 1rem;
            margin: 10px 20px;
        }

        .partner {
            display: flex;
            justify-content: start;
        }
    }

    .sub-footer {
        height: 25%;
        padding: 25px 5px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-size: 0.8rem;
        color: #333333be;

        ul {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;

            li a {
                text-decoration: none;
                color: #333333be;
                font-size: 0.75rem;
                border-right: 1px solid var(--primary-reduced);
                padding: 2px 10px;

            }
        }

        p {
            margin-left: 10px;
        }

    }
}


/* RESPONSIVENESS */

/* <= 1000px */
@media (max-width:1000px) {

    .no-mobile {
        display: none;
    }

    .alert {
        text-align: center;
    }

    .logos {
        width: 30%;
    }

    header {
        height: 100px;

        .sup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 15px;
            border-bottom: 1px solid #33333330;
            box-shadow: 0 4px 4px rgba(51, 51, 51, 0.032);

            .sup-nav-mobile {
                display: flex;
                justify-content: space-evenly;
                align-items: center;
                width: 100px;
                height: 80px;

                i {
                    font-size: 1.5rem;
                    background-color: #0A34ED;
                    border: none;
                    outline: none;
                    background-color: transparent;
                    margin-right: 20px;
                    color: var(--primary-color);
                }

                .search {
                    border: 1px solid var(--primary-reduced);
                    padding: 10px;
                }
            }

            .sup-nav {
                display: none;
            }


        }

        .nav {
            display: none;
        }
    }

    main {
        .hero {
            margin-bottom: 400px;

            .up {
                width: 100%;
                display: flex;
                flex-direction: column;

                .text {
                    width: 100%;
                    background-color: #F1F1F1;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: start;
                    padding: 0 20px;

                    h1 {
                        font-size: 2rem;
                        margin-bottom: 20px;
                    }

                    p {
                        font-size: 1.5rem;
                        font-weight: bold;
                    }
                }

                .img {
                    display: none;
                }
            }

            .down {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: stretch;
                gap: 5px;

                .category {
                    width: 100%;
                    height: 80px;
                    cursor: pointer;

                    .up {
                        font-size: 1rem;
                        font-weight: 500;
                        color: #fff;
                        padding: 20px;
                        display: flex;
                        flex-direction: column;
                        justify-content: start;
                        align-items: start;
                        text-align: center;

                        i {
                            display: none;
                        }

                        img {
                            display: none;
                        }
                    }

                    .down {
                        width: 80px;
                        min-height: 100%;
                        position: absolute;
                        bottom: 0;
                        right: 0;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 1rem;
                        color: #333;
                    }
                }

            }
        }

        .about {
            width: 100%;
            min-height: 900px;
            margin-bottom: 0;

            h2 {
                position: static;
                margin-top: 20px;
                margin-left: 2%;
            }

            .description {
                position: static;
                width: 100%;
                min-height: 600px;
                margin-top: 50px;
                display: flex;
                flex-direction: column;
                justify-content: start;
                align-items: center;
                gap: 0;

                .img {
                    width: 100%;
                    min-height: 500px;
                }

                .text {
                    background-color: transparent;
                    border: none;
                    width: 100%;
                    height: 300px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    gap: 10px;
                    font-size: 1rem;
                    color: #333;
                    margin: 0;

                    .sup-menu {
                        width: 100%;
                        list-style: none;
                        position: static;
                        text-align: center;


                        li {
                            background-color: var(--primary-color);
                            width: 100%;
                            height: 50px;
                            margin: 5px 0;

                            a {
                                color: #fff;
                                text-decoration: none;
                            }
                        }
                    }
                }

            }
        }

        .missions {
            position: static;
            background-color: #F1F1F1;
            width: 100%;
            min-height: 750px;

            h2 {
                position: static;
                font-size: 2.5rem;
                margin-left: 2%;
                margin-top: 20px;
            }

            .description {
                position: static;

                .description-cp {
                    width: 100%;
                    min-height: 600px;
                    margin-top: 320px;
                    flex-direction: column;
                    justify-content: center;
                    align-items: end;

                    .img.mobile {
                        display: flex;
                        position: static;
                        width: 100%;
                        min-height: 500px;
                    }

                    .text {
                        background-color: transparent;
                        width: 100%;
                        height: 100px;
                        margin-right: 0;
                    }


                    .down-menu {
                        position: static;
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: end;
                        gap: 0;
                        margin: 20px auto;
                        margin-bottom: 220px;
                        z-index: 10;
                        gap: 2px;

                        .card {
                            position: relative;
                            width: 100%;
                            height: 60px;
                            cursor: pointer;
                            background-color: #fff;
                            padding: 10px;
                            margin: 0;
                            color: #333;


                            .up {
                                font-size: 1.1rem;
                                font-weight: bold;
                                display: flex;
                                flex-direction: column;
                                justify-content: start;
                                align-items: start;

                                i {
                                    font-size: 1.7rem;
                                    margin: 10px 0;
                                }
                            }

                            .down {
                                width: 60px;
                                min-height: 50px;
                                position: absolute;
                                bottom: 0;
                                right: 0;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                font-size: 1rem;
                            }
                        }

                        .clearest {
                            background-color: var(--secondary-color);

                            .down {

                                background-color: var(--green);
                            }
                        }

                        .clearer {
                            background-color: var(--primary-color);

                            .down {

                                background-color: var(--pink);
                            }


                        }

                        .clear {
                            background-color: var(--color-blue-bold);

                            .down {

                                background-color: var(--orange);
                            }
                        }
                    }
                }

            }

        }

        .results {
            min-height: 1200px;
            margin-top: 0;
            padding: 350px 0;
            background-color: #045340;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background-color: #F1F1F1;

            .summary {
                background-color: #EFF4FD;
                width: 100%;
                min-height: 600px;
                margin: 20px auto;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;

                .sum {
                    width: 50%;
                    margin: 60px 0;
                    padding: 20px;
                    border-right: 2px solid var(--primary-reduced);

                    h3 {
                        font-size: 1.9rem;
                        display: flex;
                        flex-direction: column;
                        align-items: start;
                        gap: 10px;
                        margin-bottom: 20px;
                    }

                    p {
                        font-size: 1rem;
                        font-weight: bold;
                    }
                }

                .last, .last-mob {
                    border: none;
                }
            }

            h2 {
                margin-left: 2%;
            }

        }

        .validation {
            height: 500px;
            background-color: #F1F1F1;
            margin-bottom: 20px;

            .box {
                width: 90%;
                min-height: 300px;
                background-color: #fff;
                margin: 100px auto;
                padding: 40px;
                display: flex;
                flex-direction: column;
                justify-content: start;
                align-items: center;
                gap: 10px;
                text-align: center;

                h3 {
                    font-size: 1.5rem;
                }

                form {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-around;
                    margin-top: 50px;

                    label {
                        font-size: 0.8rem;
                    }

                    input {
                        width: 100%;
                        margin: 10px auto;
                        border: none;
                        border-top-right-radius: 4px;
                        border-top-Left-radius: 4px;
                        background-color: #e7e7e7db;
                        outline: none;
                        padding: 10px;
                        margin: none;
                        border-bottom: 2px solid #333;
                        font-size: 1rem;

                        &:focus {
                            border: none;
                            border-radius: 4px;
                            outline: 2px solid #333;
                        }
                    }

                    button {
                        background-color: var(--primary-color);
                        padding: 10px;
                        color: #fff;
                        border: none;
                        outline: none;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-family: inherit;
                        font-size: 1rem;
                        cursor: pointer;

                        &:hover {
                            background-color: var(--secondary-color);
                        }
                    }
                }
            }
        }

        .demarche {
            width: 100%;
            height: 600px;
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
            background-color: #F1F1F1;

            .first {

                h2 {
                    margin: 20px 30px;
                    font-size: 1.7rem;
                }

                .desc {
                    display: none;
                }

                .button {
                    display: none;
                }

                .img {
                    display: none;

                }
            }


            .last {
                list-style: none;
                width: 100%;
                margin: 0 auto;
                padding: 0 20px;

                li {
                    background-color: #fff;
                    height: 60px;
                    margin-top: 8px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    padding: 0 20px;
                    border: 1px solid var(--primary-reduced);
                    ;

                    a {
                        font-size: 0.9rem;
                        text-decoration: none;
                        color: #333;
                        padding: 0 20px;
                    }

                    i {
                        font-size: 1.2rem;
                        color: #fff;
                    }
                }

                .bg {


                    a {
                        color: #333;
                    }

                    i {
                        font-size: 1.2rem;
                        color: #333;
                    }
                }

            }
        }

        .demarche-two {
            width: 100%;
            height: 200px;
            margin: 30px auto;
            display: flex;
            flex-direction: column;
            margin-bottom: 220px;

            .first {
                width: 67%;


                h2 {
                    margin: 20px 30px;
                    font-size: 1.7rem;
                }

                .desc {
                    display: none;
                }

                .button {
                    display: none;
                }

                .img {
                    display: none;

                }

            }


            .last {
                list-style: none;
                width: 100%;
                padding: 0 20px;

                li {
                    background-color: #fff;
                    height: 60px;
                    margin-top: 8px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    padding: 0 20px;
                    border: 1px solid var(--primary-reduced);

                    a {
                        font-size: 0.9rem;
                        text-decoration: none;
                        color: #333;
                        padding: 0 20px;
                    }

                    i {
                        font-size: 1.2rem;
                        color: #333;
                    }
                }

                div {
                    background-color: #fff;
                    height: 40px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    padding: 0 20px;
                    border-top: 1px solid var(--primary-reduced);
                    font-size: 0.9rem;
                    color: var(--primary-color);
                    cursor: pointer;
                }

                .bg {
                    height: 100px;
                    border: none;
                    color: var(--primary-color);
                    cursor: pointer;
                    font-size: 1rem;

                    a {
                        text-decoration: none;
                    }
                }

                .bg {


                    a {
                        color: #333;
                    }

                    i {
                        font-size: 1.2rem;
                        color: #333;
                    }
                }

            }
        }


    }

    footer {

        .sup-footer {
            height: 20%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 10px;
            padding-left: 20px;

            ul {
                list-style: none;
                display: flex;
                align-items: center;
                gap: 20px;

                li a {
                    color: var(--primary-color);
                    text-decoration: none;
                    font-size: 1.5rem;
                }
            }
        }

        .sup-mid-footer {
            width: 100%;
            height: 49%;
            display: flex;
            flex-direction: column;
            align-items: start;
            margin-top: 20px;
            margin-left: 20px;
            padding-bottom: 5%;

            .logos {
                width: 45%;
                margin: 0;
                margin-left: -15px;
            }

            .links {
                display: block;
                width: 80%;
                height: 100%;
                font-size: 1rem;
                list-style: none;
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 40px;

                .first {
                    list-style: none;
                    display: flex;
                    flex-direction: column;

                    a {
                        color: #333;
                    }

                    i {
                        font-size: 0.7rem;
                        margin-left: 5px;
                    }
                }

                .last {

                    list-style: none;
                    display: flex;
                    flex-wrap: wrap;
                    gap: 10px;

                    a {
                        text-decoration: none;
                        color: #333;
                        font-weight: bold;

                        &:hover {
                            text-decoration: underline;
                        }
                    }

                    i {
                        font-size: 0.8rem;
                        margin-left: 5px;
                    }
                }
            }
        }

        .sub-mid-footer {
            padding: 20px;
            height: 29%;

            border-bottom: 1px solid var(--primary-reduced);

            p {
                font-size: 1rem;
                margin: 10px 0;
            }

            .partner {
                display: flex;
                flex-wrap: wrap;
                justify-content: start;
            }
        }


    }
}

/* <= 700px */

@media (max-width:700px) {

    .no-mobile {
        display: none;
    }

    .logos {
        width: 45%;
    }

    header {
        height: 100px;

        .sup-header {
            display: flex;
            justify-content: space-between;
            margin: 15px;
            align-items: center;
            border-bottom: 1px solid #33333330;
            box-shadow: 0 4px 4px rgba(51, 51, 51, 0.032);

            .sup-nav-mobile {
                display: flex;
                justify-content: space-evenly;
                align-items: center;
                width: 100px;
                height: 80px;

                i {
                    font-size: 1.5rem;
                    background-color: #0A34ED;
                    border: none;
                    outline: none;
                    background-color: transparent;
                    margin-right: 20px;
                    color: var(--primary-color);
                }

                .search {
                    border: 1px solid var(--primary-reduced);
                    padding: 10px;
                }
            }

            .sup-nav {
                display: none;
            }


        }

        .nav {
            display: none;
        }
    }

    main {
        .hero {
            margin-bottom: 330px;
            height: 550px;

            .up {
                width: 100%;
                display: flex;
                flex-direction: column;

                .text {
                    width: 100%;
                    background-color: #F1F1F1;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: start;
                    padding: 0 20px;

                    h1 {
                        font-size: 2.5rem;
                        margin-bottom: 20px;
                    }

                    p {
                        font-size: 2rem;
                        font-weight: bold;
                    }
                }

                .img {
                    display: none;
                }
            }

            .down {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: stretch;
                gap: 5px;

                .category {
                    width: 100%;
                    height: 80px;
                    cursor: pointer;

                    .up {
                        font-size: 1rem;
                        font-weight: 500;
                        color: #fff;
                        padding: 20px;
                        display: flex;
                        flex-direction: column;
                        justify-content: start;
                        align-items: start;
                        text-align: center;

                        i {
                            display: none;
                        }

                        img {
                            display: none;
                        }
                    }

                    .down {
                        width: 80px;
                        min-height: 100%;
                        position: absolute;
                        bottom: 0;
                        right: 0;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 1rem;
                        color: #333;
                    }
                }

            }
        }

        .about {
            width: 100%;
            min-height: 900px;
            margin-bottom: 100px;
            padding: 100px 0;
            text-align: center;

            h2 {
                text-align: center;
                position: static;
                margin-top: 20px;
            }

            .description {
                position: static;
                min-height: 600px;
                margin-top: 50px;
                display: flex;
                flex-direction: column;
                justify-content: start;
                align-items: center;
                gap: 0;

                .img {
                    width: 100%;
                    height: 500px;
                }

                .text {
                    background-color: transparent;
                    border: none;
                    width: 100%;
                    height: 300px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    gap: 10px;
                    font-size: 1rem;
                    color: #333;

                    .sup-menu {
                        width: 100%;
                        list-style: none;
                        position: static;
                        text-align: center;
                        margin: 0 auto;


                        li {
                            background-color: var(--primary-color);
                            width: 100%;
                            height: 50px;
                            margin: 5px 0;

                            a {
                                color: #fff;
                                text-decoration: none;
                            }
                        }
                    }
                }

            }
        }

        .missions {
            position: static;
            background-color: #F1F1F1;
            width: 100%;
            min-height: 750px;
            text-align: center;
            padding-top: 50px;

            h2 {
                position: static;
                font-size: 2.5rem;
                margin-left: 2%;
                margin-top: 20px;
            }

            .description {
                position: static;

                .description-cp {
                    width: 100%;
                    min-height: 600px;
                    margin-top: 320px;
                    flex-direction: column;
                    justify-content: center;
                    align-items: end;

                    .img.mobile {
                        display: flex;
                        position: static;
                        width: 100%;
                        min-height: 500px;
                    }

                    .text {
                        background-color: transparent;
                        width: 100%;
                        height: 100px;
                        margin-right: 0;
                    }


                    .down-menu {
                        position: static;
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: end;
                        gap: 0;
                        margin: 20px auto;
                        margin-bottom: 220px;
                        z-index: 10;
                        gap: 2px;

                        .card {
                            position: relative;
                            width: 100%;
                            height: 60px;
                            cursor: pointer;
                            background-color: #fff;
                            padding: 10px;
                            margin: 0;
                            color: #333;


                            .up {
                                font-size: 1.1rem;
                                font-weight: bold;
                                display: flex;
                                flex-direction: column;
                                justify-content: start;
                                align-items: start;

                                i {
                                    font-size: 1.7rem;
                                    margin: 10px 0;
                                }
                            }

                            .down {
                                width: 60px;
                                min-height: 50px;
                                position: absolute;
                                bottom: 0;
                                right: 0;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                font-size: 1rem;
                            }
                        }

                        .clearest {
                            background-color: var(--secondary-color);

                            .down {

                                background-color: var(--green);
                            }
                        }

                        .clearer {
                            background-color: var(--primary-color);

                            .down {

                                background-color: var(--pink);
                            }


                        }

                        .clear {
                            background-color: var(--color-blue-bold);

                            .down {

                                background-color: var(--orange);
                            }
                        }
                    }
                }

            }

        }

        .results {
            min-height: 1300px;
            margin-top: 0;
            padding: 380px 0;
            background-color: #045340;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background-color: #F1F1F1;

            .summary {
                background-color: #EFF4FD;
                width: 100%;
                min-height: 600px;
                margin: 20px auto;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;

                .sum {
                    width: 50%;
                    margin: 60px 0;
                    padding: 20px;
                    border-right: 2px solid var(--primary-reduced);

                    h3 {
                        font-size: 1.9rem;
                        display: flex;
                        flex-direction: column;
                        align-items: start;
                        gap: 10px;
                        margin-bottom: 20px;
                    }

                    p {
                        font-size: 1rem;
                        font-weight: bold;
                    }
                }

                .last, .last-mob {
                    border: none;
                }
            }

            h2 {
                margin-left: 2%;
            }

        }


    }

    footer {

        .sup-footer {
            height: 20%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 10px;
            padding-left: 20px;

            ul {
                list-style: none;
                display: flex;
                align-items: center;
                gap: 20px;

                li a {
                    color: var(--primary-color);
                    text-decoration: none;
                    font-size: 1.5rem;
                }
            }
        }

        .sup-mid-footer {
            width: 100%;
            height: 49%;
            display: flex;
            flex-direction: column;
            align-items: start;
            margin-top: 20px;
            margin-left: 20px;
            padding-bottom: 5%;

            .logos {
                width: 45%;
                margin: 0;
                margin-left: -15px;
            }

            .links {
                display: block;
                width: 80%;
                height: 100%;
                font-size: 1rem;
                list-style: none;
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 40px;

                .first {
                    list-style: none;
                    display: flex;
                    flex-direction: column;

                    a {
                        color: #333;
                    }

                    i {
                        font-size: 0.7rem;
                        margin-left: 5px;
                    }
                }

                .last {

                    list-style: none;
                    display: flex;
                    flex-wrap: wrap;
                    gap: 10px;

                    a {
                        text-decoration: none;
                        color: #333;
                        font-weight: bold;

                        &:hover {
                            text-decoration: underline;
                        }
                    }

                    i {
                        font-size: 0.8rem;
                        margin-left: 5px;
                    }
                }
            }
        }

        .sub-mid-footer {
            padding: 20px;
            height: 29%;

            border-bottom: 1px solid var(--primary-reduced);

            p {
                font-size: 1rem;
                margin: 10px 0;
            }

            .partner {
                display: flex;
                flex-wrap: wrap;
                justify-content: start;
            }
        }


    }
}

/* <= 400px */

@media (max-width:400px) {

    .logos {
        width: 45%;
    }

    main {

        .about {
            width: 100%;
            min-height: 900px;
            margin-bottom: 0;

            h2 {

                text-align: left;
                position: static;
                margin-top: 20px;
                font-size: 1.5rem;
            }

            .description {
                position: static;
                min-height: 600px;
                margin-top: 50px;
                display: flex;
                flex-direction: column;
                justify-content: start;
                align-items: center;
                gap: 0;

                .img {
                    width: 100%;
                    min-height: 400px;
                }

                .text {
                    background-color: transparent;
                    border: none;
                    width: 100%;
                    height: 300px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    gap: 10px;
                    font-size: 1rem;
                    color: #333;

                    .sup-menu {
                        width: 100%;
                        list-style: none;
                        position: static;
                        text-align: center;
                        margin: 0 auto;


                        li {
                            background-color: var(--primary-color);
                            width: 100%;
                            height: 50px;
                            margin: 5px auto;
                            padding: 0;
                            display: flex;
                            align-items: center;
                            justify-content: center;

                            a {
                                color: #fff;
                                text-decoration: none;
                                font-size: 0.8rem;
                            }
                        }
                    }
                }

            }
        }

        .missions {
            position: static;
            background-color: #F1F1F1;
            width: 100%;
            min-height: 750px;

            h2 {

                text-align: left;
                position: static;
                font-size: 1.7rem;
                margin-left: 2%;

            }

            .description {
                position: static;

                .description-cp {
                    width: 100%;
                    min-height: 600px;
                    margin-top: 220px;
                    flex-direction: column;
                    justify-content: end;
                    align-items: start;
                    gap: 20px;

                    .img.mobile {
                        display: flex;
                        position: static;
                        width: 100%;
                        min-height: 300px;
                    }

                    .text {
                        width: 100%;
                        height: 100px;
                        padding: 0;
                    }


                    .down-menu {
                        position: static;
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: end;
                        gap: 0;
                        margin-bottom: 0;
                        z-index: 10;
                        gap: 2px;

                        .card {
                            position: relative;
                            width: 100%;
                            height: 60px;
                            cursor: pointer;
                            background-color: #fff;
                            padding: 10px;
                            margin: 0;
                            color: #333;


                            .up {
                                font-size: 1.1rem;
                                font-weight: bold;
                                display: flex;
                                flex-direction: column;
                                justify-content: start;
                                align-items: start;

                                i {
                                    font-size: 1.7rem;
                                    margin: 10px 0;
                                }
                            }

                            .down {
                                width: 60px;
                                min-height: 50px;
                                position: absolute;
                                bottom: 0;
                                right: 0;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                font-size: 1rem;
                            }
                        }

                        .clearest {
                            background-color: var(--secondary-color);

                            .down {

                                background-color: var(--green);
                            }
                        }

                        .clearer {
                            background-color: var(--primary-color);

                            .down {

                                background-color: var(--pink);
                            }


                        }

                        .clear {
                            background-color: var(--color-blue-bold);

                            .down {

                                background-color: var(--orange);
                            }
                        }
                    }
                }

            }

        }

        .results {
            min-height: 1100px;
            margin-top: 0;
            padding: 260px 0;
            margin-bottom: 200px;
            background-color: #045340;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background-color: #F1F1F1;

            h2 {
                font-size: 1.7rem;
            }

            .summary {
                background-color: #EFF4FD;
                width: 100%;
                min-height: 800px;
                margin: 20px auto;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;

                .sum {
                    width: 50%;
                    margin: 60px 0;
                    padding: 20px;
                    border-right: 2px solid var(--primary-reduced);

                    h3 {
                        font-size: 1.7rem;
                        display: flex;
                        flex-direction: column;
                        align-items: start;
                        gap: 10px;
                        margin-bottom: 20px;
                    }

                    p {
                        font-size: 1rem;
                        font-weight: bold;
                    }
                }

                .last, .last-mob {
                    border: none;
                }
            }

            h2 {
                margin-left: 2%;
            }

        }

    }
}