/* 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 : black;
  --light : #eeeeee;
  --colorP : #c36e1e;
  --colorB  : #00171d;
  --colorS  : #0e4f62;
  --lineheight100 : 100%;
  --lineheight130 : 130%;
}
body {
  margin: 0;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  background-color: var(--white);
  color: var(--body);
}

[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;
  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;
}
img {
  vertical-align: middle;
  border-style: none;
  height: auto;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}
h1, h2, h3
.h1, .h2, .h3 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
h2, .h2 {
    font-size: 22px;
}
h3, .h3 {
    font-size: 18px;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

#mail,
#mail2 {
	display: none;
}

#header {
    background: var(--colorB);
}
.Mobile #header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
}
.top-grid {
    display: grid;
    grid-template-columns: 40% 20% 40%;
    grid-gap: 20px;
    align-items: center;
    padding: 10px 0;
}
.Mobile .top-grid {
    grid-template-columns: 20% auto;
    justify-content: space-between;
    padding: 0;
}
.nav {
    background: var(--colorS);
    border-bottom: 3px solid var(--colorP);
    border-top: 3px solid var(--colorS);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.nav-list {
    margin: 0;
    display: table;
    width: 100%;
    list-style: none;
    padding-left: 0;
}
.Desktop .nav-list {
    width: 90%;
    margin: auto;
}
.nav-item {
    display: table-cell;
    vertical-align: middle;
    border-left: 2px solid var(--colorS);
    transition: background var(--trans3s);
}
.nav-item:first-child {
    border-left: none;
}
.nav-item a {
    display: block;
    line-height: var(--lineheight130);
    padding: 10px;
    color: var(--white);
    text-align: center;
}
.nav-item svg {
    fill: var(--white);
}
.nav-item:hover {
    background: var(--colorP);
}
.nav-item.active,
.nav-item.active:hover {
    background: var(--colorP);
}
.logo {
    display: block;
    text-align: center;
}
.top-adr {
    color: var(--white);
    font-size: 12px;
}
.tel-top {
  text-align: right;
}
.Mobile .tel-top {
    text-align: center;
    background: var(--light);
}
.Mobile .tel-top a {
    display: inline-block;
    padding: 9px 0;
    margin: 0 10px;
    font-weight: bold;
    font-size: 16px;
}
.tel-top span {
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
}
.tel-top svg {
    width: 18px;
    height: 18px;
    fill: var(--colorP);
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    transform: rotateZ(260deg);
    margin-top: -6px;
}
.Mobile .tel-top svg {
    transform: none;
}
.tel-top em {
    margin: 0 15px;
    font-weight: normal;
    color: var(--colorP);
}
.btn {
    display: inline-block;
    padding: 10px 35px;
    font-weight: bold;
    border-radius: 3px;
    transition: background 0.3s ease, box-shadow .3s ease-out;
}
.btn-rea {
    background: var(--colorP);
    color: var(--white);
    font-weight: bold;
    margin-top: 1rem;
}
a.btn.btn-rea.btn-avis {
    margin-left: 15px;
    background: var(--colorS);
}
.btn-rea:hover {
    box-shadow: 0px 3px 7px 0px rgb(0 0 0 / 29%);
    background: var(--colorS);
    color: var(--white);
}
a.btn.btn-rea.btn-avis:hover {
    background: var(--colorP);
}
.Mobile .TelMobile {
    text-align: center;
    background: var(--colorGP);
}
.TelMobile a {
    display: inline-block;
    padding: 6px 0;
    color: var(--black);
    font-weight: bold;
    font-size: 18px;
}
.TelMobile em {
    margin: 0 15px;
}
.Mobile .TelMobile svg {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    margin-top: -4px;
}
/*
Devis gratuit & rappel
*/
.Devisgratuit {
    background: rgb(255 255 255 / 32%);
    border-radius: 4px;
    padding: 40px 25px;
}
.Mobile .Devisgratuit {
    border-radius: 0;
    background: var(--light);
}
.Devisgratuit .form-input {
    margin-bottom: 1rem;
    border-color: #c1bebe;
}
.Devisgratuit .h3 {
    display: block;
    color: var(--black);
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
}
.Devisgratuit .h3::after {
    margin-left: auto;
    margin-right: auto;
    border-bottom-color: var(--colorP);
}
.Devisgratuit .btn-submit {
    position: static;
    font-size: 16px;
}

.rappelBlock {
  background-color: var(--colorS);
  padding: 20px 0;
}
.Mobile .rappelBlock {
  padding: 7px 0;
}
.Desktop .rappel-box,
.Tablet .rappel-box {
    display: grid;
    grid-template-columns: auto 20%;
    justify-content: center;
    grid-gap: 3rem;
    align-items: center;
}
#rappel_immediat {
  display: flex;
  grid-gap: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.Mobile #rappel_immediat {
  display: block;
}
#rappel_immediat strong {
    white-space: nowrap;
}
.Mobile #rappel_immediat strong {
    display: block;
    text-align: center;
}
.btn-submit {
    border: 1px solid transparent;
    letter-spacing: 1px;
    background-color: var(--colorB);
    color: var(--white);
    padding: 10px 15px;
    font-size: 12px;
    position: absolute;
    right: 6px;
}
.Mobile #rappel_immediat .btn-submit {
      top: 52%;
    transform: translateY(-50%);
}
.btn-submit:hover {
    background-color: var(--colorP);
    color: var(--black);
}
.form-input {
  display: block;
  width: 100%;
  padding: 12px 15px;
  line-height: 1.5;
  color: var(--colorB);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid transparent;
  border-radius: 7px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
textarea.form-input {
    height: 100px;
}
.Desktop .rappel {
    margin: 1rem 0 0 auto;
    display: grid;
    grid-template-columns: 25% auto;
    align-items: center;
}
.Mobile .rappel {
    background: var(--colorB);
    padding: 1rem;
}
.rappel strong {
    color: var(--white);
    text-transform: unset;
    text-align: right;
    margin-right: 1rem;
}
#rappel_immediat .btn-submit {
    background: var(--colorP);
    color: var(--black);
    padding: 6px 10px;
}
#rappel_immediat .form-input {
    padding: 7px 10px;
}
.Mobile #rappel_immediat .form-input {
  width: 100%;
  padding-right: 7rem;
}
.form-input:focus {
  color: var(--colorB);
  background-color: #fff;
  border-color: var(--white);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-input::-webkit-input-placeholder {
  color: var(--colorB);
  opacity: 1;
}
.form-input::-moz-placeholder {
  color: var(--colorB);
  opacity: 1;
}
.form-input:-ms-input-placeholder {
  color: var(--colorB);
  opacity: 1;
}
.form-input::-ms-input-placeholder {
  color: var(--colorB);
  opacity: 1;
}
.form-input::placeholder {
  color: var(--colorB);
  opacity: 1;
}
a.logo img {
    width: 100px;
}
/*
banner
*/
.banner_int{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
}

/*
Parallax scene
*/
#parallax_scene {
    -webkit-transition: all 500ms ease-in-out,opacity 0s;
    -moz-transition: all 500ms ease-in-out,opacity 0s;
    transition: all 500ms ease-in-out,opacity 0s;
    overflow: hidden;
    height: 552px;
}
#parallax_scene_items {
    transform: translate3d(0px, 0px, 0px) rotate(0.0001deg);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    position: relative;
    height: 552px;
}
@media(min-width: 1800px) {
    #parallax_scene {
        height: 800px;
    }
    #parallax_scene_items {
        height: 800px;
    }
}
.Mobile #parallax_scene {
    height: inherit;
    padding-top: 8rem;
}
.Mobile #parallax_scene_items {
    height: 100%;
}
.items__layer {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
}
.items__layer1 {
    transform: translate3d(0px, 0px, 0px);
    position: relative;
}
.items__layer img {
    position: absolute;
}
#imgLayer1 img {
    top: 5%;
    left: 60%;
    width: 19%;
}
#imgLayer2 img {
    top: 6%;
    left: 31%;
    width: 18%;
}
#imgLayer3 img {
    top: 25%;
    left: 50%;
    width: 50%;
}
#imgLayer4 img {
    top: 20%;
    left: 15%;
    width: 22%;
}
#imgLayer5 img {
    top: 5.5%;
    left: 29%;
    width: 5%;
}
#imgLayer6 img {
    top: 30%;
    left: 3%;
    width: 15%;
}
#imgLayer7 img {
    top: 50%;
    left: 17%;
    width: 19%;
}
#imgLayer8 img {
    top: 70%;
    left: 22%;
    width: 10%;
}
/*
Block
*/
.Contenu {
    padding: 80px 0;
}
.Mobile .Contenu {
    padding: 20px 0;
}
.headingBlock {
    text-align: center;
    margin-bottom: 2rem;
}
.headingBlock h1 {
    color: var(--colorB);
    text-transform: uppercase;
    margin:0;
}
.Desktop .grid-col,
.Tablet .grid-col {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    display: grid;
}
.Contenu .Block {
    margin: 15px 0;
}
.Contenu .Block h2 {
    color: var(--colorB);
}
.Block.Block2 {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.Mobile .Block.Block2 {
    padding: 0 15px;
}
.Block hr {
    margin-top: 1rem;
    margin-bottom: 2rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.middle-block {
    position: relative;
}
.Desktop .middle-block::before,
.Desktop .middle-block::after,
.Tablet .middle-block::before,
.Tablet .middle-block::after {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 180px;
    height: 180px;
    top: 50%;
    transform: translateY(-50%);
}
.Desktop .middle-block::before,
.Tablet .middle-block::before {
    background-image: url(../images/img/garantie-decennale.webp);
    left: 10rem;
}
/*.Desktop .middle-block::after,
.Tablet .middle-block::after {
    background-image: url(../images/img/rge-qualibat.webp);
    right: 10rem;
}*/
.Mobile .mobile-img {
    text-align: center;
}
.Mobile .mobile-img img {
    width: 120px;
}
.middle-block .bloc-une {
    width: 400px;
    margin: auto;
}
.Mobile .middle-block .bloc-une {
    width: 100%;
}
.middle-block .bloc-une h2,
.Mobile .Block.Block2 h2 {
    text-align: center;
}
.middle-block .bloc-une p,
.Mobile .Block.Block2 p {
    text-align: justify;
}
.last-block {
    margin-bottom: 60px;
}
.last-block .Block {
    position: relative;
    padding: 0 10px;
    line-height: 150%;
}
.Mobile .last-block .Block {
    padding: 0;
}
.last-block .Block img {
    background: var(--light);
}
.last-block .Block h2 {
    font-size: 18px;
    font-weight: bold;
    color: var(--colorB);
}
.last-block .Block p {
    text-align: justify;
}
.last-block .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: var(--colorS);
    width: 24px;
    height: 50px;
    transition: background .3s ease-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.last-block .slick-arrow svg {
    fill: var(--white);
    width: 18px;
    height: 18px;
}
.last-block .slick-arrow:hover {
    background: var(--colorB);
}
.last-block button.slick-prev {
    left: -2rem;
}
.last-block button.slick-next {
    right: -2rem;
}
.servicesBlock {
    background: var(--colorS);
    padding: 80px 0;
    margin-top: 80px;
}
.Desktop .box-serv {
    display: grid;
    grid-template-columns: 65% 35%;
    grid-gap: 15px;
}
.video-right iframe {
    width: 100%;
    border: 5px solid #c46e1d;
    box-shadow: 5px 11px 10px 0px rgb(0 0 0 / 22%);
}
.Mobile .video-right {
    margin: 15px;
}
.servicesBlock b.Titre {
    color: var(--light);
}
.serv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    justify-content: center;
}
.Mobile .serv-grid {
    grid-template-columns: repeat(2, 1fr);
}
.serv-grid a {
    background: var(--colorB);
    display: block;
    color: var(--white);
    transition: box-shadow .3s ease-out;
}
.serv-grid a:hover {
    box-shadow: 1px 7px 15px 0px rgb(1 1 1 / 66%);
}
.serv-grid a.active {
    background: var(--colorP);
}
.serv-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    text-align: center;
    line-height: 130%;
    color: var(--light);
    padding: 0 15px;
}
.serv-grid a.active span {
    color: var(--colorB);
}
.Mobile .serv-grid span {
    padding: 0 5px;
    font-size: 12px;
}

/*
Categorie ville
*/
.categorie_villes {
    background: var(--light);
    padding: 60px 0;
}
.Titre {
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-size: 1.5rem;
    color: var(--black);
}
.Titre::after {
    content: "";
    display: block;
    margin: 1.2rem 0 2rem;
    border-bottom: 3px solid var(--colorP);
    width: 80px;
}
.Desktop .scroll_ {
    max-height: 500px;
    overflow-y: scroll;
    padding-right: 1rem;
}
.Desktop .Liens {
    grid-template-columns: repeat(5, 1fr);
    display: grid;
    grid-gap: 10px 15px;
}
.Liens a {
    grid-template-columns: 25px auto;
    display: grid;
    line-height: var(--lineheight130);
    color: var(--black);
}
.Mobile .Liens a {
    padding: 14px 0;
}
.Liens a:hover {
    color: var(--colorP);
}
.Liens svg {
    width: 18px;
    height: 18px;
    fill: var(--colorS);
    margin-top: 2px;
}

/*
Mobile nav
*/
.nav-right {
    z-index: 90;
    position: relative;
}
.bar {
  display: block;
  height: 5px;
  width: 50px;
  background-color: var(--colorP);
  margin: 10px auto;
}

.button {
  cursor: pointer;
  display: inline-block;
  width: auto;
  margin: 0 auto;
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}
.middle {
  margin: 0 auto;
}

.bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.nav-right .active .bar {
  background-color: var(--white);
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.button.active .top {
  -webkit-transform: translateY(15px) rotateZ(45deg);
  -moz-transform: translateY(15px) rotateZ(45deg);
  -ms-transform: translateY(15px) rotateZ(45deg);
  -o-transform: translateY(15px) rotateZ(45deg);
  transform: translateY(15px) rotateZ(45deg);
}

.button.active .bottom {
  -webkit-transform: translateY(-15px) rotateZ(-45deg);
  -moz-transform: translateY(-15px) rotateZ(-45deg);
  -ms-transform: translateY(-15px) rotateZ(-45deg);
  -o-transform: translateY(-15px) rotateZ(-45deg);
  transform: translateY(-15px) rotateZ(-45deg);
}

.button.active .middle {
  width: 0;
}
@media(max-width: 991px) {
    .nav {
        border-top: none;
        border-bottom: none;
    }
    .nav-list {
      position: fixed;
      background: var(--colorS);
      z-index: 10;
      height: 100vh;
      width: 100%;
      right: 0;
      padding: 70px 0 0;
      margin: 0;
      list-style: none;
      top: 0;
      text-align: center;
      opacity: 0;
      visibility: hidden;

      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transform: translateX(100%);

      -webkit-transition: transform .7s ease-in-out;
        -moz-transition: transform .7s ease-in-out;
        -ms-transition: transform .7s ease-in-out;
        -o-transition: transform .7s ease-in-out;
        transition: transform .7s ease-in-out;
    }
  .nav-list.move-to-left {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .nav-item:first-child {
    -webkit-transition: all .7s .2s ease-in-out;
    -moz-transition: all .7s .2s ease-in-out;
    -ms-transition: all .7s .2s ease-in-out;
    -o-transition: all .7s .2s ease-in-out;
    transition: all .7s .2s ease-in-out;
  }

  .nav-item:nth-child(2) {
    -webkit-transition: all .7s .4s ease-in-out;
    -moz-transition: all .7s .4s ease-in-out;
    -ms-transition: all .7s .4s ease-in-out;
    -o-transition: all .7s .4s ease-in-out;
    transition: all .7s .4s ease-in-out;
  }
  .nav-item:last-child {
    -webkit-transition: all .7s .6s ease-in-out;
    -moz-transition: all .7s .6s ease-in-out;
    -ms-transition: all .7s .6s ease-in-out;
    -o-transition: all .7s .6s ease-in-out;
    transition: all .7s .6s ease-in-out;
  }
  .nav-item {
      display: block;
      padding-left: 0;
      border-left: none;
      opacity: 0;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  .nav-item.open {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  .nav-item > a {
    color: var(--white);
      font-size: 16px;
      padding: 15px;
  }
}

/*
Footer
*/
#footer {
    background-color: var(--colorB);
}
.coordonnes {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 400px;
    padding: 80px 0;
}
.coordonnes::before {
    content: "";
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    background: rgba(0,0,0,.45);
    position: absolute;
}
.coordonnes .container {
    position: relative;
    z-index: 1;
}
.Desktop .grid-footer,
.Tablet .grid-footer {
    display: grid;
    grid-template-columns: 40% 40%;
    justify-content: center;
}
.grid-left {
    text-align: right;
    color: var(--white);
    font-size: 18px;
}
.Mobile .grid-left {
    text-align: left;
}
.grid-left .adr-footer,
.grid-left .tel-footer {
    border-bottom: 1px dotted rgb(255 255 255 / 37%);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

b.titre-footer {
    border-bottom: none !important;
    display: block;
    font-size: 2rem;
    color: var(--white);
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 2rem !important;
    padding-bottom: 0 !important;
}
.Mobile b.titre-footer {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem !important;
}
.tel-footer {
    font-size: 2rem;
    line-height: 46px;
}

.grid-right {
    padding-left: 5rem;
}
.adresse,
.tel-footer span {
    display: grid;
    grid-template-columns: 25px auto;
    align-items: center;
    color: var(--white);
    margin: 6px 0;
}
.tel-footer span {
    font-size: 20px;
}
.copyright {
    text-align: center;
    padding: 1rem 0;
    color: var(--white);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
}
.copyright a {
    text-decoration: underline;
}
.copyright a:hover {
    text-decoration: none;
}

.Mobile .tel-footer a {
    display: block;
    padding: 5px 0;
    font-size: 20px;
    line-height: 130%;
}
.Mobile .tel-footer svg {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    fill: var(--white);
}


/**
404
*/
.blog_pageIntrouvable {
    background: var(--white);
    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(--colorP);
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: var(--colorB);
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--colorB);
}
.blog_pageIntrouvable a {
    color: var(--colorP);
}
.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;
  }
}
#Messages {
    background: var(--colorP);
    text-align: center;
    position: relative;
    z-index: 99;
}
#Messages p {
    color: var(--white);
    font-weight: bold;
    margin: 0;
    padding: 25px 0;
}
#realisations,
#mentionsL {
  padding: 60px 0;
}
.Mobile #realisations,
.Mobile #mentionsL {
    padding-top: 8rem;
}
.Desktop .grid-rea {
  display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-gap: 15px;
}
.Tablet .grid-rea {
  display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 15px;
}
.swipebox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid #ddd;
}
.Mobile .swipebox {
    height: inherit;
    margin: 15px 0;
}

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

.Mobile .col-rev {
    display: flex;
    flex-direction: column-reverse;
}

#Map {
    height: 250px;
}

#temoignages {
    background: var(--colorB);
    padding: 4em 0;
    text-align: center;
    color: var(--white);
}

#temoignages b {
  font-size: 36px;
  text-transform: uppercase;
  display: block;
  line-height: 130%;
}

.Mobile #temoignages b {
  font-size: 28px
}
#temoignages b::after {
  content: "";
  display: block;
  margin: 2rem auto;
  border-bottom: 3px solid var(--colorP);
  width: 70px;
}

#temoignages span, 
.temoin span {
  color: #1faed8
}

#temoignages p {
  font-size: 18px;
    text-align: center;
    font-style: italic;
}

.temoin {
    background: var(--colorB);
    color: var(--white);
    padding: 80px 0;
}
.Desktop .temoin .grid-row {
    display: grid;
    grid-template-columns: 60% auto;
    grid-gap: 20px;
}
.col-right {
    border: 3px solid #0f4f62;
    padding: 20px;
}
.Desktop .col-right {
    margin-left: 1rem;
}
.temoin .item-tem {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
    margin-bottom: 1rem;
}
h1.Titrecontenu {
    font-size: 36px;
    margin-bottom: 2rem;
}
#avis_form {
    margin-top: 15px;
}

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

#avis_form .input-form {
  margin: 0 0 15px 0;
  width: 100%
}
#MonAvis span {
  font-size: 18px;
  color: v#1faed8;
  display: block;
}
.item-tem .avis {
  display:inline-block;
  vertical-align: top;
}
.btn-temoin {
    border: none;
    background: var(--colorP);
        margin-top: 1rem;
    cursor: pointer;
    color: var(--black);
}

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

.text-perso {
    background: var(--colorP);
    color: #fff;
    padding: 10px 20px;
    width: max-content;
    max-width: 100%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: 600;
    border-bottom: 3px solid var(--colorS);
    text-align: center;
}
.Mobile .text-perso {
    position: relative;
    font-size: 16px;
}
