/*///////////////////////////////////////*/
/* ///// STYLE GLOBAL ///////////////// */
/*/////////////////////////////////////*/

/*
font-family: 'Open Sans', sans-serif;
font-family: 'Mulish', sans-serif;
*/

@font-face {
    font-family: 'now_bold';
    src: url('fonts/now-bold-webfont.woff2') format('woff2'),
        url('fonts/now-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'now_black';
    src: url('fonts/now-black-webfont.woff2') format('woff2'),
        url('fonts/now-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'now_regular';
    src: url('fonts/now-regular-webfont.woff2') format('woff2'),
        url('fonts/now-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    color: #333333;
}

body p {
    line-height: 28px;
    margin-bottom: 15px;
    color: #333333;
}

body:not(.path-frontpage) main {
    padding-top: 100px;
}

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: 1364px;
    margin: 0 auto;
}

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

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

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

/*PRIMARY BTN*/
.default-btn,
.form-submit {
    text-align: center;
    padding: 7px 40px 6px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    color: #fff;
    background: #4052D5;
    border: solid 4px #4052D5;
    min-width: max-content;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    transition: all 200ms ease-in-out;
}

.default-btn:hover,
.form-submit:hover {
    color: #4052D5;
    background: #fff;
}

/*SECONDARY BTN*/
.secondary-btn {
    display: inline-block;
    position: relative;
    font-size: 18px;
    color: #333333;
    padding-bottom: 10px;
    text-decoration: none;
    font-family: 'now_black';
}

.secondary-btn.white {
    color: #fff;
}

.secondary-btn:before,
.secondary-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #74CC00;
    transition: all 300ms ease-in-out;
}

.secondary-btn:before {
    right: 50%;
}

.secondary-btn:after {
    left: 50%;
}

.secondary-btn:hover:before,
.secondary-btn:hover:after {
    width: 50%;
}

a svg path {
    transition: all 200ms ease-in-out;
}

/*///////////////////////////////////////*/
/* ///// HEADER /////////////////////// */
/*/////////////////////////////////////*/

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100;
    transition: all 200ms ease-in-out;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
}

.frontpage header:not(.sticky-desktop) {
    background: transparent;
    box-shadow: none;
}

header .region-header {
    position: relative;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

/*Logo*/
#block-cap-sante-mentale-theme-logoheader {
    position: absolute;
    top: 0;
    left: 0;
    height: 173px;
    background: #ffffff url('../images/interface/bg-logo-header.png') no-repeat bottom right / 100%;
    padding: 18px 65px 10px 30px;
    border-bottom-right-radius: 30px;
    transition: all 200ms ease-in-out;
}

#block-cap-sante-mentale-theme-logoheader:before {
    content: '';
    position: absolute;
    right: -36px;
    top: 0;
    width: 38px;
    bottom: 73px;
    background: #fff;
    border-bottom-right-radius: 10px;
}

#block-cap-sante-mentale-theme-logoheader:after {
    content: '';
    width: 38px;
    height: 38px;
    position: absolute;
    right: -38px;
    bottom: 35px;
    background: url(../images/interface/angle-ombre.png) no-repeat top left / cover;
}

.frontpage header:not(.sticky-desktop) #block-cap-sante-mentale-theme-logoheader {
    top: -60px;
    z-index: -1;
    opacity: 0;
}

/*Navigation secondaire*/
.nav-secondaire {
    background: #4052D5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    min-height: 40px;
    padding: 6px 50px;
    width: 100%;
    max-width: 960px;
    border-bottom-left-radius: 40px;
}

.nav-secondaire a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: solid 1px #fff;
    border-radius: 20px;
    height: 28px;
    padding: 0 15px;
    font-family: 'now_bold';
}

.nav-secondaire a:hover {
    color: #4052D5;
    background: #fff;
}

.nav-secondaire a:hover svg path {
    fill: #4052D5;
}

/*Navigation principale*/
header .block-superfish {
    width: auto;
}

#superfish-main {
    display: flex;
    gap: 50px;
    padding-right: 25px;
}

ul.sf-menu:after {
    display: none;
}

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

#superfish-main > li ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 350px;
    top: 60px !important;
    background: #F3F7FD;
    padding: 30px 75px;
    left: 50% !important;
    transform: translateX(-50%);
    border-radius: 15px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}

#superfish-main > li#main-menu-link-content6558bfae-0b7f-4e60-a33e-83d630580e2c ul {
    min-width: 530px;
}

#superfish-main > li ul:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    width: 24px;
    height: 17px;
    background: url('../images/svg/angle-submenu.svg') no-repeat bottom center / contain;
}

#superfish-main > li ul li a {
    padding: 10px 0;
    text-decoration: none;
    color: #4052D5;
    font-family: 'now_bold';
}

#superfish-main > li:not(.sfHover) ul {
    display: none;
}

#superfish-main > li > a {
    color: #4052D5;
    padding: 0 25px;
    line-height: 60px;
    font-size: 17px;
    text-align: center;
    text-decoration: none;
    font-family: 'now_black', sans-serif;
}

.frontpage header:not(.sticky-desktop) #superfish-main > li > a {
    color: #fff;
}

#superfish-main > li > a .sf-sub-indicator {
    font-size: 12px;
    top: 32px;
    right: 8px;
    color: #3589A1;
}

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

#superfish-main > li > a.is-active {
    color: #4052D5;
}

/*///////////////////////////////////////*/
/* ///// TITRE DE PAGE //////////////// */
/*/////////////////////////////////////*/
.title-cap-sante-mentale {
    display: flex;
    align-items: center;
    padding: 30px 0;
    position: relative;
    min-height: 365px;
    background: linear-gradient(99.16deg, #4052D5 0%, #3589A1 100%);
}

.title-cap-sante-mentale .banniere {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .3;
}

.title-cap-sante-mentale .contenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
    width: calc(100% - 60px);
    max-width: 1364px;
    margin: 0 auto;
}

.block-page-title-block h1 {
    font-size: 40px;
    line-height: 42px;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'now_black', sans-serif;
}

.block-system-breadcrumb-block li,
.block-system-breadcrumb-block li a {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    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;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL HERO ///////////////// */
/*/////////////////////////////////////*/
.accueil-hero {
    position: relative;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.accueil-hero .visuel {
    width: 100%;
    display: flex;
}

.accueil-hero .visuel img {
    width: 100%;
}

.accueil-hero .contenu {
    position: absolute;
    width: calc(100% - 60px);
    max-width: 850px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
}

.accueil-hero .contenu h1 {
    font-size: 34px;
    line-height: 38px;
    font-weight: 700;
    margin: 50px 0 15px;
}

.localisation {
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 20px;
    height: 28px;
    padding: 0 25px;
    background: #4052D5;
    font-size: 16px;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL POINTS FORTS ///////// */
/*/////////////////////////////////////*/
.accueil-points-forts {
    height: 332px;
    background: url('../images/interface/bg-croix-repeat.png');
    background-size: 70px;
}

.accueil-points-forts .liste-points-forts {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    transform: translateY(-73px);
    z-index: 10;
}

.accueil-points-forts .liste-points-forts .point-fort {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 15px;
    background: #fff;
    padding: 45px 25px;
    width: calc(33.33333% - 27px);
}

.accueil-points-forts .liste-points-forts .point-fort .picto {
    min-height: 56px;
}

.accueil-points-forts .liste-points-forts .point-fort h2 {
    font-size: 32px;
    color: #4052D5;
    font-family: 'now_black';
    margin: 15px 0 25px;
}

.accueil-points-forts .liste-points-forts .point-fort .texte {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL FORMATIONS /////////// */
/*/////////////////////////////////////*/
.accueil-formations {
    margin: 120px auto 180px;
}

.accueil-formations .bloc-titre {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.accueil-formations .bloc-titre h2 {
    position: relative;
    font-size: 48px;
    line-height: 58px;
    color: #4052D5;
    z-index: 1;
    padding-bottom: 22px;
    font-family: 'now_black';
}

.accueil-formations .bloc-titre h2:after {
    content: '';
    position: absolute;
    width: 420px;
    height: 50px;
    right: -15px;
    bottom: 0;
    z-index: -1;
    background: url('../images/interface/soulignage-vert.png') no-repeat center / contain;
}

.accueil-formations .footer-formations {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.accueil-formations .footer-formations .texte {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
}

.accueil-formations .footer-formations .texte a {
    color: #4052D5;
}

/*///////////////////////////////////////*/
/* ///// LISTE FORMATIONS ///////////// */
/*/////////////////////////////////////*/
.liste-formations {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.liste-formations .bloc-formation {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    border-radius: 15px;
    background: #F3F7FD;
    padding: 25px;
    width: calc(33.333333% - 32px);
}

.liste-formations .bloc-formation .image {
    display: flex;
    overflow: hidden;
}

.liste-formations .bloc-formation .image img {
    transition: all 250ms ease-in-out;
}

.liste-formations .bloc-formation .image:hover img {
    transform: scale(1.1);
}

.liste-formations .bloc-formation h3 a {
    font-size: 24px;
    line-height: 28px;
    color: #4052D5;
    font-family: 'now_black';
    text-decoration: none;
}

.liste-formations .bloc-formation .resume {
    font-size: 16px;
    line-height: 24px;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL PRESENTATION ///////// */
/*/////////////////////////////////////*/
.accueil-presentation {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 70px;
}

.accueil-presentation .bloc-visuel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    display: flex;
}

.accueil-presentation .bloc-visuel:after {
    content: '';
    position: absolute;
    width: 251px;
    height: 318px;
    top: -95px;
    right: 60px;
    background: url('../images/svg/logo-sans-texte.svg') no-repeat center / contain;
}

.accueil-presentation .bloc-visuel .visuel {
    opacity: 0.76;
    border-top-right-radius: 150px;
}

.accueil-presentation .bloc-trame {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 230px;
    z-index: 2;
    background: url(../images/interface/bg-croix-repeat.png) bottom left -50px;
    background-size: 70px;
}

.accueil-presentation .bloc-contenu {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-bottom: 150px;
}

.accueil-presentation .bloc-contenu h2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 40px;
    line-height: 40px;
    color: #4052D5;
    margin-bottom: 10px;
    font-family: 'now_black';
}

.accueil-presentation .bloc-contenu h2 .small {
    position: relative;
    font-size: 32px;
    padding-bottom: 23px;
}

.accueil-presentation .bloc-contenu h2 .small:after {
    content: '';
    position: absolute;
    width: 330px;
    height: 50px;
    right: -32px;
    bottom: 0;
    z-index: -1;
    background: url(../images/interface/soulignage-vert-clair-1.png) no-repeat center / contain;
}

.accueil-presentation .bloc-contenu .default-btn {
    margin-top: 20px;
}

.accueil-presentation .bloc-contenu .bloc-accessiblite {
    margin-top: 75px;
    border-radius: 15px;
    background: #4052D5;
    padding: 50px;
    color: #fff;
}

.accueil-presentation .bloc-contenu .bloc-accessiblite h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
    font-family: 'now_black';
}

.accueil-presentation .bloc-contenu .bloc-accessiblite .texte {
    line-height: 24px;
    margin-bottom: 20px;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL CHIFFRES CLES //////// */
/*/////////////////////////////////////*/
.accueil-chiffres-cles {
    background: #F3F7FD;
    padding: 120px 0;
}

.accueil-chiffres-cles .bloc-titre {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.accueil-chiffres-cles .bloc-titre h2 {
    position: relative;
    font-size: 48px;
    line-height: 58px;
    color: #4052D5;
    z-index: 1;
    padding-bottom: 15px;
    font-family: 'now_black';
}

.accueil-chiffres-cles .bloc-titre h2:after {
    content: '';
    position: absolute;
    width: 320px;
    height: 50px;
    right: -25px;
    bottom: 0;
    z-index: -1;
    background: url(../images/interface/soulignage-vert-clair-2.png) no-repeat center / contain;
}

.accueil-chiffres-cles .liste-chiffres {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.accueil-chiffres-cles .liste-chiffres .bloc-chiffre {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.accueil-chiffres-cles .liste-chiffres .bloc-chiffre .nombre {
    margin-bottom: 10px;
}

.accueil-chiffres-cles .liste-chiffres .bloc-chiffre .nombre .valeur {
    font-size: 64px;
    color: #4052D5;
    font-weight: 1000;
}

.accueil-chiffres-cles .liste-chiffres .bloc-chiffre .nombre .exposant {
    font-size: 24px;
    font-weight: 1000;
}

.accueil-chiffres-cles .liste-chiffres .bloc-chiffre .titre {
    font-size: 20px;
    font-family: 'now_black';
}

/*///////////////////////////////////////*/
/* ///// 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: 'Mulish', sans-serif;
}

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

/*///////////////////////////////////////*/
/* ///// 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: 'Mulish', 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: 'Mulish', 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, .16);
}

.view-actualites .view-content .views-row:hover {
    box-shadow: 0 3px 20px rgba(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: 'Mulish', 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: 'Mulish', 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: 'Mulish', 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: 'Mulish', sans-serif;
}

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

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

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

/*///////////////////////////////////////*/
/* ///// PAGE DE CONTENU ////////////// */
/*/////////////////////////////////////*/

.node--type-contenu {

}

/*///////////////////////////////////////*/
/* ///// MAP FOOTER /////////////////// */
/*/////////////////////////////////////*/
#blockMap {
    min-height: 570px;
    margin-top: 180px;
}

/*///////////////////////////////////////*/
/* ///// FOOTER /////////////////////// */
/*/////////////////////////////////////*/

footer {
    clear: both;
    color: #fff;
    background: #4052D5;
}

footer a {
    color: #fff;
    text-decoration: none;
}

/*Footer contenu*/
.footer-contenu {
    padding: 60px 0 40px;
}

.footer-contenu .logo-menus {
    display: flex;
    gap: 50px;
}

.footer-contenu .logo-menus .logo {
    width: 100%;
    max-width: 370px;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.footer-contenu .logo-menus .menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.footer-contenu .logo-menus .menu .titre-menu {
    font-size: 18px;
    font-family: 'now_bold';
}

.footer-contenu .logo-menus .menu a {
    line-height: 24px;
    text-decoration: underline;
}

.footer-contenu .adresse-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer-contenu .adresse-menu .bloc-adresse {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    max-width: 370px;
    font-weight: 700;
    line-height: 20px;
    margin: 25px 0 40px;
}

.footer-contenu .adresse-menu .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.footer-contenu .adresse-menu .menu a:not(.phone) {
    font-size: 18px;
    font-family: 'now_bold';
}

.footer-contenu .adresse-menu .menu a.phone {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: solid 1px #fff;
    border-radius: 20px;
    font-size: 18px;
    height: 35px;
    padding: 0 15px;
    font-family: 'now_bold';
}

.footer-contenu .menu-secondaire {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-contenu .menu-secondaire a {
    font-weight: 700;
    text-decoration: underline;
}

/*Copyright*/
footer .gl-copy {
    padding: 20px;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    width: 100%;
    max-width: 1364px;
    margin: 0 auto;
    border-top: 1px solid #fff;
    font-family: "Mulish", sans-serif;
}

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

footer .gl-copy a {
    color: #fff;
    text-decoration: underline;
}

/*///////////////////////////////////////*/
/* ///// 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: 'Mulish', 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: 1364px;
    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: 30px 0;
}
.paragraphes .para-item:first-of-type {
    margin-top: 50px;
}
.paragraphes .para-item.full-width .container-para {
    width: calc(100% - 60px);
    max-width: 1364px;
    margin: 0 auto;
}
.paragraphes .para-item.full-width.pos-photo-3 .container-para,
.paragraphes .para-item.full-width.pos-photo-4 .container-para {
    width: 100%;
    max-width: none;
    opacity: 0;
    transition: 200ms ease-in-out;
}
.paragraphes h2,
.paragraphes h3,
.paragraphes h4 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    color: #4052D5;
    margin-bottom: 20px;
    font-family: 'now_black', sans-serif;
}
.paragraphes .default-btn {
    margin-top: 20px;
}
.paragraphes h3 {
    font-size: 24px;
    line-height: 28px;
}
.paragraphes h4 {
    font-size: 20px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 10px;
}
.paragraphes p,
.paragraphes li,
.intro p{
    font-size: 16px;
    line-height: 28px;
}
.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;
}