/** END FONCTIONS **/
body {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.conteneur {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  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 {
  font-family: 'Oxygen', sans-serif;
}
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: 18px;
  padding: 14px 44px;
  border-radius: 6px;
  color: #000;
  display: inline-block;
  background-color: #b4be00;
  height: inherit;
}
.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: #000;
}
/** HEADER **/
/* MENU */
/*MENU MOBILE*/
header#masthead {
  background-color: #fff;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.25s;
}
header#masthead.scroll {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
header#masthead #header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px 10px 15px;
}
header#masthead #logo {
  width: 140px;
  z-index: 10;
  display: inline-block;
}
header#masthead #logo img {
  box-sizing: content-box;
  z-index: 10;
}
header#masthead #devis_h {
  max-width: 150px;
  margin: 0 0 0 15px;
  border-radius: 40px;
}
header#masthead .btn_toggle {
  cursor: pointer;
  height: 60px;
  width: 60px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
header#masthead .btn_toggle span {
  width: 28px;
  height: 3px;
  background-color: #000;
  margin: 4px auto;
}
header#masthead .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 .sidebar .top {
  position: relative;
}
header#masthead .sidebar .top .close {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 32px;
  width: 32px;
  z-index: 10;
  background-color: #e6e6e6;
  border-radius: 50%;
}
header#masthead .sidebar .top .close span {
  width: 16px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 15px;
  left: 8px;
}
header#masthead .sidebar .top .close span:nth-of-type(1) {
  transform: rotate(45deg);
}
header#masthead .sidebar .top .close span:nth-of-type(2) {
  transform: rotate(-45deg);
}
header#masthead .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 .sidebar .menu-menu-principal-container {
  height: 100%;
}
header#masthead .sidebar .menu-menu-principal-container #primary-menu {
  overflow: auto;
  padding-bottom: 62px;
  box-sizing: border-box;
}
header#masthead .sidebar .menu-menu-principal-container #primary-menu .menu-item {
  position: relative;
}
header#masthead .sidebar .menu-menu-principal-container #primary-menu .menu-item a,
header#masthead .sidebar .menu-menu-principal-container #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 .sidebar .menu-menu-principal-container #primary-menu .menu-item.menu-item-has-children > a,
header#masthead .sidebar .menu-menu-principal-container #primary-menu .menu-item.menu-item-has-children span {
  padding-right: 80px;
}
header#masthead .sidebar .menu-menu-principal-container #primary-menu .menu-item.menu-item-has-children .sub-menu {
  background: #e6e6e6;
  display: none;
  padding: 10px 0;
}
header#masthead .sidebar .menu-menu-principal-container #primary-menu .menu-item.menu-item-has-children .sub-menu a,
header#masthead .sidebar .menu-menu-principal-container #primary-menu .menu-item.menu-item-has-children .sub-menu span {
  font-weight: 300;
  font-size: 16px;
}
header#masthead .sidebar .menu-menu-principal-container #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 .sidebar .menu-menu-principal-container #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 .sidebar.open {
  right: 0;
}
header#masthead .sidebar.open nav {
  opacity: 1;
  transform: translateX(0);
}
/* */
/** 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 {
  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 {
  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 {
  font-weight: bold;
  border-bottom: 2px solid;
  color: #000000;
  -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 {
  box-shadow: 0 1px 0 0 #000;
}
.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: #000000;
}
.fl-rich-text table thead td,
.fl-accordion-content table thead td,
.fl-tabs table thead td {
  background-color: #000;
  color: #fff;
  font-weight: bold;
}
.fl-rich-text table tr td,
.fl-accordion-content table tr td,
.fl-tabs table tr td {
  padding: 15px;
}
.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 #fff;
}
.fl-rich-text table tbody tr:nth-of-type(2n),
.fl-accordion-content table tbody tr:nth-of-type(2n),
.fl-tabs table tbody tr:nth-of-type(2n) {
  background-color: #e6e6e6;
}
.fl-rich-text table p,
.fl-accordion-content table p,
.fl-tabs table p {
  margin-bottom: 0;
}
.fl-accordion .fl-accordion-item {
  background-color: #000;
  border: none;
}
.fl-accordion .fl-accordion-item .fl-accordion-button {
  color: #ffffff;
  font-weight: bold;
  padding: 15px;
}
.fl-accordion .fl-accordion-item .fl-accordion-button a {
  outline: none !important;
  color: #ffffff;
}
.fl-accordion .fl-accordion-item.fl-accordion-item-active .fl-accordion-button a {
  color: #fff;
}
.fl-accordion .fl-accordion-item .fl-accordion-content {
  background-color: #e6e6e6;
  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;
}
/** END CONSTRUCTEUR DE PAGE **/
/** GLOBAL **/
.bouton {
  display: inline-block;
  transition: all 0.25s;
  padding: 10px 40px 10px 20px;
  font-size: 0.85em;
}
.bouton.btn-vert {
  background: url(../images/fleche-blanc-2x.png) right 15px center no-repeat #b4be00;
  background-size: 12px 11px;
  color: #fff;
}
.bouton.btn-vert:hover {
  background-color: #000;
}
.bouton.btn-transparent {
  background: url(../images/fleche-noir-2x.png) right 15px center no-repeat transparent;
  background-size: 12px 11px;
  color: #000;
  border: 1px solid #000;
  border-radius: 40px;
}
.bouton.btn-transparent:hover {
  background: url(../images/fleche-blanc-2x.png) right 15px center no-repeat #000;
  background-size: 12px 11px;
  color: #fff;
}
/** END GLOBAL **/
/** CONTENU **/
#bandeau_titre #bandeau {
  padding: 25px;
  position: relative;
}
#bandeau_titre #bandeau:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}
#bandeau_titre #bandeau #titre_sstitre {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}
#bandeau_titre #bandeau #titre_sstitre h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6em;
  line-height: 1.1;
  display: block;
  margin-top: 15px;
}
#bandeau_titre #bandeau #titre_sstitre .sstitre {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  font-size: 1em;
  margin-top: 15px;
}
#breadcrumbs a {
  color: #fff;
  text-decoration: underline;
}
/** END CONTENU **/
#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;
}
/** FOOTER **/
.scrolltop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  color: #000;
  font-weight: bold;
  background-color: #b4be00;
  line-height: 40px;
  font-size: 24px;
}
#footer_loosfeld {
  background-color: #f5f5f5;
  padding: 20px 20px 50px 20px;
  font-size: 0.85em;
  max-width: 1480px;
  width: 97%;
  margin: 0 auto;
}
#footer_loosfeld #secondary-menu > li {
  margin-bottom: 10px;
}
#footer_loosfeld #secondary-menu > li > a,
#footer_loosfeld #secondary-menu > li > span {
  font-weight: 700;
  color: #000;
}
#footer_loosfeld #secondary-menu > li > a {
  transition: all 0.25s;
}
#footer_loosfeld #secondary-menu > li > a:hover {
  color: #b4be00;
}
#footer_loosfeld #footer_adresse {
  margin: 20px 0;
}
#footer_loosfeld #footer_adresse p,
#footer_loosfeld #footer_adresse a {
  color: #000;
}
#footer_loosfeld #footer_adresse #nom_footer {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  color: #000;
}
#footer_loosfeld #footer_adresse .ligne_footer {
  padding: 10px 0 10px 40px;
  line-height: 1.6;
  display: block;
}
#footer_loosfeld #footer_adresse #adresse_footer {
  background: url(../images/picto-marqueur-2x.png) left 10px no-repeat;
  background-size: 20px 29px;
  margin-top: 10px;
}
#footer_loosfeld #footer_adresse #tel_footer {
  background: url(../images/picto-tel-2x.png) left 10px no-repeat;
  background-size: 24px 25px;
  margin-bottom: 10px;
}
#footer_loosfeld #footer_adresse #mail_footer {
  background: url(../images/picto-mail-2x.png) left 12px no-repeat;
  background-size: 25px 18px;
}
#footer_loosfeld #footer_bas {
  margin-top: 20px;
}
#footer_loosfeld #footer_bas .conteneur {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.35;
}
#footer_loosfeld #footer_bas #menu_footer {
  display: flex;
  flex-wrap: wrap;
}
#footer_loosfeld #footer_bas #menu_footer a,
#footer_loosfeld #footer_bas #menu_footer span {
  color: #000;
}
#footer_loosfeld #footer_bas #menu_footer > li {
  margin-left: 3px;
}
#footer_loosfeld #footer_bas #menu_footer > li:not(:last-child):after {
  content: " | ";
}
#footer_loosfeld #footer_bas #menu_footer > li > a {
  transition: all 0.25s;
}
#footer_loosfeld #footer_bas #menu_footer > li > a:hover {
  color: #b4be00;
}
/** 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;
  margin-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: #fff;
  display: inline-block;
  background-color: #000;
  height: inherit;
}
nav.pagination .nav-links .current {
  background-color: #b4be00;
  color: #000;
}
/* 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: 25px;
  }
  .fl-accordion .fl-accordion-item .fl-accordion-content {
    background-color: #e6e6e6;
    padding: 50px;
  }
}
/* Version > 1200 */
@media (min-width: 1200px) {
  /**MENU PC**/
  header#masthead {
    background-color: #fff;
    position: sticky;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.25s;
  }
  header#masthead.scroll #header #logo {
    width: 140px;
  }
  header#masthead.scroll #header .sidebar .top .close {
    top: 20px;
  }
  header#masthead #header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header#masthead #header #logo {
    width: 280px;
    transition: all 0.25s;
  }
  header#masthead #header #devis_menu {
    display: flex;
    align-items: center;
  }
  header#masthead #header #devis_h {
    max-width: 100%;
    padding: 8px 50px 10px 30px;
    background-position: right 20px center;
    margin: 0 20px 0 0;
  }
  header#masthead #header .sidebar nav {
    padding-top: 80px;
  }
  header#masthead #header .sidebar .top .close {
    height: 40px;
    width: 40px;
    top: 30px;
  }
  header#masthead #header .sidebar .top .close span {
    width: 20px;
    top: 20px;
    left: 10px;
  }
  header#masthead #header .sidebar ul#primary-menu {
    text-align: right;
  }
  header#masthead #header .sidebar ul#primary-menu > li {
    display: block;
  }
  header#masthead #header .sidebar ul#primary-menu > li > a,
  header#masthead #header .sidebar ul#primary-menu > li > span {
    display: block;
    padding: 20px 20px;
    color: #000;
  }
  header#masthead #header .sidebar ul#primary-menu > li > a {
    transition: all 0.25s;
  }
  header#masthead #header .sidebar ul#primary-menu > li > a:hover {
    color: #b4be00;
  }
  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: #b4be00;
  }
  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);
  }
  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: #b4be00;
  }
  header#masthead #header .sidebar ul#primary-menu > li.menu-item-has-children:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  /** END MENU **/
  /** GLOBAL **/
  .bouton {
    font-size: 1em;
  }
  .contenu {
    margin-top: 40px;
  }
  /** END GLOBAL **/
  /** CONTENU **/
  #bandeau_titre {
    filter: drop-shadow(-1px 8px 3px rgba(0, 0, 0, 0.3));
  }
  #bandeau_titre #bandeau {
    clip-path: polygon(0 0, 100% 0, 100% 300px, 0% 100%);
    height: 550px;
  }
  #bandeau_titre #bandeau #titre_sstitre {
    margin-top: 55px;
  }
  #bandeau_titre #bandeau #titre_sstitre h1 {
    font-size: 3.125em;
    margin-top: 20px;
  }
  #bandeau_titre #bandeau #titre_sstitre .sstitre {
    margin-top: 25px;
  }
  #bandeau_titre #bandeau:before {
    background: #000000;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 1;
  }
  #fil_ariane {
    position: relative;
    padding: 0 0 25px 0;
  }
  #fil_ariane:after {
    content: "";
    display: inline-block;
    width: 125px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0%);
  }
  /** END CONTENU **/
  .les_articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .les_articles li {
    width: 30%;
  }
  /** FOOTER **/
  #footer_haut .conteneur {
    display: flex;
  }
  #footer_loosfeld {
    padding: 40px 20px 50px 20px;
    margin-top: 40px;
  }
  #footer_loosfeld #footer_adresse {
    margin: 0 0 0 10%;
  }
  #footer_loosfeld #footer_bas {
    margin-top: 40px;
  }
  #footer_loosfeld #footer_bas .conteneur {
    justify-content: flex-end;
  }
  /** END FOOTER **/
}
