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

:root{
    --color1: #cf391b;
    --color2: #f32a0b;
}


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.png);
}
.icon-mobile:before {
    background: url(../images/img/portable.png);
}
.icon-envelope:before {
  background: url(../images/img/mail.png);
}
.icon-location:before {
  background: url(../images/img/locali.png);
}
.icon-map:before {
  background: url(../images/img/adresse.png);
}

body{
	font-family: 'Calibri', sans-serif;
	font-size: 16px; 
    color: #040404;
}
p{
    color: #67687A;
    line-height: 22px;
    text-align: justify;
}
a{
	text-decoration: none;  
}
ul li{
	list-style: none;
}
input, textarea.form-input{
    outline: none; 
}
textarea{
    font-family: inherit;
} 
h1 {
    font-size: 38px;
    padding: 22px 0 25px;
    line-height: 37px;
}
 h2 {
    font-size: 32px; 
    padding: 15px 0 20px;
} 
h3 {
    padding: 20px 0;
    font-size: 22px;
}
h1, h2, h3{
    color: #1c1c1c;
}
img{
    object-fit: cover;
}
.container{
    max-width: 1200px;
    margin: auto;
    width: 100%;
    padding: 0 20px;
} 
.block_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    gap: 56px;
}
.menu-B {
    display: flex;
    align-items: center;
}
.nav ul.col.nav-list {
    display: flex;
    text-align: center;
}
li.nav-item {
    margin: 0 7px;
    position: relative;  
}
.megaMenu {
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transform-origin: 0 0 0;
    transition: all 0.3s ease 0s;
    z-index: 9999 !important;
    background: #fff;
    padding: 20px;
    width: 396px;
    border-radius: 4px;
    margin-top: 10px;
    text-align: left;
}
.Desktop .nav-item:hover .megaMenu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}
.logo_Menu {
    background: var(--color1);
}
a {
    color: #fff;
} 
li.nav-submenu-item {
    border-bottom: 1px solid #eeecec;
    padding: 10px 0;
}
li.nav-submenu-item a {
    color: #151422!important;
}
li.nav-submenu-item span:hover{
    color: var(--color2);
    transition: .3s;
}
ul.nav-submenu.active a{
    color: var(--color2);
}
li.nav-item.active a,
li.nav-item:hover a,
ul.nav-submenu.active a  {
        color: #fff;
    transition: .3s;
    border-bottom: 2px solid #fff;
}
.tel-top a {
    background: var(--color2);
    padding: 15px 20px;
    border-radius: 50px;
    color: #000;
    min-width: 136px;
}
.btn_cap a,
span.span-btn{
    color: #040404;
}
.tel-top a{
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.tel-top a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, #cf391b, #667eea);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.tel-top a:hover::before {
    width: 300px;
    height: 300px;
}
.tel-top {
    display: flex;
    gap: 10px;
    align-items: center;
}
.homeSlider {
    position: relative;
}
.homeSlider:before{
    position: absolute;
    content: '';
    background: url(../images/img/shape-1.webp);
    width: 840px;
    height: 520px;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    z-index: 1;
}
.homeSlider:after{
     content: '';
    position: absolute; 
    background: #393939;
    width: 50%;
    height: 100%;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
.bg-slider {
    background-color: #ddd!important;
    height: 800px;
    position: relative;
}  
.caption {
    position: absolute;
    top: 50%;
    z-index: 1;
    margin: 0;
    width: 100%;
    transform: translateY(-50%);
}
.Sct_nom {
    color: var(--color1);
    text-transform: uppercase;
    font-weight: 600;
}
.h1 {
    color: #fff;
    font-weight: 900;
    font-size: 30px;
    line-height: 67px;
    padding: 15px 0 40px;
    font-family: 'helvetica';  
}
/*body.Desktop.prestations .caption {
    width: 30%;
}*/
body.Desktop.prestations .caption .h1 {
    line-height: 48px;
}
.Desktop.ville .h1:first-line{
    font-size: 60px;
    font-style: italic;  
}
a.btn img,
ul.services-footer img {
    width: 20px;
    height: 16px;
    position: relative;
    filter: invert(1);
} 
.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
    background: var(--color2);
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
}
.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -67%;
    width: 200%;
    height: 200%;
    background: var(--color1);
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.6s ease;
    z-index: 0;
}
.btn.btn-real.btn-clr:before{
    background: var(--color2);
}
.btn:hover::before {
    transform: rotate(45deg) translateY(0);
    width: 300px;
}
.btn_cap {
    display: flex;
    gap: 20px;
}
a.btn span {
    font-weight: 600;
    font-size: 19px;
    position: relative;
} 
a.btn.btn_C {
    background: rgba(57, 57, 57, 40%);
    border: 1px solid var(--color2);
}
a.btn.btn_C span {
    color: #fff;
}
a.btn.btn_C img{
    filter: invert(0);
}
a.logo img {
    background: #fff;
    width: 190px;
    height: 90px;
    padding: 5px;
    border: 4px solid #f32a0b;
}
.blog-devis {
    padding: 30px 40px;
}
button.btnDevis {
    border: none;
    background: transparent;
}
.titre-devis { 
    padding: 0 0 30px;
}
.cat-T,
.titre-devis {
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    font-family: 'helvetica'; 
}
.blog-devis {
  padding: 30px 40px 50px;
  margin: 20px 0;
  position: relative;
  background-color: rgba(57, 57, 57, 80%);
  z-index: 9;
  border-radius: 10px;
}
input.form-input,
textarea.form-input {
    border: 1px solid #cfcfcf;
    padding: 20px;
    border-radius: 8px;
}
.btn.btn-devis {
    border-radius: 8px;
}
.btn.btn-devis:hover::before { 
    width: 800px;
}
.btn.btn-devis:before {
    left: -348px;
    width: 800px;
}
span.span-btn {
    font-size: 19px;
    font-weight: 600;
    position: relative;
}
.btn.btn-devis img {
    filter: invert(1);
}
.blog-devis form#Devis_form {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 15px;
    width: 100%; 
}
textarea.form-input {
    width: 100% !important;
    height: 100px !important;
}
button#slick-slide-control02 {
    display: none;
}
button#slick-slide-control00,
button#slick-slide-control01 {
    position: absolute;
    right: 45%;
    width: 70px;  
    height: 70px;
    background: #fff;
    border-radius: 50px;
    border: none;
    font-size: 0; 
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
button#slick-slide-control00:hover,
button#slick-slide-control01:hover{
    background: var(--color1);
    transition: .3s;
}
button#slick-slide-control00:before,
button#slick-slide-control01:before{
    position: absolute;
    content: '';
    width: 20px;
    height: 16px;
    background-position: center!important;
}
button#slick-slide-control01:before,
button#slick-slide-control00:before{
    background: url(../images/img/fleche.png);
    filter: invert(1); 
}
button#slick-slide-control00:before{
    rotate: 180deg;
}
button#slick-slide-control00{
    top: 40%;
}
button#slick-slide-control01{
    top: 50%;
}
.bg-sect1, section.sect-pad.prest-1 {
    /* margin-top: -154px; */
    padding: 100px 0;
    position: relative;
}
.bg-sect1:before {
    position: absolute;
    content: '';
    background: url(../images/img/shape03.png);
    width: 240px;
    height: 290px;
    background-size: cover;
    right: 40px;
    bottom: 60px;
    opacity: 40%;
}
.bg-sect1:after {
    position: absolute;
    content: '';
    background: url(../images/img/shape02.png);
    width: 175px;
    height: 184px;
    background-size: cover;
    bottom: 40px;
    left: 100px;
    opacity: 20%;
}
.block_sect1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 9;
} 
.block_sect1:before{
    position: absolute;
    content: '';
    background: url(../images/img/shape01.png);
    width: 125px;
    height: 154px;
    background-size: cover;
    top: -85px;
    left: 67px;
}
.btn-clr{
    background: var(--color2);
}
.box-text1 a.btn.btn-real:before{
    background: #f32a0b;
}
.exp {
    background: var(--color1);
    border-radius: 10px 40px 10px 10px;
    padding: 43px 38px;
    position: relative;
    font-size: 40px;
    line-height: 40px;
    color: #fff;
}
.exp:before{
    position: absolute;
    content: '';
    background: url(../images/img/globe.svg);
    width: 80px;
    height: 80px;
    background-size: cover;
    z-index: 0;
    top: 15px;
    left: 15px;
}
.img-text1.img_left img {
    width: 300px;
    height: 335px;
    background: #ddd;
    display: block;
    border-radius: 10px;
}
.img-text1.img_rigt img {
    width: 350px;
    height: 415px;
    background: #ddd;
    display: block;
    border-radius: 10px;
}
.img-text1.img_rigt img:nth-child(2){
    height: 210px;
}
.box_img01 {
    display: flex;
    gap: 20px;
    align-items: center;
}
.img-text1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.exp span {
    font-size: 57px;
    font-weight: 600; 
    position: relative;
    color: #fff;
} 
.titre-S {
    color: #9d5a00;
    font-size: 23px;
    font-weight: 300;
}
.icon_taux {
    background: #faf2e7;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 60px;
}
.sous_taux {
    display: flex;
    align-items: center;
    gap: 15px;
}
.box_taux {
    display: flex;
    padding: 30px 0;
    gap: 20px;
}
.taux {
    font-weight: 600;
    font-size: 18px;
}
section.sect-compte {
    background: #393939;
    padding: 120px 0 240px;
    position: relative;
}
section.sect-compte:before{
    position: absolute;
    content: '';
    background: url(../images/img/line-bg.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    top: 0;
    left: 0;
    opacity: 30%;
}  
.img-Mask {
    position: relative;
}
.img-Mask:before,
.img-Mask:after{
    position: absolute;
    content: '';
    background: var(--color2);
    width: 80px;
    height: 5px;
    top: 50%;
} 
.img-Mask:after{
    left: 117px;
}
.img-Mask img{
    width: 20px;
    height: 19px;
    margin-left: 90px;
} 
.text-C {
    color: #C4C4C4;
    font-size: 20px;
}
.box-text2 {
    position: relative;
}
.box-text2 .btn_cap {
    position: absolute;
    right: 0;
    top: 14%;
}
.text02 h2 {
    max-width: 70%;
}
.titre-cat,
.compte {
    position: relative;
}
.titre-cat {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
}
.titre-cat .btn_cap {
    display: block;
    min-width: max-content;
}
.compte {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    gap: 20px;
}
.C-cage {
    display: flex;
    align-items: center;
    gap: 20px;
}
.img_cat {
    background-color: #ddd!important;
    width: 100%;
    height: 350px;
    border-radius: 30px;
    position: relative;
    z-index: -1;
}
.img_cat:before,
section.sect-pad.sect3-p:after{
    position: absolute;
    content: '';
    background: #000;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    opacity: 30%;
    top: 0;
}
section.sect-pad.sect3-p:after{
    opacity: 50%;
}
.boxText3-p {
    position: relative;
    z-index: 1;
}
body:not(.Mobile) .cat-item {
    margin: 0 20px;
}
.fond-iconC { 
    margin: 0px 0px 0px 25px;
    padding: 25px 20px 20px 20px;
    border-radius: 0px 0px 50px 50px;
    width: 80px;
    height: 90px;
    position: relative;
}
.cat-item.style-1 .fond-iconC,
.cat-item.style-3 .fond-iconC,
.cat-item.style-5 .fond-iconC,
.cat-item.style-7 .fond-iconC,
.cat-item.style-1 .fond-flchCat,
.cat-item.style-3 .fond-flchCat,
.cat-item.style-5 .fond-flchCat,
.cat-item.style-7 .fond-flchCat{
    background: var(--color1);
}
.cat-item.style-2 .fond-iconC,
.cat-item.style-4 .fond-iconC,
.cat-item.style-6 .fond-iconC,
.cat-item.style-8 .fond-iconC,
.cat-item.style-2 .fond-flchCat,
.cat-item.style-4 .fond-flchCat,
.cat-item.style-6 .fond-flchCat,
.cat-item.style-8 .fond-flchCat{
    background: var(--color2);
}
.fond-iconC img {
    width: 40px;
    height: 40px;
    display: block;
}
.ancre-cat a {
    color: #151422;
    font-size: 20px;
    font-weight: 600;
}
.ancre-cat {
    background-color: #fff;
    padding: 30px 15px 50px 15px;
    border-radius: 30px 30px 100px 100px;
    box-shadow: 0px 20px 15px -10px rgba(0, 0, 0, 0.1);
    width: 293px;
    text-align: center;
    height: 125px;
    margin-top: -70px;
    margin-left: 7%;
} 
.fond-flchCat img { 
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: invert(1);
}
.fond-flchCat {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.fleche {
    display: flex;
    justify-content: center;
    margin-top: -27px;
    margin-left: 0;
}
.bloc-cat {
    margin-top: -170px;
    display: flex;
    overflow: hidden;
}
.sect-pad{
    padding: 120px 0;
}
.block-t2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center; 
}
.box-Text02 {
    margin-right: 28%;
}
.box-img2 img {
    width: 100%;
    height: 600px;
    display: block;
    background: #ddd;
    border-radius: 10px;
}
.btn-top {
    margin-top: 40px;
}
.box-img2,
.box-Text02{
    position: relative;
    z-index: 1;
}
.box-img2:before{
    position: absolute;
    content: '';
    background: var(--color2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    left: 15px; 
    top: 15px;
    z-index: -1;
}
.box-Text02:before {
    position: absolute;
    content: '';
    background: url(../images/img/shape04.png);
    width: 647px;
    height: 573px;
    background-size: cover;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: -140px;
}
.titre-rot {
    font-weight: 900;
    font-size: 57px;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 1px;
    line-height: .8;
    white-space: nowrap;
    font-family: helvetica;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    position: absolute;
    top: 50%;
    left: -52px;
}
.img-t2,
.sect-Text02 {
    position: relative;
}
.sect-Text02:before{
    position: absolute;
    content: '';
    background: url(../images/img/shape05.webp);
    width: 1045px;
    height: 242px;
    background-size: cover;
    right: 0;
    bottom: 0;
}
section.sect-pad.sect-text03 {
    background-color: var(--color1)!important;
    position: relative;
}
.img-t3 > img {
    width: 80%;
    height: 100%;
    background: #ddd;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 300px 0 0 0;
}
.text03 {
    position: relative;
    background-color: #fff;
    color: rgb(255, 255, 255);
    border-radius: 10px 100px 100px 10px;
    padding: 20px 65px 20px 40px;
    max-width: 47%;
    margin-left: 100px;
}
.text03 .btn_cap.btn-top {
    margin-top: 0;
    position: relative;
    top: 46px;
}
.logo-drone {
    margin: 0 auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    font-weight: 600;
    color: #fff;
    animation: spinZ 35s linear infinite;
    text-align: center;
    position: absolute;
    right: 60px;
    bottom: 40px;
}

    @keyframes spinZ {
        0% {
            transform: rotateZ(0deg);
        }
        100% {
            transform: rotateZ(360deg);
        }
    }
 .logo-drone img {
    width: 200px;
    height: 200px;
}
.block_text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.imgT_ img{
    background: #ddd;
    display: block;
    width: 450px;
    height: 600px;
}
.imgT_.imgT-04 img {
    border-radius: 0px 0px 200px 200px;
}
.imgT_.imgT-05 img {
    border-radius: 200px 200px 0 0;
}
.imgT_.imgT-04 {
    margin-left: 22%;
    position: relative;
}
.imgT_.imgT-05{
    position: relative;
}
.imgT_.imgT-04:before,
.imgT_.imgT-05:before{
    position: absolute;
    content: '';
    width: 450px;
    height: 100%;
}
.imgT_.imgT-04:before{
    border: 3px solid var(--color2);
     border-radius: 0px 0px 200px 200px;
    top: -3px;
    z-index: -1;
    left: 10px;
}
.imgT_.imgT-05:before {
    border: 3px solid var(--color1);
    border-radius: 200px 200px 0 0;
    left: -16px;
    z-index: -1;
    bottom: 0;
} 
.chiffre {
    position: absolute;
    top: 20%;
    right: 40px;
    background: var(--color1);
    border-radius: 150px;
    padding: 40px;
    text-align: center; 
    color: #fff;
} 
.box-chiffre span {
    font-size: 45px;
    font-weight: 900; 
}
.box-chiffre p {
    text-align: center;
    color: #fff;
}
.box-chiffre {
    border-bottom: 1px solid #fff;
    padding: 0 0 15px;
}
.box-chiffre:nth-child(3) {
    border-bottom: none; 
}
.block_text-f {
    margin-top: -214px;
    position: relative;
    display: flex;
    gap: 60px;
} 
.text-f,
.text-V {
    border: 2px solid rgba(30, 32, 35, 0.12);
    background: #fff;
    box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
    padding: 50px;
    margin-top: 30px;
    clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
    width: 100%;
}
.text-S {
    font-weight: 900;
    font-size: 80px;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 1px;
    line-height: .8;
    white-space: nowrap;
    font-family: helvetica;
    color: var(--color1);
}
.box-icon img {
    width: 100px;
    height: 100px;
}
.box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.box-textV {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px; 
}
.text-V {
    margin-top: 0;
    background: #f3f3f3;
}
.block_menu.fixed-top {
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0px;
    background: rgb(255, 255, 255);
    transition: 0.7s;
}
section.sect-pad.text-sect {
    padding: 120px 0 0;
}
.fond-foot{
    background: var(--color1); 
}
footer.foot {
    padding: 240px 0 0;
}
.imgLeft img,
.imgRight img {
    width: 100%;
    height: 200px;
    background: #ddd;
    display: block; 
}
.imgLeft img {
    border-radius: 15px 0px 100px 0px;
    border-right: 6px solid #fff;
    border-bottom: 6px solid #fff;
}
.imgRight img{
    border-radius: 100px 0px 15px 0px;
    border-top: 6px solid #fff;
    border-left: 6px solid #fff;
}
.block-rappel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color2);
    border-radius: 15px;
    padding: 50px 0;
    position: relative;
    top: -100px;
}
.imgRight {
    margin-bottom: -50px;
}
.imgLeft {
    margin-top: -50px;
}
.titre-rappel {
    font-size: 35px;
    font-weight: 600;
    padding: 0 0 20px;
}
.rappel input.form-input {
    border-radius: 8px 0 0 8px;
}
input.btn-rapel {
    padding: 18px 40px;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 17px;
    font-weight: 600;
    background: #eae7e7;
    cursor: pointer;
        height: 56px;
    position: relative;
    top: 1px;
}
input.btn-rapel:hover{
    background: var(--color1);
    transition: .3s;
}
.titre-rappel span {
  color: #1f1e1e;
}
.prt-foot {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.titre-foot {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    padding: 0 0 10px;
}
ul.services-footer li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}
.box_foot .bloc_top {
    margin: 10px 0;
}
.site_foot .container {
    max-width: 1400px;
} 
ul.services-footer a,
.bloc_top a,
a.mailBlockF {
    font-size: 18px;
}
.bloc_top,
a.mailBlockF {
    display: flex; 
    gap: 5px;
    align-items: center;
}
.reseux img {
    width: 15px;
    height: 15px;
}
.reseux a {
    background: var(--color2);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.reseux a:hover{
    background: #fff;
    transition: .3s;
}
.reseux {
    display: flex;
    gap: 8px;
}
.text-agence {
    padding: 20px 0;
    color: #fff;
}
.text-agence a{
    color: #fff;
}
ul.services-footer img {
    rotate: -35deg;
    filter: invert(0);
}
ul.services-footer a:hover,
.bloc_top a:hover,
a.mailBlockF:hover,
span.classe:hover{
    color: #f68776;
    transition: .3s;
}
.cop_foot {
    border-top: 1px solid #a79174;
    padding: 40px 0;
}
.copyright,
.box-mention {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}
.box-mention{
    gap: 10px;
    color: #fff;
}  
section.sect-pad.prest-1 {
    background: #EAEAEA;
}
.img01-P img {
    background: #ddd;
    width: 250px;
    height: 250px;
    display: block;
    border-radius: 100%;
}
.box-textP {
    background: #fff;
    box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.08);
    border-radius: 150px; 
    padding: 40px 70px 40px 260px;
    position: relative; 
    z-index: 1;
    overflow: hidden;
}
.box-textP:before{
    position: absolute;
    content: '';
    background: url(../images/img/circle.png);
    width: 250px;
    height: 400px;
    background-size: cover;
    right: 0;
    top: 0;
    z-index: -1;
}
.titre01 {
    width: 80%;
    text-align: center;
    padding: 0 0 30px;
    margin: auto;
    position: relative;
}
.titre01:before {
    position: absolute;
    content: '';
    background: var(--color1);
    width: 200px;
    height: 5px;
    top: 75%;
    left: 50%;
    transform: translate(-50%, 50%);
}
.img01-P {
    position: absolute;
    z-index: 11;
    left: -27px;
    top: -27px;
}
.img01-P:before{
    position: absolute;
    content: '';
    border: 2px dashed var(--color1);
    width: 260px;
    height: 260px;
    border-radius: 100%;
    z-index: -1;
    left: -4px;
    top: -2px;
}
.p-text1 {
    position: relative;
    margin-top: 20px;
}
.box-tel {
    display: flex;
    align-items: center;
    border: 2px dashed #0c0a1e21;
    border-radius: 100px;
    width: 53%;
    margin: 40px auto 0;
    padding: 10px 20px;
    justify-content: space-between;
}
.appel {
    font-size: 18px;
    font-weight: 600;
}
.tel-p a {
    color: #6f0202;
    font-size: 25px;
    font-weight: 600;
} 
section.sect-pad.sect3-p {
    background-color: #0000008A !important;
    margin-top: 120px;
    position: relative;
}
section.sect-pad.sect3-p:before{
    position: absolute;
    content: '';
    background: url(../images/img/overlay.webp);
    width: 655px;
    height: 318px;
    background-size: cover;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.text3-p h2,
.text3-p p,
.text3-p h3 {
    color: #fff;
}
.text3-p h2 {
    font-size: 36px;
}
.text3-p {
    width: 50%;
}
section.sect-pad.sect5-p {
    background: #e1dfdf;
    padding: 120px 0 220px;
    position: relative;
    z-index: 1;
}
section.sect-pad.sect5-p:before{
    position: absolute;
    content: '';
    background: url(../images/img/circle.png);
    width: 650px;
    height: 100%;
    background-size: cover;
    z-index: -1;
    top: 0;
    left: 0;
    rotate: 180deg;
    opacity: 50%;
}
.textS-p p {
    color: #424242;
}
.textS-p {
    width: 100%;
}
.block-Text05-P {
    display: flex;
    gap: 60px;
    align-items: baseline;
}
.img06-p img {
    background: #ddd;
    width: 100%;
    height: 350px;
    display: block;
    position: relative;
    z-index: 1;
}
.img06-p {
    margin-top: -200px;
    display: flex;
}
.img06-p div{
    width: 50%;
}
section.sectT7-p {
    padding: 100px 0 0;
}
section.sectT7-p .text-f {
    margin-top: 0;
    background: #f7f4f4;
}
section.sectT7-p .text-f .text-S { 
    -webkit-text-fill-color: #f7f4f4; 
}
a.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
b.titre-album {
    width: 100%;
    font-size: 34px;
    color: #000;
    font-weight: bold;
    display: block;
    margin: 40px 0;
    text-align: center;
    text-transform: uppercase;
}
.Desktop form#rappel_immediat {
    display: flex;
    align-items: center;
}
div#realisations .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.Mobile div#realisations .row { 
    grid-template-columns: repeat(1, 1fr); 
}
.Tablet div#realisations .row { 
    grid-template-columns: repeat(3, 1fr); 
}
div#realisations {
    padding: 40px 0 80px;
}

.mentions h2 {
    padding: 80px 0 20px;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
.mentions ol {
    max-width: 100%;
    width: 80%;
    margin: auto;
    padding: 20px 20px 30px;
    position: relative;
    background: #fff;
}
body.Mobile.mentions ol {
    width: 100%; 
    padding:0 20px 20px;
}
.contact .blog-devis,
.devis .blog-devis {
    display: none;
}
.boxDevis.box-contact {
    align-items: center;
    padding: 120px 0;
}
.boxDevis.box-contact .devis_formulaire.mesure {
    background-image: none;
    background-color: transparent;
    padding: 0;
}
div#Map {
    width: 100%;
    height: 350px;
    border-radius: 10px; 
    z-index: 0;
    background: #F8F7FA;
}
.boxDevis {
    display: flex;
    gap: 80px;
    position: relative;
}
.boxDevis.box-contact span.titre { 
    font-size: 40px;
    font-weight: 600;
}
.titre-contact { 
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}
.fond-check {
    background: var(--color1);
    width: 70px;
    height: 70px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image {
    width: 46px;
    height: 46px; 
    position: relative;  
    filter: brightness(0);
}
.textCheck span {
    font-size: 18px;
    font-weight: 600;
    padding: 0 0 10px;
    display: block;
}
.checkBox {
    display: flex;
    gap: 25px;
    position: relative;
}
.boxCheck.cont-box { 
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
}
.p-cont {
    padding: 0 0 40px;
}
.inp-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
.titre-formulaire { 
    margin-bottom: 30px;
}
.boxDevis.box-contact textarea.form-input {
    margin-top: 15px;
    height: 89px !important;
}
.ContactezNous,
.devis_formulaire {
    width: 100%;
}
input.btn-devis {
    padding: 15px 40px;
    border: none;
    background: var(--color1);
    margin-top: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
}
input.btn-devis:hover{
    background: var(--color2);
    transition: .3s;
}
.devis .boxDevis.box-contact {
    align-items: center;
    padding: 120px 0 0;
}
body:not(.Desktop) ul.col.nav-list {
    flex-direction: column;
}
body:not(.Desktop) li.nav-item {
    margin: 5px 7px;
}
body:not(.Desktop) .megaMenu {
    visibility: visible;
    opacity: 1;
    display: none;
    position: static;
    width: 100%;
    transform: none;
    border-radius: 0px;
    background: #f0efef;
    margin-top: 10px;
}
.remove {
    color: var(--color1);
    font-size: 50px;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 20px;
}
.Mobile .menu-top, 
.Tablet .menu-top {
    position: absolute;
    width: 85%;
    left: 362px;
    background: #fff;
    z-index: 99;
    padding: 75px 0 20px;
    top: 0;
    transition: .3s;
    height: 741px;
}
.Tablet .menu-top{
    left: 820px;
}
.Mobile .menu-top:before,
.Tablet .menu-top:before{
    position: absolute;
    content: '';
    background: #fff;
    width: 18%;
    left: 0;
    height: 100%;
    top: 0;
    opacity: 60%;
}
.menu-top.nav-mob {
    left: 54px;
}
.Tablet .menu-top.nav-mob {
  left: 122px;
}
.Tablet .menu-top.nav-mob::before {
  left: -122px;
}
.Tablet .menu-top{
    height: 862px;
}
body:not(.Desktop) li.nav-submenu-item {
  text-align: center; 
}
.menu-top.nav-mob:before {
    left: -54px;
}
body:not(.Desktop) .block_menu {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 99;
}
button.navMobile img {
    width: 50px;
    height: 50px; 
}
button.navMobile {
    background: transparent;
    border: transparent;
    position: absolute;
    right: 20px;
    top: 64px;
}
.tel_mob {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 15px;
    top: 0;
    z-index: 99; 
    padding: 8px 0;
    background: var(--color2);
}
body:not(.Desktop) span.nav-click i::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/img/drop.png);
    background-size: cover;
    right: 0;
    filter: brightness(0);
}
body:not(.Desktop) .block_menu .logo {
    margin-top: 45px;
}
body:not(.Desktop) .block_menu a.logo img { 
    margin-left: 15px;
    border: none;
    width: 151px;
    height: 65px;
}
.tel_mob a {
    font-weight: 600;
    font-size: 18px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}
.Tablet  span.nav-click i::before{
    right: 20px!important;
}
body:not(.Desktop) button#slick-slide-control00, 
body:not(.Desktop) button#slick-slide-control01{
    display: none;
}
body:not(.Desktop) .caption {
    width: 100%;
    padding: 0 20px;
}
.Mobile .h1 { 
    font-size: 40px;
    line-height: 47px; 
}
.Mobile .btn_cap {
    flex-direction: column;
}
body:not(.Desktop) .homeSlider:after { 
    width: 70%; 
    clip-path: polygon(0 0, 117% 0, 0 100%, 0 100%);
}
body:not(.Desktop) .homeSlider:before{
    display: none;
}
.Mobile .blog-devis form#Devis_form,
body:not(.Desktop) .block_sect1,
.Mobile .compte,
.Mobile .block-t2 { 
    grid-template-columns: repeat(1, 1fr); 
}
body:not(.Desktop) .cat-T, 
body:not(.Desktop) .titre-devis { 
    font-size: 33px; 
}
.Mobile input.form-input, 
.Mobile textarea.form-input { 
    padding: 15px; 
}
.Mobile .box_taux {
    flex-direction: column;
}
.Mobile .img-text1.img_rigt {
    display: none;
}
body:not(.Desktop) .img-text1.img_left img{
    width: 100%;
}
.Mobile .img-text1.img_left img{
    height: 300px;
}
.Mobile .exp span {
    font-size: 45px; 
}
.Mobile .exp { 
    padding: 30px 38px; 
    font-size: 30px; 
}
.Mobile .bg-sect1:after{
    left: 0;
}
.Mobile section.sect-compte { 
    padding: 80px 0 240px; 
}
.Mobile .titre-cat {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
} 
.Mobile .bloc-cat {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.Mobile .img_cat { 
    width: 100%;
    height: 160px; 
}
.Mobile .ancre-cat {
    width: 100%;
    margin-left: 0;
}
.Mobile .ancre-cat a{
    font-size: 16px;
}
.Mobile .fleche{
    margin-left: 0;
}
.Mobile .fond-iconC,
body:not(.Desktop) .box-Text02:before,
.Mobile .titre-rot {
    display: none;
}
.Tablet .text-C { 
  font-size: 16px;
}
.Mobile .sect-pad {
    padding: 80px 0!important;
}
.Tablet .sect-pad {
    padding: 80px 0;
}
.Mobile .box-Text02 {
    margin-right: 0;
} 
.Mobile .block-t2 {
    gap: 40px;
}
.Mobile .box-img2 img{
    height: 300px;
}
.Tablet .box-Text02 {
  margin-right: 20%;
}
.Mobile .text03 {
    margin-left: 0;
    max-width: 100%;
    padding: 20px;
}
.Mobile h2{
    font-size: 28px;
}
.Mobile .logo-drone {
    position: relative;
}
.Mobile .block_text { 
    grid-template-columns: repeat(1, 1fr); 
}
.Mobile section.sect-text {
    padding: 60px 0;
}
.Mobile .imgT_ img { 
    width: 100%;
    height: 300px;
}
.Mobile .imgT_.imgT-04:before, 
.Mobile .imgT_.imgT-05:before{
    width: 100%;
}
.Mobile .imgT_.imgT-04{
    margin-left: 0;
}
.Mobile .imgT_ {
    margin: 40px 0;
}
.Mobile .box-chiffre span {
    font-size: 30px; 
}
.Mobile .chiffre { 
    right: 0; 
    padding: 30px; 
}
.Mobile .imgT_.imgT-05:before{
    left: -8px;
}
.Mobile .imgT_.imgT-04:before{
    left: 4px;
}
li.nav-submenu-item.active span{
    color: var(--color2);
}
.Tablet .imgT_ img,
.Tablet .imgT_.imgT-04::before, 
.Tablet .imgT_.imgT-05::before{
    width: 100%;
}
.Tablet .imgT_.imgT-04 {
  margin-left: 10%; 
}
.Tablet .imgT_.imgT-05{
    margin-right: 10%;
}
.Mobile .block_text-f{
    flex-direction: column; 
}
body:not(.Desktop) .block_text-f,
body:not(.Desktop) .box-textV{
    gap: 20px;
}
body:not(.Desktop) .text-f, 
body:not(.Desktop) .text-V{
    padding: 20px;
}
.Mobile .box-textV {
    grid-template-columns: repeat(1, 1fr);
}
body:not(.Desktop) section.sect-pad.text-sect {
    padding: 80px 0 0 !important;
}
.Mobile .block-rappel {
    flex-direction: column;
    text-align: center;
    gap: 30px;
}
.Tablet .block-rappel {
  gap: 20px;
  padding: 30px;
}
.Mobile .imgLeft { 
    margin-left: -23px;
}
.Mobile .imgRight { 
    margin-left: 23px;
}
body:not(.Desktop) .rappel input.form-input,
body:not(.Desktop) input.btn-rapel {
    border-radius: 8px;
    width: 100%;
}
.Mobile .rappel {
    padding: 0 20px;
}
.Mobile .titre-rappel {
    font-size: 25px; 
    padding: 0 10px 20px;
}
.Mobile .rappel input.form-input { 
    padding: 20px !important;
}
.Tablet .imgLeft img, 
.Tablet .imgRight img{
    width: 100%;
}
.Tablet .box-rappel {
  text-align: center;
}
.Tablet .imgLeft {
  margin-top: -80px;
  margin-left: -30px;
}
.Tablet .imgRight {
  margin-bottom: -78px;
  margin-right: -30px;
}
.Mobile .prt-foot { 
    grid-template-columns: repeat(1, 1fr); 
}
.Tablet .prt-foot { 
    grid-template-columns: repeat(2, 1fr); 
}
.Mobile .copyright, 
.Mobile .box-mention { 
    flex-direction: column;
    gap: 20px;
}
.Mobile .img01-P {
    position: relative;
    display: flex;
    justify-content: center;
    left: 0;
    top: 100px;
}
.Mobile .img01-P:before{
    left: 32px;
}
.Mobile .box-textP {
    padding: 113px 20px 20px 20px;
    border-radius: 50px;
}
.Mobile h1,
.Tablet h1{
    font-size: 35px;
}
.Mobile .box-textP:before{
    top: inherit;
    bottom: 0;
}
.Mobile .box-tel {
    width: 100%;
    flex-direction: column;
    gap: 15px;
}
.Tablet .sect-pad.prest-1 {
  padding: 212px 0 80px!important;
}
.Tablet .img01-P { 
  left: 0;
  top: -14px;
}
.Tablet .box-textP { 
  padding: 0 45px 40px 260px; 
}
.Tablet .box-tel {
  width: 80%;
}
.Tablet .img01-P::before{
    left: -10px;
}
.Mobile .blog-devis {
    padding: 20px;
    margin: 20px 0;
}
.Mobile section.sect-pad.sect3-p {
    margin-top: 0;
}
.Mobile .text3-p {
    width: 100%;
}
.Mobile section.sect-pad.sect3-p:before{
    display: none;
}
.Tablet section.sect-pad.sect3-p::before { 
  width: 434px;
  height: 219px; 
}
.Tablet .text3-p {
  width: 60%;
}
.Tablet section.sect-pad.sect5-p { 
  padding: 80px 0 220px; 
}
body:not(.Desktop) .block-Text05-P { 
  gap: 40px;
}
.Tablet section.sectT7-p .text-f .text-S { 
  margin-right: 20px;
}
.Mobile .block-Text05-P {
    flex-direction: column;
}
.Mobile section.sect-pad.sect5-p { 
    padding: 60px 0; 
}
.Mobile .vide {
    display: none;
}
.Mobile .img06-p div,
.Mobile section.sect-pad.sect5-p:before {
    width: 100%;
}
.Mobile .img06-p img{
    height: 300px;
}
.Mobile .img06-p {
    margin-top: 0; 
}
.Mobile footer.foot {
    padding: 190px 0 0;
}
.Tablet .boxDevis.box-contact { 
  padding: 80px 0;
}
.Mobile .boxDevis.box-contact { 
  padding: 60px 0;
}
body:not(.Desktop) .boxDevis.box-contact{
    gap: 40px;
}
.Mobile .boxDevis.box-contact{
    flex-direction: column;
}
.Mobile div#Map{
    height: 300px;
}
div#Messages {
    text-align: center;
    background-color: #000;    
    padding: 10px;
    width: 100%;
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
}

div#Messages p {
    margin: 0;
    color: #fff;     
    font-size: 20px;
    text-align: center;
}
.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;
    margin-top: 20px;
    display: block;
}
.Mobile .blog_pageIntrouvable span { 
    margin-top: 10px; 
}
.Mobile .blog_pageIntrouvable a { 
    position: relative;
    top: 20px;
}
.blog_pageIntrouvable > div {
  height: 100%;
  color: #333
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #000000;
    position: relative;
    top: -66px;
}
.Mobile .blog_pageIntrouvable h1 { 
    top: -20px;
}
.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;
    background: var(--color1);
    padding: 15px;
    border-radius: 30px;
    font-weight: 600;
}
.blog_pageIntrouvable a:hover { 
    background: var(--color2);
    transition: .3s;
}
#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;
  }
}
 
body:not(.Desktop) .tel_mob a{
    color: #000;
}
span.classe {
    color: #fff;
}
.box_foot .icon:before {
    filter: invert(1);
}
.bloc-copyright {
    color: #fff;
}
.block_menu.fixed-top li.nav-item a,
body:not(.Desktop) li.nav-item a {
    color: #000;
}



.devis_slider form#Devis_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.devis_slider {
    padding: 30px;
    background: #3333337a;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}
.caption-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}