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

i.icon{
    position: relative;
    padding: 12px;
}
.icon:before {
    content: "";    
    background-repeat: no-repeat;
    background-size: contain!important;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.icon-phone:before {
    background: url(../images/img/fixe.png);
}
.icon-mobile:before {
    background: url(../images/img/portable.png);
}
.icon-email:before {
  background: url(../images/img/mail.png);
}
.icon-location:before {
  background: url(../images/img/locali.png);
}
.icon-done:before {
  background: url(../images/img/check.png);
}
.icon-arrow_forward:before {
  background: url(../images/img/fleche.png);
}

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

/*
Dots Arrows
*/
.main-slider .slick-dots {
    position: absolute;
    right: 5%;
    top: 56%;
    transform: translateY(-50%);
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.main-slider .slick-dots li {
    line-height: 100%;
}
.main-slider .slick-dots li button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--white);
    opacity: 1;
    background-color: transparent;
    margin-left: 0;
    margin-right: 0;
    padding: 6px 6px;
    text-indent: -9999px;
    line-height: 100%;
    cursor: pointer;
}
.main-slider .slick-dots li.slick-active button {
    background-color: var(--white);
    opacity: 1;
}
.main-slider .slick-dots li button:focus {
    outline: 0;
    box-shadow: none;
}

/*
Anim Slider
*/
.slide .CaptionSlider .animated {
  transition: all 0.5s ease;
}
.slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
}
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}
@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
}

.devisBulle {
    position: absolute;
    right: -6rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}
.Tablet .devisBulle,
.Mobile .devisBulle {
    position: fixed;
    top: 80%;
    right: 1rem;
}
.devisBulle a {
    display: block;
    /*background: var(--colorP);
    display: flex;
    color: white;
    border: 1px solid transparent;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    box-shadow: inset 0 0 0 8px #ececec;
    font-size: 1.5rem;*/
    cursor: pointer;
    /*align-items: center;
    padding: 15px;
    text-align: center;*/
    animation: _or 1s ease-in-out infinite alternate;
}
.Tablet .devisBulle img  {
    width: 150px;
}
.Mobile .devisBulle img {
    width: 120px;
}
@keyframes _or {
    to {
        transform: scale(1.08)
    }
}


*,
*::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;
}

body {
  margin: 0;
  font-family: 'Calibri', sans-serif;
  text-align: left;
  background-color: var(--white);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #555659;
  -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

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

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

h1, h2, h3, h4, h5, h6, .h3, .h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

a {
    color: #555659;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

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;
}

h1,h2,h3,h4,h5 {
    font-weight: bold;
    color: #212121;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
b,
strong {
  font-weight: bolder;
}
figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}


button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.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: var(--white);
  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;
}

@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: var(--white);
  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;
}

:root {
  --white : white;
  --black : black;
  --darkB : #4d1f14;
  --colorP : #4d1f14;
  --colorS  : #8e2f35;
  --colorT  : #d6796c;
}

#mail,
#mail2 { display: none; }

/*
Header
*/
.header {
    position: absolute;
    width: 100%;
    z-index: 1;
}
.contact .header,
.devis .header,
.mentions .header,
.article .header,
.temoignages .header,
.realisations .header {
    background-color: var(--darkB);
    padding-bottom: 30px;
    padding-top: 30px;
    position: static;
}

/*
sticky
*/
.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: var(--white);
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}


a.logo {
    padding: 10px;
}
.nav {
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*-ms-flex-wrap: wrap;
    flex-wrap: wrap;*/
    border-radius: 10px;
    margin-top: 2rem;
}
.contact .header .nav,
.devis .header .nav,
.mentions .header .nav,
.article .header .nav,
.temoignages .header .nav,
.realisations .header .nav {
    margin-top: 0;
}

.infos-top {
    background-color: var(--colorP);
    padding: 7px 15px;
    color: var(--white);
    font-size: 14px;
}
.infos-top .d-flex > div,
.block-contact > div {
    display: flex;
    align-items: center;
}
.infos-top .d-flex > div .icon,
.block-contact > div .icon {
    color: var(--colorT);
    margin-right: 5px;
    font-size: 16px;
}
.infos-top a,
.block-contact > div a {
    color: var(--white);
}
.infos-top a:hover,
.block-contact > div a:hover {
    color: var(--colorT);
}
.adr-top {
    margin: 0 18px;
}
.rightBlock {
    position: relative;
}
.Tablet .rightBlock,
.Mobile .rightBlock {
    padding-right: 15px;
}
.Tablet .mobileTel {
    display: flex;
}
.mobileTel a {
    display: block;
    background: var(--colorP);
    margin: 7px 0;
    color: var(--white);
    padding: 3px 15px;
    text-align: center;
    border-radius: 25px;
    font-size: 14px;
}
.Tablet .mobileTel a:last-child {
    margin-left: 15px;
}
.nav-list {
    display: table;
    margin-bottom: 0;
    margin-top: 5px;
}
.stricky-header .nav-list {
    padding-left: 0;
    margin: 0;
}
.Desktop .nav-list {
    padding-right: 6rem;
}
.Desktop .stricky-header.stricky-fixed .nav-list {
    padding-right: 0;
}
.nav-item {
    display: table-cell;
}
.nav-item a {
    display: block;
    line-height: 130%;
    text-align: center;
    padding: 15px 10px;
    transition: all .3s ease;
}
.nav-item a::before {
  content: "";
  display: none;
  margin: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 50px;
  height: 50px;
  opacity: .7;
}
.stricky-fixed .nav-item a {
    padding-left: 25px;
    padding-right: 25px;
}
.stricky-fixed .nav-item a span {
    display: none;
}
.stricky-fixed .nav-item a::before {
  display: block;
  filter: invert(1);
}
.stricky-fixed .nav-item:nth-child(1) a::before {
  background-image: url(../images/p/cat-ets-dessemberg-entreprise-de-couverture-13-a-vitrolles.webp);
}
.stricky-fixed .nav-item:nth-child(2) a::before {
  background-image: url(../images/p/cat-ets-dessemberg-etancheite-couverture-13.webp);
}
.stricky-fixed .nav-item:nth-child(3) a::before {
  background-image: url(../images/p/cat-ets-dessemberg-entreprise-de-ramonage-13.webp);
}
.stricky-fixed .nav-item:nth-child(4) a::before {
  background-image: url(../images/p/cat-ets-dessemberg-changement-et-pose-de-gouttiere-13.webp);
}
.stricky-fixed .nav-item:nth-child(5) a::before {
  background-image: url(../images/p/cat-ets-dessemberg-recherche-de-fuite-toiture-13.webp);
}
.stricky-fixed .nav-item:nth-child(6) a::before {
  background-image: url(../images/p/cat-ets-dessemberg-couvreur-zingueur-13.webp);
}
.stricky-fixed .nav-item:nth-child(7) a::before {
  background-image: url(../images/p/cat-ets-dessemberg-demoussage-de-toiture-13.webp);
}
.stricky-fixed .nav-item:hover a::before,
.stricky-fixed .nav-item.active a::before {
  opacity: 1;
}
.Desktop .nav-item:hover > a,
.Desktop .nav-item.active > a {
    color: var(--darkB);
}


.rightBlock .mobile-nav__toggler {
  cursor: pointer;
  background: url(../images/menu.svg) no-repeat center center;
  height: 35px;
  width: 50px;
  margin: auto;
}
.Tablet .rightBlock .mobile-nav__toggler {
    margin: 0 0 0 auto;
}
.nav-click {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  border-left: 1px solid #8B2870;
  height: 49px;
  width: 50px;
  cursor: pointer;
}

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

.nav-click:hover {
  background-color: #d6796c;
}

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

@media only screen and (min-width: 320px) and (max-width: 991px) {
    .nav {
        justify-content: space-between;
        align-items: center;
    }
    .nav-list {
        /*display: none;*/
        padding-left: 0;
        margin: 0;
    }
    .nav-item > a {
        color: var(--white);
        text-align: left;
    }
    .nav-item {
        display: block;
        position: relative;
    }
    .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%;
    }
}

/*
Menu mobile
*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 300ms ease 300ms, -webkit-transform 300ms ease 300ms;
    transition: visibility 300ms ease 300ms, -webkit-transform 300ms ease 300ms;
    transition: transform 300ms ease 300ms, visibility 300ms ease 300ms;
    transition: transform 300ms ease 300ms, visibility 300ms ease 300ms, -webkit-transform 300ms ease 300ms;
    visibility: hidden;
}
.mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 300ms ease 0ms, -webkit-transform 300ms ease 0ms;
    transition: visibility 300ms ease 0ms, -webkit-transform 300ms ease 0ms;
    transition: transform 300ms ease 0ms, visibility 300ms ease 0ms;
    transition: transform 300ms ease 0ms, visibility 300ms ease 0ms, -webkit-transform 300ms ease 0ms;
}
.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}
.mobile-nav__content {
    width: 300px;
    background-color: var(--darkB);
    z-index: 99999;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 300ms ease 0ms, visibility 300ms ease 0ms, -webkit-transform 300ms ease 0ms;
    transition: opacity 300ms ease 0ms, visibility 300ms ease 0ms, -webkit-transform 300ms ease 0ms;
    transition: opacity 300ms ease 0ms, visibility 300ms ease 0ms, transform 300ms ease 0ms;
    transition: opacity 300ms ease 0ms, visibility 300ms ease 0ms, transform 300ms ease 0ms, -webkit-transform 300ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 300ms ease 300ms, visibility 300ms ease 300ms, -webkit-transform 300ms ease 300ms;
    transition: opacity 300ms ease 300ms, visibility 300ms ease 300ms, -webkit-transform 300ms ease 300ms;
    transition: opacity 300ms ease 300ms, visibility 300ms ease 300ms, transform 300ms ease 300ms;
    transition: opacity 300ms ease 300ms, visibility 300ms ease 300ms, transform 300ms ease 300ms, -webkit-transform 300ms ease 300ms;
}
.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 20px;
    color: var(--white);
    font-weight: bold;
    cursor: pointer;
}
.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__content .main-menu__list,
.mobile-nav__contact {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
/*@media (min-width: 1200px) {
  .stricky-fixed .sticky-header__content .container {
      max-width: 1400px;
  }
}*/
.main-menu .logo,
.main-menu .tel-top { display: none; }
.stricky-fixed .main-menu .logo { display: block; }
.stricky-fixed .main-menu .logo img {
  width: 170px;
}
.stricky-fixed .main-menu .tel-top {
  display: flex;
  align-items: center;
  max-width: 165px;
  flex: 0 0 165px;
  margin-right: 2rem
}
.stricky-fixed .main-menu .tel-top > div {
    color: var(--black);
    text-align: right;
}
.stricky-fixed .main-menu .tel-top .icon {
    color: var(--colorS);
    font-size: 20px;
    margin-right: 10px;
}
.stricky-fixed .main-menu .tel-top a {
    display: block;
}
.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}
.mobile-nav__contact li {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.mobile-nav__contact li>i {
    width: 30px;
    flex: 0 0 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--colorT);
    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;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: var(--darkB);
}
.mobile-nav__contact div {
    line-height: 130%;
}
.mobile-nav__contact li a {
    color: var(--white);
    -webkit-transition: 300ms;
    transition: 300ms;
    line-height: 130%;
}

/*
Homeslider
*/
.main-slider {
    background-color: var(--darkB);
    position: relative;
}
.slide_ {
    position: relative;
    height: 100vh;
}
.image-layer {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}
@media(min-width: 1800px) {
    .slide_ {
        height: 840px;
    }
}
.Mobile .slide_ {
    height: 85vh;
}
.image-layer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(5 14 25 / 70%);
}
.bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.slide_ .container {
    height: 100%;
    display: table;
    position: relative;
}
.index .CaptionSlider {
    display: table-cell;
    vertical-align: middle;
    padding-top: 10rem;
}
.bannerPage {
    height: 400px;
    background-color: var(--darkB);
}
.bannerPage .CaptionSlider {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 100%;
}
@media(min-width: 1800px) {
  .bannerPage .CaptionSlider {
    top: 26%;
  }
}
.TitreSlide {
    font-size: 50px;
    line-height: 69px;
    margin-bottom: 2rem;
    letter-spacing: -.06rem;
    color: var(--white);
    font-weight: 700;
    max-width: 900px;
}
.Desktop .TitreSlide:first-line{
  font-size: 75px;
}
.bannerPage .TitreSlide {
    text-align: center;
    font-size: 35px;
    line-height: 46px;
    margin: auto;
    letter-spacing: 1px;
    font-weight: 300;
    color: #fff;
}
.bannerPage .TitreSlide .btn.btn-realisations {
    margin-top: 1rem;
    margin-left: 0;
}
.Mobile .TitreSlide {
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 0;
    padding-right: 2rem;
}
.TitreSlide span {
    color: var(--colorT)
}

/*
Btn
*/
.btn {
    position: relative;
    display: flex;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--colorP);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 40px;
    padding-right: 12px;
    border-radius: 32px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
    align-items: center;
}
.devisBtn .btn {
    padding-top: 7px;
    padding-bottom: 7px;
    background-color: var(--colorS);
}
.btn.btn-realisations {
  margin-left: 2rem;
  background-color: var(--colorS);
}
.Mobile .btn.btn-realisations {
  margin-left: 0;
  margin-top: 20px;
}
.btn:hover {
    color: var(--darkB);
}
.btn::before {
    position: absolute;
    content: '';
    background-color: var(--colorT);
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 0px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all 500ms ease;
}
.btn:hover:before {
    height: 380%;
}
.btn i {
    position: relative;
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 15px;
    text-align: center;
    line-height: 40px;
    margin-left: 17px;
    transition: all 0.5s linear;
}
.devisBtn .btn i,
.btn.btn-realisations i {
    background-color: var(--white);
    color: var(--darkB);
}
.btn.btn-realisations:hover i,
.btn:hover i {
    background-color: var(--white);
    color: var(--darkB);
}

.main-slider-btn .btn {
    padding-left: 50px;
}

/*
Contenu
*/
.servicesBlock {
    background-color: var(--colorT);
    position: relative;
    padding-bottom: 180px;
}
.Mobile .servicesBlock {
    padding-bottom: 30px;
}
.image_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mix-blend-mode: color-burn;
}
@media (min-width: 1200px) {
    .servicesBlock .container {
        max-width: 1400px;
    }
}
@media (min-width: 992px) {
    .servicesBlock .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
.srv-container {
    position: relative;
    background-color: var(--darkB);
    height: 100%;
    padding: 70px 20px 73px;
    text-align: center;
    border-radius: 0 0 15px 15px;
}
.item_srv {
    display: block;
}

.srv_count {
    position: absolute;
    bottom: -35px;
    width: 70px;
    height: 70px;
    background-color: var(--colorP);
    border-radius: 50%;
    border: 10px solid var(--darkB);
    transform: translateX(-50%);
    left: 50%;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
}
.srv-container:hover .srv_count {
    background-color: var(--white);
    border: 10px solid var(--white);
}
.srv_count::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 14px;
    line-height: 50px;
    font-weight: 700;
    counter-increment: count;
    content: "1";
    transition: all 200ms linear;
    transition-delay: 0.1s;
    color: var(--white);
    text-align: center;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
}
.servicesBlock .row .col-lg-3:nth-child(2) .srv_count::before {
    content: "2";
}
.servicesBlock .row .col-lg-3:nth-child(3) .srv_count::before {
    content: "3";
}
.servicesBlock .row .col-lg-3:nth-child(4) .srv_count::before {
    content: "4";
}
.servicesBlock .row .col-lg-3:nth-child(5) .srv_count::before {
    content: "5";
}
.servicesBlock .row .col-lg-3:nth-child(6) .srv_count::before {
    content: "6";
}
.servicesBlock .row .col-lg-3:nth-child(7) .srv_count::before {
    content: "7";
}
.servicesBlock .row .col-lg-3:nth-child(6),
.servicesBlock .row .col-lg-3:nth-child(7){ 
  margin-top: 100px;
}
.srv-container:hover .srv_count::before {
    color: var(--darkB);
}
.Tablet .servicesBlock .col-lg-3:nth-child(4),
.Tablet .servicesBlock .col-lg-3:nth-child(5) {
    margin-top: 70px;
}
.Mobile .servicesBlock .col-lg-3 {
    margin: 30px 0;
}
.item_srv img {
    transition: all .3s ease;
    width: 80px;
    height: 80px; 
    display: block;
    margin: 0 auto 20px;
    object-fit: contain;
}
.Mobile .item_srv img {
    width: 60px;
}
.item_srv:hover img {
    transform: scale(0.9);
}
.item_srv span {
    display: block;
    color: var(--white);
    line-height: 130%;
}

.Block-contenu {
    padding-bottom: 60px;
}
.itemTxt {
    padding-top: 60px;
    padding-left: 60px;
}
.contenu2 .itemTxt {
    padding-top: 0;
}

.itemTxt b {
    color: var(--colorS);
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
}

.Tablet .itemTxt,
.Mobile .itemTxt {
    padding-left: 0px;
    padding-top: 30px;
}
.main_article h1,
.itemTxt h1,
.textPage h1 {
    font-size: 60px;
    line-height: 60px;
    color: var(--darkB);
    font-weight: 300;
}
.itemTxt h2 {
    color: var(--colorT);
    font-size: 36px;
    line-height: 36px;
}
.Mobile .itemTxt h2 {
  font-size: 26px;
  line-height: 26px;
}
.itemTxt h3 {
    color: #fff;
    font-weight: 300;
    font-size: 24px;
}
.Tablet .itemTxt p,
.Mobile .itemTxt p {
    text-align: justify;
}
.about_,
.about_ > div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about_ {
    margin-bottom: 2rem;
}
.Tablet .about_ {
    margin-top: 2rem;
}
.Tablet .about_ > div,
.Mobile .about_ > div {
    display: block;
    line-height: 130%;
    text-align: center;
}
.about_ span {
    position: relative;
    display: flex;
    width: 40px;
    height: 40px;
    background-color: var(--colorT);
    border-radius: 50%; 
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.Tablet .about_ span,
.Mobile .about_ span {
    margin: 0 auto .5rem;
}
.about_ > div:hover span {
    background-color: var(--colorS);
}
.about_ .icon {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--darkB);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.about_ > div:hover .icon {
    color: var(--white);
}
.about_ strong {
    color: var(--darkB);
    line-height: 130%;
}
.igmContenu {
    position: relative;
}
.Mobile .igmContenu {
    padding-top: 60px;
}
.igmContenu::before {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background-color: var(--colorS);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    content: "";
    z-index: 2;
}
.Mobile .igmContenu::before {
    top: 20px;
}
.igmContenu img {
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 250px;
    background: #ddd;
    display: block;
    object-fit: cover;
}
.contenu1 {
    background: rgb(250,235,235);
    background: linear-gradient(90deg, rgba(255,255,255,1) 50%, rgb(77 31 20) 50%);
    padding-top: 60px;
}
.contenu2 {
    background: var(--darkB);
    background: linear-gradient(90deg, rgb(255,255,255) 50%, rgba(77,31,20,1) 50%);
    padding-top: 60px;
    position: relative;
    min-height: 500px;
    color: var(--white);
}
.Tablet .contenu2,
.Mobile .contenu2 {
    padding-top: 0;
    background: var(--darkB);
}
.imagContenu2 {
    min-height: 250px;
}
.Desktop .imagContenu2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 80%;
    width: 50%;
    background-size: cover;
    background-color: #ddd;
}
.itemTxt h1 {
    color: #fff;
    font-size: 45px;
    line-height: 50px;
}
.container-wrapper {
    padding: 60px 0;
}
.contenu3 {
    padding: 60px 0;
    background-color: rgb(240 244 248);
}
.contenu3 .itemTxt {
    padding-left: 0;
    padding-top: 0;
}
.contenu3 .itemTxt h2 {
    color: var(--darkB);
    margin-bottom: 2rem;
}
.main_article ul,
.contenu3 ul,
.textPage ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.main_article ul li,
.contenu3 ul li,
.textPage ul li {
    position: relative;
   padding-left: 25px;
}
.main_article ul li::before,
.contenu3 ul li::before,
.textPage ul li::before {
    content: "\e906";
    font-family: "icon";
    position: absolute;
    left: 0;
}
.txt3_ {
    margin-top: 30px;
}
.txt3_ h2 {
    color: var(--darkB);
}
.txt3_ h3 {
    font-weight: normal;
    font-size: 20px;
    color: var(--darkB);
    margin-bottom: 0;
}
.Block_ {
    margin: 50px 0;
}
.textPage h1,
.main_article h1 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0;
}
.main_article h2,
.main_article h3,
.textPage h2,
.textPage h3 {
    color: var(--darkB);
    font-weight: 300;
}
.main_article h3,
.textPage h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}
.imgPage {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}
.Mobile .imgPage img {
    max-width: 100%;
}
.Block2 .imgPage {
    margin-bottom: 0;
}
.main_article h2::after,
.textPage h2::after {
    content: "";
    display: block;
    margin: 1rem 0 2rem;
    border-bottom: 4px solid var(--colorT);
    width: 35px;
}
.textPage ul li::before {
    color: var(--colorT);
}
.textPage strong {
    color: var(--black);
}
.textPage.flexBox ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.Tablet .textPage.flexBox ul {
    grid-template-columns: repeat(2, 1fr);
}
.Mobile .textPage.flexBox ul {
    display: block;
}
.textPage.flexBox ul li {
    padding: 20px 20px 0;
    background: var(--white);
    box-shadow: 0 0 18px 0px rgb(0 0 0 / 16%);
    border-radius: 10px;
    transition: all .3s ease;
}
.textPage.flexBox ul li:hover {
    background-color: var(--darkB);
    color: var(--white);
    box-shadow: none;
}
.textPage.flexBox ul li:hover h3 {
    color: var(--colorT);
}
.Mobile .textPage.flexBox ul li {
    margin: 15px 0;
}
.textPage.flexBox ul li::before {
    display: none;
}
.Mobile .col-revM {
    flex-direction: column-reverse;
}
.Mobile .col-revM .imgPage {
    margin-bottom: 2rem;
}

/*
Block blog
*/
.title_infos {
    margin-bottom: 60px;
}
.Mobile .title_infos {
    text-align: center;
    margin-bottom: 30px;
}
.blog_infos {
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.blog_img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1;
}
.blog_img::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgb(7 19 34 / 30%);
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-70%);
    transform: translateY(-70%);
    z-index: 1;
}
.blog_infos:hover .blog_img::before {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
}
.blog_img img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all 500ms ease;
}
.blog_infos:hover .blog_img img {
    transform: scale(1.05);
}
.blog_date {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--darkB);
    padding: 21px 24px 21px;
    border-top-left-radius: 10px;
    z-index: 2;
}
.blog_date span {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: var(--white);
    text-transform: uppercase;
    display: block;
}
.blog_date p {
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 12px;
    margin-bottom: 0;
}
.blog_content {
    position: relative;
    display: block;
    background-color: #f7f7f7;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 22px 40px 33px;
}
.blog_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 6px;

    color: var(--black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.article-container {
    padding: 60px 0;
}
.main_article h1 {
    margin-bottom: 2.5rem;
}
.main_article h3 {
    margin-bottom: 1.5rem;
}
.main_article h4 {
    font-size: 19px;
    font-weight: 400;
    color: var(--darkB);
}
.main_article ol strong,
.main_article ul strong {
    color: var(--black);
}
.main_article ol {
    padding-left: 13px;
}
.main_article ul li::before {
    color: var(--colorT);
    line-height: 135%;
}
.imgArticle {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}
.imgArticle img {
    max-width: 100%;
}
.rightContactBlock {
    background-color: var(--darkB);
    color: var(--white);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}
.rightContactBlock .title {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 2rem;
}
.iconContact {
    position: relative;
    display: inline-block;
    margin-top: 24px;
    margin-bottom: 21px;
}
.iconContact::before {
    position: absolute;
    top: 46px;
    left: -65px;
    height: 2px;
    background-color: var(--white);
    content: "";
    opacity: .15;
    width: 55px;
}
.iconContact::after {
    position: absolute;
    top: 46px;
    right: -65px;
    height: 2px;
    background-color: var(--white);
    content: "";
    opacity: .15;
    width: 55px;
}
.iconContact span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background-color: var(--colorT);
    font-size: 36px;
    color: var(--black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.intervention a {
    display: block;
    background-color: #a1d0ff;
    color: black;
    padding: 5px 15px;
    border-radius: 25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.intervention a:first-child {
    margin-top: 1rem;
}
.intervention a:hover {
    background-color: var(--colorT);
}
.lectureBlock {
    margin-bottom: 40px;
}
.lectureBlock .title {
    font-weight: bold;
    color: var(--colorS);
    font-size: 26px;
    margin-bottom: 2rem;
    border-bottom: 1px solid;
    padding-bottom: 11px;
}
.lectureBlock ul {
    padding-left: 0;
    list-style: none;
}
.lectureBlock ul li {
    margin-bottom: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: #f5faff;
    padding: 7px;
}
.lectureBlock ul li a.blog_title {
    font-size: 16px;
    line-height: 24px;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.lectureBlock ul li:hover a.blog_title {
    padding-left: 7px;
}


/*
Accordeon
*/
.Mobile .accordion-container {
    margin-top: 30px;
}
.accordion_set {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--white);
    border: 1px solid transparent;
    border-radius: 10px;
}
.accordion_set::before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    width: 10px;
    content: "";
    background-color: var(--colorT);
    transform: scaleY(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}
.accordion_set.active::before {
    transform: scaleY(1);
}
.accordion_set .content {
    position: relative;
    padding: 30px 40px 30px;
    display: none;
}
.accordion_set.active .content {
    display: block;
}
.accordion_set.active {
    border: 1px solid #ece9e0;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
}
.accordion-container .accordion_set+.accordion_set {
    margin-top: 20px;
}
.accordion_set::before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    width: 10px;
    content: "";
    background-color: var(--colorT);
    transform: scaleY(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}
.accordion_set > h3 {
    display: block;
    cursor: pointer;
    padding: 24px 40px 25px;
    padding-right: 27px;
    transition-delay: 0.1s;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.icon-plus_::before {
    content: "-";
    font-weight: 500;
    font-size: 10px;
    background-color: var(--colorT);
    color: var(--white);
    position: absolute;
    top: 50%;
    right: 30px;
    height: 21px;
    width: 21px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 21px;
    display: block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.accordion_set.active .icon-plus_::before {
    content: "x";
    background-color: var(--colorP);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
Avis
*/
.temoignages {
    padding: 60px 0;
    background-color: var(--colorT);
}
.temoignages .h3 {
    color: var(--darkB);
    margin-bottom: 2rem;
    font-size: 30px;
}
.temoignages .h3 span  {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}
.Mobile .temoignages .h3 {
    font-size: 1.2rem;
}
.Mobile .temoignages .h3 span {
    font-size: 17px;
}
.Mobile .slider_block_ {
    margin: 0 30px;
}
.avis-slider {
     background-color: var(--white); 
    /* border: 1px solid #e1e8ed; */
    border-radius: 5px;
    padding: 20px;
     margin: 15px; 
    font-size: 12px;
    line-height: 150%;
    height: 200px;
}
.avis-slider p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
}
.googleAvis_ {
    text-align: center;
}
.noteAvis_ {
    margin-bottom: 1rem;
}
.noteAvis_ span {
    margin-right: 5px;
    font-weight: bold;
    color: black;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

.infos_client {
    margin-bottom: 1rem;
    position: relative;
}
.infos_client::after {
    content: "";
    background-image: url(../images/img/google.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    height: 18px;
}
.infos_client img {
    margin-right: 10px;
}
.infos_client {
    display: flex;
    align-items: center;
    padding-right: 20px;
}
.infos_client span {
    font-weight: bold;
    color: black;
}
.infos_client span em {
    display: block;
    font-style: normal;
    font-weight: normal;
    color: #54595f;
}
.btn_avis {
    text-align: center;
}
.btn_avis a.btn-custom.btn-reserver {
    display: inline-block;
    position: static;
    padding: 10px 35px;
}
.avis > i {
  background: url('../images/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;
}
.temoignages .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;
}
.temoignages .slick-arrow:hover,
.temoignages .slick-arrow:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
    border-color: transparent;
    opacity: .5;
}


.temoignages .slick-prev {
    background-image: url(../images/p/arrow_left_.webp);
    left: -3rem;
}
.temoignages .slick-next {
    background-image: url(../images/p/arrow_right_.webp);
    right: -3rem;
}

/*
Footer
*/
.footer {
    background-color: var(--darkB);
    padding-top: 60px;
    overflow-x: hidden;
    position: relative;
}
.footer-shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: -15px;
    height: 80%;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 62%;
    opacity: 0.05;
}
@media(min-width: 1800px) {
    .footer-shape-1 {
        background-size: 48%;
    }
}
.Tablet .footer-shape-1 {
    height: 35%;
}
.Mobile .footer-shape-1 {
    height: 30%;
    background-size: 100%;
}
@-webkit-keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.Mobile .logo-footer {
    margin-bottom: 2rem;
    display: inline-block;
}
.info-footer {
    padding-bottom: 60px;
    position: relative;
}
.nav-footer .h3 {
    color: var(--colorT);
    font-size: 20px;
    margin-bottom: 1rem;
    display: block;
}
.link-footer {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.divers-lien.link-footer {
    margin-top: 2rem;
}
.link-footer li {
    margin: 10px 0;
}
.link-footer li a {
    color: var(--white);
    transition: all .3s ease;
}
.link-footer li:hover a {
    color: var(--white);
    text-decoration: underline;
}
.link-footer li.active a {
    color: var(--colorT);
}
.block-contact > div {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 130%;
}

.pdf_ a {
  display: flex;
  line-height: 130%;
  margin: 15px 0;
  font-size: 11px;
  align-items: center;
}
.pdf_ a:first-child {
  border-bottom: 1px solid #ffffff52;
  padding-bottom: 10px;
  border-top: 1px solid #ffffff52;
  padding-top: 10px;
}
.pdf_ a:last-child {
  border-bottom: 1px solid #ffffff52;
  padding-bottom: 10px;
}
.pdf_ a span {
  color: var(--white);
  margin-left: 7px;
}
.pdf_ a span b {
  text-transform: uppercase;
  display: block;
  font-size: 14px;
  letter-spacing: ;
}
.copyright {
    position: relative;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: space-between;
    background-color: #111b31;
    padding: 22px 0 22px;
    padding-left: 120px;
    border-top-left-radius: 10px;
    z-index: 1;
}
.copyright::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -10000000px;
    left: 100%;
    top: 0;
    background-color: #111b31;
    z-index: -1;
}

.bottom_scroll {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}
.bottom_scroll a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    top: 0;
    bottom: 0;
    width: 80px;
    background-color: var(--colorT);
    border-top-left-radius: 10px;
    color: var(--awhite);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.bottom_scroll a:hover {
    background-color: var(--white);
}
.bottom_scroll a:hover img {
    filter: invert(1);
}

/*
Page 404
*/

.blog_pageIntrouvable {
    background: var(--darkB);
    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(--colorT);
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: var(--white);
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--white);
}
.blog_pageIntrouvable a {
    color: var(--colorT);
}
.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;
  }
}
@media (min-width: 1200px) {
  #realisations .container {
    max-width: 1400px;
  }
}
.swipebox {
  background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
    margin: 15px 0;
    /*border: 1px solid #ddd;*/
    border-radius: 15px;
    position: relative;
}
.Mobile .swipebox {
    height: inherit;
}
.swipebox span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .5s ease;
}
.swipebox:hover span {
  transform: scale(1.1);
  opacity: .7;
}
.swipebox img {
    width: 100%;
}

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

b.titre-album {
  text-align: center;
  display: block;    
  color: var(--colorP);    
  font-size: 2.5rem;    
}
b.titre-album::after {
  content: "";
  display: block;    
  border-bottom: 2px solid var(--colorT);
  margin: 1rem auto 2rem;
  width: 35px;
}
#Messages {
    background: #000;
    text-align: center;
    position: relative;
    z-index: 9999;
}
#Messages p {
    color: var(--white);
    font-weight: bold;
    margin: 0;
    padding: 25px 0;
}

/*
Devis Page
*/
.Devisgratuit h1 {
    color: var(--darkB);
    text-align: center;
}
.Devisgratuit h1::after {
    content: "";
    display: block;
    margin: 1rem auto 2rem;
    width: 35px;
    border-bottom: 2px solid var(--colorT);
}
#devisBlock_ .form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    margin: 15px 0;
}
.Mobile #devisBlock_ .form-group {
    display: block;
}
#devisBlock_ input.form-control {
    border-radius: 35px;
    padding: 15px 25px;
    height: auto;
}
.Mobile #devisBlock_ input.form-control {
    margin: 15px 0;
}
#devisBlock_ textarea.form-control {
    border-radius: 15px;
    height: 150px;
    max-height: 180px;
    resize: vertical;
    margin: 0 auto 20px;
    background-color: #f7f7f7;
}
#devisBlock_ .form-control:focus {
    border-color: var(--colorP);
    outline: 0;
    box-shadow: none;
}
.btn_devisG {
    text-align: center;
}
/*
Contact
*/

#realisations,
.temoin,
#devisBlock_,
#mentionsl,
.ContactezNous {
    padding: 60px 0;
}

.Mobile #realisations,
.Mobile .temoin,
.Mobile #devisBlock_,
.Mobile #mentionsl,
.Mobile .ContactezNous {
    padding-top: 13rem;
}
.ContactezNous b {
    display: block;
    margin-top: 1rem;
    color: var(--darkB);
    font-size: 18px;
}
.ContactezNous #FormDevis .form-control {
    margin: 10px 0;
}
.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;
}
input.btn.btn-submit {
    padding: 10px 25px;
}
.Tablet .inline-b,
.Desktop .inline-b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 7px;
}
ul.nav-submenu {
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transform-origin: 0 0 0;
    transition: all 0.3s ease 0s;
    z-index: 9999 !important;
    background: #ffff;
    padding: 20px;
}
body:not(.Desktop) ul.nav-submenu {
    visibility: visible;
    opacity: 1;
    display: none;
    position: static;
    width: 100%;
    transform: none;
    border-radius: 0px;
    padding: 15px 0 0;
}
.Desktop .nav-item:hover ul.nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}
li.nav-submenu-item {
    list-style: none;
}
li.nav-submenu-item a {
    text-align: left;
    padding: 10px 0;
}
.main-slider-btn {
    display: flex;
}
.itemTxt a.btn.btn-contact {
    max-width: 214px;
}
a.logo img {
    width: 200px;
    height: 95px;
    object-fit: contain;
}
.Block-contenu.contenu3 .itemTxt h3 {
    color: #000;
}
.text-agence,
.text-agence a {
    color: #fff;
    line-height: 20px;
}
.devisBulle img {
    width: 80px;
    height: 80px;  
    object-fit: contain;
}
a.logo-footer img {
    width: 250px;
    height: auto;
    object-fit: contain;
    background: #fff;
}
.bannerPage a.btn.btn-realisations {
    max-width: 239px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.imgPage img {
    width: 100%;
    height: 300px;
    background: #ddd;
    display: block;
    object-fit: cover;
}

#temoignages {
    padding-bottom: 100px;
    margin-top: 80px
  
}
.imgAvis.bg {
    background-color: #ddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0;
}
.Mobile .imgAvis.bg {
    padding: 10px;
}
b.titreAvis {
    display: block;
    font-size: 26px;
    color: #376371;
    text-transform: uppercase;
}
b.titreAvis::after {
    content: "";
    display: block;
    margin: 2rem auto ;
    width: 35px;
    border-bottom: 3px solid #376371;
}
.block-avis {
    margin: 0 auto;
    padding: 40px;
    border-radius: 7px;
    text-align: center;
}
#temoignages .item-tem p {
    margin-bottom: 0;
}

.temoin {
    background: #e7e7e7;
    color: black;
    padding: 80px 0;
}
.Mobile .temoin {
    padding-top: 12rem;
}
.Desktop .temoin .grid-row {
    display: grid;
    grid-template-columns: 60% auto;
    grid-gap: 20px;
}
.Tablet .temoin .grid-row,
.Mobile .temoin .grid-row {
    display: block;
}
.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: #376371;
}
#avis_form {
    margin-top: 15px;
}

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

#avis_form .form-control {
  margin: 0 0 15px 0;
  width: 100%
}
.Mobile .block-avis { 
    padding: 40px 0; 
}
#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/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;
}
#temoignages a.btn-rea {
    padding: 10px 35px;
    background: #000;
    color: #fff;
    position: relative;
    top: 40px;
    font-size: 18px;
    text-transform: uppercase;
}
.item-tem img {
    margin: 0;
    width: 50px;
    height: 50px;
}
img.google {
    width: 60px;
    height: 25px;
    object-fit: contain;
}
.avis-nom {
    display: flex;
    align-items: center;
    gap: 10px;
}
.slide-temoignage .avis-nom {
    justify-content: center;
}
.temoignages .col-left .avis > i {
    background: url(../images/rating-sprit.png) no-repeat;
    height: 9px;
    width: 50px;
    margin: 0;
}
.temoignages .col-left .avis-0 {
  background-position: 0 0 !important;
}
.temoignages .col-left .avis-1 {
  background-position: 0 -11px !important;
}
.temoignages .col-left .avis-2 {
  background-position: 0 -22px !important;
}
.temoignages .col-left .avis-3 {
  background-position: 0 -32px !important;
}
.temoignages .col-left .avis-4 {
  background-position: 0 -43px !important;
}
.temoignages .col-left .avis-5 {
  background-position: 0 -53px !important;
}
.temoignages .col-left .avis-6 {
  background-position: 0 -65px !important;
}
.temoignages .col-left .avis-7 {
  background-position: 0 -75px !important;
}
.temoignages .col-left .avis-8 {
  background-position: 0 -85px !important;
}
.temoignages .col-left .avis-9 {
  background-position: 0 -95px !important;
}
.temoignages .col-left .avis-10 {
  background-position: 0 -105px !important;
}
.avis-t {
    display: flex;
    align-items: center;
    gap: 10px;
}
.slide-temoignage .avis-t {
    justify-content: center;
    margin: 10px 0 5px;
}
.Mobile .slide-temoignage .avis-t {
    flex-wrap: wrap;
    gap: 0;
}
.temoignages .col-left img.google {
    width: 36px;
    height: 15px;
    object-fit: contain;
}
.blockFormulaire input.form-input,
.blockFormulaire textarea.form-input {
    padding: 10px 0 10px 10px;
    width: 100%;
}
input.btn.btn-submit {
    background: #2e2d2d;
    color: #fff;
    width: 100%;
}
.item-tem.slick-slide {
    background: #fff;
    padding: 20px;
    margin: 0 15px;
    border-radius: 20px;
} 

.avis a{
    width : 10%;
    float : left;
    height : 100%
}
.Mobile .main-slider-btn {
    flex-direction: column;
}
.Mobile a.btn {
    max-width: 246px;
}
body:not(.Desktop) header.header {
    position: fixed;
    z-index: 999;
}
.Mobile .row.justify-content-center.categorie {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.Mobile .srv-container { 
    padding: 10px 20px 73px; 
}
.Mobile .servicesBlock .row .col-lg-3:nth-child(6), 
.Mobile .servicesBlock .row .col-lg-3:nth-child(7) {
    margin-top: 30px;
}
.Mobile .itemTxt h1 { 
    font-size: 35px;
    line-height: 38px;
}
.Mobile .copyright {
    text-align: center;
}
.Mobile div#mentionsl ol {
    padding: 0 10px;
}
.Tablet .main-slider,
.Tablet .image-layer {
  height: 600px;
}
.Tablet .index .CaptionSlider { 
  padding-top: 0;
}
.Tablet .TitreSlide { 
  margin-bottom: 0; 
  margin-top: -378px;
}
.Tablet .servicesBlock .row .col-lg-3:nth-child(6), 
.Tablet .servicesBlock .row .col-lg-3:nth-child(7) {
  margin-top: 70px;
}
.Tablet .titre-album,
.Tablet #mentionsl h2,
.Tablet .ContactezNous h1,
.Tablet.devis #devisBlock_ .Devisgratuit {
  margin-top: 152px;
} 
.Tablet .bannerPage .TitreSlide { 
  margin-top: -184px;
}
.logo-box img {
  background: #fff;
}
.Tablet .devisBulle { 
  top: 68%; 
}
.Tablet .main-slider .slick-dots{
  top: 33%;
}
body:not(.Desktop) .nav-item a { 
    padding: 15px 11px 0 10px;  
}
.horaire {
    color: #fff;
    font-size: 20px;
    margin-top: 20px;
}
.Mobile .tel-top.mobileTel {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0
}
div#Messages {
    text-align: center;
    background-color: #000;    
    padding: 10px;
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
}

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

.s2_content {
    background: #111;
    padding: 50px;
}

.Tablet .s2_content {
    padding: 50px 40px;
}

.Mobile .s2_content {
    padding: 50px 20px;
}

.s2t_h1 {
    font-size: 24px;
    font-weight: 600;
    color: #4d1f14;
    margin-bottom: 10px;
}

.Mobile .s2t_h1 {
    font-size: 30px;
}

.s2t_p {
    font-size: 18px;
    color: #f2f2f2;
    margin-bottom: 40px;
}

.s2t_right img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

form#rappel_immediat {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 5px;
}

._rappel_num {
    position: relative;
    width: 70%;
}

._rappel_num img {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.Mobile ._rappel_num img {
    left: 7px;
}

.input-form {
    display: block;
    width: 100%;
    padding: .375rem .75rem .375rem 3rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 55px;
    font-size: 18px;
}

.Mobile input.input-form {
    padding: .375rem .75rem .375rem 2rem;
}

input.btn-devis-gratuit {
    width: 30%;
    height: 55px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    background: var(--colorP);
    border: 1px solid var(--colorP);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

input.btn-devis-gratuit:hover {
    background: #111;
}

.Mobile input.btn-devis-gratuit {
    font-size: 14px;
}
.s2t_left {
    margin-bottom: 30px;
}