

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




*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}


body {
    line-height: 1.75;
    font-size: 14px;
    font-family: "Helvetica", sans-serif;
    color: #474749;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 500;
    line-height: normal;
    font-family: "Helvetica", sans-serif;
    color: #121212;
}
h1, .h1 {
  font-size: 2.5rem;   /* 40px */ 
}

h2, .h2 {
  font-size: 2rem;     /* 32px */ 
}

h3, .h3 {
  font-size: 1.75rem;  /* 28px */ 
}

h4, .h4 {
  font-size: 1.5rem;   /* 24px */ 
}

h5, .h5 {
  font-size: 1.25rem;  /* 20px */ 
}

h6, .h6 {
  font-size: 1rem;     /* 16px */ 
}

.Contenu h2,
.Contenu h3,
.Contenu h4{
    margin: 0 0 30px;
}
main.Contenu p {
    text-align: justify;
}

a,
input[type="submit"],
input[type='submit'],
button {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

input,
button,
textarea {
    outline: none;
}

textarea {
    font-family: inherit;
    max-width: 100%;
}

.icon{
    position: relative;
    padding: 12px;
}
.icon:before {
    content: "";    
    background-repeat: no-repeat!important;
    background-size: contain!important;
    background-position: center!important;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.icon-phone:before {
    background: url(../images/img/icon-fixe-mob.png);
}
.icon-mobile:before {
    background: url(../images/img/icon-portable-mob.png);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail.png);
}
.icon-location:before {
  background: url(../images/img/icon-locali.png);
}
.icon-map:before,
.icon-map-marker:before, .adr:before {
  background: url(../images/img/icon-adresse.png);
}
.icon-clock-o:before, .hor:before {
  background: url(../images/img/icon-hor.png);
}
.icon-devis:before {
  background: url(../images/img/icon-devis.png);
}
.arrow-up-right-long:before {
    background: url(../images/img/arrow-up-right-long.png);
}
.container{
    padding: 0 20px;
    width: 100%;
    margin: auto;
    max-width: 1320px;
    display: block;
}
.Tablet .container {
    max-width: 720px ;
}
.Mobile .container {
    max-width: 100% ;
}

.top_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #fff;
}
.Tablet #stickyHeader .container, .Mobile #stickyHeader .container {
  margin: 0;
  width: 100%;
  padding: 0;
  max-width: 100%;
}
.Tablet .top_content, .Mobile .top_content {
  justify-content: space-between;
  padding: 10px 20px;
}
.top_contact {
    display: flex;
    justify-content: space-between;
    background: #141414;
    color: #fff;
    align-items: center;
    padding: 10px;
}
.slider_content {
    display: grid;
    grid-template-columns: 30% 70%;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    z-index: 1;
    position: relative;
}
.Tablet .slider_content {
    grid-template-columns: 100%;
} 
.Mobile .slider_content { 
    grid-template-columns: 100%;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    color: #fff;
}
.top_navigation { 
    display: flex;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding: 20px 0;
}
.Tablet .top_navigation, .Mobile .top_navigation{
    display: none;
}
.d_flex {
    display: flex;
    gap: 20px;
    align-items: center;
}
.top_adr ,
.top_mail a,
.top_tel a{
    display: flex;
    align-items: center;
    gap:10px;
    color: #fff;
}
.top_tel {  
    display: flex;
    gap: 20px;
}
.top_tel a {
    color: #000;
    font-size: 16px;
    font-weight: 800;
}
.top_tel > a:last-child { 
    font-weight: 600;
}
.top_logo {
    width: 250px;
    min-width: 200px;
}
ul.nav-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.Tablet ul.nav-list,.Mobile ul.nav-list { 
    display: block;
    width: 100%;
    height: 400px;
    overflow: scroll;
}
li.nav-item {
    padding: 5px;
    list-style: none;
    border-color: #af0101;
}
.Desktop li.nav-item { 
    width: 11.11%;
    flex: 0 0 11.11%;
}
.Tablet li.nav-item,
.Mobile li.nav-item {
    width: 100%;
    padding: 15px;
}
 
.Mobile li.nav-item.active,
.Tablet li.nav-item.active {
  border: 2px solid #af0101;
}
li.nav-item a {
    color: #121212;
    font-weight: 600;
    text-align: center;
    display: block;
    font-size: 13px;
}
li.nav-item:hover a,
li.nav-item.active a{
    color: #af0101;
}
 


header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    position: fixed;
    background: #fff; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.nav-mobile {
    cursor: pointer;
    background: #111 url(../images/nav.svg) no-repeat 85% center;
    background-size: auto;
    background-size: 18px;
    height: 50px;
    width: 85px;
    padding-left: 9px;
    line-height: 50px;
    color: white;
    position: relative;
    z-index: 999;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff; 
    text-align: initial;
}
.homeslider {
    position: relative;
    width: 100%;
    height: 590px;
    overflow: hidden;
    margin-top: 153px;
    padding: 30px 0;
}
.fullImg {
    background-size: cover;
    background-color: #b4b4b4;
    background-blend-mode: multiply;
    width: 100%;
    height: 1000px;
    z-index: 0;
} 

.Mobile .homeslider,{
    margin-top: 197px;
    height: 600px;    
} 
.Mobile .bg-slider {
    height: 600px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 0;
    display: block;
    background-color: #888888;
    background-size: cover;
    background-blend-mode: multiply;
}
.Tablet .homeslider { 
  margin-top: 128px;
  height: auto;
} 
.top_devis {
    min-width: 200px;
    position: relative;
    background: #af0101;
    overflow: hidden;
}
.Tablet .top_devis,
.Mobile .top_devis{
    display: none;
}
.top_devis:before {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  height: 100%;
  width: 101%;
  content: "";
  background-color: #000;
  color: #fff; 
  transform: scale(0, 1); 
  transform-origin: right top;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1) 0s, -webkit-transform 500ms 0s;
}
.top_devis:hover:before { 
  transform: scale(1, 1); 
  transform-origin: top left;
}

.top_devis a {
    padding: 40px 15px;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    gap: 10px;
    z-index: 2;
    font-family: "Arial Black";
}
span.fleche-right{
    position: relative; 

}
span.fleche-right:before {
    content: "";
    font-size: 14px;
    background-image: url(../images/img/black-arrow-right-icon.png);
    width: 20px;
    height: 20px;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    filter: invert(1);
} 
.caption { 
}
figure.imgslide { 
    position: relative;
    width: 615px;
    height: 646px;
    display: block; 
}
.Tablet figure.imgslide,
.Mobile figure.imgslide {
  position: relative;
  width: fit-content;
  height: auto;
  display: block;
}
figure.imgslide:before {
    content: "";
    background-image: url(../images/img/imgslide-before.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 122px;
    height: 267px;
    bottom: 60px;
    left: 0;
    z-index: 2;
    animation: yoUpDown 2s ease-in-out infinite;
}
.Tablet figure.imgslide:before,
.Mobile figure.imgslide:before { 
  width: 50px;
  height: 100px;
  bottom: -20px;
  left: 0; 
}
@keyframes yoUpDown {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}
figure.imgslide:after {
    content: "";
    background-image: url(../images/img/imgslide-after.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 320px;
    height: 297px;
    top: -40px;
    right: 0;
    z-index: 1;
    animation: yoUpDown1 4s ease-in-out infinite;
} 
.Tablet figure.imgslide:after ,
.Mobile figure.imgslide:after {
  width: 100px;
  height: 100px;
  right: -20px;
  top: -15px;
}
@keyframes yoUpDown1 {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

figure.imgslide img {
    width: 530px;
    height: 530px;
    background: #eee;
    display: block;
    margin-top: 41px;
    margin-left: 26px;
    z-index: 0;
    object-fit: cover;
    object-position: bottom left;
    object-position: bottom left;
}
.Tablet figure.imgslide img,
.Mobile figure.imgslide img {
  width: 250px;
  height: 250px; 
}
.caption-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.Mobile .caption-content {
    flex-wrap: wrap;
}
.caption-texte {
    width: 50%;
    display: inline-block;
}
.Mobile .caption-texte {
    width: 100%; 
}
.caption-img { 
    display: inline-block;
    position: relative;
    width: 50%;
}
.Mobile .caption-img {
    display: none;
}
span.subtitle {
    letter-spacing: 2px;
    color: #af0101;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 30px;
    display: block;
}
p.texte-slider {
    font-size: 60px;
    line-height: normal;
    font-weight: 600;
    font-family: "Helvetica";
    color: #fff;
    margin: 0 0 30px;
}
.Tablet p.texte-slider ,
.Mobile p.texte-slider {
  font-size: 32px; 
}
a.btn-slider {
    font-size: 16px;
    color: #535353;
    padding: 15px 20px;
    display: block;
    border: solid 2px #535353;
    width: fit-content;
    border-radius: 30px;
    font-weight: 600;
}
a.btn-slider:hover{
    background: #fff;
    color: #141414;
}
.btn-slider {
    display: flex;
    align-items: center;
    gap: 20px;
}
 a.logo {
    display: flex;
}
a.logo img {
    width: 250px;
    height: 50px;
    object-fit: contain;
}
.Mobile a.logo img {
    width: 200px;
    height: 61px;
    object-fit: contain;
}


.grid-col-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.grid-col-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.grid-col-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
} 
.grid-col-5{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
} 
.gap-20{
    gap:20px;
}
.gap-30{
    gap:30px;
}
.gap-40{
    gap:40px;
}
.gap-50{
    gap:50px;
}
.gap-100{
    gap:100px;
}


.titre-h1 {
    background: #af0101;
    text-align: center;
    color: #fff;
    padding: 30px 0;
}
.titre-h1 h1 {
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
}
 
.accordion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.Mobile .accordion { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
}
.accordion-item {
    width: 80px;
    height: 500px;
    overflow: hidden;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background-color: #888888;
    background-size: cover;
    background-blend-mode: multiply;
}
.Mobile .accordion-item {
    height: 200px;
    width: 100%;
    padding: 10px;
}
.accordion-item.active {
    width: 100%;
}
.accordion-item span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 28px;
    transform: rotate(-90deg);
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
}
.Mobile .accordion-item span { 
    display: none;
}
.accordion-item > a{
    display: none;
    background: #af0101;
    padding: 15px 30px;
    border-radius: 30px;
    color: #fff;
    position: absolute;
    top: 20px;
    left: 20px;
    font-weight: 600;
}
.Mobile .accordion-item > a {
    position: relative;
    margin: 0;
    display: block;
    font-size: 14px;
    padding: 0;
    background: transparent;
    left: initial;
    top: inherit;
    text-align: center;
}
.Mobile .accordion-item em {
    display: none;
}
.accordion-item.active span{
    display: none;
}
.cat-texte{
    display: none;
}

.cat-texte .h3{ 
    margin: 0 0 30px;
    color: #fff;
}
.accordion-item.active .cat-texte {
    display: inline-block;
    width: 80%;
    text-align: center;
    color: #fff;
} 

.Mobile .cat-texte{
    display: none!important;
}
.accordion-item.active > a {
    display: block;
    background: #af0101;
    border-radius: 28px;
    padding: 10px;
}
.Tablet .accordion-item.active > a{
    display: none;
} 
ul.list-eng li {
    position: relative;
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
    padding-left: 50px;
    color: #000;
}
ul.list-eng li:before {
    content: "🗸";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #ffffff;
    background: #af0101;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.list-eng {
    margin: 30px 0 0;
}
b.Titre {
    margin: 0 0 30px;
    display: block;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: #121212;
    font-family: "Helvetica";
}
.Liens {
    column-count: 4;
}
.Tablet .Liens {
    column-count: 2;
}
.Mobile .Liens {
    column-count: 1;
}
.Liens a {
    display: block;
    margin: 0 0 20px;
}
footer#footer {
    background: #f2f2f2;
    color: #474749;
    padding-top: 50px;
}
.Mobile footer#footer { 
    padding-top: 50px;
}
.block-rs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
} 
.block-rs a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all .3s ease;
}
.block-rs a:hover img { 
    filter: drop-shadow(1px 1px 3px black);
}
#footer .block-rs{
    margin: 30px 0 0;
}
.footer-pub {
    padding: 0 0 50px;
    border-bottom: 1px solid #f1eff024;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between; 
}
.Mobile .footer-pub {
  flex-wrap: wrap;
}
.footer-pub .h3 { 
  color: #ffff;
  width: 60%;
}
.Mobile .footer-pub .h3 { 
  width: 100%;
}
#footer .btn-style-1 a{
    border: 2px solid #fff;
}
#footer .logo{
    margin: 0 0 30px;
    display: block;
}
#footer .logo img {
    width: 250px;
    height: 100px;
    object-fit: contain; 
}
.Mobile #footer .logo img { 
    height: 50px; 
}
.footer-title {
    color: #121212;
    margin: 0 0 30px;
    font-weight: 600;
}
ul.nav-footer li {
    list-style: none;
    line-height: 2;
}
.contact-diver > div{
    margin: 0 0 20px;
}
.contact-diver a,
.contact-diver p {
    display: flex;
    gap: 15px;
    align-items: center;
}
 
.footer-tel a {
    font-size: 20px;
    font-weight: 600;
}
.footer-grid {
    padding: 0 0 50px;
    border-bottom: 1px solid #333;
}
.footer-grid .grid-col-3 {
    gap: 30px;
}
.Tablet .footer-grid .grid-col-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.Mobile .footer-grid .grid-col-3 {
    display: grid;
    grid-template-columns: 100%;
    gap: 30px;
}
#mail2,
#mail {
    display: none;
}
.input-form {
    padding: 12px;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    outline: none;
    border: none;
    margin: 0 0 10px;
}
.btn-devis-gratuit {
    width: 100%;
    background: #af0101;
    padding: 12px; 
    height: 60px;
    border-radius: 30px;
    outline: none;
    border: none;
    margin: 0 0 10px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
}
p.rappele {
    margin: 20px 0 0;
}
.copyright {
    text-align: center;
    padding: 40px 0;
}
.copyright a { 
    text-decoration: underline;
}
.Mobile .copyright a { 
    display: block;
    margin: 20px 0 0;
} 
.Tablet .top_menu-contact {
    display: none;
    position: fixed;
    left: 0;
    top: 185px;
    width: 100%;
}
.Mobile .top_menu-contact{
    display: none;
    position: fixed;
    left: 0;
    top: 146px;
    width: 100%;
}
.Mobile #stickyHeader,
.Tablet #stickyHeader{
    position: fixed;
    top: 0;
    background: #fff;
    left: 0;
    width: 100%;
    z-index: 999;
}
.contact-grid {
    display: grid;
    grid-template-columns: 33.33% 66.66%;
    align-items: center;
    justify-content: center;
}
.Tablet .contact-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  justify-content: center;
}
.Tablet .contact-grid,
.Mobile .contact-grid { 
  grid-template-columns: 100%; 
  gap: 30px;
}
form#FormDevis .input-form,
#avis_form .input-form {
    background: #f2f2f2;

}
.Tablet .contact-grid #Map {
  height: 250px; 
}
textarea.input-form {
    min-height: 150px;
}
form#FormDevis .btn-devis-gratuit, .btn-temoignages .btn-devis-gratuit {
    width: fit-content;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.col-formulaire .h3 {
    margin: 0 0 30px;
}
.col-formulaire p {
    font-size: 20px;
    margin: 0 0 30px;
}
.col-formulaire b { 
    margin: 30px 0;
    display: block;
}
#Map {
    height: 600px;
    width: 100%;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    z-index: 0;
}
.Mobile #Map {
    height: 250px; 
}
.col-formulaire {
    padding-left: 100px;
}
.Tablet .col-formulaire,
.Mobile .col-formulaire {
  padding-left: 0;
}
.coordonne_cont {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
}
.Tablet .coordonne_cont,
.Mobile .coordonne_cont { 
  gap: 20px; 
  justify-content: center;
}
.coordonne_cont a {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
div#realisations .container-box > .row {
    display: flex;
    flex-wrap: wrap;  
}
div#realisations .container-box > .row > .col-md-3{
    width: 25%;
    flex: 0 0 25%;
    padding: 10px;
}
.Tablet #realisations .container-box > .row > .col-md-3{
    width: 50%;
    flex: 0 0 50%;
}
.Mobile #realisations .container-box > .row > .col-md-3{
    width: 100%;
    flex: 0 0 100%;
}
.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: bottom left;
    object-position: bottom left;
    display: block;
    border-radius: 30px;
}
.titre-album {
  clear: both;
  display: block;
  font-size: 32px;  
  margin: 20px 0;
  width: 100%;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.mentions h2 {
    padding: 20px 0;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
.mentions ol {
    max-width: 100%;
    width: 80%;
    margin: auto;
    padding: 0 0 30px;
}
body.Mobile.mentions ol {
    width: 100%; 
    padding:0 20px 20px;
}
.mentions h3 {
    font-size: 20px; 
    font-weight: 600;
}


/*-------- TEMOINAGE ------*/ 

#temoignages {
    background-color: #fff;
    padding: 4em 0;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    margin-top: 0;
    /* border-radius: 25px; */
    position: relative;
    background-size: cover;
}
.Mobile #temoignages {
    padding: 3em 1rem;
} 
#temoignages > div {
    position: relative;
    z-index: 1;
}

#temoignages b {
    font-size: 30px;
    text-transform: uppercase;
    display: block;
    line-height: 130%;
    color: var(--black);
    font-weight: normal;
}

.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 {
    color: #fff;
}
.temoin span {
  color: #b00101;
}

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

.temoin {
    background: #fff;
    color: #333;
    padding: 80px 0;
}
.Mobile .temoin, .Tablet .temoin {
    padding: 20px 0;
}
.Desktop .temoin .grid-row {
    display: grid;
    grid-template-columns: 60% auto;
    grid-gap: 20px;
}
.col-right {
    border: 3px solid #b00101;
    padding: 20px;
    border-radius: 30px;
}
.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
}

#MonAvis span {
  font-size: 18px;
  color: #b00101;
  display: block;
}
.item-tem .avis {
  display:inline-block;
  vertical-align: top;
}
.btn-temoin {
    border: none;
    background: #b00101; 
    cursor: pointer;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 6px auto 5px;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 11px 30px;
    font-size: 14px;
    font-weight: 600;
}
.btn-temoin:hover{
    background: #333;
    color: #fff;
}
.slide-temoignage {
    margin: 20px 0 30px;
}
.Tablet .slide-temoignage {
  margin: 0;
}
.avis a {
  width:10%;
  float:left;
  height:100%;

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

#temoignages a.btn-rea {
    margin-top: 1rem;
    padding: 7px 35px;
}
.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/img/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;
}















.Tablet .col-temoignage:first-child {
  grid-column: span 2;
}
.client {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 30px;
}
.client img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.client span {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
}
.grid-temoignage {
    display: grid;
    justify-content: center;
    grid-template-columns: 50% 25% 25%;
}
.temoignage-txt .h1 {
    color: #121212; 
    font-weight: 400  ;
    font-size: 50px ;
    line-height: 62.5px;
    margin: 0 0 20px;
}
.Mobile .temoignage-txt .h1 { 
    font-size: 22px;
    line-height: normal; 
}
.temoignage-txt div#MonAvis {
    margin: 0 0 20px;
}
.temoignage-txt p {
    font-size: 20px;
    line-height: 2;
}
.grid-temoignage {
    display: grid;
    justify-content: center;
    grid-template-columns: 50% 25% 25%;
    background: #f2f2f2;
    padding: 40px 30px ;
    border-radius: 30px;
}
.Tablet .grid-temoignage { 
  grid-template-columns: 50% 50%; 
}
.Mobile .grid-temoignage { 
  grid-template-columns: 100%; 
}
.temoignage-txt {
    padding: 30px 0;
}
.Mobile .temoignage-txt {
    padding: 0;
}
.slide-temoignage .item-tem {
    background: #fff;
    padding: 20px;
    border-radius: 30px; 
}
.btn-temoignages {
    display: flex;
    align-items: end;
    height: 100%;
    width: 100%;
    position: relative;
    justify-content: end;
} 
.mobile-tel {
    background: #121212;
    padding: 5px 20px;
    width: 100%;
    justify-content: center;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.mobile-tel a {
    background: #af0101;
    color: #fff;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 12px;
    border-radius: 30px;
    font-size: 14px;
}
.mobile-tel .icon:before {
    filter: invert(1);
}
.Tablet .container > .grid-col-2,
.Tablet .container > .grid-col-3,
.Mobile .container > .grid-col-2,
.Mobile .container > .grid-col-3{
    grid-template-columns: 100%;
} 
.Mobile .formulaire .grid-col-2.gap-20 ,
.Tablet .formulaire .grid-col-2.gap-20{
  grid-template-columns: 100%;
  gap: 0;
}

.slide-temoignage .slick-slide { 
    padding: 0 10px;
}

/*------------------------------------------------------------------------- 
404 style 
-------------------------------------------------------------------------*/

.blog_pageIntrouvable {
    background: #fff;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 10000 !important;
    text-align: center;
    top: 0;
    left: 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: #000;
}

.blog_pageIntrouvable > div {
  height: 100%;
  color: #333
}
.blog_pageIntrouvable .h1 {
    font-size: 200px;
    color: #af0101;
    font-weight: 600;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #000000;
}
.blog_pageIntrouvable a {
    color: #af0101;
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
#noDesktop { display: none; }
.Mobile .blog_pageIntrouvable {
    font-size: 14px;
}
.Mobile .blog_pageIntrouvable a {
  display: block;
}
.Mobile .blog_pageIntrouvable p {
  font-size: 17px;
  letter-spacing: 5px;
  margin-top: -10px;
}
.Mobile .blog_pageIntrouvable h1 {
    font-size: 100px;
}

  /*----------------------------------------------------------------------------------- 
MESSAGES 
-----------------------------------------------------------------------------------*/

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;
}
.Tablet div#Messages p,
.Mobile div#Messages p {
    font-size:14px;
}

.btn-style-2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.titre.caption {
    font-weight: 700;
    font-size: 46px;
    line-height: 1.2;
    color: #121212;
    margin: 0 0 30px;
}
.Mobile .titre.caption {
    font-size: 34px;
    color: #fff;
}
.slider_content .caption > p {
    font-size: 16px !important;
    line-height: 28px !important;
}
.h1_titre {
    margin: 100px 0;
}
.Mobile .h1_titre {
    margin: 20px 0;
}
.h1_titre h1 { 
    text-align: center;
}
.Mobile .h1_titre h1 { 
    font-size: 32px;
}
section.block3.no-pad {
    padding: 0;
}
section.block3.no-pad .block3-content-1 {
    margin-bottom: 0;
}
section.block7.cage-1 {
    padding: 50px 0 100px;
}
.cage-rappel {
    margin-top: 100px;
    border-radius: 28px;
    height: 340px;
    position: relative;
}
.cage-rappel:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .3);
    border-radius: 28px;
}
.rappel-f {
    padding: 46px;
    position: relative;
    width: 45%;
}
.titre-r {
    color: #fff;
    font-size: 48px;
    line-height: 53px;
    font-family: helvetica;
}
.rappel-f form#rappel_immediat {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}


/*------------------------------------------------------ CONTENU ------------------------------------------------------*/
.garanties {
    margin: 0 0 50px;
}
.Mobile .garanties {
    margin: 0;
    padding: 40px 0;
}
.garanties-item {
    display: flex;
    background: #f2f2f2;
    align-items: center;
    padding: 40px 20px;
    border-radius: 10px;
    gap: 15px;
}
.Tablet .garanties .grid-col-5{
    grid-template-columns: repeat(3, 1fr);
}
.Mobile .garanties .grid-col-5{
    grid-template-columns: repeat(1, 1fr);
}
.garanties-item img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}
.garanties-item figure {
    width: 43px;
    height: 43px;
    min-width: 43px;
    margin-left: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.garanties-item span {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
}
.garanties-titre {
    color: #2c3e50;
    font-size: 28px;
    text-transform: capitalize;
    align-self: center;
    line-height: normal;
} 
.Mobile .garanties-titre {
    text-align: center;
}
.Mobile .garanties-titre br {
    display: none;
}




.btn-contenu {
    display: flex;
    margin: 40px 0 0;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-style-1 a {
    font-size: 16px;
    color: #141414;
    padding: 15px 20px;
    display: block;
    border: solid 2px #141414;
    width: fit-content;
    border-radius: 30px;
    font-weight: 600;
    background: #fff;
}
.btn-style-1 a:hover { 
    color: #fff;  
    background: #141414;
}

.btn-style-2 span {
    background: #af0101; 
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-style-2 span .icon:before {
    filter: invert(1);
}
.btn-style-2 a {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #af0101;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
}
.btn-style-2 a:hover{
    transform: scale(1.01);
}



section  {
    display: block;
    margin: 0 0 50px;
}
.block1-img, 
.block1-img figure {
    height: 100%;
}
.Mobile .block1-img {
    margin: 30px 0 0;
}
.block1-img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom left; 
    background: #eee;
    border-radius: 30px;
    display: block;
}
.Tablet .block1-img figure img {
    height: 350px;
}
.Mobile .block1-img figure img {
    height: 250px;
}
.block1-txt {
    padding: 30px 0;
}
.Mobile .block1-txt,
.Tablet .block1-txt{
    padding: 0;
}


.block-rappel-content {
    padding: 50px;
    border-radius: 30px;
    background-color: #888;
    background-size: cover;
    background-blend-mode: multiply;
}
.Mobile .block-rappel-content {
    padding: 20px;
}
.block-rappel-titre {
    width: 50%;
    color: #fff;
    margin: 0 0 30px;
    font-size: 42px;
    font-weight: 500;
}
.Tablet .block-rappel-titre { 
    font-size: 22px;
}
.Mobile .block-rappel-titre {
    line-height: normal;
    font-size: 22px;
    width: 100%;
}
form#rappel_immediat {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: left;
    width: 50%;
} 

.Mobile form#rappel_immediat {
    width: 100%;
    flex-wrap: wrap;
    gap: 0;
}






section.block2 .grid-col-2 {
    align-items: flex-start;
}
.block2-txt {
    background: #f2f2f2;
    padding: 50px;
    border-radius: 30px;
    height: 100%;
}
.Mobile .block2-txt {
    padding: 20px;
}
.categorie-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}
.Mobile .categorie-list {
    grid-template-columns: repeat(2, 1fr);
}
.categorie-item {
    background: #f2f2f2;
    padding: 15px;
    border-radius: 10px;
}
.categorie-item.active {
    background: #af0101;
}
.categorie-item img {
    width: 100%;
    height: 150px;
    background: #888;
    border-radius: 10px;
    object-fit: cover;
    object-position: bottom left;
    display: block;
}
.categorie-item span {
    background: #af0101;
    border-radius: 50%;
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Mobile .categorie-item span {
    display: none;
}
.categorie-item.active span{
    background: #121212;
}
.categorie-item span .icon:before {
    filter: brightness(0) invert(1);
    width: 15px;  
    height: 15px;
}
.categorie-item a {
    display: flex;
    justify-content: space-between;
    align-items: end;
    font-size: 12px;
    font-weight: 700;
    margin: 20px 0 0;
    gap: 15px;
    bottom: 0;
    position: relative;
    color: #121212;
}
.categorie-item.active a{
    color: #fff;
}
section.block-3 .btn-style-2 a {
    color: #fff;
}
.block-3 .grid-col-2 {
    grid-template-columns: 75% 1fr;
}
.Tablet .block-3 .grid-col-2,
.Mobile .block-3 .grid-col-2{
    grid-template-columns: 100%;
}
.block3-txt p,
.block3-txt h2,
.block3-txt h3 { 
    color: #fff;
    text-align: inherit!important;
}
.Tablet .block3-txt p{
    text-align: justify!important;
}
.block-3-content {
    padding: 50px;
    border-radius: 30px;
    background-color: #888;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
}
.Mobile .block-3-content {
    padding: 20px;
}

.block-4-item {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.block-4-item img {
    width: 100%;
    height: 300px;
    background: #eee;
    object-fit: cover;
    object-position: bottom left;
    display: block;
    border-radius: 30px 30px 0 0;
}
.block4-txt {
    padding: 50px;
}
.Mobile .block4-txt {
    padding: 20px;
}

.pub-content {
    background: #121212;
    padding: 50px;
    border-radius: 30px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.Mobile .pub-content {
    padding: 20px;
    flex-wrap: wrap;
    gap: 20px;
}
.pub-content .h2{
    color: #fff;
    margin: 0;
}
.Tablet .pub-content .h2 { 
  width: 60%;
}

.Mobile section.block-1 .grid-col-2 {
    gap: 0;
}
.Mobile section.Block-mentions {
    margin: 30px 0;
}
body.Mobile.contact section.Block-contact,
body.Mobile.devis section.Block-contact  {
    margin: 30px 0;
}
.Tablet .footer-grid > div.grid-col-3 > .footer-col:first-child {
  grid-column: span 2;
}