/*
Theme Name: child-camille-mercier
Template: camille-mercier
Author: Ton Nom
Version: 1.0
*/


:root {


  /* ✅ Variables spécifiques footer */
  --footer-bg: #101c28;
  --footer-text: #eeeeee;
  --footer-light: #ccc;
  --footer-border: #ffffff;
  --footer-link-hover: 0.8;
  --footer-accent: rgba(94, 140, 128, 0.5);
  /* Bande arrière */
  --footer-accent-strong: rgba(94, 140, 128, 0.52);
  /* Bande avant */
}

.logo-container {
  color: #384457;
}


body {
  background-color: white;
}

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

.fa {
  display: inline !important;
}

.cst-space-block {
  padding: 0px 0px 120px 0px;
}

/* Ajoutez position: relative pour les éléments de la liste */
.nav-links .nav-link {
  position: relative;
  /* Ajouté pour positionner le dropdown relativement à cet élément */
  display: inline-block;
}

/* Dropdown - position absolue par rapport à .nav-link */
.nav-links .nav-link .dropdown {
  display: none;
  /* Masquer par défaut */
  position: absolute;
  top: 100%;
  /* Le dropdown apparaît juste en dessous du lien */
  left: 0;
  background-color: #333;
  border-radius: 5px;
  padding: 10px 0;
  min-width: 150px;
  z-index: 10;
  /* Pour être sûr qu'il passe au-dessus d'autres éléments */
}

/* Afficher au survol du parent */
.nav-links .nav-link:hover .dropdown {
  display: block;
  /* Afficher le menu au survol */
}

/* Style des éléments du dropdown */
.nav-links .nav-link .dropdown li {
  padding: 10px;
}

.nav-links .nav-link .dropdown li a {
  color: white;
  text-decoration: none;
  padding: 5px 15px;
  display: block;
}

.nav-links .nav-link .dropdown li a:hover {
  background-color: #555;
}


/***** BUTTON ROUND AND ARROW ****/

/* Conteneur de l'image */
.image-container {
  position: relative;
  overflow: hidden;
  /* Assure que l'image ne déborde pas */
}

/* Titre sur l'image - toujours visible */
.image-title {
  position: absolute;
  bottom: 40px;
  font-family: 'Raleway';
  font-style: italic;
  left: -1px;
  /* line-height: 10px; */
  width: 90%;
  opacity: 0.85;
  color: white;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2em;
  z-index: 2;
  background: rgb(195 111 90);
  padding: 15px 10px;
}

/* Effet de zoom et coloration lors du hover */
.image-container img {
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Lors du survol de l'image, on applique un zoom et une légère transparence */
.image-container:hover img {
  transform: scale(1.1);
}


.image-container {
  position: relative;
  overflow: hidden;
  /* Assure que l'image ne dépasse pas du conteneur */

}

.cst-rea .image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #44818978;
  /* Fond semi-transparent noir */
  z-index: 1;
  /* Mettre le fond derrière l'image */
}

.cst-rea .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 0;
  /* L'image doit être en dessous du fond */
}

.image-container:hover img {
  transform: scale(1.1);
  /* Effet de zoom */
}

.discover-button-wrapper {
  position: absolute;
  bottom: 10%;
  /* Peut ajuster la position en fonction de l'endroit où tu veux le bouton */
  left: 7%;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  /* Assurer que le bouton et le texte sont au-dessus du fond et de l'image */
  transition: transform 0.5s ease;
}

.discover-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 0;
  background-color: transparent;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 20px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.arrow-rea {
  font-weight: thin;
  font-size: 25px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.text-rea {
  font-style: italic;
  margin-left: 6px;
  font-size: 21px;
  color: white;
  line-height: 1.2em;
  font-weight: 300;
  transition: opacity 0.5s ease-in-out;
}

/* L'animation de la bordure et du bouton déclenche une transition simultanée */
.image-container:hover .discover-button-wrapper .discover-button {
  border-color: transparent;
}

.image-container:hover .discover-button-wrapper .arrow-rea {
  transform: translateX(4px);
  /* Déplacement plus proche du "D" */
  opacity: 0.7;
  /* Légère transparence pour l'effet de fade */
}

/* Animation fade sur le texte "Discover" (sans boucle) */
.image-container:hover .discover-button-wrapper .text-rea {
  opacity: 0.7;
  /* Légère transparence lorsque le survol commence */
}

/* Animation de la disparition de la bordure du bouton */
.image-container:hover .discover-button-wrapper .discover-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  /* Fond transparent pour éviter le fond blanc */
  border-radius: 50%;
  transform-origin: top left;
  animation: borderAnimation 0.5s forwards;
  /* Animation de la disparition de la bordure */
}

/***** END BUTTON ROUND AND ARROW ****/


/***** START PAGE REALISATION ****/

.bg-head-service {
  background-image: url(https://little-tapisserie.fr/wp-content/uploads/2025/03/canape-fauteuil-chaise-little-tapisserie-bordeaux.png) !important;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
  background-position: bottom center;
  height: 250px;
  position: relative;
}

.bg-head-rideau {
  background-image: url(https://little-tapisserie.fr/wp-content/uploads/2025/05/rideaux-voilage-store-little-tapisserie.png) !important;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
  background-position: bottom center;
  height: 250px;
  position: relative;
}

.bg-head-banquette {
  background-image: url(https://little-tapisserie.fr/wp-content/uploads/2025/05/banquette-little-tapisserie-.png) !important;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
  background-position: bottom center;
  height: 250px;
  position: relative;
}


.bg-head-service-tete-de-lit {
  background-image: url(https://little-tapisserie.fr/wp-content/uploads/2025/03/tete-de-lit.png) !important;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
  background-position: center;
  height: 250px;
  position: relative;
}



.bg-head-outdoor {
  background-image: url(https://little-tapisserie.fr/wp-content/uploads/2025/05/outdoor-1.png) !important;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
  background-position: center;
  height: 250px;
  position: relative;
}



.bg-head-service::before,
.bg-head-banquette::before,
.bg-head-outdoor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #527f853f;
  z-index: 1;
}

.bg-head-rideau::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #527f854a;
  z-index: 1;
}

h2.cst-title-d-inter-contact {
  padding: 35px 0px 35px 0px;
  color: #ffffff;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 100%;
  position: relative;
  z-index: 2;
}


.cst-info-contact li {
  color: #ffffff;
  text-decoration: none;
  list-style-type: none;
  font-size: 1.2em;
}

.orange-bar-head {
  height: 25px;
  width: 25%;
  position: absolute;
  z-index: 500;
  left: 0;
  bottom: -14px;
  background-color: #c46e59;
}

.trsp-bg-left-solid {
  position: absolute;
  top: 20px;
  left: 0;
  width: 30%;
  height: 350px;
  background-color: #527f8536;
  z-index: -300;
}


.fil04-svg {
  position: absolute;
  bottom: 144px;
  left: 0;
  width: 32%;
  height: 200px;
  z-index: 10;
}

.ico-service {
  font-size: 2.8em !important;
  color: #c46f5a;

}

.cst-ico-pos {
  display: flex;
  justify-content: right;
  padding: 0px 40px 0px 40px;
}

.cst-ico-pos p {
  line-height: 1.5em;
  padding-top: 10px;

}

.deco05-svg {
  position: absolute;
  top: 290px;
  right: 0%;
  width: 5%;
  opacity: 0.3;
  /* height: 420px; */
  z-index: 10;
}

.band-contact {
  background: rgb(50, 97, 105);
  background: linear-gradient(90deg, rgba(50, 97, 105, 1) 0%, rgba(84, 139, 148, 1) 49%, rgba(68, 121, 129, 1) 100%);
  height: 140px;
  align-items: center;
  display: flex;
}

.cst-top-band-contact {
  margin-top: 160px !important;
}

.band-contact h2.title {
  color: #fff;
  padding-left: 40px;
}

.orange-bar-footer {
  display: none;
}



.cst-pad-services {
  padding: 0 40px;
}

.cst-padtop-page {
  padding-bottom: 70px;
}

a.cst-band-contact {
  color: #ffffff;
  text-decoration: underline;
  cursor: pointer;
}

a.cst-band-contact:hover {
  color: #ffffff;
  opacity: 0.9;
}

.band-contact h2.title {
  font-size: 1.7em;
}

.cst-d-none-dest {
  display: none;
}



/***** END PAGE REALISATION ****/



:root {
  --white: #ffffff;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1300px;
  }
}

/* 404 page */
.bg-img-404 {
  background-image: url(https://scape-voyage.fr/wp-content/uploads/2024/11/404-page.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 700px;
}


/* TAB */
.nav-pills .nav-link {
  width: 200px;
}

.tab-pane p {
  padding: 0 25px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #d72780 !important;
  font-weight: 600;
  border-bottom: 3px solid #f63f9c;
  border-radius: 0;
  background-color: #fff !important;
  margin-bottom: 20px;
}

button.nav-link {
  color: #1a5f5b !important;
}

/* END TAB */


.pt-subtitle {
  padding-bottom: 40px;
}

p {
  font-family: "lato", sans-serif;
  font-size: 1.1em;
  letter-spacing: 0.2px;
  color: #25262d;
  letter-spacing: 0.1px;
}


.hashtag {
  margin-top: -25px;
  position: absolute;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -3px;
  font-family: "Poppins", sans-serif;
  color: transparent;
  background: radial-gradient(circle farthest-corner at center center, #d4d9dc3b 23%, #d7e5e821 42%, #e7e8eb82 82%, #f9f9f942 100%);
  -webkit-background-clip: text;
  background-clip: text;
  z-index: 1;
  /* Ajuste selon la position souhaitée */
}

.hashtag2 {
  margin-top: -25px;
  left: 25%;
  position: absolute;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -3px;
  font-family: "Poppins", sans-serif;
  color: transparent;
  background: radial-gradient(circle farthest-corner at center center, #d4d9dc3b 23%, #d7e5e821 42%, #e7e8eb82 82%, #f9f9f942 100%);
  -webkit-background-clip: text;
  background-clip: text;
  z-index: 1;
}

.hashtag3 {
  margin-top: -25px;
  left: 0;
  top: -140px;
  position: absolute;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -3px;
  font-family: "Poppins", sans-serif;
  color: transparent;
  background: radial-gradient(circle farthest-corner at center center, #d4d9dc3b 23%, #d7e5e821 42%, #e7e8eb82 82%, #f9f9f942 100%);
  -webkit-background-clip: text;
  background-clip: text;
  z-index: 1;
}

.jarallax2 img {
  object-fit: contain !important;
}

.hashtag.vertical {
  top: 400px;
  right: 0px;
  position: absolute;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -3px;
  font-family: "Poppins", sans-serif;
  color: transparent;
  background: radial-gradient(circle farthest-corner at center center, #d4d9dc3b 23%, #d7e5e821 42%, #e7e8eb82 82%, #f9f9f942 100%);
  -webkit-background-clip: text;
  background-clip: text;
  z-index: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}



.hovered-item {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* Forme du cercle */
  overflow: hidden;
  /* Cache l'overlay qui dépasse */
  text-align: center;
}

.hovered-item img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  /* border-radius: 50%; $/
  /* Forme circulaire pour l'image */
  transition: transform 0.5s ease;
  /* Animation de l'effet scale */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(16, 129, 115, 0.65);
  /* Couleur et transparence de l'overlay */
  border-radius: 50%;
}

.hovered-item:hover .overlay {
  opacity: 1;
  /* Affiche l'overlay au survol */
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a5f5b66;
  border-radius: 50%;
  z-index: -1;
  border: thick double #e184ad;
}

.background-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a5f5b66;
  z-index: 1;

}

.ptop-para {
  padding-top: 20px;
}


.text {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 18px;
  width: 100%;
  z-index: 2;
  font-weight: 500;
  line-height: 22px;
  font-size: 16px;
}

.hovered-item:hover img {
  transform: scale(1.1);
  /* Augmente la taille de l'image de 10% */
}


/*****  image cercle ******/



.img-ov {
  position: relative;
  height: 100%;

}

.img-ov img {
  width: 100%;
  height: auto;
  display: block;
}

.img-ov::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(26 95 91 / 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
  /* Transition douce */
  border-radius: 50%;
  /* Bordure arrondie pour l'overlay */
}

.img-ov:hover::before {
  opacity: 1;
}



h3.title-main {
  font-family: "Oooh Baby", cursive;
  color: #c36f5a;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 !important;
}


h3.title-main-white {
  font-family: "Oooh Baby", cursive;
  color: #ffffff;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 4px;
  font-size: 1.9rem;
  font-weight: 700;
}


h2.title {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  color: #363638;
  font-weight: 600;
}

h2.title-white {
  padding: 0 20px;
  font-family: "Raleway", sans-serif;
  font-size: 1.7rem;
  color: #ffffff;
  font-weight: 600;
}

h2.title-white-italic {
  padding: 0 30px;
  font-family: "Raleway", sans-serif;
  font-size: 1.35rem;
  color: #ffffff;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}

h3.title {
  color: #1d545b;
  font-family: 'Poppins';
  font-size: 1.4rem;
  font-weight: 500;
}

.pad-para-left {
  padding-left: 25px;
}

.pad-para-right {
  padding-right: 25px;
}

.hovered-item img {
  width: 100%;
  height: 100%;
  /* border-radius: 50%; */
}



.hovered-item.circle.effect1 .info {
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

.hovered-item.circle.effect1 .info h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.2em;
  /* Utilise des unités relatives */
  margin: 0;
  padding-top: 30px;
  text-shadow: 0 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hovered-item.circle.effect1 .info p {
  color: #bbb;
  padding: 5px;
  font-style: italic;
  font-size: 0.8em;
  /* Utilise des unités relatives */
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}


#cst-avis:hover {
  background-color: #347881;
  color: var(--white);
}

.fa {
  font-size: 0.9em;
  padding: 0px !important;
}

.cst-size-brand {
  width: 80%;
}

.cst-size-footer {
  width: 70%;
}

/*****  START Tableau pricing ******/
table {
  table-layout: fixed;
  word-wrap: break-word;
  margin-top: auto;
  margin-bottom: auto;
}

.text-sm {
  font-size: 12px;
  font-style: italic;
  padding: 0;
  margin: 0;
  color: #1d545ba8 !important;
}

.price {
  font-size: 3em;
}


.table>:not(caption)>*>* {

  box-shadow: none !important;
}

/*****  END Tableau pricing ******/


/***************  START CONTACT ****************/

.contact-info {
  padding: 50px 45px;
}

.contact-info li p {
  font-size: 1.2em;
  margin-bottom: 0.7rem;
}

.contact-info li {
  display: inline-flex;
  width: 100%;
}

.contact-info li a {
  color: #425566;
}

.contact-info li:hover {
  color: #27798d;
}

.contact-info li a:hover {
  color: #27798d;
}

.contact-info li span {
  padding-right: 15px;
  color: #5b7385;
  font-size: 1.35em;
  padding-top: 6px;
}

.cst-pd-info-contact {
  padding-top: 30px;
}

.pad-cont {
  padding: 0px 10px 0 80px;
}

.cst-contact span.ico-contact {
  padding-right: 10px;
  color: #3e5879;
  font-size: 23px;
  vertical-align: middle;
}

.cst-contact,
.cst-contact a {
  color: #3e5879;
  font-size: 21px;
}

#map {
  height: 350px !important;
}

#mapi {
  height: 350px !important;
}

.marker {
  background-image: url(https://ligo-avocats.fr/wp-content/themes/ligo/assets/img/localisation-ligo-avocats.svg);
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.mapboxgl-popup-content h3 {
  font-size: 1em;
  color: #a38465;
}

/***************  END CONTACT ****************/





#cst-avis {
  margin-top: 15px;
  padding: 7px;
  background-color: #1c7580e0;
  border-radius: 5px;
  width: 55%;
  text-align: center;
  color: #ffffff;
  font-size: 0.9em;
  width: 45%;
}

/*****  end image cercle ******/


.space-top {
  padding-top: 120px;
}

.space-bottom {
  padding-bottom: 110px;
}

.space-bottom-special {
  padding-bottom: 140px;
}

.space-top-special {
  padding-top: 140px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #363638;
  font-family: "Open Sans", sans-serif;
  font-size: 2.2rem;
  font-family: 'Poppins';
  font-weight: 600;
}

.sign-white {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffffff00;
  border: thick double #ffffff;
  /* border: 3px; */
  display: inline-block;
  margin-left: 10px;
  margin-top: 5px;
}



.mySwiper2 h3 {
  font-weight: 500 !important;
  font-size: 45px !important;
  color: #516273 !important;
  text-transform: inherit !important;
}

.mySwiper2 .upk-salf-desc {
  font-family: "lato", sans-serif;
  font-size: 1em;
  letter-spacing: 0.2px;
  color: #293a4a !important;
  text-transform: inherit !important;
}


.feature-img-bg {
  border-radius: 20px;
  background-size: cover;
}




.ico-star {
  color: #879eb0;
  font-size: 48px;
}

.media-thumb .media-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #4b6986;

}

.feature-1 {
  padding: 30px;
  background: rgba(26, 55, 77, 0.05);
  border-radius: 20px;
  min-height: calc(50% - 15px);
  top: 0;
  margin-bottom: 30px !important;
}

/* SLIDER */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&display=swap');

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

.bdt-timeline-container {
  display: flow-root;
  box-sizing: content-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
  margin-top: 0 !important;
}

.upk-salf-slider-wrapper {
  display: flex;
  flex-direction: row;
  background: #fff;
  box-shadow: 0 5px 15px rgb(116 145 174 / 4%);
  height: 400px;
  padding: 30px;
  position: relative;
}

.upk-salf-slider-wrapper .upk-salf-item {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
}

.upk-salf-slider-wrapper .upk-salf-item.swiper-slide-active .upk-salf-title,
.upk-salf-slider-wrapper .upk-salf-item.swiper-slide-active .upk-salf-desc,
.upk-salf-slider-wrapper .upk-salf-item.swiper-slide-active .upk-salf-button {
  opacity: 1;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-image-wrap {
  height: 100%;
  width: 100%;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-xanc-img {
  display: block;
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-content-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  top: unset;
  max-width: 460px;
  overflow: hidden;
  background: #ffffff8a;
  backdrop-filter: blur(15px);
  transition: backdrop-filter 0.9s;
  padding: 20px;
  padding-left: 20px;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-title {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  color: #2B2D42;
  text-transform: capitalize;
  margin-bottom: 20px;
  opacity: 0;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-desc {
  color: #656565;
  font-size: 14px;
  line-height: 1.6;
  text-transform: capitalize;
  margin-bottom: 20px;
  opacity: 0;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-button {
  opacity: 0;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-button .link {
  color: #2b2d42;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 14px;
  transition: all 0.3s ease;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-button .link:hover {
  color: #ff215a;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-button .link--arrowed {
  display: inline-block;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-button .link--arrowed .arrow-icon {
  position: relative;
  top: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  vertical-align: middle;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-button .link--arrowed .arrow-icon--circle {
  transition: stroke-dashoffset 0.3s ease;
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-button .link--arrowed g {
  stroke: currentColor;
  color: #2b2d42;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-button .link--arrowed:hover .arrow-icon {
  transform: translate3d(5px, 0, 0);
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-button .link--arrowed:hover .arrow-icon--circle {
  stroke-dashoffset: 0;
}

.upk-salf-slider-wrapper .upk-salf-item .upk-salf-button .link--arrowed:hover g {
  color: #ff215a;
}

.upk-salf-slider-wrapper .upk-page-scroll {
  position: absolute;
  bottom: 8%;
  right: 5%;
  transform: rotate(90deg);
  z-index: 1;
  display: none;
}

.upk-salf-slider-wrapper .upk-page-scroll .arrow-up {
  height: 70px;
  width: 70px;
  display: block;
  background: #ffffffc9;
  backdrop-filter: blur(18px);
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
  transform: rotate(-90deg);
  overflow: hidden;
}

.upk-salf-slider-wrapper .upk-page-scroll .arrow-slide {
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: #ff215a;
  position: absolute;
  display: block;
  z-index: 0;
}

.upk-salf-slider-wrapper .upk-page-scroll .long-arrow-left {
  display: block;
  margin: 30px auto;
  width: 16px;
  height: 16px;
  border-top: 2px solid #2b2d42;
  border-left: 2px solid #2b2d42;
}

.upk-salf-slider-wrapper .upk-page-scroll .long-arrow-left {
  transform: rotate(-135deg);
}

.upk-salf-slider-wrapper .upk-page-scroll .long-arrow-left::after {
  content: "";
  display: block;
  width: 2px;
  height: 25px;
  background-color: #2b2d42;
  transform: rotate(-45deg) translate(8px, 3px);
  left: 0;
  top: 0;
}

.upk-salf-slider-wrapper .upk-page-scroll .arrow-up:hover {
  transition: all 0.1s;
}

.upk-salf-slider-wrapper .upk-page-scroll .arrow-up:hover .left-arm:after {
  transform: rotate(-10deg);
}

.upk-salf-slider-wrapper .upk-page-scroll .arrow-up:hover .right-arm:after {
  transform: rotate(10deg);
}

.upk-salf-slider-wrapper .upk-page-scroll .arrow-up:hover .arrow-slide {
  transition: all 0.5s ease-in-out;
  transform: translateY(200%);
}

.upk-salf-slider-wrapper .upk-salf-nav-pag-wrap {
  position: absolute;
  top: 0;
  height: 100%;
  right: 0;
}

.upk-salf-slider-wrapper .upk-salf-navigation {
  margin-top: 40px;
  margin-right: 2px;
}

.upk-salf-slider-wrapper .upk-salf-navigation .link--arrowed {
  display: inline-block;
}

.upk-salf-slider-wrapper .upk-salf-navigation .link--arrowed .arrow-icon {
  position: relative;
  top: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  vertical-align: middle;
}

.upk-salf-slider-wrapper .upk-salf-navigation .link--arrowed .arrow-icon--circle {
  transition: stroke-dashoffset 0.3s ease;
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
}

.upk-salf-slider-wrapper .upk-salf-navigation .link--arrowed g {
  stroke: currentColor;
  color: #7d91ac;
}

.upk-salf-slider-wrapper .upk-salf-navigation .link--arrowed:hover .arrow-icon {
  transform: translate3d(5px, 0, 0);
}

.upk-salf-slider-wrapper .upk-salf-navigation .link--arrowed:hover .arrow-icon--circle {
  stroke-dashoffset: 0;
}

.upk-salf-slider-wrapper .upk-salf-navigation .link--arrowed:hover g {
  color: #ff215a;
}

.upk-salf-slider-wrapper .upk-salf-navigation .upk-button-next {
  margin-top: 15px;
  transform: rotate(90deg);
}

.upk-salf-slider-wrapper .upk-salf-navigation .upk-button-prev {
  transform: rotate(-90deg);
}

.upk-salf-slider-wrapper .upk-salf-pagi-wrap {
  position: absolute;
  top: 43%;
  right: 0;
  margin-right: 22px;
}

@-webkit-keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }

  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@-moz-keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }

  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@-o-keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }

  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }

  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

.upk-salf-slider-wrapper .upk-salf-pagi-wrap .swiper-pagination-bullet {
  background-color: transparent;
  opacity: 0.8;
}

.upk-salf-slider-wrapper .upk-salf-pagi-wrap .swiper-pagination-bullet--svg-animation {
  width: 20px;
  height: 20px;
  margin: 6px -7px;
  display: inline-block;
}

.upk-salf-slider-wrapper .upk-salf-pagi-wrap .swiper-pagination-bullet--svg-animation svg {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.upk-salf-slider-wrapper .upk-salf-pagi-wrap .swiper-pagination-bullet--svg-animation .svg__circle-inner {
  stroke: #2b2d42;
  fill: transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.upk-salf-slider-wrapper .upk-salf-pagi-wrap .swiper-pagination-bullet-active .svg__circle {
  stroke: #ff215a;
  stroke-dasharray: 75;
  stroke-dashoffset: 0;
  -webkit-animation: progress 4s ease-in-out 1 forwards;
  -moz-animation: progress 4s ease-in-out 1 forwards;
  -ms-animation: progress 4s ease-in-out 1 forwards;
  animation: progress 4s ease-in-out 1 forwards;
}

.upk-salf-slider-wrapper .upk-salf-pagi-wrap .swiper-pagination-bullet-active .svg__circle-inner {
  fill: #2b2d42;
  stroke: #ff215a;
}

/* Lorsque la case est cochée, on empêche le défilement du body */
body.overflow-hidden {
  overflow: hidden;
}


.mobile {
  display: none;
}

.desktop {
  display: block;
}

@media (max-width: 1024px) {
  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  .cst-d-none-dest {
    display: block;
  }

  .cst-d-none-mob {
    display: none;
  }

  .fil04-svg {
    display: none !important;
  }

  .portfolio-filters {
    align-items: center;
    display: contents;
  }
}


@media (min-width: 768px) {
  [class^="cst-pos-"] {
    margin-bottom: 25px;
  }

  .cst-pos-1,
  .cst-pos-2,
  .cst-pos-3,
  .cst-pos-4,
  .cst-pos-5,
  .cst-pos-6 {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .band-contact h2.title {
    font-size: 1.5em;
  }





  .new-slideshow {
    padding-top: 120px !important;
  }

  .space-top-special {
    padding-top: 80px;
  }

  .cst-mob-pad-a-propos {
    padding: 10px 40px;
  }

  .band-a-propos {
    display: inline !important;
  }

  .portfolio-filters {
    align-items: center;
    display: contents;
  }

  .portfolio-filters a.filter {
    margin: 8px 0;
  }

  .cst-mobile-q {
    display: none !important;
  }

  .cst-pad-serv {
    padding-top: 0px !important;
  }

  .cst-pos-1,
  .cst-pos-2,
  .cst-pos-3 {
    top: 0 !important;
    margin-top: 25px;
  }

.cst-pos-1-bis{
   margin-top: 25px;
}

.cst-pos-5 {
    position: relative;
    /* top: 0; */
    top: 60px!important;
}

.cst-pos-6 {
    position: relative;
    top: 90px!important;
}
  .cst-pos-4 {
    position: relative;
    top: 30px!important;
}

  .cst-mob-pad-projet {
    padding: 90px 40px 0 40px;
  }

  .deco05-svg {
    display: none;
  }

  .cst-ico-pos span {
    padding-top: 30px;
  }

  /* Footer */
  .footer .footer-about h3::after,
  .footer .footer-contact h3::after,
  .footer .footer-links h3::after,
  .footer .footer-project h3::after {
    left: 45% !important;
  }

  .footer {
    text-align: center;
  }

  .cst-info-contact {
    margin-top: 20px;
  }

  .cst-size-footer {
    width: 30%;
    margin-bottom: 20px;

  }

  #cst-avis {
    margin: 0 auto;
    width: 65%;
  }

  .menu-container {
    top: 0;
  }

  .position-menu-fixed {
    position: fixed !important;
  }

  .nav-btn {
    top: 0 !important;
    height: 100vh !important;

  }

  .hashtag,
  .hashtag3,
  .hashtag2,
  .name-brand {
    display: none;
  }

  .cst-space-info-contact {
    padding-right: 0 !important;
  }

  .hovered-item {
    width: 60%;
  }

  .cst-para {
    padding: 0 20px 0 20px !important;
  }

  .cst-text-center {
    text-align: center;
  }

}


@media (min-width: 768px) {

  .upk-salf-slider-wrapper {
    height: 550px;
    padding: 60px;
  }




  .upk-salf-slider-wrapper .upk-page-scroll {
    bottom: 4%;
    display: inherit;
  }

  .upk-salf-slider-wrapper .upk-salf-item .upk-salf-title {
    font-size: 40px;
  }

  .upk-salf-slider-wrapper .upk-salf-item .upk-salf-content-wrap {
    max-width: 400px;
    padding: 40px;
    padding-left: 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
  }

  .upk-salf-slider-wrapper .upk-salf-item .upk-salf-image-wrap {
    width: 80%;
  }

  .upk-salf-slider-wrapper .upk-salf-navigation {
    margin-top: 60px;
    margin-right: 20px;
  }

  .upk-salf-slider-wrapper .upk-salf-pagi-wrap {
    margin-right: 47px;
  }

  .upk-salf-slider-wrapper .upk-salf-pagi-wrap .swiper-pagination-bullet--svg-animation {
    margin: 6px 0;
  }
}

@media (min-width: 1024px) {
  .upk-salf-slider-wrapper {
    height: 650px;
    padding: 70px;
  }

  .upk-salf-slider-wrapper .upk-page-scroll {
    bottom: 9%;
  }

  .upk-salf-slider-wrapper .upk-salf-item .upk-salf-title {
    font-size: 50px;
  }

  .upk-salf-slider-wrapper .upk-salf-item .upk-salf-content-wrap {
    max-width: 460px;
    padding: 50px;
    padding-left: 0;
  }

  .upk-salf-slider-wrapper .upk-salf-item .upk-salf-desc {
    font-size: 16px;
  }

  .upk-salf-slider-wrapper .upk-salf-item .upk-salf-button .link {
    font-size: 16px;
  }

  .upk-salf-slider-wrapper .upk-salf-item .upk-salf-image-wrap {
    width: 70%;
  }

  .upk-salf-slider-wrapper .upk-salf-navigation {
    margin-top: 85px;
    margin-right: 53px;
  }

  .upk-salf-slider-wrapper .upk-salf-pagi-wrap {
    margin-right: 53px;
  }

  .upk-salf-slider-wrapper .upk-salf-pagi-wrap .swiper-pagination-bullet--svg-animation {
    margin: 6px -5px;
  }
}

@media (min-width: 1440px) {
  .upk-salf-slider-wrapper {
    height: 700px;
    padding: 80px;
  }

  .upk-salf-slider-wrapper .upk-salf-item .upk-salf-title {
    font-size: 55px;
  }
}

.button {
  background: #f00;
  padding: 18px 20px;
  text-transform: uppercase;
  margin-top: 50px;
  margin-bottom: 50px;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;

  z-index: 1;
}


.cst-bot-foot {
  border-top: 2px solid #c1397e47;
  padding: 10px 0 0 0;
}

.footer ul li {
  line-height: 1.6;
}

.footer ul li a {
  text-decoration: none;
  list-style-type: none;
  color: var(--white) !important;
}

.footer ul li a:hover {
  cursor: pointer;
  opacity: 0.8;
}

.copyright a {
  color: var(--white);
  font-weight: 700;
}

.copyright a:hover {
  opacity: 0.7;
}

.bg-head-contact {
  background-image: url(https://scape-voyage.fr/wp-content/uploads/2024/11/bandeau-contact.png) !important;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
  background-position: center;
}

.bg-head-amenagement {
  background-image: url(https://scape-voyage.fr/wp-content/uploads/2024/11/bandeau-amenagement.webp) !important;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
  background-position: center;
}

.bg-head-tarif {
  background-image: url(https://scape-voyage.fr/wp-content/uploads/2024/11/bandeau-tarif-2.webp) !important;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
  background-position: center;
  padding: 20px;
}

.cst-space-info-contact {
  padding-right: 50px;
  margin-bottom: 0 !important;
}


.cst-title {
  padding-bottom: 20px;
}

h2.cst-title-d-inter-contact {
  padding: 35px 0px 35px 0px;
  color: #ffffff;
}

.cst-info-contact {
  background-color: #518b93fa;
  border-radius: 5px;
  padding: 20px 35px;
  color: #ffffff;
}

.cst-info-contact li {
  text-decoration: none;
  list-style-type: none;
}

.cst-title-tab {
  color: #1d545b !important;
  font-size: 1.02em;
  font-weight: 500 !important;
}

.cst-title-tab-green {
  color: #1d545b !important;
  font-size: 1.02em;
  font-weight: 500 !important;
}

.cst-season h3 {
  font-size: 1.20rem;
  font-family: 'Poppins';
  font-weight: 600;
  color: #1d545b;
}

.cst-season a {
  cursor: pointer;
}

.cst-season a .text-sm:hover {
  color: #d63673 !important;
}

.cst-info-contact li a {
  color: #ffffff;
  text-decoration: none;
  list-style-type: none;
  font-size: 1.2em;
}

.cst-info-contact li a:hover {
  opacity: 0.8;
}

.bg-img-foot {
  background-size: contain;
  background-color: #2d3745;
  background-position-x: -640px;
  background-position-y: 90px;
  background-repeat: no-repeat;
  background-size: 160% 200%;
}

.bg-deco-road01 {
  background-image: url(http://scape-voyage.fr//wp-content/themes/child-scape/img/road01.svg);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  top: 360px;
  right: 0;
  height: 100%;
  background-size: auto;
  z-index: 300;
  width: 70%;
}

.bg-deco-road02 {
  background-image: url(http://scape-voyage.fr//wp-content/themes/child-scape/img/road02.svg);
  background-repeat: no-repeat;
  background-position-x: left;
  position: absolute;
  top: 10px;
  height: 115%;
  left: -60px;
  width: 100%;
  z-index: -300;
}

.bg-img-a-propos .bg-overlay, .bg-header .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2f655d;
    opacity: 0.7;
    z-index: 1;
}
.bg-header-ressource .bg-overlay{
      background-color: #649ca7;
}
.padtop {
    padding-top: 80px;
}

.padbot {
    padding-bottom: 80px;
}
.bg-header-ressource {
    background-image: url('http://devwebzest.fr/wp-content/themes/child-camille-mercier/img/bg-cv.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    min-height: auto;
    z-index: 0;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 40px 140px;
}


.bg-img-a-propos .bg-overlay, .bg-header .bg-overlay, .bg-header-ressource .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #649ca7;
    opacity: 0.7;
    z-index: 1;
}

.hero-spec-header{
  z-index: 300!important;
  position: relative;
}


.bg-deco-road03 {
  background-image: url('http://scape-voyage.fr/wp-content/themes/child-scape/img/road03.svg');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  /* Or use cover if you want to fill the container */
  position: absolute;
  top: -100px;
  right: 0;
  width: 100%;
  /* Ensures it fits within container dimensions */
  height: 115%;
  z-index: -300;
}

.bg-red {
  background-color: #f00;
  height: 100%;
  width: 100%;
}

.bg-deco-road04 {
  background-image: url('http://scape-voyage.fr/wp-content/themes/child-scape/img/road04.svg');
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -300px;
  left: -80px;
  width: 100%;
  height: 115%;
  z-index: -300;
}

.bg-deco-road05 {
  background-image: url(http://scape-voyage.fr//wp-content/themes/child-scape/img/road02.svg);
  background-repeat: no-repeat;
  background-position-x: left;
  position: absolute;
  top: 300px;
  height: 90%;
  left: -60px;
  width: 100%;
  z-index: -300;

}

.grecaptcha-badge {
  visibility: hidden;
}

.footer {
  padding: 40px 0 20px 0;
}

.footer a.ml:hover {
  opacity: 0.7;
}

.footer a.ml {
  color: #e6e6e6;
  font-weight: 300;
  font-size: 0.9em;
}

.footer .footer-about,
.footer .footer-contact,
.footer .footer-links,
.footer .footer-project {
  margin-bottom: 35px;
  color: var(--white);
}

.footer-contact a {
  color: var(--white);
}

.footer-contact a:hover {
  color: var(--white);
  opacity: 0.7;
}

.footer .footer-about h3,
.footer .footer-contact h3,
.footer .footer-links h3,
.footer .footer-project h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 17px;
  font-weight: 400;
  color: #eeeeee;
}

.footer-about p {
  font-family: open sans, sans-serif;
  font-size: 0.8em;
  line-height: 18px;
  color: #d0d8de;
  letter-spacing: 0.2px;
  font-weight: 400;
}

.footer .footer-contact p {
  margin-bottom: 10px;
  font-size: 13.5px;
  color: var(--white);
}

.footer .footer-contact i {
  margin-right: 10px;
  font-size: 14.5px;
  color: var(--white);
}

.footer .footer-social a {
  text-align: center;
  color: var(--white);
  font-size: 14px;
  border: 1px solid #ffffff;
  display: inline-block;
  width: 35px;
  height: 35px;
  padding: 6px 0;
  border-radius: 35px;
  background-color: inherit;
}

.footer .footer-social a:hover {
  color: var(--white);
}

.footer .footer-links a {
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14.5px;
  color: var(--white);
  display: block;
}

.footer .footer-about h3::after,
.footer .footer-contact h3::after,
.footer .footer-links h3::after,
.footer .footer-project h3::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1.4px;
  left: 0;
  bottom: 0;
  background: #eeeeee;
}

p.copyright {
  color: var(--white);
  text-align: center;
  opacity: 0.6;
  font-size: 0.75em;
  font-family: open sans, sans-serif;
}

.orange-bar-footer {
  height: 30px;
  width: 300px;
  position: absolute;
  z-index: 500;
  left: 0;
  top: -14px;
  background-color: #c46e59;
}



.orange-bar-header {
  height: 170px;
  width: 25px;
  position: absolute;
  z-index: 500;
  right: 99%;
  top: 0;
  background-color: #c46e59;
}

.bg-grey {
  background-color: #f9fafb;
}

.cst-para {
  padding: 50px 0 50px 150px;
}

.cst-devis {
  background-color: #1d545b;
}

.pad-title {
  padding-bottom: 30px;
}

.cst-txt-devis {
  color: #fff;
  font-size: 1.8em;
  font-family: "Figtree", sans-serif;
  line-height: 1.4;
  padding-right: 15px;
  font-weight: 500;
}

.trsp-bg-2 {
  position: absolute;
  top: 308px;
  left: 0;
  width: 30%;
  height: 250px;
  background-color: #127a6a12;
  z-index: -300;
}

@media (max-width: 767px) and (min-width: 100px) {

  .new-slideshow {
    padding-top: 0px !important;

  }

  .new-slideshow {
    height: 380px !important;
  }

  .new-slideshow__txt {
    padding: 0 1.5rem !important;
  }

  .new-slideshow__h1 {
    margin-top: 5.5rem;
  }

  .new-slideshow__ctrls {
    display: none !important;
  }
}





/************** FOOTER END ****************/







.modern-form {
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modern-field {
  display: block;
  margin-bottom: 1rem;
  color: var(--bs-primary);
  /* couleur label */
  font-weight: 500;
  font-size: 1.1rem;
  user-select: none;
}

.input-field {

  width: 100%;
  padding: 0.5rem 0.8rem;
  font-size: 1rem;
  border: 2px solid #1d5c784a;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
  color: #333;

}


.input-field::placeholder {
  color: #aaa;
}

.input-field:focus {
  outline: none;
  border-color: var(--bs-primary);
  background-color: #fff;
  color: #000;
}

/* textarea */
.textarea-field .input-field {
  min-height: 120px;
  resize: vertical;
}

/* Consent */
.modern-consent {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #555;
}

/* Submit */
.submit-button {
  background-color: var(--bs-primary);
  border: none;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  font-family: inherit;
}

.submit-button:hover {
  background-color: #005f8d;
}

/* Messages d'erreur et succès Contact Form 7 */
.wpcf7-response-output {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}









/************  FOOTER ******************/
.footer-demo {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 3;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-col.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-col.logo img {
  max-width: 180px;
  height: auto;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1em;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #eee;
  bottom: 0;
  left: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  line-height: 1.7;
}

.footer-col ul li a,
.footer-col.contact p a {
  color: #fff;
  text-decoration: none !important;
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-size: 0.9em;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-col ul li a:hover,
.footer-col.contact p a:hover {
  opacity: var(--footer-link-hover);
  text-decoration: none;
}

.footer-col.contact p {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--footer-text);
}

.material-symbols-outlined.icon {
  font-size: 20px;
  vertical-align: middle;
  color: var(--footer-light);
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  padding-top: 15px;
  padding-bottom: 20px;
  color: var(--footer-light);
  font-size: 14px;
}

.footer-bottom p {
  font-size: 0.95em;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.footer-bottom-line {
  height: 1px;
  background-color: white;
  width: 100%;
  margin: 0 auto 15px auto;
  opacity: 0.3;
}

.footer-col a {
  display: block;
}

.footer-col.offer,
.footer-col.contact {
  font-size: 1em;
}

footer p,
footer a {
  color: #eee;
  text-decoration: none !important;
  transition: color 0.3s ease, opacity 0.3s ease;
}

footer a:hover {
  opacity: var(--footer-link-hover);
  cursor: pointer;
  text-decoration: none;
}

.footer-col .btn.btn-command.btn-blue-outline {
  border: 1px solid var(--footer-border) !important;
  color: var(--footer-border) !important;
  margin-top: 15px;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 500;
  position: relative;
  font-size: 0.85em;
  line-height: inherit;
  border-bottom: 2px solid var(--color-orange) !important;
  text-transform: uppercase !important;
}

footer .btn.btn-blue-outline:hover {
  background-color: #ededed29 !important;
}

/* Back to top button (unifié) */
#back_to_top,
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--bs-primary);
  z-index: 10000;
  transition: all 0.3s ease;
  cursor: pointer;
}

#back_to_top.show,
#back-to-top.show {
  visibility: visible;
  opacity: 1;
}

#back_to_top span,
#back_to_top i,
#back-to-top span,
#back-to-top i {
  font-size: 17px;
  color: var(--bs-primary);
  line-height: 47px;
  text-align: center;
}

#back-to-top i {
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Font Awesome icons */
.fa {
  padding: 0;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  width: 2.5em;
  position: relative;
  vertical-align: middle;
}

.fa-linkedin {
  background: transparent;
  color: white;
  font-size: 1.2em;
  padding-top: 15px;
}

/* Decorative footer bands */
.footer-band-container {
  position: relative;
  width: 100%;
  height: 180px;
  margin-bottom: -80px;
  overflow: visible;
}

.footer-band-container .behind {
  background-color: #196a7280;
  height: 200px;
  width: 100%;
  clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 80%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.footer-band-container .bottom {
  background-color: #3a737a;
  height: 200px;
  width: 100%;
  clip-path: polygon(0 45%, 100% 0, 100% 85%, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-col {
    max-width: 400px;
    margin: 0 auto 30px auto;
  }
}


#back_to_top,
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: none;
  border: 1px solid #1d545b;
  z-index: 10000;
  transition: all 0.3s ease;
  cursor: pointer;
}

#back_to_top span,
#back_to_top i,
#back-to-top span,
#back-to-top i {
  font-size: 17px;
  color: #1d545b;
  line-height: 47px;
  text-align: center;
}

/************ END FOOTER ******************/

.btn.btn-blue-outline:hover, .btn.btn-blue-outline:focus, .btn.btn-blue-outline:active {
    background-color: transparent !important;
    border: 1px solid #649ca7 !important;
}
.btn.btn-command.autre.btn-blue-outline {
    border: 1px solid #649ca7 !important;
    background-color: #649ca7!important;
    color: #ffffff!important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    line-height: inherit;
    font-size: 0.9em;
    text-transform: uppercase !important;
}

.hero-spec-header{
  z-index: 3;
  text-align: center;
}