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_icon:before {
    background: url(../images/img/fixe.png);
}
.icon-mobile:before {
    background: url(../images/img/portable.png);
}
.icon-email_icon:before {
  background: url(../images/img/mail.png);
}
.icon-location:before {
  background: url(../images/img/locali.png);
}
.icon-pin_icon:before {
  background: url(../images/img/adresse.png);
}
.icon-hours_icon:before {
  background: url(../images/img/hours.png);
}


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

body, html {
    font-family: "Calibri", sans-serif;
    line-height: 1.6;
    font-size: 16px;
    color: #535353;
    background-color: #f4f4f4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
}
h1, h2, h3, h4, .h2, .h3, .h4 { 
    font-weight: 700;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --white : white;
    --black : black;
    --second-color : #5d4a39;
    --primary-color : #a96f47;
}
/* 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;
}

/*
Header
*/
.header {
    background-color: var(--white);
    position: relative;
}
.Mobile .header {
    position: fixed;
    z-index: 2;
    width: 100%;
}
.top-nav {
    background-color: var(--second-color);
    color: var(--white);
}
.contact-top span {
    padding: 10px 0;
    margin-right: 15px;
    display: inline-block;
}
.contact-top span .icon {
    margin-right: 3px;
    vertical-align: middle;
    margin-top: -4px;
    display: inline-block;
}
.mobile-tel {
    text-align: center;
    position: absolute;
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}
.mobile-tel span {
    display: inline-block;
    background: var(--second-color);
    color: var(--white);
    padding: 7px 15px;
    border-radius: 4px;
}
nav,
.infos-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-list {
    display: flex;
    justify-content: flex-start;
    align-items: center; 
}



.nav-list li.nav-item {
    position: relative;
    margin-right: 1rem;
}

.nav-list li.nav-item a {
    color: var(--black);
    display: block;
    transition: all 0.3s linear;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
}
.nav-list li.nav-item > a {
    padding: 10px 0;
    text-align: center;
    position: relative;
}
.nav-list li.nav-item > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    transition: all 0.3s linear;
    background-color: var(--primary-color);
    width: 0;
}
.nav-list li.nav-item a:hover,
.nav-list li.nav-item.active > a {
    color: #5d4a39;
}
.nav-list li.nav-item.active > a::before,
.nav-list li.nav-item > a:hover::before {
    width: 70px;
}

/* sous-menus */
.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 260px;
    z-index: 1000;
}

.nav-submenu li {
    margin: 0;
}

.nav-submenu li a {
    padding: 0.7rem 1.5rem;
    transition: background-color 0.3s ease;
}
.nav-submenu li a:hover,
.nav-submenu li.active a {
    background-color: var(--primary-color);
    color:var(--white) !important;
}

.nav-list li:hover > .nav-submenu {
    display: block;
}

.Desktop .nav-list li.has-menu > a::after,
.nav-click::after {
    content: "▼";
    font-size: 0.8em;
    margin-left: 0.5rem;
}
.nav-click {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    height: 49px;
    width: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.hamburger {
    display: none; 
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--second-color);
}

/* Mobile */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-list {
        display: none; 
        flex-direction: column;
        width: 100%;
        background-color: var(--white);
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 10;
    }

    .nav-list.active {
        display: flex; 
    }

    .nav-list li.nav-item {
        margin: 0;
        text-align: center; 
    }   

    .nav-list li a {
        padding: 8px 0 !important;
    }

    .nav-list li ul {
        position: static;
    }

    .nav-list li ul li a {
        padding: 0.5rem 1rem;
    }
}
.container {
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px; 
    box-sizing: border-box; 
}
.Mobile .container,
.Tablet .container {
    padding: 0 15px;
}

/*
Rappel
*/
.rappel_top {
    display: flex;
}
.rappel_top strong {
    margin-right: 10px;
}
.form-input {
    border: 1px solid;
    padding: 7px 10px;
}
.form-input:focus {
    outline: 0;
    box-shadow: none;
}
.btn.btn-submit {
    cursor: pointer;
    border: 1px solid transparent;
    padding: 7px;
    background: var(--primary-color);
    color: #000;
    font-weight: 600;
}

/*
Form
*/
.devis-block {
  border: 3px solid #ededed;
}
.devis-container {
  background-color: #f7f7f7;
  padding-top: 40px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
}
.title-devis .h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2.5px;
  line-height: 30px;
  color: var(--black);
  margin-bottom: 10px;
}
.title-devis span {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  color: #545454;
  margin-bottom: 20px;
  display: block;
}
.devis-container #FormDevis span {
    margin-bottom: 10px;
    padding-top: 5px;
    display: block;
}
.devis-container .form-control {
    border-radius: 0px;
    color: #000;
    padding: 10px 10px 10px 35px;
    font-weight: normal;
    background-color: rgba(255, 255, 255, 0.65);
    border: 1px solid #e5e5e5;
    font-size: 13px;
    -webkit-transition: border linear .2s, box-shadow linear .2s;
    -moz-transition: border linear .2s, box-shadow linear .2s;
    -o-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    outline: none;
    letter-spacing: 1px;
    width: 100%;
}
.devis-container .form-control:focus {
  border-color: var(--primary-color);
}
.devis-container  .btn-devis {
  background: var(--primary-color);
  border: none;
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  width: 100%;
  padding: 15px;
  cursor: pointer;
}
.devis-container  .btn-devis:hover {
  background: #5d4a39;
}
.devis-container input.btn.btn-devis:hover {
    color: #fff;
}
#mail,
#mail2 { display: none; }
.mailBlock {
    text-align: center;
    padding: 7px 0;
}
.villes .mailBlock {
    background-color: var(--primary-color);
    color: white;
}
/*
Slider
*/
.hero-container {
    position: relative;
    overflow: hidden;
    height: 700px;
}
.Mobile .hero-container {
    padding-top: 8rem;
    height: 500px;
}
.slider-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.item--slider {
    height: 700px;
    background-color: #f8f8f8;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.Mobile .item--slider{
    height: 500px;
}
.prestationsBlock,
.prestationsBlock .item--slider {
    height: 700px;
}
.hero-container .container {
    position: relative;
    height: 100%;
    display: table;
}
.hero-container .container > div {
    display: table-cell;
    vertical-align: middle;
}
.hero-container.prestationsBlock .container > div {
    text-align: center;
}
.Desktop .slider-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.Tablet .slider-text {
    display: flex; 
    align-items: center;
    gap: 40px;
}
.Desktop .left-slider-text,
.Tablet .left-slider-text {
    max-width: 60%;
    flex: 0 0 60%;
}
.title-slider .h1 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    background-color: rgba(93, 74, 57, 0.6);
    display: inline-block;
    padding: 40px 150px 50px;
    -webkit-clip-path: polygon(8% 0, 100% 0%, 92% 100%, 0% 100%);
    clip-path: polygon(8% 0, 100% 0%, 92% 100%, 0% 100%);
}
.Mobile .title-slider .h1,
.Tablet .title-slider .h1 {
    font-size: 30px;
    padding: 40px 17px 50px;
    text-align: center;
}
.Mobile .title-slider .h1 { 
    padding: 20px 17px 20px; 
}
.Mobile.villes .title-slider .h1, 
.Tablet.villes .title-slider .h1 {
    padding: 40px 20px 50px;
    text-align: center;
}
.prestationsBlock .title-slider .h1 {
    max-width: 800px;
}
.right-slider-text {
    max-width: 35%;
    flex: 0 0 35%;
}
.categories_ {
    background-color: var(--primary-color);
}
.categorie-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.service-block .slick-list {
    padding-top: 60px;
    padding-bottom: 60px;
}
.categorie--item {
    flex: 1 1 20%;
    display: flex;
    justify-content: center;
    height: 210px;
    background: #a96f47;
    transition: background-color 0.3s ease;
}
.categorie--item img {
    width: 90px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
}
.categorie--item > a {
    display: block;
    height: 100%;
    padding: 20px;
}
.categorie--item.active,
.categorie--item:hover {
    background-color: #5d4a39;
}
.titre-categorie {
    color: #000;
    text-transform: uppercase;
    display: block;
    text-align: center;
    font-weight: 900;
    font-size: 15px;
}
.categorie--item.active span,
.categorie--item:hover span {
    color: #fff;
}
.service-box {
    text-align: center;
    padding: 0 2rem;
}

.service-box .item-img {
    position: relative;
    border-radius: 50%;
    margin-bottom: 22px;
    display: inline-block;
    border: 10px solid #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.service-box:hover .item-img {
    border-color: #5d4a39;
    animation: pulse 3000ms infinite;
}

.service-box .item-img img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
}
.service-box .item-img .sl-number {
    position: absolute;
    top: -15px;
    right: 4px;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    height: 55px;
    width: 55px;
    line-height: 55px;
    border-radius: 50%;
    background-color: #5d4a39;
    padding: 10px;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #5d4a39;
    box-shadow: 0 0 0 0 #5d4a39;
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #5d4a39;
    box-shadow: 0 0 0 0 #5d4a39;
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
  }
}
.service-box .item-content {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.slick-dots {
    text-align: center;
}
.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.slick-dots li button {
    text-indent: -9999px;
    cursor: pointer;
    padding: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 2px solid var(--white);
    background: none;
}
.slick-dots li:hover button,
.slick-dots li.slick-active button {
    border-color: var(--primary-color);
}
.slick-dots li:hover button:focus {
    outline: 0;
    box-shadow: none;
}

/*
Contenu
*/
.section {
    padding: 60px 0;
    position: relative;
}
.section h1 {
    color: var(--primary-color);
    font-size: 36px;
}
.section h2 {
    color: var(--second-color);
    font-size: 24px;
}
.section1 {
    background-color: var(--white);
}
.Desktop .section1--item,
.Tablet .section1--item {
    padding-left: 3rem;
    border-left: 9px solid var(--second-color);
}
.rev_ {
    flex-direction: row-reverse;
}
.Desktop .section2--wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    margin-bottom: 60px;
    align-items: center;
}
.section2--item,
.section4--item {
    flex: 1 1 50%;
}
.Desktop .section2--item figure {
    margin-right: 3rem;
}
.Desktop .rev_ .section2--item figure {
    margin-right: 0;
    margin-left: 3rem;
}
.section2--item figure img {
    -webkit-box-shadow: 0px 11px 29px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 11px 29px 0px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}
.services_ {
    background-color: var(--second-color); 
    background-repeat: no-repeat;
    background-size: cover;
}
.services_ .h2,
.photos-realisations .h2 {
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    color: var(--second-color);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}
.Mobile .services_ .h2,
.Mobile .photos-realisations .h2 {
    font-size: 24px;
}
.services_ .h2 {
    color: #fff;
}
.rea_wrap,
.section1--flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.rea_item {
    flex: 1 1 30%;
    width: 30%;
}
.project-box {
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px;
}
.project-box .item-img {
    position: relative;
}
.project-box .item-img img {
    border-radius: 4px;
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.project-box .item-img:after {
    content: "";
    height: 86%;
    width: 86%;
    background-color: rgba(8, 44, 75, 0.8);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%) scale(1.2);
    margin: 0 auto;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.project-box .item-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%) scale(0.5);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.project-box:hover .item-img img {
    transform: scale(1.1);
}
.project-box:hover .item-img:after {
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%) scale(1);
}
.project-box:hover .item-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%) scale(1);
}
.project-box .item-content span {
    display: block;
    max-width: 70%;
    margin: auto;
    color: white;
    font-weight: 300;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 1px;
}

.section3 {
    padding: 0 !important;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.Mobile .section.section3,
.Tablet .section.section3 {
    padding: 40px 0 !important;
}
.Mobile .section.section3 .container,
.Tablet .section.section3 .container {
    position: relative;
}
.bgSection3 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgba(93, 74, 57, 0.8);
}
.Desktop .bgSection3 {
    width: 55%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 80% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0%, 80% 100%, 0 100%);
    padding-left: calc((100% - 1170px) / 2);
}
.Desktop .wrap--section3 > div {
    padding: 80px;
    position: relative;
    width: 45%;
    color: var(--white);
}
.wrap--section3 > div h2 {
    color: var(--white);
}
.Mobile .wrap--section3,
.Tablet .wrap--section3 {
    color: white;
}

.section4 {
    background-color: var(--white);
}
.Desktop .wrap--section4 {
    display: flex;
    margin-bottom: 60px;
}
.section4--item > div {
    padding-left: 25px;
    padding-right: 25px;
}
.section4--item img {
    border-radius: 7px;
    display: block;
    width: 560px;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}
.section4--item .desc {
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    height: 100%;
    padding: 20px;
    background: #fff2f2;
}
.Mobile .section4--item,
.Tablet .section4--item {
    margin-bottom: 20px;
}
.section1_item:nth-child(1) {
    flex: 2;
}
.section1_item:nth-child(2) {
    flex: 1;
}
.section1_item h1::after {
    content: "";
    display: block;
    width: 45px;
    margin: 1rem 0 2rem;
    border-bottom: 3px solid var(--primary-color);
}
.btn-block {
    text-align: center;
}
a.btn {
    display: inline-block;
    padding: 12px 40px;
    margin: 0 15px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.Mobile a.btn {
    display: block;
    margin: 15px;
    text-align: center;
}
.btn-outline {
    border: 1px solid var(--primary-color);
    color: #5d4a39;
}
.btn-outline:hover {
    background-color: #5d4a39;
    color: var(--white); !important;
}
.btn-contact {
    background-color: var(--second-color);
    color: var(--white); !important;
}
.btn-contact:hover {
    background-color: transparent;
    border: 1px solid #fff; 
}
.section2--item .btn {
    margin-left: 0;
    margin-top: 1.2rem;
}

/*
Footer
*/
#footer {
    padding: 60px 0 10px;
    background-color: var(--second-color);
}
.info-footer {
    margin-top: 2rem;
}
.info-footer > div {
    display: flex;
    margin-bottom: 14px;
    border-bottom: 1px solid #fff;
    padding-bottom: 14px;
}
.info-footer > div:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.info-footer > div .icon {
    margin-right: 7px;
    padding-top: 5px;
}
.info-footer > div span em {
    background: #a96f47;
    padding: 1px 5px;
    color: #000;
}
.footer_content {
    color: var(--white);
}
.Desktop .footer_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
}

.footer_box {
    width: 100%;
}

.Desktop .footer_box:not(:last-child),
.Tablet .footer_box:not(:last-child) {
    border-right: 1px solid rgba(204, 204, 204, 0.2);
    margin-right: 18px;
    padding-right: 50px;
}

.footer_title {
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
}
.footer_title::after {
    content: "";
    position: absolute;
    top: 48%;
    height: 2px;
    width: 40px;
    background-color: var(--white);
    margin-left: 10px;
}
.footer_list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.footer_list li {
    transition: all .3s ease;
}
.footer_list a {
    letter-spacing: 0px;
    padding: 3px 0;
    margin: 2px 0;
    transition: all .3s ease;
    white-space: nowrap;
}
.footer_list li:hover a {
    text-decoration: underline;
}
.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 30px 0;
    color: var(--white);
    border-top: 1px solid #fff;
    margin-top: 40px;
}
.Mobile .copyright {
    display: block;
    text-align: center;
}
.copyright a {
    color: var(--white);
}
.copyright img {
    width: 150px;
    height: 25px;
    object-fit: contain;
}


/**
404
*/
.blog_pageIntrouvable {
    background: var(--white);
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 200000 !important;
    text-align: center;
    top: 0;
}
.blog_pageIntrouvable .d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.blog_pageIntrouvable span {
  color: var(--second-color);
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: var(--primary-color);
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--second-color);
}
.blog_pageIntrouvable a {
    color: var(--primary-color);
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
@media(max-width: 767px) {
  .blog_pageIntrouvable {
    font-size: 14px;
  }
  .blog_pageIntrouvable a {
      display: block;
  }
  .blog_pageIntrouvable p {
      font-size: 17px;
      letter-spacing: 5px;
      margin-top: -10px;
  }
  .blog_pageIntrouvable h1 {
    font-size: 100px;
  }
}
.row-rea {
    display: flex;
    flex-wrap: wrap;
}
.col-3 {
    padding: 15px;
}
.Desktop .col-3 {
    max-width: 25%;
    flex: 0 0 25%;
}
.Tablet .col-3 {
    max-width: 33.3333%;
    flex: 0 0 33.3333%;
}
.swipebox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid #ddd;
}
.Mobile .swipebox {
    height: inherit;
}

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

b.titre-album {
    display: block;    
    color: #000;    
    text-align: center;
    font-size: 1.5rem;    
    margin-bottom: 1.5rem;
}
#Messages {
    background: black;
    text-align: center;
    position: relative;
    z-index: 99;
}
#Messages p {
    color: white;
    font-weight: bold;
    margin: 0;
    padding: 25px 0;
}
#realisations,
.ContactezNous {
    padding: 60px 0;
}
.ContactezNous b {
    display: block;
    margin-top: 1rem;
    color: black;
    font-size: 18px;
}
.ContactezNous .Devisgratuit {
    margin-top: 1rem;
}
.ContactezNous em {
    margin: 0 15px;
}
.ContactezNous #Map {
    min-height: 300px;
    height: 100%;
    z-index: 0;
}
.Desktop .grid-row,
.Tablet .grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}
.ContactezNous .form-input {
    border: 1px solid #dddddd;
    padding: 17px 10px;
    display: block;
    width: 100%;
    margin: 7px 0;
}
.Desktop header.header .container {
    max-width: 1500px;
}
.text-agence {
    margin-top: 40px;
    border: 1px solid #fff;
    padding: 15px;
}
.btn_head {
    margin-top: 30px;
    text-align: center;
}
.sl-number img {
    width: 35px !important;
    height: 35px !important;
    object-fit: contain;
}
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;
}
.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;
}
.Desktop a.logo {
    width: 30%;
}
.Mobile a.logo img {
    width: 167px;
    height: 76px;
}
.Mobile li.nav-item.active.has-menu {
    padding: 0 35px;
}
.Mobile ul.nav-submenu,
.Tablet ul.nav-submenu {
    border: 1px solid #04457d;
    padding: 10px;
}
.Mobile .categorie-block { 
    grid-template-columns: repeat(2, 1fr);
}
.Mobile .copyright a { 
    display: block;
    margin: 10px 0;
    text-align: center;
}
.Mobile.mentions h2{ 
    padding-top: 146px;
}
.Mobile .ContactezNous h1,
.Mobile b.titre-album {
    padding-top: 85px;
}
.Mobile .ContactezNous #Map { 
    margin-top: 20px;
}
.Mobile .row-rea {
    display: block; 
}
.Mobile .row-rea .col-3 {
    padding: 0;
}
.Tablet .nav-click { 
  top: -6px;
  right: -58px; 
}
.Tablet .rappel_top {
  display: block;
}
.Tablet .rappel_top .form-input,
.Tablet .btn.btn-submit {
  width: 100%;
}
.Tablet .header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 9;
}
.Tablet .hero-container { 
  margin-top: 228px;
}
.Tablet .section2--item figure img  {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 30px;
  margin-bottom: 30px;
}
.Tablet .service-box .item-img img { 
  width: 170px;
  height: 170px; 
}
.Tablet .section4--item img{
    width: 100%;
}
.Mobile .info-footer,
.Tablet .info-footer { 
    border-bottom: 1px solid #fff;
    padding: 0 0 10px;
    margin-bottom: 20px;
}
.Mobile .text-agence,
.Tablet .text-agence{
    margin-bottom: 20px;
}
.Tablet.mentions h2 {
    padding-top: 250px;
}
.Tablet .ContactezNous {
  margin-top: 185px;
}
.Tablet .titre-album {
  padding-top: 168px;
}
.Tablet .nav-list{
    top: 199px;
}
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;
}

a.logo img {
    height: 160px;
    object-fit: contain;
}
.footer_logo img {
    background : #fff;
}
.Mobile .mailBlock a {
    font-weight: 600;
}
.Mobile .section1--flex {
    flex-direction: column-reverse;
}
.past img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.past {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}
.fournisseur {
    margin-top: 40px;
}
.fournisseur img {
    width: 200px;
    height: 100%;
    object-fit: contain;
}
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;
}
