@charset "UTF-8";
/* CSS */
/*COULEURS*/
/* CSS */
.top_nav {
  background-color: #0F1327;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.rs_container {
  display: flex;
  align-items: center;
}

.rs_item {
  margin-right: 18px;
  color: #fff;
}
.rs_item:last-child {
  margin-right: 0;
}
.rs_item:hover, .rs_item:focus {
  color: #6FB052;
}

.top_nav_container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  list-style: none;
}

.top_nav_item {
  margin-right: 18px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
}
.top_nav_item a {
  color: #fff;
}
.top_nav_item a:hover {
  color: #6FB052;
}
.top_nav_item:after {
  content: "|";
  color: #6FB052;
  padding-left: 16px;
}
.top_nav_item:last-child {
  margin-right: 0;
}
.top_nav_item:last-child:after {
  content: none;
}

.main_nav {
  background-color: #0F1327;
  padding: 35px 0;
}
@media screen and (max-width: 575px) {
  .main_nav {
    padding: 15px 0;
  }
}

.main_nav_container {
  transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  margin: 0;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #0F1327;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media screen and (max-width: 1199px) {
  .main_nav_container {
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
  }
  .main_nav_container.open {
    visibility: visible;
    opacity: 1;
  }
  .main_nav_container.open li {
    transform: translateY(0px);
    opacity: 1;
  }
  .main_nav_container.open li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .main_nav_container.open li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .main_nav_container.open li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .main_nav_container.open li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .main_nav_container.open li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .main_nav_container.open li:nth-child(6) {
    transition-delay: 0.6s;
  }
  .main_nav_container.open li:nth-child(7) {
    transition-delay: 0.7s;
  }
  .main_nav_container.open li:nth-child(8) {
    transition-delay: 0.8s;
  }
  .main_nav_container.open li:nth-child(9) {
    transition-delay: 0.9s;
  }
  .main_nav_container.open li:nth-child(10) {
    transition-delay: 1s;
  }
  .main_nav_container.open li:nth-child(11) {
    transition-delay: 1.1s;
  }
  .main_nav_container.open li:nth-child(12) {
    transition-delay: 1.2s;
  }
  .main_nav_container.open li:nth-child(13) {
    transition-delay: 1.3s;
  }
  .main_nav_container.open li:nth-child(14) {
    transition-delay: 1.4s;
  }
  .main_nav_container.open li:nth-child(15) {
    transition-delay: 1.5s;
  }
}
@media screen and (min-width: 1200px) {
  .main_nav_container {
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 1;
    background: none;
  }
}
.main_nav_container li {
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  text-align: center;
  margin-bottom: 0.25rem;
  margin-right: 0;
  transform: translateY(-5px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.main_nav_container li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.main_nav_container li i {
  color: #fff;
}
.main_nav_container li a {
  color: #fff;
}
.main_nav_container li a:hover {
  color: #6FB052;
}
@media screen and (min-width: 1200px) {
  .main_nav_container li {
    transition-delay: inherit !important;
    display: inline-block;
    text-align: inherit;
    margin-bottom: 0;
    margin-right: 26px;
    transform: none !important;
    opacity: 1;
    transition: none !important;
  }
}

@media screen and (max-width: 1199px) {
  .top_nav {
    display: none;
  }
}
.header_search {
  text-align: right;
}

.search_container {
  display: flex;
}

input[type=search]#site-search {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 15px 35px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  margin-bottom: 20px;
  background-color: #FCFCFC;
  margin-right: 30px;
}
input[type=search]#site-search::placeholder {
  color: rgba(90, 90, 90, 0.5);
}

.fancybox__content#search {
  background-color: transparent;
  max-width: 90vw;
  width: 100%;
}
.fancybox__content#search .btn_search {
  flex-shrink: 0;
}
@media screen and (max-width: 575px) {
  .fancybox__content#search {
    max-width: 100vw;
    padding: 12px !important;
  }
}
@media screen and (max-width: 400px) {
  .fancybox__content#search .search_container {
    flex-wrap: wrap;
  }
  .fancybox__content#search input[type=search]#site-search {
    margin-right: 0;
  }
  .fancybox__content#search .btn_search {
    margin-left: auto;
    margin-right: auto;
  }
}

.sous_menu {
  list-style: none;
  visibility: hidden;
  opacity: 0;
  margin: 0;
  padding: 20px;
  position: absolute;
  z-index: 0;
  transition: all 0.3s ease-in-out;
  background-color: #0F1327;
}
.sous_menu li {
  display: block !important;
  margin-right: 0;
}
@media screen and (max-width: 1199px) {
  .sous_menu {
    padding: 0;
    position: relative;
  }
  .main_nav_container.open .sous_menu {
    visibility: visible;
    opacity: 1;
  }
  .sous_menu li {
    border-bottom: none;
    padding: 0;
    line-height: 1.6rem;
  }
  .sous_menu li:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    color: green;
    padding-right: 7px;
    color: #fff;
    font-size: 12px;
    vertical-align: middle;
  }
}

.sous_nav:after {
  content: "\f0dd" !important;
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  padding-left: 5px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  vertical-align: center;
}
.sous_nav:hover .sous_menu, .sous_nav:focus .sous_menu {
  visibility: visible;
  opacity: 1;
}
.sous_nav:hover .sous_menu:after, .sous_nav:focus .sous_menu:after {
  color: #6FB052;
}
.sous_nav:hover:after, .sous_nav:focus:after {
  color: #6FB052;
}
@media screen and (max-width: 1199px) {
  .sous_nav:after {
    content: none;
  }
}

@media screen and (max-width: 1199px) {
  .main_nav_lang > a {
    display: none;
  }
  .main_nav_lang .sous_menu li:before {
    content: none;
  }
}
/* CSS */
.banner_homepage {
  background-color: #0F1327;
  padding-top: 80px;
  position: relative;
}
.banner_homepage:before {
  content: "";
  background: url("./../img/bubbles.svg") no-repeat;
  position: absolute;
  top: 10px;
  left: calc(50% - 860px);
  right: 0;
  max-width: 100%;
  height: 200px;
}
@media screen and (max-width: 1712px) {
  .banner_homepage:before {
    left: 0;
  }
}

.slide_homepage_image {
  position: relative;
  margin-bottom: -115px;
}
@media screen and (max-width: 575px) {
  .slide_homepage_image {
    margin-bottom: 50px;
    text-align: center;
  }
}
.slide_homepage_image:before {
  content: "";
  background: url("./../img/circles.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: -43px;
  left: -43px;
  right: 0;
  bottom: 0;
  width: 560px;
  height: 560px;
}
@media screen and (max-width: 1100px) {
  .slide_homepage_image:before {
    width: 385px;
    height: 385px;
    background-size: contain;
  }
}
@media screen and (max-width: 830px) {
  .slide_homepage_image:before {
    width: 335px;
    height: 335px;
  }
}
@media screen and (max-width: 700px) {
  .slide_homepage_image:before {
    width: 285px;
    height: 285px;
  }
}
@media screen and (max-width: 575px) {
  .slide_homepage_image:before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.slide_homepage_text {
  padding-bottom: 70px;
}
@media screen and (max-width: 575px) {
  .slide_homepage_text {
    text-align: center;
  }
}

.slide_homepage_img {
  border-radius: 50%;
  width: 475px;
  height: 475px;
}
@media screen and (max-width: 1100px) {
  .slide_homepage_img {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 830px) {
  .slide_homepage_img {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 700px) {
  .slide_homepage_img {
    width: 200px;
    height: 200px;
  }
}

.splide__pagination {
  bottom: -50px;
  right: auto;
}
@media screen and (max-width: 575px) {
  .splide__pagination {
    left: 0;
    right: 0;
  }
}

.splide__pagination__page.is-active {
  background-color: #6FB052;
}

.splide__pagination__page {
  opacity: 1;
}

.banner_title {
  color: #fff !important;
  margin-bottom: 35px !important;
}
@media screen and (max-width: 575px) {
  .banner_title {
    font-size: 18px !important;
  }
}

.breadcrumb {
  padding: 12px 0 !important;
  background-color: #F7FAFA;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 575px) {
  .breadcrumb {
    padding: 12px 0 !important;
  }
}

.breadcrumb_container {
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  padding-left: 0;
  flex-wrap: wrap;
}

.breadcrumb_item {
  font-size: 1.1255rem;
  font-weight: 500;
}
.breadcrumb_item a {
  color: #5A5A5A;
}
.breadcrumb_item a:hover {
  color: #6FB052;
}
.breadcrumb_item:after {
  content: ">";
  color: #6FB052;
  padding: 0 5px;
}
.breadcrumb_item:last-child {
  margin-right: 0;
}
.breadcrumb_item:last-child:after {
  content: none;
}

.event_section {
  padding: 55px 0 110px 0;
}
.boxesfilters_section .event_section {
  padding: 25px 0 55px 0;
}
@media screen and (max-width: 575px) {
  .event_section {
    padding: 25px 0;
  }
}
.event_section .title_section {
  margin-bottom: 83px;
}

.blog_section {
  padding: 80px 0 110px 0;
  background-color: #F7F7F7;
  position: relative;
}
.boxesfilters_section .blog_section {
  padding: 25px 0 55px 0;
}
.blog_section:last-child {
  padding-bottom: 55px;
  margin-bottom: -55px;
}
@media screen and (max-width: 575px) {
  .blog_section:last-child {
    padding-bottom: 25px;
    margin-bottom: -25px;
  }
}
@media screen and (max-width: 575px) {
  .blog_section {
    padding: 25px 0;
  }
}
.blog_section:after {
  content: "";
  background: url("./../img/blog.svg") no-repeat;
  position: absolute;
  top: calc(50% - 212px);
  right: calc(50% - 950px);
  width: 530px;
  height: 424px;
  z-index: 0;
}
.blog_section .title_section {
  text-align: left;
  padding-left: 30px;
}
.blog_section .title_section .btn_l {
  margin-top: 50px;
}

.publi_section {
  padding: 110px 0 55px 0;
}
.boxesfilters_section .publi_section {
  padding: 25px 0 55px 0;
}
@media screen and (max-width: 575px) {
  .publi_section {
    padding: 25px 0;
  }
}
.publi_section .title_section {
  margin-bottom: 83px;
}
@media screen and (max-width: 575px) {
  .publi_section .title_section {
    margin-bottom: 40px;
  }
}

.fluxrs_section {
  padding: 55px 0;
}
.boxesfilters_section .fluxrs_section {
  padding: 25px 0 55px 0;
}
@media screen and (max-width: 575px) {
  .fluxrs_section {
    padding: 25px 0;
  }
}

.projet_section {
  padding: 80px 0 110px 0;
  background: linear-gradient(to bottom, rgba(100, 102, 241, 0.05), rgba(100, 102, 241, 0.05) 630px, #fff 630px);
  position: relative;
  overflow: hidden;
}
.boxesfilters_section .projet_section {
  padding: 25px 0 55px 0;
}
@media screen and (max-width: 991px) {
  .projet_section {
    padding: 55px 0;
  }
}
@media screen and (max-width: 575px) {
  .projet_section {
    padding: 25px 0;
  }
}
.projet_section:after {
  content: "";
  background: url("./../img/projets.svg") no-repeat;
  position: absolute;
  top: 20px;
  right: calc(50% - 1024px);
  width: 620px;
  height: 610px;
  z-index: -1;
}
.projet_section .title_section {
  text-align: left;
  padding-left: 30px;
  padding-top: 50px;
}
.projet_section .title_section .btn_l {
  margin-top: 50px;
}
@media screen and (max-width: 575px) {
  .projet_section .title_section {
    padding-top: 25px;
  }
}

.card4_section {
  padding: 55px 0;
}
.boxesfilters_section .card4_section {
  padding: 25px 0 55px 0;
}
@media screen and (max-width: 575px) {
  .card4_section {
    padding: 25px 0;
  }
}

.textarea img, .desc img {
  height: auto;
}
@media screen and (max-width: 575px) {
  .textarea img, .desc img {
    float: none !important;
    width: 100%;
    margin: 20px 0;
    object-fit: contain;
    max-height: 200px;
    object-position: center;
  }
  .textarea figure, .desc figure {
    float: none !important;
    width: 100%;
    margin: 20px 0;
  }
  .textarea figure .figure-caption, .desc figure .figure-caption {
    text-align: center;
  }
}
.textarea .table_container, .desc .table_container {
  overflow-x: auto;
}
.textarea p, .desc p {
  margin-bottom: 1em;
  margin-top: 1em;
}
.textarea h1, .textarea h2, .textarea h3, .textarea h4, .textarea h5, .textarea h6, .desc h1, .desc h2, .desc h3, .desc h4, .desc h5, .desc h6 {
  color: #0F1327;
  font-weight: 600 !important;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.textarea h1:first-child, .textarea h2:first-child, .textarea h3:first-child, .textarea h4:first-child, .textarea h5:first-child, .textarea h6:first-child, .desc h1:first-child, .desc h2:first-child, .desc h3:first-child, .desc h4:first-child, .desc h5:first-child, .desc h6:first-child {
  margin-top: 0rem;
}
.textarea h1, .desc h1 {
  font-size: 2.5rem !important;
}
.textarea h2, .desc h2 {
  font-size: 2rem !important;
}
.textarea h3, .desc h3 {
  font-size: 1.75rem !important;
}
.textarea h4, .desc h4 {
  font-size: 1.5rem !important;
}
.textarea h5, .desc h5 {
  font-size: 1.25rem !important;
}
.textarea h6, .desc h6 {
  font-size: 1rem !important;
}
.textarea p a, .textarea li a, .textarea span a, .desc p a, .desc li a, .desc span a {
  color: #5A5A5A;
  border-bottom: 1px solid #6FB052;
  display: inline;
}
.textarea p a:hover, .textarea p a:focus, .textarea li a:hover, .textarea li a:focus, .textarea span a:hover, .textarea span a:focus, .desc p a:hover, .desc p a:focus, .desc li a:hover, .desc li a:focus, .desc span a:hover, .desc span a:focus {
  color: #6FB052;
}
.textarea ul, .desc ul {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding-left: 1rem;
}
.textarea ul li, .desc ul li {
  text-indent: -0.2em;
}
.textarea ul li:before, .desc ul li:before {
  content: "•";
  color: #6FB052;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -0.8em;
  vertical-align: top;
}
.green .textarea ul li:before, .green .desc ul li:before {
  color: #0EA778;
}
.light_green .textarea ul li:before, .light_green .desc ul li:before {
  color: #6FB052;
}
.red .textarea ul li:before, .red .desc ul li:before {
  color: #D93970;
}
.orange .textarea ul li:before, .orange .desc ul li:before {
  color: #FFAB34;
}
.purple .textarea ul li:before, .purple .desc ul li:before {
  color: #862E9C;
}
.blue .textarea ul li:before, .blue .desc ul li:before {
  color: #6466F1;
}
.light_blue .textarea ul li:before, .light_blue .desc ul li:before {
  color: #1D9AF0;
}
.yellow .textarea ul li:before, .yellow .desc ul li:before {
  color: #FFCB02;
}
.light_red .textarea ul li:before, .light_red .desc ul li:before {
  color: #F57F63;
}
.textarea ol, .desc ol {
  list-style: none;
  counter-reset: li;
  margin: 0 0 1.5rem 0;
  padding-left: 1rem;
}
.textarea ol li, .desc ol li {
  counter-increment: li;
  text-indent: -0.2em;
}
.textarea ol li:before, .desc ol li:before {
  content: counter(li);
  color: #6FB052;
  display: inline-block;
  width: 1em;
  margin-left: -1.3em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
  vertical-align: top;
}
.green .textarea ol li:before, .green .desc ol li:before {
  color: #0EA778;
}
.light_green .textarea ol li:before, .light_green .desc ol li:before {
  color: #6FB052;
}
.red .textarea ol li:before, .red .desc ol li:before {
  color: #D93970;
}
.orange .textarea ol li:before, .orange .desc ol li:before {
  color: #FFAB34;
}
.purple .textarea ol li:before, .purple .desc ol li:before {
  color: #862E9C;
}
.blue .textarea ol li:before, .blue .desc ol li:before {
  color: #6466F1;
}
.light_blue .textarea ol li:before, .light_blue .desc ol li:before {
  color: #1D9AF0;
}
.yellow .textarea ol li:before, .yellow .desc ol li:before {
  color: #FFCB02;
}
.light_red .textarea ol li:before, .light_red .desc ol li:before {
  color: #F57F63;
}

table.spip {
  border-radius: 5px;
  border-spacing: 0px;
}

table.spip th {
  color: rgb(255, 255, 255);
  background-color: rgb(111, 176, 82);
}

table.spip td,
table.spip th {
  padding: 5px;
  border: 1px solid rgb(213, 213, 213);
  text-align: left;
  vertical-align: top;
}

table.spip .row_odd {
  background-color: rgb(215, 230, 204);
}

.spip_documents_left {
  float: left;
  margin-right: 1.5em !important;
}

.spip_documents_right {
  float: right;
  margin-left: 1.5em !important;
}

.spip_documents_center {
  clear: both;
  display: block;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.spip_documents,
.spip_documents_center,
.spip_doc_titre,
.spip_doc_descriptif {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.spip_doc_titre,
.spip_doc_descriptif {
  font-size: 0.75rem;
  width: 450px !important;
  max-width: 100%;
}

.spip_documents {
  margin-bottom: 1em;
  margin-top: 1em;
  padding: 0px;
  background: none;
  max-width: 100%;
}

.aside_single {
  box-shadow: 0 12px 20px rgba(136, 136, 136, 0.1);
  padding: 0 20px;
  border-radius: 10px;
  margin-right: 10px;
}

[id^=nb] p {
  font-size: 0.75rem;
  margin: 0;
}
[id^=nb] p a {
  border-bottom-width: 1px;
}

.aside_item {
  padding: 30px 50px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 991px) {
  .aside_item {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .aside_item {
    padding: 15px;
    margin-top: 55px;
  }
}
.aside_item:last-child {
  border-bottom: none;
}
.aside_item .h3 {
  margin-bottom: 16px;
}
.aside_item.green .h3 {
  color: #0EA778;
}
.aside_item.green ul li:before {
  color: #0EA778;
}
.aside_item.green a {
  border-bottom-color: #0EA778;
}
.aside_item.green a:hover, .aside_item.green a:focus {
  color: #0EA778;
}
.aside_item.light_green .h3 {
  color: #6FB052;
}
.aside_item.light_green ul li:before {
  color: #6FB052;
}
.aside_item.light_green a {
  border-bottom-color: #6FB052;
}
.aside_item.light_green a:hover, .aside_item.light_green a:focus {
  color: #6FB052;
}
.aside_item.red .h3 {
  color: #D93970;
}
.aside_item.red ul li:before {
  color: #D93970;
}
.aside_item.red a {
  border-bottom-color: #D93970;
}
.aside_item.red a:hover, .aside_item.red a:focus {
  color: #D93970;
}
.aside_item.orange .h3 {
  color: #FFAB34;
}
.aside_item.orange ul li:before {
  color: #FFAB34;
}
.aside_item.orange a {
  border-bottom-color: #FFAB34;
}
.aside_item.orange a:hover, .aside_item.orange a:focus {
  color: #FFAB34;
}
.aside_item.purple .h3 {
  color: #862E9C;
}
.aside_item.purple ul li:before {
  color: #862E9C;
}
.aside_item.purple a {
  border-bottom-color: #862E9C;
}
.aside_item.purple a:hover, .aside_item.purple a:focus {
  color: #862E9C;
}
.aside_item.blue .h3 {
  color: #6466F1;
}
.aside_item.blue ul li:before {
  color: #6466F1;
}
.aside_item.blue a {
  border-bottom-color: #6466F1;
}
.aside_item.blue a:hover, .aside_item.blue a:focus {
  color: #6466F1;
}
.aside_item.light_blue .h3 {
  color: #1D9AF0;
}
.aside_item.light_blue ul li:before {
  color: #1D9AF0;
}
.aside_item.light_blue a {
  border-bottom-color: #1D9AF0;
}
.aside_item.light_blue a:hover, .aside_item.light_blue a:focus {
  color: #1D9AF0;
}
.aside_item.yellow .h3 {
  color: #FFCB02;
}
.aside_item.yellow ul li:before {
  color: #FFCB02;
}
.aside_item.yellow a {
  border-bottom-color: #FFCB02;
}
.aside_item.yellow a:hover, .aside_item.yellow a:focus {
  color: #FFCB02;
}
.aside_item.light_red .h3 {
  color: #F57F63;
}
.aside_item.light_red ul li:before {
  color: #F57F63;
}
.aside_item.light_red a {
  border-bottom-color: #F57F63;
}
.aside_item.light_red a:hover, .aside_item.light_red a:focus {
  color: #F57F63;
}
.aside_item a {
  display: inline;
  color: #5A5A5A;
  border-bottom: 1px solid #6FB052;
}
.aside_item ul {
  list-style: none;
  margin: 0 0 1.5rem 0;
}
.aside_item ul li:before {
  content: "•";
  color: #6FB052;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  vertical-align: top;
}
.aside_item ol {
  list-style: none;
  counter-reset: li;
  margin: 0 0 1.5rem 0;
}
.aside_item ol li {
  counter-increment: li;
}
.aside_item ol li:before {
  content: counter(li);
  color: #6FB052;
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
  vertical-align: top;
}

.title_page h1 {
  margin-bottom: 35px;
}
@media screen and (max-width: 575px) {
  .title_page h1 {
    margin-bottom: 25px;
  }
}
.single_section .title_page h1 {
  margin-bottom: 1rem;
}
.title_page:last-child h1 {
  margin-bottom: 0px;
}

.single_header {
  padding-bottom: 55px;
}

.single_body {
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .single_body {
    padding-bottom: 55px;
  }
}

.single_top_img {
  height: auto;
  max-width: 100% !important;
}

@media screen and (max-width: 575px) {
  .single_top_img {
    margin-bottom: 30px;
  }
}

.flux_twitter {
  text-align: center;
}

html .eapps-widget-toolbar,
html #eapps-twitter-feed-1 .eapps-link {
  display: none !important;
}

.pages {
    text-align: center;
    padding: 30px 0;
    color: #5A5A5A;
    display: block;
}

/* Liste de pagination (pour tous les contextes) */
.pagination-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
    justify-content: center;
}

/* Items de pagination */
.pagination-item {
    display: inline-block;
}

/* Tous les labels (liens et span) */
.pagination-item-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #6FB052;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Liens de pagination */
.pagination-item-label.lien_pagination {
    color: #fff;
    background-color: #6FB052;
}

.pagination-item-label.lien_pagination:hover,
.pagination-item-label.lien_pagination:focus {
    background-color: #0EA778;
    color: #fff;
}

/* Page active - FOND BLANC avec NUMÉRO VERT */
.pagination-item.on .pagination-item-label,
.pagination-item.active .pagination-item-label {
    background-color: #fff;
    color: #6FB052;
    font-weight: bold;
    border: 2px solid #6FB052;
}

/* Bouton "Tout afficher" (∞) */
.pagination-item.all .pagination-item-label {
    font-size: 24px;
}

/* Ancre de pagination */
.pagination_ancre {
    display: block;
    height: 0;
    overflow: hidden;
}

/* CSS */
.footer_top {
  border-top: 1px solid #cccccc;
  padding: 50px 0;
  margin-top: 55px;
}
@media screen and (max-width: 575px) {
  .footer_top {
    padding: 25px 0;
    margin-top: 25px;
  }
}
.footer_top .rs_container {
  justify-content: flex-end;
}
@media screen and (max-width: 1199px) {
  .footer_top .rs_container {
    justify-content: center;
  }
}
.footer_top .rs_item {
  color: rgba(128, 128, 128, 0.5);
}
.footer_top .rs_item:hover, .footer_top .rs_item:focus {
  color: #6FB052;
}

.footer_logo {
  margin-bottom: 20px;
}

.footer_desc {
  max-width: 220px;
}
@media screen and (max-width: 1199px) {
  .footer_desc {
    margin: 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .footer_desc {
    max-width: 100%;
  }
}

.logo_partner_container {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .logo_partner_container {
    padding-top: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .logo_partner_container {
    flex-wrap: wrap;
  }
}

.logo_partner_item {
  margin: 5px 30px;
  object-fit: contain;
  object-position: center;
  max-height: 100px;
}

.rs_footer_title {
  color: #0F1327;
  font-weight: 600;
  text-align: right;
}
@media screen and (max-width: 1199px) {
  .rs_footer_title {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .rs_footer_title {
    padding-top: 30px;
  }
}

.footer_bottom {
  background-color: #0F1327;
  padding: 16px;
}

.credits, .made_by {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0;
}
.credits a, .made_by a {
  color: rgba(255, 255, 255, 0.6);
}
.credits a:hover, .credits a:focus, .made_by a:hover, .made_by a:focus {
  color: #6FB052;
}

.made_by {
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .credits {
    text-align: center;
    padding-bottom: 5px;
  }
  .footer_col_container {
    text-align: center;
  }
}
.footer_nav_container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1199px) {
  .footer_nav_container {
    justify-content: center;
    padding-bottom: 5px;
  }
}

.footer_nav_item {
  margin-right: 18px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
}
.footer_nav_item a {
  color: rgba(255, 255, 255, 0.6);
}
.footer_nav_item a:hover {
  color: #6FB052;
}
.footer_nav_item:after {
  content: "|";
  color: #6FB052;
  padding-left: 16px;
}
.footer_nav_item:last-child {
  margin-right: 0;
}
.footer_nav_item:last-child:after {
  content: none;
}

/* CSS */
.formulaire_section {
  padding-bottom: 55px;
}
@media screen and (max-width: 575px) {
  .formulaire_section {
    padding-bottom: 25px;
  }
}

.form_container {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 45px;
  border-radius: 10px;
  box-shadow: 0 12px 20px rgba(136, 136, 136, 0.1);
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .form_container {
    padding: 30px 20px;
    margin-right: 0;
  }
}
.form_container .desc {
  font-size: 0.875rem;
  color: rgba(90, 90, 90, 0.8);
}

.form_item {
  width: 100%;
  padding: 0 15px;
}
.form_item:nth-child(1), .form_item:nth-child(2) {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .form_item:nth-child(1), .form_item:nth-child(2) {
    width: 100%;
  }
}
.form_item label {
  display: block;
  margin-bottom: 12px;
}
.form_item textarea, .form_item input[type=text], .form_item input[type=email] {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 15px 35px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  margin-bottom: 20px;
  background-color: #FCFCFC;
}
.form_item textarea::placeholder, .form_item input[type=text]::placeholder, .form_item input[type=email]::placeholder {
  color: rgba(90, 90, 90, 0.5);
}
.form_item textarea {
  min-height: 200px;
}

.asterisk {
  color: #D93970;
  padding-left: 5px;
}

.form_item_checkbox label, .form_item_checkbox input[type=checkbox] {
  display: inline-block;
}
.form_item_checkbox label {
  padding-left: 10px;
}

.submit_container {
  width: 100%;
  text-align: right;
  margin-top: 10px;
  margin-right: 10px;
}

button.btn_l_inverse {
  transition: all 0.3s;
}
button.btn_l_inverse:hover, button.btn_l_inverse:focus {
  background-color: transparent !important;
  color: #6FB052;
}

.aside_contact {
  padding-top: 110px;
}
@media screen and (max-width: 575px) {
  .aside_contact {
    padding-top: 55px;
  }
}
.aside_contact hr {
  color: #6FB052;
  height: 2px !important;
  opacity: 1;
  margin: 60px 0;
}
@media screen and (max-width: 575px) {
  .aside_contact hr {
    margin: 30px 0;
  }
}

.localisation_section {
  padding: 55px 0;
}
@media screen and (max-width: 575px) {
  .localisation_section {
    padding: 25px 0;
  }
}
.localisation_section .h2_title {
  margin-bottom: 30px;
}

.localisation_item {
  margin-bottom: 50px;
}

.localisation_image {
  position: relative;
  text-align: right;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .localisation_image {
    margin-bottom: 30px;
    max-width: 320px;
  }
}
.localisation_image:after {
  content: "";
  border: 1px solid #6FB052;
  border-radius: 10px;
  position: absolute;
  width: 100%;
  height: 100%;
  right: -10px;
  bottom: -10px;
  z-index: 0;
}

.localisation_img {
  border-radius: 10px;
  width: 100%;
  max-height: 200px;
  object-position: center;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.maps {
  width: 100%;
  height: 350px;
  margin-top: 55px;
}
@media screen and (max-width: 575px) {
  .maps {
    margin-top: 25px;
  }
}

.maps img {
  max-width: inherit !important;
}

.contact .footer_top {
  margin-top: 0;
}

body.contact {
  stroke: none;
  stroke-width: 0;
  cursor: default;
}

/* CSS */
body,
.first_section,
.blog_section,
.projet_section {
  overflow-x: hidden;
  max-width: 100%;
}

img, figure {
  max-width: 100%;
}
@media screen and (min-width: 576px) {
  img.float-start, img.spip_documents_left, figure.float-start, figure.spip_documents_left {
    margin-right: 1rem;
  }
  img.float-end, img.spip_documents_right, figure.float-end, figure.spip_documents_right {
    margin-left: 1rem;
  }
}

.blockquote {
  border-left: 4px solid #5A5A5A;
  padding-left: 1rem;
  margin: 1.5rem 0 !important;
}
.green .blockquote {
  border-left: 4px solid #0EA778;
}
.light_green .blockquote {
  border-left: 4px solid #6FB052;
}
.red .blockquote {
  border-left: 4px solid #D93970;
}
.orange .blockquote {
  border-left: 4px solid #FFAB34;
}
.purple .blockquote {
  border-left: 4px solid #862E9C;
}
.blue .blockquote {
  border-left: 4px solid #6466F1;
}
.light_blue .blockquote {
  border-left: 4px solid #1D9AF0;
}
.yellow .blockquote {
  border-left: 4px solid #FFCB02;
}
.light_red .blockquote {
  border-left: 4px solid #F57F63;
}

.row_align_center {
  align-items: center;
}

.row_align_stretch {
  align-items: stretch;
}

.align_center_self {
  align-self: center;
}

.align_left_self {
  align-self: flex-end;
}

.align_center {
  text-align: center;
}

.section {
  padding: 55px 0;
}

.bg_bulles {
  background: url("./../img/bubbles.svg") no-repeat;
  background-size: 100% 200px;
  background-position: center top;
}
@media screen and (max-width: 1024px) {
  .bg_bulles {
    background: none !important;
  }
}

.first_section {
  position: relative;
  padding: 75px 0 55px 0;
  background: url("./../img/bubbles.svg") no-repeat;
  background-size: 100% 200px;
  background-position: center top;
}
@media screen and (max-width: 575px) {
  .first_section {
    padding: 25px 0;
  }
}
@media screen and (max-width: 1024px) {
  .first_section {
    background: none !important;
  }
}
.home .first_section {
  padding: 215px 0 55px 0;
}
.home .first_section:before {
  content: none;
}
@media screen and (max-width: 1100px) {
  .home .first_section {
    padding: 55px 0;
  }
}
@media screen and (max-width: 575px) {
  .home .first_section {
    padding: 25px 0;
  }
}

.title_section {
  margin-bottom: 30px;
}

.sub_title {
  font-family: "futura-pt", sans-serif;
  font-size: 1.375rem;
  line-height: 1.318;
  font-weight: 500 !important;
  color: #6FB052;
}
.green .sub_title {
  color: #0EA778;
}
.light_green .sub_title {
  color: #6FB052;
}
.red .sub_title {
  color: #D93970;
}
.orange .sub_title {
  color: #FFAB34;
}
.purple .sub_title {
  color: #862E9C;
}
.blue .sub_title {
  color: #6466F1;
}
.light_blue .sub_title {
  color: #1D9AF0;
}
.yellow .sub_title {
  color: #FFCB02;
}
.light_red .sub_title {
  color: #F57F63;
}

.h2_title span {
  position: relative;
  z-index: 1;
}
.h2_title span:after {
  content: "";
  height: 26px;
  width: 100%;
  background-color: rgba(14, 167, 120, 0.2);
  position: absolute;
  bottom: -20%;
  left: 0;
  z-index: -1;
}
.green .h2_title span:after {
  background-color: rgba(14, 167, 120, 0.2);
}
.light_green .h2_title span:after {
  background-color: rgba(111, 176, 82, 0.2);
}
.red .h2_title span:after {
  background-color: rgba(217, 57, 112, 0.2);
}
.orange .h2_title span:after {
  background-color: rgba(255, 171, 52, 0.2);
}
.purple .h2_title span:after {
  background-color: rgba(134, 46, 156, 0.2);
}
.blue .h2_title span:after {
  background-color: rgba(100, 102, 241, 0.2);
}
.light_blue .h2_title span:after {
  background-color: rgba(29, 154, 240, 0.2);
}
.yellow .h2_title span:after {
  background-color: rgba(255, 203, 2, 0.2);
}
.light_red .h2_title span:after {
  background-color: rgba(245, 127, 99, 0.2);
}

.background_section {
  background: linear-gradient(to bottom, #fff 12.5%, #F7FAFA 12.5%, #F7FAFA 87.5%, #fff 87.5%);
  padding: 55px 0 85px 0;
}
@media screen and (max-width: 992px) {
  .background_section {
    background: #F7FAFA;
  }
}
@media screen and (max-width: 575px) {
  .background_section {
    padding: 25px 0 40px 0;
  }
}

.aside_sticky {
  position: sticky;
  top: 0;
}

/* CSS */
body {
  font-weight: 400;
  color: #5A5A5A !important;
  font-size: 16px;
  font-family: open-sans, sans-serif !important;
}

a {
  text-decoration: none !important;
  transition: all 0.3s;
  display: inline-block;
}
a:hover {
  color: #6FB052;
}
a.on {
  color: #6FB052 !important;
}
a.on i {
  color: #6FB052;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "open-sans", sans-serif;
  margin: 0;
  font-weight: 600;
  color: #0F1327;
}

.h1, h1 {
  font-size: 2.5rem !important;
  line-height: 1.05;
  font-weight: 700 !important;
}

.h2, h2 {
  font-size: 2rem;
  line-height: 1.3125;
}

.h3, h3 {
  font-size: 1.125rem !important;
  line-height: 1.44;
  font-weight: 700 !important;
}

.h4, h4 {
  font-size: 1.125rem !important;
  line-height: 1.44;
}

.h5, h5 {
  font-size: 1rem !important;
  line-height: 1.1;
}

.h6, h6 {
  font-size: 1rem !important;
  line-height: 1.1;
}

/* CSS */
.btn_container {
  text-align: center;
  padding-top: 20px;
}

.bouton_container {
  position: relative;
  display: inline-block;
  text-align: left;
  color: #5A5A5A;
  cursor: pointer;
}
.bouton_container:hover .btn_icon, .bouton_containerfocus .btn_icon {
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #6FB052;
  border: 1px solid #6FB052;
}
.green .bouton_container:hover .btn_icon, .green .bouton_containerfocus .btn_icon {
  background-color: #0EA778;
  border: 1px solid #0EA778;
}
.light_green .bouton_container:hover .btn_icon, .light_green .bouton_containerfocus .btn_icon {
  background-color: #6FB052;
  border: 1px solid #6FB052;
}
.red .bouton_container:hover .btn_icon, .red .bouton_containerfocus .btn_icon {
  background-color: #D93970;
  border: 1px solid #D93970;
}
.orange .bouton_container:hover .btn_icon, .orange .bouton_containerfocus .btn_icon {
  background-color: #FFAB34;
  border: 1px solid #FFAB34;
}
.purple .bouton_container:hover .btn_icon, .purple .bouton_containerfocus .btn_icon {
  background-color: #862E9C;
  border: 1px solid #862E9C;
}
.blue .bouton_container:hover .btn_icon, .blue .bouton_containerfocus .btn_icon {
  background-color: #6466F1;
  border: 1px solid #6466F1;
}
.light_blue .bouton_container:hover .btn_icon, .light_blue .bouton_containerfocus .btn_icon {
  background-color: #1D9AF0;
  border: 1px solid #1D9AF0;
}
.yellow .bouton_container:hover .btn_icon, .yellow .bouton_containerfocus .btn_icon {
  background-color: #FFCB02;
  border: 1px solid #FFCB02;
}
.light_red .bouton_container:hover .btn_icon, .light_red .bouton_containerfocus .btn_icon {
  background-color: #F57F63;
  border: 1px solid #F57F63;
}
.bouton_container:hover .btn_text, .bouton_containerfocus .btn_text {
  color: #fff;
}

.btn_text {
  padding: 7px 30px 7px 75px;
  margin-bottom: 0;
  display: inline-block;
  transition: color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  color: transparent;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.875rem;
  font-family: "futura-pt", sans-serif;
}

.btn_icon {
  border: 1px solid #cccccc;
  border-radius: 25px;
  display: inline-block;
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 35px;
  padding-left: 11px;
  color: #707070;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  top: 50%;
  transform: translateY(-50%);
}

.box_btn {
  display: block;
  border-radius: 50%;
  border: 1px solid #cccccc;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #707070;
}

.btn_l, .btn_l_inverse {
  border: 1px solid #6FB052;
  border-radius: 10px;
  padding: 15px 30px;
  color: #0F1327;
  text-transform: uppercase;
  font-family: "futura-pt", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
.btn_l i, .btn_l_inverse i {
  padding-right: 15px;
}
.btn_l:hover, .btn_l_inverse:hover, .btn_l:focus, .btn_l_inverse:focus {
  color: #fff;
  background-color: #6FB052;
}
.green .btn_l, .green .btn_l_inverse {
  border: 1px solid #0EA778;
}
.green .btn_l:hover, .green .btn_l_inverse:hover, .green .btn_l:focus, .green .btn_l_inverse:focus {
  background-color: #0EA778;
}
.light_green .btn_l, .light_green .btn_l_inverse {
  border: 1px solid #6FB052;
}
.light_green .btn_l:hover, .light_green .btn_l_inverse:hover, .light_green .btn_l:focus, .light_green .btn_l_inverse:focus {
  background-color: #6FB052;
}
.red .btn_l, .red .btn_l_inverse {
  border: 1px solid #D93970;
}
.red .btn_l:hover, .red .btn_l_inverse:hover, .red .btn_l:focus, .red .btn_l_inverse:focus {
  background-color: #D93970;
}
.orange .btn_l, .orange .btn_l_inverse {
  border: 1px solid #FFAB34;
}
.orange .btn_l:hover, .orange .btn_l_inverse:hover, .orange .btn_l:focus, .orange .btn_l_inverse:focus {
  background-color: #FFAB34;
}
.purple .btn_l, .purple .btn_l_inverse {
  border: 1px solid #862E9C;
}
.purple .btn_l:hover, .purple .btn_l_inverse:hover, .purple .btn_l:focus, .purple .btn_l_inverse:focus {
  background-color: #862E9C;
}
.blue .btn_l, .blue .btn_l_inverse {
  border: 1px solid #6466F1;
}
.blue .btn_l:hover, .blue .btn_l_inverse:hover, .blue .btn_l:focus, .blue .btn_l_inverse:focus {
  background-color: #6466F1;
}
.light_blue .btn_l, .light_blue .btn_l_inverse {
  border: 1px solid #1D9AF0;
}
.light_blue .btn_l:hover, .light_blue .btn_l_inverse:hover, .light_blue .btn_l:focus, .light_blue .btn_l_inverse:focus {
  background-color: #1D9AF0;
}
.yellow .btn_l, .yellow .btn_l_inverse {
  border: 1px solid #FFCB02;
}
.yellow .btn_l:hover, .yellow .btn_l_inverse:hover, .yellow .btn_l:focus, .yellow .btn_l_inverse:focus {
  background-color: #FFCB02;
}
.light_red .btn_l, .light_red .btn_l_inverse {
  border: 1px solid #F57F63;
}
.light_red .btn_l:hover, .light_red .btn_l_inverse:hover, .light_red .btn_l:focus, .light_red .btn_l_inverse:focus {
  background-color: #F57F63;
}

.btn_l_inverse {
  background-color: #6FB052;
  color: #fff;
}
.btn_l_inverse:hover, .btn_l_inverse:focus {
  background-color: transparent;
}

.btn_search {
  appearance: none;
  -webkit-appearance: none;
  width: 55px;
  height: 55px;
  border: 1px solid #6FB052;
  border-radius: 50%;
  background-color: transparent;
}
.btn_search i {
  color: #fff;
}
.btn_search:hover, .btn_search:focus {
  background-color: #6FB052;
}

/* CSS */
.hamburger-icon {
  width: 40px;
  height: 30px;
  position: relative;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
  z-index: 9999;
}
@media screen and (min-width: 1200px) {
  .hamburger-icon {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .hamburger-icon {
    margin: 0 0 0 auto;
  }
}
.hamburger-icon span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #6FB052;
  border-radius: 6px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.hamburger-icon span:nth-child(1) {
  top: 0px;
}
.hamburger-icon span:nth-child(2), .hamburger-icon span:nth-child(3) {
  top: 12px;
}
.hamburger-icon span:nth-child(4) {
  top: 24px;
}
.hamburger-icon.open span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}
.hamburger-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}
.hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.hamburger-icon.open span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

/* CSS */
.section-1 {
  padding: 55px 0;
}
@media screen and (max-width: 575px) {
  .section-1 {
    padding: 25px 0;
  }
}

.boxes_container {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.boxes_titles {
  align-self: center;
  width: calc(33.333% - 24px);
  margin: 0 12px 30px 12px;
}
@media screen and (max-width: 992px) {
  .boxes_titles {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 768px) {
  .boxes_titles {
    width: calc(100% - 24px);
  }
}

.box_item {
  border: 1px solid #cccccc;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s;
  width: calc(33.333% - 24px);
  margin: 0 12px 30px 12px;
}
@media screen and (max-width: 991px) {
  .box_item {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 767px) {
  .box_item {
    width: calc(100% - 24px);
  }
}
.projet_section .box_item {
  width: calc(50% - 24px);
}
@media screen and (max-width: 767px) {
  .projet_section .box_item {
    width: calc(100% - 24px);
  }
}
.box_item .bouton_container {
  margin-top: auto;
}
.green .box_item:focus, .green .box_item:hover {
  background-color: #eef6f5;
  border: 1px solid #eef6f5;
}
.blue .box_item:focus, .blue .box_item:hover {
  background-color: #ececfd;
  border: 1px solid #ececfd;
}
.light_blue .box_item:focus, .light_blue .box_item:hover {
  background-color: #def0fc;
  border: 1px solid #def0fc;
}

.box_desc {
  color: #5A5A5A;
}

.box_picto {
  height: 50px;
  width: auto;
  margin-bottom: 12px;
}

.boxesfilters_section {
  padding: 40px 0 110px 0;
}
.boxesfilters_section.blue {
  background: linear-gradient(to bottom, rgba(100, 102, 241, 0.05), rgba(100, 102, 241, 0.05) 730px, #fff 730px);
}
.boxesfilters_section.orange {
  background: linear-gradient(to bottom, #F7F7F7, #F7F7F7 730px, #fff 730px);
}
@media screen and (max-width: 575px) {
  .boxesfilters_section {
    padding: 20px 0;
  }
}

.filters_container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 10px;
  margin-left: -12px;
  margin-right: -12px;
}

.blog_section .filter_item select {
  background-color: #fff;
}

.filter_item {
  width: 12.5%;
  margin-right: 12px;
  margin-left: 12px;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
}
.filter_item select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  padding: 8px 25px 8px 15px;
  background-color: #F7F7F7;
}
.filter_item:hover {
  cursor: pointer;
}
.filter_item:after {
  content: "▾";
  position: absolute;
  top: 8px;
  right: 15px;
}
@media screen and (max-width: 1399px) {
  .filter_item {
    width: calc(25% - 24px);
  }
}
@media screen and (max-width: 991px) {
  .filter_item {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 575px) {
  .filter_item {
    width: calc(100% - 24px);
  }
}

.filters_title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-right: 12px;
  margin-left: 12px;
}

.reset {
  margin-bottom: 20px;
  margin-right: 12px;
  margin-left: 12px;
  color: #5A5A5A;
}
.reset:hover, .resetfocus {
  color: #6FB052;
}

/* CSS */
.card_container, .card_container_3 {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.card_item {
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 12px 20px rgba(136, 136, 136, 0.1);
  background-color: #fff;
  border-radius: 10px;
  margin: 0 12px 30px 12px;
  width: calc(50% - 24px);
  z-index: 2;
}
.blog_section .card_item {
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .card_item {
    width: calc(100% - 24px);
  }
}
@media screen and (max-width: 575px) {
  .card_item {
    flex-direction: column;
  }
}
.card_item:hover, .card_item:focus {
  transform: translateY(-5px);
}

@media screen and (min-width: 968px) {
  .card_container_3 .card_item {
    width: calc(33.3333% - 24px);
  }
}
.card_container_3 .card_item .card_title {
  font-weight: 600 !important;
}
.event_section .card_container_3 .card_item {
  margin: 30px 12px 30px 12px;
}
.event_section .card_container_3 .card_item .bouton_container {
  display: none;
}
.publi_section .card_container_3 .card_item {
  flex-direction: column;
  width: calc(33.333% - 24px);
}
@media screen and (max-width: 992px) {
  .publi_section .card_container_3 .card_item {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 768px) {
  .publi_section .card_container_3 .card_item {
    width: calc(100% - 24px);
  }
}
.publi_section .card_container_3 .card_item .bouton_container {
  margin-top: 30px;
}
.blog_section .card_container_3 .card_item {
  flex-direction: column;
}
.boxesgrid_section .card_container_3 .card_item {
  width: calc(33.333% - 24px);
  min-height: 200px;
}
@media screen and (max-width: 992px) {
  .boxesgrid_section .card_container_3 .card_item {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 768px) {
  .boxesgrid_section .card_container_3 .card_item {
    width: calc(100% - 24px);
  }
}
.boxesgrid_section .card_container_3 .card_item:hover .card_image:after, .boxesgrid_section .card_container_3 .card_item:hover .card_image:before, .boxesgrid_section .card_container_3 .card_item:focus .card_image:after, .boxesgrid_section .card_container_3 .card_item:focus .card_image:before {
  opacity: 1;
  visibility: visible;
}
.card4_section .card_container_3 .card_item {
  width: calc(20% - 24px);
  flex-direction: column;
  box-shadow: none;
}
@media screen and (max-width: 1199px) {
  .card4_section .card_container_3 .card_item {
    width: calc(25% - 24px);
  }
}
@media screen and (max-width: 992px) {
  .card4_section .card_container_3 .card_item {
    width: calc(33.333% - 24px);
  }
}
@media screen and (max-width: 767px) {
  .card4_section .card_container_3 .card_item {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 575px) {
  .card4_section .card_container_3 .card_item {
    width: 100%;
  }
}
.card4_section .card_container_3 .card_item:hover .card_text, .card4_section .card_container_3 .card_item:focus .card_text {
  background-color: #6FB052;
  border: 1px solid #6FB052;
}
.card4_section .card_container_3 .card_item:hover .card_title, .card4_section .card_container_3 .card_item:focus .card_title {
  color: #fff;
}
.card4_section.green .card_container_3 .card_item:hover .card_text, .card4_section.green .card_container_3 .card_item:focus .card_text {
  background-color: #0EA778;
  border: 1px solid #0EA778;
}
.card4_section.light_green .card_container_3 .card_item:hover .card_text, .card4_section.light_green .card_container_3 .card_item:focus .card_text {
  background-color: #6FB052;
  border: 1px solid #6FB052;
}
.card4_section.red .card_container_3 .card_item:hover .card_text, .card4_section.red .card_container_3 .card_item:focus .card_text {
  background-color: #D93970;
  border: 1px solid #D93970;
}
.card4_section.orange .card_container_3 .card_item:hover .card_text, .card4_section.orange .card_container_3 .card_item:focus .card_text {
  background-color: #FFAB34;
  border: 1px solid #FFAB34;
}
.card4_section.purple .card_container_3 .card_item:hover .card_text, .card4_section.purple .card_container_3 .card_item:focus .card_text {
  background-color: #862E9C;
  border: 1px solid #862E9C;
}
.card4_section.blue .card_container_3 .card_item:hover .card_text, .card4_section.blue .card_container_3 .card_item:focus .card_text {
  background-color: #6466F1;
  border: 1px solid #6466F1;
}
.card4_section.light_blue .card_container_3 .card_item:hover .card_text, .card4_section.light_blue .card_container_3 .card_item:focus .card_text {
  background-color: #1D9AF0;
  border: 1px solid #1D9AF0;
}
.card4_section.yellow .card_container_3 .card_item:hover .card_text, .card4_section.yellow .card_container_3 .card_item:focus .card_text {
  background-color: #FFCB02;
  border: 1px solid #FFCB02;
}
.card4_section.light_red .card_container_3 .card_item:hover .card_text, .card4_section.light_red .card_container_3 .card_item:focus .card_text {
  background-color: #F57F63;
  border: 1px solid #F57F63;
}

.card_image {
  width: 45%;
  height: 100%;
}
@media screen and (max-width: 575px) {
  .card_image {
    width: 100%;
  }
}

.card_references{
width: 100%;
  height: 45%;      /* tu peux ajuster la hauteur comme tu veux */
  overflow: hidden;   /* pour couper les parties de l'image qui dépassent */

}


.img_references{
width: 100%;
  height: 100%;
  object-fit: cover;      /* Remplit le conteneur sans déformation */
  object-position: center;/* Centre l'image */
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.blog_section .card_image {
  width: 100%;
}
.publi_section .card_image {
  display: none;
}
.boxesgrid_section .card_image {
  position: relative;
}
.boxesgrid_section .card_image:after {
  content: "+";
  font-size: 5rem;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.boxesgrid_section .card_image:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(111, 176, 82, 0.7);
  border-radius: 10px 0 0 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.boxesgrid_section.yellow .card_image:before {
  background-color: rgba(255, 203, 2, 0.7);
}
.card4_section .card_image {
  width: 100%;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  border: 1px solid #cccccc;
  border-bottom: none;
}

.card_text {
  width: 55%;
  padding: 40px 20px;
  color: #5A5A5A;
}
@media screen and (max-width: 575px) {
  .card_text {
    width: 100%;
  }
}
.blog_section .card_text, .publi_section .card_text {
  width: 100%;
  padding: 30px 35px;
}
.card4_section .card_text {
  width: 100%;
  text-align: center;
  border: 1px solid #cccccc;
  padding: 10px 20px;
  border-radius: 0 0 10px 10px;
  transition: all 0.3s;
}
.card4_section .card_text .card_title {
  transition: all 0.3s;
  margin-bottom: 0;
}

.card_img {
  border-radius: 10px 0 0 10px;
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.card4_section .card_img {
  object-fit: contain;
}
@media screen and (max-width: 575px) {
  .card_img {
    max-height: 185px;
    border-radius: 10px 10px 0 0;
  }
}
.blog_section .card_img {
  border-radius: 10px 10px 0 0;
  max-height: 185px;
}
.cards_3_container .card_img {
  object-fit: contain;
}

.blog_section .card_tag_container, .publi_section .card_tag_container {
  display: flex;
  justify-content: space-between;
}

.card_tag {
  font-size: 0.875rem;
}
.card_tag i {
  padding-right: 10px;
  font-size: 1.125rem;
}
.green .card_tag i {
  color: #0EA778;
}
.light_green .card_tag i {
  color: #6FB052;
}
.red .card_tag i {
  color: #D93970;
}
.orange .card_tag i {
  color: #FFAB34;
}
.purple .card_tag i {
  color: #862E9C;
}
.blue .card_tag i {
  color: #6466F1;
}
.light_blue .card_tag i {
  color: #1D9AF0;
}
.yellow .card_tag i {
  color: #FFCB02;
}
.light_red .card_tag i {
  color: #F57F63;
}

.event_section .card_tag_date {
  display: none;
}

.publi_section .card_desc {
  display: none;
}

.macaron_date {
  width: 86px;
  height: 86px;
  background-color: #D93970;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 1;
  display: none;
}
.event_section .macaron_date {
  display: flex;
}

.card_date {
  color: #fff;
  font-weight: 700;
  line-height: 1.19;
  margin: auto;
}

.boxesgrid_section {
  padding: 0 0 55px 0;
}
@media screen and (max-width: 575px) {
  .boxesgrid_section {
    padding: 0 0 25px 0;
  }
}
.boxesgrid_section .h2_title {
  margin-bottom: 40px;
}
@media screen and (max-width: 575px) {
  .boxesgrid_section .h2_title {
    margin-bottom: 20px;
  }
}
.boxesgrid_section.no_title .h2_title {
  display: none;
}

.card4_section.background_section {
  background: linear-gradient(to bottom, #F7FAFA, #F7FAFA 215px, #fff 215px);
}
.card4_section .h2_title {
  margin-bottom: 40px;
}

.box_twitter_item {
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 12px 20px rgba(136, 136, 136, 0.1);
  background-color: #fff;
  border-radius: 10px;
  margin: 0 12px 30px 12px;
  flex-direction: column;
  width: calc(33.333% - 24px);
  padding: 20px;
  color: #5A5A5A !important;
}
@media screen and (max-width: 992px) {
  .box_twitter_item {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 768px) {
  .box_twitter_item {
    width: calc(100% - 24px);
  }
}
.box_twitter_item:hover, .box_twitter_item:focus {
  transform: translateY(-5px);
}

.tweet_avatar {
  margin-right: 15px;
  flex-shrink: 0;
}

.tweet_avatar_img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  object-position: center;
  object-fit: contain;
}

.tweet_head {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

.tweet_head_info {
  font-weight: bold;
}
.tweet_head_info span {
  color: #657786;
  font-weight: normal;
  margin-left: 5px;
}
.tweet_head_info p {
  font-weight: normal;
  margin-top: 5px;
}

.tweet_body {
  display: flex;
  margin-top: 10px;
}
.tweet_body .tweet_comments,
.tweet_body .tweet_retweets,
.tweet_body .tweet_likes {
  display: flex;
  margin-right: 20px;
}
.tweet_body i {
  color: #1D9AF0;
  margin-right: 10px;
}

/* CSS */
.sc_image {
  position: relative;
  text-align: right;
  margin-right: 30px;
}
@media screen and (max-width: 992px) {
  .sc_image {
    text-align: center;
    margin: 50px auto 0;
    max-width: 320px;
  }
}
@media screen and (max-width: 400px) {
  .sc_image {
    text-align: left;
    max-width: 275px;
    margin: 50px 0 0 0;
  }
}
.sc_image:after {
  content: "";
  border: 1px solid #6FB052;
  border-radius: 10px;
  position: absolute;
  width: 100%;
  max-width: 570px;
  height: 100%;
  right: -30px;
  bottom: -30px;
  z-index: 0;
}

.sc_img {
  border-radius: 10px;
  width: 100%;
  max-width: 570px;
  max-height: 600px;
  object-position: center;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.separation_content_container .h2_title {
  margin-bottom: 40px;
}
.separation_content_container .desc {
  padding-bottom: 20px;
}
/*# sourceMappingURL=main.css.map */




