@charset "UTF-8";
/*///////////////////////////////////////*/
/* ///// STYLE GLOBAL ///////////////// */
/*/////////////////////////////////////*/
/*
font-family: "Geist", sans-serif;
font-family: "Bricolage Grotesque", sans-serif;
*/
html {
    box-sizing: border-box;
}
html * {
    box-sizing: border-box;
}

html body {
    font-family: "Geist", sans-serif;
    font-size: 16px;
    color: #000;
}

html body p {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Text-font, Geist);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 15px;
}

.layout-container {
    overflow: hidden;
}

body strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

main {
    clear: both;
}

.container-large {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto;
}

.container-medium {
    width: calc(100% - 60px);
    max-width: 1300px;
    margin: 0 auto;
}

.container-small {
    width: calc(100% - 60px);
    max-width: 1270px;
    margin: 0 auto;
}

.flex-center {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.dynamic-padding-left,
.dynamic-padding-right,
.dynamic-padding-left-medium,
.dynamic-padding-right-medium {
    opacity: 0;
    transition: 200ms ease-in-out;
}

.default-btn,
.form-submit {
    display: inline-flex;
    padding: 10px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--Buttons-Radius, 0);
    text-align: center;
    font-family: var(--Text-Title-font, "Bricolage Grotesque");
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}

/*BEIGE*/
.default-btn.beige,
.form-submit {
    background: var(--Colors-Color-1, #E2D9C6);
    color: var(--Colors-Dark, #000);
}

.default-btn.beige:hover,
.form-submit:hover {
    background: var(--Colors-Color-1-Light, #F4E9D3);
}

/*BLANC*/
.default-btn.blanc {
    border: 1px solid var(--Colors-Dark, #000);
    color: var(--Colors-Dark, #000);
}

/*///////////////////////////////////////*/
/* ///// HEADER /////////////////////// */
/*/////////////////////////////////////*/
header {
    position: relative;
    background: #fff;
    z-index: 100;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

header .region-header {
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

header .block-superfish {
    width: auto;
}

/*Navigation principale*/
#superfish-main {
    display: flex;
}

#superfish-main li {
    display: inline-block;
    float: none;
}

#superfish-main li a {
    color: #393939;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 25px;
    line-height: 75px;
    text-align: center;
    text-decoration: none;
    font-family: "Bricolage Grotesque", sans-serif;
}

#superfish-main li a:hover,
#superfish-main li a.is-active:hover {
    color: #F39517;
}

#superfish-main li a.is-active {
    color: #393939;
}

#superfish-main li#main-standardfront-page a {
    text-indent: 1000px;
    overflow: hidden;
    max-width: 80px;
    background: url("../images/svg/homepage-link.svg") no-repeat center;
}

/*///////////////////////////////////////*/
/* ///// TITRE DE PAGE //////////////// */
/*/////////////////////////////////////*/
.block-page-title-block {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto;
}

.block-page-title-block h1 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: "Bricolage Grotesque", sans-serif;
}

/*///////////////////////////////////////*/
/* ///// BREADCRUMBS ////////////////// */
/*/////////////////////////////////////*/
.block-system-breadcrumb-block {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto 50px;
}

.block-system-breadcrumb-block li,
.block-system-breadcrumb-block li a {
    font-size: 12px;
    line-height: 16px;
    color: #242424;
    text-decoration: none;
}

.block-system-breadcrumb-block li a:hover {
    text-decoration: underline;
}

.block-system-breadcrumb-block li:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 8px;
    background: url("../images/svg/arrow-breadcrumbs.svg") no-repeat center;
}

/*///////////////////////////////////////*/
/* ///// PAGE 404 ///////////////////// */
/*/////////////////////////////////////*/
#block-404 {
    width: calc(100% - 60px);
    max-width: 1088px;
    margin: 0 auto;
    padding: 120px 0;
}

#block-404 h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Bricolage Grotesque", sans-serif;
}

#block-404 .sous-titre {
    color: #333;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: "Bricolage Grotesque", sans-serif;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL MISE EN AVANT //////// */
/*/////////////////////////////////////*/
@keyframes jumpInfinite {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}
.accueil-mise-en-avant {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    height: 100vh;
    background: url("../images/interface/bg-mea.jpg") lightgray 50%/cover no-repeat;
}
.accueil-mise-en-avant .logo {
    width: 95%;
    max-width: 666px;
}
.accueil-mise-en-avant .logo svg {
    width: 100%;
    height: auto;
}
.accueil-mise-en-avant .content {
    display: flex;
    padding: 75px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.accueil-mise-en-avant .content .baseline {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Text-font, Geist);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.accueil-mise-en-avant .picto-scroll {
    cursor: pointer;
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
}
.accueil-mise-en-avant .picto-scroll svg {
    overflow: visible;
}

.accueil-mise-en-avant .picto-scroll .arrow {
    animation: jumpInfinite 1.5s infinite;
    transform-box: fill-box;
    transform-origin: center;
}

@media (prefers-reduced-motion: reduce) {
    .accueil-mise-en-avant .picto-scroll .arrow {
        animation: none;
    }
}
/*///////////////////////////////////////*/
/* ///// ACCUEIL LIEU OUVERT ////////// */
/*/////////////////////////////////////*/
.accueil-lieu-ouvert {
    position: relative;
    z-index: 1;
    margin-top: -100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    padding-bottom: 150px;
}
.accueil-lieu-ouvert .visuel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 352px;
    display: flex;
}
.accueil-lieu-ouvert .visuel .line {
    position: absolute;
    left: -93px;
    bottom: -138px;
    z-index: -1;
    width: 476px;
    height: 586px;
}
.accueil-lieu-ouvert .content {
    width: 100%;
    max-width: 750px;
    padding-top: 190px;
}
.accueil-lieu-ouvert .content h2 {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Title-font, "Bricolage Grotesque");
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}
.accueil-lieu-ouvert .content .default-btn {
    margin-top: 30px;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL NOS ESPACES ////////// */
/*/////////////////////////////////////*/
.accueil-espaces {
    padding: 120px 0 40px;
}
.accueil-espaces h2 {
    position: relative;
    z-index: 3;
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Title-font, "Bricolage Grotesque");
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.accueil-espaces #slider-espaces {
    transform: translateY(-170px);
    position: relative;
}
.accueil-espaces #slider-espaces .swiper-container {
    overflow: visible;
}
.accueil-espaces #slider-espaces .swiper-slide {
    display: flex;
    align-items: flex-end;
}
.accueil-espaces #slider-espaces .swiper-slide.swiper-slide-next {
    opacity: 0.5 !important;
    z-index: -1;
    filter: grayscale(1);
}
.accueil-espaces #slider-espaces .swiper-slide.swiper-slide-next .image {
    transform: translate(35px, 35px);
    transition: all 250ms ease-in-out;
}
.accueil-espaces #slider-espaces .swiper-slide.swiper-slide-next + .swiper-slide {
    opacity: 0.25 !important;
    z-index: -2;
    filter: grayscale(1);
}
.accueil-espaces #slider-espaces .swiper-slide.swiper-slide-next + .swiper-slide .image {
    transform: translate(70px, 70px);
    transition: all 250ms ease-in-out;
}
.accueil-espaces #slider-espaces .swiper-slide .contenu {
    height: 320px;
    position: relative;
    z-index: 2;
    transform: translate(85px, -75px);
    width: 100%;
    padding: 30px 0 30px 50px;
    background: var(--Colors-Color-1, #E2D9C6);
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
}
.accueil-espaces #slider-espaces .swiper-slide .contenu .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.accueil-espaces #slider-espaces .swiper-slide .contenu .inner h3 {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Title-font, "Bricolage Grotesque");
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.accueil-espaces #slider-espaces .swiper-slide .contenu .inner .sous-titre {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Text-font, Geist);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.accueil-espaces #slider-espaces .swiper-slide .contenu .inner .caracs {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.accueil-espaces #slider-espaces .swiper-slide .contenu .inner .caracs .carac {
    width: calc(50% - 5px);
    display: flex;
    align-items: center;
    gap: 10px;
}
.accueil-espaces #slider-espaces .swiper-slide .contenu .inner .caracs .carac .picto {
    width: 100%;
    max-width: 50px;
}
.accueil-espaces #slider-espaces .swiper-slide .contenu .inner .caracs .carac .titre-carac {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Text-font, Geist);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.accueil-espaces #slider-espaces .swiper-slide .image {
    display: flex;
    width: 100%;
    max-width: 585px;
}
.accueil-espaces #slider-espaces .container-navigation {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 30px;
    transform: translate(85px, -40px);
}
.accueil-espaces #slider-espaces .container-navigation .swiper-button-prev, .accueil-espaces #slider-espaces .container-navigation .swiper-button-next {
    position: relative;
    top: 0;
    margin: 0;
    background: none;
}
.accueil-espaces #slider-espaces .container-navigation .swiper-button-prev {
    left: 0;
}
.accueil-espaces #slider-espaces .container-navigation .swiper-button-next {
    right: 0;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL CONTACTS ///////////// */
/*/////////////////////////////////////*/
.accueil-contacts {
    display: flex;
    gap: 43px;
    margin-bottom: 150px;
}
.accueil-contacts #blockMap {
    z-index: 5;
    width: 100%;
    min-height: 630px;
}
.accueil-contacts .content {
    width: 100%;
    max-width: 455px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.accueil-contacts .content .titre {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Title-font, "Bricolage Grotesque");
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.accueil-contacts .content .sous-titre {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Text-font, Geist);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.accueil-contacts .content .adresse-itineraire {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: solid 1px #000;
}
.accueil-contacts .content .adresse-itineraire .adresse {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Text-font, Geist);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.accueil-contacts .content .adresse-itineraire .itineraire {
    display: flex;
    padding: 5px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--Buttons-Radius, 0);
    border: 1px solid var(--Colors-Dark, #000);
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    text-align: center;
    font-family: var(--Text-Title-font, "Bricolage Grotesque");
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}
.accueil-contacts .content .titre-btns {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Text-font, Geist);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    margin-bottom: 20px;
}
.accueil-contacts .content .btns {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}
/*///////////////////////////////////////*/
/* ///// ACCUEIL PRESENTATION ///////// */
/*/////////////////////////////////////*/
.accueil-presentation {
    display: flex;
}
.accueil-presentation .content {
    display: flex;
    align-items: center;
    width: 55%;
    padding: 100px 200px 100px 0;
    background: var(--Colors-Color-3, #E1F0FC);
}
.accueil-presentation .content h2 {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Title-font, "Bricolage Grotesque");
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 40px;
}
.accueil-presentation .content p {
    text-align: justify;
}
.accueil-presentation .image {
    width: 45%;
    display: flex;
}

.accueil-presentation .image img {
    object-fit: cover;
}

/*///////////////////////////////////////*/
/* ///// ACCCUEIL GALERIE ///////////// */
/*/////////////////////////////////////*/
.accueil-galerie {
    padding: 150px 50px;
}

/*///////////////////////////////////////*/
/* ///// SLIDER ACCUEIL /////////////// */
/*/////////////////////////////////////*/
.view-slider-accueil {
    position: relative;
}

.view-slider-accueil .swiper-slide {
    min-height: 685px;
    display: flex;
    align-items: center;
}

.view-slider-accueil .swiper-slide .contenu {
    max-width: 40%;
}

.view-slider-accueil .swiper-slide .contenu .titre {
    font-size: 32px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.view-slider-accueil .swiper-slide .contenu .texte {
    margin-bottom: 35px;
}

.view-slider-accueil .swiper-button-prev {
    width: 25px;
    height: 45px;
    left: 5%;
    background: url("../images/svg/arrow-slider-prev.svg") no-repeat center;
}

.view-slider-accueil .swiper-button-next {
    width: 25px;
    height: 45px;
    right: 5%;
    background: url("../images/svg/arrow-slider-next.svg") no-repeat center;
}

/*///////////////////////////////////////*/
/* ///// PARTENAIRES ACCUEIL ////////// */
/*/////////////////////////////////////*/
.view-id-partenaires.view-display-id-accueil {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-id-partenaires.view-display-id-accueil .h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.view-id-partenaires.view-display-id-accueil .seo-text {
    font-size: 16px;
    line-height: 30px;
    color: #242424;
    margin-bottom: 50px;
    max-width: 810px;
    text-align: center;
}

.view-id-partenaires.view-display-id-accueil .view-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

/*///////////////////////////////////////*/
/* ///// CONTACT FORM ///////////////// */
/*/////////////////////////////////////*/
.contact-form {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 40px auto 0;
}

.contact-form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-form form .field--type-list-string,
.contact-form form .field--type-string,
.contact-form form .field--type-email {
    width: 32%;
}

.contact-form form .field--type-list-string .form-radios {
    display: flex;
    flex-wrap: wrap;
}

.contact-form form .field--type-list-string .form-radios .form-type-radio:not(:last-of-type) {
    margin-right: 40px;
}

.contact-form form .form-item {
    margin-bottom: 0;
}

.contact-form form label {
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    color: #242424;
}

.contact-form form .field--type-string-long {
    width: 100%;
}

.contact-form form input[type=text],
.contact-form form input[type=email],
.contact-form form select {
    color: #4B4B4D;
    width: 100%;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    border-radius: 5px;
    border: solid 1px #C8C8C8;
}

.contact-form form textarea {
    color: #4B4B4D;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    padding: 15px;
    border-radius: 5px;
    border: solid 1px #C8C8C8;
}

.contact-form form .form-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

.g-recaptcha {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/*CHECKBOX*/
input[type=checkbox]:checked,
input[type=checkbox]:disabled:checked,
input[type=radio]:checked,
input[type=radio]:disabled:checked {
    background-color: #F39517;
}

input[type=checkbox]:hover,
input[type=checkbox]:focus,
input[type=radio]:hover,
input[type=radio]:focus {
    border: 2px solid #C2C2C2;
}

input[type=checkbox],
input[type=radio] {
    margin: 0 10px 0 0;
}

input[type=checkbox]:before,
input[type=radio]:before {
    font-family: "Font Awesome 5 Free";
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    margin-top: -2px;
    font-weight: 700;
    border-radius: 0;
    padding-left: 0.5px;
    padding-top: 2px;
    text-align: center;
    background: #fff;
    font-size: 11px;
    color: #F39517;
    border: 3px solid #F39517;
    cursor: pointer;
    margin-left: -2px;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

input[type=radio]:before {
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

input[type=radio]:checked:before {
    color: #F39517;
    content: "\f111";
}

input[type=checkbox]:checked:before {
    content: "";
    background: #F39517;
    outline: solid 3px #fff;
    outline-offset: -6px;
}

/*///////////////////////////////////////*/
/* ///// LISTE ACTUALITES ///////////// */
/*/////////////////////////////////////*/
.view-actualites {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 120px auto;
}

.view-actualites .view-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.view-actualites .view-content .views-row {
    width: 100%;
    max-width: 352px;
    margin: 15px 5px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.view-actualites .view-content .views-row:hover {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.25);
}

.view-actualites .view-content .views-row .image {
    height: 178px;
}

.view-actualites .view-content .views-row .contenu {
    padding: 0 25px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-actualites .view-content .views-row .contenu .date {
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    position: relative;
    padding: 0 30px;
    border-radius: 30px;
    margin-top: -10px;
    margin-bottom: 25px;
    background: #242424;
    letter-spacing: 1px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.view-actualites .view-content .views-row .contenu .titre {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.view-actualites .view-content .views-row .contenu .resume {
    font-size: 16px;
    line-height: 30px;
    color: #242424;
}

.view-actualites .view-content .views-row .contenu .lire-la-suite {
    font-size: 16px;
    color: #F39517;
    margin-top: 20px;
    text-decoration: underline;
}

.view-actualites.view-display-id-accueil .h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.view-actualites.view-display-id-accueil .flex-center {
    margin-top: 70px;
}

/*///////////////////////////////////////*/
/* ///// PAGE ACTUALITE /////////////// */
/*/////////////////////////////////////*/
.node--type-actualite {
    width: 90%;
    max-width: 1088px;
    margin: 0 auto;
    padding-top: 25px;
}

.node--type-actualite .date {
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    position: relative;
    padding: 0 30px;
    border-radius: 30px;
    margin-top: -10px;
    margin-bottom: 35px;
    background: #242424;
    letter-spacing: 1px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.node--type-actualite h1 {
    font-size: 29px;
    line-height: 36px;
    font-weight: 700;
    color: #242424;
    text-align: center;
    font-family: "Bricolage Grotesque", sans-serif;
}

.node--type-actualite .breadcrumb ol {
    text-align: center;
    margin-top: 10px;
}

.node--type-actualite .texte {
    margin-bottom: 40px;
}

/*///////////////////////////////////////*/
/* ///// PAGE DE CONTENU ////////////// */
/*/////////////////////////////////////*/
/*///////////////////////////////////////*/
/* ///// FOOTER /////////////////////// */
/*/////////////////////////////////////*/
footer {
    clear: both;
    color: #fff;
    background: #E2D9C6;
}
footer .footer-contenu {
    padding: 50px 30px;
}

/*Copyright*/
footer .gl-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    color: var(--Base-Dark, var(--Colors-Dark, #000));
    font-family: var(--Text-Text-font, Geist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    border-top: 1px solid #000;
}

footer .gl-copy img {
    margin-bottom: -5px;
}

footer .gl-copy a {
    color: var(--Base-Dark, var(--Colors-Dark, #000));
}

/*///////////////////////////////////////*/
/* ///// MASQUAGE ADMIN MENU ////////// */
/*/////////////////////////////////////*/
#toolbar-administration {
    display: none;
}

body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
    margin-left: 0;
}

body,
.adminimal-admin-toolbar.toolbar-fixed.toolbar-vertical {
    padding: 0 !important;
}

/*///////////////////////////////////////*/
/* //// GALERIE PARAGRAPHE //////////// */
/*/////////////////////////////////////*/
.galerie-paragraphe .grid__item,
.galerie-paragraphe .grid__col-sizer {
    width: calc(25% - 24px);
}

.galerie-paragraphe .grid__gutter-sizer {
    width: 24px;
}

.galerie-paragraphe .grid__item {
    margin-bottom: 24px;
}

/*///////////////////////////////////////*/
/* //////////// WEBFORMS ////////////// */
/*/////////////////////////////////////*/
.webform-submission-form {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 40px auto 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.webform-submission-form .form-item {
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.webform-submission-form .form-type-textfield,
.webform-submission-form .form-type-email,
.webform-submission-form .form-type-tel,
.webform-submission-form .form-type-select {
    width: calc(50% - 15px);
    margin-bottom: 40px;
}

.webform-submission-form .form-type-textarea {
    width: 100%;
}

.webform-submission-form .form-textarea-wrapper {
    width: 100%;
}

.webform-submission-form .form-type-checkbox {
    margin-top: 40px;
}

.webform-submission-form .form-type-checkbox label {
    padding-left: 35px;
    margin-top: -15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.webform-submission-form .form-actions {
    margin-top: 15px;
    width: 100%;
}

.webform-submission-form .form-actions .form-submit {
    margin-top: 20px;
}

.webform-submission-form .form-item .fieldset-legend,
.webform-submission-form .form-item label {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.webform-submission-form input[type=text],
.webform-submission-form input[type=email],
.webform-submission-form input[type=tel],
.webform-submission-form input[type=number],
.webform-submission-form select {
    height: 68px;
    line-height: 68px;
    border: solid 1px #333;
    border-radius: 15px;
    padding: 0 30px;
    width: 100%;
}

.webform-submission-form textarea {
    border: solid 1px #333;
    border-radius: 15px;
    padding: 25px 35px;
}

.webform-submission-form input[type=text]:focus,
.webform-submission-form input[type=email]:focus,
.webform-submission-form input[type=tel]:focus,
.webform-submission-form input[type=number]:focus,
.webform-submission-form select {
    outline: none;
}

/*///////////////////////////////////////*/
/* // MISE EN PAGE PARAGRAPHES //////// */
/*/////////////////////////////////////*/
.paragraphes .para-item {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 100px auto;
    clear: both;
}

.intro {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto 50px;
    clear: both;
}

/*Swiper paragraphes*/
.paragraphes .swiper-paragraphe {
    width: 100%;
    margin: 25px auto;
    position: relative;
}

.paragraphes .swiper-paragraphe .swiper-button-prev {
    width: 40px;
    height: 45px;
    left: 1%;
    background: url(../images/svg/arrow-slider-prev-white.svg) no-repeat center;
}

.paragraphes .swiper-paragraphe .swiper-button-next {
    width: 40px;
    height: 45px;
    right: 1%;
    background: url(../images/svg/arrow-slider-next-white.svg) no-repeat center;
}

/*Paragraphe pleine largeur*/
.paragraphes .para-item.full-width {
    width: 100%;
    max-width: none;
    padding: 120px 0;
}

.paragraphes .para-item.full-width .container-para {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto;
}

.paragraphes h2,
.paragraphes h3,
.paragraphes h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 20px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.paragraphes h3 {
    font-size: 20px;
    line-height: 26px;
}

.paragraphes h4 {
    font-size: 18px;
    line-height: 22px;
}

.paragraphes p,
.paragraphes li,
.intro p {
    font-size: 15px;
    line-height: 34px;
    color: #393939;
}

.paragraphes p {
    margin-bottom: 15px;
}

.para-photo-legende {
    margin: 5px 0 15px 0;
    text-align: center;
    font-size: 12px;
}

/*photo à droite*/
.pos-photo-3 .container-para {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}

.pos-photo-3 .para-desc {
    margin-right: 5%;
}

/*photo à gauche*/
.pos-photo-4 .container-para {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pos-photo-4 .para-photos {
    margin-right: 5%;
}

/*photo en haut et en bas*/
.para-item-photo-contenu .para-photos {
    display: flex;
    flex-wrap: wrap;
}

.pos-photo-1 .para-photos .para-photo,
.pos-photo-2 .para-photos .para-photo {
    margin: 10px;
}

.para-item-photo-contenu .para-photos .para-photo img,
.para-item-photo-contenu .para-photos .para-photo img {
    height: 200px;
    width: auto;
}

img[data-align=center] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img[data-align=right] {
    float: right;
}

img[data-align=left] {
    float: left;
}

.paragraphes table tr td {
    padding: 10px;
    border: 1px solid #eee;
}

.paragraphes table {
    margin-bottom: 30px;
}

.layout-content ul {
    padding-left: 27px;
    margin-bottom: 15px;
}

.layout-content ul li {
    font-size: 16px;
    line-height: 30px;
    list-style-type: none;
    position: relative;
    padding-left: 17px;
}

.layout-content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
}

/*Début accordéon*/
.para-item-accordeon .elements {
    overflow: hidden;
}

.para-item-accordeon .element {
    border-bottom: solid 1px #000;
}

.para-item-accordeon .titre-elem {
    cursor: pointer;
    position: relative;
    padding: 20px 30px 20px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.para-item-accordeon .titre-elem:after {
    content: "";
    position: absolute;
    right: 0;
    top: 20px;
    width: 18px;
    height: 18px;
    background: url("../images/svg/accordeon-open.svg") no-repeat center;
}

.para-item-accordeon .titre-elem.active:after {
    background: url("../images/svg/accordeon-close.svg") no-repeat center;
}

.para-item-accordeon .texte-elem {
    max-height: 0;
    overflow: hidden;
    line-height: 24px;
    text-align: justify;
}

.para-item-accordeon .texte-elem.active {
    max-height: 2000px;
    overflow: visible;
    margin-bottom: 20px;
}

/*Fin accordéon*/
/*Documents*/
.paragraphes .documents a {
    display: block;
    width: 100%;
    text-decoration: none;
    padding-left: 55px;
    line-height: 40px;
    color: #707070;
    border-bottom: solid 1px #d8d8d8;
}

.paragraphes .documents a:last-of-type {
    border-bottom: none;
}

.paragraphes .documents a.type-xls {
    background: url("../images/svg/picto-xls.svg") no-repeat 17px center;
}

.paragraphes .documents a.type-doc {
    background: url("../images/svg/picto-doc.svg") no-repeat 17px center;
}

.paragraphes .documents a.type-ppt {
    background: url("../images/svg/picto-ppt.svg") no-repeat 17px center;
}

.paragraphes .documents a.type-pdf {
    background: url("../images/svg/picto-pdf.svg") no-repeat 17px center;
}