* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: calibri;
}


/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*style*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

:root {
  --body : #ffffff;
  --white : white;
  --black : black;
  --light : #dfff00;
  --colorP : #dfff00;
  --colorS  : #da7005;
}
body {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    background-color: var(--white);
    color: #555555;
    -webkit-font-smoothing: antialiased;
}

a, input[type="submit"], input[type='submit'] {
  cursor: pointer;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
    color: inherit;
  background-color: transparent;
  text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: inherit;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}
img {
  vertical-align: middle;
  border-style: none;
  height: auto;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}
h1, h2, h3,
.h1, .h2, .h3 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}
h1 {
    font-size: 30px;
}
h2, .h2 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}
h3, .h3 {
    font-size: 18px;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

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

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
.form-control {
  outline: none;
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
textarea.form-control {
  height: 75px;
  resize:vertical;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-control:focus {
  outline: none;
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.flex-block {
  display: -ms-flexbox !important;
  display: flex !important;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, 
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

#mail,
#mail2 {
    display: none;
}
/*
Header
*/
@media (min-width: 1200px) {
  .nav > .container {
      max-width: 1400px;
  }
}
.header .flex-block {
  justify-content: space-between;
  align-items: center;
}
.telTop {
    display: flex;
}
.telTop > div {
    margin-left: 15px;
    font-size: 26px;
}
.telTop span {
    display: block;
    font-weight: bold;
    padding: 7px 0;
}
.rappel-top {
    position: relative;
    padding-left: 80px;
}
.Mobile .rappel-top {
    padding: 20px;
    text-align: center;
}
.rappel-top::before {
  background-image: url(../images/img/call.webp);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 100%;
  border: 1px solid #f8b878;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
}
.Mobile .rappel-top::before {
    position: static;
    display: block;
    transform: none;
    margin: auto;
}
.rappel-top strong {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--black);
    display: block;
}
#rappel_immediat .form-group {
    display: flex;
}
.Mobile #rappel_immediat .form-group {
    justify-content: center;
}
#rappel_immediat .form-control {
    font-size: 12px;
    font-weight: bold;
    min-width: 200px;
    flex: 0 0 200px;
}
.btn.btn-submit {
    background: var(--colorP);
    border: 1px solid transparent;
    color: var(--white);
    font-size: 12px;
    padding: 7px 15px;
    border-radius: 3px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-left: 2px;
}
.Mobile .btn.btn-submit {
    color: #fff;
    width: 100%;
}
.btn.btn-submit:hover {
  cursor: pointer;
  background-color: var(--black);
  color: var(--white);
}
.top-tel {
    display: flex;
    align-items: center;
    max-width: 220px;
    flex: 0 0 220px;
}
.top-tel > span {
    background: var(--light);
    max-width: 50px;
    flex: 0 0 50px;
    justify-content: center;
    align-items: center;
    height: 50px;
    display: flex;
    border-radius: 7px;
}
.top-tel > div {
    margin-left: 10px;
}
.top-tel > div a {
    display: block;
    font-size: 22px;
    padding: 7px 0;
    font-weight: bold;
    color: black;
}

/*
Nav
*/
.Tablet .header,
.Mobile .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}
#sticky-wrapper {
    z-index: 99999 !important;
    position: relative;
}
.nav {
    background: var(--white);
}
.is-sticky .nav {
    box-shadow: 0px 2px 19px rgb(0 0 0 / 16%);
}
.Tablet .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}
nav.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.is-sticky .nav .container { 
  justify-content: space-between;
  transition: all .3s ease;
  align-items: center;
}
.nav .telTop { 
  display: none; 
  transition: all .3s ease;
}
.logo {
    padding: 7px 0;
}
.nav-list {
    padding-left: 0;
    list-style: none;
    margin: 0;
    display: table;
    text-align: center;
}
.nav-item {
    display: table-cell;
    padding: 0 7px;
    position: relative;
}
.nav-item > a {
    color: #333;
    display: block;
    padding: 20px 0;
    line-height: 120%;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 900;
}
.nav-item.active > a,
.nav-item:hover > a {
    color: #015e19;
    font-weight: 700;
}
.nav-submenu {
    width: 250px;
  display: none;
  position: absolute;
  list-style: none;
  padding-left: 0;
  background: white;
  z-index: 2;
}
.nav-item:hover .nav-submenu {
  display: block;
}
.nav-submenu-item {
    text-align: left;
    padding: 0 10px;
}
.nav-submenu-item > a {
    display: block;
    padding: 9px 0;
    font-size: 14px;
    line-height: 130%;
    border-bottom: 1px dashed #c0c0c0;
    color: black;
}
.nav-submenu-item:last-child > a {
    border-bottom: none;
}
.nav-submenu-item:hover > a,
.nav-submenu-item.active > a {
    color: #999;
}
.nav-mobile {
  display: none;
  cursor: pointer;
  background: var(--colorP) url(../images/nav.svg) no-repeat center center;
  background-size: 18px;
  height: 50px;
  width: 50px;
}
.Tablet .nav-mobile {
  margin-left: 5rem;
}
.nav-click {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  border-left: 1px solid #ffffff;
  height: 56px;
  width: 50px;
  cursor: pointer;
  z-index: 100;
}

.nav-click i {
  display: block;
  height: 48px;
  width: 48px;
  background: url(../images/drop.svg) no-repeat center center;
  background-size: 20px;
}

.nav-rotate {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*------------------------------------*\
    Media Queries
\*------------------------------------*/
@media only screen and (max-width: 991px) {
  .nav-mobile {
    display: block;
  }
  .nav {
    position: relative;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
  }

  .nav-item {
    padding: 0;
    display: block;
    background: var(--white);
  }

  .nav-item > a {
    padding: 15px;
    text-align: left;
    padding-right: 3rem;
  }

  .nav-click {
    display: block;
  }

  .nav-mobile-open {
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
  }

  .nav-item:hover .nav-submenu {
    display: none;
  }

  .nav-submenu {
    position: static;
    width: 100%;
  }
}
.Mobile-tel {
    text-align: center;
    display: flex;
    margin-top: 5px;
    justify-content: center;
}
.Tablet .Mobile-tel {
  display: flex;
  justify-content: center;
}
.Mobile-tel a {
    background-color: var(--light);
    color: #050505;
    display: block;
    padding: 11px 20px;
    margin: 0 5px;
    border-radius: 25px;
}
 
/*
Homeslider
*/ 
.homeslider {
    position: relative;
    height: 700px;
    overflow: hidden;
}
/*.Mobile .homeslider { 
    height: 500px;
    overflow: hidden;
}*/
.imgSlide {
    background-color: black;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    position: relative;
}
/*.Mobile .imgSlide {
    height: 500px;
}*/
#PageInterne,
#PageInterne .imgSlide {
    height: 450px;
}
.Mobile #PageInterne,
.Mobile #PageInterne .imgSlide {
    height: 700px;
}
.imgSlide::before {
    content: "";
    background: black;
    position: absolute;
    opacity: .4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.imgFull .slick-arrow {
    cursor: pointer;
    background: var(--white);
    width: 60px;
    height: 60px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease;
    opacity: .5;
    border: 0;
    text-indent: -9999px;
}
.imgFull .slick-arrow::after {
    content: "";
    background-image: url(../images/img/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    width: 30px;
    height: 30px;
}
.imgFull .slick-arrow:hover {
    opacity: 1;
}
.imgFull .slick-prev {
    left: 6%;
    transform: translateX(-50%);
}
.imgFull .slick-next {
    right: 3%;
    transform: translateX(-50%);
}
.imgFull .slick-prev::after {
    transform: rotate(-180deg);
    margin-right: 7px;
}
.captionSlide {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.Mobile .captionSlide {
    top: 60%;
}
span.Subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    line-height: 130%;
    margin-bottom: 0.5rem;
    color: #fff;
}
p.titre_ {
    line-height: 130%;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #dfff00;
}
.text_slider ul {
    list-style: none;
    background: rgb(0 0 0 / 65%);
    padding: 20px;
    display: inline-block;
    margin: 0;
    color: white;
    font-size: 18px;
    line-height: 150%;
}
.text_slider span {
    display: block;
    font-size: 24px;
    color: #a9ba2d;
    margin: 1rem 0 2rem;
    font-weight: bold;
    text-shadow: 0 0 8px #000000;
}
.btn {
    margin-right: 20px;
    border: 1px solid transparent;
    padding: 10px 35px;
    border-radius: 7px;
    font-weight: bold;
    transition: all .3s ease;
}
.btn:hover {
    background: none;
}
.box_btn {
    margin-top: 1rem;
}

.box_btn a {
    display: inline-block;
}

.btn-contact {
    background: var(--light);
    color: var(--black);
}
.btn-contact:hover {
    border-color: var(--light);
    color: var(--white);
}
.btn-devis {
    background: var(--colorP);
    color: var(--black);
    width: 100%;
}
.btn-devis:hover {
    border-color: var(--black);
    color: var(--black);
}
.Mobile .captionSlide .btn {
    display: block;
    text-align: center;
    margin: 15px 0;
}

/*
Contenu
*/
.Desktop .col-reverse {
    flex-direction: row-reverse;
}
.block1 {
    padding: 60px 0;
}
.blockInt {
  background-repeat: no-repeat;
  background-position: right top, left top 30%, bottom left 80%;
}
.block1 .row {
    align-items: center;
}
.textContenu h1::after,
.textContenu h2::after {
    content: "";
    display: block;
    margin: 1.2rem 0 2rem;
    width: 40px;
    border-bottom: 3px solid #000;
}
.textContenu {
  color: var(--black);
}

.block2 {
    background-color: var(--light);
    padding: 60px 0;
}
.block3 {
    padding: 60px 0;
}
.contenu h3 {
    color: #000;
}
.texte2_ > div:last-child,
.text3_:last-child {
  border-top: 1px solid #000;
    padding-top: 2rem;
    margin-top: 2rem;
}
.block4 {
    background-color: var(--colorP);
    padding: 60px 0;
}
.block4 h3 {
    background: var(--white);
    display: inline-block;
    padding: 5px 15px;
    color: var(--black);
}
.block4 {
    color: var(--black);
}
.block4 h2 {
    border-left: 5px solid var(--white);
    padding-left: 1rem;
    color: var(--black);
}
.block4 ul {
    list-style: none;
    padding-left: 0;
    color: var(--black);
}
.Tablet .block4 ul,
.Desktop .block4 ul {
    display: flex;
}
.block4 ul li {
    padding-right: 45px;
    font-size: 18px;
}
.Desktop .right_content {
    padding-left: 5rem;
    margin-top: -14rem;
}
.Devisgratuit-h3 {
    font-weight: bold;
    color: var(--black);
    font-size: 20px;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.Devisgratuit-h3 span {
    display: flex;
    margin: 0 auto 1rem;
    width: 90px;
    height: 90px;
    background-color: #dfff00;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}
.Devisgratuit-h3 span img {
  filter: invert(1);
}
.Devis_gratuitBlock {
    background-color: var(--white);
    padding: 40px;
    box-shadow: 0 0 16px 0px rgb(0 0 0 / 20%);
}
.captionSlide .Devis_gratuitBlock {
  padding: 20px;
}
.Tablet .Devis_gratuitBlock {
    padding: 20px;
    margin-left: 0;
}
.Devis_gratuitBlock .form-control {
    padding: 10px 15px;
    height: auto;
    margin-bottom: 10px;
    font-size: 14px;
}
.captionSlide .Devis_gratuitBlock .form-control {
    padding: 5px 15px;
    font-size: 12px;
}
.Devis_gratuitBlock textarea.form-control {
    height: 100px;
    max-height: 125px;
}
.captionSlide .Devis_gratuitBlock textarea.form-control {
    height: 90px;
    max-height: 100px;
}
.Devis_gratuitBlock .form-control:focus {
    border-color: var(--colorS);
    outline: none;
    box-shadow: none;
}
.Desktop .right_content .imgContenu {
    margin-top: 2rem;
}
.texte4_ {
    background-color: var(--light);
    padding: 10px 25px;
    border-radius: 7px;
    margin-top: 3rem;
}
.lastBlock .texte4_ {
    background-color: rgb(255 255 255 / 74%);
}
.texte4_ h2::after {
    display: block;
    content: "";
    margin: 1rem 0;
    border-bottom: 2px solid var(--white);
    width: 35px;
}
.lastBlock .texte4_ h2::after {
  border-bottom-color: #000;
}
.texte3_ .row {
    margin-top: 15px;
    margin-bottom: 15px;
}
.bulle_contact {
    background: var(--colorS);
    position: relative;
    z-index: 10000;
    color: var(--black);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px #fff;
    border-radius: 50%;
    padding: 5px;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: _or 1s ease-in-out infinite alternate;
}
.bulle_contact > div {
    text-align: center;
    padding: 17px;
    font-weight: bold;
    line-height: 130%;
}
.bulle_contact span {
    text-decoration: underline;
}
@keyframes _or {
    to {
        transform: scale(1.08)
    }
}
.infos_site .form-control {
    margin: 8px 0;
    font-size: 14px;
    padding: 7px 15px;
    height: auto;
}
.infos_site .form-control:focus {
    border-color: var(--light);
}
.Devisgratuit {
    padding: 15px;
    background: #ddd;
}
.Mobile .Devisgratuit {
    padding: 15px;
    background: #ddd;
}
.Mobile .Devisgratuit #FormDevis .form-control {
    margin: 7px 0;
}
.lastBlock {
    padding: 60px 0;
    background-color: #ddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/*
Contact popup
*/
.popupContact {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    z-index: 9999;
}
.slide_in {
    font-size: 16px;
    background: var(--white);
    z-index: 9999;
    -webkit-box-shadow: 0px 0px 15px #0000005c;
    box-shadow: 0px 0px 15px #0000005c;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
    border: 8px solid #fff;
    width: 400px;
    position: absolute;
    bottom: 5rem;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
}
.slide_in.open-form {
    opacity: 1;
    visibility: visible;
}
.head_slidine {
    position: absolute;
    top: 12px;
    right: 15px;
    color: #fff;
    border: 2px solid;
    padding: 3px 9px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
}
.titleslide {
    font-size: 28px;
    color: var(--black);
    font-weight: 700;
}
.p_slidein {
    margin-top: 7px;
    color: var(--black);
}
hr.sep_slide {
    width: 25%;
    height: 2px;
    background-color: #f8b878;
    border: none;
    margin-left: 0px;
}
.infos_site {
    margin-top: 25px;
}
.flex-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.content-info,
.content-info a {
    color: var(--black);
}
.content-info em {
    margin: 0 7px;
}
.butcontact_slide {
    padding: 12px 10px 14px;
    position: relative;
    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;
    background: var(--colorP);
    color: var(--white);
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 30px;
}
.flex-info span:first-child {
    max-width: 35px;
    flex: 0 0 35px;
    margin-right: 7px;
    text-align: center;
}
.ContactezNous #FormDevis .form-control {
    margin: 5px 0;
}

/*
Contact
*/
.Devisgratuit_page,
#realisations,
.temoin,
#mentionsl {
    padding: 150px 0 60px 0;
    background-color: #f7f7f7;
}
.ContactezNous {
   padding: 60px 0;
}
.Mobile .Devisgratuit_page,
.Mobile #realisations,
.Mobile .temoin,
.Mobile #mentionsl,
.Mobile .ContactezNous {
    padding-top: 9rem;
}
.ContactezNous b {
    display: block;
    margin-top: 1rem;
    color: var(--black);
    font-size: 18px;
}
.ContactezNous .Devisgratuit {
    margin-top: 1rem;
}
.ContactezNous em {
    margin: 0 15px;
}
.ContactezNous #Map {
    min-height: 300px;
    height: 100%;
}
.devis-item .form-control,
.ContactezNous select.form-control {
    margin: 9px 0 !important;
}
.Tablet .inline-b,
.Desktop .inline-b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 7px;
}
.bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.imgContenu img{
    border-radius: 20px;
}
.intro {
    background: var(--colorP);
}
.intro h1::after {
    content: "";
    display: block;
    margin: 1.2rem 0 2rem;
    width: 40px;
    border-bottom: 3px solid;
}
.devis-item {
    max-width: 500px;
    margin: auto;
}
.devis-item h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}
.devis-item .btn {
    display: block;
    width: 250px;
    margin: auto;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/*
Avis
*/
#temoignages {
    padding: 100px 0;
}
b.titreAvis {
    display: block;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}
b.titreAvis::after {
    content: "";
    display: block;
    margin: 1.2rem auto; 2rem;
    width: 40px;
    border-bottom: 3px solid;
}
.block-avis {
    max-width: 500px;
    margin: 0 0 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 7px;
    text-align: center;
    color: var(--black);
}
.btn.btn-temoin {
    border: 1px solid transparent;
    background: #f8b878;
    padding: 7px 15px;
    display: inline-block;
    margin-top: 5px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 7px;
    font-weight: bold;
    transition: all .3s ease;
}
.btn.btn-temoin:hover {
    background: var(--colorP);
    color: #333;
}

.temoin {
    background: #e7e7e7;
    color: var(--black);
    padding: 80px 0;
}
.Mobile .temoin {
    padding-top: 8rem;
}
.Desktop .temoin .grid-row {
    display: grid;
    grid-template-columns: 60% auto;
    grid-gap: 20px;
}
.col-right {
    border: 3px solid #0f4f62;
    padding: 20px;
}
.Desktop .col-right {
    margin-left: 1rem;
}
.temoin .item-tem {
    border-bottom: 1px solid rgb(98 98 98 / 20%);
    padding-bottom: 15px;
    margin-bottom: 1rem;
}
h1.Titrecontenu {
    font-size: 36px;
    margin-bottom: 2rem;
}
.Mobile h1.Titrecontenu {
    font-size: 22px;
}
h2.Titrecontenu {
    color: #f8b878;
}
#avis_form {
    margin-top: 15px;
}

#avis_form label {
  display: block;
  margin-bottom: 8px
}

#avis_form .form-control {
  margin: 0 0 15px 0;
  width: 100%
}
#MonAvis span {
  font-size: 18px;
  color: v#1faed8;
  display: block;
}
.item-tem .avis {
  display:inline-block;
  vertical-align: top;
}

.avis a {
  width:10%;
  float:left;
  height:100%;

}
.avis > i {
  background: url('../images/img/rating-sprit.webp') no-repeat;
  display: inline-block;
  height: 23px;
  width: 120px;
  margin-right: 15px;
}
.avis-0 {
  background-position: 0 0 !important;
}
.avis-1 {
  background-position: 0 -25px !important;
}
.avis-2 {
  background-position: 0 -50px !important;
}
.avis-3 {
  background-position: 0 -75px !important;
}
.avis-4 {
  background-position: 0 -100px !important;
}
.avis-5 {
  background-position: 0 -125px !important;
}
.avis-6 {
  background-position: 0 -150px !important;
}
.avis-7 {
  background-position: 0 -175px !important;
}
.avis-8 {
  background-position: 0 -200px !important;
}
.avis-9 {
  background-position: 0 -225px !important;
}
.avis-10 {
  background-position: 0 -250px !important;
}

/*
Footer
*/
.footer {
    background-color: #333;
    padding: 80px 0;
    color: var(--white);
}
.link_footer .h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--light);
}
ul.nav-link_footer {
    list-style: none;
    padding-left: 0;
}
ul.nav-link_footer li {
    margin-bottom: 1rem;
}
ul.nav-link_footer li > a {
    display: block;
    transition: all .3s ease;
}
ul.nav-link_footer li:hover > a {
    padding-left: 7px;
}
.coordonnees .flex-info {
    margin: 1.5rem 0;
}
.coordonnees span, .coordonnees a {
    color: var(--white);
}
.coordonnees span img {
    filter: invert(1);
}
 
.link_footer #Map {
    height: 250px;
}
.copyright {
    padding-top: 2rem;
    border-top: 1px solid #484848;
    margin-top: 3rem;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}
.copyright a {
    font-weight: bold;
    text-decoration: underline;
    color: var(--light);
}
/*
Page 404
*/
/**
404
*/
.blog_pageIntrouvable {
    background: var(--light);
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 200000 !important;
    text-align: center;
    top: 0;
}
.blog_pageIntrouvable .d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.blog_pageIntrouvable span {
  color: var(--black);
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: var(--black);
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--black);
}
.blog_pageIntrouvable a {
    color: var(--black);
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
@media(max-width: 767px) {
  .blog_pageIntrouvable {
    font-size: 14px;
  }
  .blog_pageIntrouvable a {
      display: block;
  }
  .blog_pageIntrouvable p {
      font-size: 17px;
      letter-spacing: 5px;
      margin-top: -10px;
  }
  .blog_pageIntrouvable h1 {
    font-size: 100px;
  }
}
.swipebox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid #ddd;
}
.Mobile .swipebox {
    height: inherit;
}

.Mobile #swipebox-close {
    right: 35%;
    width: 30px;
    height: 30px;
    background-position: 5px 2px;
    transform: translateX(-50%);
}

a.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
b.titre-album {
    width: 100%;
    font-size: 36px;
    color: #000;
    font-weight: bold;
    display: block;
    margin: 15px;
    text-align: center;
    text-transform: uppercase;
}

div#Messages {
    text-align: center;
    background-color: #000;    
    padding: 10px;
    width: 100%;
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
}

div#Messages p {
    margin: 0;
    color: #fff;     
    font-size: 20px;
}
.Tablet div#Messages p,
.Mobile div#Messages p {
    font-size:14px;
}

span.content-info a {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.bulle_contact img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: invert(1);
}

.contact-content {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
}
.Mobile .contact-content {
    display: block;
    margin-top: 0;
    padding: 20px 0; 
}
.Mobile .adr-map {
    padding: 80px 0 20px 0;
}
.Tablet .contact-content {
  padding: 100px 0 20px 0; 
}
.coordonne_cont img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.coordonne_cont {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.ContactezNous b {
    font-size: 20px;
}
.ContactezNous-h1 {
    color: #333333;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Calibri;
    font-size: 32px;
}
.adr-map {
    padding: 0 40px;
}
.coordonne_cont a {
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.ContactezNous {
    text-align: center;
}
.devis .Devisgratuit-h3 {
    font-size: 32px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
}
.Mobile.devis .Devisgratuit-h3 {
    font-size: 24px;
}
.devis .Devisgratuit {
    width: 80%; 
    margin: 50px auto 30px;
    text-align: center;
}
body.Desktop.devis .btn-submit {
    max-width: 48%;
    margin: auto;
}
body.Mobile.devis .Devisgratuit {
    display: block; 
    width: 100%;
    padding: 175px 0 0;
    margin-top: 0;
}
.Tablet.devis .Devisgratuit {
  margin-top: 225px;
}


body.Mobile.devis div#devisGratuit {
    display: none;
}

a.btn.btn-cont {
    background: rgba(255, 255, 255, .3);
    color: #000;
    border-radius: 0; 
    margin-top: 20px;
    text-transform: uppercase;
    border: solid 1px#fff;
    font-weight: 600;
    padding: 10px 15px;
    font-size: 14px;
}
.boutton-slider {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px;
}
.Mobile .boutton-slider { 
    justify-content: center; 
}
.contact .ContactezNous #FormDevis {
    display: block!important;
}
.contact-content div#Map {
    height: 450px;
    width: 100%;
}
.Mobile .contact-content div#Map {
    height: 300px;
    width: 100%;
}
.ContactezNous svg, .ContactezNous img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 5px;
}

.form-input {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 17px;
    margin: 10px 0;
}

input.btn.btn-submit {
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


 
.Tablet .corps > .row > div {
  max-width: 100%;
  flex: 0 0 100%;
}
.Tablet .competences > .row > div {
  max-width: 25%;
  flex: 0 0 25%;
}
.Tablet .mainright .Devisgratuit {
  display: none;
}
.Tablet .ImgLeft {
  display: none;
}
.Mobile .twoBox img {
    width: 100%;
    height: 185px;
    object-fit: cover;
}

.Mobile #rappel_immediat .form-group .btn-submit {
    font-size: 14px;
}

.Mobile #rappel_immediat .form-control {
    height: 40px;
}

.Mobile .imgFull .slick-arrow {
  display: none !important;
}

a.logo img {
    width: 122px;
    height: 99px;
    object-fit: contain;
}

.Mobile a.logo img {
    width: 95px;
    height: 75px;
    object-fit: contain;
}

.Mobile .imgContenu img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 30px;
}

.Tablet .imgContenu img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 30px;
}

body.Mobile {
    overflow-x: hidden;
}