/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
html,
body {
  border: 0;
  font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video,
i {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
li {
  list-style: none;
}
button {
  cursor: pointer;
}
a img {
  border: 0;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:focus {
  outline: 0;
}
/* Single Variable*/
body {
  background-repeat: no-repeat;
  background-size: cover;
}
.cd-image-container {
  position: relative;
  width: 90%;
  max-width: 768px;
  margin: 0em auto;
}
.cd-image-container img {
  display: block;
}
.cd-image-label {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ffffff;
  padding: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
}
.cd-image-label.is-hidden {
  visibility: hidden;
}
.is-visible .cd-image-label {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.cd-resize-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-resize-img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}
.cd-resize-img .cd-image-label {
  right: auto;
  left: 0;
}
.is-visible .cd-resize-img {
  width: 50%;
  /* bounce in animation of the modified image */
  -webkit-animation: cd-bounce-in 0.7s;
  -moz-animation: cd-bounce-in 0.7s;
  animation: cd-bounce-in 0.7s;
}
@-webkit-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
@-moz-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
@keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
.cd-handle {
  position: absolute;
  height: 44px;
  width: 44px;
  /* center the element */
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border-radius: 50%;
  background: #dc717d url("../img/cd-arrows.svg") no-repeat center center;
  cursor: move;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  -moz-transform: translate3d(0, 0, 0) scale(0);
  -ms-transform: translate3d(0, 0, 0) scale(0);
  -o-transform: translate3d(0, 0, 0) scale(0);
  transform: translate3d(0, 0, 0) scale(0);
}
.cd-handle.draggable {
  /* change background color when element is active */
  background-color: #445b7c;
}
.is-visible .cd-handle {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0s 0.7s;
}
html {
  height: 100%;
}
html body {
  /*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
  /* 
    Created on : 6 août 2018, 15:28:29
    Author     : Bastien
*/
  /*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
  /* 
    Created on : 6 août 2018, 16:14:10
    Author     : Bastien
*/
  /*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
  /* 
    Created on : 6 août 2018, 16:59:06
    Author     : Bastien
*/
  /*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
  /* 
    Created on : 7 août 2018, 09:34:59
    Author     : Bastien
*/
  /*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
  /* 
    Created on : 7 août 2018, 16:08:34
    Author     : Bastien
*/
  /*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
  /* 
    Created on : 8 août 2018, 16:47:37
    Author     : Bastien
*/
  /*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
  /* 
    Created on : 9 août 2018, 15:35:22
    Author     : Bastien
*/
  /*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
  /* 
    Created on : 10 août 2018, 16:17:35
    Author     : Bastien
*/
  /*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
  /* 
    Created on : 13 sept. 2018, 15:28:48
    Author     : Bastien
*/
}
html body p,
html body span,
html body h3,
html body h1,
html body h2,
html body h4 {
  font-family: 'Open Sans', sans-serif;
}
html body .containerMainpart {
  min-height: 550px;
  background-color: #b0c8da;
  padding-bottom: 50px;
}
html body .containerMainpart .container-fluid .row .pageContent .pageContent2 .containerContent {
  padding-bottom: 20px;
  width: 100% !important;
}
@media screen and (max-width: 991px) {
  html body .containerMainpart .container-fluid .row .pageContent .pageContent2 .containerContent {
    width: 90% !important;
  }
}
html body .containerMainpart .container-fluid .row .pageContent .pageContent2 .containerContent .mainTitle {
  margin-left: 10px;
  margin-bottom: 20px;
  font-size: 40px;
  color: #15181f;
}
html body .containerMainpart .container-fluid .row .pageContent .pageContent2 .containerContent .mainContent {
  font-size: 16px;
  color: #9b9b9b;
}
html body .containerMainpart .containerContent {
  width: 80%;
  margin: auto;
}
html body .containerMainpart .containerContent .section-title {
  padding: 50px 0px;
}
html body .containerMainpart .containerContent .section-title .mainTitle {
  font-size: 40px;
  color: white;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px !important;
}
html body .containerMainpart .containerContent .mainContent {
  font-size: 16px;
  color: white;
}
html body .containerMainpart .containerContent .mainContent h1 {
  font-size: 28px;
}
html body .containerMainpart .containerContent .mainContent h2 {
  font-size: 24px;
}
html body .containerMainpart .containerContent .mainContent h3 {
  font-size: 20px;
}
html body .reseaux-sociaux {
  justify-content: flex-end;
  height: 20px;
  width: 100%;
  font-size: 20px;
}
html body .reseaux-sociaux a {
  margin: 0 10px;
  width: 20px;
  height: 20px;
  color: #c49f69;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
html body .reseaux-sociaux a:hover {
  text-decoration: none;
  font-size: 1.5em;
}
html body .reseaux-sociaux .fb:hover {
  color: #2d5a99;
}
html body .reseaux-sociaux .ggl:hover {
  color: #e43f36;
}
html body .reseaux-sociaux .twtr:hover {
  color: #00acde;
}
html body .reseaux-sociaux .lki:hover {
  color: #007eb1;
}
html body .reseaux-sociaux .yt:hover {
  color: #ff0019;
}
html body .displayInline {
  display: -webkit-inline-box;
}
html body .arrow {
  position: fixed;
  top: 50%;
  right: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  height: 100px;
  z-index: 1000;
}
@media screen and (max-width: 991px) {
  html body .arrow {
    display: none;
  }
}
html body .arrow div {
  font-size: 30px;
  color: #c49f69;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
html body .pageContent {
  width: 800px;
  height: auto;
  min-height: 280px;
  margin-top: -200px;
  background-color: white;
}
@media screen and (max-width: 991px) {
  html body .pageContent {
    min-width: 100%;
    margin-top: 0px;
    padding-right: 0px !important;
    padding-left: 0px !important;
    margin-right: 0px !important;
  }
}
html body .pageContent2 {
  padding: 45px;
}
@media screen and (max-width: 991px) {
  html body .pageContent2 {
    padding: 0px;
  }
}
html body .margin20 {
  padding-top: 30px;
  padding-bottom: 30px;
}
html body .underline {
  margin: auto;
  width: 50px;
  border-bottom: 5px solid #c49f69;
  margin-bottom: 50px;
}
html body .underline1 {
  margin: auto;
  width: 50px;
  border-bottom: 5px solid #c49f69;
  margin-top: 10px;
  margin-bottom: 10px;
}
html body .teamTitle {
  margin-top: 80px;
  font-size: 30px;
  color: white;
  text-align: center;
}
html body footer {
  border-top: 1px solid white;
  width: 100%;
  height: 550px;
  background-image: url("/images/design/footer/image-footer.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: -2;
}
@media screen and (max-width: 991px) {
  html body footer {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.65)), url("/images/design/footer/image-footer.jpg");
  }
}
html body footer .contactBox .col .logoGilles img {
  max-width: 100%;
  object-fit: cover;
}
html body footer .contactBox .col .linkContent {
  padding-top: 30px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  html body footer .contactBox .col .linkContent {
    padding-top: 20px;
  }
}
html body footer .contactBox .col .linkContent .linkFooter {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-color: #c49f69 !important;
  background-color: #c49f69 !important;
  color: white !important;
  padding: 5px 50px !important;
}
html body footer .contactBox .col .linkContent .linkFooter:hover {
  border-color: #FFAA00 !important;
  background-color: #FFAA00 !important;
}
html body footer .contactBox .row .contactFooter {
  margin-top: -200px;
  margin-right: 8%;
  color: white;
  font-size: 14px;
}
@media screen and (max-width: 1300px) {
  html body footer .contactBox .row .contactFooter {
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  html body footer .contactBox .row .contactFooter {
    font-size: 12px !important;
  }
}
html body footer .contactBox .row .contactFooter .trouverContent {
  font-size: 30px;
}
@media screen and (max-width: 1000px) {
  html body footer .contactBox .row .contactFooter .trouverContent {
    font-size: 25px;
  }
}
html body footer .contactBox .row .contactFooter .lnr {
  margin-right: 35px;
  font-size: 23px;
  padding-top: 10px;
}
html body footer .bottomFooter {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  width: 100%;
}
html body footer .bottomFooter .numFooter {
  margin-top: 10px;
}
html body footer .bottomFooter .partnerFooterContent {
  margin-left: 10px;
}
@media screen and (max-width: 1000px) {
  html body footer .bottomFooter .partnerFooterContent {
    margin-left: 0px;
    justify-content: center;
    flex-wrap: nowrap;
    display: flex;
  }
}
html body footer .bottomFooter .partnerFooterContent .partnerFooter {
  margin: 0px 20px;
}
@media screen and (max-width: 1000px) {
  html body footer .bottomFooter .partnerFooterContent .partnerFooter {
    max-width: 50%;
    margin: 0px 10px;
  }
}
html body footer .contentLinkFooter {
  position: absolute;
  bottom: 0px;
  height: 20px;
  width: 100%;
  background-color: #3c5da7;
  font-size: 0.8em;
}
html body footer .contentLinkFooter .bottomLinkFooter {
  margin: 0 10px;
  display: inline;
  color: white;
}
html body footer:after {
  content: '';
  background-image: url("/images/design/footer/cartefooter.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}
html body .container1 {
  margin: 50px auto;
  padding: 0 25px;
}
html body .container1 .col {
  /* style magasin */
}
html body .container1 .col .pPrestation {
  font-size: 16px;
  color: white;
}
@media screen and (max-width: 1280px) {
  html body .container1 .col .pPrestation {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  html body .container1 .col .contentprestation {
    margin-left: 0px !important;
  }
}
html body .container1 .col .nameRayon {
  width: 33%;
}
html body .presTitle {
  font-size: 25px;
  color: white;
  position: relative;
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
  background-color: #3c5da7;
  padding: 10px;
}
html body .lignePrestation {
  padding: 0;
  margin: 25px auto;
}
html body .lignePrestation figure {
  height: 400px;
}
@media screen and (max-width: 991px) {
  html body .lignePrestation figure {
    height: auto;
    max-height: 500px;
    margin: auto;
  }
}
html body .imagePrestation {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
html body .container-fluid .row .familleCol .famillePres {
  margin-top: 50px;
  text-align: center;
  font-size: 16px;
  color: white;
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  html body .container-fluid .row .familleCol .famillePres {
    font-size: 14px;
  }
}
html body .content1 .row .imagePres {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
}
@media screen and (max-width: 991px) {
  html body .content1 .row .imagePres {
    order: 1;
  }
}
html body .content1 .row .contentPres {
  overflow: auto;
  margin-top: 50px;
  margin-right: -35px;
  height: 250px;
  background-color: white;
  padding: 20px;
}
@media screen and (max-width: 991px) {
  html body .content1 .row .contentPres {
    order: 2;
    margin-right: 0px;
    margin-top: 10px;
  }
}
html body .content1 .row .contentPres2 {
  margin-top: 50px;
  margin-left: -35px;
  height: 250px;
  background-color: white;
  padding: 20px;
}
@media screen and (max-width: 991px) {
  html body .content1 .row .contentPres2 {
    order: 2;
    margin-left: 0px;
    margin-top: 10px;
  }
}
html body .content1 .row .spanPres {
  font-size: 20px;
  font-weight: 600;
  padding: 5px 30px;
}
@media screen and (max-width: 1280px) {
  html body .content1 .row .spanPres {
    font-size: 14px;
  }
}
html body .content1 .row .pPres {
  overflow: hidden;
  height: 150px;
  padding: 5px 30px;
  font-size: 14px;
  color: #9b9b9b;
}
html body .content1 .row .familleCol {
  padding-top: 100px;
}
html body .contentForm {
  margin: 50px 0;
}
html body .contentForm .containerContact {
  border-left: solid 2px #c49f69;
}
html body .contentForm .containerContact .formContact .bottomForm .sendLink {
  border-color: #c49f69 !important;
  background-color: #c49f69 !important;
  color: white !important;
  padding: 5px 50px !important;
}
html body .contentForm .containerContact .formContact .bottomForm .sendLink:hover {
  border-color: #FFAA00 !important;
  background-color: #FFAA00 !important;
}
html body .contentForm .containerContact .formContact .elementForm {
  padding-left: 10px;
  padding-right: 10px;
  margin: auto;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  max-width: 700px;
}
html body .contentForm .containerContact .formContact .elementForm input {
  width: 100%;
  border: none;
  background-color: #b0c8da;
  border-bottom: 1px solid #3c5da7;
}
html body .contentForm .containerContact .formContact .elementForm textArea {
  width: 100%;
  border: none;
  background-color: #b0c8da;
  border-bottom: 1px solid #3c5da7;
}
html body .contentForm .containerContact .formContact .elementForm .errorclass {
  border-color: red;
}
html body .contentForm .containerContact .formContact .elementForm .help-block {
  color: red;
  font-size: 0.8em;
  position: absolute;
  right: 0;
  bottom: 0;
}
html body .contentForm .contactFooter {
  padding-top: 150px;
  color: white;
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  html body .contentForm .contactFooter {
    padding-top: 30px;
  }
}
html body .contentForm .contactFooter .trouverContent {
  font-size: 30px;
}
html body .contentForm .contactFooter .lnr {
  margin-right: 35px;
  font-size: 23px;
  padding-top: 10px;
}
html body .contentForm .contactFooter .tr {
  text-align: center;
}
html body .contentForm .contactFooter .contentTrouver {
  padding: 0 27%;
}
html body .contentForm .contactFooter .contentTrouver .displayInline {
  display: -webkit-inline-box;
}
html body .contentMagasin {
  margin-top: 50px;
  padding-right: 0px !important;
  padding-left: 0px !important;
}
html body .contentMagasin .contentProduct {
  padding-bottom: 150px;
  width: 80%;
  text-align: center;
  margin-left: 10%;
  background-color: white;
}
@media screen and (max-width: 991px) {
  html body .contentMagasin .contentProduct {
    width: 90%;
    margin-left: 5%;
    padding-bottom: 20px;
  }
}
html body .contentMagasin .contentProduct .titleProduct {
  padding-top: 50px;
  padding-bottom: 20px;
  font-size: 30px;
  color: #2d3344;
  font-weight: bold;
}
html body .contentMagasin .contentProduct .hidden {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  max-height: 0;
  overflow: hidden;
}
html body .contentMagasin .contentProduct .hidden .itemProduct {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  overflow: hidden;
}
html body .contentMagasin .contentProduct .row .itemProduct {
  padding: 0px 70px;
  margin: 25px 0px;
}
@media screen and (max-width: 630px) {
  html body .contentMagasin .contentProduct .row .itemProduct {
    padding: 0px 20px;
  }
}
html body .contentMagasin .contentProduct .row .itemProduct .imgPrix {
  position: relative;
}
html body .contentMagasin .contentProduct .row .itemProduct .imgPrix .contentImg {
  height: 300px;
  max-width: 350px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 975px) {
  html body .contentMagasin .contentProduct .row .itemProduct .imgPrix .contentImg {
    display: block;
    margin: auto;
  }
}
html body .contentMagasin .contentProduct .row .itemProduct .imgPrix .contentImg .imgProduct {
  max-width: 100%;
  object-fit: cover;
  max-height: 100%;
  position: relative;
}
html body .contentMagasin .contentProduct .row .itemProduct .imgPrix .rayure {
  width: 60px !important;
  height: 60px !important;
}
html body .contentMagasin .contentProduct .row .itemProduct .imgPrix .prix2 {
  margin-bottom: 50px !important;
  margin-right: -30px !important;
}
html body .contentMagasin .contentProduct .row .itemProduct .imgPrix .prixContent {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 3%;
  margin-bottom: 20px;
  height: 70px;
  width: 70px;
  background-color: #3c5da7;
  border-radius: 40px;
  display: flex;
}
@media screen and (max-width: 630px) {
  html body .contentMagasin .contentProduct .row .itemProduct .imgPrix .prixContent {
    right: 20px;
  }
}
html body .contentMagasin .contentProduct .row .itemProduct .imgPrix .prixContent .prix {
  margin: auto;
  color: white;
  font-size: 18px;
}
html body .contentMagasin .contentProduct .row .itemProduct .nameProduct {
  margin-top: 20px;
  text-transform: uppercase;
  text-align: left;
  font-size: 16px;
  color: #3c5da7;
}
html body .contentMagasin .contentProduct .row .itemProduct .contentDescProduct {
  margin-top: 10px;
}
html body .contentMagasin .contentProduct .row .itemProduct .contentDescProduct p {
  text-align: left;
  font-size: 16px;
  color: #2d3344;
}
@media screen and (max-width: 1280px) {
  html body .contentMagasin .contentProduct .row .itemProduct .contentDescProduct p {
    font-size: 14px;
  }
}
html body .contentMagasin .contentProduct .row .itemProduct:nth-child(3n+2) {
  border-left: 1px solid #3c5da7;
  border-right: 1px solid #3c5da7;
}
@media screen and (max-width: 1416px) {
  html body .contentMagasin .contentProduct .row .itemProduct:nth-child(3n+2) {
    border: none;
  }
}
@media screen and (max-width: 1416px) and (min-width: 992px) {
  html body .contentMagasin .contentProduct .row .itemProduct:nth-child(odd) {
    border-right: 1px solid #3c5da7;
  }
}
html body .contentMagasin .contentProduct .contentLinkPage {
  right: 0;
  bottom: 0;
  position: absolute;
  margin-right: 50px;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  html body .contentMagasin .contentProduct .contentLinkPage {
    display: flex;
    justify-content: center;
    position: unset;
    margin: 0;
  }
}
html body .contentMagasin .contentProduct .contentLinkPage .linkPage {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  display: flex;
  width: 90px;
  height: 90px;
  background-color: #c49f69;
  color: white;
}
html body .contentMagasin .contentProduct .contentLinkPage .linkPage .far {
  font-size: 35px;
  margin: auto;
}
html body .contentMagasin .contentProduct .contentLinkPage .linkPage:hover {
  border-color: #FFAA00 !important;
  background-color: #FFAA00 !important;
}
html body .contentMagasin .contentRayon {
  background-color: #3c5da7;
  padding: 20px;
}
html body .contentMagasin .contentRayon .titleRayon {
  padding-top: 70px;
  text-align: center;
  font-size: 30px;
  color: white;
}
html body .contentMagasin .contentRayon .rayonContent {
  color: white;
  padding: 20px 40px !important;
  max-width: 1200px;
  margin: auto;
  font-size: 20px;
}
html body .contentMagasin .contentRayon .rayonContent .rayonItem {
  padding: 10px 0px;
  display: list-item;
}
html body .pdfListContainer {
  margin: 50px auto;
  background-color: #0b3e6f;
  height: 100%;
  padding: 20px !important;
  color: #fff;
  text-align: center;
}
html body .pdfListContainer h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
}
html body .pdfListContainer a {
  text-decoration: none;
  color: #fff;
  margin-top: 25px;
}
html body .pdfListContainer a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f1c1";
  margin-right: 20px;
  font-size: 20px;
}
html body .pdfListContainer a:hover {
  color: #c0a16b;
}
html body .container .titleActu2 {
  text-align: center;
  position: relative;
}
html body .container .titleActu2:before {
  content: "";
  left: 0;
  right: 0;
  height: 1px;
  background: white;
  position: absolute;
  top: calc(50% + 10px);
}
html body .container .titleActu2 h1 {
  display: inline-block;
  letter-spacing: 1px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  background-color: #b0c8da;
}
html body .container .itemActu .imgActu {
  padding: 4% !important;
  background-color: white;
}
@media screen and (max-width: 992px) {
  html body .container .itemActu .imgActu {
    order: 1;
  }
}
html body .container .itemActu .imgActu img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 472px;
}
@media screen and (max-width: 992px) {
  html body .container .itemActu .imgActu img {
    max-height: 500px;
  }
}
html body .container .itemActu .contentActu {
  padding: 7%;
  text-align: center;
  background-color: white;
  position: relative;
}
@media screen and (max-width: 992px) {
  html body .container .itemActu .contentActu {
    order: 2;
  }
}
html body .container .itemActu .contentActu .dateActu {
  color: #9b9b9b;
  font-size: 18px;
  margin-bottom: 10px;
}
html body .container .itemActu .contentActu h3 {
  font-size: 25px;
  color: #2d3344;
}
html body .container .itemActu .contentActu .descActu {
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 196px;
}
@media screen and (max-width: 1280px) {
  html body .container .itemActu .contentActu .descActu {
    max-height: 193px;
  }
}
html body .container .itemActu .contentActu .descActu p {
  font-size: 16px;
  color: #2d3344;
  text-align: left;
}
@media screen and (max-width: 1280px) {
  html body .container .itemActu .contentActu .descActu p {
    font-size: 14px;
  }
}
html body .container .itemActu .contentActu .linkActu {
  margin-top: 20px;
  width: 200px;
  margin-bottom: 10%;
  border-color: #c49f69;
  color: #c49f69;
}
@media screen and (max-width: 992px) {
  html body .container .itemActu .contentActu .linkActu {
    margin-bottom: 7%;
  }
}
html body .container .itemActu .contentActu .linkActu:hover {
  background-color: #c49f69;
  color: white;
}
html body .detailActu {
  padding-left: 0px !important;
}
@media screen and (max-width: 992px) {
  html body .detailActu {
    padding-right: 0px !important;
  }
}
html body .detailActu h1 {
  padding-top: 50px;
  text-align: center;
  font-size: 25px;
  color: white;
  font-weight: bold;
}
html body .detailActu .col {
  margin-top: 40px;
  padding-left: 0px !important;
}
@media screen and (max-width: 992px) {
  html body .detailActu .col {
    padding-right: 0px !important;
  }
}
html body .detailActu .col .contentDetailActu {
  background-color: white;
  padding: 8% !important;
}
@media screen and (max-width: 992px) {
  html body .detailActu .col .contentDetailActu {
    height: auto;
  }
}
html body .detailActu .col .contentDetailActu .dateActu {
  color: #9b9b9b;
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  html body .detailActu .col .contentDetailActu .dateActu {
    font-size: 14px;
  }
}
html body .detailActu .col .imageContent {
  padding-right: 0px !important;
  text-align: right;
  margin-top: -10%;
  margin-left: 35%;
}
@media screen and (max-width: 992px) {
  html body .detailActu .col .imageContent {
    max-height: 500px;
    margin: 0;
  }
}
html body .detailActu .col .imageContent .imageActu {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  html body .detailActu .col .imageContent .imageActu {
    max-height: 500px;
    max-width: 992px;
  }
}
html body .container-fluid {
  padding-right: 0px !important;
  padding-left: 0px !important;
}
html body .container-fluid .bandeauMid {
  height: 450px;
  width: 100%;
  margin-top: 10px;
  background: url("/images/galerie/header/index.jpeg") center 0 no-repeat fixed;
}
html body .container-fluid .bandeauMid .contentBandeau {
  margin: auto;
}
html body .container-fluid .bandeauMid .contentBandeau .contentImg {
  padding: 30px 0px;
}
html body .container-fluid .bandeauMid .contentBandeau .choixDest {
  padding: 10px 0px;
  font-size: 40px;
  font-weight: bold;
  color: white;
}
@media screen and (max-width: 800px) {
  html body .container-fluid .bandeauMid .contentBandeau .choixDest {
    font-size: 25px;
    padding: 0;
  }
}
html body .container-fluid .bandeauMid .contentBandeau .linkContent {
  padding-top: 30px;
}
html body .container-fluid .bandeauMid .contentBandeau .linkContent .linkFooter {
  border-color: #c49f69 !important;
  background-color: #c49f69 !important;
  color: white !important;
  padding: 5px 50px !important;
}
html body .container-fluid .bandeauMid .contentBandeau .linkContent .linkFooter:hover {
  border-color: #FFAA00 !important;
  background-color: #FFAA00 !important;
}
html body .container-fluid .contentEncartBot {
  height: auto;
  margin-left: -2px;
  background-color: rgba(50, 71, 118, 0.9);
  color: white;
}
html body .container-fluid .contentEncartBot .contentBot {
  margin: auto;
}
html body .container-fluid .contentEncartBot .contentBot p {
  padding-bottom: 30px;
}
html body .container-fluid .contentEncartBot .contentBot h2 {
  padding-top: 40px;
  margin-bottom: -20px;
  font-size: 30px;
  color: white;
  font-weight: bold;
}
html body .container-fluid .contentEncartBot .contentBot .table1 {
  margin-bottom: 30px;
  border-collapse: collapse !important;
}
@media screen and (max-width: 760px) {
  html body .container-fluid .contentEncartBot .contentBot .table1 {
    width: 100%;
    object-fit: cover;
  }
}
html body .container-fluid .contentEncartBot .contentBot .table1 tbody tr {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
html body .container-fluid .contentEncartBot .contentBot .table1 tbody tr:first-of-type {
  border-top: none;
  border-bottom: none;
}
html body .container-fluid .contentEncartBot .contentBot .table1 tbody tr:first-of-type td {
  border-radius: 10px;
  border: none;
}
html body .container-fluid .contentEncartBot .contentBot .table1 tbody tr:first-of-type td:first-of-type {
  background-color: initial;
}
html body .container-fluid .contentEncartBot .contentBot .table1 tbody tr:first-of-type td span {
  background-color: #3c5da7;
}
html body .container-fluid .contentEncartBot .contentBot .table1 tbody tr:last-of-type {
  border-bottom: none;
}
html body .container-fluid .contentEncartBot .contentBot .table1 tbody tr:nth-child(2) {
  border-top: none;
}
html body .container-fluid .contentEncartBot .contentBot .table1 tbody tr td {
  text-align: center;
  border-left: 1px solid white;
  border-right: 1px solid white;
}
html body .container-fluid .contentEncartBot .contentBot .table1 tbody tr td:last-of-type {
  border-right: none;
}
html body .container-fluid .contentEncartBot .contentBot .table1 tbody tr td:first-of-type {
  border-left: none;
}
html body .container-fluid .contentEncartBot .contentBot .table1 tbody tr td:first-of-type span {
  background-color: #3c5da7;
}
html body .container-fluid .contentEncartBot .contentBot .table2 {
  border-collapse: collapse !important;
}
@media screen and (max-width: 550px) {
  html body .container-fluid .contentEncartBot .contentBot .table2 {
    width: 100%;
    object-fit: cover;
  }
}
html body .container-fluid .contentEncartBot .contentBot .table2 tr {
  border: 1px solid white;
}
html body .container-fluid .contentEncartBot .contentBot .table2 tr td {
  text-align: center;
  border: 1px solid white;
}
html body .container-fluid .contentEncartBot .contentBot .table2 tr:nth-child(2) {
  height: 1px;
  background-color: #3c5da7;
}
html body .container-fluid .contentEncartBot .contentBot .table2 tr:first-of-type {
  background-color: #3c5da7;
}
html body .container-fluid .contentSimplePage .containerContent .mainTitle {
  margin: 50px 0px;
  padding-right: 5%;
  font-size: 60px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  color: white;
}
@media screen and (max-width: 1000px) {
  html body .container-fluid .contentSimplePage .containerContent .mainTitle {
    font-size: 30px;
  }
}
html body .container-fluid .contentSimplePage .containerContent .mainContent {
  margin-top: 20px;
  color: white;
  font-size: 18px;
  margin-left: 10%;
  border-left: 3px solid #c49f69;
  padding-left: 3%;
  padding-right: 5%;
  margin-bottom: 50px;
}
@media screen and (max-width: 1280px) {
  html body .container-fluid .contentSimplePage .containerContent .mainContent {
    font-size: 14px;
  }
}
html body .searchContainer {
  min-height: 500px;
  color: white;
}
html body .searchContainer .mainpartcontent .titleMain {
  display: inline-block;
}
html body .searchContainer .mainpartcontent .titleMain h1 {
  padding-top: 30px;
  font-weight: 600;
}
html body .searchContainer .mainpartcontent h4 {
  padding-top: 10px;
}
html body .home {
  margin-top: 200px;
  background: linear-gradient(transparent, #b0c8da 10%);
}
@media screen and (max-width: 1600px) {
  html body .home {
    background-color: #b0c8da;
    margin-top: 0px;
  }
}
html body .home .titlePrin {
  z-index: -1;
  position: absolute;
  top: 40%;
  width: 60%;
  padding-left: 100px;
  font-size: 70px;
  font-weight: 600;
  color: white;
  letter-spacing: 1.8px;
  text-shadow: 0 2px 4px #3c5da7;
}
@media screen and (max-width: 1500px) {
  html body .home .titlePrin {
    top: 30%;
    font-size: 50px;
    width: 70%;
    padding-left: 20px;
  }
}
@media screen and (max-width: 991px) {
  html body .home .titlePrin {
    top: 30%;
    font-size: 30px;
    width: 90%;
  }
}
html body .home .titlePrin::after {
  content: '';
  height: 10px;
  background-color: #c0a16b;
  width: 200px;
  position: absolute;
  bottom: -20px;
  left: 0;
  margin-left: 100px;
}
@media screen and (max-width: 1500px) {
  html body .home .titlePrin::after {
    margin-left: 20px;
  }
}
html body .home .actu {
  padding: 30px 0;
  position: relative;
}
@media screen and (max-width: 991px) {
  html body .home .actu {
    min-height: 820px;
  }
}
html body .home .actu::after {
  content: '';
  width: 80%;
  margin: auto;
  height: 2px;
  background-color: #c0a16b;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
html body .home .actu .carousel .carousel-inner .carousel-item .row {
  max-height: 500px;
  color: white;
}
@media screen and (max-width: 991px) {
  html body .home .actu .carousel .carousel-inner .carousel-item .row {
    max-height: none;
  }
}
html body .home .actu .carousel .carousel-inner .carousel-item .row .imgContent {
  max-width: 600px;
  position: relative;
}
@media screen and (max-width: 991px) {
  html body .home .actu .carousel .carousel-inner .carousel-item .row .imgContent {
    order: 2;
    margin-bottom: 50px;
    max-width: 80%;
  }
}
html body .home .actu .carousel .carousel-inner .carousel-item .row .imgContent .imgCaroussel {
  object-fit: cover;
  height: 100%;
}
html body .home .actu .carousel .carousel-inner .carousel-item .row .imgContent .linkPrevNext {
  background-color: white;
  width: 110px;
  height: 110px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 991px) {
  html body .home .actu .carousel .carousel-inner .carousel-item .row .imgContent .linkPrevNext {
    margin-bottom: 0px;
    right: 50px;
  }
}
html body .home .actu .carousel .carousel-inner .carousel-item .row .imgContent .linkPrevNext a {
  width: 50%;
}
html body .home .actu .carousel .carousel-inner .carousel-item .row .content {
  background-color: #0b3e6f;
  padding: 40px 20px;
}
@media screen and (max-width: 991px) {
  html body .home .actu .carousel .carousel-inner .carousel-item .row .content {
    order: 1;
    margin-bottom: 30px;
    max-width: 90%;
    width: 100%;
  }
}
html body .home .actu .carousel .carousel-inner .carousel-item .row .content .titleActu {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  padding-bottom: 50px;
}
@media screen and (max-width: 1280px) {
  html body .home .actu .carousel .carousel-inner .carousel-item .row .content .titleActu {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  html body .home .actu .carousel .carousel-inner .carousel-item .row .content .titleActu {
    padding-bottom: 30px;
  }
}
html body .home .actu .carousel .carousel-inner .carousel-item .row .content .contentDesc {
  margin-bottom: 25px;
  max-height: 240px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  html body .home .actu .carousel .carousel-inner .carousel-item .row .content .contentDesc {
    padding-left: 15px;
    padding-right: 15px;
  }
}
html body .home .actu .carousel .carousel-inner .carousel-item .row .content .contentDesc p {
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 1280px) {
  html body .home .actu .carousel .carousel-inner .carousel-item .row .content .contentDesc p {
    font-size: 14px;
  }
}
html body .home .actu .carousel .carousel-inner .carousel-item .row .content div .btn {
  padding: 5px 50px;
  letter-spacing: 0.2px;
  border-color: #c49f69 !important;
  background-color: #c49f69 !important;
}
html body .home .actu .carousel .carousel-inner .carousel-item .row .content div .btn:hover {
  border-color: #FFAA00 !important;
  background-color: #FFAA00 !important;
}
html body .home .part2 {
  margin-top: 50px;
}
html body .home .part {
  background-color: white;
}
html body .home .part .carousel {
  text-align: center;
}
html body .home .part .carousel .titrePart {
  text-align: center;
  position: relative;
}
html body .home .part .carousel .titrePart:before {
  content: "";
  left: 0;
  right: 0;
  height: 1px;
  background: #b0c8da;
  position: absolute;
  top: calc(50% + 10px);
}
html body .home .part .carousel .titrePart .titre {
  display: inline-block;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  font-size: 30px;
  font-weight: bold;
  color: #2d3344;
  background-color: white;
}
html body .home .part .carousel .carousel-inner {
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 50px;
  margin-top: 30px;
}
@media screen and (max-width: 991px) {
  html body .home .part .carousel .carousel-inner {
    padding-bottom: 30px;
  }
}
html body .home .part .carousel .carousel-inner .carousel-item {
  height: 110px;
  max-height: 200px;
}
html body .home .part .carousel .carousel-inner .carousel-item a {
  display: inline !important;
}
html body .home .part .carousel .carousel-inner .carousel-item a img {
  object-fit: cover;
  max-height: 110px;
  max-width: 15%;
  margin: 0px 2%;
}
html body .home .part .carousel .carousel-control-prev {
  padding-top: 70px;
  z-index: 3;
}
@media screen and (max-width: 991px) {
  html body .home .part .carousel .carousel-control-prev {
    width: 5% !important;
  }
}
html body .home .part .carousel .carousel-control-prev img {
  max-width: 100%;
}
html body .home .part .carousel .carousel-control-next {
  padding-top: 70px;
}
@media screen and (max-width: 991px) {
  html body .home .part .carousel .carousel-control-next {
    width: 5% !important;
  }
}
html body .home .part .carousel .carousel-control-next img {
  max-width: 100%;
}
html body .home .pres1 {
  position: relative;
}
html body .home .pres1 h2 {
  text-align: center;
  margin-top: 50px;
  font-size: 32px;
  color: white;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  html body .home .pres1 h2 {
    margin-top: 20px;
  }
}
html body .home .pres1 .myNav {
  position: absolute;
  bottom: 0;
  right: 180px;
  z-index: 100;
  text-align: center;
}
@media screen and (max-width: 991px) {
  html body .home .pres1 .myNav {
    position: unset;
  }
}
html body .home .pres1 .myNav .owl-prev {
  display: inline;
  color: #c49f69;
  opacity: 0.4;
}
html body .home .pres1 .myNav .owl-prev:after {
  content: '\f104';
  font-family: FontAwesome;
  color: #c49f69;
  font-size: 60px;
}
html body .home .pres1 .myNav .owl-prev:hover {
  opacity: 1;
}
html body .home .pres1 .myNav .owl-next {
  display: inline;
  color: #c49f69;
  opacity: 0.4;
}
html body .home .pres1 .myNav .owl-next:after {
  margin-left: 30px;
  content: '\f105';
  font-family: FontAwesome;
  color: #c49f69;
  font-size: 60px;
}
html body .home .pres1 .myNav .owl-next:hover {
  opacity: 1;
}
html body .home .pres1 .slideContainer {
  margin: 30px 0px;
}
@media screen and (max-width: 1300px) {
  html body .home .pres1 .slideContainer {
    height: auto;
  }
}
html body .home .pres1 .slideContainer .owl-item.center table {
  width: 150% !important;
  margin-left: -25%;
}
@media screen and (max-width: 1300px) {
  html body .home .pres1 .slideContainer .owl-item.center table {
    width: 100% !important;
    margin-left: 0px;
  }
}
html body .home .pres1 .slideContainer .owl-item.center table tr td .row {
  transition: all 0.5s;
}
html body .home .pres1 .slideContainer .owl-item.center table tr td .row .imagePres1 {
  display: block !important;
}
@media screen and (max-width: 1300px) {
  html body .home .pres1 .slideContainer .owl-item.center table tr td .row .imagePres1 {
    padding-left: 5%;
  }
}
@media screen and (max-width: 991px) {
  html body .home .pres1 .slideContainer .owl-item.center table tr td .row .imagePres1 {
    padding-left: 0px;
  }
}
html body .home .pres1 .slideContainer .owl-item.center table tr td .row .contentPres1 {
  flex: 0 0 33.333333% !important;
}
@media screen and (max-width: 991px) {
  html body .home .pres1 .slideContainer .owl-item.center table tr td .row .contentPres1 {
    flex: none !important;
  }
}
html body .home .pres1 .slideContainer .owl-item tr td .row .imagePres1 {
  display: none !important;
}
html body .home .pres1 .slideContainer .owl-item tr td .row .contentPres1 {
  max-width: 90% !important;
  width: 90% !important;
  flex: none;
}
html body .home .pres1 .slideContainer .item {
  width: 100%;
}
html body .home .pres1 .slideContainer .item tr td .row {
  min-height: 600px;
}
@media screen and (max-width: 991px) {
  html body .home .pres1 .slideContainer .item tr td .row {
    height: auto;
  }
}
html body .home .pres1 .slideContainer .item tr td .row .imagePres1 {
  object-fit: cover;
  padding: 25px 0px;
}
html body .home .pres1 .slideContainer .item tr td .row .contentPres1 {
  left: -50px;
  background-color: white;
}
@media screen and (max-width: 991px) {
  html body .home .pres1 .slideContainer .item tr td .row .contentPres1 {
    left: 0;
    padding-bottom: 20px;
  }
}
html body .home .pres1 .slideContainer .item tr td .row .contentPres1 h3 {
  margin: 20px 0px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #2d3344;
}
html body .home .pres1 .slideContainer .item tr td .row .contentPres1 .logoPres1 {
  display: block;
  margin: auto;
  height: 110px;
  width: 110px;
}
html body .home .pres1 .slideContainer .item tr td .row .contentPres1 .contentDescPres {
  margin-bottom: 20px;
  max-height: 289px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  html body .home .pres1 .slideContainer .item tr td .row .contentPres1 .contentDescPres {
    padding: 10px 3%;
  }
}
html body .home .pres1 .slideContainer .item tr td .row .contentPres1 .contentDescPres p {
  text-align: left;
  font-size: 16px;
  color: #2d3344;
  margin: 20px 0px;
}
@media screen and (max-width: 1280px) {
  html body .home .pres1 .slideContainer .item tr td .row .contentPres1 .contentDescPres p {
    font-size: 14px;
  }
}
html body .home .pres1 .slideContainer .item tr td .row .contentPres1 .btn {
  margin-bottom: 20px;
  width: 150px;
  display: block;
  margin: auto;
  font-size: 14px;
  letter-spacing: 0.2px;
  border-color: #c49f69 !important;
  color: #c49f69 !important;
}
html body .home .pres1 .slideContainer .item tr td .row .contentPres1 .btn:hover {
  background-color: #c49f69 !important;
  color: white !important;
}
html body .home .pres1 .slide1 {
  margin: auto;
  width: 70%;
}
@media screen and (max-width: 991px) {
  html body .home .pres1 .slide1 {
    width: 95%;
  }
}
html body .home .pres1 .slide1 .row {
  transition: all, 1s;
  margin: 50px 0px;
  height: 600px;
}
@media screen and (max-width: 991px) {
  html body .home .pres1 .slide1 .row {
    height: auto;
  }
}
html body .home .pres1 .slide1 .row .itemImg .imagePres1 {
  height: 100%;
  object-fit: cover;
  padding: 25px 0px;
}
html body .home .pres1 .slide1 .row .contentPres1 {
  left: -15px;
  background-color: white;
}
@media screen and (max-width: 991px) {
  html body .home .pres1 .slide1 .row .contentPres1 {
    left: 0;
    padding-bottom: 20px;
  }
}
html body .home .pres1 .slide1 .row .contentPres1 h3 {
  margin: 20px 0px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #2d3344;
}
@media screen and (max-width: 1280px) {
  html body .home .pres1 .slide1 .row .contentPres1 h3 {
    font-size: 25px;
  }
}
html body .home .pres1 .slide1 .row .contentPres1 .logoPres1 {
  display: block;
  margin: auto;
  height: 110px;
  width: 110px;
}
html body .home .pres1 .slide1 .row .contentPres1 .contentDescPres {
  margin: 20px 0px;
  font-size: 16px;
  color: #2d3344;
  max-height: 289px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  html body .home .pres1 .slide1 .row .contentPres1 .contentDescPres {
    padding: 10px 3%;
    font-size: 14px;
  }
}
html body .home .pres1 .slide1 .row .contentPres1 .btn {
  margin-bottom: 20px;
  width: 150px;
  display: block;
  margin: auto;
  font-size: 14px;
  letter-spacing: 0.2px;
  border-color: #c49f69 !important;
  color: #c49f69 !important;
}
html body .home .pres1 .slide1 .row .contentPres1 .btn:hover {
  background-color: #c49f69 !important;
  color: white !important;
}
html body .home .pres2 {
  margin: 50px 0px;
}
html body .home .pres2 .contentPres2 {
  text-align: left !important;
  margin: 0 6%;
}
html body .home .pres2 .contentPres2 a {
  text-decoration: none;
}
html body .home .pres2 .contentPres2 a .titrePres2 {
  letter-spacing: 1px;
  font-size: 25px;
  font-weight: 600;
  color: white;
  display: inline;
  position: relative;
}
html body .home .pres2 .contentPres2 a .titrePres2:after {
  position: absolute;
  bottom: -8px;
  left: 37%;
  content: '';
  width: 50px;
  border: 3px solid #c49f69;
}
html body .home .pres2 .contentPres2 a .imgPres2 {
  object-fit: cover;
  max-height: 320px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 25px;
}
html body .home .pres2 .contentPres2 a p {
  margin-top: 20px;
  font-size: 18px;
  color: white;
}
@media screen and (max-width: 1280px) {
  html body .home .pres2 .contentPres2 a p {
    font-size: 14px;
  }
}
html body .home .containerContent .section-title {
  text-align: center;
  position: relative;
}
html body .home .containerContent .section-title:before {
  content: "";
  left: 0;
  right: 0;
  height: 1px;
  background: white;
  position: absolute;
  top: calc(50% - 10px);
}
html body .home .containerContent .section-title .mainTitle {
  display: inline-block;
  padding: 0 40px;
  background: #b0c8da;
  position: relative;
  z-index: 1;
  color: white;
  font-size: 30px;
  font-weight: bold;
}
html body .home .containerContent .mainContent {
  padding: 20px 25%;
  color: white;
}
@media screen and (max-width: 991px) {
  html body .home .containerContent .mainContent {
    padding: 20px;
  }
}
html body header {
  /*@media screen and (max-width: 991px) {
          height: unset;
      }*/
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  min-height: 550px;
}
@media screen and (max-width: 980px) {
  html body header {
    height: auto !important;
    min-height: 400px;
  }
}
@media screen and (max-width: 480px) {
  html body header {
    height: auto !important;
    min-height: 250px;
  }
}
html body header .rodBase {
  z-index: 3;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  display: none;
}
@media screen and (max-width: 991px) {
  html body header .rodBase {
    display: block;
  }
}
html body header .rodBase .burgerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  z-index: 100;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 991px) {
  html body header .rodBase .burgerMenu {
    display: flex;
  }
}
html body header .rodBase .burgerMenu div {
  position: relative;
  width: 30px;
  height: 2px;
  background-color: #464646;
}
html body header .rodBase .burgerMenu div:after,
html body header .rodBase .burgerMenu div:before {
  content: '';
  height: 2px;
  background-color: #464646;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
html body header .rodBase .burgerMenu div:after {
  width: 28px;
  position: absolute;
  top: -6px;
}
html body header .rodBase .burgerMenu div:before {
  width: 20px;
  position: absolute;
  bottom: -6px;
}
html body header .rodBase .burgerMenu span {
  position: absolute;
  left: -25px;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 0.9em;
  color: #464646;
}
html body header .rodBase .burgerMenu:hover div:after {
  width: 16px;
}
html body header .rodBase .burgerMenu:hover div:before {
  width: 28px;
}
html body header .rodBase .rodBaseMenu {
  padding-left: 20px;
  background-color: #c49f69;
  height: 100%;
  display: none;
  width: 300px;
}
html body header .rodBase .rodBaseMenu .closeBtn {
  padding-top: 5px;
  color: white;
  text-align: right;
  margin-right: 10px;
  font-size: 25px;
}
html body header .rodBase .rodBaseMenu .rodBaseLinkContainer a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: white;
}
html body header .rodBase .rodBaseMenu .rodBaseLinkContainer a:hover {
  font-weight: bold;
}
html body header .rodBase .rodBaseMenu .dropdown:hover > .dropdown-menu {
  top: 100% !important;
  position: initial !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: transparent !important;
  border: none !important;
  display: block;
  padding-left: 20px !important;
}
html body header .rodBase .rodBaseMenu .dropdown:hover > .dropdown-menu a {
  color: white;
}
html body header .rodBase .rodBaseMenu .dropdown:hover > .dropdown-menu a:hover {
  font-weight: bold;
}
html body header .rodBase .rodBaseMenu .searchBox2 {
  height: 40px;
  background-color: #dbc8b9;
}
html body header .rodBase .rodBaseMenu .searchBox2 .formSearch input {
  width: 235px;
  color: white;
  border: none;
  background: transparent;
}
html body header .rodBase .rodBaseMenu .searchBox2 .formSearch .searchBtn {
  color: white;
  font-size: 22px;
  height: 40px;
  width: 40px;
  background: transparent;
  border: none;
}
html body header .rodBase .rodBaseMenu .contactHeader {
  color: white;
  font-size: 16px;
}
html body header .rodBase .rodBaseMenu .contactHeader div {
  padding: 5px 0px;
}
@media screen and (max-width: 991px) {
  html body header .right {
    display: none;
  }
}
html body header .right img {
  max-width: 530px;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 1500px) {
  html body header .right img {
    max-width: 370px;
  }
}
html body header .logoCentre {
  display: none;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  html body header .logoCentre {
    display: block;
  }
}
html body header .logoCentre img {
  max-width: 530px;
  object-fit: cover;
  width: 100%;
}
html body header .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  height: 60px;
}
@media screen and (max-width: 991px) {
  html body header .left {
    display: none;
  }
}
html body header .left .nav {
  background: linear-gradient(0.25turn, rgba(255, 255, 255, 0), #FFF, #FFF, #FFF, #FFF);
  height: 100%;
}
@media screen and (max-width: 1400px) {
  html body header .left .nav {
    flex-wrap: nowrap !important;
    margin-left: 45px;
  }
}
html body header .left .nav .dropdown:hover > .dropdown-menu {
  top: 98% !important;
  display: block;
  width: 100%;
  border: none !important;
}
html body header .left .nav .dropdown:hover > .dropdown-menu a:hover {
  color: #3c5da7;
}
html body header .left .nav .nav-item .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  text-align: center;
  height: 100%;
  color: #2d3344;
  text-transform: uppercase;
}
@media screen and (max-width: 1400px) {
  html body header .left .nav .nav-item .nav-link {
    padding: 0.5rem 0.4rem !important;
    font-size: 14px;
  }
}
html body header .left .nav .nav-item .active {
  color: #3c5da7;
  position: relative;
}
html body header .left .nav .nav-item .active::before {
  content: '';
  height: 4px;
  background-color: #c0a16b;
  width: 50px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
}
html body header .left .nav .nav-item .dropdown-menu a {
  font-size: 16px !important;
}
@media screen and (max-width: 1400px) {
  html body header .left .nav .nav-item .dropdown-menu a {
    font-size: 14px !important;
  }
}
html body header .left .nav .nav-item .dropdown-menu .active {
  color: inherit;
  position: relative;
}
html body header .left .nav .nav-item .dropdown-menu .active::before {
  content: none;
}
html body header .searchBox {
  width: auto;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  background-color: rgba(255, 255, 255, 0.3);
}
html body header .searchBox .formSearch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
html body header .searchBox .formSearch:after {
  content: '';
  height: 2px;
  background: #FFFFFF;
  width: 0px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
  bottom: 25px;
  left: 10px;
}
html body header .searchBox .formSearch .menuOpen {
  width: 90px;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1400px) {
  html body header .searchBox .formSearch .menuOpen {
    width: 70px;
  }
}
html body header .searchBox .formSearch input {
  background: transparent;
  height: 100%;
  border: none;
  width: 0;
  color: #FFFFFF;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 16px;
}
html body header .searchBox .formSearch .searchBtn {
  width: 90px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  background: transparent;
  border: none;
}
@media screen and (max-width: 1400px) {
  html body header .searchBox .formSearch .searchBtn {
    width: 70px;
  }
}
html body header .searchBox .formSearch .searchBtn:before {
  color: #FFFFFF;
}
html body header .searchBox .open:after {
  width: 295px;
}
@media screen and (max-width: 1400px) {
  html body header .searchBox .open:after {
    width: 215px;
  }
}
html body header .searchBox .open input {
  width: 300px;
  padding: 10px;
}
@media screen and (max-width: 1400px) {
  html body header .searchBox .open input {
    width: 220px;
  }
}
html body header .reseaux-sociaux {
  position: absolute;
  top: 300px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  height: 100px;
  width: 30px;
}
html body header .reseaux-sociaux a {
  color: #FFFFFF;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
html body header .reseaux-sociaux a:hover {
  text-decoration: none;
  font-size: 1.5em;
}
html body header .reseaux-sociaux .fb:hover {
  color: #2d5a99;
}
html body header .reseaux-sociaux .ggl:hover {
  color: #e43f36;
}
html body header .reseaux-sociaux .twtr:hover {
  color: #00acde;
}
html body header .reseaux-sociaux .lki:hover {
  color: #007eb1;
}
html body header .reseaux-sociaux .yt:hover {
  color: #ff0019;
}
html body header .reseaux-sociaux:before {
  content: '';
  position: absolute;
  top: -150px;
  left: 14px;
  background: #FFFFFF;
  width: 3px;
  height: 130px;
}
html body header .topBG {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  object-fit: cover;
  min-height: 100%;
}
html body .container .titreEtUnderline {
  display: inline-block;
}
html body .container .titreEtUnderline h1 {
  margin-top: 50px;
  font-weight: bold;
  letter-spacing: 1px;
  color: white;
  font-size: 30px;
  display: inline-block;
}
html body .container .titreEtUnderline .underline {
  margin-left: 0 !important;
}
html body .container .divMainSize .mainpartcontent div {
  padding: 5px 0px;
}
html body .container .divMainSize .mainpartcontent div a {
  color: white;
  font-size: 18px;
}
html body .container .divMainSize .mainpartcontent div a:hover {
  text-decoration: underline;
}
html body .container .divMainSize .mainpartcontent .indent1 {
  padding-left: 80px;
}
