:root {
    --grid-margin: 20px;
    --orange: #eb3e32;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-size: 0px;
    font-family: 'open-sans';
    -webkit-font-smoothing: antialiased !important;
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    background-color: #fff;
}

.layout-main {
    min-height: 800px;
    position: relative;
    display: block;
}

.layout-page {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 200px;
}

.layout-page.page {}

h1 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: -0.01em;
    line-height: 1;
    color: #333;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    /* color: var(--orange); */
    /* color: #000; */
}

.center {
    text-align: center;
}

.proportionnal:before {
    content: '';
    float: left;
}

._75:before {
    padding-top: 75%;
}

._130:before {
    padding-top: 130%;
}


/* --------- layout-access --------- */

.layout-access {
    background-color: #f7f7f7;
    border-radius: 5px;
}

.layout-access>div {
    display: flex;
    position: absolute;
    padding: 30px;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    height: 100%;
}

.layout-access p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000;
    text-align: center;
}

.layout-access p.button {
    text-align: center;
    padding-top: 20px;
}

.layout-access p.button a {
    display: inline-block;
    padding: 12px 0px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background-color: #d41f2a;
    text-decoration: none;
    cursor: pointer;
    width: 84%;
}


/* ----------- .columns ----------- */

.columns {
    display: flex;
}

.columns>div:nth-child(1) {
    display: inline-block !important;
    position: relative;
    vertical-align: top;
    width: 65%;
}

.columns>div:nth-child(2) {
    display: flex;
    position: relative;
    vertical-align: top;
    width: 35%;
    flex-direction: column;
    align-items: flex-end;
}


.columns.text>div:nth-child(1) {
    width: 60%;
}

.columns.text>div:nth-child(2) {
    width: 40%;
}

/* ----------- .layout-header.internal ----------- */

.layout-header.internal {
    display: block;
    height: 500px;
}

.headband {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.headband .logo {
    display: block;
    position: absolute;
    left: 50px;
    top: 30px;
    z-index: 2;
    width: 170px;
}

.headband .logo img {
    width: 100%;
}

.headband .category {
    display: block;
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: calc(50% - 50px);
    font-size: 70px;
    line-height: 0.9;
    color: #fff;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.headband .photo {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #232323;
    overflow: hidden;
}

.headband .photo img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.headband .photo:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

/* -------------- .headband .navigation -------------- */

.headband .navigation {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: var(--orange);
}

.headband .navigation .navigation-container {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: inherit;
    line-height: inherit;
}

.headband .navigation .navigation-container>ul {
    display: block;
    text-align: center;
    height: inherit;
    line-height: inherit;
}

.headband .navigation .navigation-container>ul>li {
    display: inline-block;
    position: relative;
    line-height: inherit;
    vertical-align: top;
    margin-right: 2%;
    cursor: pointer;
    height: inherit;
}

.headband .navigation .navigation-container>ul>li:after {
    display: none;
    position: absolute;
    top: 50%;
    right: -18px;
    content: '';
    width: 5px;
    height: 5px;
    transform: translateY(-50%) rotate(45deg);
    background-color: var(--orange);
}

.headband .navigation .navigation-container>ul>li:last-child:after {
    display: none;
}

.headband .navigation .navigation-container>ul>li>a,
.headband .navigation .navigation-container>ul>li>span {
    display: block;
    height: inherit;
    line-height: inherit;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

.headband .navigation .navigation-container li:last-child {
    margin-right: 0px;
}

.headband .navigation .navigation-container>ul>li>div {
    display: none;
    position: absolute;
    top: 40px;
    left: 0px;
    z-index: 2;
    align-items: flex-start;
    padding-top: 0px;
}


.headband .navigation .navigation-container>ul>li[data-slug="s-engager-a-nos-cotes"]>div {
    left: initial;
    right: 0px;
}



.headband .navigation .navigation-container>ul>li>div>div {
    display: flex;
    position: relative;
    padding: 50px 70px;
    background-color: var(--orange);
    /* border-radius: 15px; */
    /* border-top-left-radius: 0px; */
}

.headband .navigation .navigation-container>ul>li>div>div:before {
    content: '';
    background-image: url(./../images/triangle.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    top: -18px;
    left: 50px;
    display: none;
}

.headband .navigation .navigation-container>ul>li>div>div>h3 {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    margin-right: 60px;
    padding-right: 30px;
    text-align: left;
    line-height: 1;
    border-right: 1px solid #fff;
    display: block;
    min-height: 100px;
    min-width: 230px;
}

.headband .navigation .navigation-container>ul>li>div>div>ul {
    min-width: 250px;
}

.headband .navigation .navigation-container>ul>li>div>div>ul>li {
    text-align: left;
    margin-bottom: 0px;
    list-style-type: circle;
    font-size: 15px;
    color: #fff;
    font-weight: 200;
}

.headband .navigation .navigation-container>ul>li>div>div>ul>li>a {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    display: block;
    line-height: 1.1;
}

.headband .navigation .navigation-container>ul>li>div>div>ul>li>a:hover {
    text-decoration: underline;
}

.headband .navigation .navigation-container>ul>li:hover>div {
    display: block;
}

p.category {
    display: block;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    font-size: 20px;
    text-align: center;
    font-weight: 400;
    color: #000;
    padding-bottom: 5px;
    display: none;
}

p.category:before,
p.category:after {
    content: '\2014';
    margin: 10px;
}



/* ----------- .layout-header .socials, .layout-footer .socials  ----------- */

.internal .layout-header .socials {
    position: absolute;
    right: 10px;
    top: 40px;
    width: 30px;
    z-index: 3;
}

.internal  .layout-header .socials li {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.internal .layout-header .socials li a {
    text-decoration: none;
    cursor: pointer;
}

.internal  .layout-header .socials li a i {
    font-size: 25px;
    color: #fff;
}


/* ----------- .layout-footer ----------- */
.layout-footer {
    padding: 30px;
    background-color: #232323;
}

.layout-footer .resume-container {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
}

.layout-footer .resume-container>ul {}

.layout-footer .resume-container>ul>li {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    list-style-type: none;
    margin-bottom: 5px;
}

.layout-footer .resume-container>ul>li>a {
    font-size: inherit;
    color: #aaa;
    font-weight: 300;
    text-decoration: none;
}

.layout-footer .resume-container>ul>li>a>img {
    max-width: 150px;
}

.layout-footer .resume-container>ul:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

.layout-footer .navigation-container>ul>li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.layout-footer .navigation-container {
    margin-top: 50px;
    display: none;
}

.layout-footer .navigation-container>ul {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

.layout-footer .navigation-container>ul>li {
    font-size: 15px;
    font-weight: 300;
    color: #eee;
    list-style-type: none;
    border-right: 1px dashed #333;
    padding-right: 40px;
    margin-right: 40px;
}

.layout-footer .navigation-container>ul>li>a {
    font-size: inherit;
    font-weight: inherit;
    color: #c2c2c2;
    text-decoration: none;
}

.layout-footer .navigation-container>ul>li>span {
    font-size: inherit;
    font-weight: 400;
    color: inherit;
    margin-bottom: 10px;
    display: block;
}

.layout-footer .navigation-container>ul>li>div {}

.layout-footer .navigation-container>ul>li>div>div {}

.layout-footer .navigation-container>ul>li>div>div>h3 {
    display: none;
}

.layout-footer .navigation-container>ul>li>div>div>ul {}

.layout-footer .navigation-container>ul>li>div>div>ul>li {
    font-size: 15px;
    font-weight: 300;
    color: #eee;
    list-style-type: none;
    margin-bottom: 5px;
}

.layout-footer .navigation-container>ul>li>div>div>ul>li>a {
    font-size: inherit;
    font-weight: inherit;
    color: #c2c2c2;
    text-decoration: none;
}

.layout-footer li a:hover {
    text-decoration: underline !important;
}




.layout-footer .socials {
    
}

.layout-footer .socials li {
    margin-bottom: 10px !important;
}

.layout-footer .socials li a {
    text-decoration: none;
    cursor: pointer;
}

.layout-footer .socials li a i {
    font-size: 22px;
    color: #fff;
}


/* ----------- .layout-content ----------- */

.layout-content {}


.layout-content * {
    margin: initial;
    padding: initial;
    font-size: initial;
}

.layout-content h2 {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-top: 30px;
    letter-spacing: -0.01em;
    color: #222;
}

.layout-content h2.sous-titre {
    color: #111;
    font-weight: 400;
    font-size: 28px;
    margin-top: -10px;
    text-align: center;
}

.layout-content h2:before {
    content: '';
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 30px;
    height: 3px;
    margin-right: 9px;
    background-color: var(--orange);
    border-radius: 10px;
}

.layout-content h2.sous-titre:before {
    display: none;
}

.layout-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
    color: #222;
}

.layout-content h3:before {
    content: '';
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 2px;
    height: 20px;
    margin-right: 10px;
    background-color: var(--orange);
}

.layout-content p+h3 {
    margin-top: 30px;
}

.layout-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.layout-content p+h4 {
    margin-top: 20px;
}


.layout-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.layout-content h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}


.layout-content ul,
.layout-content ol {
    margin-top: 10px;
    margin-bottom: 30px;
}

.layout-content ul ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.layout-content li {
    margin-left: 25px;
    margin-bottom: 5px !important;
    line-height: 1.5 !important;
    text-align: left !important;
    list-style-type: circle;
}

.layout-content li li {
    list-style-type: disc;
}

.layout-content li li li {
    list-style-type: square
}


.layout-content p,
.layout-content li {
    font-size: 17px;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.5;
    color: #444;
    margin-bottom: 10px;
    text-align: justify;
    hyphens: auto;
}

p.has-text-align-center {
    text-align: center;
}

.layout-content strong {
    font-weight: 700;
    letter-spacing: inherit;
    font-size: inherit;
    color: inherit;
}

.layout-content em {
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.01em;
}

.layout-content a {
    font-size: inherit;
    font-weight: 300;
    color: var(--orange);
}

.layout-content .bloc-gris {
    background-color: #f2f2f2;
    padding: 40px;
    padding-bottom: 20px;
    border-radius: 10px;
    margin-top: 30px !important;
}

.layout-content .bloc-gris li {
    text-align: left;
}

.layout-content .bloc-bleu {
    background-color: #073965;
    padding: 40px;
    padding-bottom: 30px;
    border-radius: 6px;
    margin-top: 30px !important;
}

.layout-content .bloc-bleu li,
.layout-content .bloc-bleu p {
    text-align: left;
}

.layout-content .bloc-bleu li,
.layout-content .bloc-bleu p,
.layout-content .bloc-bleu strong,
.layout-content .bloc-bleu a {
    color: #fff;
    font-weight: 300;
    letter-spacing: 0em;
}

.layout-content .wp-block-quote,
.layout-content .citation {
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 1.6;
}


.layout-content .has-text-align-right {
    text-align: right !important;
}

.layout-content .access-button {
    display: block;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f7f7f7;
    padding: 30px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.4;
}

.layout-content .access-button a {
    display: block;
    position: relative;
    padding: 8px 40px;
    background-color: #d0192f;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    border-radius: 3px;
    margin-top: 10px;
    max-width: 200px;
    cursor: pointer;
}

.wp-block-table td,
.wp-block-table th {
    border: 1px solid;
    padding: 0.5em;
    font-size: 16px;
    vertical-align: top !important;
}

.wp-block-table th {
    font-weight: 500;
}

/* ------------- .bloc-history ---------------- */

.layout-content .bloc-history {
    position: relative;
    background-color: #fff;
    margin-bottom: 100px;
    padding-top: 10px;
    border-left: 1px solid #000;
    padding-left: 30px;
}

.layout-content .bloc-history h2 {
    display: block;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.03em;
    position: absolute;
    top: -75px;
    left: -30px;
}

/* ------------- .sous-navigation ---------------- */

.layout-content .sous-navigation {
    display: block;
    padding: 30px;
    padding-top: 40px;
    border-radius: 60px;
    border-top-left-radius: 0px;
    float: left;
    margin-right: 50px;
    background-color: var(--orange);
}

.layout-content .sous-navigation li {
    color: #fff;
    list-style-type: disclosure-closed;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 10px !important;
}

.layout-content .sous-navigation a {
    font-weight: 400;
    text-decoration: none;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: inherit;
    hyphens: none;
}

.layout-content .sous-navigation+p {
    padding-top: 10px;
}

.layout-content .small {
    margin-left: auto;
    margin-right: auto;
    max-width: initial;
}

/* ----------- .wp-block ----------- */

.layout-content .wp-block-image {
    border-radius: 4px;
    overflow: hidden;
}

.layout-content .wp-block-media-text p,
.layout-content .wp-block-media-text__media p {
    text-align: left !important;
}

.layout-content .wp-block-table {
    margin-top: 30px;
    margin-bottom: 30px;
}

.layout-content .wp-block-file a {
    background-color: #d41f2a;
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-right: 10px;
    padding: 14px 30px;
    border: 0px;
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    margin-top: 30px;
}

.wp-block-gallery figure {
    position: relative;
    padding-right: 10px;
    padding-top: 10px;
    min-width: 200px;
    min-height: 250px;
}


/* ----------- .bloc-gallery-slider ----------- */

.wp-block-gallery.bloc-gallery-slider {
    display: block;
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    gap: initial !important;
    --wp--style--unstable-gallery-gap: initial !important;
    align-items: initial !important;
    margin: initial !important;
    margin-top: 30px !important;
    margin-bottom: 40px !important;
}

.wp-block-gallery.bloc-gallery-slider .container {
    display: block;
    height: 100%;
}

.wp-block-gallery.bloc-gallery-slider .container.slide {
    animation-name: gallery_slide;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-fill-mode: backwards;
    transform: translateX(0%);
}

@keyframes gallery_slide {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}


.wp-block-gallery.bloc-gallery-slider figure {
    display: inline-block !important;
    position: relative !important;
    vertical-align: top;
    height: 100%;
    width: fit-content !important;
    max-width: initial !important;
    margin: initial !important;
    margin-right: 0px !important;
    min-width: fit-content;
    padding-right: 10px;
    flex-grow: initial !important;
    justify-content: unset !important;
    flex-direction: unset !important;
}

.wp-block-gallery.bloc-gallery-slider figure img {
    display: block !important;
    width: auto !important;
    height: 100% !important;
    width: auto !important;
    max-width: initial !important;
    object-fit: initial !important;
    object-position: initial !important;
    flex: none !important;
}

/* ----------- .bloc-gallery-grid ----------- */

.wp-block-gallery.bloc-gallery-grid {
    margin-top: 30px;
    margin-bottom: 40px;
    max-height: 500px;
    overflow-y: auto;
}

.wp-block-gallery.bloc-gallery-grid figure {
    position: relative;
    padding-right: 10px;
    padding-top: 10px;
    min-width: 200px;
    min-height: 250px;
}

.wp-block-gallery.bloc-gallery-grid figure figcaption {
    bottom: initial !important;
    left: 50% !important;
    transform: translateX(-50%);
    max-width: 80%;
    padding: 20px !important;
    background: initial !important;
    background-color: #fff !important;
    font-size: 16px !important;
    color: #000 !important;
    font-weight: 500;
    display: none !important;
}

.wp-block-gallery.bloc-gallery-grid figure:hover figcaption {
    display: inline-block !important;
}


/* ----------- .bloc-banner ----------- */

.wp-block-cover.bloc-banner {
    margin-top: 30px;
    margin-bottom: 30px;
}

.wp-block-cover.bloc-banner span {
    opacity: 0.3;
}

.wp-block-cover.bloc-banner a {
    display: block;
    text-align: center;
    color: #fff !important;
    text-decoration: none;
    font-size: 25px;
    font-weight: 500;
}

/* ----------- .bloc-trombinoscope ----------- */


.wp-block-table.bloc-trombinoscope {}

.wp-block-table.bloc-trombinoscope table {}

.wp-block-table.bloc-trombinoscope table tr:nth-child(1) td {
    width: 20%;
    height: 200px;
    border: none;
    padding: 5px !important;
}

.wp-block-table.bloc-trombinoscope table img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: top center;
    max-width: initial !important;
}

.wp-block-table.bloc-trombinoscope table tr:nth-child(2) td {
    width: 20%;
    border: none;
    font-size: 15px;
    line-height: 1.1;
    text-align: left;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.wp-block-table.bloc-trombinoscope table tr:nth-child(2) td strong {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
    display: block;
    margin-bottom: 0px;
    border-bottom: 1px solid #000;
    height: 60px;
    color: #222;
    letter-spacing: 0.01em;
}

.wp-block-file {
    margin-top: 40px;
    margin-bottom: 40px;
}

.wp-block-file a {
    font-size: 14px;
    color: #fff;
    padding: 10px 20px;
    background-color: #b92134;
    text-decoration: none;
    font-weight: 400;
    border-radius: 30px;
}

.wp-block-embed__wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* ----------- .bloc-columns ----------- */

.bloc-columns {
    column-gap: 50px
}

.bloc-columns p {
    text-align: left;
}

.bloc-columns .wp-block-image {
    margin-top: 30px;
    margin-bottom: 30px;
}


/* ----------- .gallerie-offre-pedagogique ----------- */

.gallerie-offre-pedagogique {
    width: 100%;
}

.gallerie-offre-pedagogique * {}

.gallerie-offre-pedagogique>div {}

.gallerie-offre-pedagogique>div>div {
    display: block;
    font-size: 0;
}

.gallerie-offre-pedagogique>div>div>div {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: calc((100% - (2 * 20px)) / 3);
    margin-right: 20px;
}

.gallerie-offre-pedagogique figure {
    margin-right: 20px;
}

.gallerie-offre-pedagogique>div>div>div:last-child {
    margin-right: 0;
}

.gallerie-offre-pedagogique figure img {}

.gallerie-offre-pedagogique h2 {
    font-size: 18px;
    font-weight: 500 !important;
    line-height: 1.2;
    color: #111;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

/* -------------------- .gallerie-icones-textes -------------------- */

.gallerie-icones-textes {}

.gallerie-icones-textes img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 130px !important;
}

.gallerie-icones-textes p {
    margin-top: 10px;
    line-height: 1.3;
    text-align: center !important;
}

/* ----------- .gallerie-competences ----------- */

.gallerie-competences figure {
    display: flex;
    justify-content: center;
}

.gallerie-competences h5 {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.1;
}


/* ----------- .presentation-programme ----------- */

.presentation-programme {
    font-size: 28px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    margin-bottom: 40px !important;
    margin-top: 0px !important;
    letter-spacing: -0.01em !important;
    text-align: center !important;
    font-style: normal !important;
}

.presentation-programme:before {
    display: inline-block;
    position: relative;
    vertical-align: top;
    padding-top: 20px;
    content: '\00201c';
    font-size: 60px;
    font-weight: 300;
    font-family: serif;
    line-height: 0.1;
    content: '';
}

.presentation-programme:after {
    display: inline-block;
    position: relative;
    vertical-align: top;
    padding-top: 20px;
    content: '\00201d';
    font-size: 60px;
    font-weight: 300;
    font-family: serif;
    line-height: 0.1;
    content: '';
}

/* ----------- .layout-mobile ----------- */

.layout-mobile i {
    font-family: 'Line Awesome Free';
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.layout-mobile label i:before {
    content: "\f0c9";
}

.layout-mobile label.toggle {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    cursor: pointer;
}

.layout-mobile label.toggle * {
    font-size: 35px;
    color: #fff;
}

.internal .layout-mobile label.toggle * {
    color: #000;
}

.layout-mobile input[type="checkbox"].toggle {
    position: absolute;
    width: 0px;
    height: 0px;
    overflow: hidden;
}

.layout-mobile .navigation {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
    background-color: #fff;
    padding-top: 100px;
}

.layout-mobile .navigation ul {
    display: block;
}

.layout-mobile .navigation li {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.layout-mobile .navigation li a {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.layout-mobile input[type="checkbox"]:checked~label * {
    color: #000;
}

.layout-mobile input[type="checkbox"]:checked~label i:before {
    content: "\f00d";
}

.layout-mobile input[type="checkbox"]:checked~.navigation {
    display: block;
}


.logos-partenaires {
    display: block;
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin-bottom: 30px;
}

.logos-partenaires>div {
    display: block;
    position: absolute;
    top: 0;
    left: 0px;
    width: 3000px;
    height: 100%;
}

.logos-partenaires figure {
    display: inline-block;
    position: relative;
    vertical-align: top;
    padding: initial !important;
    width: 150px !important;
    max-width: initial !important;
    height: 100% !important;
    min-width: initial !important;
    min-height: initial !important;
    margin: 0px !important;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
}

.logos-partenaires figure a {
    display: block;
    width: 100%;
    height: 100%;
}

.logos-partenaires figure img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: initial !important;
    max-height: 100%;    
}


.layout-navigation-mobile {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    z-index: 3;
}

.layout-navigation-mobile label {
    display: block;
    position: absolute;
    z-index: 3;
    width: 45px;
    height: 45px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.layout-navigation-mobile label i:nth-child(1) {
    display: inline-block;
    font-size: 45px;
    color: #fff;
}

.layout-navigation-mobile label i:nth-child(2) {
    display: none;
    font-size: 45px;
    color: #fff;
}

.layout-navigation-mobile input[type="checkbox"] {
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    position: absolute;
}

.layout-navigation-mobile input[type="checkbox"]:checked+label i:nth-child(1) {
    display: none;
}

.layout-navigation-mobile input[type="checkbox"]:checked+label i:nth-child(2) {
    display: inline-block;
}


.layout-navigation-mobile .navigation-container {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: var(--orange);
    padding: 40px 20px;
}

.layout-navigation-mobile input[type="checkbox"]:checked~.navigation-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.layout-navigation-mobile a {
    display: block;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
}

.layout-navigation-mobile h3 {
    text-transform: uppercase !important;
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}


.layout-navigation-mobile li>div {
    margin-bottom: 10px;
    margin-top: 10px;
}



@media screen and (max-width: 1150px) {
  

    .layout-content .bloc-history h2 {
        left: -5px;
    }


    .layout-footer .resume-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .layout-footer .resume-container>ul {
        width: 100%;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #585858;
    }

    .layout-footer .resume-container>ul:last-child {
        border-bottom: none;
    }

    .layout-footer .resume-container>ul>li {
        text-align: center;
    }
}


@media screen and (max-width:1024px) {



    .headband .navigation .navigation-container {
        display: none;
    }

    /* ----------- .layout-mobile ----------- */

    .layout-navigation-mobile {
        display: block;
    }

    .layout-mobile {
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        z-index: 5;
    }

    .layout-mobile label.toggle {
        display: block;
    }

    .internal .layout-header .socials {        
        top: 100px;        
    }

    .layout-page.page {
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .columns {
        display: block;
    }

    .columns>div:nth-child(1) {
        display: block !important;
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .columns>div:nth-child(2) {
        display: block !important;
        width: 100%;
    }

    .columns>div:nth-child(2) .layout-list {
        display: block;
        width: 100%;
        transform: initial;
        margin-left: auto;
        margin-right: auto;
    }

    .columns>div:nth-child(2) .layout-list .layout-item {
        display: inline-block;
        width: calc((100% - (2 * 20px)) / 3);
        margin-right: 20px;
        margin-bottom: 20px !important;
    }

    .columns>div:nth-child(2) .layout-list .layout-access {
        display: inline-block;
        position: relative;
        vertical-align: top;
        width: calc((100% - (2 * 20px)) / 3);
        margin-right: 20px;
        margin-bottom: 20px !important;
    }

    .columns>div:nth-child(2) .layout-list>div:nth-child(3n) {
        margin-right: 0px;
    }

}





@media screen and (max-width:800px) {

    .layout-page {
        padding-left: 20px;
        padding-right: 20px;
    }

    .columns>div:nth-child(2) .layout-list .layout-item {
        width: calc((100% - (1 * 20px)) / 2);
    }

    .columns>div:nth-child(2) .layout-list .layout-access {
        width: calc((100% - (1 * 20px)) / 2);
    }

    .columns>div:nth-child(2) .layout-list>div:nth-child(3n) {
        margin-right: 20px;
    }

    .columns>div:nth-child(2) .layout-list>div:nth-child(2n) {
        margin-right: 0px;
    }


    .layout-content h2:before {
        width: 2px !important;
        height: 25px !important;
    }

}


@media screen and (max-width:600px) {

    .layout-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .columns>div:nth-child(2) .layout-list .layout-item {
        width: 100%;
    }

    .columns>div:nth-child(2) .layout-list .layout-access {
        width: 100%;
    }

    .columns>div:nth-child(2) .layout-list>div:nth-child(3n) {
        margin-right: 0px;
    }

    .layout-header.internal {
        height: 100vh;
    }

    .layout-header.internal .logo {
        /* width: 90px; */
    }

    h1 {
        font-size: 35px;
    }

    .layout-content h2 {
        text-align: center !important;
        font-size: 26px;
        line-height: 1.2;
    }

    .layout-content h3 {
        font-size: 20px;
    }

    .layout-content p,
    .layout-content li {      
        text-align: left;      
    }
    
    .layout-footer .socials {
        display: flex;
        justify-content: space-evenly;
    }
    

    .headband .category {
        max-width: 70%;
        left: 10%;
        transform: translateY(-50%);
        hyphens: auto;
        line-height: 1.1;
    }
}




/* ------------------ .grid ------------------ */

.grid .cel {
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-right: var(--grid-margin);
    margin-bottom: var(--grid-margin);
    overflow: hidden;
    border-radius: 4px;
}

.grid .cel:after {
    content: '';
    float: left;
    padding-top: 75%;
}

.grid .cel._130:after {
    content: '';
    float: left;
    padding-top: 135%;
}

/* ------------------ .grid-3 ------------------ */

.grid-3 .cel {
    width: calc((100% - (2 * var(--grid-margin))) / 3);
}

.grid-3 .cel:nth-child(3n) {
    margin-right: 0px;
}

@media screen and (max-width:950px) {
    .grid-3 .cel {
        width: calc((100% - (1 * var(--grid-margin))) / 2);
    }

    .grid-3 .cel:nth-child(3n) {
        margin-right: var(--grid-margin);
    }

    .grid-3 .cel:nth-child(2n) {
        margin-right: 0px;
    }
}

@media screen and (max-width:750px) {
    .grid-3 .cel {
        width: 100%;
    }

    .grid-3 .cel:nth-child(3n) {
        margin-right: 0px;
    }
}


/* ------------------ .grid-4 ------------------ */

.grid-4 .cel {
    width: calc((100% - (3 * var(--grid-margin))) / 4);
}

.grid-4 .cel:nth-child(4n) {
    margin-right: 0px;
}

@media screen and (max-width:950px) {
    .grid-4 .cel {
        width: calc((100% - (2 * var(--grid-margin))) / 3);
    }

    .grid-4 .cel:nth-child(4n) {
        margin-right: var(--grid-margin);
    }

    .grid-4 .cel:nth-child(3n) {
        margin-right: 0px;
    }
}

@media screen and (max-width:750px) {
    .grid-4 .cel {
        width: calc((100% - (1 * var(--grid-margin))) / 2);
    }

    .grid-4 .cel:nth-child(4n) {
        margin-right: 0px;
    }

    .grid-4 .cel:nth-child(3n) {
        margin-right: var(--grid-margin);
    }

    .grid-4 .cel:nth-child(2n) {
        margin-right: 0px;
    }
}


@media screen and (max-width:550px) {
    .grid-4 .cel {
        width: 100%;
    }

    .grid-4 .cel:nth-child(2n) {
        margin-right: 0px;
    }
}


.start-compteur-object-nombre {

    animation-name: start_object_nombre;
    animation-duration: 0.2s;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation-fill-mode: forwards;
    transform: translateY(100px);
    opacity: 0;
}

@keyframes start_object_nombre {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }

}