@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Libre+Baskerville|Montserrat:400,300,300");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Autres propriétés que je rajoute pour partir sur une base 'vierge' */
@-ms-viewport {
  width: device-width; }

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit; }

/* Propriétés de base des balises a */
a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

/* RESET BUTTON : permet de retirer tous les effets appliqués sur la balise button par les différents navigateurs */
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  display: inline-block;
  outline: none;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

/* permet de retirer tous les effets appliqués sur les balises input et textarea par les différents navigateurs */
input, textarea {
  border: none;
  background: transparent; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    height: 0%; }
  50% {
    opacity: 1;
    height: 50%; }
  100% {
    opacity: 1;
    height: 100%; } }

@keyframes fadeIn {
  0% {
    opacity: 0;
    height: 0%; }
  50% {
    opacity: 1;
    height: 50%; }
  100% {
    opacity: 1;
    height: 100%; } }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-120px);
    -webkit-transform: translateX(-120px);
    -moz-transform: translateX(-120px);
    -ms-transform: translateX(-120px);
    -o-transform: translateX(-120px); }
  100% {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    background-color: transparent; } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-120px);
    -webkit-transform: translateX(-120px);
    -moz-transform: translateX(-120px);
    -ms-transform: translateX(-120px);
    -o-transform: translateX(-120px); }
  100% {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    background-color: transparent; } }

/* Paramétrage des variables */
/* Paramétrage des couleurs*/
/*Couleur texte courant*/
/*Couleur opposée au texte courant*/
/*Si besoin de couleurs supplémentaires*/
/* Paramétrage des marges*/
/*Police des titres*/
/*Police texte courant*/
/* Paramétrage des polices utilisées sur le site */
/* Style du texte en général */
html {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #4A4A4A; }

/* html * {
  border: red solid 1px;
} */
body {
  line-height: 21px; }
  body.modal-opened {
    overflow: hidden; }

/* Paramétrage du container du site */
.container {
  position: relative;
  width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px; }

@media (max-width: 1200px) {
  .container {
    max-width: 992px; } }

@media (max-width: 992px) {
  .container {
    padding: 0 50px;
    width: 100%; } }

@media (max-width: 768px) {
  .container {
    padding: 0 25px; } }

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
    width: 100%; } }

/* Style des sections*/
/* Style du h1*/
.titre-page {
  padding: 25px 0; }

.titre-niveau-1 {
  font-size: 48px;
  font-size: 3rem;
  font-family: "Libre Baskerville", serif;
  line-height: 60px;
  font-weight: 400;
  color: #B8392C; }

@media (max-width: 1200px) {
  .titre-page {
    padding: 0; } }

@media (max-width: 992px) {
  .titre-niveau-1 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 40px; } }

@media (max-width: 576px) {
  .titre-niveau-1 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 28px; } }

/* Style du h2*/
.titre-niveau-2 {
  font-size: 32px;
  font-size: 2rem;
  font-family: "Libre Baskerville", serif;
  color: #B8392C;
  line-height: 32px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 80px; }

@media (max-width: 768px) {
  .titre-niveau-2 {
    margin-bottom: 40px; } }

@media (max-width: 576px) {
  .titre-niveau-2 {
    font-size: 24px;
    font-size: 1.5rem; } }

/*Style du h3*/
.titre-niveau-3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Libre Baskerville", serif;
  line-height: 24px;
  font-weight: 400;
  margin: 25px 0; }
  .titre-niveau-3:after {
    content: '';
    display: block;
    margin-top: 5px;
    width: 22px;
    height: 2px;
    background-color: #B8392C; }

@media (max-width: 768px) {
  .titre-niveau-3:after {
    margin-left: auto;
    margin-right: auto; } }

@media (max-width: 576px) {
  .titre-niveau-3 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 23px; } }

/* Style du p*/
p {
  margin: 25px 0; }
  p.texte-gras {
    font-weight: 400; }

span.texte-gras {
  font-weight: 400; }

a {
  color: #4A4A4A; }
  a:hover {
    color: #B8392C; }

/* Style des call to action*/
button.cta {
  display: inline-block;
  font-size: 18px;
  background-color: #9B9B9B;
  color: #ffffff;
  text-align: center;
  padding: 8px;
  width: 100%; }
  button.cta.checked-rgpd {
    background-color: #B8392C; }
    button.cta.checked-rgpd:hover {
      background-color: #892a21; }

.button-cta {
  margin: 25px 0; }

a.cta-file {
  position: relative;
  display: inline-block;
  padding-left: 22px; }
  a.cta-file:before {
    position: absolute;
    left: 0;
    content: " ";
    background-image: url("../images/icons/badak-landing-fleche-bas.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    display: block;
    width: 15px;
    height: 17px; }

@media (max-width: 768px) {
  button.cta {
    font-size: 16px; } }

ul {
  list-style-type: disc; }
  ul li {
    display: list-item;
    position: relative;
    padding-left: 5px; }

@media (max-width: 576px) {
  a.cta-file::before {
    left: auto; } }

.scroll {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 25px; }
  .scroll p {
    text-transform: uppercase;
    margin-top: 5px; }

@media (max-width: 1200px) {
  .scroll {
    padding: 37.5px 0 12.5px; } }

@media (max-width: 768px) {
  .scroll {
    padding-top: 0; } }

@media (min-width: 992px) {
  .back-to-top {
    display: block;
    position: fixed;
    z-index: 10000;
    right: 25px;
    bottom: 12.5px;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s; }
  .is-hidden {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: opacity .3s, -webkit-transform .3s .3s;
    transition: opacity .3s, -webkit-transform .3s .3s;
    -o-transition: opacity .3s, transform .3s .3s;
    transition: opacity .3s, transform .3s .3s;
    transition: opacity .3s, transform .3s .3s, -webkit-transform .3s .3s; } }

@media (max-width: 992px) {
  .back-to-top {
    display: none; } }

#LB-mentions,
#LB-politique {
  z-index: -1;
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity .4s ease-in-out;
  -moz-transition: opacity .4s ease-in-out;
  -ms-transition: opacity .4s ease-in-out;
  -o-transition: opacity .4s ease-in-out;
  transition: opacity .4s ease-in-out; }
  #LB-mentions.active,
  #LB-politique.active {
    opacity: 1;
    z-index: 11;
    background-color: rgba(238, 238, 238, 0.7);
    -webkit-transition: opacity .4s ease-in-out;
    -moz-transition: opacity .4s ease-in-out;
    -ms-transition: opacity .4s ease-in-out;
    -o-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out; }
  #LB-mentions .close-mentions,
  #LB-politique .close-mentions {
    border: none;
    background-color: transparent;
    position: absolute;
    top: 40px;
    right: 60px;
    width: 25px;
    height: 25px;
    cursor: pointer; }
  #LB-mentions .mentions,
  #LB-politique .mentions {
    height: calc(100vh - 300px);
    background-color: #ffffff;
    width: 100%;
    max-width: 1200px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    margin: 150px; }
    #LB-mentions .mentions .contenu,
    #LB-politique .mentions .contenu {
      display: block;
      position: relative;
      overflow-y: scroll;
      height: 100%;
      margin-top: 20px;
      padding-top: 20px;
      border-top: solid 2px #B8392C;
      padding-right: 15px;
      padding-bottom: 50px; }

@media (max-width: 992px) {
  #LB-mentions .mentions,
  #LB-politique .mentions {
    height: 100%;
    margin: 0; } }

@media (max-width: 576px) {
  #LB-mentions .close-mentions,
  #LB-politique .close-mentions {
    top: 15px;
    right: 15px; }
  #LB-mentions .mentions,
  #LB-politique .mentions {
    padding: 15px; }
    #LB-mentions .mentions .contenu,
    #LB-politique .mentions .contenu {
      padding-bottom: 20px; } }

#tarteaucitron ul {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.cookie-list {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #4A4A4A; }

#tarteaucitronRoot #tarteaucitronAlertBig {
  background: #F0F0F0;
  color: #4A4A4A;
  font-size: 16px;
  font-size: 1rem;
  right: 0;
  position: fixed;
  text-align: left;
  padding: 50px;
  width: 300px; }

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert {
  display: block;
  margin-bottom: 10px; }

#tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitronAlertBig #tarteaucitronPersonalize, #tarteaucitron #tarteaucitronPrivacyUrl {
  background: #94c01f;
  color: #ffffff;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 5.5px 10px; }

#tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitron #tarteaucitronPrivacyUrl {
  background: #ffffff;
  color: #4A4A4A;
  font-size: 16px;
  padding: 6px 10px; }

#tarteaucitronAlertSmall {
  background-color: #F0F0F0; }

#tarteaucitronAlertSmall #tarteaucitronManager {
  background-color: #F0F0F0;
  color: #4A4A4A;
  font-size: 16px;
  padding: 14px; }

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen {
  background-color: #B8392C; }

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow {
  background-color: #ffffff; }

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  background-color: #B8392C; }

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber {
  background: #F0F0F0;
  color: #4A4A4A;
  font-size: 30px;
  padding: 13px 10px;
  vertical-align: top; }

div#tarteaucitronServices {
  background-color: #ffffff; }

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie,
#tarteaucitron #tarteaucitronClosePanel {
  background: #ffffff;
  color: #4A4A4A;
  font-size: 16px;
  padding: 4px 0; }

#tarteaucitron #tarteaucitronServices .tarteaucitronLine {
  background: #ffffff;
  margin: 0;
  padding: 0 30px; }

div#tarteaucitronServices {
  margin-top: 27px !important; }

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  background: #ffffff;
  color: #4A4A4A;
  margin-bottom: 0;
  padding-bottom: 30px;
  margin-top: 27px; }

#tarteaucitron div#tarteaucitronInfo {
  border-bottom: none;
  border-top: solid 2px #B8392C; }

#tarteaucitronRoot .tarteaucitronH1 {
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "Libre Baskerville", serif;
  color: #B8392C;
  line-height: 36px;
  text-align: center;
  margin: 30px 0; }

@media (max-width: 576px) {
  #tarteaucitronRoot .tarteaucitronH1 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 30px; } }

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 24px;
    text-align: center; }

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine.tarteaucitronLine .tarteaucitronName {
  text-align: center; }

#tarteaucitronRoot .tarteaucitronH2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Libre Baskerville", serif;
  line-height: 24px;
  font-weight: 400;
  margin: 25px 0;
  text-align: center; }
  #tarteaucitronRoot .tarteaucitronH2:after {
    content: '';
    display: block;
    margin-top: 5px;
    width: 22px;
    height: 2px;
    background-color: #B8392C;
    margin-left: auto;
    margin-right: auto; }

@media (max-width: 576px) {
  #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 23px; } }

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow,
#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny,
.tac_activate .tarteaucitronAllow {
  border-radius: 0 !important; }

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle,
#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: #4A4A4A;
  background: #ffffff; }

#tarteaucitron #tarteaucitronServices #tarteaucitronServices_analytic {
  margin-left: 12.5px; }

#tarteaucitron #tarteaucitronServices li .tarteaucitronTitle button {
  color: #4A4A4A;
  background: #ffffff;
  margin-left: 12.5px; }

#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: #4A4A4A; }

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle {
  background: #ffffff; }

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListRight {
  color: #4A4A4A; }

.tac_activate .tac_float .tarteaucitronAllow {
  background-color: #B8392C; }

#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  background: #ffffff !important; }

@media (max-width: 576px) {
  #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
  #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 19px; }
  #tarteaucitronRoot #tarteaucitronAlertBig {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 25px;
    width: 250px; }
  #tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitronAlertBig #tarteaucitronPersonalize, #tarteaucitron #tarteaucitronPrivacyUrl {
    font-size: 14px;
    padding: 5px; }
  #tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitron #tarteaucitronPrivacyUrl {
    font-size: 14px;
    padding: 5px; } }

.tti {
  background-color: #F0F0F0;
  position: relative; }
  .tti .full-bcg {
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center; }
    .tti .full-bcg img {
      height: 100%;
      width: 100%;
      opacity: .1;
      -o-object-fit: cover;
      object-fit: cover; }
  .tti .container {
    position: relative;
    top: 0;
    padding: 210px 15px 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-pack: space-between; }
    .tti .container .texte, .tti .container .image {
      width: calc(50% - 37.5px); }
    .tti .container .image {
      position: relative;
      max-height: 570px;
      overflow: hidden; }
      .tti .container .image img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        position: absolute;
        max-height: 570px; }
    .tti .container .texte .logo img {
      max-width: 200px;
      height: 100%; }

@media (max-width: 1200px) {
  .tti .container {
    padding-top: 120px; } }

@media (max-width: 992px) {
  .tti .container .texte, .tti .container .image {
    width: calc(50% - 12.5px); }
    .tti .container .texte .logo img, .tti .container .image .logo img {
      max-width: 150px;
      height: auto; } }

@media (max-width: 768px) {
  .tti .container {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center;
    margin-bottom: 0;
    padding: 50px 15px; }
    .tti .container .texte, .tti .container .image {
      width: 100%; }
    .tti .container .texte {
      margin-bottom: 25px;
      text-align: center; }
    .tti .container .image {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -webkit-box-pack: center;
      justify-content: center;
      -ms-flex-pack: center;
      min-height: 365px; }
      .tti .container .image img {
        max-width: 300px;
        min-height: auto; } }

.actus {
  background-color: #ffffff;
  padding: 100px 15px 70px; }
  .actus .container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .actus .container .actus-container {
      width: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-box-pack: justify;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .actus .container .actus-container div {
        display: none; }
      .actus .container .actus-container .desc {
        position: relative;
        display: block;
        max-width: 280px; }
        .actus .container .actus-container .desc:nth-child(1n+0) {
          margin-right: 50px; }
        .actus .container .actus-container .desc.half-width {
          width: calc(50% - 12.5px);
          max-width: 400px; }
          .actus .container .actus-container .desc.half-width:nth-child(2) {
            right: 0;
            margin-right: 0; }
        .actus .container .actus-container .desc.a-third {
          width: calc(33% - 10px); }
          .actus .container .actus-container .desc.a-third:nth-child(3) {
            margin-right: 0; }
          .actus .container .actus-container .desc.a-third img {
            max-width: 280px; }
        .actus .container .actus-container .desc.a-forth {
          -webkit-box-flex: 21%;
          -ms-flex: 21%;
          flex: 21%;
          max-width: 21%;
          width: calc(25% - 10px); }
          .actus .container .actus-container .desc.a-forth:nth-child(4) {
            margin-right: 0; }
          .actus .container .actus-container .desc.a-forth img {
            max-width: 220px; }
        .actus .container .actus-container .desc p.prix {
          font-size: 24px;
          font-size: 1.5rem;
          font-family: "Libre Baskerville", serif;
          line-height: 24px;
          font-weight: 600;
          color: #B8392C; }

@media (max-width: 1200px) {
  .actus {
    padding: 100px 0 70px; } }

@media (max-width: 992px) {
  .actus .container .actus-container .desc {
    text-align: center; }
    .actus .container .actus-container .desc .titre-niveau-3:after {
      margin-left: auto;
      margin-right: auto; }
    .actus .container .actus-container .desc.half-width {
      -webkit-box-flex: 46%;
      -ms-flex: 46%;
      flex: 46%;
      max-width: 46%; }
      .actus .container .actus-container .desc.half-width img {
        max-width: 280px; }
    .actus .container .actus-container .desc.a-third {
      -webkit-box-flex: 28%;
      -ms-flex: 28%;
      flex: 28%;
      max-width: 28%; }
      .actus .container .actus-container .desc.a-third img {
        max-width: 200px; }
    .actus .container .actus-container .desc.a-forth {
      -webkit-box-flex: 46%;
      -ms-flex: 46%;
      flex: 46%;
      max-width: 46%;
      width: calc(50% - 10px); }
      .actus .container .actus-container .desc.a-forth img {
        max-width: 280px; }
      .actus .container .actus-container .desc.a-forth:nth-child(2) {
        margin-right: 0;
        margin-bottom: 50px; }
      .actus .container .actus-container .desc.a-forth:first-child {
        margin-bottom: 50px; } }

@media (max-width: 768px) {
  .actus {
    padding-top: 50px;
    padding-bottom: 37.5px; }
    .actus .container .actus-container {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .actus .container .actus-container .desc {
        margin-bottom: 50px; }
      .actus .container .actus-container .desc:first-child, .actus .container .actus-container .desc:last-child, .actus .container .actus-container .desc:nth-child(1n+0) {
        margin-right: 0;
        margin-left: 0; }
      .actus .container .actus-container .desc.a-third, .actus .container .actus-container .desc.half-width, .actus .container .actus-container .desc.a-forth {
        width: 100%;
        max-width: 546px; } }

.quote {
  background-color: #F0F0F0;
  position: relative;
  padding: 190px 0 140px; }
  .quote .full-bcg {
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center;
    top: 0; }
    .quote .full-bcg img {
      height: 100%;
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      opacity: .15; }
  .quote .container {
    position: relative; }
    .quote .container .citation {
      text-align: center;
      font-size: 21px;
      font-size: 1.3125rem;
      line-height: 32px;
      font-weight: 400; }

@media (max-width: 576px) {
  .quote {
    padding: 100px 0 60px; }
    .quote .container .citation {
      font-size: 18px;
      font-size: 1.125rem; } }

.paragraphe {
  background-color: #F0F0F0;
  padding: 100px 0 75px;
  position: relative; }
  .paragraphe .full-bcg {
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center;
    top: 0; }
    .paragraphe .full-bcg img {
      height: 100%;
      width: 100%;
      opacity: .15;
      -o-object-fit: cover;
      object-fit: cover; }
  .paragraphe .container {
    position: relative; }

@media (max-width: 768px) {
  .paragraphe {
    padding: 50px 0; } }

footer ul {
  list-style-type: none; }

footer .footer {
  position: relative; }
  footer .footer .full-bcg {
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center; }
    footer .footer .full-bcg img {
      height: 100%;
      width: 100%;
      -webkit-filter: brightness(15%);
      filter: brightness(15%);
      -o-object-fit: cover;
      object-fit: cover; }
  footer .footer .container {
    position: relative;
    top: 0;
    padding: 80px 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-pack: space-between; }
    footer .footer .container .nav-list-column {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      -webkit-box-pack: start;
      justify-content: flex-start;
      -ms-flex-pack: flex-start;
      width: calc(40% - 20px); }
      footer .footer .container .nav-list-column .bloc-coordonnees p {
        margin: 0; }
        footer .footer .container .nav-list-column .bloc-coordonnees p.nom-entreprise {
          text-transform: uppercase; }
      footer .footer .container .nav-list-column .bloc-coordonnees a {
        color: #4A4A4A; }
        footer .footer .container .nav-list-column .bloc-coordonnees a:hover {
          color: #B8392C; }
        footer .footer .container .nav-list-column .bloc-coordonnees a.cta-file {
          color: #B8392C;
          font-weight: 400; }
          footer .footer .container .nav-list-column .bloc-coordonnees a.cta-file:hover {
            color: #892a21; }
      footer .footer .container .nav-list-column:last-child {
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        -ms-flex-pack: flex-start; }
      footer .footer .container .nav-list-column .reseaux {
        margin-top: 20px; }
      footer .footer .container .nav-list-column .reseaux-sociaux {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        -ms-flex-pack: flex-start;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        footer .footer .container .nav-list-column .reseaux-sociaux .reseau-social a img {
          background-color: #B8392C;
          border-radius: 50%;
          height: 32px;
          width: 32px;
          -o-object-fit: none;
          object-fit: none; }
        footer .footer .container .nav-list-column .reseaux-sociaux .reseau-social a:hover img {
          background-color: #892a21; }

footer .menu-footer {
  background-color: #F0F0F0;
  padding: 25px 0; }
  footer .menu-footer ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center; }
    footer .menu-footer ul li:first-child:after,
    footer .menu-footer ul li:nth-child(2):after {
      content: '-';
      padding: 0 5px 0 10px; }

footer .nav-list-column ul {
  list-style: none; }
  footer .nav-list-column ul li a {
    color: #4A4A4A; }

footer .formulaire {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 60%; }
  footer .formulaire .titre-niveau-2 {
    text-align: center; }
    footer .formulaire .titre-niveau-2:after {
      margin-left: auto;
      margin-right: auto;
      margin-top: 5px; }
  footer .formulaire form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%; }
    footer .formulaire form .bloc-form {
      width: 100%; }
    footer .formulaire form .row {
      width: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-box-pack: justify;
      justify-content: space-between;
      -ms-flex-pack: space-between; }
      footer .formulaire form .row.row-file .field {
        margin-bottom: 0; }
    footer .formulaire form .field {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      margin-bottom: 12.5px; }
      footer .formulaire form .field.user-infos {
        width: calc(50% - 12.5px); }
      footer .formulaire form .field.user-message {
        width: 100%; }
      footer .formulaire form .field label {
        margin-bottom: 5px; }
      footer .formulaire form .field input, footer .formulaire form .field textarea {
        font-size: 16px;
        font-size: 1rem;
        background-color: #F0F0F0;
        padding: 8px 5px;
        font-weight: 300; }
      footer .formulaire form .field input[type="file"] {
        opacity: 0;
        padding: 0;
        font-size: 0px;
        font-size: 0rem; }
      footer .formulaire form .field.upload-file {
        position: relative;
        display: inline-block;
        padding-left: 25px;
        margin-top: 12.5px; }
        footer .formulaire form .field.upload-file label {
          color: #B8392C;
          font-weight: 400; }
          footer .formulaire form .field.upload-file label:before {
            position: absolute;
            left: 0;
            content: " ";
            background-image: url("../images/icons/badak-landing-paperclip.png");
            background-repeat: no-repeat;
            background-size: auto;
            background-position: center;
            display: block;
            width: 100%;
            height: 20px;
            -webkit-transform: translateX(-49%);
            -ms-transform: translateX(-49%);
            transform: translateX(-49%); }
    footer .formulaire form .message-confirmation {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -webkit-box-pack: center;
      justify-content: center;
      -ms-flex-pack: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      display: none; }
      footer .formulaire form .message-confirmation img {
        margin-right: 12.5px; }
      footer .formulaire form .message-confirmation p {
        margin: 12.5px;
        text-align: center; }
    footer .formulaire form .cta {
      margin-top: 12.5px; }
    footer .formulaire form .rgpd {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      font-size: 14px;
      font-size: 0.875rem;
      line-height: 17px; }
      footer .formulaire form .rgpd input[type=checkbox] {
        margin-right: 12.5px;
        margin-top: 12.5px;
        -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start; }
      footer .formulaire form .rgpd label {
        margin: 10px 0; }

@media (max-width: 768px) {
  footer .footer .container {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 10px 15px 60px; }
    footer .footer .container .nav-list-column {
      width: 100%;
      padding: 0;
      text-align: center; }
      footer .footer .container .nav-list-column .reseaux {
        margin-bottom: 20px; }
      footer .footer .container .nav-list-column .reseaux-sociaux {
        margin: 25px 0;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -webkit-box-pack: center;
        justify-content: center;
        -ms-flex-pack: center; }
  footer .nav-list-column ul {
    text-align: center; }
    footer .nav-list-column ul li {
      margin: 3px 0; }
  footer .titre-niveau-3 {
    margin: 25px 0;
    text-align: center; }
  footer .menu-footer {
    padding: 12.5px 0; }
    footer .menu-footer .nav-list-column ul {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column; }
      footer .menu-footer .nav-list-column ul li {
        margin: 0;
        padding: 0; }
      footer .menu-footer .nav-list-column ul li:after {
        display: none; }
  footer .formulaire {
    width: 100%; }
    footer .formulaire .container {
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      footer .formulaire .container form {
        margin-top: 25px; }
        footer .formulaire .container form .row {
          -webkit-flex-direction: column;
          -moz-flex-direction: column;
          -ms-flex-direction: column;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          flex-direction: column;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          -webkit-box-pack: center;
          justify-content: center;
          -ms-flex-pack: center;
          width: 100%; }
        footer .formulaire .container form .field.user-infos {
          width: 100%; } }

@media (max-width: 576px) {
  footer .footer .container {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    footer .footer .container .nav-list-column {
      width: 100%; }
      footer .footer .container .nav-list-column .reseaux {
        margin-top: 0; }
      footer .footer .container .nav-list-column:first-child {
        max-width: 290px;
        text-align: center; }
      footer .footer .container .nav-list-column .reseaux-sociaux {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -webkit-box-pack: center;
        justify-content: center;
        -ms-flex-pack: center;
        margin: 0; }
      footer .footer .container .nav-list-column .bloc-coordonnees {
        text-align: center; }
  footer .menu-footer ul {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    footer .menu-footer ul li:first-child:after, footer .menu-footer ul li:nth-child(2):after {
      display: none; }
  footer .formulaire form .row {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; }
    footer .formulaire form .row .field {
      width: 100%; } }

/*# sourceMappingURL=style.css.map */