<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
} 

/* 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;
}
.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{
	font-family: 'Calibri', sans-serif;
	font-size: 16px;
    background: #F9F6EE; 
}
a{
	text-decoration: none; 
}
ul li{
	list-style: none;
}
h1 {
    font-size: 50px;
}
h2{
    font-size: 44px;
    color: #252628;
}
.h3{
    font-size: 20px;
    color: #252628;
    font-weight: 600;
}
p{
	color: #555;
}
i.icon{
    position: relative;
    padding: 12px;
}
.icon:before {
    content: "";    
    background-repeat: no-repeat;
    background-size: contain!important;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.icon-phone:before {
    background: url(../images/img/fixe.webp);
}
.icon-mobile:before {
    background: url(../images/img/portable.webp);
}
.icon-envelope:before {
  background: url(../images/img/mail.webp);
}
.icon-location:before {
  background: url(../images/img/locali.webp);
}
.icon-map:before {
  background: url(../images/img/mail.webp);
}
.container{
	max-width: 1200px;
	width: 100%;
	margin: auto;
}
.logo_menu {
    display: flex;
    justify-content: space-between;
    padding: 10px 70px;
    width: 100%;
    align-items: center;
    position: fixed;
    background: #fff;
    top: 0;
    z-index: 999;
}
ul.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; 
    gap: 20px;
}
.nav {
    width: 80%;
    margin: auto;
}
li.nav-item.active a{
    color: #765023;
}
.nav-submenu {
    opacity: 0;
    visibility: hidden;
    display: none;
    position: absolute; 
    left: inherit;
    width: 322px;
    padding: 0px 0;
    transform: translateY(40px);
    transition: all 500ms ease;
    z-index: 100;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #e8c39e; 
    border-radius: 10px; 
}
li.nav-item {
    padding-left: 23px;
}
.nav-submenu-item {
    position: relative;
    display: block;
    width: 100%;
}
.nav-submenu-item a {
    display: block;
    padding: 10px 20px;
    line-height: 24px; 
    font-size: 16px; 
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    position: relative;
    transition: .3s;
    color: #443833 !important;
} 
.nav-submenu-item:hover a{
    margin-left: 15px;
    transition: .3s;
}
.Desktop .nav-item:hover .nav-submenu {
    transition: all 500ms ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}
.head-right {
    display: flex;
    gap: 35px;
}
li.nav-item a {
    color: #353535;
    font-weight: 600;
    margin: auto;
}
.slide-img {
    background-size: cover;
    background-repeat: no-repeat; 
    height: 850px;
    position: relative; 
}  
.slide-img:before{
    position: absolute;
    content: '';
    background: #252628;
    width: 100%;
    height: 850px;
    opacity: 0.7;
    z-index: -1;
} 
.nav-submenu-item a:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 0px;
    background-image: url(../images/img/fleche-bl.png);
    background-size: cover;
    top: 15px; 
    left: 0;
    transition: .3s;
}
.nav-submenu-item:hover a:before{
	height: 15px;
    left: 0;
    transition: .3s;
}
.btn-rea {
    position: relative;
    display: inline-block;
    overflow: hidden; 
    padding: 20px 40px;
    background-color: transparent;
    color: #583c21;
    font-size: 16px; 
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 30px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear; 
    z-index: 2;
}
.btn-rea:before {
    position: absolute;
    top: 140px;
    left: -50px;
    right: -50px;
    height: 170px;
    content: "";
    background: #252628;
    -webkit-transform: translateY(-55px);
    transform: translateY(-55px);
    border-radius: 50%;
    webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    z-index: 1;
}
.btn-rea:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border-radius: 30px;
    background-color: #e8c39e;
    opacity: 1;
    transform: scaleX(1.0);
    webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    z-index: -1;
}
.btn-rea:hover:before{
    top: 0;
}
.btn-rea:hover:after{
    left: 30px;
    right: 30px;
}
a.btn-rea span {
    position: relative;
    z-index: 1;
}
ul.nav-list li.nav-item:first-child{
    position: relative; 
}
ul.nav-list li.nav-item:first-child:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    background-image: url(../images/img/fleche-clr.png);
    background-size: cover;
    right: -13px;
    top: 14px;
} 
.ligne{
    background: #dae5ec;
    width: 1px;
}
.block_slider { 
    margin-top: 106px;
}
.block_head{
    position: relative;
}
.block_head:before {
    position: absolute;
    content: '';
    background-image: url(../images/img/banner-bottom-bg.png);
    width: 100%;
    height: 133px;
    background-size: cover;
    bottom: 0;
    z-index: 9;
}
.fullImg{
    background-size: cover;
    width: 600px;
    height: 600px;
    background-repeat: no-repeat;
    border-radius: 50%;
    position: relative; 
}
/*.fullImg:before{
    position: absolute;
    content: '';
    background-color: #eaccad;
    width: 600px;
    height: 600px;
    opacity: .6;
    border-radius: 50%;
}*/
.fullImg:after {
    position: absolute;
    content: '';
    width: 343px;
    height: 343px;
    background-size: cover;
    background-image: url(../images/img/slide-shape-6.png);
    animation: rotation 18s infinite linear;
    z-index: -1;
    bottom: 0;
    right: 0;
}
.text_head,
.text_head p {
    color: #fff;
}
.text_head p {
    font-size: 18px;
}
.cap_slide {
    display: flex;
    align-items: center; 
    position: absolute;
    top: 40%;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 9;
}  
.text_head {
    position: relative;
    z-index: 1;
}
.text_head p {
    padding: 30px 0 45px;
}
.text_head,
.slider {
    width: 50%;
}
.shape1 {
    position: absolute;
    top: 0;
    left: 0;
}
.shap-head img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shape2,
.shape3 {
    position: absolute;
    top: 0;
    right: 80px;
    z-index: 0;
    opacity: 0.05;
} 
.shap-head.shape3{
    margin-top: 0;
}
.shape3,
.img-text3 {
    right: 0;
    animation: shape3 infinite 6s;
    margin-top: 77px;
} 
@keyframes shape3 {
    0% { top: -10px; }
    25% { top: 0; }
    50% { top: 10px; }
    75% { top: 0px; }
    100% { top: -10px; }
}
.shape4 {
    position: absolute;
    left: 0; 
    animation: shape4 infinite 5s;
    margin-top: -297px;
}
@keyframes shape4 {
    0% { left: -10px; }
    25% { left: 0; }
    50% { left: 0px; }
    75% { left: 0px; }
    100% { left: -10px; }
}
.shape5 {
    position: absolute;
    left: 0; 
    z-index: 0; 
    bottom: -9px;
} 
.slide_bottom {
    position: relative; 
    margin-top: -132px;
    width: 100%;
}
.shape5 {
    position: relative; 
    z-index: 0;
    margin-top: -500px;
    width: 100%;
}
.shap-head.shape5 img {
    height: 580px;
}
.cat-shape img,
.shape-text1 img {
    animation: rotation 18s infinite linear;
} 
.Mobile .shape-text1 img{
    animation: none;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
a.btn-rea.btn-cont:after{
    background: #fff;
}
a.btn-rea.btn-cont:before{
    background: #e8c39e;
}
a.btn-rea.btn-cont span,
a.btn-rea.btn_real:hover span {
    color: #252628;
}
a.btn-rea.btn-cont:hover span{
    color: #fff;
}
a.btn-rea.btn_real:before{
    background: #fff;
} 
.btn_ {
    display: flex;
    gap: 20px;
}
.prt_cat {
    padding: 120px 0;
}
.text-societe {
    color: #704c21;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 0 10px;
    letter-spacing: 4px;
}
.titre_cat {
    text-align: center;
}
.titre_cat h2 {
    width: 50%;
    margin-bottom: 35px;
    text-align: left;
}
.titre_cat .text-societe {
    text-align: left;
}
.img-cat {
    width: 370px;
    height: 267px; 
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative; 
}
.img-cat:before{
     position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #e8c39e;
    opacity: .6;
    transform: perspective(400px) scaleX(0); 
    transform-origin: center;
    transition: all 300ms linear; 
    z-index: 1;
}
.cat-item:hover .img-cat:before{
    transform: perspective(400px) scaleX(1);
}
.img-cat img {
    width: 370px;
    height: 267px;
    object-fit: cover; 
    position: relative;
    transition: 1s; 
}
.cat-item:hover .img-cat img{
    transform: scale(1.1) rotate(2deg);
    transition: 1s; 
}
.text_cat {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%; 
    background: #ffffff; 
     border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px; 
    padding: 0 40px 40px;
    text-align: center;
    height: 380px;
}
.shape_cat img {
    left: 0;
    position: absolute;
    width: 100%;
    height: 40px;
    object-fit: contain;
    top: -40px;
    z-index: 1;
}
.icon_cat,
.fleche_cat,
.icon_project {
    display: flex;
    justify-content: center;
    position: relative;
    transition: .3s;
}
.icon_cat:before,
.fleche_cat:before,
.icon_project:before{
    position: absolute;
    content: '';
    width: 100px;
    height: 100px;
    background: #fff2e6;
    border-radius: 50px;
}
.icon_project:before{
    background: #fff;
}
.projet1.project-fond .icon_project:before{
    background: #fff2e6;
}
.fleche_cat:before{
    background: #e8c39e;
    opacity: 0.05;
    transition: .3s;
}
.fleche_cat {
    align-items: center;
    top: 20px;
    width: 60px;
    margin: auto;
}
.fleche_cat:hover:before{
    opacity: 1;
    transition: .3s;
}
.fleche_cat:before{
    width: 60px!important;
    height: 60px!important;
} 
.fleche_cat:hover:after{
    display: block; 
}
.icon_cat:after,
.icon_project:after{
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    background: #e8c39e;
    border-radius: 50px;
    transition: .3s;
    transform: translate(-50%, -50%);
    top: 83%;
    left: 50%;
}
.icon_project:after{
    background: #fff2e6;
}
.fleche_cat img {
    position: relative;
    width: 30px;
    height: 30px;
    object-fit: contain; 
}
.fleche_cat:hover img{
    filter: brightness(0) invert(1); 
}
.fleche_cat:hover{
    transform: rotate(360deg);
}
.cat-item:hover .icon_cat:after,
.projet1:hover .icon_project:after{
    width: 100px;
    height: 100px;
    transition: .3s;
} 

.ancre_cat a,
.text-project .h3 {
    color: #252628;
    font-size: 20px;
    display: block;
    margin-bottom: 20px;
    margin-top: 62px;
    transition: .3s;
    height: 50px;
}
.ancre_cat a:hover{
    color: #e8c39e;
    transition: .3s;
}
.cat-item.slick-slide.slick-active {
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1)
} 
.icon_cat img,
.icon_project img {
    position: relative;
    width: 60px;
    height: 60px;
    object-fit: contain;
    top: 33px;
    z-index: 1;
}
.cat-item:hover .icon_cat img{
    filter: brightness(0) invert(1);
}
.titre_cat p {
    margin-bottom: 20px;
}
img.fleche-bl {
    display: none;
}
.block_cat button {
    background: #000;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    font-size: 0;
    cursor: pointer;
    margin-top: 20px;
}
button.slick-next.slick-arrow,
button.slick-prev.slick-arrow{
    position: absolute;
}
button.slick-next.slick-arrow:before,
button.slick-prev.slick-arrow:before{
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background-size: cover;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
button.slick-next.slick-arrow:before{
    background-image: url(../images/img/next.png);
}
button.slick-prev.slick-arrow:before{
    background-image: url(../images/img/prev.png);
}
button.slick-prev.slick-arrow {
    top: -160px;
    right: 160px;
}
 button.slick-next.slick-arrow {
    right: 80px;
    top: -160px;
}
.cat-shape img,
.shape-text1 img {
    filter: invert(1);
    width: 343px;
    height: 343px;
    object-fit: contain; 
} 
.cat-shape {
    margin-top: -192px;
    position: relative;
    z-index: -1;
    margin-left: -177px;
}
section.project {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
section.project:before {
    position: absolute;
    content: '';
    background-image: url(../images/img/thm-shape-1.webp);
    width: 473px;
    height: 690px;
    background-size: cover;
    right: -350px;
    top: -157px;
}
.box-project {
    display: flex;
    gap: 30px;
}
.projet1 {
    position: relative;
    padding: 50px 40px;
}
.projet1:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-radius: 20px;
    transform: perspective(400px) scaleX(0);
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
    transform-origin: center;
    transition: all 500ms linear;
    transition-delay: 0.1s; 
    z-index: -1;
}
.projet1:hover:before{
    transform: perspective(400px) scaleX(1);
     transition: all 300ms linear;
}
.projet1:hover{ 
     transition: all 300ms linear;
}
.projet1.project-fond:before{
    transform: perspective(400px) scaleX(1);
}
.text-project {
    text-align: center;
}
.text-project .h3 {
    margin-bottom: -10px;
}
.titre_cat.titre-project h2 {
    width: 80%;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}
.img-text1 {
    background-size: cover;
    background-repeat: no-repeat;
    width: 50%;
    height: 570px;
    position: absolute;
    left: -150px; 
}
.box-text1 {
    display: flex;
    align-items: center;
}
.box-text1 .vide-text1,
.box-text1 .text1 {
    width: 50%;
}
.text h1 {
    font-size: 44px;
    color: #252628;
}
.text h2 {
    font-size: 30px;
    padding: 0 0 20px;
}
.text1 .titre_cat {
    text-align: left;
} 
.text1 .btn-devis,
.text.text3 .btn-devis {
    margin-top: 40px;
}
.shape-text1 {
    position: absolute;
    margin-left: 235px;
    z-index: -1; 
}
section.sect-text1 {
    position: relative;
    display: flex;
    align-items: flex-end;
}
section.sect-text1:before{
    position: absolute;
    content: '';
    background-image: url(../images/img/thm-shape-2.png);
    width: 54px;
    height: 86px;
    background-size: cover;
    animation: shape3 infinite 5s;
}
.box-text2 {
    background: #eaccad;
    padding: 35px 0;
    position: relative;
    height: 100%;
}
.box-text2:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/img/bf-text2.png);
    background-size: cover;
    top: 0;
    left: 0;
}
.box-text2:after{
    position: absolute;
    content: '';
    background: #252628;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    top: 0;
    left: 0;
}
.text.text2 p {
    color: #252628;
}
.text.text2 {
    text-align: center;
    position: relative;
    color: #fff;
    z-index: 1;
} 
.text.text2 h2,
.text.text2 p{
    color: #fff;
}
.text.text2 h3 {
    padding: 10px 0;
}
.block-text3 {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}
.block-text3:before {
    position: absolute;
    content: '';
    background-image: url(../images/img/slide-shape-6.webp);
    width: 213px;
    height: 213px;
    background-size: cover;
    filter: invert(1); 
    top: 0;
    left: -96px;
    animation: zoom-in-zoom-out 4s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.block-text3 .img-text3,
.text.text3 {
    width: 50%;
}
.text.text3 h2 {
    font-size: 44px;
}
.text.text3 .text-societe {
    text-align: left;
    padding: 0;
}
section.sect-text3 {
    padding: 120px 0;
}
.img-text3{
    position: relative;
}
/*.img-text3:before{
    position: absolute;
    content: '';
    background-image: url(../images/img/thm-shape-7.webp);
    width: 570px;
    height: 410px;
    background-size: cover;
    bottom: 0;
    z-index: -1;
} */
.img-text3 img {
    width: 450px;
    height: 417px;
    object-fit: cover;
    position: relative;
    left: 35px;
    top: 0px;
}
.text.text3 .btn-rea:after,
.text-fond.text6 .btn-rea:after,
.btn-devis.btn-cont-prest .btn-rea:after,
.block-fig-2 .btn-rea:after{
    background: #eaccad;
}
.text.text3 a.btn-rea span,
.text-fond.text6 a.btn-rea span,
.btn-devis.btn-cont-prest span,
.block-fig-2 .btn-rea span{
    color: #252628;
}
.text.text3  a.btn-rea:hover span,
.text-fond.text6  a.btn-rea:hover span,
.btn-devis.btn-cont-prest .btn-rea:hover span,
.block-fig-2 .btn-rea:hover span{
    color: #fff!important;
} 
.text.text3{
    position: relative;
}
.text.text3:before,
.img-text1-prest:before {
    position: absolute;
    content: '';
    background-image: url(../images/img/slide-shape-6.webp);
    width: 300px;
    height: 300px;
    background-size: cover;
    filter: invert(1);
    right: -130px;
    top: -99px;
}
.img-text1-prest:before {
    width: 200px;
    height: 200px;
    top: 30%;
    transform: translate(-50%, -50%);
    left: -119px;
    z-index: -1;
}
.img-check {
     background: #e8c39e; 
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}
.img-check img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.img-check.check-cont{
    background: #eaccad;
}
.check_devis {
    display: flex;
    align-items: center;
    gap: 20px;
}
.check {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.check .h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
section.sect-text4 {
    background: #fff;
}
.block-text4 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}
.img-text4,
.text4 {
    width: 100%;
}
.img-text4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text4 .text-societe {
    text-align: left;
}
.text4 {
    padding: 40px 80px;
    position: relative;
    z-index: 99;
}
.text4:before{
    position: absolute;
    content: '';
    background-image: url(../images/img/testimonials-style2-shape4.png);
    background-size: cover;
    width: 526px;
    height: 559px;
    z-index: -1;
    right: 0;
    top: 0;
}
.text4:after{
    position: absolute;
    content: '';
    background-image: url(../images/img/testimonials-style2-shape3.png);
    background-size: cover;
    width: 469px;
    height: 245px;
    z-index: -1;
    right: 0;
    top: 0;
}
.text4 h3 {
    padding: 20px 0;
    color: #252628;
} 
.text4 .btn-devis {
    margin-top: 30px;
}
section.text_ {
    padding: 120px 0; 
}
.block-5-6 {
    display: flex;
    gap: 60px;
}
.text-fond {
    background: #F9F6EE;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    position: relative;
}
.text5-6 {
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    width: 100%; 
    position: relative;
}
.text5-6:before{
    position: absolute;
    content: '';
    background: #252628;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 0;
    opacity: .7;
    top: 0;
    left: 0;
}
.text-fond h2 {
    font-size: 30px;
    padding: 0 0 30px;
}
.sous-div {
    padding: 50px;
    height: 100%;
} 
.text-fond .btn-devis {
    margin-top: 25px;
}
input.form-input,
textarea.form-input {
    background: transparent;
    border-radius: 30px;
    padding: 20px;
    border: 1px solid #fff;
}
input.btn-devis-gratuit {
    color: #252628;
    background: #fff;
    border: none;
    border-radius: 30px;
    padding: 20px;
    cursor: pointer;
    transition: .3s;
}
input.btn-devis-gratuit:hover{
    background: #252628;
    color: #fff;
    transition: .3s;
}
.grid-devis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
section.devis {
    background: #704c21;
    padding: 80px 0;
}
::placeholder{
    color: #fff;
} 
input{
    outline: none;
    color: #fff;
}
span.titre,
.block-rappel span {
    color: #fff;
    font-size: 44px;
    padding: 0 0 10px;
    display: block;
}
.block-devis {
    display: flex; 
    gap: 60px;
}
.devis_formulaire,
.block-rappel {
    width: 50%;
}
textarea.form-input {
    width: 100%!important;
    margin-top: 15px;
    margin-bottom: 15px;
}
.grid-rappel {
    display: flex;
    flex-direction: column;
}
.grid-rappel input.btn-devis-gratuit {
    margin-top: 15px;
    width: 170px;
}
.shap-devis.shape1-devis,
.shap-devis.shape2-devi {
    position: absolute;
    right: 80px;
    opacity: 0.1;
    margin-top: -487px;
}
.shap-devis.shape1-devis img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shap-devis.shape2-devi {
    right: 0;
}
section#devis{
    position: relative;
    margin-top: -4px;
    z-index: 99;
}
section#devis:before{
    position: absolute;
    content: '';
    background-image: url(../images/img/contact-style1-shape-3.png);
    width: 100%;
    height: 568px;
    background-size: cover;
    opacity: 0.1;
    top: 0;
    z-index: -1;
}
.block-cont,
.block-cont a {
    color: #fff;
}
.block-cont {
    display: flex;
    margin-top: 200px;
    gap: 30px;
}
.footer {
    height: 655px;
    width: 100%;
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
}
.logo-foot,
.cont-foot,
.service-foot {
    width: 33.333%;
}
.titre-foot {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}
ul.services-footer li {
    margin: 15px 0;
}
.cont-foot .classe {
    padding: 15px 0;
}
.cont-foot a,
.cont-foot .classe {
    display: flex;
    align-items: center;
    gap: 15px;
}
.text-agence {
    line-height: 25px;
}
.bloc-copyright,
.bloc-copyright a {
    color: #fff;
    text-align: center;
}
.copyright {
    background: #000;
    padding: 20px 0;
}
.bloc-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.cont-rappel { 
    margin-top: 35px;
}
.cont-rappel a {
    color: #252628;
    font-size: 30px;
    font-weight: 600;
}
.cont-rappel a {
    color: #252628;
    font-size: 30px;
    font-weight: 600;
    background: #fff;
    padding: 20px;
    border-radius: 30px;
} 
.text1-prest h1 {
    color: #252628;
    font-size: 44px;
}
.text1-prest h2 {
    font-size: 30px;
    padding: 0 0 10px;
} 
.text1-prest,
.img-text1-prest {
    width: 50%;
}
.fig-1 {
    display: flex;
    padding: 120px 80px 120px 120px;
    align-items: center;
    justify-content: space-between;
}
.img-text1-prest {
    background: #ddd;
    border-radius: 20px;
    width: 600px;
    height: 500px;
    position: relative;
}
.btn-prest {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.text1-prest {
    position: relative;
    padding-right: 40px;
}
.text1-prest:before,
.text1-prest:after {
    position: absolute;
    content: '';
    background-image: url(../images/img/slide-style2-shape-1.png); 
    background-size: cover;
    z-index: -1;
    left: -115px;
    top: -85px;
}
.text1-prest:before{ 
    background-image: url(../images/img/slide-style2-shape-1.png);
    width: 912px;
    height: 639px; 
}
.text1-prest:after { 
    background-image: url(../images/img/slide-style2-shape-2.png);
    width: 997px;
    height: 329px; 
}
.satisfa p {
    color: #252628;
    font-size: 25px;
    font-weight: 600;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 56%;
}
.satisfa {
    position: absolute;
    left: -50px;
    bottom: 125px;
}
.block-fig-2 {
    display: flex;
    gap: 60px;
}
.text2-fig2 h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.fig-2 {
    background: #fff;
    padding: 120px 0;
}
.text2-fig2 {
    background: #e8c39e;
    border-radius: 20px;
    padding: 157px 30px 30px;
    position: relative;
    margin-top: -149px;
    z-index: 0;
    height: 600px;
}
.text2-fig2 h3 {
    padding: 15px 0;
} 
.img-fig2 {
    width: 450px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.img-fig2:before,
.img-fig2:after{
    position: absolute;
    content: ''; 
    width: 450px;
    height: 60px;
    background-size: cover;
    bottom: 3px;  
}
.img-fig2:before{ 
    background-image: url(../images/img/team-shape-bl.png); 
    bottom: 14px; 
}
.img-fig2:after{ 
    background-image: url(../images/img/team-shape.webp);
    left: 0;  
}
.img-fig2 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}
.fig2-1 {
    width: 100%;
}
.text2-fig2 .btn-devis {
    margin-top: 20px;
} 
.fig-text7 {
    background: #fff;
    padding: 0 0 40px;
}
.text-7 {
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
    padding: 30px;
}
.fig-text {
    padding: 120px 0;
}
.box-text {
    background: #fff;
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
    padding: 40px;
    border-radius: 20px;
}
.sous-box {
    display: flex;
    gap: 60px;
}
.img-text { 
    width: 20%;
}
.img-text img {
    width: 215px;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
}
.prest_text {
    width: 80%;
    position: relative;
}
.prest_text:before{
    position: absolute;
    content: '';
    background: #e8c39e;
    width: 1px;
    height: 100%;
    left: -30px;
}
a.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
b.titre-album {
    width: 100%;
    font-size: 36px;
    color: #000;
    font-weight: bold;
    display: block;
    margin: 15px;
    text-align: center;
    text-transform: uppercase;
}
div#realisations .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.mentions h2 {
    padding: 20px;
    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;
}
div#Maps { 
    width: 100%;
    height: 450px;
    position: relative;
    z-index: 0;
}
.box-contact {
    display: flex;
    gap: 30px; 
    position: relative;
    z-index: 1;
}  
.ContactezNous .projet1.project-fond {
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
    width: 100%;
}
.box-contact a.mailBlockF,
.box-contact .text-project a {
    color: #555;
}
.contact input.form-input,
.contact textarea.form-input { 
    background: #9b9b9b;
}
.block-contact input.btn-devis-gratuit.btn-cont{
    background: #e8c39e;
    color: #fff;
    width: 200px;
} 
.block-contact {
    padding: 80px 0;
    text-align: center;
}
.texte-cont,
.contact h1 {
    margin-bottom: 15px;
}
.cage-contact b {
    margin-bottom: 15px;
    display: block;
}
.cage-contact {
    max-width: 800px;
    margin: auto;
} 
.Mobile ul.nav-list,
.Tablet ul.nav-list {
    flex-direction: column;
    position: absolute;
    width: 100%;
    left: 0;
    top: 154px;
    background: #fff; 
    gap: 0px;
}
.Mobile ul.nav-submenu, 
.Tablet ul.nav-submenu {
    visibility: visible;
    opacity: 1;
    display: none;
    position: static;
    width: 100%;
    transform: none;
    border-radius: 0px;
}
.Mobile .head-right .btn-devis,
.Mobile .ligne,
.Tablet .head-right .btn-devis,
.Tablet .ligne {
    display: none;
}
.Mobile .logo_menu .logo,
.Tablet .logo_menu .logo {
    display: flex;
    align-items: center;
}
.Mobile .logo_menu,
.Tablet .logo_menu{
    padding: 10px 20px;
}
.Mobile .nav,
.Tablet .nav{
    display: none;
}
.Mobile .nav.show,
.Tablet .nav.show{
    display: block;
}
.Mobile span.nav-click i::before, 
.Tablet span.nav-click i::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/img/fleche-clr.png);
    background-size: cover;
    right: 10px;
    top: 10px;
}
.Mobile li.nav-item,
.Tablet li.nav-item {
    padding: 0;
    margin-left: -18px;
}
.Mobile ul.nav-list li.nav-item:first-child:before,
.Tablet ul.nav-list li.nav-item:first-child:before{
    display: none;
}
.Mobile li.nav-item a,
.Tablet li.nav-item a {
    padding: 10px 40px;
    justify-content: center;
    display: flex;
    text-align: center;
}
.nav-mobile {
    position: absolute;
    right: 20px;
}
.Mobile .tel-mob,
.Tablet .tel-mob {
    position: fixed;
    top: 128px;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 90%;
}
.Mobile .tel-mob a,
.Tablet .tel-mob a {
    background-color: #9c6a2e;
    padding: 15px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin: 0 7px;
}
.Mobile .home-slider {
    background: #555;
    width: 100%;
    height: 550px;
}
.Mobile h1,
.Mobile h2 {
    font-size: 30px;
}
.Mobile .fullImg,
.Mobile .fullImg:before { 
    width: 100%;
    height: 550px; 
    border-radius: 0px;
    position: absolute;
    top: 24px;
    left: 0;
} 
.Mobile .fullImg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: red;
    z-index: 2;
}
.Mobile .fullImg:before{
    background: #000;
}
.Mobile .text_head,
.Mobile .slider  {
    width: 100%;
    padding: 0 15px;
}
.Mobile .shap-head.shape3,
.Tablet .shap-head.shape3,
.Mobile .fullImg:after,
.Tablet .fullImg:after{
    display: none;
}
.Mobile .shape1,
.Tablet .shape1 {  
  display: none; 
}
.Mobile .slider {
    position: absolute;
    top: -143px;
}
.Mobile .cap_slide{
    width: 100%;
    top: 44%;
} 
.Mobile .btn_,
.Tablet .btn_ { 
    gap: 10px;
    flex-direction: column;
    text-align: center;
}
.nav-mobile img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.titre_cat.titre-project .text-societe {
    text-align: center;
}
.Mobile section.project {
    padding: 80px 0; 
}
.Mobile .titre_cat.titre-project h2,
.Tablet .titre_cat.titre-project h2{
    width: 100%;
}
.Mobile .box-project {
    flex-direction: column;
    padding: 0 20px;
    position: relative;
    z-index: 99;
}
.Mobile .projet1 { 
    padding: 20px 20px;
}
.Mobile .projet1 {
    background: #fff;
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
    border-radius: 20px;
}
.Mobile .icon_project:before {
    background: #fff2e6;
}
.Mobile .box-text1,
.Tablet .box-text1 { 
    flex-direction: column;
}
.Mobile .box-text1 .vide-text1,
.Tablet .box-text1 .vide-text1{
    display: none;
} 
.Mobile .box-text1 .text1,
.Tablet .box-text1 .text1 {
    width: 100%;
    padding: 20px;
}
.Mobile .img-text1,
.Tablet .img-text1{
    display: none;
}
.Mobile .shape-text1 { 
    margin-left: 0; 
}
.Mobile section.sect-text1:before{
    display: none;
}
.Mobile .prt_cat {
    padding: 80px 0 0;
}
.Mobile .box_cat,
.Tablet .box_cat {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.Tablet .box_cat {  
    grid-template-columns: repeat(3, 1fr);  
}
.Mobile .img-cat,
.Tablet .img-cat,
.Mobile .shape_cat,
.Tablet .shape_cat {
    display: none;
}
.Mobile .text_cat{
    padding: 15px;
    border-radius: 20px;
    height: 255px;
}
.Mobile section.sect_cat {
    padding: 0 20px;
}
.Mobile .titre_cat h2{
    width: 100%;
}
.Mobile .titre_cat { 
    display: none;
}
.Mobile .ancre_cat a {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 50px;
}
.Mobile .block_head:before { 
    bottom: -37px;
    z-index: 99;
}
.Mobile .box-text2{
    padding: 25px 20px;
}
.Mobile .block-text3{
    flex-direction: column;
}
.Mobile section.sect-text3 {
    padding: 0 20px 30px;
}
.Mobile .block-text3 .img-text3,
.Tablet .block-text3 .img-text3, 
.Mobile .text.text3,
.Tablet .text.text3 {
    width: 100%;
}
.Mobile .img-text3 img {
    width: 100%;
    height: 295px; 
    left: 0; 
}
.Mobile .img-text3:before { 
    width: 100%;
    height: 232px; 
}
.Mobile .text.text3:before, 
.Mobile .img-text1-prest:before{
    right: 0;
    z-index: -1;
}
.Mobile .text.text3 h2 {
    font-size: 30px;
}
.Mobile .block-text4,
.Tablet .block-text4 {  
    grid-template-columns: repeat(1, 1fr);
}
.Mobile .block-devis{
    flex-direction: column;
}
.Mobile .text4{
    padding: 20px;
}
.Mobile .img-text4,
.Tablet .img-text4 {
    width: 100%;
    height: 250px; 
}
.Mobile .devis_formulaire, 
.Mobile .block-rappel {
    width: 100%;
}
.Mobile section.devis { 
    padding: 80px 020px;
}
.Mobile .grid-devis { 
    grid-template-columns: repeat(1, 1fr); 
}
.Mobile span.titre, 
.Mobile .block-rappel span { 
    font-size: 30px; 
}
.Mobile section.text_ {
    padding: 80px 20px; 
}
.Mobile .block-5-6,
.Mobile .bloc-copyright { 
    flex-direction: column;
}
.Mobile .sous-div,
.Mobile .text-fond {
    padding: 20px; 
}
.Mobile .block-cont {   
    margin-top: 95px; 
    flex-direction: column;
    padding: 0 20px;
}
.Mobile .logo-foot, 
.Mobile .cont-foot, 
.Mobile .service-foot {
    width: 100%;
}
.Mobile .footer {
    height: 835px; 
}
.Mobile section#devis:before{
    left: 0;
}
.Mobile .fig-1,
.Tablet .fig-1 { 
    padding: 80px 20px; 
    flex-direction: column;
    gap: 25px;
}
.Tablet .fig-1{
    padding: 0 20px 40px;
}
.Mobile .text1-prest,
.Tablet .text1-prest, 
.Mobile .img-text1-prest,
.Tablet .img-text1-prest {
    width: 100%;
}
.Mobile .btn-prest { 
    gap: 10px; 
    flex-direction: column;
}
.Mobile .img-text1-prest { 
    height: 270px; 
}
.img-text1-prest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Mobile .satisfa { 
    left: 0;
    bottom: 0px;
}
.Mobile .satisfa p { 
    font-size: 20px; 
    padding: 24px;  
}
.Mobile .fig-text {
    padding: 0 20px 80px;
}
.Mobile .sous-box { 
    flex-direction: column;
}
.Mobile .box-text{
    padding: 20px;
}
.Mobile .prest_text:before{
    display: none;
}
.Mobile .prest_text {
    width: 100%; 
}
.Mobile .prest_text h2 {
    margin-bottom: 20px;
}
.Mobile .fig-2 { 
    padding: 80px 20px;
}
.Mobile .block-fig-2,
.Tablet .block-fig-2{
    flex-direction: column;
}
.Mobile .img-fig2,
.Tablet .img-fig2,
.Mobile .img-fig2:before,
.Tablet .text1-prest::before, 
.Mobile .img-fig2:after,
.Tablet .text1-prest::after{
    width: 100%;
}
.Tablet .img-fig2:before,
.Tablet .img-fig2:after{
    display: none;
}
.Mobile .text2-fig2 { 
    padding: 157px 20px 30px; 
    height: 100%;
}
.Mobile .text1-prest:after,
.Mobile .text1-prest:before{
    width: 100%;
}
.Mobile div#realisations .row { 
    grid-template-columns: repeat(1, 1fr); 
    padding: 20px;
}
.Mobile b.titre-album,
body.Mobile.mentions h2{
    padding-top: 70px;
}
body.Mobile.mentions ol { 
    padding: 0 30px;
}
.Mobile .ContactezNous { 
    padding: 20px;
}
.Mobile div#Maps { 
    height: 250px;  
}
.Mobile .box-contact { 
    flex-direction: column;
    margin-top: 30px;
}
.Mobile .map-cont {
    padding-top: 60px;
}
.Tablet span.nav-click i::before{
    right: 0;
}
.Tablet h1 {
  font-size: 44px;
}
.Tablet .fullImg,
.Tablet .fullImg::before { 
  width: 380px;
  height: 380px; 
}
.Tablet .slide-img{
    height: 750px;
}
.Tablet .cap_slide {
  top: 40%;
  width: 100%;
  padding: 0 20px;
}
.Tablet section.project {
  padding: 0 0 40px; 
}
.Mobile section.project .titre_cat.titre-project {
    display: block;
}
.Tablet .container {
  padding: 0 20px;
}
.Tablet .projet1 { 
  padding: 30px 20px;
}
.Tablet .text-project .h3 { 
  height: 66px;
}
.Tablet .titre_cat p{
    display: none;
}
.Tablet .text_cat {  
  padding: 40px 20px; 
  height: 335px;
}
.Tablet .titre_cat h2{
    width: 100%;
}
.Tablet .prt_cat {
  padding: 100px 0 0;
}
.Tablet .block-text3 { 
  flex-direction: column;
}
.Tablet section.sect-text3 {
  padding: 0 0 80px;
}
.Tablet section.sect-text4 { 
  padding: 0 0 40px;
}
.Tablet .img-text4 img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 30px;
}
.Tablet .text.text3::before{
    right: 0;
}
.block-rappel {
    position: relative;
    z-index: 1;
}
.devis_formulaire {
  position: relative;
  z-index: 1;
}
.Tablet section.devis { 
  padding: 60px 0;
}
.Tablet span.titre, 
.Tablet .block-rappel span{
    font-size: 25px;
}
.Tablet section.text_ {
  padding: 80px 0; 
}
.Tablet section#devis::before{
    height: 450px;
}
.Tablet .sous-div,
.Tablet .text-fond {
  padding: 25px; 
}
.Tablet .block-5-6 { 
  gap: 20px;
}
.Tablet .img-text1-prest{
    height: 350px;
}
.Tablet .satisfa { 
  left: 40px;
  bottom: 40px;
}
.Tablet .fig-text {
  padding: 40px 0;
}
.Tablet h2{
    font-size: 30px;
}
.Tablet .img-fig2 img{
    height: 250px;
}
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;
}

.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 &gt; div {
  height: 100%;
  color: #333
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #000000;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #000000;
}
.blog_pageIntrouvable a {
    color: #333
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
#noDesktop { display: none; }
@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;
  }
}
.img-text4 {
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.Mobile .img-text img,
.Mobile .img-text{
    width: 100%;
}
.Mobile .sous-box { 
    gap: 30px;
}
.Mobile .text1-prest,
.Tablet .text1-prest { 
    padding-right: 0;
}
.Tablet .sous-box { 
  gap: 136px;
}
.Mobile .text_head p {
    padding: 12px 0;
}
body.Mobile.contact .fullImg:before,
body.Mobile.realisations .fullImg:before,
body.Mobile.realisations .fullImg,
body.Mobile.mentions .fullImg:before,
body.Mobile.mentions .fullImg{
    top: 0;
} 
.shap-devis.shape2-devi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a.logo img {
    width: 200px;
    height: 80px;
    object-fit: contain;
} 
.Tablet ul.nav-list li.nav-item:first-child { 
  width: 100%;
}
.Tablet .nav-submenu {
  margin-left: 9px;
} 
.tel-top a {
    color: #353535;
    font-size: 18px;
    font-weight: 600;
    display: block;
}
.map-cont {
    display: none;
}
.Mobile .block-contact,
.Tablet .block-contact {
    padding: 20px 0; 
}
.pastilles_ {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}
.pastilles_ img {
    width: 125px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 7px;
}

.Mobile .text_head h1,
.Mobile .text_head p {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px !important;
    border-radius: 20px;
}

</pre></body></html>