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


/*style*/
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  transition: all .3s ease;
}

html {
  font-family: "Arial", sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

:root {
  --body : #020203;
  --white : white;
  --black : black;
  --light : #d9d9d9;
  --colorP : #ff6b00;
  --colorS  : #000;
}
body {
    margin: 0;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 2;
    text-align: left;
    background-color: var(--white);
    color: var(--body);
    -webkit-font-smoothing: antialiased;
}
section{
    padding: 100px 0;
}
.Mobile section{
    padding: 40px 0;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
	color: inherit;
  background-color: transparent;
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: inherit;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}
img {
  vertical-align: middle;
  border-style: none;
  height: auto;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  font-weight: 600;
  line-height: normal;
  font-family: "Arial", sans-serif;
}
h1, .h1 {
  font-size: 2.5rem;   /* 40px */ 
}

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

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

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

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

h6, .h6 {
  font-size: 1rem;     /* 16px */ 
}
.container {
  width: 100%; 
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
}
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
}
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
}
}

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
}
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.flex-block {
  display: -ms-flexbox !important;
  display: flex !important;
}

#mail,
#mail2 {
	display: none;
}
/*
Header
*/

header#header {
  position: relative;
  z-index: 999;
  background: #fff;
}
.Tablet header#header,
.Mobile header#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
}
body.Desktop header#header .container {
  width: 100%;
  max-width: 100%;
}
.logomenu {
  display: flex; 
}
.Tablet .logomenu, .Mobile .logomenu {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.topLogo {
  background: #fff;
  width: 250px;
  height: auto;
}
.Tablet .topLogo,
.Mobile .topLogo {
  background: transparent;
  width: fit-content;
  padding: 5px;
}
a.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
a.logo img {
  width: 250px;
  height: 106px;
  object-fit: contain;
  display: block;
}
.Tablet a.logo img, .Mobile a.logo img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  display: block;
}
#navscrool.sticky a.logo img {
  width: 200px;
  height: 90px;
  object-fit: contain;
  display: block;
}
.nav-mobile {
    cursor: pointer;
    background: #141e29 url(../images/nav.svg) no-repeat 85% center;
    background-size: auto;
    background-size: 18px;
    height: 50px;
    width: 85px;
    padding-left: 9px;
    line-height: 50px;
    color: white;
    position: relative;
    z-index: 999;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    text-align: initial;
}
.top_navigation {
  width: calc(100% - 250px);
  height: auto;
}
.Mobile .top_navigation, .Tablet .top_navigation {
    width: 100%;
    position: fixed;
    top: 110px;
    left: 0;
    display: none;
    z-index: 999;
    height: 350px;
    overflow: scroll;
}
.top_navigation {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.Tablet .top_navigation,
.Mobile .top_navigation{
  padding:0 ;
}
.Tablet nav#menu,
.Mobile nav#menu {
  width: 100%;
}
ul.nav-list {
  display: flex;
  /*align-items: flex-start;*/
}
.Desktop ul.nav-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.Tablet ul.nav-list,
.Mobile ul.nav-list {
  display: flex ;
  flex-direction: column;
}
li.nav-item {
  list-style: none;
  text-align: center;
  width: 100%;
}
li.nav-item:hover ul.nav-submenu { 
  transform: scaleY(1);
}
li.nav-item.active > a {
  color: #ff9500;
}
li.nav-item.active > a {
    color: #141e29;
    text-decoration: underline;
}
li.nav-item{
  position: relative;
}
.Tablet li.nav-item, .Mobile li.nav-item {
  background: #e3e8ed;
  width: 100%;
}
.Tablet .nav-item.active, .Mobile .nav-item.active {
  background: #ff9500;
}
li.nav-item a {
  padding: 5px;
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
}
.Tablet li.nav-item a, .Mobile li.nav-item a {
  padding: 12px;
  width: 100%;
  font-size: 12px;
  color: #000;
}
ul.nav-submenu {
  display: block;
  flex-direction: column;
  width: max-content;
  position: absolute;
  text-align: left;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease-out;
}
.Tablet ul.nav-submenu,
.Mobile ul.nav-submenu {
  width: 100%;
  position: relative;
  transform: none; 
}
li.nav-submenu-item {
  list-style: none;
}
li.nav-submenu-item a {
  width: 100%;
  padding: 10px!important;
  display: block;
  color: #000;
  background: #fff;
  border-top: solid 1px #e3e8ed;
}
.Mobile li.nav-submenu-item a,
.Tablet li.nav-submenu-item a {
  text-align: center;
}
li.nav-submenu-item.active a {
  background: #ff9500;
}
.top-tel {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: max-content;
}
.Desktop .top-tel {
  width: 20%;
  flex: 0 0 20%;
}
.top-tel span {
  background: #ddd;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.top-tel div a {
  display: block;
  font-size: 16px;
  color: #214083;
  font-weight: 600;
}
.icon-phone:before {
  background: url(../images/img/icon-fixe-mob.webp);
  filter: brightness(0);
}
.icon-mobile:before {
  background: url(../images/img/icon-portable-mob.webp);
  filter: brightness(0);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail.webp);
  filter: brightness(0);
}
.top_contact_mobile .icon:before {
    filter: brightness(0);
}
.top_contact_mobile {
    background: rgb(20 30 41);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    padding: 5px 0;
}
.top_contact_mobile a {
    background: #ff9500;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 900px;
    color: #000000;
}
.homeslider {
  background: #e3e8ed;
  width: 100%;
  height: 600px;
  display: block;
  position: relative;
}
.Mobile .homeslider {
    margin-top: 220px;
    height: 600px;
}
.Tablet .homeslider {
  margin-top: 143px;
}
.homeslider .imgFull {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-color: #b9b8b8;
    background-blend-mode: multiply;
}
.Mobile .homeslider .imgFull {
    height: 600px;
}
.caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 9;
}
.caption-text {
  margin: auto;
  text-align: center; 
  width: 67%;
}
.Desktop .caption-content {
    display: flex;
}
.Mobile .caption-text {
    margin: auto;
    text-align: center;
    width: 100%;
}
.Societe_name {
  text-align: center;
  color: #fff;
  font-size: 27px;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 2px 2px 0px #000000, -2px -2px 0px #000000, 2px -2px 0px #000000, -2px 2px 0px #000000, 0 0 15px rgba(255, 255, 255, 0.8);
}
.Tablet .Societe_name { 
  font-size: 24px; 
}
.Mobile .Societe_name {
  font-size: 22px;
  white-space: initial;
}
.Mobile .Societe_name.split-chars.titre {
    font-size: 16px;
    margin: 0 0 00px;
}
.tagline {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase; 
  text-shadow: 2px 2px 0px #000000, -2px -2px 0px #000000, 2px -2px 0px #000000, -2px 2px 0px #000000, 0 0 15px rgba(255, 255, 255, 0.8);
}
.Mobile .sub-tagline{
    line-height: 1.3;
}
.Tablet .tagline {
  font-size: 24px;
}
.Mobile .tagline {
    font-size: 22px; 
}
.sub-tagline {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  /* opacity: 0; */
  /* transform: translateY(30px); */
  animation: fadeInUp 1.5s 
  ease-out 4.5s forwards;
  text-shadow: 1px 1px 0px #000000, -1px -1px 0px #000000, 1px -1px 0px #000000, -1px 1px 0px #000000;
}
.btn-slider {
  margin: 30px 0 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
form#rappel_immediat input.btn-style-1 {
  width: 30%;
  height: 48px;
  padding: 12px;
  border: none;
  outline: none;
  background: #ff9500;
  border-radius: 0;
  color: #000;
}
form#rappel_immediat input.btn-style-1:hover{
  background: #287ff9;
}
input.btn-style-1 {  
    background: linear-gradient(135deg, rgb(44, 62, 80), rgb(52, 73, 94));
    width: 100%;
    border-radius: 20px;
    width: 100%;
    padding: 15px; 
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-content a.btn-style-1 {
  border-radius: 900px;
}
.btn-style-1 {
  padding: 15px 25px;
  background: #ff9500;
  color: #000;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  width: max-content;
  border-radius: 3px;
}
.btn-style-1:hover {
  background: #fbcf9b;
  color: #333333;
}
.btn-style-1::after {
  content: '';
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%; 
  transform: skewX(-20deg); 
  background-image: linear-gradient(to right,transparent,rgba(255,255,255,.4),transparent);
  z-index: 1;
}
.btn-style-1:hover:after { 
  animation:btn_shine 1.2s ease; 
  animation-delay:.1s
}
.decorative-line {
  width: 150px;
  height: 5px;
  background: linear-gradient(90deg, #fbcf9b, #ff9500, #fbcf9b);
  margin: 40px auto;
  border-radius: 3px;
  animation: lineSlideIn 2s 
  cubic-bezier(0.23, 1, 0.32, 1) 4.8s forwards;
  box-shadow: 0 0 25px rgba(231, 76, 60, 0.4);
  position: relative;
}
.decorative-line::before, .decorative-line::after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #ff9500;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
  animation: dotPulse 2s 
  ease-in-out 5.5s infinite;
}
.decorative-line::before {
  left: -20px;
}
.decorative-line::after {
  right: -20px;
}
.Desktop .devis-slide .bdevis-grid {
    width: 100% !important;
    grid-template-columns: 100%;
}
.Desktop .devis-slide {
    width: 350px;
    z-index: 999;
    right: 0;
    position: fixed;
    top: 160px;
}
.Desktop .devis-slide .subtitle{
  margin-bottom: 0;
  font-size: 15px;
  color: #fff;
}
.Desktop .devis-slide form#FormDevis{
  padding: 20px;
}
.Desktop .devis-slide .section-title{
  margin: 0;
  padding: 0;
}
.Desktop .devis-slide .section-title{
  font-size: 24px;
}
.section-title {
  text-align: center;
  font-size: 46px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 20px 0 50px;
  color: #fff;
  position: relative;
  padding: 0 0 20px;
  display: block;
  text-shadow: 0px 0px 7px #000;
}
.Mobile .section-title { 
  font-size: 24px; 
  margin-top: 30px;
}
.section-title:before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, #ff9500, #ff9500, #ff9500);
  animation: titleUnderline2 2s 
  ease-out 1.5s forwards;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(192, 57, 43, 0.5);
}
.section-title span { 
  animation: colorAnim 5s ease infinite;
  color: #ff9500;
}
.bdevis-grid {
  display: grid;
  grid-template-columns: 60% auto;
  gap: 50px;
}
.Tablet .bdevis-grid { 
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}
.Mobile .bdevis-grid { 
  grid-template-columns: 100%; 
}
body.Desktop.ville .bdevis-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 50px;
    margin: auto;
    width: 60%;
}
body.Tablet.ville .bdevis-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 50px; 
}
section.block-devis {
    background: linear-gradient(160deg, #1d262a 0%, #252e33 30%, #2a3439 60%, #1f292e 100%);
}
section.block-devis .subtitle { 
    color: #ffffff; 
}
form#FormDevis {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(80px);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1); 
}
.Mobile form#FormDevis {
    padding: 20px;
    background: rgb(22 18 18 / 38%);
}
.Tablet #FormDevis {
  padding: 30px;
}
.form-input {
    margin: 0 0 15px;
    width: 100%; 
    position: relative;
    padding: 12px 15px;  
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: all 0.3s ease;
}
.form-input::placeholder{ 
  color: #fff;
}
textarea.form-input {
  min-height: 120px;
  min-width: 100%;
  display: block;
}
section.block_contact  .form-input {
  background: #f9f9f8;
}
input.form-input, textarea.form-input {
 border: 2px solid rgba(1, 111, 174, 0.1);
 /* border-radius: 20px; */
}
.avis-slider {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.avis-slider-flex {
  position: relative;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.avis-card {
  width: fit-content;
  height: auto;
  padding: 50px 30px 20px;
  background: #ffffff6e;
  position: relative;
  color: #202020;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 10px;
}   
.slider-icon-quote {
  position: absolute;
  top: -65%;
  transform: translate(-50%, 50%);
  left: 60%;
}
.slider-icon-quote img {
  width: 125px;
  height: 105px;
  object-fit: contain;
}
.slider-icon-google {
  position: relative;
  left: -20%;
  top: -60px;
  display: flex;
  width: fit-content;
  height: auto;
  transform: translate(50%, 50%);
}
.slider-icon-google img { 
  width: 42px;
  height: 42px;
  object-fit: contain;
}



.telTop {
    display: flex;
}
.telTop > div {
    margin-left: 15px;
    font-size: 26px;
}
.telTop img {
    filter: invert(1);
}
.telTop span {
    display: block;
    font-weight: bold;
    padding: 7px 0;
    color: white;
}
p.slogan {
    border-top: 1px solid;
    font-weight: bold;
    margin: auto;
    color: white;
    font-size: 12px;
}
.rappel-top {
    position: relative;
    padding-left: 80px;
    margin-left: 3rem;
}
.Mobile .rappel-top {
    padding: 20px;
    text-align: center;
    margin: 0;
}
.rappel-top::before {
  background-image: url(../images/img/call.webp);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 100%;
  border: 1px solid #c60000;
  content: '';
  position: absolute;
  left: 0;
  top: 57%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
}
.Mobile .rappel-top::before {
    position: static;
    display: block;
    transform: none;
    margin: auto;
}
.rappel-top strong {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: white;
    display: block;
}
.Mobile .rappel-top strong {
    color: black;
}
#rappel_immediat .form-control {
    font-size: 12px;
    font-weight: bold;
    min-width: 300px;
    flex: 0 0 200px;
    height: 60px;
    padding: 12px;
}
.Mobile #rappel_immediat .form-control { 
    min-width: 100%; 
}
.btn.btn-submit {
    background: var(--black);
    border: 1px solid transparent;
    color: var(--white);
    font-size: 12px;
    padding: 7px 15px;
    border-radius: 3px;
    letter-spacing: 1px;
    font-weight: bold;
    width: 100%;
    margin-top: 5px;
}
form#rappel_immediat .btn.btn-submit {
    width: fit-content;
    height: 60px;
    padding: 25px;
    margin: 0;
    background: #ff6b00;
    font-weight: bold;
}
.menuC {
    color: white;
}

/*
Nav
*/
#sticky-wrapper {
    z-index: 999 !important;
    position: relative;
}
.bar {
    display: block;
    height: 5px;
    width: 25px;
    background-color: var(--white);
    margin: 4px auto;
}

.button {
    cursor: pointer;
    display: flex;
    align-items: center;
    width: -webkit-fill-available;
    margin: 0 auto;
    osition: relative;
    z-index: 999;
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
    background: #ff6b00;
    padding: 5px;
}
.button span {
    margin-right: 15px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    width: 100px;
    text-align: right;
    line-height: 130%;
}
.Mobile .button span,
.Tablet .button span {
    width: 55px;
    font-size: 14px;
}
span.drapeau {
    margin-left: 2rem;
}

.nav-right {
  z-index: 90;
  position: relative;
}

.middle {
  margin: 0 auto;
}

.bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.nav-right .active .bar {
  background-color: #FFF;
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.button.active .top {
    -webkit-transform: translateY(8px) rotateZ(45deg);
    -moz-transform: translateY(8px) rotateZ(45deg);
    -ms-transform: translateY(8px) rotateZ(45deg);
    -o-transform: translateY(8px) rotateZ(45deg);
    transform: translateY(8px) rotateZ(45deg);
}
.button.active .bottom {
    -webkit-transform: translateY(-11px) rotateZ(-45deg);
    -moz-transform: translateY(-11px) rotateZ(-45deg);
    -ms-transform: translateY(-11px) rotateZ(-45deg);
    -o-transform: translateY(-11px) rotateZ(-45deg);
    transform: translateY(-11px) rotateZ(-45deg);
}

.button.active .middle {
  width: 0;
}
/*.nav-list {
    position: fixed;
    background: #f7f7f7;
    z-index: 10;
    height: 100vh;
    width: 100%;
    right: 0;
    padding: 137px 0 0;
    margin: 0;
    list-style: none;
    top: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;

    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);

    -webkit-transition: transform .7s ease-in-out;
    -moz-transition: transform .7s ease-in-out;
    -ms-transition: transform .7s ease-in-out;
    -o-transition: transform .7s ease-in-out;
    transition: transform .7s ease-in-out;
}*/
.Desktop .nav-list {
    width: 100%;
    padding: 0 15px;
    opacity: 1;
    height: max-content;
    visibility: visible;
    position: relative;
    background: transparent;
    color: #000;
    display: grid;
    left: 0;
    transform: none;
    grid-template-columns: repeat(8, 1fr);
    align-items: baseline;
}
.ml-3 {
    margin-left: 3rem;
}
.nav-list.move-to-left {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    overflow: scroll;
}
/**/
.Desktop .nav-item {
    opacity: 1;
    text-align: center;
    transform: none;
}
.nav-item.open {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
/*.nav-item.open:first-child {
  padding-left: 45px;
}*/
.nav-item > a {
    color: #000;
} 
.Desktop .nav-item a {
    color: #000;
    font-size: 11px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
li.nav-submenu-item > a {
    color: #333;
    line-height: 2.5;
}
.nav-item:hover > a,
.nav-item.active > a, 
.nav-submenu-item:hover > a,
.nav-submenu-item.active > a {
    color: var(--colorP);
}
.Mobile-tel {
    background: var(--black);
    text-align: center;
}
.Tablet .Mobile-tel {
  display: flex;
  justify-content: center;
}
.Mobile-tel a {
    color: var(--white);
    display: inline-block;
    padding: 11px 0;
    margin: 0 15px;
}
.Mobile-tel img {
    filter: invert(1);
}
.nav-click {
    position: absolute;
    top: 0;
    right: 0;
    border-left: 1px solid white;
    cursor: pointer;
    background: #000;
}
.Desktop .nav-click {
    border-left: none;
    border-right: 1px solid white;
    right: inherit;
    left: 0;
    display: none;
}
.Desktop li.nav-item:hover ul.nav-submenu {
    display: block;
}

.nav-click i {
  display: block;
  height: 26px;
  width: 40px;
  background: url(../images/drop.svg) no-repeat center center;
  background-size: 20px;
}

.nav-click:hover {
  background-color: var(--colorP);
}

.nav-rotate {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
ul.nav-submenu {
    list-style: none;
    color: #000;
    padding-left: 0;
    background: #fff;
}
.Desktop ul.nav-submenu {
    position: absolute;
    z-index: 9;
    background: #fff;
    padding: 20px;
    border-top: 5px solid var(--colorS);
}
/*
Homeslider
*/

.bgImg {
    height: 1000px;
    background-color: #0000003d;
    background-blend-mode: multiply;
    background-size: cover;
}
.Mobile .homeslider, .Mobile .bgImg,
.Tablet .homeslider, .Tablet .bgImg {
    height: 600px;
}
.catpionSlider {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}
.Mobile .catpionSlider { 
    top: 70%; 
}
.Tablet .catpionSlider {
    top: 64%;
}
.catpionSlider .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.leftText {
    max-width: 700px;
    flex: 0 0 700px;
    text-align: center;
}
/*.Tablet .leftText {
    max-width: 400px;
    flex: 0 0 400px;
    text-align: center;
}*/
.Mobile .leftText {
  max-width: 90%;
  flex: 0 0 90%;
}
.titleSlider {
    background: var(--white);
    padding: 5px 15px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}
p.subtitleS {
    font-size: 3.5rem;
    line-height: 130%;
    font-weight: bold;
    color: var(--white);
    text-shadow: 0 0 9px black;
}
.Tablet p.subtitleS {
    font-size: 2.7rem;
}
.Mobile p.subtitleS {
    font-size: 1.7rem;
}
.rightDevis {
    max-width: 400px;
    flex: 0 0 400px;
}
.Tablet .rightDevis {
  max-width: 100%; 
}
.item-devis {
    background: #f2f2f2;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.Mobile .item-devis,
.Tablet .item-devis {
    border-radius: 0;
}
.item-devis b.h3 {
    display: block;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 1rem;
    text-align: center;
}
#FormDevis .form-control {
    margin-bottom: 10px;
    height: auto;
    background: #fff;
    padding: 12px 15px;
    height: auto;
    color: #000;
    transition: all .3s ease;
    border: none;
    font-size: 14px;
}
.inline-b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
}
#FormDevis .form-control:focus {
    border-color: var(--colorS);
    box-shadow: none;
    outline: none;
}
#FormDevis textarea.form-control {
    resize: vertical;
    min-height: 120px;
    max-height: 150px; 
}
.btn.btn-devis {
    text-transform: uppercase;
    /* letter-spacing: normal; */
    border: 1px solid transparent;
    padding: 15px;
    border-radius: 10px;
    background: #ff6b00;
    color: #fff;
    margin-top: 5px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
}

/*
Content
*/
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.fristBlck {
    background: #f7f7f7; 
    position: relative;
}
.fristBlck2 { 
    background-color: #000;/*
    background-image: url(../images/img/bg-redBlock.webp);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
/*
.Mobile .fristBlck2 {
    background-image: url(../images/img/bg-mobile-redBlock.webp);
}*/
.col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.col3_ {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-top: 3rem;
}
.Mobile .col3_,
.Mobile .col {
  display: block;
}
/*.text3_ {
    background: white;
    padding: 15px;
    box-shadow: 0 0 14px 0px rgb(0 0 0 / 7%);
    border-radius: 17px;
}
.Mobile .text3_ {
    margin: 15px 0;
}
.text3_ h2 {
    color: var(--black);
}*/
.text3_ img {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    display: block;
    background: #eee;
}
.text3_ > div {
    margin: -100px 20px 0;
    background: #fff;
    z-index: 2;
    position: relative;
    padding: 40px;
    border-radius: 10px;
}
.Mobile .text3_ > div { 
    padding: 20px; 
}
.text3_ h2 {
    margin: 0 0 30px;
}
.colBlock_2 {
  text-align: center;
  background: #f7f7f7;
  padding: 40px;
}
.Mobile .colBlock_2 {
  margin: 30px 0;
  text-align: left;
  background: transparent;
  padding: 0;
}
.Desktop .colBlock_2 > figure,
.Tablet .colBlock_2 > figure {
    margin: -8rem auto 2rem;
    border-radius: 100%;
    overflow: hidden;
    width: 250px;
    border: 3px solid var(--colorS);
}
.Mobile .colBlock_2 figure {
  margin: 0 0 1rem;
}
.Desktop .mt-7,
.Tablet .mt-7 {
  margin-top: 7rem;
}
.bgContent {
    background-color: black;
    background-attachment: fixed;
    padding: 100px 0 150px;
}
.textBlock {
    background-color: rgb(0 0 0 / 76%);
    padding: 2rem;
    max-width: 700px;
    color: var(--white);
}
.lastBlock {
    padding: 80px 0;
}
.lastBlock_text {
    text-align: center;
    max-width: 960px;
    margin: auto;
}
.lastBlock_text > span {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    overflow: hidden;
    border: 3px solid var(--colorP);
    margin: -10rem auto 0;
    position: relative;
}

.mainBlock {
    display: grid;
    grid-template-columns: 60% 1fr;
    grid-gap: 50px;
}
.Mobile .mainBlock {
    display: flex;
    flex-direction: column-reverse;
}
.mainLeft h1 {
    font-weight: bold;
    margin-top: 0;
    color: var(--colorS);
}

/*
Map
*/
.coordonnesMap {
    text-align: center;
}
.adresse {
    background-color: var(--colorS);
    padding: 25px 0;
    color: white;
}
.adresse strong {
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 1px;
}
.adresse p {
    margin-bottom: 0;
    font-size: 20px;
}
#Map {
  height: 350px;
}

/*
Footer
*/
#footer {
    text-align: center;
    padding:  50px 0;
    background: #f7f7f7;
}
.Mobile footer#footer .grid-col-4 {
    grid-template-columns: 100%;
}
.Tablet footer#footer .grid-col-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.bgLight {
  background: var(--light);
}
.villes_int a {
    display: inline-block;
    margin: 0 15px;
    font-size: 14px;
}
.Mobile .villes_int a {
  display: block;
  border-bottom: 1px dashed;
  text-align: left;
  padding: 11px 0;
}
.Mobile .villes_int a:last-child {
    border-bottom: none;
}
.villes_int a:hover {
    color: var(--colorS);
    text-decoration: underline;
}
.copyright {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 13px;
    letter-spacing: 1px;
}
.copyright a {
    font-weight: bold;
}

.Mobile .copyright a {
    margin: 20px 0 0;
    display: block;
}
/*
Avis
*/
#BgImgBlock {
    padding: 100px 0;
    background-attachment: fixed;
    background-color: #00000052;
    background-blend-mode: multiply;
}
.Mobile #BgImgBlock{
    padding: 40px 0;
}
b.titreAvis {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--colorS);
}
.block-item {
    max-width: 700px;
    margin: 0 0 0 auto;
    background: rgb(0 0 0 / 75%);
    padding: 40px;
    text-align: left;
    color: white;
    border-radius: 10px;
}
.Mobile .block-item {
    padding: 20px;
}
.block-item h2 {
    margin: 0 0 20px;
}
.btn.btn-temoin {
    border: 1px solid transparent;
    background: var(--colorS);
    padding: 7px 15px;
    display: inline-block;
    margin-top: 5px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 7px;
    font-weight: bold;
    transition: all .3s ease;
}
.btn.btn-temoin:hover {
    background: var(--colorP);
}

.temoin {
    background: #e7e7e7;
    color: var(--black);
    padding: 80px 0;
}
.Mobile .temoin {
    padding-top: 8rem;
}
.Desktop .temoin .grid-row {
    display: grid;
    grid-template-columns: 60% auto;
    grid-gap: 20px;
}
.col-right {
    border: 3px solid #0f4f62;
    padding: 20px;
}
.Desktop .col-right {
    margin-left: 1rem;
}
.temoin .item-tem {
    border-bottom: 1px solid rgb(98 98 98 / 20%);
    padding-bottom: 15px;
    margin-bottom: 1rem;
}
h1.Titrecontenu {
    font-size: 36px;
    margin-bottom: 2rem;
}
.Mobile h1.Titrecontenu {
    font-size: 22px;
}
h2.Titrecontenu {
    color: var(--colorS);
}
#avis_form {
    margin-top: 15px;
}

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

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

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

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

/*.lastSection {
    padding: 60px 0 0;
}
.Desktop .lastSection .itemText {
    text-align: right;
}*/
.lastSection .text-left .itemText {
    text-align: left;
}

#prestations.lastSection .itemText h2 {
    color: var(--black);
}

.lastSection .col {
    align-items: center;
}
#prestations .col {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.itemImg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}
.itemImg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #eee;
}
.Mobile .itemImg img {
    height: 250px;
    margin: 0 0 30px;
}
.Tablet .itemImg img { 
  height: 250px; 
  margin: 0 0 40px;
}
.itemImg-1,
.itemImg-2 {
    height: 100%;
}
.itemImg-1 img {
    border-radius: 8px 8px 8px 100px;
}
.itemImg-2 img {
    border-radius: 8px 100px 8px 8px;
}
#prestations .itemImg {
    text-align: center;
}
.lastSection .itemImg span img,
#prestations .itemImg span img {
    display: block;
    margin: auto;
    box-shadow: 0 0 0px 4px #000;
    padding: 15px;
}
.Mobile .itemImg {
    margin-left: 0;
}
#prestations .text-left .itemImg {
    /*margin-left: auto;
    margin-right: 3rem;*/
    margin: 0;
}
.Mobile #prestations .text-left .itemImg {
    margin-right: 0;
}
/*.itemImg::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 130%;
    border: 3px solid var(--colorS);
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    z-index: -1;
}*/
.textPage {
    border-bottom: 1px dashed;
}

/*
Page 404
*/
/**
404
*/
.blog_pageIntrouvable {
    background: var(--light);
    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(--colorS);
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: var(--black);
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--black);
}
.blog_pageIntrouvable a {
    color: var(--colorS);
}
.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;
}
}
.swipebox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid #ddd;
}
.Mobile .swipebox {
    height: inherit;
}

.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
.Mobile #swipebox-close {
    right: 0%;
    width: 30px;
    height: 30px;
    background-position: 5px 2px;
    transform: translateX(-50%);
}

.titre-album {
  clear: both;
  display: block;
  font-size: 32px;  
  margin: 20px 0;
  width: 100%;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
/*----------------------------------------------------------------------------------- 
MESSAGES 
-----------------------------------------------------------------------------------*/

div#Messages {
    text-align: center;
    background-color: #000;    
    padding: 10px;
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
}

div#Messages p {
    margin: 0;
    color: #fff;     
    font-size: 20px;
}
.Tablet div#Messages p,
.Mobile div#Messages p {
    font-size:14px;
}
span.drapeau img {
    width: 100px;
}
.fristBlck .col {
    align-items: center;
}
.fristBlck .img_ {
    margin: 0 auto;
    position: relative;
    width: 79%;
}
#prestations .fristBlck .img_ {
    max-width: 90%;
}
.Desktop .fristBlck .img_::before {
    content: "";
    padding: 50px;
    border-style: solid;
    border-width: 2px 0 0 2px;
    border-color: var(--colorS);
    position: absolute;
    top: -3rem;
    left: -3rem;
}
.Desktop .fristBlck .img_::after {
    content: "";
    padding: 50px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: var(--colorS);
    position: absolute;
    bottom: -3rem;
    right: 50px;
}
.fristBlck .img_ img {
    transition: all .3s ease;
}
.fristBlck .img_:hover img {
    transform: scale(1.1);
}

#realisations,
#mentionsL {
  padding: 60px 0;
}
/*.Mobile #realisations,
.Mobile #mentionsL {
    padding-top: 8rem;
}*/
.Desktop .grid-rea {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-gap: 15px;
}
.Tablet .grid-rea {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 15px;
}
.swipebox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid #ddd;
}
.Mobile .swipebox {
    height: inherit;
    margin: 15px 0;
}

 
b.titre-album {
    display: block;    
    color: #000;    
    font-size: 1.5rem;    
    margin-bottom: 1.5rem;
}

.Mobile .col-rev {
    display: flex;
    flex-direction: column-reverse;
}
.categorieBlock strong.h2 {
    text-align: center;
    display: block; 
    letter-spacing: normal;
    font-size: 36px;
    width: 60%;
    margin: 20px auto 50px;
} 
.Mobile .categorieBlock strong.h2,
.Tablet .categorieBlock strong.h2{
    font-size: 22px;
    width: 100%;
}
.categorieBlock {
    background: 0 0,url(../images/img/pattern_tuile.png); 
    color: #1A1A1A;
}
.cat_item { 
    display: flex; 
    overflow: hidden;
} 

.cat-box{
    padding: 0 15px;
}
.cat-box > div {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}
.cat-box figure {
border-radius: 10px;
}
.cat-box figure img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background: #eee;
}
.Tablet .cat-box figure img,
.Mobile .cat-box figure img { 
    height: 200px; 
}
.cat-box > div:hover figure img {
     transform: scale(1.1) rotate(4deg);
}
.cat-box > div:hover .icon-cat img {
    filter: brightness(0) invert(1)!important;
}

.cat-box > a {
    display: block; 
}
.cat-box > a:hover {
    box-shadow: none;
}
.cat-box > a.active {
    background: var(--colorS);
}
.cat-box span {
    display: flex; 
    text-align: center;
    line-height: normal;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px; 
    justify-content: center; 
}
.cat-box a.active span {
    color: #000;
}

/*
Devis fixed footer
*/
.devis-fixed {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    width: 100%;
}
.devisFixed {
    display: none;
    transition: all .3s;
    background: white;
    padding: 25px;
}
.devisFixed .btn.btn-devis {
    background: var(--colorP);
    color: var(--white);
}

.devisFixed.openDevis {
    display: block;
}
button#btnDevis {
    border: none;
    background: var(--colorS);
    display: block;
    padding: 14px;
    width: 100%;
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.slogan p {
    margin: 0;
    font-style: italic; 
}
.menu {
    position: relative;
    display: block;
    width: 80%;
}

/*------------------------------------- 
ICONE 
-------------------------------------*/


.icon{
    position: relative;
    padding: 12px;
}
.icon:before {
    content: "";    
    background-repeat: no-repeat!important;
    background-size: contain!important;
    background-position: center!important;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.icon-phone:before {
    background: url(../images/img/icon-fixe-mob.png);
}
.icon-mobile:before {
    background: url(../images/img/icon-portable-mob.png);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail.png);
}
.icon-location:before {
  background: url(../images/img/icon-locali.png);
}
.icon-map:before,
.icon-map-marker:before, .adr:before {
  background: url(../images/img/icon-adresse.png);
}
.icon-clock-o:before, .hor:before {
  background: url(../images/img/icon-hor.png);
}
.icon-arrow-right:before {
  background: url(../images/img/icon-arrow-right.png);
}
.icon-toit:before {
  background: url(../images/img/icon-toit.png);
  filter: brightness(0);
}

.leftText p {
    text-shadow: 0 0 9px black;
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    text-align: left;
    margin: 0 0 30px;
    line-height: normal;
}
p.caption-txt-2 {
    font-weight: 500;
    font-size: 32px;
}
.Mobile p.caption-txt-2 { 
    font-size: 22px;
}
span.gDecennale {
    display: block;
    text-align: left;
    margin: 0 0 30px;
}
.btn-caption {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
}
.btn1 {
    color: #000 !important;
    font-style: normal;
    line-height: 18px;
    text-transform: uppercase;
    display: inline-block;
    transition: all .4s;
    background: #ff6b00;
    padding: 20px 24px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 14px;
}

.btn1::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 0;
  left: 50%;
  top: 0;
  background: #000;
  transition: all .4s;
  border-radius: 8px;
  z-index: -1;
}

.btn1:hover {
  transform: translateY(-5px);
  transition: all .4s;
  color: #fff !important;
}

.btn1:hover::after {
  width: 100%;
  height: 100%;
  transition: all .4s;
  left: 0;
}
.btn1:hover i.icon:before{
    filter: invert(1);
}
.btn1 i {
  margin-left: 4px;
}
.btn1 i.icon:before {
    width: 16px;
    height: 16px;
}
.service-item {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.09);
    padding: 28px 24px;
    transition: all 0.4s;
    height: 100%;
}
.grid-col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    justify-content: center;
}
.grid-col-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    justify-content: center;
}
.grid-col-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    justify-content: center;
}
.Mobile .container > .grid-col-2,
.Tablet .container > .grid-col-2 {
    grid-template-columns: 100%;
}
.gap-20{
    gap: 20px;
}
.gap-30{
    gap: 30px;
}
.gap-50{
    gap: 50px;
}
.gap-100{
    gap: 100px;
}
.over-slider {
    display: block;
    margin-top: -100px;
} 

.Mobile .over-slider, .Tablet .over-slider {
  margin-top: 0;
  padding: 30px 0;
}
.Mobile .over-slider .grid-col-3 {
    grid-template-columns: 100%;
}
.icon-rotate {
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    display: inline-block;
    transition: all 0.4s;
    background: #f7f7f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-item:hover .icon-rotate,
.cat-box > div:hover .icon-rotate,
.contact-divers > div:hover .icon-rotate{
    transform: rotateY(-180deg);
    transition: all .4s;
    background: #000;
}
.icon-rotate img {
    height: 40px;
    width: 40px;
    filter: brightness(0);
    display: block;
    object-fit: contain;
}
.service-item:hover .icon-rotate img,
.cat-box > div:hover .icon-rotate img,
.contact-divers > div:hover .icon-rotate img{
    filter: invert(1);
}
.service-item div {
    display: flex;
    font-size: 24px;
    align-items: center;
    line-height: normal;
    font-weight: 600;
    gap: 20px;
}
.Mobile .service-item div,
.Tablet .service-item div,
.Mobile .service-item p,
.Tablet .service-item p {
  font-size: 14px; 
}
.service-item p {
    font-size: 18px;
    color: #333;
}
.top-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.Mobile .top-contact ,
.Tablet .top-contact {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.top-contact a {
    font-size: 16px;
    font-weight: 600;
}
.Mobile .top-contact a,
.Tablet .top-contact a { 
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    /* align-items: center; */
}
.Mobile .top-contact .icon:before,
.Tablet .top-contact .icon:before {
    filter: invert(1);
}
.block-rs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
} 
.block-rs a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all .3s ease;
}
.block-rs a:hover img { 
    filter: drop-shadow(1px 1px 3px black);
}
.footer-content {
    text-align: left;
}
.footer-content a{
    color: #000;
}
.footer-content ul {
    margin: 0;
    padding: 0;
}
.footer-content ul li {
    list-style: none;
}
.footer-logo {
    display: block;
    margin: 0 0 30px;
}
.Mobile .footer-logo { 
    text-align: center;
}
.text-agence p {
    font-size: 12px;
    line-height: 2;
}
.text-agence a {
    text-decoration: underline;
    font-weight: bold;
}
.footer-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 30px;
}
.Mobile .footer-title{
    margin: 30px 0 10px;
}
.footer-content ul li a {
    line-height: 2.5;
}
.footer-col > p {
    display: flex;
    gap: 15px;
    align-items: center;
}
.mobilC {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Mobile .mobilC {
    flex-wrap: wrap;
    justify-content: center; 
}
.Tablet .mobilC {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.image-anime {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}
.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.Block1-img1 img {
    height: 350px;
    width: 100%;
    background: #eee;
    display: block;
    margin: 0 0 30px; 
    object-fit: cover;
    border-radius: 100px 8px 8px 8px;
}

.Block1-txt h1 {
    margin: 20px 0 30px;
}
.Mobile .Block1-txt h1 { 
    font-size: 26px;
}

.Block1-img2 img {
    width: 100%;
    height: 526px;
    object-fit: cover;
    background: #eee;
    display: block;
    border-radius: 8px 8px 100px 8px;
}
.Mobile .Block1-img img {
    height: 250px;
}
.icon-cat {
    margin: 30px auto;
}
.icon-cat
.counter {
  font-size: 48px; 
  font-weight: 600;
}
.dix-ans {
  background: #000;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  color: #fff;
  line-height: normal;
}
.dix-ans p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.dix-ans div {
    display: flex;
    justify-content: center;
    margin: 0 0 20px;
    font-size: 48px;
    color: #fff;
}

.subtitle {
    display: flex;
    gap: 10px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
}
.engangement {
    margin: 20px 0 30px;
}
.engangement span {
    display: flex;
    line-height: 2.5;
    font-weight: bold;
    padding-left: 40px;
    position: relative;
    align-items: center; 
}
.engangement span:before {
    content: "✔";
    position: absolute;
    background: #000;
    color: #fff;
    line-height: 1;
    padding: 8px;
    left: 0;
    border-radius: 50%;
    font-weight: 500;
    width: 25px;
    height: 25px; 
    display: flex
;
    align-items: center;
}
section.Block1 .grid-col-2.gap-50 {
    align-items: center;
}
.Block1-img.grid-col-2.gap-30 {
    height: fit-content;
} 
.Mobile .Block1-img.grid-col-2.gap-30 {
    height: fit-content;
    grid-template-columns: 100%;
}

.categorieBlock .subtitle {
    justify-content: center;
}
.btn-content {
    margin: 30px 0 0;
    display: flex;
}
.services-2 .service-item div {
    display: block;
    text-align: center;
    margin: 0 0 20px;
}
.services-2 figure {
    margin: 0 auto 20px;
}
.services-2 p {
    text-align: center;
}
.services-2 {
    display: grid;
    grid-template-columns: 60% 40%;
}
.Mobile .services-2,
.Tablet .services-2 {
    display: grid;
    grid-template-columns: 100%;
}
.services-2 span.service-title {
    font-size: 16px;
}
.services-2 p {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}
.itemText {
    padding-bottom: 250px;
}
.Mobile .itemText,
.Tablet .itemText {
    padding-bottom: 0;
}
.under-last {
    margin-top: -230px;
}
.Mobile .under-last,
.Tablet .under-last {
    margin-top: 0;
}
.Mobile .under-last .grid-col-3 {
    grid-template-columns: 100%;
}

.itemText h2 {
    margin: 0 0 30px;
}
.section-rapel { 
    background: linear-gradient(to bottom, #ffffff 50%, #f7f7f7 50%);
}
.section-rapel-grid {
    display: grid;
    grid-template-columns: 33.33% 1fr;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.Mobile .section-rapel-grid { 
    grid-template-columns: 100%; 
}
.section-rapel-txt strong {
    font-size: 48px;
    color: #fff;
}
.Mobile .section-rapel-txt strong {
    font-size: 24px; 
}
.Tablet .section-rapel-txt strong {
  font-size: 32px; 
  line-height: normal;
}
.section-rapel-txt {
    background: #000;
    padding: 50px;
    height: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}
.Mobile .section-rapel-txt { 
    padding: 20px; 
}
.section-rapel-txt span {
    color: #fff;
    display: block;
    margin: 40px 0;
    font-size: 32px;
    line-height: normal;
}
.Mobile .section-rapel-txt span { 
    margin: 20px 0;
    font-size: 18px; 
}
.Tablet .section-rapel-txt span { 
  margin: 20px 0;
  font-size: 22px; 
}
form#rappel_immediat .form-group {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
}

.section-rapel-map {
    padding: 30px 0;
}
.section-rapel-map div#Map {
    z-index: 0;
    border-radius: 10px;
    height: 300px;
}
.stat-item > div {
    font-size: 48px;
    font-weight: 600;
}
.statistique {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0 0;
}
.stat-item {
    display: block;
    line-height: normal;
}
.stat-item p {
    color: #666;
    font-size: 18px;
    margin: 20px 0 0;
} 
section.block-presta1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
    background: #eee;
    display: block;
    border-radius: 10px;
}
.Mobile section.block-presta1 img{
    height: 250px;
    min-height: 250px;
 }
 .Tablet section.block-presta1 img{
    height: 300px;
    min-height: 300px;
 }
.presta1-left .presta1-img {
    margin: 0 0 30px;
}
.presta1-right .presta1-img {
    margin: 30px 0 0;
}
div#site-container h2 {
    margin: 0 0 30px;
    line-height: normal;
}
section.block-presta2 {
    background: #0e0e0e;
    color: #fff;
}
.presta2-txt {
    padding: 40px;
    background: #262626;
    border-radius: 10px;
}
.presta2-img img {
    background: #eee;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}
section.block-presta2 .subtitle {
    color: #fff;
    margin: auto;
    justify-content: center;
    margin: 0 0 20px;
}
section.block-presta2 .icon:before {
    filter: brightness(0) invert(1);
}
.presta2-title {
    width: 60%;
    text-align: center;
    margin: 0 auto 30px;
    display: block;
}

.contact-h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: normal;
}
.contact-formulaire .item-devis b.h3 {
    text-align: left;
}
.contact-intro {
    font-size: 18px;
    margin: 0 0 30px;
}
.contact-divers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.Mobile .contact-divers{
    grid-template-columns: 100%;
}
.contact-intro > div {
    display: block;
    margin-bottom: 30px;
}
.contact-divers > div {
    background: #f7f7f7;
    padding: 35px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.contact-divers figure.icon-rotate {
    background: #fff;
}
.contact-tel {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row!important;
}
.Mobile .contact-tel {
    grid-column: span 1;
    flex-direction: column!important;
    align-items: center;
    text-align: center;
}
.contact-divers > div p { 
    margin: 0;
} 
.contact-divers span {
    font-size: 20px;
    font-weight: 600;
}
.contact-divers p {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}
body.Desktop.devis .item-devis {
    width: 60%;
    margin: auto;
}
/*----------------------------------------------------------
MENTIONS
---------------------------------------------------------*/
.mentions h2 {
    padding: 20px 0;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
.mentions ol {
    max-width: 100%;
    width: 80%;
    margin: auto;
    padding: 0 0 30px;
}
body.Mobile.mentions ol {
    width: 100%; 
    padding:0 20px 20px;
}
.mentions h3 {
    font-size: 20px; 
    font-weight: 600;
}

.logoDivers {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 30px;
}
.logoDivers img {
    width: 120px;
    height: 100px;
    object-fit: contain;
}
.Mobile h2, 
.Mobile .h2{
    font-size: 20px;
}
p.siret {
    font-size: 11px;
}