:root {
    --small-margin: 40px;
    --medium-margin: 70px;
    --ltspace: 70px;
    --mdspace: 130px;
    --bigspace: 180px;
    --side-base: 10vw;
    --noir: #2B2B2B;
    --vert: #97BF0D;
}


::selection {
    background-color: var(--noir);
    color: white;
}

/* Firefox */
::-moz-selection {
    background-color: var(--noir);
    color: white;
}

/* width */
::-webkit-scrollbar {
    width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--noir);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--noir);
    width: 2px;
}

body {
    background: white;
}

#container {
    background: white;
    padding: 70px 0 140px 0;
}

* {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: var(--noir);
}

.bigh1 {
    font-family: "Anton", sans-serif;
    font-size: 74px;
    font-weight: 400;
    line-height: 84px;
    text-transform: uppercase;
    color: var(--noir);
    margin: 0 0 40px 0;
}

h1 {
    font-family: "Anton", sans-serif;
    font-size: 54px;
    font-weight: 400;
    line-height: 65px;
    color: var(--noir);
    margin: 0 0 30px 0;
}

p, a, li {
    margin: 0 0 20px 0;

    font-size: 20px;
    font-weight: 300;
    line-height: 140%;
}
li{
    margin-bottom: 0;
}
ul{
    padding-left: 20px;
    list-style: inherit;
    margin: 0 0 20px 0;
}
.bigp,
.bigp p {
    font-size: 24px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: -0.09px;
}
.home .bigp,
.home .bigp p{
    font-size: 30px;
    line-height: 38px;
}
.txt {
    max-width: 900px;
}

.pd-base {
    padding-left: var(--side-base);
    padding-right: var(--side-base);
}

.btn_base {
    background: var(--noir);
    padding: 18px 30px;
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;

    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.008px;
    color: white;
    transition: 0.5s ease-in-out all;
    border: 1px solid var(--noir);
}

.btn_base.green {
    background: var(--vert);
    border: 1px solid var(--vert);
}

.btn_base:hover {
    background: white;
    color: var(--noir);
}

.btn_base.green:hover {
    color: var(--vert);

}

.disclaimer {
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    line-height: 26px;
    opacity: 0.4;
    margin-top: 100px;
    max-width: 800px;
}

#logo-container {
    width: 230px;
    transition: 0.5s ease-in-out all;
}

#logo-container:hover {
    opacity: 0.6;
}

/***********
MENU
 */
#header {
    padding: 30px calc(var(--side-base) / 2);
}

#menu > .menu-toggle {
    display: block;
    position: fixed;
    top: 44px;
    right: calc(var(--side-base) / 2);
    z-index: 10001;

}

#menu > .menu-toggle .menu-icon > span {
    background: var(--noir);
    transition: 0.4s ease-in-out all;
}

#menu .menu-text {
    display: none !important;
}

#main-menu-container {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: var(--noir);
    left: 0;
    top: 0px;
    z-index: 1000;
    padding: 150px calc(var(--side-base) * 2);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.4s ease-in-out all;
}

.toggled #main-menu-container {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

#menu.toggled .menu-toggle .menu-icon > span {
    background: white;
}

#main-menu-container .flex-ft {
    margin-top: 20px;
}

#main-menu-container .flex-ft a {
    margin-bottom: 0;
    margin-right: 10px;
}

#main-menu-container .flex-ft svg {
    height: 50px;
    width: 50px;
    margin-bottom: 0;
}


.menu {
    display: flex;
    flex-direction: column;
    padding-left: 0;
}

.menu a {
    font-family: "Anton", sans-serif;
    font-size: 54px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: -0.162px;
    color: white;
    margin-bottom: 30px;
    display: block;
    transition: 0.5s ease-in-out all;
}

.menu a:hover {
    color: var(--vert);
}

#menu .menu > .current_page_item > a {
    color: var(--vert);
    position: relative;
}

#menu .menu > .current_page_item > a::after {
    content: '';
    position: absolute;
    left: -42px;
    top: 23px;
    background: var(--vert);
    border-radius: 50px;
    width: 21px;
    height: 21px;
}

#main-menu-container .disclaimer {
    color: white;
    margin-top: 60px;
}

.first-section .btn_base {
    margin-top: 50px;
    margin-bottom: 0;
}


/***************
FOOOTER
 */
#footer {
    background: var(--noir);
    padding: 125px var(--side-base) 100px var(--side-base);
}

.ft-grid {
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: flex-end;
}

.accompagnement-ft {
    font-family: "Anton", sans-serif;
    font-size: 54px;
    font-weight: 400;
    line-height: 65px;
}

.adresse-ft {
    display: flex;
    flex-direction: column;
}

#footer p,
#footer strong {
    color: white;
}

.adresse-ft svg {
    margin-bottom: 30px;
}

.adresse-ft p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
}
.adresse-ft p a{
    color: white;
}
.adresse-ft{
    color: white;
}
.flex-ft {
    display: flex;
    margin-top: 10px;
}

.flex-ft a {
    margin-right: 5px;
    margin-bottom: 0;
    transition: 0.5s ease-in-out all;
}
.flex-ft a:hover{
    opacity: 0.6;
}
.flex-ft a svg{
    margin-bottom: 0;
}


/********
pAGE
 */
.grid-page {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-gap: 50px;
}

.grid-page > div > svg {
    width: 100%;
    display: inline-block;
    height: 120px;
}

.module-parcours {
    margin-top: 30px;
}

#parcours-content {
}

.parcours-niveau {
    display: flex;
    flex-flow: wrap;
    margin: 60px 0;
}

.parcours-niveau .parcours-niveau {
    margin: 0;
}

.parcours-niveau:first-of-type {
    margin-top: 0;
}

.parcours-niveau:last-of-type {
    margin-bottom: 0;
}

.parcours-bloc {
    display: flex;
    width: 19.9vw;
    padding: 15px;
    cursor: pointer;
    min-height: 19.9vw;

}

[data-niveau="0"] .parcours-bloc {

}

.parcours-contenu {
    background: rgb(222, 234, 182);
    border-radius: 200px 200px 0 200px;
    padding: 60px;
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

/*.parcours-contenu::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    right: 0px;*/
/*    bottom: 0px;*/
/*    z-index: -1;*/
/*    height: 50%;*/
/*    width: 50%;*/
/*    background: rgb(222, 234, 182);*/
/*}*/
.parcours-bloc.que {
    width: 100%;
    height: auto;
}

.parcours-bloc.que .parcours-contenu {
    background: transparent;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.parcours-bloc:not(.que) p {
    margin-bottom: 0;
}

.parcours-bloc.que .parcours-contenu::after {
    display: none;
}

.parcours-bloc.active .parcours-contenu {
    background: var(--noir);
}

.parcours-bloc.active .parcours-contenu::after {
    background: var(--noir);
}

.parcours-bloc.active .parcours-contenu strong,
.parcours-bloc.active .parcours-contenu p {
    color: white;
}

.parcours-full {
    width: 100%;
    margin: 0 0 60px 0;
}

.parcours-full.res {
    margin-bottom: 0;
}

.parcours-full > div:last-child {
    padding-top: 10px;
}

.parcours-full p {
    margin-bottom: 12px;
}

.contact-end {
    margin-top: 60px;
}


.flex-subtype {
    display: flex;
    width: 100%;
    flex-flow: wrap;
    justify-content: flex-end;
}

/* 1 ou 2 blocs : pleine largeur */
.parcours-count-1 .parcours-bloc,
.parcours-count-2 .parcours-bloc {
    width: 33%;
}

/* 3 blocs : 3 colonnes */
.parcours-count-3 .parcours-bloc {
    /*width: calc(33.333% - 20px);*/
    width: calc(33.333%);
}

/* 4 blocs : 4 colonnes */
.parcours-count-4 .parcours-bloc {
    width: calc(25%);
}

/* 5 blocs : 3 puis 2 */
.parcours-count-5 .parcours-bloc {
    width: calc(33.333% - 0px);
}


.telechargement {
    margin-top: 30px;
}

.telechargement a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(43, 43, 43, 0.20);
    transition: 0.5s ease-in-out all;
}

.telechargement a svg {
    margin-right: 20px;
}

.telechargement a:hover {
    opacity: 0.6;
}

#eapps-instagram-feed-1 .eapps-instagram-feed-posts-grid-load-more {
    background: var(--noir) !important;

    padding: 20px 30px;
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;

    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.008px;
    color: white;
    transition: 0.5s ease-in-out all;
    border: 1px solid var(--noir);
    margin-top: 60px;
    margin-bottom: 0;
}

#eapps-instagram-feed-1 .eapps-instagram-feed-posts-grid-load-more > span {
    color: white !important;
}

.grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 20px 0;
}

.wpcf7-form input {
    width: 100%;
    margin-top: 0;
    color: var(--noir);
    background: #deeab6;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    border-bottom: 2px solid transparent;
    transition: 0.5s ease-in-out all;
}

.wpcf7-form input::placeholder {
    color: var(--noir);
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}

.wpcf7-form input:focus {
    border-bottom: 2px solid var(--vert);
}

.wpcf7-form p {
    margin-bottom: 0;
}

.wpcf7-form textarea {
    width: 100%;
    resize: none;
    background: #deeab6;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
}

.wpcf7-select {
    width: 100%;
    background: #deeab6;
    height: 52px;
    border: 0;

    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: var(--noir);
    padding: 15px;
    margin-top: 5px;
}

.wpcf7-form label {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 140%;
    color: var(--noir);
    margin-top: 25px;
    display: block;
    font-weight: 600;
}

.wpcf7-form .wpcf7-submit {
    display: flex;
    width: fit-content;
    margin-left: auto;
    background: var(--noir);
    color: white;
    font-family: "Roboto", sans-serif;
    border-radius: 50px;
    margin-top: 20px;
    padding: 18px 30px;
    font-weight: 600;
    font-size: 20px;

    transition: 0.5s ease-in-out all;
    border: 1px solid var(--noir);
}
.wpcf7-form .wpcf7-submit:focus{
    border: 1px solid var(--noir);

}
.wpcf7-form .wpcf7-submit:hover {
    background: white;
    color: var(--noir);
}

#site-title {
    display: inline-block;
}

.hidden-form {
    display: none;
}

.social-mg {
    margin-top: 30px;
}


/* Masquer la flèche native */
.wpcf7-form-control.wpcf7-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*background: none;*/
    padding-right: 40px; /* espace pour le SVG */
    width: 100%;
    position: relative;
    z-index: 2;
    outline: 0 !important;
}

/* Ajouter un conteneur positionné relatif */
[data-name="select-680"] {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Insérer le SVG avec ::after */
[data-name="select-680"]::after {
    content: '';
    position: absolute;
    top: 56%;
    right: 12px;
    transform: translateY(-50%);
    width: 20px;
    height: 11px;
    pointer-events: none;
    z-index: 10;

    background: url("data:image/svg+xml;utf8,<svg width='25' height='14' viewBox='0 0 25 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M2 2L12.5 12.5L23 2' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center center;
    background-size: contain;
}

.wpcf7 {
    margin-top: 30px;
}
.wpcf7-spinner{
    display: none;
}
.copyright{
    opacity: 0.8;
    color: white;
    font-size: 16px;
    font-weight: 200;
    line-height: 27px;
    letter-spacing: 0.08px;
    margin-top: 50px;
}
.logo-pix{
    transform: translateY(10px);
}
.logo-pom{
    transform: translateY(9px);
}
.mobile-logo{
    display: none;
}
.grecaptcha-badge{
    display: none!important;
}
#cookie-notice{
    background-color: var(--noir) !important;
}
#cn-notice-text{
    color: white!important;
}
#cn-accept-cookie{
    background-color: white!important;
}