
/* 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 {
  font-family: sans-serif;
  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 : #020203;
  --white : white;
  --black : #202020;
  --light : #fff2c2;
  --colorP : #077112;
  --colorS  : #ffeb3b;
}
body {
    margin: 0;
    font-family: "Calibri", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    background-color: var(--white);
    color: var(--body);
    -webkit-font-smoothing: antialiased;
}

[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-weight: 600;
  line-height: 1.2;
  color: inherit;
}
h1 {
    font-size: 30px;
}
h2, .h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--colorP);
}
h3, .h3 {
    font-size: 22px;
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  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;
}

.btn:hover, .btn:focus {
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  background-image: none;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.container {
  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: 1200px;
    }
}

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

.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%;
  }
}
.form-control {
  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;
  font-family: inherit;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@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 {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  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;
}

#mail,
#mail2 {
	display: none;
}
/*
Header
*/
@media (min-width: 1200px) {
  .nav > .container {
      max-width: 1400px;
  }
}
.header .flex-block {
  justify-content: space-between;
  align-items: center;
}
.rappel-top {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 0;
}
.Mobile .rappel-top {
  display: block;
    text-align: center;
}
.rappel-top strong {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--white);
    letter-spacing: 1px;
    display: block;
}
.Desktop .rappel-top strong {
    margin-right: 7px;
}
#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(--colorS);
    border: 1px solid transparent;
    color: var(--black);
    font-size: 12px;
    padding: 7px 15px;
    border-radius: 3px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-left: 2px;
}
#rappel_immediat .btn.btn-submit {
    font-size: 10px;
    font-weight: normal;
}

/*
Nav
*/
.header {
    background-color: var(--colorP);
}
.Tablet .header,
.Mobile .header {
    background-color: var(--colorP);
}
.header .flex-block {
  margin-left: 13px;
    font-size: 14px;
    color: var(--white);
}
.rightTop > a {
    margin-left: 25px;
}
.telTop {
    display: flex;
}
.telTop,
.rightTop a {
    color: var(--white);
}
.rightTop a.btn-tarif {
  background: var(--black);
    color: var(--body);
    padding: 7px 15px;
    border: 1px solid transparent;
}
.rightTop a.btn-tarif:hover {
  background: none;
    color: var(--black);
    border-color: var(--black);
}
.Tablet .telTop,
.Mobile .telTop {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Tablet .telTop {
    justify-content: space-between;
    padding: 0 15px;
}
.telTop span {
    margin-right: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.Tablet .telTop a, 
.Mobile .telTop a {
    margin: 5px 7px;
    font-size: 16px;
    background-color: var(--light);
    color: #000000;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.Tablet .header,
.Mobile .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
#sticky-wrapper {
    z-index: 999 !important;
    background-color: var(--white);
    position: relative;
    width: 100%;
}
.Mobile .btn-compte {
    color: var(--white);
    font-size: 30px;
}
.logo img {
    min-width: 220px;
    width: 250px;
    height: 95px;
    object-fit: contain;
}
.Mobile .logo img {
  width: 190px;
}
.nav {
    background: var(--white);
    box-shadow: 0px 1px 15px rgb(0 0 0 / 28%);
}
nav.nav .container {
    display: flex;
    align-items: center;
}
.Tablet nav.nav .container,
.Mobile nav.nav .container {
    justify-content: space-between;
}
.is-sticky .nav .container { 
  justify-content: space-between;
  transition: all .3s ease;
  align-items: center;
}

.nav-list {
    padding-left: 50px;
    list-style: none;
    margin: 0;
    display: table;
    text-align: center;
}
.nav-item {
    display: table-cell;
    padding: 0 15px;
    position: relative;
}
.nav-item > a {
    color: var(--black);
    display: block;
    padding: 20px 0;
    line-height: 130%;
    position: relative;
    text-transform: uppercase;
}
.topNav .nav-item > a {
    color: var(--light);
    font-size: 14px;
    text-transform: uppercase;
}
.Desktop .nav-item > a::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    background-color: var(--colorP);
    bottom: 0;
    left: 50%;
    transition: all .3s linear;
    transform: translateX(-50%);
}
.Desktop .nav-item:hover > a::after,
.Desktop .nav-item.active > a::after {
    width: 50px;
}
.nav-submenu {
  display: none;
  position: absolute;
  list-style: none;
  padding-left: 0;
  background: white;
  z-index: 2;
}
.Desktop .nav-submenu {
  width: max-content;
}
.nav-item:hover .nav-submenu {
  display: block;
}
.nav-submenu-item {
    text-align: left;
    padding: 0 10px;
}
.nav-submenu-item > a {
    display: block;
    padding: 10px 0;
    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: var(--colorP);
}
.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 .nav-list {
    display: none;
    background-color: var(--colorS);
        position: absolute;
        top: 100%;
        padding-left: 0;
        left: 0;
        width: 100%;
  }
  .nav-item {
    display: block;
    padding: 0;
    text-align: left;
  }
  .nav-item > a {
    padding: 15px;
  }
  .nav-item.active > a {
    background-color: var(--colorP);
    color: var(--white);
  }
  .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%;
    display: block;
  }
}
.Mobile-tel {
    background: var(--light);
    text-align: center;
}
.Tablet .Mobile-tel {
  display: flex;
  justify-content: center;
}
.Mobile-tel a {
  color: #050505;
  display: inline-block;
  padding: 11px 0;
  margin: 0 15px;
}
.MobileDevis {
    padding: 20px;
}
.MobileDevis .rappel-top strong {
    color: var(--black);
}

/*
Homeslider
*/
.homeslider {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.Tablet .homeslider::before,
.Desktop .homeslider::before {
  background: rgb(255,255,255);
  background: linear-gradient(109deg, rgba(255, 255, 255, 0) 54%, rgb(255 235 60 / 89%) 54%);
    position: absolute;
    content: "";
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.Tablet .homeslider::before {
  background: linear-gradient(101deg, rgba(255, 255, 255, 0) 47%, rgb(255 235 60 / 89%) 47%);
}
.imgItem {
    height: 600px;
    background-color: #ddd;
}
.Tablet .homeslider,
.Tablet .imgItem {
    height: 80vh;
}
.Mobile .homeslider,
.Mobile .imgItem {
    height: 530px;
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.captionSlider {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}
.Tablet .captionSlider {
    top: 58%;
}
.Mobile .captionSlider {
    top: 64%;
}
.titleSlide .btnB {
    text-align: left !important;
}
.Mobile .titleSlide .btnB {
    margin-top: 1rem;
}
.titleSlide .btnB a {
    margin-right: 15px;
}
.Tablet .titleSlide .btnB a {
    margin: 13px 0;
    display: block;
    width: 80%;
}
.Mobile .titleSlide .btnB a {
    margin-right: 0;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
.titleSlide p {
    font-size: 3rem;
    color: var(--white);
    text-transform: uppercase;
    line-height: 130%;
    text-shadow: 0 0 16px black;
    margin-bottom: 0;
}

.h1-v {
    font-size: 30px;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 16px black;
    margin-bottom: 0;
    font-weight: 400;
    font-style: italic;
}
.h1-v:first-line {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 600;
    font-style: normal;
}
.Mobile .h1-v {
    font-size: 25px;
}
.Mobile .titleSlide p,
.Mobile .h1-v:first-line {
    font-size: 2rem;
}
#titreDevis {
    text-align: center;
}
#titreDevis p {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 24px;
}
span.call {
    border-radius: 100%;
    overflow: hidden;
    display: inline-block;
}
form#FormDevis {
    text-align: center;
    margin-bottom: 2rem;
}
#FormDevis .form-control {
    margin: 5px 0;
}
#FormDevis .btn.btn-submit {
    background: var(--black);
    color: var(--white);
}
textarea.form-control {
    resize: vertical;
    min-height: 95px;
    max-height: 100px;
}
.pastilles img {
    margin: 0 7px;
}
/*
Content
*/
.primaryBlock {
    background-color: var(--colorS);
}
.Desktop .primaryBlock {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 45%, rgba(255,235,59,1) 45%);
}
.Desktop .primaryBlock,
.Tablet .primaryBlock {
    margin-top: 60px;
}
.primaryBlock,
.secondBlock,
.fourBlock {
    padding: 60px 0;
    position: relative;
}
.Tablet .primaryBlock,
.Mobile .primaryBlock,
.Tablet .fourBlock,
.Mobile .fourBlock {
    padding-top: 0;
}
.Tablet .fiveBlock .bgImg,
.Desktop .bgImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 48%;
  height: 100%;
}
.Desktop .primaryBlock .bgImg {
    top: 8%;
}
.Tablet .bgImg,
.Mobile .bgImg {
    height: 250px;
}
.Desktop .fourBlock .bgImg {
  left: inherit;
  right: 0;
}
.secondBlock .txt_ {
  text-align: center;
}
.Mobile .secondBlock .txt_ {
  text-align: left;
}
.thridBlock {
  padding: 60px 0;
  background-color: var(--colorS);
}
.Mobile .thridBlock figure {
  margin: 0;
}
.Tablet .fiveBlock,
.Desktop .fiveBlock {
  position: relative;
  height: 700px;
}

.Mobile .fiveBlock {
    padding-bottom: 30px;
}
.Desktop .enlevement-de-tout-vegetaux .fiveBlock,
.Desktop .dessouchage-et-debroussaillage .fiveBlock {
  height: 750px;
}
.Tablet .fiveBlock {
    height: 850px !important;
}
.Tablet .fiveBlock .bgImg,
.Desktop .fiveBlock .bgImg {
    height: 700px;
    background-size: contain;
    width: 700px;
    margin: auto;
    bottom: -42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.lastBlock {
    padding: 60px 0;
}
.lastBlock .txt_ {
  text-align: center;
  color: var(--white);
}
.Mobile .lastBlock .txt_ {
  text-align: left;
}
.lastBlock .txt_ h2 {
  color: var(--colorS);
}
.btn-contact {
    background-color: var(--colorS);
    color: var(--black);
    transition: all .3s ease;
    width: 156px;
}
.btn-custom {
    background-color: var(--colorP);
    color: var(--white);
}
.txt_ .btn:hover,
.fiveBlock .btn:hover {
    transform: scale(1.1);
}
.txt_ .btn-contact:hover {
    color: var(--black);
}
.fiveBlock {
    background-position: right top, left top 100px, bottom left 80%;
    background-repeat: no-repeat;
}
.fiveBlock .slick-arrow {
    text-indent: -9999px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    border: 0;
    width: 60px;
    height: 60px;
    top: 50%;
    position: absolute;
    cursor: pointer;
    transform: translateY(-50%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 90;
}
.fiveBlock .slick-arrow:hover,
.fiveBlock .slick-arrow:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
    border-color: transparent;
    opacity: .5;
}


.fiveBlock .slick-prev {
    background-image: url(../images/img/arrow_left_.webp);
    left: -7rem;
}
.fiveBlock .slick-next {
    background-image: url(../images/img/arrow_right_.webp);
    right: -7rem;
}
.Mobile .fiveBlock .slick-prev {
    left: -15px;
}
.Mobile .fiveBlock .slick-next {
    right: -15px;
}
.txt_ > div {
    background-color: rgb(2 65 9 / 76%);
    padding: 40px;
    color: var(--white);
    position: relative;
    box-shadow: 0 0 20px 9px #05450c;
}

.txt_ > div h2 {
    color: var(--colorS);
}
.Tablet .txtSlide,
.Desktop .txtSlide {
    margin-top: 11rem;
}
.btnB {
    text-align: center;
    margin-top: 2rem;
}

/*
Categories
*/
.grid-cat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: hidden;
}
.Tablet .grid-cat {
    grid-template-columns: repeat(3, 1fr);
}
.Mobile .grid-cat {
    grid-template-columns: repeat(2, 1fr);
}

.item-serv > a {
    display: block;
    height: 250px;
    background-color: #ddd;
    position: relative;
}
.item-serv > a:hover {
    transform: scale(1.1);
}
.item-serv span {
    position: absolute;
    bottom: 15px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(255 242 194 / 76%);
    height: 50px;
    line-height: 120%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
}

/*
Footer
*/
.footer-infos {
    padding: 50px 0;
}
.item-footer > strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--colorP);
}
.item-footer > strong:after {
    content: "";
    display: block;
    margin: 1rem 0;
    border-bottom: 2px solid var(--colorP);
    width: 30px;
}
.item-footer ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.item-footer ul li {
    margin-bottom: .5rem;
    transition: all 0.3s ease 0s;
}
.item-footer ul li:hover {
    padding-left: 5px;
}
.item-footer ul li a {
    display: block;
    position: relative;
    padding-left: 15px;
    opacity: .7;
}
.Mobile .item-footer ul li a {
    margin-bottom: 10px;
}
.item-footer ul li:hover a {
    opacity: 1;
}
.item-footer ul li a:before {
    content: "";
    background-image: url(../images/img/arrow_right_.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    width: 9px;
    height: 9px;
    top: 50%;
    transform: translateY(-50%);
}
.coordonnes > div {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
    gap: 5px;
}
.mail_ a:hover {
    text-decoration: underline;
}
.copyright {
    padding: 40px 0 35px;
    border-top: 1px solid #13046a;
    text-align: center;
    background: transparent;
}
.copyright > span {
    margin-right: 15px;
}
.Mobile .copyright > span {
    margin-right: 0;
    display: block;
}
.copyright a {
    color: var(--colorP);
    font-weight: bold;
    text-decoration: underline;
} 

/**
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%);
}

b.titre-album {
    display: block;    
    color: #000;    
    font-size: 1.5rem;    
    margin-bottom: 1.5rem;
}
#Messages {
    background: var(--colorS);
    text-align: center;
    position: relative;
    z-index: 99;
}
#Messages p {
    color: var(--black);
    font-weight: bold;
    margin: 0;
    padding: 25px 0;
}
.devis .Devisgratuit,
.mentionsL,
.ContactezNous {
  background-color: var(--light);
    padding: 60px 0;
}
.ContactezNous b {
    margin-right: 10px;
}
.mail_ {
    margin: 10px 0;
}
.ContactezNous a {
    display: inline-block;
    margin-right: 10px;
    color: inherit;
}
.ContactezNous .h1 {
  font-size: 32px;
}
.Mobile .ContactezNous .h1 {
  font-size: 24px;
}
.Mobile .ContactezNous a {
    display: block;
}
.ContactezNous #FormDevis {
    display: block;
    padding: 20px 0 0;
}
.Desktop .ContactezNous #FormDevis {
    max-width: 75%;
    margin: auto;
}
div#contenu-home,
.ContactezNous {
    padding: 40px 20px;
    color: #333;
}
.Desktop .ContactezNous {
    text-align: center;
}

.secondBlock .txt_ ,
.lastBlock .txt_ p {
    text-align: left;
}
.row-footer {
    display: grid;
    grid-template-columns: 24% 27% 25% 25%;
    justify-content: center;
}
.Mobile .row-footer {
    grid-template-columns: 100%;
    gap: 30px;
}
.coordonnes img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(1);
}
.telTop img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.Mobile .telTop img,
.Tablet .telTop img {
  filter: invert(1);
}
.logo-footer {
    padding-right: 20px;
}
.Mobile .header .flex-block,
.Tablet .header .flex-block {
    justify-content: center;
}
.mentions ol,
.mentions ul {
    padding: 15px;
}
.thridBlock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}