* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica', sans-serif;
    transition: all .3s ease;
}


 

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

body {
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    font-size: 14px;
}

h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6 {
    display: block;
    line-height: normal;
    margin-bottom: 20px;
}

h1,.h1{ 
    font-size:30px;
}
h2, .h2 { 
    font-size:24px;
}
h3, .h3 { 
    font-size:20px;
}
h4, .h4 { 
    font-size:16px;
}
h5,.h5 { 
    font-size:14px;
} 

.grid-col-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.grid-col-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.grid-col-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.gap-20{
   gap: 20px;
}
.gap-50{
   gap: 50px;
}
.gap-100{
   gap: 100px;
}
.Mobile .grid-col-2,
.Mobile .grid-col-3{
    grid-template-columns: 100%;
    gap: 30px;
}
a {
    text-decoration: none;
    color: inherit;
}
section{
    padding: 100px 0;
}

 

.Mobile section{
    padding: 50px 0;
}

.container{
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
} 
.Tablet .container{
    max-width: 720px;
}
.Mobile .container{
    width: 100%;
    padding: 0 20px;
} 

.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-phone.png);
}
.icon-mobile:before {
    background: url(../images/img/icon-mobile.png);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail.png);
}
.icon-location:before {
  background: url(../images/img/icon-localisation.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);
}

/* --- HEADER --- */
.header-fixed {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
} 
body:not(.Desktop) .header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
}
.top-bar {
    background-color: #502a16;
    color: #fff;
    padding: 6px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-start;
}

.location-select {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
} 
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 50px;
    height: 90px;
}
body:not(.Desktop) .main-header {
    padding: 0 20px;
    gap: 20px;
    justify-content: space-between;
}
.logo_top {
    padding: 5px 0;
}
.logo  { 
    text-decoration: none; 
    display: flex;
    align-items: center; 
}
.logo img {
    width: 203px;
    height: 80px;
    object-fit: contain;
}
.Desktop nav#menu {
    width: 60%;
    height: 100%;
}
.nav-menu > ul {
    display: flex;
    list-style: none;
    gap: 10px;
    height: 100%;
    align-items: center;
}
body:not(.Desktop) .nav-menu > ul{
    display: block;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.2s;
    text-align: center;
    display: block;
}
body:not(.Desktop) .nav-menu a {
    padding: 10px;
}
.nav-menu > a:hover,
.nav-item.Active > a {
    color: #502a16;
}
.nav-item {
    position: relative;
}
.Desktop .nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
ul.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    background: #fff;
    width: max-content;
} 
.nav-item:hover .nav-submenu{
    display: block; 
}
li.nav-submenu-item a {
    padding: 12px;
}
li.nav-submenu-item.active {
    background: #ffc2a1;
}
li.nav-submenu-item {
    list-style: none;
}

body:not(.Desktop) ul.nav-submenu {
    display: block;
    position: relative;
    top: inherit;
    width: 100%;
}
.header-right {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 25px;
} 
body:not(.Desktop) .header-right {
    display: block;
    position: fixed;
    top: 90px;
    height: fit-content;
    background: #eb8c52;
    width: 100%;
    left: 0;
    padding: 0 20px;
}

body:not(.Desktop) .tel_top {
    justify-content: center;
    display: flex;
    gap: 20px;
    padding: 5px 0;
}
.phone-number {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 16px;
    display: block;
}
body:not(.Desktop) .tel_top a {
    background: #502a16;
    color: #fff;
    padding: 12px;
    border-radius: 900px;
}
body:not(.Desktop) .tel_top .icon:before {
    filter: brightness(0) invert(1);
}


.btn-estimate {
    background-color: #eb8c52;
    color: #090909;
    text-decoration: none;
    font-weight: 700;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
    transition: background 0.2s;
}
.btn-estimate:hover {
    background-color: #ba6233;
}


/* --- HOMESLIDER --- */
.homeslider {
    width: 100%;
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 700px;
}
.slider_img {
    width: 100%;
    height: 700px;
    position: relative;
    top: 0;
    left: 0;
    background-color: #b1b1b1;
    background-size: cover;
    background-position: center bottom;
    z-index: 1;
    background-blend-mode: multiply;
}
body:not(.Desktop) .homeslider,
body:not(.Desktop) .slider,
body:not(.Desktop) .slider_img  {
    height: 600px;
}
.caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.caption > .container {
    height: 100%;
} 
.caption-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
}
body:not(.Desktop) .caption-grid{
    grid-template-columns: 100%;
}
.caption-text {
    padding: 160px 40px 40px 50px;
    color: #502a16;
    position: relative;
}
body:not(.Desktop) .caption-text {
    padding: 0;
    top: 64%;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    padding: 0 20px;
}

.subtitle { 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 25px;
}  
.Desktop.ville .title-slider::first-line, .title-slider {
    font-size: 35px;
    color: #fff;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    margin: 30px 0;
}
.Desktop.ville .title-slider { 
    font-weight: 800;
    margin-bottom: 25px;
    line-height: normal;
    font-size: 32px;
    color: #ffffff;
    font-weight: 500; 
    line-height: normal;
    font-style: italic;
    text-transform: none; 
}
.title-slider span,
.highlight {
    position: relative;
}
.title-slider span::after,
.highlight::after {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    top: calc(100% - 10px);
    height: 15px;
    background: #ffc2a1;
    z-index: -1;
}
.Mobile .title-slider {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
} 
.caption-form {
    background-color: #502a16;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.Mobile .caption-form {
    padding: 40px 0;
}
.caption-form .h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-subtext {
    font-size: 14px;
    color: #eee;
    margin-bottom: 25px;
}

.form-input {
    margin-bottom: 15px;
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    outline: none;
}
.form-input::placeholder {
    color: #eee;
} 
.btn-submit , .btn{
    display: inline-block;
    width: 100%;
    background-color: #eb8c52;
    color: #000;
    border: none;
    padding: 14px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}
.btn {
    width: fit-content; 
    margin: 0; 
}
.btn-submit:hover ,
.btn:hover{
    background-color: #ba6233;
}
.legal-text {
    font-size: 14px;
    color: #fff;
    margin-top: 20px;
}
input#mail{
    display: none;
}

  

body:not(.Desktop) .nav-menu {
    display: none;
    position: fixed;
    top: 148px;
    left: 0;
    width: 100%;
    max-height: 400px;
    background: #fff;
    overflow: scroll;
}
nav.nav-mobile {
    background: #502a16;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
nav.nav-mobile img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.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);
}
.contact-caption {
    position: absolute;
    bottom: 0;
    background: #fff;
    width: 100%;
    left: 0;
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    justify-content: center;
    color: #333;
    height: 95px;
}
.contact-caption > div{
 height: 100%; 
 padding: 25px;
}
.cc_txt {
    background: #DFE3E6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.Desktop .caption:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 95px;
    left: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(to right, #fff 50%, transparent 50%);
}
.contact .caption:before,
.devis .caption:before,
.temoignages .caption:before{
    display: none;
}

textarea.form-input {
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
    height: 100px;
}
.btn-slider {
    margin: 30px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


/* --- FOOTER GLOBAL --- */
.site-footer {
    background-color: #502a16; 
    color: #ffffff;
    padding-top: 40px;
    padding-bottom: 30px;
    position: relative;
} 
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
  gap: 20px;
}
.Mobile .footer-top,
.Tablet .footer-top{    
  justify-content: center;
}

.footer-logo a {
    color: #ffffff;
    font-size: 28px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 5px;
    border-radius: 2px;
}
.logo-icon {
    color: #e31b23;
    font-size: 22px;
}

.footer-cta {
    display: flex;
    align-items: center;
    gap: 30px;
}



footer .btn-estimate { 
    padding: 12px 24px; 
    border-radius: 2px; 
}


.footer-grid {
    display: grid;
    grid-template-columns: 20% 20% 1fr 20%;
    gap: 20px;
    padding: 45px 0 60px 0;
}
.col-title {
    color: #ffb283;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #ffb283;
}   
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    font-size: 14px;
    color: #ffffff;
}
.copyright a {
    color: #ffb283;
    text-decoration: none;
    font-weight: 600;
    font-style: italic;
}
.copyright a:hover {
    text-decoration: underline;
}
.Mobile .copyright a {
    display: block;
    width: 100%;
}
.copyright img {
    width: 150px;
    height: 25px;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #e31b23;
}  
.Tablet .footer-grid {
    grid-template-columns: repeat(2, 1fr); 
}

.Tablet .col-posts {
    grid-column: span 2;
} 
.Mobile .footer-top,
.Mobile .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.Mobile .footer-cta {
    flex-direction: column;
    gap: 15px;
}
.Tablet .footer-grid{
    grid-template-columns: repeat(2, 1fr);
}
.Mobile .footer-grid {
    grid-template-columns: 1fr;
    padding-bottom: 0;
}
.Mobile .col-posts {
    grid-column: span 1;
} 
.cr-item .icon:before {
    filter: brightness(0) invert(1);
}
.cr-item {
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 0 0 30px;
}
 

section.block1 .grid-col-2 {
    align-items: center;
}
.Tablet section.block1 > div > .grid-col-2 {
  align-items: center;
  grid-template-columns: 100%;
}
.block1-img {
    align-items: center;
}
.block1-img img {
    width: 100%;
    height: 400px;
    display: block;
    background: #eee;
    border-radius: 50px 0 50px 0;
    object-fit: cover;
}
.block1-img2 {
    display: grid;
    gap: 20px;
}
.block1-img2 img { 
    height: 300px; 
}

.Mobile .block1-img img{
    height: 250px;
}
.block2 {
    background: #f7f8f9;
}
.block2-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 20px;
    align-items: center;
}
.b2-list {
    display: grid;
    grid-template-columns: 100%;
    gap: 50px;
}
.b2-list-txt {
    padding: 40px;
    background: #fff;
}
.Mobile .b2-list-txt{
    padding: 20px;
}

.b2-list-item {
    display: grid;
    grid-template-columns: 33.33% 1fr;
    gap: 0;
    justify-content: center;
    box-shadow: 0 0 8px #ddd;
    overflow: hidden;
}
.Mobile .b2-list-item{
    grid-template-columns: 100%;
}
.b2-txt {
    background: #ffff;
    padding: 20px;
    box-shadow: 0 0 8px #ddd;
}
.b2-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ddd;
    display: block;
}
.Mobile .b2-list-img img{
    height: 250px;
}
.b2-list-txt span {
    background: #eb8c52;
    width: 80px;
    height: 80px;
    display: flex;
    margin: 0 0 20px;
    align-items: center;
    justify-content: center;
}
.b2-list-txt span img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.btn-content {
    display: flex;
    margin: 20px 0 0;
}

section.block-services {
    background: linear-gradient(to bottom, #fff 61%, #502a16 60%);
}

.services-liste {
    display: flex;
    overflow: hidden;
    gap: 20px;
}
.services-item {
    position: relative;
    display: block;
    border: 1px solid #dddddd;
    background: #f8f8f8;
    padding: 40px 40px 40px;
    border-radius: 20px;
    overflow: hidden; 
    margin: 0 10px;
}
.Tablet .services-item ,
.Mobile .services-item {
    padding: 20px;
}
.Desktop .services-item{
    min-width: 400px;
}
.services-item a {
    font-size: 16px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    margin: 0 0 30px;
}
.Tablet .services-item a{
    font-size: 13px;
}
.cat-icon {
    position: relative;
    display: flex;
    align-items: center; 
    width: 100px;
    height: 100px;
    border: 1px solid #dddddd;
    margin-bottom: 32px;
    justify-content: center;
}
.cat-icon img { 
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.services-item.active {
    background: #fff5ef;
}
.services-item.active .cat-icon {
    background: #eb8c52;
}
.services-item:hover .cat-icon img,
.services-item.active .cat-icon img {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}
.cat-img {
    position: relative;
    display: block;
    border-radius: 20px; 
    overflow: hidden;
}

.cat-img img {
    transition: 0.5s;
    object-fit: cover;
    width: 100%;
    height: 250px;
    display: block;
}
.cat-img img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}
 
.services-item:hover .cat-img img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 0.6;
    filter: blur(0);
}

.cat-img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.services-item:hover .cat-img img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}
.services-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px;
}

.block3-img img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}
.Mobile .block3-img img { 
    margin: auto;
    display: block;
}
.block3-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 30px;
}
.Mobile .block3-grid{
    grid-template-columns: 100%;
}
.block3-item {
    padding: 40px;
    background: #f7f8f9;
}
.Mobile .block3-item{
    padding: 20px;
}
.Tablet .block3 .grid-col-2 {
  grid-template-columns: 100%;
}
a.btn-border {
    padding: 15px;
    border: solid 2px #502a16;
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: #502a16; 
}
a.btn-border:hover {
    background: #502a16; 
    color: #fff;
}
input#mail2 {
    display: none;
}
form#rappel_immediat {
    display: flex;
    align-items: center;
    gap: 10px;
}
form#rappel_immediat .form-input {
    margin: 0;
}
.presta1-item {
    height: 100%;
    background: #502a16; 
    border-bottom: solid 5px #eb8c52;
}
.presta1-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: #eee;
}
.presta1-txt { 
    padding: 40px; 
    color: #fff;
}
.Mobile .presta1-txt{
    padding: 20px;
}
.presta1-txt .btn {
    border-radius: 0;
    width: 100%;
    text-align: center;
}
.presta1 {
    background: linear-gradient(to bottom, #fff 60%, #f7f8f9 60%);
}
body:not(.Desktop) .presta1 .grid-col-3.gap-20 {
  grid-template-columns: 100%;
}
section.presta2 {
    background: #f7f8f9;
    padding-top: 0;
}
section.presta2 p {
    background: #fff;
    padding: 40px; 
}



/*========================= DEBUT AVIS =========================*/

section.section-avis {
    padding: 100px 0;
}
 

.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 { 
    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 .blockFormulaire {
    background: #502a16;
    border-radius: 10px;
    padding: 40px;
    color: #fff;
}
.Desktop .col-right {
    margin-left: 1rem;
}

.temoin .item-tem { 
    padding-bottom: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 0 8px #6262628f;
    padding: 30px;
    border-radius: 10px;
}


h1.Titrecontenu {
    font-size: 36px;
    margin-bottom: 2rem;
}
.Mobile h1.Titrecontenu {
    font-size: 22px;
}
 
#avis_form {
    margin-top: 15px;
}

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

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

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

}
.avis > i {
    background: url(../images/img/rating-sprit.webp) no-repeat;
    display: inline-block;
    height: 23px;
    width: 120px;
    margin-right: 15px;
    margin-bottom: 20px;
}
.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 {
    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;
}
 
.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;
}
.sa-titre {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin: 0 0 40px;
}

.sa-item {
    background: #f7f8f9;
    padding: 50px;
    position: relative;
    margin: 0 20px;
    height: 350px;
}
.Tablet .sa-item,
.Mobile .sa-item { 
    padding: 20px; 
    margin: 0 10px;
}
.sa-item:after{
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;   
    width: 40px;
    height: 40px; ;
     background-image: url(../images/img/right-quote.svg);
     background-size: contain;
}
.sa-content .avis {
    margin: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
.sa-item p {
    font-style: italic;
    font-size: 18px;
    margin: 0 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.avis-nom img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.sa-item .avis b {
    display: flex;
    align-items: center;
    gap: 15px;
}
section.section-avis .btn-content {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}
.titreAvis {
    font-size: 36px;
    font-weight: 600;
    padding: 30px 60px;
    border-bottom: 2px solid #F2F3F6;
    margin-bottom: 30px;
    color: #000;
}
.Mobile .titreAvis {
    font-size: 28px; 
    padding: 0 0 20px; 
    margin: 0;
}
.avis-nom span {
    text-transform: capitalize;
}


._avis_btn a {
    background: #502a16;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    display: block;
    width: max-content;
}
._avis_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0;
}

/*========================= FIN AVIS =========================*/
section.block-contact {
    background: #f7f8f9;
}
.contact-formulaire {
    background: #fff;
    padding: 40px;
    border-top: solid 5px #502a16;
    margin-top: -200px;
    position: relative;
    z-index: 2;
}
.Tablet .contact-formulaire{
    padding: 20px;
    margin-top: -150px;
}
.Mobile .contact-formulaire {
    margin: 0;
}
.contact-formulaire .form-input {
    border-color: #eb8c52;
    color: #000;
}
.contact-formulaire .form-input::placeholder { 
    color: #333;
}
.slide-temoignage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: clip;
}
.contact-list {
    display: block;
    margin: 30px 0;
}
.contact-item {
    font-weight: 600;
    display: flex;
    gap: 10px;
    margin: 0 0 20px;
    align-items: center;
}
.contact-item:last-child {
    margin: 0;
}
.contact-item .icon { 
    width: 50px;
    height: 50px;
    background: #ffb283;
    border-radius: 50%;
}
.footer-title{
    font-weight: 600;
    font-size: 18px;
}
div#Map {
    position: relative;
    z-index: 0;
    height: 450px;
}
.Tablet div#Map ,
.Mobile div#Map { 
    height: 250px;
}

b.titre-album {
    font-size: 30px;
    color: #070707;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.row-rea {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 20px;
}
.Tablet .row-rea {
    grid-template-columns: repeat(3, 1fr);
}
.Mobile .row-rea {
    grid-template-columns: 100%;
}
a.swipebox img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/*----------------------------------------------------------
MENTIONS
---------------------------------------------------------*/
.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;
    margin: 30px 0 15px;
}
.caption-text span.subtitle {
    color: #fff;
}
body:not(.Desktop) .block-contact .grid-col-2 {
  gap: 20px;
} 
/*------------------------------------------------------------------------- 
404 style 
-------------------------------------------------------------------------*/

.blog_pageIntrouvable {
    background: linear-gradient(to bottom, #fff, #ffc2a1);
    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: #502a16;
    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: #502a16;
}
.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;
  }
  .copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.copyright {
    justify-content: center;
}
/*----------------------------------------------------------------------------------- 
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;
}
.Tablet .footer-cta {
  width: 100%;
  justify-content: center;
  flex-direction: column;
}