/** END FONCTIONS **/
body {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
#main {
  overflow: hidden;
}
.conteneur {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 90;
  opacity: 0.2;
  background-color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
div,
li,
span,
td {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 1.3;
  color: #303033;
}
h1.or,
h2.or,
h3.or,
h4.or,
h5.or,
h6.or,
p.or,
a.or,
div.or,
li.or,
span.or,
td.or {
  color: #e7c08a;
}
h1.blanc,
h2.blanc,
h3.blanc,
h4.blanc,
h5.blanc,
h6.blanc,
p.blanc,
a.blanc,
div.blanc,
li.blanc,
span.blanc,
td.blanc {
  color: #fff;
}
.center {
  text-align: center;
}
a {
  text-decoration: none;
}
.btn,
#main a.fl-button,
#main .gform_footer input[type="submit"],
#main .gform_page_footer input[type="submit"],
#main .gform_footer input[type="button"],
#main .gform_page_footer input[type="button"] {
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-appearance: none;
  font-size: 14px;
  line-height: 40px;
  padding: 0 35px;
  border: 2px solid #e31818;
  height: 44px;
  color: #fff;
  display: inline-block;
  background-color: #e31818;
  font-weight: 600;
  border-radius: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.btn span,
#main a.fl-button span,
#main .gform_footer input[type="submit"] span,
#main .gform_page_footer input[type="submit"] span,
#main .gform_footer input[type="button"] span,
#main .gform_page_footer input[type="button"] span {
  color: #fff;
}
.btn:after,
#main a.fl-button:after,
#main .gform_footer input[type="submit"]:after,
#main .gform_page_footer input[type="submit"]:after,
#main .gform_footer input[type="button"]:after,
#main .gform_page_footer input[type="button"]:after {
  content: "\f061";
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-left: 5px;
  font-size: 12px;
  font-weight: 100;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.btn:hover,
#main a.fl-button:hover,
#main .gform_footer input[type="submit"]:hover,
#main .gform_page_footer input[type="submit"]:hover,
#main .gform_footer input[type="button"]:hover,
#main .gform_page_footer input[type="button"]:hover {
  background-color: #bf1414;
  border-color: #bf1414;
  border-radius: 5px;
}
.btn:hover:after,
#main a.fl-button:hover:after,
#main .gform_footer input[type="submit"]:hover:after,
#main .gform_page_footer input[type="submit"]:hover:after,
#main .gform_footer input[type="button"]:hover:after,
#main .gform_page_footer input[type="button"]:hover:after {
  transform: translateX(5px);
}
/** HEADER **/
/* MENU */
/*MENU MOBILE*/
header#masthead.mobile {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header#masthead.mobile #header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header#masthead.mobile #logo {
  z-index: 10;
  display: inline-block;
}
header#masthead.mobile #logo img {
  box-sizing: content-box;
  z-index: 10;
  width: 60px;
  margin: 20px;
  border-radius: 50%;
  box-shadow: -4px 4px 20px 0px rgba(42, 43, 47, 0.4);
}
header#masthead.mobile .btn_toggle {
  height: 80px;
  width: 65px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
header#masthead.mobile .btn_toggle span {
  width: 25px;
  height: 2px;
  border-radius: 1px;
  background-color: #ffffff;
  margin: 2px auto;
}
header#masthead.mobile .sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -320px;
  z-index: 100;
  width: 320px;
  background-color: #fff;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
header#masthead.mobile .sidebar .top {
  position: relative;
}
header#masthead.mobile .sidebar .top .close {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 32px;
  width: 32px;
  z-index: 10;
  background-color: #e6e6e6;
  border-radius: 50%;
}
header#masthead.mobile .sidebar .top .close span {
  width: 16px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 15px;
  left: 8px;
}
header#masthead.mobile .sidebar .top .close span:nth-of-type(1) {
  transform: rotate(45deg);
}
header#masthead.mobile .sidebar .top .close span:nth-of-type(2) {
  transform: rotate(-45deg);
}
header#masthead.mobile .sidebar nav {
  height: 100%;
  overflow: auto;
  padding-top: 52px;
  opacity: 0;
  transform: translateX(50px);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition-delay: 0.2s;
}
header#masthead.mobile .sidebar nav > div {
  height: 100%;
}
header#masthead.mobile .sidebar nav > div #primary-menu {
  overflow: auto;
  padding-bottom: 62px;
  box-sizing: border-box;
}
header#masthead.mobile .sidebar nav > div #primary-menu .menu-item {
  position: relative;
}
header#masthead.mobile .sidebar nav > div #primary-menu .menu-item a,
header#masthead.mobile .sidebar nav > div #primary-menu .menu-item span {
  color: #000;
  padding: 15px 50px;
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
}
header#masthead.mobile .sidebar nav > div #primary-menu .menu-item.menu-item-has-children > a,
header#masthead.mobile .sidebar nav > div #primary-menu .menu-item.menu-item-has-children span {
  padding-right: 80px;
}
header#masthead.mobile .sidebar nav > div #primary-menu .menu-item.menu-item-has-children .sub-menu {
  background: #e6e6e6;
  display: none;
  padding: 10px 0;
}
header#masthead.mobile .sidebar nav > div #primary-menu .menu-item.menu-item-has-children .sub-menu a,
header#masthead.mobile .sidebar nav > div #primary-menu .menu-item.menu-item-has-children .sub-menu span {
  font-weight: 300;
  font-size: 16px;
}
header#masthead.mobile .sidebar nav > div #primary-menu .menu-item.menu-item-has-children .next {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #e6e6e6;
  top: 9px;
  right: 50px;
  border-radius: 50%;
}
header#masthead.mobile .sidebar nav > div #primary-menu .menu-item.menu-item-has-children .next:after {
  content: '';
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  top: 10px;
  left: 11px;
}
header#masthead.mobile .sidebar.open {
  right: 0;
}
header#masthead.mobile .sidebar.open nav {
  opacity: 1;
  transform: translateX(0);
}
#langue {
  position: absolute;
  top: 0;
  right: 90px;
  height: 100px;
  display: flex;
  align-items: center;
}
.wpml-ls-legacy-dropdown-click {
  width: 45px;
}
.wpml-ls-legacy-dropdown-click a {
  color: #fff;
  border: none;
  background-color: transparent;
  padding: 0 !important;
  display: block;
  height: 30px;
}
.wpml-ls-legacy-dropdown-click a:hover,
.wpml-ls-legacy-dropdown-click a:focus {
  background-color: transparent !important;
  color: #fff !important;
}
.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
  content: "";
  vertical-align: middle;
  display: inline-block;
  border: 0.25em solid transparent;
  border-top: 0.3em solid;
  position: absolute;
  right: 0;
  top: calc(50% - 0.175em);
}
.wpml-ls-legacy-dropdown-click a img {
  display: inline-block;
}
.wpml-ls-legacy-dropdown-click .wpml-ls-flag {
  width: 30px;
  height: 30px;
}
.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  padding: 10px 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 5px;
  text-align: center;
  position: absolute;
  width: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu li:not(:last-of-type) {
  margin-bottom: 10px;
}
#recherche .toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  cursor: pointer;
}
#recherche .bloc {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: rgba(39, 42, 47, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  z-index: 200;
}
#recherche .bloc .toggle {
  bottom: initial;
  left: initial;
  right: 20px;
  top: 20px;
  position: absolute;
  color: #fff;
  font-size: 20px;
}
#recherche form .screen-reader-text {
  clip: initial;
  width: auto;
  height: auto;
  clip-path: initial;
  color: #fff;
  position: relative;
}
#recherche.open .bloc {
  opacity: 1;
  visibility: visible;
}
#recherche .wp-block-search__input {
  border: none;
}
#recherche .wp-block-search__button {
  margin: 0;
  border: 0;
  background-color: #e7c08a;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
#recherche .wp-block-search__button:hover {
  background-color: #e31818;
}
/* */
/** END HEADER **/
/** CONSTRUCTEUR DE PAGE **/
.fl-rich-text p,
.fl-accordion-content p,
.fl-tabs p,
.fl-rich-text li,
.fl-accordion-content li,
.fl-tabs li,
.fl-rich-text h1,
.fl-accordion-content h1,
.fl-tabs h1,
.fl-rich-text h2,
.fl-accordion-content h2,
.fl-tabs h2,
.fl-rich-text h3,
.fl-accordion-content h3,
.fl-tabs h3,
.fl-rich-text h4,
.fl-accordion-content h4,
.fl-tabs h4,
.fl-rich-text h5,
.fl-accordion-content h5,
.fl-tabs h5,
.fl-rich-text h6,
.fl-accordion-content h6,
.fl-tabs h6,
.fl-rich-text tr,
.fl-accordion-content tr,
.fl-tabs tr {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 1.5;
  margin-bottom: 20px;
}
.fl-rich-text p strong,
.fl-accordion-content p strong,
.fl-tabs p strong,
.fl-rich-text li strong,
.fl-accordion-content li strong,
.fl-tabs li strong,
.fl-rich-text h1 strong,
.fl-accordion-content h1 strong,
.fl-tabs h1 strong,
.fl-rich-text h2 strong,
.fl-accordion-content h2 strong,
.fl-tabs h2 strong,
.fl-rich-text h3 strong,
.fl-accordion-content h3 strong,
.fl-tabs h3 strong,
.fl-rich-text h4 strong,
.fl-accordion-content h4 strong,
.fl-tabs h4 strong,
.fl-rich-text h5 strong,
.fl-accordion-content h5 strong,
.fl-tabs h5 strong,
.fl-rich-text h6 strong,
.fl-accordion-content h6 strong,
.fl-tabs h6 strong,
.fl-rich-text tr strong,
.fl-accordion-content tr strong,
.fl-tabs tr strong {
  font-weight: bold;
}
.fl-rich-text p a,
.fl-accordion-content p a,
.fl-tabs p a,
.fl-rich-text li a,
.fl-accordion-content li a,
.fl-tabs li a,
.fl-rich-text h1 a,
.fl-accordion-content h1 a,
.fl-tabs h1 a,
.fl-rich-text h2 a,
.fl-accordion-content h2 a,
.fl-tabs h2 a,
.fl-rich-text h3 a,
.fl-accordion-content h3 a,
.fl-tabs h3 a,
.fl-rich-text h4 a,
.fl-accordion-content h4 a,
.fl-tabs h4 a,
.fl-rich-text h5 a,
.fl-accordion-content h5 a,
.fl-tabs h5 a,
.fl-rich-text h6 a,
.fl-accordion-content h6 a,
.fl-tabs h6 a,
.fl-rich-text tr a,
.fl-accordion-content tr a,
.fl-tabs tr a {
  font-weight: bold;
  border-bottom: 2px solid;
  color: #e31818;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.fl-rich-text p a:hover,
.fl-accordion-content p a:hover,
.fl-tabs p a:hover,
.fl-rich-text li a:hover,
.fl-accordion-content li a:hover,
.fl-tabs li a:hover,
.fl-rich-text h1 a:hover,
.fl-accordion-content h1 a:hover,
.fl-tabs h1 a:hover,
.fl-rich-text h2 a:hover,
.fl-accordion-content h2 a:hover,
.fl-tabs h2 a:hover,
.fl-rich-text h3 a:hover,
.fl-accordion-content h3 a:hover,
.fl-tabs h3 a:hover,
.fl-rich-text h4 a:hover,
.fl-accordion-content h4 a:hover,
.fl-tabs h4 a:hover,
.fl-rich-text h5 a:hover,
.fl-accordion-content h5 a:hover,
.fl-tabs h5 a:hover,
.fl-rich-text h6 a:hover,
.fl-accordion-content h6 a:hover,
.fl-tabs h6 a:hover,
.fl-rich-text tr a:hover,
.fl-accordion-content tr a:hover,
.fl-tabs tr a:hover {
  box-shadow: 0 1px 0 0 #e31818;
}
.fl-rich-text ul,
.fl-accordion-content ul,
.fl-tabs ul {
  margin-bottom: 20px;
}
.fl-rich-text ul li,
.fl-accordion-content ul li,
.fl-tabs ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.fl-rich-text ul li:last-of-type,
.fl-accordion-content ul li:last-of-type,
.fl-tabs ul li:last-of-type {
  margin-bottom: 0;
}
.fl-rich-text ul li:before,
.fl-accordion-content ul li:before,
.fl-tabs ul li:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 15px;
  height: 3px;
  background-color: #e31818;
}
.fl-rich-text table thead td,
.fl-accordion-content table thead td,
.fl-tabs table thead td {
  background-color: #e31818 !important;
  color: #fff;
  font-family: 'Abril Fatface', cursive;
}
.fl-rich-text table thead td:first-of-type,
.fl-accordion-content table thead td:first-of-type,
.fl-tabs table thead td:first-of-type {
  border-bottom-left-radius: 0px !important;
}
.fl-rich-text table thead td:last-of-type,
.fl-accordion-content table thead td:last-of-type,
.fl-tabs table thead td:last-of-type {
  border-bottom-right-radius: 0px !important;
}
.fl-rich-text table tr td,
.fl-accordion-content table tr td,
.fl-tabs table tr td {
  padding: 30px 15px;
  background-color: #fff;
}
.fl-rich-text table tr td:not(:last-of-type),
.fl-accordion-content table tr td:not(:last-of-type),
.fl-tabs table tr td:not(:last-of-type) {
  border-right: 2px solid #f4ebdf;
}
.fl-rich-text table tr:first-of-type td:first-of-type,
.fl-accordion-content table tr:first-of-type td:first-of-type,
.fl-tabs table tr:first-of-type td:first-of-type {
  border-top-left-radius: 10px;
}
.fl-rich-text table tr:first-of-type td:last-of-type,
.fl-accordion-content table tr:first-of-type td:last-of-type,
.fl-tabs table tr:first-of-type td:last-of-type {
  border-top-right-radius: 10px;
}
.fl-rich-text table tr:last-of-type td:first-of-type,
.fl-accordion-content table tr:last-of-type td:first-of-type,
.fl-tabs table tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 10px;
}
.fl-rich-text table tr:last-of-type td:last-of-type,
.fl-accordion-content table tr:last-of-type td:last-of-type,
.fl-tabs table tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 10px;
}
.fl-rich-text table tr:not(:last-of-type),
.fl-accordion-content table tr:not(:last-of-type),
.fl-tabs table tr:not(:last-of-type) {
  border-bottom: 2px solid #f4ebdf;
}
.fl-rich-text table p,
.fl-accordion-content table p,
.fl-tabs table p {
  margin-bottom: 0;
}
.fl-accordion .fl-accordion-item {
  background-color: #fff;
  border: none;
  border-radius: 10px;
}
.fl-accordion .fl-accordion-item .fl-accordion-button {
  color: #e31818;
  padding: 30px 15px;
}
.fl-accordion .fl-accordion-item .fl-accordion-button a {
  font-family: 'Abril Fatface', cursive;
  outline: none !important;
  color: #e31818;
  font-size: 20px;
}
.fl-accordion .fl-accordion-item.fl-accordion-item-active .fl-accordion-button a {
  color: #e31818;
}
.fl-accordion .fl-accordion-item .fl-accordion-content {
  background-color: #fff;
  padding: 30px 20px;
}
.fl-accordion .fl-accordion-item .fl-accordion-button-icon-right {
  opacity: 1;
}
.fl-tabs-panels {
  background-color: #000;
  border: none;
}
.fl-tabs-panels .fl-tabs-label {
  color: #ffffff;
  font-weight: bold;
  padding: 15px;
  outline: none !important;
}
.fl-tabs-panels .fl-tabs-label.fl-tab-active {
  background-color: #000000;
  color: #fff;
  border: 0;
  padding: 15px;
  outline: none;
}
.fl-tabs-panels .fl-tabs-panel {
  border: none;
}
.fl-tabs-panels .fl-tabs-panel-content {
  background-color: #e6e6e6;
  padding: 30px 20px;
}
.fl-tabs-labels {
  background-color: #000;
}
.fl-tabs-labels .fl-tabs-label {
  color: #ffffff;
  padding: 30px;
  font-weight: bold;
  text-transform: uppercase;
  outline: none !important;
}
.fl-tabs-labels .fl-tabs-label.fl-tab-active {
  background-color: #000000;
  color: #fff;
  border: 0;
}
.fl-photo-img {
  border-radius: 10px;
}
.fl-rich-text blockquote p {
  font-size: 30px;
  font-family: 'Abril Fatface', cursive;
  font-style: italic;
}
.fl-rich-text blockquote p:before {
  content: '«';
  color: #e31818;
}
.fl-rich-text blockquote p:after {
  content: '»';
  color: #e31818;
}
/** END CONSTRUCTEUR DE PAGE **/
#bandeau {
  padding: 20px;
  background-color: #f4ebdf;
  height: 660px;
  background-image: url(../images/bandeau.jpg);
  background-size: 1920px;
  background-position: center top;
  padding-top: 100px;
  text-align: center;
}
#bandeau h1 {
  margin-bottom: 10px;
}
#bandeau .description {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}
#breadcrumbs a,
#breadcrumbs span,
#breadcrumbs p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#breadcrumbs p,
#breadcrumbs span {
  color: #e7c08a;
}
#breadcrumbs a {
  color: #fff;
  text-decoration: underline;
}
#reseaux_sociaux {
  display: flex;
  align-items: center;
  justify-content: center;
}
#reseaux_sociaux a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  margin: 2px;
  height: 32px;
  width: 32px;
}
#primary {
  background-color: #f4ebdf;
}
/** FOOTER **/
.scrolltop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  color: #000;
  font-weight: bold;
  background-color: #e7c08a;
  line-height: 40px;
  font-size: 24px;
  z-index: 100;
}
footer {
  background-color: #1f2025;
  text-align: center;
}
footer #logo {
  width: 60px;
  margin: 0 auto;
}
footer .texte {
  margin-top: 30px;
}
footer .texte p {
  color: #fff;
  font-weight: 300;
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 1em;
}
footer #primary-menu {
  margin-top: 40px;
}
footer #primary-menu li {
  margin-bottom: 5px;
}
footer #primary-menu li a,
footer #primary-menu li span {
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 20px;
}
footer #primary-menu li a:hover,
footer #primary-menu li span:hover {
  color: #e7c08a;
}
footer #footer_haut {
  padding: 50px 0;
}
footer #menu_footer {
  margin-top: 30px;
}
footer #menu_footer li {
  margin-bottom: 10px;
}
footer #menu_footer a,
footer #menu_footer span {
  color: #fff;
  font-size: 13px;
  opacity: 1;
  line-height: 20px;
}
footer #menu_footer a:hover,
footer #menu_footer span:hover {
  color: #e7c08a;
}
footer #footer_bas {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1c2445;
}
footer #footer_bas p {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}
footer #footer_bas img {
  margin-left: 10px;
}
/** END FOOTER **/
.les_articles li {
  background: #f6f7f7;
  margin-bottom: 30px;
}
.les_articles .contenu {
  padding: 25px;
}
.les_articles .date {
  font-size: 12px;
  margin-bottom: 20px;
  color: #000;
}
.les_articles .titre {
  font-weight: bold;
  line-height: 1.3;
  font-size: 18px;
  color: #000;
}
.les_articles .resume {
  font-weight: 300;
  line-height: 1.2;
  font-size: 12px;
  margin-top: 20px;
  color: #000;
}
nav.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
nav.pagination .nav-links span,
nav.pagination .nav-links a {
  margin: 0 10px;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-appearance: none;
  font-size: 14px;
  line-height: 18px;
  padding: 14px;
  min-width: 48px;
  text-align: center;
  border-radius: 6px;
  color: #000;
  display: inline-block;
  background-color: #fff;
  height: inherit;
}
nav.pagination .nav-links .current {
  background-color: #e7c08a;
  color: #000;
}
#actus {
  text-align: center;
}
#actus li {
  text-align: left;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: -10px 20px 30px 0 rgba(42, 43, 47, 0.2);
}
#actus li .visuel {
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#actus li .contenu {
  padding: 15px;
  padding-bottom: 30px;
  position: relative;
}
#actus li .contenu .date {
  font-size: 12px;
  font-weight: bold;
  color: #e7c08a;
}
#actus li .contenu .titre {
  font-family: 'Abril Fatface', cursive;
  font-size: 18px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
#actus li .contenu .resume {
  font-size: 12px;
  margin-top: 5px;
}
#actus li .contenu .lien {
  font-size: 12px;
  font-weight: bold;
  color: #e31818;
  line-height: 30px;
  margin-top: 5px;
}
#actus li .contenu .lien:after {
  content: "\f061";
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-left: 5px;
  font-size: 10px;
  font-weight: 100;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
#actus li .contenu:after {
  content: '';
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  height: 50px;
  background-image: url(../images/fondu_chiffre.png);
  background-size: 280px;
  background-repeat: no-repeat;
  background-position: center;
}
#actus li:hover .contenu .titre {
  color: #e31818;
}
#actus li:hover .contenu .lien:after {
  transform: translateX(5px);
}
/* Version 768 */
/* Version > 1024 */
@media (min-width: 1024px) {
  .fl-tabs-panels .fl-tabs-panel-content {
    padding: 50px;
  }
  .fl-accordion .fl-accordion-item .fl-accordion-button {
    padding: 40px 25px;
  }
  .fl-accordion .fl-accordion-item .fl-accordion-content {
    padding: 0 25px 40px 25px;
  }
  #footer_haut .conteneur {
    display: flex;
    justify-content: space-between;
  }
  #footer_haut #logo {
    width: 70px;
    margin: 0;
  }
  #footer_haut .texte {
    width: 200px;
    margin-top: 0;
    text-align: left;
  }
  #footer_haut #primary-menu {
    text-align: left;
    margin-top: 0;
  }
  #footer_haut .menu-footer-menu-container {
    align-self: end;
  }
  #footer_haut #menu_footer {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  #footer_haut #menu_footer li {
    margin-right: 70px;
  }
  #actus li {
    margin: 0 10px;
    width: 280px;
    display: inline-block;
    vertical-align: top;
  }
}
/* Version > 1200 */
@media (min-width: 1200px) {
  /**MENU PC**/
  header#masthead {
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
  }
  header#masthead .btn_toggle,
  header#masthead .top,
  header#masthead .next {
    display: none;
  }
  header#masthead #logo {
    filter: drop-shadow(-10px 10px 30px #000000);
  }
  header#masthead #header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 210px;
  }
  header#masthead #header .sidebar {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 30px;
  }
  header#masthead #header .sidebar ul#primary-menu {
    text-align: center;
  }
  header#masthead #header .sidebar ul#primary-menu > li {
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
    margin-right: 60px;
  }
  header#masthead #header .sidebar ul#primary-menu > li > a,
  header#masthead #header .sidebar ul#primary-menu > li > span {
    display: block;
    padding: 20px 0;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
  }
  header#masthead #header .sidebar ul#primary-menu > li.current-menu-item > a,
  header#masthead #header .sidebar ul#primary-menu > li.current-menu-parent > a,
  header#masthead #header .sidebar ul#primary-menu > li:hover > a,
  header#masthead #header .sidebar ul#primary-menu > li.current-menu-item > span,
  header#masthead #header .sidebar ul#primary-menu > li.current-menu-parent > span,
  header#masthead #header .sidebar ul#primary-menu > li:hover > span {
    color: #e7c08a;
  }
  header#masthead #header .sidebar ul#primary-menu > li.menu-item-has-children {
    position: relative;
  }
  header#masthead #header .sidebar ul#primary-menu > li.menu-item-has-children > ul {
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    width: 200px;
    left: 0;
    background-color: #fff;
    z-index: 10;
    text-align: left;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }
  header#masthead #header .sidebar ul#primary-menu > li.menu-item-has-children > ul:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #fff transparent;
  }
  header#masthead #header .sidebar ul#primary-menu > li.menu-item-has-children > ul li > a,
  header#masthead #header .sidebar ul#primary-menu > li.menu-item-has-children > ul li > span {
    display: block;
    padding: 10px 20px;
    color: #000;
  }
  header#masthead #header .sidebar ul#primary-menu > li.menu-item-has-children > ul li.current-menu-item > a,
  header#masthead #header .sidebar ul#primary-menu > li.menu-item-has-children > ul li:hover > a,
  header#masthead #header .sidebar ul#primary-menu > li.menu-item-has-children > ul li.current-menu-item > span,
  header#masthead #header .sidebar ul#primary-menu > li.menu-item-has-children > ul li:hover > span {
    color: #e7c08a;
  }
  header#masthead #header .sidebar ul#primary-menu > li.menu-item-has-children:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  #recherche {
    margin-right: 60px;
  }
  #langue {
    top: initial;
    height: auto;
    position: absolute;
    right: 0;
  }
  #bandeau {
    padding: 0;
    padding-top: 200px;
  }
  #bandeau .conteneur {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
  #bandeau h1 {
    margin-bottom: 30px;
    margin-top: 0px;
  }
  #bandeau .description {
    font-size: 22px;
  }
  .conteneur {
    padding: 0;
  }
  .les_articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .les_articles li {
    width: 30%;
  }
  #actus {
    text-align: left;
  }
  #actus li {
    vertical-align: bottom;
    margin-bottom: 30px;
  }
  #actus li .contenu .titre {
    height: 50px;
    overflow: hidden;
  }
  #news #actus li {
    margin-bottom: 0;
  }
  #news #actus li:first-of-type .contenu:after {
    background-size: 380px;
    height: 60px;
    top: -60px;
  }
  #news #actus li:first-of-type {
    width: 380px;
    max-width: initial;
  }
  #news #actus li:first-of-type .visuel {
    height: 300px;
  }
  footer #footer_bas {
    text-align: center;
  }
  footer #footer_bas #menu_footer {
    display: flex;
    justify-content: center;
  }
  footer #footer_bas #menu_footer li {
    padding: 0 10px;
  }
}
