/*
Theme Name: interbio
Author: La petite boite
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,400;0,500;0,700;1,400;1,700&display=swap');

@font-face {
    font-family: "Daniel Black";
    src: url("assets/fonts/danielbk.eot?") format("eot"), url("assets/fonts/danielbk.woff") format("woff"), url("assets/fonts/danielbk.ttf") format("truetype"), url("assets/fonts/danielbk.svg#DanielBlack") format("svg");
    font-weight: normal;
    font-style: normal;
}

/*
* Vert : #548c7d;
* Vert pomme : #9fc418;
* Gris : #575757;
*/

*,
html,
body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 18px;
    color: #575757;
}

h1,
h2,
h3,
h4,
h5 {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

a,
a:hover,
a:active,
a:visited {
    text-decoration: none;
}

a.custom_btn {
    position: relative;
    display: inline-block;
    padding: 15px;
    border: 1px solid #575757;
    text-transform: uppercase;
    color: #548c7d;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    line-height: normal;
    text-align: left;
    transition: all 0.3s;
}

a.custom_btn:hover,
a.custom_btn.mail:hover {
    border-color: transparent;
    color: #9fc418;
}

a.custom_btn::before,
a.custom_btn::after {
    width: 100%;
    height: 100%;
    z-index: 3;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    -webkit-transform: scale(0);
    transition: 0.5s;
}

a.custom_btn::before {
    border-bottom: 1px solid #9fc418;
    border-left: 1px solid #9fc418;
    -webkit-transform-origin: 0 100%;
}

a.custom_btn::after {
    border-top: 1px solid #9fc418;
    border-right: 1px solid #9fc418;
    -webkit-transform-origin: 100% 0%;
}

a.custom_btn:hover::before,
a.custom_btn:hover::after {
    -webkit-transform: scale(1);
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
}

a.custom_btn.white {
    color: #fff;
    border-color: #fff;
}

.arrow {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 10px;
    background-repeat: no-repeat;
    background-image: url(assets/img/arrow-right.svg);
    background-size: cover;
    transition: all 0.2s ease;
    vertical-align: initial;
}

a.custom_btn:hover .arrow {
    margin-right: -5px;
}

span.mail {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url(assets/img/mail.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    vertical-align: sub;
}

a.custom_btn.mail {
    color: #fff;
    border-color: #fff;
    text-align: center;
}

a.custom_btn.back .arrow {
    transform: rotate(180deg);
}

a.lien,
.lien a {
    display: inline-block;
    padding: 10px 15px;
    border: 2px solid #e2e2e2;
    color: inherit;
    font-size: inherit;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;

    transition: all 0.3s ease;
}

a.lien:hover,
.lien a:hover {
    border-color: #9fc418;
}

a.lien::after,
.lien a::after {
    content: '→';
    color: #9fc418;
    padding-left: 10px;
    transition: padding 0.3s ease;
}

a.lien:hover::after,
.lien a:hover::after {
    padding-left: 5px;
}

ul,
ol {
    padding-left: 0;
    list-style: none;
}

ul li ul {
    padding-left: 25px;
}

ul li,
ol li {
    font-size: inherit;
}

ol li {
    counter-increment: inst;
    margin-bottom: 5px;
}

ol li::before {
    content: counter(inst);
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    text-align: center;
    border: 2px solid #9fc418;
    border-radius: 50%;
    font-weight: 700;
    color: #548c7d;
}

strong,
span,
em,
a {
    font-size: inherit;
    color: inherit;
}

.big {
    font-size: 2.5rem;
    font-weight: 700;
    color: #548c7d;
}

.custom_title {
    position: relative;
}

.custom_title.white,
.custom_title.white .big {
    color: #fff;
}

.custom_title::after {
    content: '';
    position: absolute;
    bottom: 10px;
    margin-left: 10px;
    width: 80px;
    height: 1px;
    background-color: #548c7d;
}

.custom_title.white::after {
    background-color: #fff;
}

.green {
    color: #9fc418;
}

.green_ {
    color: #9fc418;
}

.bg-grey {
    background-color: #ececec;
}

blockquote {
    padding-left: 15px;
    border-left: 5px solid #9fc418;
}

blockquote * {
    font-size: 18px;
}

.bloc_note {
    margin: 2em 0;
    padding: 1.5em;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.bloc_note .custom_title::after {
    bottom: 0;
    width: 20px;
    margin-left: 0;
}

.alignleft {
    float: left;
    margin: .5em 1em .5em 0;
}

.cale {
    clear: both;
}

/* Spinner */

#loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ececec;
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 100px auto;
    background-color: #548c7d;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/* Animsition */

.animsition-overlay-slide {
    z-index: 999999 !important;
    background-color: #fff;
}

/* Mobile icon */

#icon_mobile_menu {
    display: none;
    float: right;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 50px;
    height: 40px;
    position: relative;
    margin: 0 auto;
    -webkit-transform: rotate(0deg) translateY(-50%);
    -moz-transform: rotate(0deg) translateY(-50%);
    -o-transform: rotate(0deg) translateY(-50%);
    transform: rotate(0deg) translateY(-50%);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 99999;
}

#icon_mobile_menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #548C7D;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#icon_mobile_menu span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#icon_mobile_menu span:nth-child(2) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#icon_mobile_menu span:nth-child(3) {
    top: 36px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#icon_mobile_menu.open span {
    background-color: #fff;
}

#icon_mobile_menu.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 4px;
    left: 8px;
}

#icon_mobile_menu.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#icon_mobile_menu.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 39px;
    left: 8px;
}


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

#wrapper_site {
    overflow: hidden;
}

#site_header {
    padding: 10px 1.5em 0;
}

body:not(.home) #site_header {
    margin-bottom: 2em;
}

/* Topbar */

#topbar {
    padding: 20px 30px 0;
}

#list_topbar {
    margin-right: 25px;
    margin-bottom: 0;
}

#list_topbar li a::before {
    content: '';
    float: left;
    margin-right: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: bottom;
}

#list_topbar li a:hover {
    color: #95BC24;
}

#list_topbar li.members a::before {
    background-image: url(assets/img/picto-devenir-adherent.svg);
    width: 20px;
    height: 30px;
}

#list_topbar li.posts a::before {
    background-image: url(assets/img/picto-nos-publications.svg);
    width: 30px;
    height: 30px;
}

#list_topbar li.agenda a::before {
    background-image: url(assets/img/picto-agenda.svg);
    width: 30px;
    height: 30px;
}

#list_topbar li.presse a::before {
    background-image: url(assets/img/picto-espace-presse.svg);
    width: 30px;
    height: 30px;
}

#list_topbar li:not(:last-child) a {
    margin-right: 15px
}

.list_contact {
    margin-bottom: 0;
}

.list_contact li:not(:last-child) a {
    margin-right: 10px;
}

#list_topbar li a,
.list_contact li a,
#main_menu li a,
#main_menu li span {
    font-size: 14px;
    font-weight: 500;
    color: #548c7d;
}

#list_topbar li a,
.list_contact li a {
    vertical-align: sub;
}

.list_contact li.contact a {
    display: inline-block;
    height: 27px;
    padding: 0px 15px;
    line-height: 27px;
    border-radius: 20px;
    background: #548c7d;
    color: #fff;
}

.list_contact li.facebook a,
.list_contact li.instagram a {
    display: block;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: #548c7d;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.list_contact li.contact a:hover,
.list_contact li.instagram a:hover,
.list_contact li.facebook a:hover,
#footer_site .list_contact a {
    background-color: #9fc418;
}

.list_contact li.facebook a {
    background-image: url(assets/img/facebook.svg);
}

.list_contact li.instagram a {
    background-image: url(assets/img/linkedin.svg);
}

/* Nav */

#site_header {
    position: relative;
}

a#logo_site img {
    width: auto;
    height: 95px;
}

#site_header nav {
    height: 100%;
    line-height: 95px;
}

#main_menu {
    margin-bottom: 0;
}

#main_menu > li > a,
#main_menu > li > span {
    position: relative;
    display: block;
    padding: 0 15px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: color 0.5s;
    -o-transition: color 0.5s;
    transition: color 0.5s;
}

#main_menu > li.menu-item-has-children {
    position: relative;
}

#main_menu > li.menu-item-has-children > span,
#main_menu > li.menu-item-has-children > a {
    background-image: url(assets/img/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 10px;
}


@media screen and (min-width: 1390px) {

    #main_menu > li.current-menu-item > a,
    #main_menu > li.current-page-ancestor > a,
    #main_menu > li.current-menu-item > span,
    #main_menu > li.current-menu-item > span,
    #main_menu > li.menu-item-has-children:hover > a,
    #main_menu > li.menu-item-has-children:hover > span,
    #main_menu > li > a:hover,
    #main_menu > li > span:hover {
        color: #9fc418;
    }

    #main_menu > li > a::after,
    #main_menu > li > span::after {
        content: '';
        position: absolute;
        top: 95%;
        left: 0;
        width: 100%;
        height: 4px;
        background: #9fc418;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right;
        -ms-transform-origin: right;
        transform-origin: right;
        -webkit-transition: -webkit-transform 0.5s;
        transition: -webkit-transform 0.5s;
        -o-transition: transform 0.5s;
        transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s;
    }

    #main_menu > li.current-menu-item > span::after,
    #main_menu > li.current-page-ancestor > span::after,
    #main_menu > li.menu-item-has-children:hover > span::after,
    #main_menu > li > span:hover::after,
    #main_menu > li.current-menu-item > a::after,
    #main_menu > li.current-page-ancestor > a::after,
    #main_menu > li.menu-item-has-children:hover > a::after,
    #main_menu > li > a:hover::after {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left;
        -ms-transform-origin: left;
        transform-origin: left;
    }

    #main_menu > li.menu-item-has-children:hover .wrapper-sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(50%, 0);
    }

    .wrapper-sub-menu {
        position: absolute;
        z-index: 99;
        width: 150%;
        top: 100%;
        left: -100%;
        padding: 1.2em 1em;
        background-color: #437467;
        -webkit-box-shadow: 0 5px 14px 0px rgba(30, 49, 44, 0.25);
        box-shadow: 0 5px 14px 0px rgba(30, 49, 44, 0.25);
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;

        opacity: 0;
        visibility: hidden;
        transform: translate(50%, 5%);
        transition: 0.3s all ease;
    }

    .wrapper-sub-menu::before {
        content: '';
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 15px 12px 15px;
        border-color: transparent transparent #437467 transparent;
    }

    .wrapper-sub-menu > .sub-menu {
        position: relative;
        padding-left: 0;
    }

    #main_menu .sub-menu li {
        margin-bottom: 10px;
        padding: 0;
        line-height: 25px;
    }

    #main_menu .sub-menu li a,
    #main_menu .sub-menu li span {
        position: relative;
        padding-left: 15px;
        color: #fff;
        font-size: 16px;
        font-weight: 200;
    }

    #main_menu .sub-menu > li a::before,
    #main_menu .sub-menu > li span::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background-repeat: no-repeat;
        background-image: url(assets/img/arrow-right.svg);
        background-size: cover;
        transition: 0.3s all ease;
    }

    #main_menu .sub-menu li:hover > a::before,
    #main_menu .sub-menu li:hover > span::before {
        left: 2px;
    }

    #main_menu .sub-menu .sub-menu {
        display: block;
    }

    #main_menu .sub-menu > li.menu-item-has-children:first-child {
        margin-bottom: 1em;
    }

    #main_menu .sub-menu > li.menu-item-has-children > a,
    #main_menu .sub-menu > li.menu-item-has-children > span {
        display: block;
        margin-bottom: 0.5em;
        font-size: 18px;
        text-transform: uppercase;
    }

    #main_menu .sub-menu > li.menu-item-has-children > a::before,
    #main_menu .sub-menu > li.menu-item-has-children > span::before {
        display: none;
    }

}


/**************************************/
/**** HOME
/**************************************/

.section_home {
    padding-top: 4.5em;
    padding-bottom: 3.5em;
}

/* Hero */

#hero main {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    padding: 1em 1.8em;
    height: 100%;
    background-color: #548c7d;
}

#hero main::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 40px 40px 0;
    border-color: transparent #548c7d transparent transparent;
}

#hero main h1 {
    max-width: 80%;
    font-size: 3rem;
    color: #fff;
}

#hero main h1 .green {
    font-weight: 700;
    font-size: inherit;
    color: #9fc418;
}

#hero a {
    padding: 10px;
    border-color: #fff;
    color: #fff;
    font-size: 14px;
}

#hero a:hover {
    border-color: transparent;
    color: #9fc418
}

/*
#hero main ul {
    height: 200px;
    margin-bottom: 0;
    overflow: hidden;
}

#hero main ul li {
    float: left;
    width: 33.33%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
*/

#wrapper_slider {
    height: 40vh;
}

/* News */

#list_news {
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 8em;
}

#list_news li a {
    display: block;
    height: 100%;
}

#list_news.home li:first-child {
    width: 100%;
    height: 400px;
    margin-right: 0;
    margin-bottom: 4em;
}

#list_news.home li:first-child .title_news {
    width: 80%;
    bottom: 25px;
}

#list_news.home li:not(:first-child) {
    width: 45%;
}

#list_news.home li {
    margin-right: 10%;
}

#list_news.home li:last-child {
    margin-right: 0;
}

#list_news.formations li {
    width: 46%;
}

#list_news.formations li .date {
    color: #4c7e70;
}

#list_news li {
    position: relative;
    float: left;
    width: 30%;
    margin-right: 3.33%;
    margin-bottom: 3.33%;
    /*    width: 300px;*/
    height: 225px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#list_news li .title_news {
    position: absolute;
    width: 85%;
    height: 150px;
    padding: 10px 20px;
    bottom: 0;
    transform: translateY(80px);
    background: #fff;
    -webkit-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
}

#list_news li:hover .title_news {
    transform: translateY(50px);
}

#list_news li .title_news h3,
#list_news li .title_news h4 {
    font-weight: 700;
    color: #548c7d;
}

.cat_news {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #9fc418;
}

#news aside .custom_title {
    max-width: 80%;
    margin: 0 auto;
}

#list_news.blog {
    padding-bottom: 1em;
}

#list_news.blog li {
    margin-bottom: 6em;
}

#list_news.blog.formations li {
    margin-bottom: 11em;
}

#list_news.blog li .title_news {
    background-color: #ececec;
}


#pagination .page-numbers li {
    display: inline-block;
}

.page-numbers li a,
.page-numbers li span {
    display: block;
    width: 30px;
    height: 30px;
    background: #4c7e70;
    line-height: 30px;
    border-radius: 50%;
    color: #fff;
}

.page-numbers li span.current {
    background-color: #9fc418;
}

/* Adhésion */

#list_adhesion {
    margin: 3.5em 0;
}

#list_adhesion li {
    flex: 1;
    margin-right: 10px;
    margin-bottom: 1em;
    text-align: left;
}

#list_adhesion .for {
    display: block;
    font-family: "Daniel Black";
    font-size: 22px;
    transform: rotate(-5deg);
    transform-origin: center;
}

#list_adhesion li h5 {
    color: #548c7d;
}

.picto_adhesion {
    float: left;
    width: 100px;
    margin-right: 1em;
    height: 130px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Filières */

#filieres {
    position: relative;
    min-height: 650px;
    padding-top: 9em;
    padding-bottom: 5em;
    background-image: url(assets/img/bg-filieres.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

#filieres::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 70px 1900px 0 0;
    border-color: #ffffff transparent transparent transparent;
}

#filieres .custom_title::after {
    content: none;
}

#list_filieres {
    position: relative;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
    z-index: 2;
}

#list_filieres li {
    width: 116px;
    height: 116px;
    margin: 3px;
    cursor: pointer;
}

#list_filieres li img {
    transition: all 0.2s ease;
}

#list_filieres li:hover img {
    transform: scale(1.2);
}

#desc_filiere {
    padding: 3em 3.2em;
    background: #fff;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#desc_filiere .item_filiere .item_desc p,
#desc_filiere .item_filiere .item_desc ul li{
    font-size: 16px !important;
}

.item_desc {
    display: none;
}

.item_desc.active {
    display: block;
    -webkit-animation: slide-to-left .6s ease-in;
    -moz-animation: slide-to-left .6s ease-in;
}

@-webkit-keyframes slide-to-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

/* Labels */

#list_brands {
    margin: 3em 0;
}

#list_brands li {
    position: relative;
    display: inline-block;
    width: 48%;
    margin-right: 1%;
    margin-bottom: 2em;
    cursor: pointer;
}

#list_brands li:hover .wrapper_tooltip {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}

#list_brands li img {
    display: block;
    width: 100px;
    margin: 0 auto 0.5em;
}

#list_brands li h5 {
    font-weight: 700;
    color: #548c7d;
}

.wrapper_tooltip {
    max-width: 300px;
    min-width: 300px;
    position: absolute;
    left: 0;
    -webkit-transform: translate(-75%, -50%);
    -ms-transform: translate(-75%, -50%);
    transform: translate(-75%, -50%);
    top: 50%;
    padding: 25px 20px;
    background-color: #548c7d;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    visibility: hidden;
    z-index: 3;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


.content_tooltip {
    position: relative;
}

.content_tooltip a.custom_btn {
    display: block;
    width: 100%;
}

.content_tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -34px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.5px 0 12.5px 15px;
    border-color: transparent transparent transparent #548c7d;
}

.wrapper_tooltip .content_tooltip * {
    color: #fff;
}

.wrapper_tooltip .content_tooltip p {
    margin-bottom: 5px;
    font-size: 16px;
}

/* Actions */

#actions {
    padding-bottom: 0;
}

#actions p {
    max-width: 75%;
    margin: 0 auto 2em;
    font-size: 18px;
}

/* Chiffres clés */

#key_numbers {
    position: relative;
    padding-bottom: 0;
    background-image: url(assets/img/bg-chiffres-cles.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

#key_numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
}


#key_numbers::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 70px 3000px;
    border-color: transparent transparent #ffffff transparent;
}


.item_numbers {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 1em;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background-color: #548c7d;
    line-height: normal;
}

.item_numbers.first {
    width: 100%;
    min-height: 200px;
}

.item_numbers span,
.item_numbers p {
    display: block;
    color: #fff;
}

.item_numbers span {
    position: relative;
    margin-bottom: -15px;
    font-size: 6rem;
    font-weight: 700;
}

.item_numbers p {
    margin: 0;
    font-size: 22px;
}

.item_numbers.small span {
    font-size: 4.5rem;
}

.item_numbers img {
    position: absolute;
    top: 10px;
    right: 10px;
}

#list_numbers {
    position: relative;
    z-index: 1;
}

#list_numbers li {
    width: 300px;
    min-height: 210px;
}

#list_numbers li:not(:last-child) {
    margin-right: 2.2em;
}

#list_numbers li:not(:last-child):not(:nth-last-child(2)) {
    margin-bottom: 2em;
}

/* Footer */

#footer_site {
    position: relative;
    margin-bottom: 80px;
    padding: 4em 0 1em;
    overflow: hidden;
    background-color: #548c7d;
}

#footer_site::before {
    content: '';
    position: absolute;
    right: -5%;
    top: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    background-color: #487569;
    -msm-transform: skew(-15deg, 0deg);
    -moz-transform: skew(-15deg, 0deg);
    -o-transform: skew(-15deg, 0deg);
    -webkit-transform: skew(-15deg, 0deg);
    transform: skew(-15deg, 0deg);
}

#subfooter {
    margin-top: 3em;
    text-align: center;
}

#subfooter p {
    position: relative;
    margin: 0;
    font-size: 14px;
    color: #a0c3ba;
}

#subfooter a {
    text-decoration: underline;
    color: #a0c3ba;
}

.wrapper_address ul {
    margin-bottom: 1em;
}

.title_footer,
.wrapper_address li:first-child {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

#footer_site label {
    display: block;
}

#footer_site label,
.wrapper_address li {
    color: #fff;
}

#footer_site input {
    outline: 0;
    border: 0;
    padding: 5px;
}

.wrapper_logos {
    text-align: center;
}

.wrapper_logos img {
    height: 50px;
}

.wrapper_logos img:first-child {
    display: block;
    width: auto;
    height: auto;
    margin: 0 auto 10px;
}

.wrapper_logos img:nth-child(2) {
    margin-right: 10px;
}


/* Bandeau partners */

#wrapper_bandeau_partners {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: #fff;
    overflow: hidden;
    z-index: 999;
}

#wrapper_bandeau_partners h5 {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0;
    padding-left: 2em;
    text-transform: uppercase;
    font-size: 16px;
}

.content_bandeau_partners  h5::before {
    content: '';
    position: absolute;
    left: -24px;
    bottom: -24px;
    width: 48px;
    height: 76px;
    background-image: url(assets/img/tiges-footer.png);
}

#wrapper_bandeau_partners ul li {
    padding: 0 5px;
}

#wrapper_bandeau_partners ul li img {
    width: auto;
    height: 50px;
}



/**************************************/
/**** PAGE
/**************************************/

.content_page {
    position: relative;
    padding: 3em 0;
}

.content_page a {
    color: #548C7D;
}

.content_page a:hover {
    color: #9fc418;
}

.content_page h2 {
    font-weight: 500;
    color: #548C7D;
}

.content_page h3 {
    font-weight: 500;
    color: #9fc418;
}

.content_page ul:not(.custom_list):not(.blocks-gallery-grid):not(.page-numbers) li,
.item_desc ul li{
    position: relative;
    padding-left: 20px;
}

.content_page ul:not(.custom_list):not(.blocks-gallery-grid):not(.page-numbers) li::before,
.item_desc ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    background-repeat: no-repeat;
    background-image: url(assets/img/arrow-right.svg);
    background-size: cover;
    vertical-align: middle;
}

#list_subpages {
    margin-bottom: 0;
}

#list_subpages li a {
    position: relative;
    display: block;
    padding: 1em 0.5em;
    font-size: 15px;
    color: #548C7D;

    -webkit-transition: color 0.5s;
    -o-transition: color 0.5s;
    transition: color 0.5s;
}

#list_subpages li a:hover,
#list_subpages li.current_page_item a,
#list_subpages li.current_page_ancestor a {
    color: #9fc418;
}

#list_subpages li a::after,
#list_subpages li.current_page_item a::after,
#list_subpages li.current_page_ancestor a::after {
    content: '';
    position: absolute;
    top: 95%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #9fc418;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

#list_subpages li a:hover::after,
#list_subpages li.current_page_item a::after,
#list_subpages li.current_page_ancestor a::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
}

/* Council */


#list_council li {
    position: relative;
    cursor: pointer;
}

#list_council img,
.btn_filieres img {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#list_council li:hover img,
.btn_filieres a:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.wrapper_tooltip.council {
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    width: 150%;
}

#list_council > li:hover .wrapper_tooltip.council {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -105%);
    -ms-transform: translate(-50%, -105%);
    transform: translate(-50%, -105%);
}

.wrapper_tooltip.council .content_tooltip::after {
    top: 99%;
    right: 50%;
    -webkit-transform: translate(50%, 100%);
    -ms-transform: translate(50%, 100%);
    transform: translate(50%, 100%);
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 35px 0 35px;
    border-color: #548c7d transparent transparent transparent;
}

.wrapper_tooltip.council .content_tooltip ol li {
    margin-bottom: 5px;
}


/**************************************/
/**** ANNUAIRE FORM
/**************************************/

.wrapper_filters {
    position: relative;
    padding: 2.5em 5em;
    background-color: #548c7d;
}

.wrapper_filters > .container-fluid > .row > div:first-of-type {
    padding-right: 4em;
    border-right: 5px solid #609a8b;
}

.wrapper_filters h4,
.custom-control-label {
    font-weight: 500;
    color: #fff;
}

.custom-control-label {
    font-size: 18px;
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: #9fc418;
    background-color: #9fc418;
}

.filtres h4,
.filters {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}

#form_filters,
form .filters .multiselect-native-select .btn-group,
form .filters .multiselect-native-select .dropdown-toggle,
form .filters .multiselect-native-select .multiselect-selected-text {
    width: 100%;
}

form .filters .multiselect-native-select .dropdown-toggle {
    border-bottom: 2px solid #fff;
    border-radius: 0;
    text-align: left;
}

form .filters .multiselect-native-select .dropdown-toggle::after {
    border-top-color: #9fc418;
}

form .filters .multiselect-native-select .multiselect-selected-text {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

form .multiselect-container {
    min-width: 20rem !important;
    padding: 1em !important;
}

form .multiselect-container > li > a > label {
    padding: 3px 20px 3px 10px;
    font-size: 16px;
    color: #548c7d;
}

form .multiselect-container > li > a:focus,
form .filters .multiselect-native-select .dropdown-toggle:focus,
.btn_form:focus {
    outline: 0;
}

form .multiselect-container > li.multiselect-group > a > label,
form .multiselect-container > li.multiselect-all > a > label {
    padding: 3px 0px;
}

form .multiselect-container > li.multiselect-group > a > label b,
form .multiselect-container > li.multiselect-all > a > label {
    font-size: 18px;
    color: #548c7d;
}

form .custom-control {
    padding: 1px 15px 1px 3rem;
    border: 1px solid #387565;
    border-radius: 20px;
}

.options.publications {
    overflow: hidden;
}

.options.publications .custom-switch {
    display: inline-block;
    margin: 0 2px 5px;
}

.options.publications .custom-switch label {
    color: #548c7d;
}

.options.publications .custom-control-input {
    left: 15px;
    z-index: 1;
}

form span.multiselect-native-select {
    position: relative;
    display: block;
    margin-bottom: 0.5em;
}

form.select_cat select {
    border: 0;
    border-bottom: 2px solid #ececec;
    border-radius: 0;
}

#search {
    -webkit-flex: 2;
    -moz-flex: 2;
    -ms-flex: 2;
    -o-flex: 2;
    flex: 2;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    color: #fff;
}

#search::placeholder {
    font-style: italic;
    color: #fff;
}

.wrapper_buttons {
    float: right;
    margin-top: 2em;
}

.btn_form,
.wpcf7-submit,
#btn_form,
#footer_site #mailpoet_form_1 .mailpoet_submit {
    padding: 5px 25px;
    bottom: 0;
    background-color: #9fc418;
    border: 0;
    border-radius: 20px;
    color: #fff;

    transition: background-color 0.3s ease;
}

.btn_form:hover,
.wpcf7-submit:hover,
#btn_form:hover,
#footer_site #mailpoet_form_1 .mailpoet_submit:hover {
    background-color: rgba(159, 196, 24, 0.80);
}

#reset_filters {
    background-color: #467569;
}

#reset_filters:hover {
    background-color: rgba(70, 117, 105, 0.80);
}

#list_members > li {
    position: relative;
    margin-bottom: 1.2em;

    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #fff;
    text-transform: uppercase;
}

#list_members > li::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-image: url(assets/img/arrow-right.svg);
    background-size: cover;
    vertical-align: middle;
}

#list_members > li > a {
    padding: 1.5rem 2.5rem 1.5rem;
    overflow: hidden;
}

#list_members > li > a header {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
}

#list_members > li > a article {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

#list_members > li h3 {
    margin-right: 10px;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

#list_members > li h3,
span.location {
    color: #387565;
}

#list_members .ref,
#list_members .montant  {
    font-size: 16px;
}

.list_terms {
    padding-left: 0;
}

.list_terms li {
    font-size: 14px;
    text-align: right;
}

.list_terms .cat_parent {
    order: 1;
    padding-left: 15px;
    font-weight: 600;
    color: #9fc418;
}


.wrapper_results,
.wrapper_actus,
.wrapper_files {
    min-height: 50vh;
}

/**************************************/
/**** SINGLE MEMBER
/**************************************/

#header_page_member,
#header_page_funder,
#header_page_project {
    margin-bottom: 2.5em;
}

.post_link {
    display: inline-block;
}

.post_link a {
    display: block;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-image: url(assets/img/arrow-right.svg);
    background-size: 35%;
    background-position: center;
    border: 1px solid #575757;
    border-radius: 50%;
}

.post_link.prev {
    transform: rotate(-180deg);
}

.header_member {
    text-transform: uppercase;
}

.header_member h2 {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0;
    font-weight: 600;
}

.header_member span.location {
    display: block;
    margin-bottom: 5px;
}

.header_member .list_terms li {
    display: inline-block;
}

.header_member .list_terms li:first-of-type {
    padding-left: 0;
}

.content_member,
.content_funder,
.content_project {
    padding: 2em 2.5em;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #fff;
}

.products_content p,
.products_content li {
    font-size: 18px;
}

.bloc_contact ul li::before {
    content: none !important;
}

.content_member .bloc_contact .contact_web {
    -webkit-flex: 2;
    -moz-flex: 2;
    -ms-flex: 2;
    -o-flex: 2;
    flex: 2;
}

.content_member .bloc_contact .contact {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}

.content_member .bloc_contact .contact li {
    text-transform: uppercase;
}

.contact_web a {
    font-size: 16px;
    color: #387565;
}

.contact_web .website a::before,
.contact_web .mail a::before {
    content: '';
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url(assets/img/mail.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    vertical-align: text-bottom;
}

.contact_web .website a::before {
    background-image: url(assets/img/right-arrow-angle.svg);
}

.content_member .thumb {
    margin-bottom: 2em;
}

.content_member .wrapper_map {
    width: 100%;
    height: 400px;
}

#membersCarousel {
    margin-bottom: 5em;
}

#membersCarousel .carousel-indicators {
    position: static;
    margin-top: 20px
}

#membersCarousel .carousel-indicators > li {
    width: 100px
}

#membersCarousel .carousel-indicators li img {
    display: block;
    opacity: 0.5
}

#membersCarousel .carousel-indicators li.active img {
    opacity: 1
}

#membersCarousel .carousel-indicators li:hover img {
    opacity: 0.75
}

/**************************************/
/**** SINGLE
/**************************************/

#aside_posts {
    padding: 2em 0;
}

#aside_posts #list_news .title_news {
    background-color: #fff;
}

#aside_posts #list_news li:not(:last-of-type) {
    margin-right: 5%;
}

#aside_posts #list_news li:last-of-type {
    margin-right: 0;
}

/**************************************/
/**** PUBLICATIONS
/**************************************/

#list_files {
    overflow: hidden;
}

#list_files li {
    display: inline-block;
    vertical-align: top;
    width: 22%;
    margin-right: 3%;
    margin-bottom: 3%;
}

#list_files.presse li h6,
#list_files li h5 {
    position: relative;
    color: #35584f;
    font-weight: 700;

}

#list_files li h5 {
    padding-right: 50px;
}

#list_files h5 .cat_thumb {
    position: absolute;
    top: 0;
    right: 0;
}

#list_files .thumb {
    padding: 5px;
    border: 1px solid;
}

#list_files .cat.file {
    display: inline-block;
    font-size: 16px;
    line-height: initial;
}

/**************************************/
/**** AGENDA
/**************************************/

#list_agenda > li {
    position: relative;
    min-height: 120px;
    max-height: 120px;
    margin-bottom: 1.5em;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #fff;
}

#list_agenda .dates {
    width: 20%;
    height: 120px;
    background: #548c7d;
}

.dates li {
    display: block;
    text-align: center;
    font-size: 3.5rem;
    text-transform: uppercase;
    color: #fff;
}

#list_agenda article {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    padding: 10px 1.5em;
}

#list_agenda li h5 {
    color: #548c7d;
    font-weight: 700;
}

.days,
.months {
    padding-left: 0;
    margin-bottom: 0;
}

.days li {
    line-height: 45px;
}

.months li {
    line-height: 26px;
}

.months li:first-of-type {
    font-size: 26px;
}

.months li:last-of-type {
    font-size: 20px;
    letter-spacing: 2px;
}

.dates.single {
    padding: 1em;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #548c7d;
}

.dates.single .days li {
    font-size: 2.5rem;
    line-height: 35px;
}


/**************************************/
/**** TEAM
/**************************************/

#list_ancres {
    margin-bottom: 2em;
}

#list_ancres li {
    margin: 5px;
    border: 2px solid #d2d2d2;
    padding: 5px 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#list_ancres li a {
    text-transform: uppercase;
    font-size: 14px;
}

#list_ancres li a .circle {
    display: inline-block;
    margin-right: 5px;
    width: 15px;
    height: 15px;
    vertical-align: text-bottom;
    border-radius: 50px;
}

.wrapper_team > li {
    margin-bottom: 2%;
}

ul.team li {
    width: 250px;
    min-height: 490px;
    margin: 0 1% 2%;
    border: 1px solid #548c7d;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #fff;
}

div.first_item {
    position: relative;
    float: left;
    width: 245px;
    height: 490px;
    background-color: #548c7d;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

div.first_item h4 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 200;
    color: #fff;
}

div.first_item h4::after {
    content: url(assets/img/fleche-bloc-equipe.png);
    display: block;
    margin-top: 15px;
}

div.first_item h4 strong {
    font-weight: 700;
}

ul.team li .team_thumbnail {
    height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 20px;
}

ul.team li .team_content {
    padding: 1em;
    word-break: break-word;
}

ul.team li .team_content *:not(h5) {
    font-size: 16px;
}

ul.team li .team_content * {
    color: #548c7d;
}

ul.team li .team_content img {
    vertical-align: top;
}

/*
.wrapper_team {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wrapper_team > li {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    margin: 0 10px;
}

.wrapper_team > li.pole_filiere {
    -webkit-flex: 2;
    -moz-flex: 2;
    -ms-flex: 2;
    -o-flex: 2;
    flex: 2;
}

.wrapper_team > li.pole_filiere ul.team {
    justify-content: space-between;
}

.wrapper_team > li.pole_filiere ul.team li {
    width: 48%;
}

ul.team {
    padding-left: 0;
}

ul.team li {
    width: 100%;
    margin-bottom: 1em;
    border: 1px solid #548c7d;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #fff;
}

div.first_item {
    position: relative;
    margin-bottom: 1.5em;
    height: 110px;
    background-color: #548c7d;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

div.first_item::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 15px;
}

div.first_item h4 {
    width: 100%;
    position: absolute;
    margin: 0;
    padding: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
    color: #fff;
    text-align: center;
}

div.first_item h3::after {
    content: url(assets/img/fleche-bloc-equipe.png);
    display: block;
    margin-top: 15px;
}

div.first_item h4 strong {
    font-weight: 700;
}

ul.team li .team_thumbnail {
    height: 240px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 20px;
}

ul.team li .team_content {
    padding: 1em;
    word-break: break-word;
}

ul.team li .team_content span {
    display: inline-block;
    width: 100%;
    line-height: normal;
}

ul.team li .team_content *:not(h5) {
    font-size: 16px;
}

ul.team li .team_content * {
    color: #548c7d;
}

ul.team li .team_content img {
    vertical-align: top;
}

ul.team li .team_content a.lien.mail {
    display: block;
    padding: 5px 10px;
}
*/

/**************************************/
/**** PAGE SIDEBAR
/**************************************/

#header_sidebar_page > div {
    height: 250px;
    width: 200%;
    margin-top: -3em;
    margin-left: -100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom-right-radius: 20px;
}

#header_sidebar_page h2 {
    display: inline-block;
    max-width: 90%;
    margin-top: -20%;
    padding: 20px 30px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #fff;
}

/**************************************/
/**** SIDEBAR
/**************************************/

.content_sidebar {
    padding: 0 1em;
}

.bloc_sidebar {
    margin-bottom: 3em;
}

.bloc_sidebar:not(.button)::after,
.content_member.projet h2::after,
.header_funder .type::after {
    content: '';
    display: block;
    width: 80px;
    height: 7px;
    margin-top: 1em;
    background-color: #9fc418;
}

.content_member.projet h2::after {
    margin-top: 10px;
}

.bloc_sidebar .custom_title .big {
    font-size: 2.2rem;
}

.bloc_sidebar .custom_title::after {
    content: none;
}

.bloc_sidebar a.lien {
    display: block;
}

.bloc_sidebar a.lien.mail::after,
.bloc_sidebar.button a::after {
    content: '';
    float: right;
    width: 25px;
    height: 25px;
    padding: 0;
    background-image: url(assets/img/mail.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bloc_sidebar.contact ul li {
    margin-bottom: 1em;
}

.bloc_sidebar #list_news {
    padding-bottom: 6em;
}

.bloc_sidebar #list_news .title_news {
    background-color: #ECECEC;
}

.bloc_sidebar.button a {
    position: relative;
    padding-left: 120px;
    background-image: url(assets/img/bg-bouton-projet.png);
    background-position: -10%;
    background-repeat: no-repeat;
    background-size: 115px;
    font-weight: 400;
}

.bloc_sidebar.button a.adherent {
    background-image: url(assets/img/bg-bouton-adherent.png);
}

.bloc_sidebar.button a::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    background-image: url(assets/img/arrow-right.svg);
}

.btn_filieres .wp-block-image {
    display: inline-block;
    margin: 0 5px;
    vertical-align: top;
}

.wp-block-image figure {
    margin-bottom: 0;
}

.wp-block-image figcaption {
    font-size: 14px;
    line-height: normal;
    color: #487569;
}

/**************************************/
/**** PROJETS
/**************************************/

.content_project h2 {
    font-weight: 700;
}

#infos_ents article,
#infos_projet article {
    font-size: 18px;
    margin-bottom: 1.5em;
}

#infos_projet {
    padding: 3em;
}

#infos_projet h3 {
    color: #B784A7;
}

#infos_ents .bloc_sidebar a.lien {
    display: inline-block;
}

#infos_ents .bloc_sidebar a.lien.mail::after {
    margin-left: 1em;
}

/* LISTING */

.wrapper_filters.projects h2 {
    color: #fff;
}

.wrapper_filters.projects div.col-lg-9 {
    border-left: 5px solid #609a8b;
}

.wrapper_filters.projects .wrapper_buttons {
    margin-top: 1em;
}

/* Login form */

#loginform {
    display: block;
    width: 340px;
    margin: 0 auto;
    padding: 2em;
    background-color: #fff;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

#loginform .login-username label,
#loginform .login-password label {
    display: block;
    font-weight: 600;
    color: #548C7D;
}

#loginform .login-resetpassword {
    margin-bottom: 1.5em;
}

#loginform .login-resetpassword a {
    font-size: 14px;
    font-style: italic;
}

#loginform .login-submit {
    text-align: center;
}

#loginform input[type='text'],
#loginform input[type='password'] {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #548c7d;
    border-radius: 0;
}

/**************************************/
/**** FINANCEURS
/**************************************/

.options.financeurs {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}

.options.financeurs .form-check {
    padding: 5px 20px 5px 2rem;
    border: 1px solid #fff;
    border-radius: 20px;
}

.options.financeurs .form-check-label {
    color: #fff;
}

.wrapper_results.funders .item_member img {
    max-height: 50px;
}

.header_funder h2 {
    font-weight: 700;
}

.header_funder .type {
    color: #548C7D;
}

.header_funder .type::after {
    height: 5px;
    width: 100px;
}

/**************************************/
/**** FORM
/**************************************/

form .form-group {
    margin-bottom: 2rem;
}

form fieldset {
    position: relative;
    margin-bottom: 2em;
    padding-left: 2.5em;
    border-left: 5px solid #d8d8d8;
}

form label.label {
    margin-left: 5px;
    font-weight: 500;
    color: #4db488;
}

/*
input[type="date"]::before{
   content: "Date de création : ";
   white-space: pre;
}
input[type="date"]:focus::before {
   content:""!important;
}
*/

form #fiche_personne::before,
form #fiche_projet::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -28px;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

form #fiche_personne::before {
    background-image: url(assets/img/picto-personne.png);
}

form #fiche_projet::before {
    background-image: url(assets/img/picto-fiche-projet.png);
}

form legend {
    font-size: 2rem;
}

form h4 {
    font-weight: 700;
    color: #4DB488;
}

form span.wpcf7-form-control-wrap:not(.adherent):not(.autre-projet) {
    display: block;
    margin-bottom: 10px;
}

.wpcf7-form-control-wrap:not(.adherent):not(.autre-projet) .wpcf7-list-item {
    display: block;
}

.wpcf7-form-control-wrap:not(.adherent) .wpcf7-list-item label {
    margin-bottom: 0;
}

form small {
    font-style: italic;
    font-size: 14px;
    color: #b1b1b1;
}

form .is_required::after {
    content: '*';
    margin-left: 5px;
    color: #f20;
}

form span.asterisk {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-size: 1.2rem;
    color: #f20;
}

/* MAILPOET */

#mailpoet_form_1 .mailpoet_validate_success,
#mailpoet_form_1 .mailpoet_validate_error {
    color: #fff;
}


/* TARTE AU CITRON */
body:not(.page-id-2427) #tarteaucitronAlertSmall {
    display: none !important;
}

#tarteaucitronAlertBig #tarteaucitronPersonalize,
#tarteaucitronPercentage,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen {
    background: #548C7D !important;
}


  