/* -- RESPONSIVE -- */
/* FONT FAMILY */
@font-face {
  font-family: 'Gotham Rounded';
  src: url('../fonts/GothamRounded-Light.eot');
  src: url('../fonts/GothamRounded-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamRounded-Light.woff2') format('woff2'), url('../fonts/GothamRounded-Light.woff') format('woff'), url('../fonts/GothamRounded-Light.ttf') format('truetype'), url('../fonts/GothamRounded-Light.svg#GothamRounded-Light') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Rounded Book';
  src: url('../fonts/GothamRounded-Book.eot');
  src: url('../fonts/GothamRounded-Book.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamRounded-Book.woff2') format('woff2'), url('../fonts/GothamRounded-Book.woff') format('woff'), url('../fonts/GothamRounded-Book.ttf') format('truetype'), url('../fonts/GothamRounded-Book.svg#GothamRounded-Book') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('../fonts/GothamRounded-Medium.eot');
  src: url('../fonts/GothamRounded-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamRounded-Medium.woff2') format('woff2'), url('../fonts/GothamRounded-Medium.woff') format('woff'), url('../fonts/GothamRounded-Medium.ttf') format('truetype'), url('../fonts/GothamRounded-Medium.svg#GothamRounded-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('GothamRounded-Bold.eot');
  src: url('../fonts/GothamRounded-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamRounded-Bold.woff2') format('woff2'), url('../fonts/GothamRounded-Bold.woff') format('woff'), url('../fonts/GothamRounded-Bold.ttf') format('truetype'), url('../fonts/GothamRounded-Bold.svg#GothamRounded-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Blair ITC';
  src: url('../fonts/BlairITC-Medium.eot');
  src: url('../fonts/BlairITC-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/BlairITC-Medium.woff2') format('woff2'), url('../fonts/BlairITC-Medium.woff') format('woff'), url('../fonts/BlairITC-Medium.ttf') format('truetype'), url('../fonts/BlairITC-Medium.svg#BlairITC-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
}
/* COLOR 
@color_1: #f9ac08;
@color_2: lighten(@color_background, 5%);*/
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
.hide-md {
  display: initial;
}
@media (max-width: 479px) {
  .hide-md {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .hide-md {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hide-md {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hide-md {
    display: initial;
  }
}
.show-md {
  display: none;
}
@media (max-width: 479px) {
  .show-md {
    display: initial;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .show-md {
    display: initial;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .show-md {
    display: initial;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .show-md {
    display: none;
  }
}
/* - LESS LAYOUT - */
/* ASSETS
--------------------------------------------------- */
/* BTN
------------------------------------------------------------ */
button.btn-tool,
a.btn-tool {
  cursor: pointer;
  transition: all 0.125s ease-in-out;
}
button.btn-tool:hover,
a.btn-tool:hover {
  text-decoration: none;
  cursor: pointer;
}
a.btn-defaut,
button.btn-defaut {
  text-align: center;
  display: block;
  margin: auto;
  background: linear-gradient(45deg, #dd1b3a 0%, #ca1330 100%);
  color: #FFF;
  max-width: 300px;
  min-width: 200px;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 15px 20px;
  border: 0;
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 0.688rem;
  transition: all 0.25s ease-in-out;
}
a.btn-defaut:hover,
button.btn-defaut:hover,
a.btn-defaut:focus,
button.btn-defaut:focus {
  background: linear-gradient(45deg, #2e2c33 0%, #3c3c3c 100%);
  text-decoration: none;
}
/* BTN NAV RESPONSIVE */
#nav-icon {
  width: 20px;
  height: 20px;
  position: relative;
  margin: 0px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  /*
      -webkit-transition: -webkit-transform .5s, width .5s, left .5s, top .5s ease-in-out;
      -moz-transition: -moz-transform .5s, width .5s, left .5s, top .5s ease-in-out;
      -o-transition: -o-transform .5s, width .5s, left .5s, top .5s ease-in-out;
      transition: transform .5s, width .5s, left .5s, top .5s ease-in-out;*/
  cursor: pointer;
  float: left;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #2e2c33;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
  -moz-transition: -moz-transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
  -o-transition: -o-transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
  transition: transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
}
#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 8px;
}
#nav-icon span:nth-child(4) {
  top: 16px;
}
#nav-icon.open span {
  background: red;
}
/* BTN MENU NAVIGATION */
button.hamburger-nav-responsive,
button.btn-nav-close {
  padding: 14px 10px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  border: 0;
  background: none;
}
button.hamburger-nav-responsive:hover,
button.btn-nav-close:hover,
button.hamburger-nav-responsive:focus,
button.btn-nav-close:focus,
button.hamburger-nav-responsive:active,
button.btn-nav-close:active,
button.hamburger-nav-responsive:active:focus,
button.btn-nav-close:active:focus {
  background: none;
  color: #FFF;
  box-shadow: none;
}
button.hamburger-nav-responsive:hover #nav-icon span,
button.btn-nav-close:hover #nav-icon span,
button.hamburger-nav-responsive:focus #nav-icon span,
button.btn-nav-close:focus #nav-icon span,
button.hamburger-nav-responsive:active #nav-icon span,
button.btn-nav-close:active #nav-icon span,
button.hamburger-nav-responsive:active:focus #nav-icon span,
button.btn-nav-close:active:focus #nav-icon span {
  background: #FFF;
}
button.hamburger-nav-responsive #nav-icon,
button.btn-nav-close #nav-icon {
  width: 25px;
  height: 20px;
  position: relative;
  margin: 0px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  /*
      -webkit-transition: -webkit-transform .5s, width .5s, left .5s, top .5s ease-in-out;
      -moz-transition: -moz-transform .5s, width .5s, left .5s, top .5s ease-in-out;
      -o-transition: -o-transform .5s, width .5s, left .5s, top .5s ease-in-out;
      transition: transform .5s, width .5s, left .5s, top .5s ease-in-out;*/
  cursor: pointer;
  float: left;
}
button.hamburger-nav-responsive #nav-icon span,
button.btn-nav-close #nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #FFF;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
  -moz-transition: -moz-transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
  -o-transition: -o-transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
  transition: transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
}
button.hamburger-nav-responsive #nav-icon span:nth-child(1),
button.btn-nav-close #nav-icon span:nth-child(1) {
  top: 0px;
}
button.hamburger-nav-responsive #nav-icon span:nth-child(2),
button.btn-nav-close #nav-icon span:nth-child(2),
button.hamburger-nav-responsive #nav-icon span:nth-child(3),
button.btn-nav-close #nav-icon span:nth-child(3) {
  top: 8px;
}
button.hamburger-nav-responsive #nav-icon span:nth-child(4),
button.btn-nav-close #nav-icon span:nth-child(4) {
  top: 16px;
}
button.hamburger-nav-responsive #nav-icon.open span,
button.btn-nav-close #nav-icon.open span {
  background: #2e2c33;
}
button.hamburger-nav-responsive.active #nav-icon span:nth-child(2),
button.btn-nav-close.active #nav-icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
button.hamburger-nav-responsive.active #nav-icon span:nth-child(3),
button.btn-nav-close.active #nav-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
button.hamburger-nav-responsive.active #nav-icon span:nth-child(1),
button.btn-nav-close.active #nav-icon span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}
button.hamburger-nav-responsive.active #nav-icon span:nth-child(4),
button.btn-nav-close.active #nav-icon span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}
.close {
  position: absolute;
  height: 100%;
  width: 100%;
  background: transparent;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  -moz-transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  -o-transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
}
.close.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 50;
  opacity: 1;
}
/*  OWL CARROUSEL PROGRAMME
   ========================================================================== */
.owl-theme .owl-nav [class*='owl-'] {
  background: transparent;
  color: #e52241;
  border-radius: 20px;
  padding: 5px 10px;
}
.owl-theme .owl-nav [class*='owl-']:hover,
.owl-theme .owl-nav [class*='owl-']:focus {
  color: #FFF;
  background: rgba(229, 34, 65, 0.5);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #e52241;
}
.owl-prev {
  float: left;
}
.owl-prev .fa {
  margin: 3px 1px 3px -1px;
}
.owl-next {
  float: right;
}
.owl-next .fa {
  margin: 3px -1px 3px 1px;
}
.owl-dots {
  margin-top: 15px;
}
i.fa.fa-chevron-right,
i.fa.fa-chevron-left {
  font-size: 20px;
}
/* NAV-TABS HEADER
   ========================================================================== */
.nav-tabs {
  justify-content: center;
  border-color: #e1e1e1;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  font-weight: 400;
  background: transparent;
  position: relative;
}
.nav-tabs .nav-link.active:after,
.nav-tabs .nav-item.show .nav-link:after {
  content: '';
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  height: 3px;
  width: 20px;
  background: #e52241;
  top: 30px;
}
.nav-tabs .nav-link {
  text-transform: uppercase;
  font-size: 0.833rem;
  border: 0;
}
/* EFFET PARALLAX
   ========================================================================== */
.img-parallax-slider {
  background: url('../img/view-03.jpg') no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 479px) {
  .img-parallax-slider {
    background: transparent;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .img-parallax-slider {
    background: transparent;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .img-parallax-slider {
    background: transparent;
  }
}
.img-parallax-slider .img-parallax-content {
  padding: 250px 0;
}
@media (max-width: 479px) {
  .img-parallax-slider .img-parallax-content {
    padding: 0;
    margin-top: 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .img-parallax-slider .img-parallax-content {
    padding: 0;
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .img-parallax-slider .img-parallax-content {
    padding: 0;
    margin-top: 0;
  }
}
/* ANCRE JS-SCROLL TO
   ========================================================================== */
#prestations,
#contact,
#clamart,
#programme {
  height: 150px;
  width: 1px;
  opacity: 0;
  background-color: red;
  position: relative;
  margin-top: -150px;
}
/* -- RESPONSIVE -- */
/* FONT FAMILY */
@font-face {
  font-family: 'Gotham Rounded';
  src: url('../fonts/GothamRounded-Light.eot');
  src: url('../fonts/GothamRounded-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamRounded-Light.woff2') format('woff2'), url('../fonts/GothamRounded-Light.woff') format('woff'), url('../fonts/GothamRounded-Light.ttf') format('truetype'), url('../fonts/GothamRounded-Light.svg#GothamRounded-Light') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Rounded Book';
  src: url('../fonts/GothamRounded-Book.eot');
  src: url('../fonts/GothamRounded-Book.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamRounded-Book.woff2') format('woff2'), url('../fonts/GothamRounded-Book.woff') format('woff'), url('../fonts/GothamRounded-Book.ttf') format('truetype'), url('../fonts/GothamRounded-Book.svg#GothamRounded-Book') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('../fonts/GothamRounded-Medium.eot');
  src: url('../fonts/GothamRounded-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamRounded-Medium.woff2') format('woff2'), url('../fonts/GothamRounded-Medium.woff') format('woff'), url('../fonts/GothamRounded-Medium.ttf') format('truetype'), url('../fonts/GothamRounded-Medium.svg#GothamRounded-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('GothamRounded-Bold.eot');
  src: url('../fonts/GothamRounded-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamRounded-Bold.woff2') format('woff2'), url('../fonts/GothamRounded-Bold.woff') format('woff'), url('../fonts/GothamRounded-Bold.ttf') format('truetype'), url('../fonts/GothamRounded-Bold.svg#GothamRounded-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Blair ITC';
  src: url('../fonts/BlairITC-Medium.eot');
  src: url('../fonts/BlairITC-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/BlairITC-Medium.woff2') format('woff2'), url('../fonts/BlairITC-Medium.woff') format('woff'), url('../fonts/BlairITC-Medium.ttf') format('truetype'), url('../fonts/BlairITC-Medium.svg#BlairITC-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
}
/* COLOR 
@color_1: #f9ac08;
@color_2: lighten(@color_background, 5%);*/
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
.hide-md {
  display: initial;
}
@media (max-width: 479px) {
  .hide-md {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .hide-md {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hide-md {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hide-md {
    display: initial;
  }
}
.show-md {
  display: none;
}
@media (max-width: 479px) {
  .show-md {
    display: initial;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .show-md {
    display: initial;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .show-md {
    display: initial;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .show-md {
    display: none;
  }
}
/* - LESS NAVBAR - */
/* FOOTER
   ========================================================================== */
footer .footer-nav {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid;
  border-color: rgba(46, 44, 51, 0.2);
  text-align: center;
}
footer .footer-nav ul li {
  display: inline-block;
}
footer .footer-nav ul li a {
  padding: 20px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.688rem;
}
footer .footer-nav ul li a:hover,
footer .footer-nav ul li a:focus {
  text-decoration: none;
}
footer .footer-nav ul li a.active {
  color: #e52241;
}
footer .footer-bottom {
  width: 100%;
  padding: 20px 0;
}
footer .footer-bottom .footer-adress {
  float: left;
}
@media (max-width: 479px) {
  footer .footer-bottom .footer-adress {
    float: inherit;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  footer .footer-bottom .footer-adress {
    float: inherit;
  }
}
footer .footer-bottom .footer-adress .footer-adress-img {
  float: left;
  padding: 10px 20px 10px 0;
}
@media (max-width: 479px) {
  footer .footer-bottom .footer-adress .footer-adress-img {
    float: inherit;
    text-align: center;
    padding: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  footer .footer-bottom .footer-adress .footer-adress-img {
    float: inherit;
    text-align: center;
    padding: 0;
    margin-bottom: 20px;
  }
}
footer .footer-bottom .footer-adress .footer-adress-img img {
  height: 30px;
}
footer .footer-bottom .footer-adress .footer-adress-txt {
  float: left;
}
@media (max-width: 479px) {
  footer .footer-bottom .footer-adress .footer-adress-txt {
    float: inherit;
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  footer .footer-bottom .footer-adress .footer-adress-txt {
    float: inherit;
    text-align: center;
  }
}
footer .footer-bottom .footer-adress .footer-adress-txt p {
  font-size: 0.688rem;
}
footer .footer-bottom .footer-adress .footer-adress-txt p span.font-xs {
  font-size: 0.563rem;
}
footer .footer-bottom .footer-social {
  float: right;
  text-align: right;
}
@media (max-width: 479px) {
  footer .footer-bottom .footer-social {
    float: inherit;
    text-align: center;
    margin-top: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  footer .footer-bottom .footer-social {
    float: inherit;
    text-align: center;
    margin-top: 20px;
  }
}
footer .footer-bottom .footer-social ul li {
  display: inline;
  padding: 0 5px;
}
/* - LESS LAYOUT - */
/* ------------------- STANDARD ------------------- */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"] {
  box-shadow: none;
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  height: 40px;
  margin: 0;
  padding: 10px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.15s linear, background 0.15s linear;
  -moz-transition: border-color 0.15s linear, background 0.15s linear;
  -ms-transition: border-color 0.15s linear, background 0.15s linear;
  -o-transition: border-color 0.15s linear, background 0.15s linear;
  transition: border-color 0.15s linear, background 0.15s linear;
}
select {
  box-shadow: none;
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  height: 40px;
  margin: 0;
  padding: 10px;
  width: 100%;
  background: #FFF;
  border: 1px solid;
  border-color: #e1e1e1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.15s linear, background 0.15s linear;
  -moz-transition: border-color 0.15s linear, background 0.15s linear;
  -ms-transition: border-color 0.15s linear, background 0.15s linear;
  -o-transition: border-color 0.15s linear, background 0.15s linear;
  transition: border-color 0.15s linear, background 0.15s linear;
}
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  padding: 10px;
  width: 100%;
  border: 1px solid;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.15s linear, background 0.15s linear;
  -moz-transition: border-color 0.15s linear, background 0.15s linear;
  -ms-transition: border-color 0.15s linear, background 0.15s linear;
  -o-transition: border-color 0.15s linear, background 0.15s linear;
  transition: border-color 0.15s linear, background 0.15s linear;
}
fieldset {
  border: 0px solid #000!important;
  margin: 0!important;
  padding: 0!important;
}
/* -- FOCUS -- */
input:focus,
select:focus,
a:focus,
button:focus,
th:focus {
  outline: 0!important;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="color"]:focus,
textarea:focus {
  outline: 0 !important;
  box-shadow: none;
}
textarea {
  box-shadow: none!important;
  -webkit-box-shadow: none!important;
}
/* ------------- */
/* -- DISABLED -- */
input[type="text"][disabled],
input[type="text"][readonly],
fieldset[disabled] input[type="text"],
input[type="password"][disabled],
input[type="password"][readonly],
fieldset[disabled] input[type="password"],
input[type="date"][disabled],
input[type="date"][readonly],
fieldset[disabled] input[type="date"],
input[type="datetime"][disabled],
input[type="datetime"][readonly],
fieldset[disabled] input[type="datetime"],
input[type="datetime-local"][disabled],
input[type="datetime-local"][readonly],
fieldset[disabled] input[type="datetime-local"],
input[type="month"][disabled],
input[type="month"][readonly],
fieldset[disabled] input[type="month"],
input[type="week"][disabled],
input[type="week"][readonly],
fieldset[disabled] input[type="week"],
input[type="email"][disabled],
input[type="email"][readonly],
fieldset[disabled] input[type="email"],
input[type="number"][disabled],
input[type="number"][readonly],
fieldset[disabled] input[type="number"],
input[type="search"][disabled],
input[type="search"][readonly],
fieldset[disabled] input[type="search"],
input[type="tel"][disabled],
input[type="tel"][readonly],
fieldset[disabled] input[type="tel"],
input[type="time"][disabled],
input[type="time"][readonly],
fieldset[disabled] input[type="time"],
input[type="url"][disabled],
input[type="url"][readonly],
fieldset[disabled] input[type="url"],
input[type="color"][disabled],
input[type="color"][readonly],
fieldset[disabled] input[type="color"],
textarea[disabled],
textarea[readonly],
fieldset[disabled] textarea {
  font-weight: 300;
  background-color: #f0f0f0!important;
  color: #b4b4b4;
  opacity: 0.90;
}
/* ROW TAILLE COTE A COTE */
.row-10 {
  float: left;
  width: 10%;
}
.row-25 {
  float: left;
  width: 25%;
}
.row-33 {
  float: left;
  width: 33%;
}
.row-34 {
  float: left;
  width: 34%;
}
.row-35 {
  float: left;
  width: 35%;
}
.row-50 {
  float: left;
  width: 50%;
}
.row-65 {
  float: left;
  width: 65%;
}
.row-75 {
  float: left;
  width: 75%;
}
.row-100 {
  float: left;
  width: 100%;
}
.form-content {
  margin-bottom: 20px;
}
/* ROW INPUT-CONTAIN
============================================== */
.input-contain {
  position: relative;
  padding: 10px 0;
}
.input-contain p {
  font-weight: 700;
}
.row-content {
  position: relative;
}
.row-content.grey {
  background-color: #f5f5f5;
  padding: 15px;
}
@media (max-width: 479px) {
  .row-content:nth-child(even) {
    margin-top: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .row-content:nth-child(even) {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .row-content:nth-child(even) {
    margin-top: 20px;
  }
}
/* ROW-LABEL */
.row-label {
  height: 40px;
  line-height: 40px;
  text-align: right;
}
.row-label label,
label.row-label {
  font-weight: 700;
  margin: 0;
  vertical-align: middle;
  display: inline-block;
  text-align: right;
  font-size: 14px;
  color: #626262;
}
.required .row-label label {
  color: #2e2c33;
}
.required .row-label label::before {
  content: '*';
  margin-right: 5px;
}
/* ROW-CONTENT SINGLE  */
.input-contain input,
.input-contain textarea {
  border-radius: 2px;
  border: 1px solid;
  border-color: #dfdfd5;
  margin: 0;
}
.input-contain input.icon {
  border-left: 0;
}
.input-contain p {
  padding: 0;
  margin: 0;
  margin-top: 10px;
}
/* ROW-DESCRIPTION */
.row-description {
  position: relative;
  height: 40px;
}
.row-description .error {
  font-style: italic;
  font-size: 0.875rem;
  color: #e52241;
}
/* OPTIONS ROW-CONTENT */
.left-photo {
  float: left;
}
.right-content {
  float: left;
  margin-left: 20px;
}
/**/
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}
.btn-select {
  background: #FFF;
  height: 40px;
  padding: 10px;
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  border-color: #dfdfd5;
  color: #a0a0a0;
  border-radius: 0;
}
.btn-first {
  border-right: 0;
}
.btn-middle {
  border-right: 0;
}
/* OPTIONS ROW-CONTENT */
.right-content {
  float: left;
  margin-left: 20px;
}
.right-content label {
  color: #e52241;
  font-weight: 400;
}
.left-photo {
  float: left;
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
  text-align: center;
  border-radius: 3px;
}
.left-photo .img-shadow {
  border-radius: 3px;
}
.left-photo .img-shadow::before {
  border-radius: 3px;
}
.left-photo .img-shadow img {
  vertical-align: top;
  z-index: 3;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  border-radius: 3px;
}
.input-group-addon {
  border-color: #dfdfd5;
  border-radius: 0;
}
/* RADIOBOX INPUT LABEL CSS3 ANIMATED
------------------------------------------------------------- */
label.radio-box {
  margin-bottom: 0;
  text-align: left!important;
}
.radio-box {
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
  line-height: 40px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}
.radio-box:hover .inner {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: .35;
}
.radio-box div {
  float: left;
}
.radio-box input {
  height: 1px;
  width: 1px;
  opacity: 0;
  margin: 0;
  height: initial!important;
}
.radio-box input:checked + .outer .inner {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.radio-box input:checked + .outer {
  border: 1px solid #e1e1e1;
}
.radio-box .outer {
  height: 22px;
  width: 22px;
  display: block;
  float: left;
  margin: 10px 5px 10px 0px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.error .radio-box .outer {
  border: 1px solid #e52241;
}
.radio-box:hover .outer {
  border: 1px solid #2e2c33;
}
.radio-box .inner {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  height: 12px;
  width: 12px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  display: block;
  margin: 4px;
  border-radius: 50%;
  background-color: #e52241;
  opacity: 0;
}
/* ________________________________________________________ */
/* CHECKBOX INPUT LABEL CSS3 ANIMATED
---------------------------------------------------- */
label.check-box {
  margin-bottom: 0;
  padding-left: 30px;
  line-height: 40px;
}
label.check-box {
  position: relative;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 300;
  font-size: 14px;
}
label.check-box:before,
label.check-box:after {
  font-family: 'Glyphicons Halflings';
  position: absolute;
  top: 10px;
  left: 0px;
}
label.check-box:before {
  content: '';
  /*\e67e unchecked*/
  font-size: 21px;
  border: 1px solid #e1e1e1;
  height: 20px;
  width: 20px;
  border-radius: 0px;
  margin-top: 0px;
}
label.check-box:hover:after {
  color: #e1e1e1;
}
.check-box .thead {
  font-weight: 300;
  font-size: 14px!important ;
}
.checkbox {
  display: none;
}
.checkbox:checked + label.check-box:after {
  max-width: 20px;
  color: #e52241;
  padding: 0 0 0 3px;
  font-size: 14px;
  margin-top: -10px;
}
.checkbox:checked + label.check-box:hover:after {
  max-width: 20px;
  color: #e52241;
  padding: 0 0 0 3px;
  font-size: 14px;
  margin-top: -10px;
}
.checkbox + label.check-box:after {
  max-width: 20px;
  color: transparent;
  font-size: 1px;
  padding: 0 0 0 9px;
  margin-top: -10px;
}
.checkbox + label.check-box:hover:after {
  max-width: 20px;
  color: #e1e1e1;
  font-size: 10px;
  padding: 0 0 0 5px;
  margin-top: -10px;
}
.checkbox:checked + label.check-box:before {
  border: 1px solid #e1e1e1;
}
.checkbox:checked + label.check-box:hover:before {
  border: 1px solid #e1e1e1;
}
.checkbox + label.check-box:before {
  border: 1px solid #e1e1e1;
  transition: all 0.10s;
}
.checkbox + label.check-box:hover:before {
  border: 1px solid #2e2c33;
}
/* LABEL CHECK-BOX */
label.check-box:after {
  content: "\f00c";
  font-family: 'FontAwesome';
  max-width: 0;
  overflow: hidden;
  transition: all 0.10s;
  text-align: center;
  font-size: 0px;
  font-size: 21px;
}
/* ________________________________________________________ */
/* TOGGLE CSS
________________________________________________________ */
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  margin: 0;
}
span.span-switch {
  vertical-align: 9px;
  margin-left: 5px;
  font-size: 16px;
}
/* Hide default HTML checkbox */
.switch input {
  display: none;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: #e52241;
}
input:focus + .slider {
  box-shadow: 0 0 1px #e52241;
}
input:checked + .slider:before {
  -webkit-transform: translateX(21px);
  -ms-transform: translateX(21px);
  transform: translateX(21px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.input-group-addon {
  min-width: 40px;
  border-color: #dfdfd5;
  background-color: transparent;
}
/* SELECT */
.select {
  display: inline-block;
  position: relative;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}
.select:before,
.select:after {
  content: " ";
  position: absolute;
  pointer-events: none;
}
.select:before {
  width: 2.25em;
  height: 100%;
  top: 0;
  right: 0;
  background-color: transparent;
  border-left: 1px solid #e1e1e1;
}
.select:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #e1e1e1;
  right: .75em;
  top: 50%;
  margin-top: -3px;
}
.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  box-shadow: none;
  border: none;
  outline: none;
}
.select select::-ms-expand {
  display: none;
}
/* - LESS LAYOUT - */
body.home {
  background: #FFF;
}
body.home .tricks_ios {
  /*-webkit-box!important*/
}
@media (max-width: 479px) {
  body.home .tricks_ios {
    display: block;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .tricks_ios {
    display: -webkit-box !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.home .tricks_ios {
    display: -webkit-box !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.home .tricks_ios {
    display: -webkit-box !important;
  }
}
body.home .header_top .language {
  background: #2e2c33;
  color: #FFF;
  padding: 6px 30px;
}
body.home .header_top .language:before {
  content: '';
  line-height: 0;
  font-size: 0;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 0px solid transparent;
  border-right: 15px solid #2e2c33;
  position: absolute;
  top: 0;
  left: -15px;
}
body.home .header_top .language:after {
  content: none;
}
body.home .header_top .language a {
  color: #FFF;
}
body.home .header_top .language a:hover,
body.home .header_top .language a:focus {
  text-decoration: none;
  color: #d9d9d9;
}
body.home .top {
  background: #FFF;
}
body.home .top h1 {
  color: #2e2c33;
  font-size: 0.833rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  height: 60px;
  line-height: 16px;
  padding: 0 120px;
  padding-top: 23px;
}
@media (max-width: 479px) {
  body.home .top h1 {
    font-size: 0.625rem;
    text-align: left;
    padding-left: 20px;
    line-height: 12px;
    padding-top: 10px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .top h1 {
    font-size: 0.625rem;
    text-align: left;
    padding-left: 20px;
    line-height: 12px;
    padding-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.home .top h1 {
    padding-top: 15px;
  }
}
body.home .left {
  max-width: calc(50% - 30px);
  position: relative;
  padding: 0;
  margin-right: 20px;
  margin-left: 20px;
  height: calc(100vh - 80px);
  background: url('../img/view-01.jpg') center center no-repeat;
  background-size: cover;
  object-fit: cover;
  float : left;
}
@media (max-width: 479px) {
  body.home .left {
    height: calc(50vh - 50px);
    width: calc(100% - 40px);
    margin: 0 20px;
    max-width: 100%;
  }
}
body.home .left.inactive .color {
  display: none!important;
}
body.home .left.inactive .nb {
  display: initial!important;
}
body.home .left.inactive:before {
  content: '';
  position: absolute;
  z-index: 10;
  left: 0;
  height: 100%;
  width: 100%;
  background: #FFF;
  opacity: 0.5;
}
body.home .left.active {
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.45);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.45);
  -o-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.45);
}
body.home .left.active .home_hover {
  opacity: 1;
}
body.home .left .home_hover {
  opacity: 0.5;
  background: linear-gradient(45deg, rgba(221, 27, 58, 0.9) 0%, rgba(202, 19, 48, 0.9) 100%);
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  position: absolute;
  z-index: 1;
  padding: 0;
  margin: 20px 0 0 20px;
  transition: all 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.home .left .home_txt {
  position: absolute;
  z-index: 9;
  left: 50px;
  right: 0;
  bottom: 0;
  top: 30vh;
  width: calc(100% - 400px);

  color: #FFF;
  font-size: .875rem;
}
@media (max-width: 479px) {
  body.home .left .home_txt {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .left .home_txt {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.home .left .home_txt {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.home .left .home_txt {
    display: none;
  }
}
body.home .left .home_img {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  bottom: 0;
  height: 80px;
  width: 300px;
  background: #FFF;
  line-height: 80px;
  margin: auto;
  text-align: center;
  -moz-box-shadow: -2px 0px 3px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: -2px 0px 3px 0px rgba(0, 0, 0, 0.25);
  -o-box-shadow: -2px 0px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: -2px 0px 3px 0px rgba(0, 0, 0, 0.25);
}
body.home .left .home_img .color {
  display: initial;
}
body.home .left .home_img .nb {
  display: none;
}
@media (max-width: 479px) {
  body.home .left .home_img {
    height: 50px;
    line-height: 50px;
    width: 145px;
    left: 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .left .home_img {
    height: 50px;
    line-height: 50px;
    width: 225px;
  }
}
body.home .left .home_img img {
  height: 50px;
}
@media (max-width: 479px) {
  body.home .left .home_img img {
    height: 25px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .left .home_img img {
    height: 30px;
  }
}
body.home .left .home_link {
  position: absolute;
  z-index: 10;
  bottom: 60px;
  text-align: center;
  left: 0;
  right: 0;
}
body.home .left .home_link.edito {
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 479px) {
  body.home .left .home_link.edito {
    top: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .left .home_link.edito {
    top: 20px;
  }
}
@media (max-width: 479px) {
  body.home .left .home_link {
    bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .left .home_link {
    bottom: 20px;
  }
}
body.home .left .home_link a {
  text-align: center;
  color: #FFF;
  font-size: 0.875rem;
}
@media (max-width: 479px) {
  body.home .left .home_link a {
    font-size: 0.688rem;
  }
}
body.home .left .home_link a:hover,
body.home .left .home_link a:focus {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
body.home .right {
  max-width: calc(50% - 30px);
  position: relative;
  padding: 0;
  margin-right: 20px;
  height: calc(100vh - 80px);
  background: url('../img/view-03.jpg') center center no-repeat;
  background-size: cover;
  object-fit: cover;
  float : left;
}
@media (max-width: 479px) {
  body.home .right {
    height: calc(50vh - 50px);
    width: calc(100% - 40px);
    margin: 20px 20px 0 20px;
    max-width: 100%;
  }
}
body.home .right.inactive .color {
  display: none!important;
}
body.home .right.inactive .nb {
  display: initial!important;
}
body.home .right.inactive:after {
  content: '';
  position: absolute;
  z-index: 10;
  left: 0;
  height: 100%;
  width: 100%;
  background: #FFF;
  opacity: 0.5;
}
body.home .right.active {
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.45);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.45);
  -o-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.45);
}
body.home .right.active .home_hover {
  opacity: 1;
}
body.home .right .home_hover {
  opacity: 0.5;
  background: linear-gradient(45deg, rgba(50, 50, 50, 0.85) 0%, rgba(10, 10, 10, 0.85) 100%);
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  position: absolute;
  z-index: 1;
  padding: 0;
  margin: 20px 0 0 20px;
  transition: all 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.home .right .home_txt {
  position: absolute;
  z-index: 9;
  right: 50px;
  bottom: 0;
  top: 30vh;
  width: calc(100% - 400px);

  color: #FFF;
  font-size: .875rem;
}
@media (max-width: 479px) {
  body.home .right .home_txt {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .right .home_txt {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.home .right .home_txt {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.home .right .home_txt {
    display: none;
  }
}
body.home .right .home_img {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  bottom: 0;
  height: 80px;
  width: 300px;
  background: #FFF;
  line-height: 80px;
  margin: auto;
  text-align: center;
  -moz-box-shadow: 2px 0px 3px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 2px 0px 3px 0px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 2px 0px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 0px 3px 0px rgba(0, 0, 0, 0.25);
}
body.home .right .home_img .color {
  display: initial;
}
body.home .right .home_img .nb {
  display: none;
}
@media (max-width: 479px) {
  body.home .right .home_img {
    height: 50px;
    line-height: 50px;
    width: 145px;
    right: 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .right .home_img {
    height: 50px;
    line-height: 50px;
    width: 225px;
  }
}
body.home .right .home_img img {
  height: 50px;
}
@media (max-width: 479px) {
  body.home .right .home_img img {
    height: 25px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .right .home_img img {
    height: 30px;
  }
}
body.home .right .home_link {
  position: absolute;
  bottom: 60px;
  text-align: center;
  z-index: 10;
  left: 0;
  right: 0;
}
body.home .right .home_link.edito {
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 479px) {
  body.home .right .home_link.edito {
    top: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .right .home_link.edito {
    top: 20px;
  }
}
@media (max-width: 479px) {
  body.home .right .home_link {
    bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.home .right .home_link {
    bottom: 20px;
  }
}
body.home .right .home_link a {
  text-align: center;
  color: #FFF;
  font-size: 0.875rem;
}
@media (max-width: 479px) {
  body.home .right .home_link a {
    font-size: 0.688rem;
  }
}
body.home .right .home_link a:hover,
body.home .right .home_link a:focus {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
/* - LESS LAYOUT - */
/* RESET
--------------------------------------------------- */
html,
body {
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
}
body {
  background-color: #f4f7fa;
  font-family: 'Gotham Rounded', sans-serif;
  font-weight: 300;
  font-size: 1em;
  color: #2e2c33;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #2e2c33;
}
a:hover {
  text-decoration: underline;
  color: #e52241;
}
a:focus {
  text-decoration: underline;
  outline: 0;
  color: #e52241;
}
p {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
input:focus,
select:focus,
a:focus,
button:focus,
th:focus {
  outline: 0!important;
}
.clear {
  clear: both;
}
.t-center {
  text-align: center;
}
.t-700 {
  font-weight: 700;
}
.p0 {
  padding: 0;
}
.pb0 {
  padding-bottom: 0!important;
}
.pt70 {
  padding-top: 70px!important;
}
.mt75 {
  margin-top: 75px;
}
.m0 {
  margin: 0!important;
}
.mt10 {
  margin-top: 10px!important;
}
.mt20 {
  margin-top: 20px!important;
}
.mt30 {
  margin-top: 30px!important;
}
.mt40 {
  margin-top: 40px!important;
}
.mt60 {
  margin-top: 60px!important;
}
.mb0 {
  margin-bottom: 0px!important;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
@media (max-width: 479px) {
  .mb30-md {
    margin-bottom: 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .mb30-md {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mb30-md {
    margin-bottom: 30px;
  }
}
.mb40 {
  margin-bottom: 40px;
}
.mb60 {
  margin-bottom: 60px;
}
.mr20 {
  margin-right: 20px;
}
.mt20r {
  margin-top: 0;
}
@media (max-width: 479px) {
  .mt20r {
    margin-top: 20px!important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .mt20r {
    margin-top: 20px!important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt20r {
    margin-top: 20px!important;
  }
}
.t-grey {
  color: #737373;
}
.border-bottom {
  height: 1px;
  background: #e1e1e1;
  margin: 20px;
}
.px_separator {
  height: 1px;
  width: 15%;
  margin: 30px auto;
  background: rgba(46, 44, 51, 0.1);
  text-align: center;
}
/* HEADER
   ========================================================================== */
header {
  position: relative;
  width: 100%;
  z-index: 10;
}
.content-background {
  border-bottom: 1px solid;
  border-color: #FFF;
  background: url('../img/back-newsletter2.jpg') 50% 100% no-repeat;
  background-size: 100%;
}
/* Style for the modal and overlay*/
.ffb-modal .container {
  min-height: 100%;
}
.ffb-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 630px;
  min-width: 320px;
  height: auto;
  z-index: 2000;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.ffb-modal a.btn-defaut {
  font-weight: 400;
}
.ffb-modal a.btn-defaut:hover,
.ffb-modal a.btn-defaut:focus {
  color: #FFF;
}
.ffb-modal .input-contain {
  text-align: center;
}
.ffb-modal .input-contain label {
  font-size: 12px;
}
.ffb-show {
  visibility: visible;
}
.ffb-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.ffb-show ~ .ffb-overlay {
  opacity: 1;
  visibility: visible;
}
a.ffb-close {
  position: absolute;
  top: -40px;
  right: -20px;
  font-size: 2rem;
  color: #FFF;
  cursor: pointer;
}
a.ffb-close:hover,
a.ffb-close:focus {
  color: #e52241;
  cursor: pointer;
  text-decoration: none;
}
button.ffb-link,
a.ffb-link {
  display: table;
  margin: 0 auto;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 0.875em;
  font-weight: 300;
  border-radius: 5px;
  border: 1px solid;
  background: transparent;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  transition: all 0.125s ease-in-out;
  border-color: #2e2c33;
  background-color: #2e2c33;
  color: #FFF;
}
button.ffb-link:hover,
a.ffb-link:hover {
  border-color: #2e2c33;
  background-color: #2e2c33;
  color: #FFF;
  cursor: pointer;
  padding: 10px 40px;
  text-decoration: none;
}
button.ffb-link i,
a.ffb-link i {
  margin-right: 7px;
}
@media (max-width: 479px) {
  button.ffb-link i,
  a.ffb-link i {
    margin-right: 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  button.ffb-link i,
  a.ffb-link i {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  button.ffb-link i,
  a.ffb-link i {
    margin-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  button.ffb-link i,
  a.ffb-link i {
    margin-right: 0;
  }
}
@media (max-width: 479px) {
  button.ffb-link,
  a.ffb-link {
    padding: 10px 15px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  button.ffb-link,
  a.ffb-link {
    padding: 10px 15px;
  }
}
.ffb-modal .ffb-close-icon {
  display: block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  top: -30px;
  right: 0px;
  z-index: 999;
  cursor: pointer;
  border: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
/* Content styles */
.ffb-content {
  color: #2e2c33;
  background: #FFF;
  position: relative;
  border-radius: 0;
  margin: 0 auto;
}
.ffb-content h3 {
  margin: 0;
  padding: 20px;
  text-align: center;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 300;
  border-bottom: 1px solid #e1e1e1;
  color: #e52241;
  border-radius: 0;
  margin: auto;
  width: 87.5%;
}
.ffb-content h3:before {
  content: '';
  height: 45px;
  width: 45px;
  background: linear-gradient(45deg, #dd1b3a 0%, #ca1330 100%);
  position: absolute;
  left: -25px;
  top: -25px;
}
.ffb-content > .ffb-footer {
  padding: 0 40px 20px;
  margin: 0;
  font-weight: 300;
  font-size: 1.15em;
    border-top: 1px solid #e1e1e1;
}
.ffb-content > .ffb-body {
  padding: 15px 40px 20px;
  margin: 0;
  font-weight: 300;
  font-size: 1.15em;
max-height: 50vh;
    overflow: scroll;
}
.ffb-content > div p {
  margin: 0;
  padding: 10px 0;
}
.ffb-content > div ul {
  margin: 0;
  padding: 0 0 30px 20px;
}
.ffb-content > div ul li {
  padding: 5px 0;
}
.ffb-content input {
  text-align: center;
}
.ffb-content button {
  display: block;
  margin: 0 auto;
  padding: 9px 20px;
  text-transform: uppercase;
  font-size: 0.875em;
  font-weight: 300;
  border-radius: 5px;
  border: 1px solid;
  background: transparent;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  color: #FFF;
  border-color: #e52241;
  background-color: #e52241;
  transition: all 0.125s ease-in-out;
}
.ffb-content button:hover {
  border-color: #2e2c33;
  background-color: #2e2c33;
  text-decoration: none;
  cursor: pointer;
}
.ffb-content p.annotation {
  font-size: 1.5rem;
  text-align: center;
  color: #2e2c33;
}
/* Blur background */
.ffb-show.ffb-effect ~ .ffb-overlay {
  background: rgba(0, 0, 0, 0.6);
}
.ffb-show.ffb-effect ~ #container {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  filter: blur(3px);
}
.ffb-show.ffb-effect ~ header {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  filter: blur(3px);
}
/* Effect: Fade in and scale up */
.ffb-effect .ffb-content {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.ffb-show.ffb-effect .ffb-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
@media screen and (max-width: 32em) {
  body {
    font-size: 75%;
  }
}
/* - LESS MODULES - */
/* BLOC CONTENT
   ========================================================================== */
.content_wrapper {
  padding: 60px 0;
}
.content_wrapper .content_bloc {
  background: #FFF;
}
.content_wrapper .content_bloc h2 {
  position: relative;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #2e2c33;
  font-weight: 400;
  line-height: 1.500rem;
  padding-top: 5px;
  padding-left: 20px;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}
.content_wrapper .content_bloc h2:before {
  content: '';
  height: 55px;
  width: 55px;
  background: linear-gradient(45deg, #dd1b3a 0%, #ca1330 100%);
  position: absolute;
  left: -55px;
  top: 0;
}
.content_wrapper .content_bloc h2 span {
  color: #e52241;
  font-weight: 300;
}
.content_wrapper .content_bloc h2 i {
  color: #e52241;
  margin-right: 7px;
}
.content_wrapper .content_bloc h2 i.black {
  color: #2e2c33;
}
.content_wrapper .content_bloc h2.no-style:before {
  content: none;
}
.content_wrapper .content_bloc a {
  /*display: block;*/
  font-size: 0.688rem;
  color: #e52241;
  text-transform: none;
  text-shadow: none;
 /* text-align: right;*/
  font-weight: 400;
  margin-top: 20px;
  transition: all 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 479px) {
  .content_wrapper .content_bloc a {
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .content_wrapper .content_bloc a {
    text-align: center;
  }
}
.content_wrapper .content_bloc a i {
  font-size: 11px;
  padding: 0 0 0 1px;
  border-radius: 25px;
  border: 1px solid #e52241;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  margin-left: 5px;
}
.content_wrapper .content_bloc a:hover,
.content_wrapper .content_bloc a:focus {
  color: #2e2c33;
  text-decoration: none;
}
.content_wrapper .content_bloc a:hover i,
.content_wrapper .content_bloc a:focus i {
  border-color: #2e2c33;
}
.content_wrapper .content_bloc a.link-simple {
  display: initial;
  font-size: 14px;
}
.content_wrapper .content_bloc a.btn-defaut,
.content_wrapper .content_bloc button.btn-defaut {
  text-align: center;
 /* display: block;*/
  margin: auto;
  background: linear-gradient(45deg, #dd1b3a 0%, #ca1330 100%);
  color: #FFF;
  max-width: 300px;
  min-width: 200px;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 15px 20px;
  border: 0;
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 0.688rem;
  transition: all 0.25s ease-in-out;
}
.content_wrapper .content_bloc a.btn-defaut:hover,
.content_wrapper .content_bloc button.btn-defaut:hover,
.content_wrapper .content_bloc a.btn-defaut:focus,
.content_wrapper .content_bloc button.btn-defaut:focus {
  background: linear-gradient(45deg, #2e2c33 0%, #3c3c3c 100%);
  text-decoration: none;
}
.content_wrapper .content_bloc p {
  padding: 0 20px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: justify;
}
@media (max-width: 479px) {
  .content_wrapper .content_bloc p {
    padding-right: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .content_wrapper .content_bloc p {
    padding-right: 20px;
  }
}
.content_wrapper .content_bloc .logo {
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  border: 1px solid #e1e1e1;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: all 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 479px) {
  .content_wrapper .content_bloc .logo {
    border-bottom: 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .content_wrapper .content_bloc .logo {
    border-bottom: 0;
  }
}
.content_wrapper .content_bloc .logo span.img-shadow:before {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.content_wrapper .content_bloc .logo span.img-shadow img {
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.content_wrapper .content_bloc .content_bloc_txt {
  padding: 20px;
}
.content_wrapper .content_bloc .content_bloc_txt.left {
  padding: 20px 0 20px 20px;
}
.content_wrapper .content_bloc .content_bloc_txt.right {
  padding: 20px 0 20px 20px;
}
.content_wrapper .content_bloc .content_bloc_txt p.columns-2 {
  column-count: 2;
}
@media (max-width: 479px) {
  .content_wrapper .content_bloc .content_bloc_txt p.columns-2 {
    column-count: 1;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .content_wrapper .content_bloc .content_bloc_txt p.columns-2 {
    column-count: 1;
  }
}
.content_wrapper .content_bloc .content_bloc_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: all 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 479px) {
  .content_wrapper .content_bloc .content_bloc_img {
    height: 250px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .content_wrapper .content_bloc .content_bloc_img {
    height: 250px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .content_wrapper .content_bloc .content_bloc_img {
    height: 250px;
  }
}
.content_wrapper .content_bloc .content_bloc_img span.img-shadow:before {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.content_wrapper .content_bloc .content_bloc_img span.img-shadow img {
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.content_wrapper .content_bloc.note {
  background: #f4f7fa;
  border: 1px solid #e1e1e1;
}
.content_wrapper .content_bloc.note h2 {
  color: #2e2c33;
  background: #f4f7fa;
  margin-top: -20px;
  display: table;
  margin: -20px auto 20px;
  text-align: center;
  padding: 10px 60px;
  position: relative;
}
.content_wrapper .content_bloc.note h2:before {
  content: none;
}
.content_wrapper .content_bloc.note .content_bloc_txt {
  padding: 0 10px 10px;
}
.content_wrapper .content_bloc.note .content_bloc_txt ul {
  padding: 0 10px;
}
.content_wrapper .content_bloc.note .content_bloc_txt ul li {
  padding: 10px 0;
  font-size: 0.875rem;
}
.content_wrapper .content_bloc.note .content_bloc_txt ul li i {
  color: #e52241;
  margin-right: 7px;
}
.content_wrapper .content_bloc.note .content_bloc_txt ul li.title {
  font-weight: 700;
  padding: 0;
}
.content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li {
  padding: 10px;
  font-size: 0.813rem;
  text-align: right;
}
.content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li:nth-child(even) {
  background: rgba(46, 44, 51, 0.05);
}
.content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li span.right {
  text-align: right;
  width: 60%;
  display: inline-block;
  vertical-align: top;
  letter-spacing: -0.25px;
}
.content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li span.left {
  width: 40%;
  display: inline-block;
  font-weight: 400;
  color: #e52241;
  vertical-align: top;
  letter-spacing: -0.25px;
}
.content_wrapper .content_bloc.list-download {
  padding: 20px;
}
.content_wrapper .content_bloc.list-download h3 {
  position: relative;
  font-size: 0.833rem;
  text-transform: uppercase;
  color: #2e2c33;
  font-weight: 400;
  line-height: 1.500rem;
  text-align: center;
}
.content_wrapper .content_bloc.list-download ul li {
  border-bottom: 1px solid #e1e1e1;
}
.content_wrapper .content_bloc.list-download ul li:first-child {
  border-top: 1px solid #e1e1e1;
}
.content_wrapper .content_bloc.list-download ul li:nth-child(even) a {
  background: rgba(244, 247, 250, 0.5);
}
.content_wrapper .content_bloc.list-download ul li a {
  margin: 0;
  color: #2e2c33;
  font-weight: 300;
  font-size: 0.833rem;
  text-transform: uppercase;
  text-align: left;
  padding: 10px;
}
.content_wrapper .content_bloc.list-download ul li a:hover,
.content_wrapper .content_bloc.list-download ul li a:focus {
  color: #e52241;
  background: #f4f7fa;
}
.content_wrapper .content_bloc.list-download ul li a i {
  border: 0;
}
.content_wrapper .content_bloc .statistiques {
  padding: 20px 0;
}
.content_wrapper .content_bloc .statistiques.home-page {
  padding: 0 20px 20px;
}
.content_wrapper .content_bloc .statistiques.home-page h3 span {
  background-color: #FFF;
}
.content_wrapper .content_bloc .statistiques h3 {
  font-size: 0.813rem;
  text-transform: uppercase;
  font-weight: 400;
  padding: 10px;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
}
.content_wrapper .content_bloc .statistiques h3 span {
  height: 1px;
  width: 100%;
  background-color: #e1e1e1;
  position: absolute;
  top: 15px;
  margin-left: 30px;
}
.content_wrapper .content_bloc .statistiques .col-md-4,
.content_wrapper .content_bloc .statistiques .col-lg-4 {
  display: flex;
}
@media (max-width: 479px) {
  .content_wrapper .content_bloc .statistiques .col-md-4,
  .content_wrapper .content_bloc .statistiques .col-lg-4 {
    margin-bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .content_wrapper .content_bloc .statistiques .col-md-4,
  .content_wrapper .content_bloc .statistiques .col-lg-4 {
    margin-bottom: 20px;
  }
}
.content_wrapper .content_bloc .statistiques .statistiques_indicator {
  padding-left: 10px;
}
@media (max-width: 479px) {
  .content_wrapper .content_bloc .statistiques .statistiques_indicator {
    padding-left: 10px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .content_wrapper .content_bloc .statistiques .statistiques_indicator {
    padding-left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .content_wrapper .content_bloc .statistiques .statistiques_indicator {
    padding-left: 10px;
  }
}
.content_wrapper .content_bloc .statistiques .statistiques_indicator i {
  height: 50px;
  width: 50px;
  border: 2px solid;
  border-radius: 50px;
  font-size: 1.5rem;
  text-align: center;
  padding: 9px 14px;
  margin-right: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .content_wrapper .content_bloc .statistiques .statistiques_indicator i {
    height: 40px;
    width: 40px;
    font-size: 1rem;
    padding: 8px 13px;
  }
}
.content_wrapper .content_bloc .statistiques .statistiques_indicator.success i {
  color: #64c90a;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.content_wrapper .content_bloc .statistiques .statistiques_indicator.error i {
  color: #e52241;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.content_wrapper .content_bloc .statistiques .statistiques_txt h4 {
  font-size: 1rem;
  text-transform: uppercase;
}
.content_wrapper .content_bloc .statistiques .statistiques_txt p.statistiques_p {
  font-size: 0.688rem;
  margin: 0;
  padding: 0;
  color: rgba(46, 44, 51, 0.5);
  line-height: inherit;
}
.content_wrapper .content_bloc .statistiques .statistiques_txt p.statistiques_p_ca {
  font-size: 0.813rem;
  margin: 0;
  padding: 0;
  line-height: inherit;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.content_wrapper .content_bloc .statistiques .statistiques_txt p.statistiques_p_ca span {
  font-weight: 300;
}
.content_wrapper .content_bloc .statistiques .statistiques_txt p.statistiques_p_ca.success span {
  color: #64c90a;
}
.content_wrapper .content_bloc .statistiques .statistiques_txt p.statistiques_p_ca.error span {
  color: #e52241;
}
.content_wrapper .bande_lbp {
  margin: 60px 0 20px;
  position: relative;
  background: linear-gradient(45deg, #dd1b3a 0%, #ca1330 100%);
  padding: 10px 20px;
  width: calc(100% - 30px);
}
@media (max-width: 479px) {
  .content_wrapper .bande_lbp {
    padding-bottom: 5px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .content_wrapper .bande_lbp {
    padding-bottom: 5px;
  }
}
.content_wrapper .bande_lbp:after {
  content: '';
  line-height: 0;
  font-size: 0;
  width: 0;
  height: 0;
  border-top: 60px solid #ca1330;
  border-bottom: 30px solid transparent;
  border-left: 0px solid transparent;
  border-right: 30px solid transparent;
  position: absolute;
  top: 0;
  right: -30px;
}
.content_wrapper .bande_lbp img {
  float: left;
  height: 40px;
  margin-right: 20px;
}
.content_wrapper .bande_lbp p {
  float: left;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #FFF;
  line-height: 40px;
}
@media (max-width: 479px) {
  .content_wrapper .bande_lbp p {
    line-height: 45px;
    font-size: 1rem;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .content_wrapper .bande_lbp p {
    line-height: 45px;
    font-size: 1rem;
  }
}
.content_wrapper .content_bloc_list {
  position: relative;
  margin-bottom: 30px;
}
.content_wrapper .content_bloc_list h2 {
  position: relative;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #2e2c33;
  font-weight: 400;
  line-height: 1.500rem;
  padding-top: 5px;
  padding-left: 65px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.content_wrapper .content_bloc_list h2 span {
  color: #e52241;
  font-weight: 300;
}
.content_wrapper .content_bloc_list .h2_icon {
  height: 55px;
  width: 55px;
  position: absolute;
  left: 0;
  top: 0;
}
.content_wrapper .content_bloc_list a {
  display: block;
  font-size: 0.688rem;
  color: #e52241;
  text-transform: none;
  text-shadow: none;
  text-align: left;
  padding-left: 25px;
  font-weight: 400;
  margin-top: 5px;
}
.content_wrapper .content_bloc_list a i {
  font-size: 11px;
  padding: 0 1px 0 0;
  border-radius: 25px;
  border: 1px solid #e52241;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  margin-left: 5px;
}
.content_wrapper .content_bloc_list a:hover,
.content_wrapper .content_bloc_list a:focus {
  color: #2e2c33;
  text-decoration: none;
}
.content_wrapper .content_bloc_list a:hover i,
.content_wrapper .content_bloc_list a:focus i {
  border-color: #2e2c33;
}
.content_wrapper .content_bloc_list ul {
  padding: 0 25px;
}
.content_wrapper .content_bloc_list ul li {
  font-size: 0.813rem;
  padding: 5px 0;
}
.content_wrapper .content_bloc_list ul li i {
  margin-right: 7px;
  color: #e52241;
  font-size: 0.813rem;
}
.content_wrapper .tableau {
  padding: 20px;
  width: 100%;
  font-size: 0.875rem;
  overflow-x: scroll;
}
.content_wrapper .tableau h3 {
  font-size: 0.813rem;
  text-transform: uppercase;
  font-weight: 400;
  padding: 10px;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
}
.content_wrapper .tableau h3 span {
  height: 1px;
  width: 100%;
  background-color: #e1e1e1;
  position: absolute;
  top: 15px;
  margin-left: 30px;
}
.content_wrapper .tableau table {
  width: 100%;
}
.content_wrapper .tableau thead tr th {
  text-transform: uppercase;
  font-weight: 400;
  line-height: 12px;
  padding: 10px;
  font-size: 11px;
  background: #f4f7fa;
  border-bottom: 1px solid #2e2c33;
}
.content_wrapper .tableau thead tr th.empty {
  background: transparent;
  border-bottom: 0;
}
.content_wrapper .tableau tbody tr:nth-child(odd) {
  background: rgba(244, 247, 250, 0.5);
}
.content_wrapper .tableau tbody tr td {
  padding: 10px;
  min-width: 80px;
}
.content_wrapper .tableau tbody tr td.first {
  min-width: 150px;
  font-size: 11px;
  font-weight: 400;
  text-align: left;
}
.content_wrapper .tableau tbody tr td.first span {
  font-style: italic;
  font-weight: 300;
}
/* BLOC NEWSLETTER
   ========================================================================== */
.newsletter_wrapper {
  padding: 60px 0 80px;
  color: #FFF;
}
.newsletter_wrapper h2 {
  font-size: 2.25rem;
  text-align: center;
  color: #2e2c33;
}
.newsletter_wrapper p {
  text-align: center;
  color: #2e2c33;
  margin-top: 5px;
  font-size: 0.813rem;
  font-weight: 400;
}
.newsletter_wrapper p:after {
  content: '';
  position: absolute;
  margin: 50px auto 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 35px;
  background: #e52241;
}
.newsletter_wrapper .newsletter-form {
  position: relative;
  display: block;
  height: 40px;
  margin-top: 70px;
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 479px) {
  .newsletter_wrapper .newsletter-form {
    box-shadow: none;
    height: inherit;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .newsletter_wrapper .newsletter-form {
    box-shadow: none;
    height: inherit;
  }
}
.newsletter_wrapper .newsletter-form input {
  border-radius: 0;
  border: 0;
  padding-left: 20px;
  color: #2e2c33;
  width: calc(100% - 200px);
  float: left;
}
@media (max-width: 479px) {
  .newsletter_wrapper .newsletter-form input {
    float: none;
    width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .newsletter_wrapper .newsletter-form input {
    float: none;
    width: 100%;
  }
}
.newsletter_wrapper .newsletter-form button.btn-envoyer,
.newsletter_wrapper .newsletter-form a.btn-envoyer {
  background: linear-gradient(45deg, #dd1b3a 0%, #ca1330 100%);
  color: #FFF;
  text-transform: uppercase;
  font-size: 0.813rem;
  font-weight: 400;
  font-family: 'Gotham Rounded', sans-serif;
  width: 200px;
  padding: 10px 10px 7px 10px;
  line-height: 21px;
  border-radius: 0;
  float: left;
}
@media (max-width: 479px) {
  .newsletter_wrapper .newsletter-form button.btn-envoyer,
  .newsletter_wrapper .newsletter-form a.btn-envoyer {
    float: none;
    margin: auto;
    text-align: center;
    display: inherit;
    margin-top: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .newsletter_wrapper .newsletter-form button.btn-envoyer,
  .newsletter_wrapper .newsletter-form a.btn-envoyer {
    float: none;
    margin: auto;
    text-align: center;
    display: inherit;
    margin-top: 20px;
  }
}
.newsletter_wrapper .newsletter-form button.btn-envoyer:hover,
.newsletter_wrapper .newsletter-form a.btn-envoyer:hover,
.newsletter_wrapper .newsletter-form button.btn-envoyer:focus,
.newsletter_wrapper .newsletter-form a.btn-envoyer:focus {
  background: linear-gradient(45deg, #2e2c33 0%, #3c3c3c 100%);
}
/* BLOC SLIDER
   ========================================================================== */
.slider_wrapper {
  background: #FFF;
}
/* IMAGE HEADER
   ========================================================================== */
.image_wrapper {
  background: #FFF;
  height: 250px;
}
.image_wrapper span.img-shadow:before {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.image_wrapper span.img-shadow img {
  opacity: 1;
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
/*  OWL CARROUSEL HOME
   ========================================================================== */
.owl-home .owl-item {
  height: 80vh;
  width: 100%;
}
@media (max-width: 479px) {
  .owl-home .owl-item {
    height: 60vh;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-home .owl-item {
    height: 60vh;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .owl-home .owl-item {
    height: inherit;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .owl-home .owl-item {
    height: inherit;
  }
}
@media (min-width: 768px) and (max-width: 991px) and (min-height: 800px) {
  .owl-home .owl-item {
    height: 60vh;
  }
}
@media (min-width: 992px) and (max-width: 1199px) and (min-height: 1100px) {
  .owl-home .owl-item {
    height: 45vh;
  }
}
.owl-home .owl-home-slide {
  float: left;
  position: relative;
  min-height: 1px;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  height: 90vh;
}
@media (max-width: 479px) {
  .owl-home .owl-home-slide {
    height: 60vh;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-home .owl-home-slide {
    height: 60vh;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .owl-home .owl-home-slide {
    height: inherit;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .owl-home .owl-home-slide {
    height: inherit;
  }
}
@media (min-width: 768px) and (max-width: 991px) and (min-height: 800px) {
  .owl-home .owl-home-slide {
    height: 60vh;
  }
}
@media (min-width: 992px) and (max-width: 1199px) and (min-height: 1100px) {
  .owl-home .owl-home-slide {
    height: 45vh;
  }
}
.owl-home .owl-home-slide img {
  opacity: 1;
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.owl-home .owl-home-slide .owl-slide-txt {
  position: absolute;
  z-index: 5;
  top: 25vh;
  bottom: inherit;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 3.5rem;
  color: #FFF;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
  line-height: 60px;
}
@media (max-width: 479px) {
  .owl-home .owl-home-slide .owl-slide-txt {
    font-size: 1.375rem;
    line-height: 21px;
    top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) and (min-height: 800px) {
  .owl-home .owl-home-slide .owl-slide-txt {
    top: 15vh;
  }
}
@media (min-width: 992px) and (max-width: 1199px) and (min-height: 1100px) {
  .owl-home .owl-home-slide .owl-slide-txt {
    top: 12.5vh;
  }
}
.owl-home .owl-dots {
  display: none;
}
.owl-home.programme .owl-dots {
  margin-top: 0;
}
.owl-home.programme .owl-home-slide img {
  opacity: 0.95;
}
.owl-slide-edito {
  float: left;
  width: 400px;
  min-height: 390px;
  background: linear-gradient(45deg, rgba(221, 27, 58, 0.9) 0%, rgba(202, 19, 48, 0.9) 100%);
  padding: 30px;
}
@media (max-width: 479px) {
  .owl-slide-edito {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-slide-edito {
    display: none;
  }
}
.owl-slide-edito h2 {
  font-family: 'Blair ITC', sans-serif;
  font-size: 1.5rem;
  text-shadow: none;
  background: #FFF;
  color: #2e2c33;
  text-align: left;
  display: block;
  padding: 10px 50px 5px;
  margin-left: -50px;
  max-width: 250px;
  position: relative;
}
.owl-slide-edito h2:after {
  content: '';
  line-height: 0;
  font-size: 0;
  width: 0;
  height: 0;
  border-top: 41px solid #ffffff;
  border-bottom: 20px solid transparent;
  border-left: 0px solid transparent;
  border-right: 20px solid transparent;
  position: absolute;
  top: 0;
  right: -20px;
}
.owl-slide-edito p {
  font-size: 0.813rem;
  line-height: 1.313rem;
  color: #FFF;
  text-transform: none;
  text-shadow: none;
  padding: 20px 0;
  text-align: justify;
}
.owl-slide-edito a {
  display: block;
  font-size: 0.813rem;
  color: #FFF;
  text-transform: none;
  text-shadow: none;
  text-align: right;
  margin-right: 20px;
  font-weight: 400;
}
.owl-slide-edito a i {
  font-size: 11px;
  padding: 0 0 0 1px;
  border-radius: 25px;
  border: 1px solid #FFF;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  margin-left: 5px;
}
.owl-slide-edito a:hover,
.owl-slide-edito a:focus {
  color: #2e2c33;
  text-decoration: none;
}
.owl-slide-edito a:hover i,
.owl-slide-edito a:focus i {
  border-color: #2e2c33;
}
.owl-slide-title {
  float: left;
  margin-left: -25px;
  margin-top: 297px;
}
@media (max-width: 479px) {
  .owl-slide-title {
    margin-top: 20vh;
    margin-left: 25px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-slide-title {
    margin-top: 20vh;
    margin-left: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .owl-slide-title {
    width: calc(100% - 400px);
    display: none;
  }
}
.owl-slide-title h2 {
  position: relative;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #FFF;
  font-size: 1.125rem;
  text-transform: uppercase;
  line-height: 1.500rem;
  text-align: left;
  padding: 5px 20px 5px 68px;
  font-weight: 400;
}
@media (max-width: 479px) {
  .owl-slide-title h2 {
    font-size: 0.813rem;
    padding-left: 43px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-slide-title h2 {
    font-size: 0.813rem;
    padding-left: 43px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .owl-slide-title h2 {
    font-size: 0.875rem;
    padding: 9px 20px 9px 68px;
    line-height: 1.25rem;
    text-align: justify;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .owl-slide-title h2 {
    font-size: 0.875rem;
    padding: 9px 20px 9px 68px;
    line-height: 1.25rem;
  }
}
.owl-slide-title h2:before {
  content: '';
  height: 58px;
  width: 58px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 479px) {
  .owl-slide-title h2:before {
    left: -25px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-slide-title h2:before {
    left: -25px;
  }
}
.owl-slide-title h2 span {
  display: block;
}
@media (max-width: 479px) {
  .owl-slide-title h2 span {
    display: inline;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-slide-title h2 span {
    display: inline;
  }
}
/* BLOC NEWS
   ========================================================================== */
.news_wrapper {
  padding: 60px 0;
}
.news_wrapper .news-title h2 {
  position: relative;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #2e2c33;
  font-weight: 400;
  line-height: 1.500rem;
  padding-top: 5px;
  padding-left: 65px;
  margin-bottom: 30px;
}
.news_wrapper .news-title h2:before {
  content: '';
  height: 55px;
  width: 55px;
  background: linear-gradient(45deg, #dd1b3a 0%, #ca1330 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.news_wrapper .news-title h2 span {
  color: #e52241;
  font-weight: 300;
}
@media (max-width: 479px) {
  .news_wrapper .news-homepage {
    margin-bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .news_wrapper .news-homepage {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news_wrapper .news-homepage {
    margin-bottom: 20px;
  }
}
.news_wrapper .news-homepage .news-top {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: all 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 479px) {
  .news_wrapper .news-homepage .news-top {
    height: 180px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .news_wrapper .news-homepage .news-top {
    height: 180px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news_wrapper .news-homepage .news-top {
    height: 180px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news_wrapper .news-homepage .news-top {
    height: 180px;
  }
}
.news_wrapper .news-homepage .news-top span.img-shadow:before {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.news_wrapper .news-homepage .news-top span.img-shadow img {
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.news_wrapper .news-homepage .news-top p.news-date {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 55px;
  width: 55px;
  color: #FFF;
  font-weight: 400;
  font-size: 1.75rem;
  text-align: center;
  background: linear-gradient(45deg, #dd1b3a 0%, #ca1330 100%);
}
.news_wrapper .news-homepage .news-top p.news-date span {
  font-weight: 300;
  font-size: 0.813rem;
  display: block;
  line-height: 0;
}
.news_wrapper .news-homepage .news-top span.over {
  font-size: .625rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .125rem;
  text-align: center;
  color: #FFF;
  position: absolute;
  left: 50%;
  top: calc(50% - .75rem);
  transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  font-weight: 300;
  transition: all 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(229, 34, 65, 0.9);
  padding: 0 15px;
}
.news_wrapper .news-homepage .news-top span.over:after {
  content: '';
  width: 100%;
  height: .05rem;
  background-color: #FFF;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 50%;
  transition: transform 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news_wrapper .news-homepage a:hover .news-top,
.news_wrapper .news-homepage a:focus .news-top,
.news_wrapper .news-homepage:hover .news-top,
.news_wrapper .news-homepage:focus .news-top {
  background: #000;
}
.news_wrapper .news-homepage a:hover span.over,
.news_wrapper .news-homepage a:focus span.over,
.news_wrapper .news-homepage:hover span.over,
.news_wrapper .news-homepage:focus span.over {
  opacity: 1;
}
.news_wrapper .news-homepage a:hover span.over:after,
.news_wrapper .news-homepage a:focus span.over:after,
.news_wrapper .news-homepage:hover span.over:after,
.news_wrapper .news-homepage:focus span.over:after {
  transform: scale(1, 1);
}
.news_wrapper .news-homepage a:hover img,
.news_wrapper .news-homepage a:focus img,
.news_wrapper .news-homepage:hover img,
.news_wrapper .news-homepage:focus img {
  opacity: 0.5;
}
.news_wrapper .news-homepage .news-bottom {
  position: relative;
}
.news_wrapper .news-homepage .news-bottom h3 {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 65px;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 55px;
  background: linear-gradient(45deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.news_wrapper .news-homepage .news-bottom h3:before {
  content: '';
  height: 55px;
  width: 55px;
  background: linear-gradient(45deg, #dd1b3a 0%, #ca1330 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.news_wrapper .news-homepage .news-bottom p {
  font-size: 0.813rem;
  text-align: justify;
  padding: 20px;
  max-height: 80px;
  overflow: hidden;
}
.news_wrapper .news-homepage .news-bottom a.news-link {
  display: block;
  font-size: 0.688rem;
  color: #e52241;
  text-transform: none;
  text-shadow: none;
  text-align: right;
  font-weight: 400;
}
.news_wrapper .news-homepage .news-bottom a.news-link i {
  font-size: 11px;
  padding: 0 0 0 1px;
  border-radius: 25px;
  border: 1px solid #e52241;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  margin-left: 5px;
}
.news_wrapper .news-homepage .news-bottom a.news-link:hover,
.news_wrapper .news-homepage .news-bottom a.news-link:focus {
  color: #2e2c33;
  text-decoration: none;
}
.news_wrapper .news-homepage .news-bottom a.news-link:hover i,
.news_wrapper .news-homepage .news-bottom a.news-link:focus i {
  border-color: #2e2c33;
}
/* BLOC TEAM
   ========================================================================== */
.content_bloc_team .content_bloc_team_card {
  position: relative;
  margin-bottom: 40px;
}
.content_bloc_team .content_bloc_team_img {
  background: #FFF;
  width: 33.33333%;
  margin: 0;
  padding: 0;
    max-width: 170px;
}
.content_bloc_team .content_bloc_team_img.edito {
  width: 25%;
}
.content_bloc_team .content_bloc_team_img span.img-shadow:before {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.content_bloc_team .content_bloc_team_img span.img-shadow img {
  opacity: 1;
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.content_bloc_team img.img_cache {
  width: 20%;
  float: left;
}
.content_bloc_team img.img_cache.edito {
  width: 10%;
  height: 70px;
}
@media (max-width: 479px) {
  .content_bloc_team img.img_cache.edito {
    height: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .content_bloc_team img.img_cache.edito {
    height: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .content_bloc_team img.img_cache.edito {
    height: 50px;
  }
}
.content_bloc_team .content_bloc_team_title {
  padding-left: 20px;
  width: 66.33337%;
}
.content_bloc_team .content_bloc_team_title.edito {
  width: 75%;
}
.content_bloc_team .content_bloc_team_title h2 {
  color: #e52241;
  text-transform: uppercase;
}
.content_bloc_team .content_bloc_team_title p {
  font-size: 0.688em;
  font-weight: 400;
  max-width: 90%;
}
.content_bloc_team .content_bloc_team_header {
  display: -webkit-flex;
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 2;
}
.content_bloc_team .content_bloc_team_bottom {
  position: relative;
  z-index: 1;
  margin-top: -15%;
  margin-left: 20%;
  background: #FFF;
  padding: 20px;
  font-size: .833rem;
  text-align: justify;
}
.content_bloc_team .content_bloc_team_bottom.edito {
  margin-top: -7.5%;
}
/* BLOC CONTACT
   ========================================================================== */
.contact .contact_adress p {
  font-size: 0.875rem;
  text-align: center;
}
.contact .contact_map {
  height: 600px;
}
.contact .contact_map #map {
  padding: 0;
  margin: 0;
  height: 600px;
  position: relative;
  right: 0;
  top: 0;
  overflow: hidden;
}
.contact .contact_form {
  padding: 15px 20px 20px 0;
  margin-left: -10px;
}
@media (max-width: 479px) {
  .contact .contact_form {
    margin-left: 0;
    padding: 15px 20px 20px 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .contact .contact_form {
    margin-left: 0;
    padding: 15px 20px 20px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact .contact_form {
    margin-left: 0;
    padding: 15px 20px 20px 20px;
  }
}
.contact .contact_form input,
.contact .contact_form textarea,
.contact .contact_form select {
  border-radius: 3px;
}
.content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li span.right {
  text-align: right;
  width: 60%;
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0.25px;
}
.content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li span.left {
  width: 40%;
  display: inline-block;
  font-weight: 400;
  color: #e52241;
  vertical-align: top;
  letter-spacing: 0.25px;
}
@media (max-width: 479px) {
  .content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul {
    margin-bottom: 20px;
  }
  .content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li {
    text-align: left;
  }
  .content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li span.right {
    width: 100%;
    text-align: left;
  }
  .content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li span.left {
    width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul {
    margin-bottom: 10px;
  }
  .content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li {
    text-align: left;
  }
  .content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li span.right {
    width: 100%;
    text-align: left;
  }
  .content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li span.left {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li {
    text-align: left;
  }
  .content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li span.right {
    width: 100%;
    text-align: left;
  }
  .content_wrapper .content_bloc.note .content_bloc_txt ul.grid-ul li span.left {
    width: 100%;
  }
}
/* - LESS LAYOUT - */
/* MAIN NAV
--------------------------------------------------- */
.header_top {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
}
.header_top .language {
  float: left;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  font-size: 0.75rem;
  font-weight: 300;
  padding: 6px 30px 6px 80px;
}
.header_top .language:after {
  content: '';
  line-height: 0;
  font-size: 0;
  width: 0;
  height: 0;
  border-top: 30px solid #e52241;
  border-bottom: 15px solid transparent;
  border-left: 0px solid transparent;
  border-right: 15px solid transparent;
  position: absolute;
  top: 0;
  right: -15px;
}
.header_top .language a:hover,
.header_top .language a:focus {
  text-decoration: none;
}
.header_top .change_site {
  float: left;
  position: relative;
}
.header_top .change_site a {
  background: #FFF;
  padding: 3px 20px;
  text-align: center;
  display: block;
}
.header_top .change_site a::before {
  content: '';
  line-height: 0;
  font-size: 0;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 30px solid #FFF;
  border-left: 15px solid transparent;
  border-right: 0px solid #FFF;
  position: absolute;
  top: -15px;
  left: -15px;
}
.header_top .change_site a:hover,
.header_top .change_site a:focus {
  background: #ececec;
}
.header_top .change_site a:hover::before,
.header_top .change_site a:focus::before {
  content: '';
  border-top: 15px solid transparent;
  border-bottom: 30px solid #ececec;
  border-left: 15px solid transparent;
  border-right: 0px solid #ececec;
}
.header_top .change_site a img {
  height: 18px;
}
.header_wrapper {
  position: fixed;
  top: 40px;
  width: calc(100% - 10vw);
  text-align: left;
  transition: all 0.125s ease-in-out;
  /* BTN HAMBURGER OPEN RESPONSIVE NAVIGATION */
}
@media (max-width: 479px) {
  .header_wrapper {
    top: 50px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .header_wrapper {
    top: 50px;
  }
}
.header_wrapper.fixe_head {
  top: 10px;
}
.header_wrapper:after {
  content: '';
  line-height: 0;
  font-size: 0;
  width: 0;
  height: 0;
  border-top: 62px solid rgba(0, 0, 0, 0.65);
  border-bottom: 31px solid transparent;
  border-left: 0px solid transparent;
  border-right: 31px solid transparent;
  position: absolute;
  top: 0;
  right: -31px;
}
.header_wrapper .nav-bar {
  position: relative;
  background: rgba(0, 0, 0, 0.65);
  margin: auto;
}
.header_wrapper .nav-bar .nav-logo {
  position: absolute;
  top: -10px;
  left: 5%;
  background: #FFF;
  padding: 18px 40px;
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 479px) {
  .header_wrapper .nav-bar .nav-logo {
    padding: 23px 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .header_wrapper .nav-bar .nav-logo {
    padding: 23px 30px;
  }
}
.header_wrapper .nav-bar .nav-logo a {
  display: block;
}
.header_wrapper .nav-bar .nav-logo img {
  height: 46px;
}
@media (max-width: 479px) {
  .header_wrapper .nav-bar .nav-logo img {
    height: 36px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .header_wrapper .nav-bar .nav-logo img {
    height: 36px;
  }
}
.header_wrapper .nav-bar .nav-menu {
  float: right;
}
.header_wrapper .nav-bar .nav-menu ul li {
  position: relative;
  float: left;
}
.header_wrapper .nav-bar .nav-menu ul li:hover ul,
.header_wrapper .nav-bar .nav-menu ul li:focus ul {
  visibility: visible;
  /* shows sub-menu */
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
  /* this removes the transition delay so the menu will be visible while the other styles transition */
}
.header_wrapper .nav-bar .nav-menu ul li:hover a:after,
.header_wrapper .nav-bar .nav-menu ul li:focus a:after {
  content: '';
  width: 10px;
  height: 3px;
  background: #e52241;
  position: absolute;
  text-align: center;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 0;
}
.header_wrapper .nav-bar .nav-menu ul li:hover ul li a:hover:after,
.header_wrapper .nav-bar .nav-menu ul li:focus ul li a:hover:after,
.header_wrapper .nav-bar .nav-menu ul li:hover ul li a:focus:after,
.header_wrapper .nav-bar .nav-menu ul li:focus ul li a:focus:after {
  content: none!important;
}
.header_wrapper .nav-bar .nav-menu ul li:hover ul li a:after,
.header_wrapper .nav-bar .nav-menu ul li:focus ul li a:after {
  content: none!important;
}
.header_wrapper .nav-bar .nav-menu ul li a {
  position: relative;
  display: block;
  padding: 21px 10px 20px 10px;
  font-size: 0.875rem;
  color: #FFF;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_wrapper .nav-bar .nav-menu ul li a {
    padding: 25px 5px 25px 5px;
    font-size: 0.535rem;
    
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header_wrapper .nav-bar .nav-menu .lbp ul li a {
    padding: 25px 5px 25px 5px;
    font-size: 0.635rem;
    
  }
}

.header_wrapper .nav-bar .nav-menu ul li a:hover,
.header_wrapper .nav-bar .nav-menu ul li a:focus {
  text-decoration: none;
}
.header_wrapper .nav-bar .nav-menu ul li a:hover:after,
.header_wrapper .nav-bar .nav-menu ul li a:focus:after {
  content: '';
  width: 20px;
  height: 3px;
  background: #e52241;
  position: absolute;
  text-align: center;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 0;
}
.header_wrapper .nav-bar .nav-menu ul li a.active {
  color: #FFF;
}
.header_wrapper .nav-bar .nav-menu ul li a.active:hover,
.header_wrapper .nav-bar .nav-menu ul li a.active:focus {
  color: #FFF;
  cursor: default;
}
.header_wrapper .nav-bar .nav-menu ul li a.active:after {
  content: '';
  width: 20px;
  height: 3px;
  background: #e52241;
  position: absolute;
  text-align: center;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 0;
}
.header_wrapper .nav-bar .nav-menu ul li a i {
  margin-left: 7px;
}
.header_wrapper .nav-bar .nav-menu ul li ul {
  visibility: hidden;
  /* hides sub-menu */
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 165px;
  transform: translateY(-2em);
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}
.header_wrapper .nav-bar .nav-menu ul li ul li {
  background: rgba(255, 255, 255, 0.8);
  padding: 0 20px;
  width: 210px;
  margin-left: 0px;
}
.header_wrapper .nav-bar .nav-menu ul li ul li:last-child a {
  border-bottom: 0;
}
.header_wrapper .nav-bar .nav-menu ul li ul li a {
  display: block;
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0.1);
  color: #2e2c33;
}
.header_wrapper .nav-bar .nav-menu ul li ul li a:hover,
.header_wrapper .nav-bar .nav-menu ul li ul li a:focus {
  color: #e52241;
}
.header_wrapper .nav-bar .nav-menu ul li ul li a:hover:after,
.header_wrapper .nav-bar .nav-menu ul li ul li a:focus:after {
  content: none;
}
.header_wrapper button.hamburger-nav-responsive {
  padding: 21px 10px 21px 20px;
  border: 0;
  float: right;
}
.header_wrapper button.hamburger-nav-responsive:hover,
.header_wrapper button.hamburger-nav-responsive:focus {
  background: transparent;
}
.nav-responsive {
  background: #e52241;
  max-width: 320px;
  width: 90%;
  height: 100%;
  z-index: 1000;
  left: -320px;
  position: fixed;
  overflow: scroll;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.nav-responsive.visible {
  left: 0;
}
.nav-responsive .nav-menu-responsive {
  padding-top: 100px;
}
.nav-responsive .nav-menu-responsive ul li {
  border-bottom: 1px solid #d51937;
}
.nav-responsive .nav-menu-responsive ul li a {
  padding: 15px 10px;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}
.nav-responsive .nav-menu-responsive ul li a i {
  position: absolute;
  right: 20px;
  top: 20px;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.nav-responsive .nav-menu-responsive ul li a:hover,
.nav-responsive .nav-menu-responsive ul li a:focus {
  background: #c91834;
  text-decoration: none;
}
.nav-responsive .nav-menu-responsive ul li a.collapsed i {
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.nav-responsive .nav-menu-responsive ul li ul li {
  border-bottom: 1px solid #b2152e;
}
.nav-responsive .nav-menu-responsive ul li ul li:last-child {
  border-bottom: 0;
}
.nav-responsive .nav-menu-responsive ul li ul li a {
  background: #c91834;
}
.nav-responsive .nav-logo {
  background: #FFF;
  padding: 20px 0;
  margin: auto;
  text-align: center;
  position: fixed;
  max-width: 320px;
  width: 90%;
}
.nav-responsive .nav-logo img {
  max-width: 250px;
}
/* - LESS LAYOUT - */
.lbpam .header_top .language {
  color: #FFF;
  background: rgba(0, 0, 0, 0.8);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.lbpam .header_top .language:after {
  border-top: 30px solid #000;
}
.lbpam .header_top .language a {
  color: #FFF;
}
.lbpam .header_top .language a:hover,
.lbpam .header_top .language a:focus {
  color: #e52241;
}
.lbpam .header_top .change_site a {
  background: #FFF;
}
.lbpam .header_top .change_site a::before {
  border-bottom: 30px solid #FFF;
  border-right: 0px solid #FFF;
}
.lbpam .header_top .change_site a:hover,
.lbpam .header_top .change_site a:focus {
  background: #ececec;
}
.lbpam .header_top .change_site a:hover::before,
.lbpam .header_top .change_site a:focus::before {
  border-bottom: 30px solid #ececec;
  border-right: 0px solid #ececec;
}
.lbpam .header_wrapper:after {
  border-top: 62px solid rgba(255, 255, 255, 0.85);
}
.lbpam .header_wrapper .nav-bar {
  background: rgba(255, 255, 255, 0.85);
}
.lbpam .header_wrapper .nav-bar .nav-menu ul li a {
  color: #2e2c33;
}
.lbpam .header_wrapper .nav-bar .nav-menu ul li a:hover,
.lbpam .header_wrapper .nav-bar .nav-menu ul li a:focus {
  color: #e52241;
}
.lbpam .header_wrapper .nav-bar .nav-menu ul li a:after {
  background: #000;
}
.lbpam .header_wrapper .nav-bar .nav-menu ul li a.active {
  color: #2e2c33;
}
.lbpam .header_wrapper .nav-bar .nav-menu ul li a.active:hover,
.lbpam .header_wrapper .nav-bar .nav-menu ul li a.active:focus {
  color: #2e2c33;
  cursor: default;
}
.lbpam .header_wrapper .nav-bar .nav-menu ul li a.active:after {
  background: #000;
}
.lbpam .header_wrapper .nav-bar .nav-menu ul li ul li {
  background: rgba(0, 0, 0, 0.65);
  margin-left: 0px;
}
.lbpam .header_wrapper .nav-bar .nav-menu ul li ul li a {
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFF;
}
.lbpam .header_wrapper .nav-bar .nav-menu ul li ul li a:hover,
.lbpam .header_wrapper .nav-bar .nav-menu ul li ul li a:focus {
  color: #e52241;
}
.lbpam .nav-responsive {
  background: #2e2c33;
}
.lbpam .nav-menu-responsive ul li {
  border-bottom: 1px solid #222025;
}
.lbpam .nav-menu-responsive ul li a:hover,
.lbpam .nav-menu-responsive ul li a:focus {
  background: #1b1a1e;
  text-decoration: none;
}
.lbpam .nav-menu-responsive ul li ul li {
  border-bottom: 1px solid #0f0e11;
}
.lbpam .nav-menu-responsive ul li ul li a {
  background: #1b1a1e;
}
.lbpam button.hamburger-nav-responsive:hover #nav-icon span,
.lbpam button.btn-nav-close:hover #nav-icon span,
.lbpam button.hamburger-nav-responsive:focus #nav-icon span,
.lbpam button.btn-nav-close:focus #nav-icon span,
.lbpam button.hamburger-nav-responsive:active #nav-icon span,
.lbpam button.btn-nav-close:active #nav-icon span,
.lbpam button.hamburger-nav-responsive:active:focus #nav-icon span,
.lbpam button.btn-nav-close:active:focus #nav-icon span {
  background: #2e2c33;
}
.lbpam button.hamburger-nav-responsive #nav-icon span,
.lbpam button.btn-nav-close #nav-icon span {
  background: #e52241;
}
.lbpam button.hamburger-nav-responsive #nav-icon.open span,
.lbpam button.btn-nav-close #nav-icon.open span {
  background: #2e2c33;
}
.lbpam .owl-slide-edito {
  background: linear-gradient(45deg, rgba(50, 50, 50, 0.85) 0%, rgba(10, 10, 10, 0.85) 100%);
}
.lbpam .owl-slide-edito h2 {
  color: #FFF;
  background: #e52241;
}
.lbpam .owl-slide-edito h2:after {
  border-top: 41px solid #e52241;
}
.lbpam .owl-slide-edito a:hover,
.lbpam .owl-slide-edito a:focus {
  color: #e52241;
}
.lbpam .owl-slide-edito a:hover i,
.lbpam .owl-slide-edito a:focus i {
  border-color: #e52241;
}
/* - LESS LAYOUT - */
/* TITLE
--------------------------------------------------- */
/* PAGE TITLE H1
------------------------------------------------------------ */
h1 {
  position: relative;
  font-weight: 700;
  font-size: 3.750em;
  color: #e52241;
}
h1:before {
  content: '';
}
h2 {
  font-weight: 300;
  font-size: 1.125em;
}
.title-h1 {
  padding: 20px 0 0;
  margin: auto;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: -60px;
}
.title-h1 h1 {
  display: inline-block;
  position: relative;
  font-size: 1.500rem;
  text-transform: uppercase;
  color: #2e2c33;
  font-weight: 300;
  line-height: 1.500rem;
  background: #FFF;
  padding: 28px 50px;
}
.title-h1 h1:before {
  content: '';
  height: 45px;
  width: 45px;
  background: linear-gradient(45deg, #dd1b3a 0%, #ca1330 100%);
  position: absolute;
  left: -25px;
  top: -25px;
}
.title-h1 h1 span {
  color: #e52241;
  font-weight: 300;
}


/* custom style */
.content_bloc.note_white .content_bloc_txt ul li {
  padding: 0px 0;
  font-size: 0.875rem;
}
.content_wrapper .content_bloc.note_white .content_bloc_txt ul li i {
  color: #e52241;
  margin-right: 7px;
}



.content_wrapper .content_bloc.note_white {
  background: #fff;
  border: 1px solid #e1e1e1;
}
.content_wrapper .content_bloc.note_white h2 {
  color: #2e2c33;
  background: #fff;
  margin-top: 20px;
  display: table;
  margin: 0px auto 0px;
  text-align: center;
  padding: 10px 20px;
  position: relative;
}
.content_wrapper .content_bloc.note_white h2:before {
  content: none;
}
.content_wrapper .content_bloc.note_white .content_bloc_txt {
  padding: 0 10px 10px;
}
.content_wrapper .content_bloc.note_white .content_bloc_txt ul {
  padding: 0 20px;
}
.content_wrapper .content_bloc.note_white .content_bloc_txt ul li {
  padding: 5px 0;
  font-size: 0.875rem;
}
.content_wrapper .content_bloc.note_white .content_bloc_txt ul li i {
}
 /*  OWL CARROUSEL HOME
   ========================================================================== */
.owl-home .owl-item {
  height: 80vh;
  width: 100%;
}
@media (max-width: 479px) {
  .owl-home .owl-item {
    height: 60vh;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-home .owl-item {
    height: 60vh;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .owl-home .owl-item {
   
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .owl-home .owl-item {
    height: inherit;
  }
}
@media (min-width: 768px) and (max-width: 991px) and (min-height: 800px) {
  .owl-home .owl-item {
    height: 60vh;
  }
}
@media (min-width: 992px) and (max-width: 1199px) and (min-height: 1100px) {
  .owl-home .owl-item {
    height: 45vh;
  }
}
.owl-home .owl-home-slide {
  float: left;
  position: relative;
  min-height: 1px;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  height: 90vh;
}
@media (max-width: 479px) {
  .owl-home .owl-home-slide {
    height: 60vh;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-home .owl-home-slide {
    height: 60vh;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .owl-home .owl-home-slide {
   
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .owl-home .owl-home-slide {
    height: inherit;
  }
}
@media (min-width: 768px) and (max-width: 991px) and (min-height: 800px) {
  .owl-home .owl-home-slide {
    height: 60vh;
  }
}
@media (min-width: 992px) and (max-width: 1199px) and (min-height: 1100px) {
  .owl-home .owl-home-slide {
    height: 45vh;
  }
}
.owl-home .owl-home-slide img {
  opacity: 1;
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.owl-home .owl-home-slide .owl-slide-txt {
  position: absolute;
  z-index: 5;
  top: 25vh;
  bottom: inherit;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 3.5rem;
  color: #FFF;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
  line-height: 60px;
}
@media (max-width: 479px) {
  .owl-home .owl-home-slide .owl-slide-txt {
    font-size: 1.375rem;
    line-height: 21px;
    top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) and (min-height: 800px) {
  .owl-home .owl-home-slide .owl-slide-txt {
    top: 15vh;
  }
}
@media (min-width: 992px) and (max-width: 1199px) and (min-height: 1100px) {
  .owl-home .owl-home-slide .owl-slide-txt {
    top: 12.5vh;
  }
}
.owl-home .owl-dots {
  display: none;
}
.owl-home.programme .owl-dots {
  margin-top: 0;
}
.owl-home.programme .owl-home-slide img {
  opacity: 0.95;
}
.owl-slide-edito {
  float: left;
  width: 400px;
  min-height: 390px;
  background: linear-gradient(45deg, rgba(221, 27, 58, 0.9) 0%, rgba(202, 19, 48, 0.9) 100%);
  padding: 30px;
}
@media (max-width: 479px) {
  .owl-slide-edito {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-slide-edito {
    display: none;
  }
}
.owl-slide-edito h2 {
  font-family: 'Blair ITC', sans-serif;
  font-size: 1.5rem;
  text-shadow: none;
  background: #FFF;
  color: #2e2c33;
  text-align: left;
  display: block;
  padding: 10px 50px 5px;
  margin-left: -50px;
  max-width: 250px;
  position: relative;
}
.owl-slide-edito h2:after {
  content: '';
  line-height: 0;
  font-size: 0;
  width: 0;
  height: 0;
  border-top: 41px solid #ffffff;
  border-bottom: 20px solid transparent;
  border-left: 0px solid transparent;
  border-right: 20px solid transparent;
  position: absolute;
  top: 0;
  right: -20px;
}
.owl-slide-edito p {
  font-size: 0.813rem;
  line-height: 1.313rem;
  color: #FFF;
  text-transform: none;
  text-shadow: none;
  padding: 20px 0;
  text-align: justify;
}
.owl-slide-edito a {
  display: block;
  font-size: 0.813rem;
  color: #FFF;
  text-transform: none;
  text-shadow: none;
  text-align: right;
  margin-right: 20px;
  font-weight: 400;
}
.owl-slide-edito a i {
  font-size: 11px;
  padding: 0 0 0 1px;
  border-radius: 25px;
  border: 1px solid #FFF;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  margin-left: 5px;
}
.owl-slide-edito a:hover,
.owl-slide-edito a:focus {
  color: #2e2c33;
  text-decoration: none;
}
.owl-slide-edito a:hover i,
.owl-slide-edito a:focus i {
  border-color: #2e2c33;
}
.owl-slide-title {
  float: left;
  margin-left: -25px;
  margin-top: 297px;
}
@media (max-width: 479px) {
  .owl-slide-title {
    margin-top: 20vh;
    margin-left: 25px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-slide-title {
    margin-top: 20vh;
    margin-left: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .owl-slide-title {
    width: calc(100% - 400px);
    display: none;
  }
}
.owl-slide-title h2 {
  position: relative;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #FFF;
  font-size: 1.125rem;
  text-transform: uppercase;
  line-height: 1.500rem;
  text-align: left;
  padding: 5px 20px 5px 68px;
  font-weight: 400;
}
@media (max-width: 479px) {
  .owl-slide-title h2 {
    font-size: 0.813rem;
    padding-left: 43px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-slide-title h2 {
    font-size: 0.813rem;
    padding-left: 43px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .owl-slide-title h2 {
    font-size: 0.875rem;
    padding: 9px 20px 9px 68px;
    line-height: 1.25rem;
    text-align: justify;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .owl-slide-title h2 {
    font-size: 0.875rem;
    padding: 9px 20px 9px 68px;
    line-height: 1.25rem;
  }
}
.owl-slide-title h2:before {
  content: '';
  height: 58px;
  width: 58px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 479px) {
  .owl-slide-title h2:before {
    left: -25px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-slide-title h2:before {
    left: -25px;
  }
}
.owl-slide-title h2 span {
  display: block;
}
@media (max-width: 479px) {
  .owl-slide-title h2 span {
    display: inline;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .owl-slide-title h2 span {
    display: inline;
  }
}

/* custom style 2 */
note_white  ul li {
  padding: 0px 0;
  font-size: 0.875rem;
}
.note_white  ul li i {
  color: #e52241;
  margin-right: 7px;
}



.note_white {
  background: #fff;
  border: 0px solid #e1e1e1;
}
.note_white h2 {
  color: #2e2c33;
  background: #fff;
  margin-top: 20px;
  display: table;
  margin: 0px auto 0px;
  text-align: center;
  padding: 10px 20px;
  position: relative;
}
.note_white h2:before {
  content: none;
}
.note_white  {
  padding: 0 10px 10px;
}
.note_white  ul {
  padding: 0 20px;
}
.note_white  ul li {
  padding: 5px 0;
  font-size: 0.875rem;
}
.note_white  ul li i {
}






@media screen and (min-width:0\0) {
   /*
      Votre CSS pour IE versions 9 à Edge
   */
    .image_wrapper {
        max-height: 250px;
        overflow: hidden;
        height: inherit;    
    }
    .home .left {
        float: left;
    }
    .home .right {
        float: left;
    }
    
}


/* ONLY IE9 */
:root .home .left{float:left\ ;}
:root .home .right{float:left\ ;}


.w100 {
    width: 100%;
    padding: 0;
}

/* IE 10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {    
   #veintiun { color: red; }
    .header_wrapper .nav-bar .nav-logo {
        width: 296px;
    }
    .header_top {
        width: 125px;
        background: white;
    } 
    .header_top .change_site {
        float: none;
    }
    .home .header_top {
        width: inherit;
    } 
    
    
    .image_wrapper span.img-shadow img {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        height: auto;
        
    }
    .image_wrapper {
            height: 250px;
            overflow: hidden;

    }

    .img-shadow::before {
        content: none!important;
    }

    .content_bloc_team .content_bloc_team_img span.img-shadow img {   
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        
    }
    .content_bloc_team .content_bloc_team_img {
      overflow: hidden;
        height: 200px;
        width: 200px;
    }
      
    
    .content_wrapper .content_bloc .content_bloc_img {
        overflow: hidden;
        height: 350px;
    }
    .content_wrapper .content_bloc .content_bloc_img span.img-shadow img {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        height: auto;
    }
    
}







@media  (min-width: 1200px) and (max-width: 1380px) {

.header_wrapper .nav-bar .nav-menu ul li a {
    padding: 21px 10px 23px 10px;
    font-size: 0.720rem;
}

}

@media  (min-width: 1200px) and (max-width: 1380px) {

.header_wrapper .nav-bar .nav-menu .lbp ul li a {
    padding: 21px 10px 23px 10px;
    font-size: 0.820rem;
}

}

@media (max-width: 479px) {
  
  .nav-tabs .nav-link.active:after, .nav-tabs .nav-item.show .nav-link:after {content:none}
  
    .header_top .change_site a::before {
        border-bottom: 25px solid #FFF;
    }
  
    .hamburger-nav-responsive {
        display: block;
    }
    .header_top .change_site a img {
        height: 24px;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
  .nav-tabs .nav-link.active:after, .nav-tabs .nav-item.show .nav-link:after {content:none}
  
    .header_top .change_site a::before {
        border-bottom: 25px solid #FFF;
    }
    .hamburger-nav-responsive {
        display: block;
    }
    .header_top .change_site a img {
        height: 24px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nav-tabs .nav-link.active:after, .nav-tabs .nav-item.show .nav-link:after {content:none}
    .hamburger-nav-responsive {
        display: block;
    }
}



.nav-tabs.flex-column .nav-link {text-align: center;}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
   .home .header_top {
       width: inherit;
   } 
}