  
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
margin: 0;
  font-family: Josefin Sans,Helvetica,Arial,Lucida,sans-serif;
}
body.modal-open {
    overflow: hidden;
}
a {
    color: inherit; /* La même couleur que le texte normal */
 /*  font-weight: 750; */
   text-decoration: none;
}

a:hover {
    font-weight: 750;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Josefin", sans-serif;
 /* text-transform: uppercase; */
}

.h2, h2 {
    font-size: calc(1rem + .9vw);
	font-weight: 750;
}
.h3, h3 {
    font-size: calc(1rem + .9vw);
	font-weight: 700;
}
 .font-design{
  font-family: 'Knewave', cursive;
  color: var(--text-on-primary);  
  
}
.ucfirst::first-letter {
  text-transform: uppercase;
} 
.text-on-primary   { color: var(--text-on-primary); }
.text-on-secondary { color: var(--text-on-secondary); }
.text-on-light     { color: var(--text-on-light); }
.text-on-dark      { color: var(--text-on-dark); }
.text-on-hover     { color: var(--text-on-hover); }

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-on-primary);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1); /* Sécurité */
}

.btn-primary:hover {
  background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--text-on-secondary);
}




/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 50px;
  z-index: 996;
  background: var(--primary);
  color: var(--text-on-primary); 
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: var(--text-on-primary); 
  line-height: 0;
}
.back-to-top:hover {
  background: var(--secondary);
}
.back-to-top:hover i {
  color: var(--text-on-secondary); 
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid var(--vert);
  border-top-color: var(--primary);
  border-bottom-color: var(--primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: var(--primary);
   
}
 
#header.header-scrolled {
 background: var(--primary);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: var(--policebouton);
}
#header .logo a span {
  color: #a7a5a4;
}
#header .logo img {
  max-height: 100px;
}
#offcanvas-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 1050;
  transition: right 0.3s ease-in-out;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
#offcanvas-menu.active {
  right: 0;
}
#offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}
#offcanvas-overlay.active {
  display: block;
}
.offcanvas-close {
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  line-height: 1;
}
@media (min-width: 992px) {
  #offcanvas-menu,
  #offcanvas-overlay,
  .mobile-nav-toggle {
    display: none !important;
  }
}
/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  background: var(--secondary);
  color: var(--text-on-secondary); 
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #ffffff; 
  text-shadow: 0.08em 0.08em 0.08em #000;
}
.get-started-btn:hover {
  background: var(--primary);
  color: var(--text-on-primary); 
}
@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
	margin-left: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  
   
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;

}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 20px;  
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 900;
  color: var(--text-on-primary); 
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--secondary); 
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
 
  color: #151515;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
 
.active{
 color:#151515
} 
 

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  background-color: #a7a5a4;
  
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
   
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background: var(--primary);
  color: var(--text-on-primary); 
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  .navbar li {
 
  border-bottom: 1px solid #e7e5e2;
}
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 75px;
    /* right: 15px; */
    bottom: 0px;
    /* left: 15px; */
    /* padding: 10px 0; */
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    width: 100%;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #151515;
  background-color: #a7a5a4;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  background-color: #a7a5a4;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section (Effet en pointe + responsive + image cover)
--------------------------------------------------------------*/

 


#hero {
  position: relative;
  width: 100%;
  height: 80vh;

  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--dark) 50%,
    var(--light) 100%
  );

  overflow: hidden;
  color: var(--text-on-primary);
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    var(--primary),
    transparent 60%
  );
  pointer-events: none;
}
 
  #hero::after {
  content: "";
  position: absolute;
  inset: 0;
 background: radial-gradient(circle at 30% 30%, var(--light), #00000014 20%);
 
  filter: blur(60px);
}
 
 
.herobody {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  
}

 





 
.herocontainer {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 80px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 50%);
  overflow: hidden;
}

.herocontainer img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  z-index: 1;
}

.herotext-block {
  position: relative;
  z-index: 3;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  animation: fadeInUp 1s ease-out;
  text-transform: uppercase;
}

.herotext-block h1 {
  font-size: calc(1em + 2vw);
  font-weight: 900;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  text-shadow: 0.08em 0.08em 0.08em #000;
  margin: 0 0 20px;
}
.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-cover-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
}

 @media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }

}
@media (max-width: 768px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }  section {
  padding: 10px 0;
  overflow: hidden;
}
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
  margin-top: 20px;
 font-family: "Poppins", sans-serif; 
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--secondary);
  color: var(--text-on-secondary); 
  margin: 4px 10px;
  
}
.section-title p {
  margin: 0;
  font-size: 1.5em;
  font-weight: 700;
   
}
 

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  position: relative;
  overflow: hidden; /* Assure que le contenu ne dépasse pas la section */
 
}
.about .content h1 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}
.about .content ul {
  padding: 0;
}
.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}
.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--primary);
}
.about .content p:last-child {
  margin-bottom: 0;
}
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Assure que l'image de fond est derrière le contenu */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.container {
  position: relative; /* Pour contenir le contenu au-dessus de l'image de fond */
  z-index: 1; /* Assure que le contenu est au-dessus de l'image de fond */
}
 





 


/*--------------------------------------------------------------
# mention
--------------------------------------------------------------*/
.mention h2 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}
.mention a {
  color: #853417;
  text-decoration: none;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.team .member .social a:hover {
  color: #151515;
  background: #a7a5a4;
}
.team .member .social i {
  font-size: 18px;
  line-height: 0;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}
 

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
 
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
 

/*--------------------------------------------------------------
# ERREUR
--------------------------------------------------------------*/
.erreur {
  background: radial-gradient(circle at top left, white, red) fixed center center;
  background-size: cover;
  border-radius: 10px;
  padding: 60px 0;
  margin: 30px;
}



.erreur h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.erreur p {
  color: #fff;
}
.erreur .erreur-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.erreur .erreur-btn:hover {
  background: #a7a5a4;
  border-color: #a7a5a4;
  color: #151515;
}












/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--primary);
  padding: 0 0 30px 0;
  color:  var(--text-on-primary);
  font-size: 14px;
  
 
}
#footer .footer-top {
  background: var(--dark);
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
  color:  var(--text-on-dark);
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
 
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
 
}

#footer .footer-top .h4 {
  font-size: 16px;
  font-weight: 600;
 
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
 
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
 
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--text-on-primary)
}

 	

#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  padding: 0 20px;
  background: var(--primary);
  color: var(--text-on-primary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: var(--secondary);
}
#footer .copyright {
  text-align: left;
  padding-top: 30px;
}
#footer .img-fluid {
    max-width: 50%;
    height: auto;
}
 
 
#footer .credits {
  text-align: center;
  font-size: 13px;
   
  margin-bottom : 50px;
}
#footer .credits p{
    
   margin  : 0px;
}
#footer .credits a{
  text-align: center;
  font-size: 13px;
  
  margin-bottom : 50px;
}

#footer .liens {
  text-align: center;
  font-size: 13px;
   
  margin-bottom : 50px;
}
#footer .liens a{
  text-align: center;
  font-size: 13px;
 
  margin-bottom : 50px;
}
#footer .motcle {
    margin: 15px 0 0;
    height: 200px;
}
.mCustomScrollBox {
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: none;
    direction: ltr;
}

.blanc {
    color: rgba(255, 255, 255, 0.9);
	 font-size: 2em;
	   text-shadow: black 0.1em 0.1em 0.5em;
}
.center {
  text-align: center;
  }
  





.autheur-date {
    text-align: right; /* Alignement à droite */
    font-size: 0.8em; /* Taille de police réduite */
    color: #555; /* Couleur pour le nom et la date */
}




#cookie-notice {
	background-color: var(--dark);
    color: var(--text-on-dark);  
    font-family: Arial, sans-serif;  
    font-size: 16px;  
    line-height: 1.6;  
    position: fixed;
    min-width: 90%;
    height: auto;
    z-index: 1000;
    left: 0;
    text-align: center;
    bottom: 18px;
	margin-left:5%;
	margin-right:5%;
	padding:10px;
}
#cookie-settings{
	display:none;
	position:fixed;
	min-width: 90%;
	height: auto;
	bottom:0;
	background-color: var(--dark);
	color: var(--text-on-dark); 
	margin-left:5%;
	margin-right:5%;
	padding:10px;
	z-index:1001
}


 #scrollUp2{
     position: fixed;
    min-width: 100%;
    height: auto;
    z-index: 999;
    font-size: 13px;
    line-height: 20px;
    left: 0;
    text-align: center;
    bottom: 1px;
}

.buttonappel{
    padding: 4px;
    background-color: var(--primary);
	color: var(--text-on-primary); 
    background-position: center;
    background-repeat: no-repeat;
    bottom: 0px;
    padding: 2px 8px;
    text-align: center;
    box-shadow: 0px -5px 30px 0px rgb(99 99 99 / 80%);
    cursor: pointer;
    min-width: 40%;
	display: inline-block; 
	padding:10px 16px;
	font-size:18px;
	line-height:1.33;
	border-radius:6px;
 
}
 .buttonappel:hover {
  background: var(--secondary);
}

.buttondevis{
    padding: 4px;
    background-color: var(--primary);
	color: var(--text-on-primary); 
    background-position: center;
    background-repeat: no-repeat;
    bottom: 0px;
    padding: 2px 8px;
    text-align: center;
    box-shadow: 0px -5px 30px 0px rgb(99 99 99 / 80%);
    cursor: pointer;
    min-width: 40%;
	display: inline-block; 
	padding:10px 16px;
	font-size:18px;
	line-height:1.33;
	border-radius:6px;
 
}
 .buttondevis:hover {
  background: var(--secondary);
}
 
 .cadre-centre{
   margin: auto;

}

P.blocktext {
	text-align: center;
	color: #fff;
  font-size: 28px;
  font-weight: 700;
    margin-left: auto;
    margin-right: auto;
   
}


#contenantbandeau {
    width: 100%;
    height: 70vh;
    position: relative;
}

.contenant {
	 width: 100%;
	height: 100%;
    display: inline-block;
    position: relative;
}
.contenant .texte_centrer  {
    
    z-index: 1;
    position: absolute;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 30%;
    color: white;
   
}
.contenant .texte_centrer a {
    color: var(--primary); 
	text-shadow: black 0.1em 0.1em 0.2em;
    text-decoration: none;
 
    font-weight: bold
}

    
.vignette img {
    min-height: 500px;
}

@media (max-width: 768px) {
.contenant {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
}
.contenant img {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
}

#contenantbandeau {
    width: 100%;
    height: 30vh;
    position: relative;
}	
	
	
.img-fluid-logo {
    max-width: 70%;
    height: auto;
}
.no-mobile {
	display: none;
}

}








.titre-entete {
    font-size: 2.5em;
    line-height: 2em;
  }
 
.border-radius { 
	border-bottom-right-radius: 20%;
    border-bottom-left-radius: 20%;
   }
   
   
.cadreavis {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background:  #dbdbdb33;

}

.emploi {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/offre-emploi.webp") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .onlymobile{
    display: none !important;
  }
 
}

.remerciement-gris{
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    background: #4c4c4c;
    background: -moz-linear-gradient(45deg, #4c4c4c 0%, #595959 12%, #2c2c2c 38%, #2c2c2c 38%, #969696 64%, #2b2b2b 89%, #1c1c1c 96%, #131313 100%);
    background: -webkit-linear-gradient(45deg, #4c4c4c 0%,#595959 12%,#2c2c2c 38%,#2c2c2c 38%,#969696 64%,#2b2b2b 89%,#1c1c1c 96%,#131313 100%);
}
.remerciement-rouge{
    background-image: radial-gradient(circle at top left, white, red);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
}

.rond
{
  border-radius: 50px;
}

.modaloffreartisans {
  display: none;
}




.box-shadows{
box-shadow: 0px 40px 60px -30px rgb(0 0 0 / 34%);
}


section.what-we-do {
  margin-bottom: -30px;
}

.what-we-do .left-content {
  margin-right: 60px;
}

.what-we-do .left-content h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 40px;
}

.what-we-do .left-content p {
  margin-bottom: 40px;
}

.what-we-do .right-items .item {
  border-radius: 5px;
  padding: 40px 30px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
}

.what-we-do .right-items .item em {
  position: absolute;
  font-style: normal;
  font-size: 44px;
  color: var(--primary);
  font-weight: 600;
  right: 15px;
  top: 5px;
  text-shadow: 0px 0px 5px rgba(26, 2, 2);
  transition: all .3s;
}

.what-we-do .right-items .item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
}

.what-we-do .right-items .item:hover em {
  top: 10px;
}
.h-100 {
    height: 100% !important;
}

 

.bg-image {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.mask{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed;
}

#entete h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    color: #fff;
    font-family: "Poppins", sans-serif;
	text-align: center;
}
@media (max-width: 768px) {
  #entete {
    height: auto;
  }
  #entete h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #entete h2 {
    font-size: 20px;
    line-height: 24px;
  }  
}

 









.image-container {
  position: relative;
  display: inline-block;
 /* margin-bottom:40px;*/
/*	margin-top:20px;*/
}
 
.image-container::before { 
 content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
 background-color: var(--primary); 
	/* transform: rotateZ(5deg); */
    box-shadow: 0 10px 20px rgb(0 0 0 / 39%), 11px 14px 20px 14px rgb(0 0 0 / 23%);
    transition: box-shadow 0.3s ease-in-out;
    z-index: -1;
    border-radius: 30px 0 0;
	
}

 /* .image-container picture {
	border: 1px solid #e3e3e3;
 background-color: #fefefe; 
    width: 100%;
    height: 330px;
    border-radius: 10px;
    padding: 10px;
    transform: rotateZ(5deg);
    position: relative;
    z-index: 1;
     box-shadow: 0 10px 20px rgb(0 0 0 / 39%), 11px 14px 20px 14px rgb(0 0 0 / 23%);
    transition: box-shadow 0.3s ease-in-out;
    transition: all 500ms;
    overflow: hidden;
    width: 100%;
    height: auto;
    display: block;
	
}*/

.citation {
    font-style: italic;
    font-size: 1em;
    color: var(--text-on-light);  
    border-left: 4px solid var(--primary);  
    padding-left: 20px;  
    margin: 0; 
    background-color: var(--light);  
    padding: 15px;  
    border-radius: 5px;  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  
}


.badgecompteur {
    position: absolute; /* Positionnement absolu pour la pastille */
    top: -5px; /* Ajustez pour le positionnement */
    right: -10px; /* Ajustez pour le positionnement */
    background-color: yellow; /* Fond jaune */
    color: black; /* Couleur du texte */
    border-radius: 50%; /* Cercle */
    padding: 5px; /* Espacement interne */
    font-weight: bold; /* Texte en gras */
    font-size: 0.8em; /* Taille de police */
}


/* pour cache bouton actif sur checkbox */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
 
 .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 20%;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    color: #fff;
}

.social-icon:hover,
.social-icon:focus {
    transform: scale(1.1);
    color: #fff;
}

.social-icon .bi {
    line-height: 1;
    font-size: 1.2em;
}

/* Container commun pour affichage responsive */
.social-links-reference, .social-share-reference{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ======================================
   SOCIAL LINKS (Suivre sur les réseaux)
   Style sobre, fond uniforme (ex: var(--primary))
====================================== */
.social-link {
    background-color: var(--primary);
}

/* ======================================
   SOCIAL SHARE (Partage de contenu)
   Couleur personnalisée par plateforme
====================================== */

.social-share.facebook    { background: #3b5998; }
.social-share.twitter     { background: #00acee; }
.social-share.linkedin    { background: #0e76a8; }
.social-share.instagram   { background: #cd42b5; }
.social-share.pinterest   { background: #c8232c; }
.social-share.telegram    { background: #0088cc; }
.social-share.snapchat    { background: #fffc00; color: #000; }  
.social-share.whatsapp    { background: #25D366; }
.social-share.email       { background: #000000; }
.social-share.messenger   { background: #006AFF; }




.img-circle-ssfond img,
.img-circle-ssfond picture {
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.img-circle-lg-ssfond img,
.img-circle-lg-ssfond picture {
    width: 300px;
    height: 300px;
}

.img-circle-sm-ssfond img,
.img-circle-sm-ssfond picture {
    width: 150px;
    height: 150px;
}

.img-circle-ssfond .image-container::before {
    content: none !important;
    background: none !important;
    box-shadow: none !important;
}


.float {
   float: left;

} 


.transform {

    transform: rotate(-2deg) skew(-2deg);
    margin-top: 2rem;
}

.lien-site {
  color: black;
   z-index: -99;
}
.lien-site a{
  color: black;
   z-index: -99;
}


/* Box styles */
.myBlock {
border: none;
padding: 5px;
/*font: 28px aerial; */
width: 100%;
height: 20px;
overflow-y: scroll;
background-color: black;
 color: black;
}
.myBlock a{

 color: black;
}

/* Scrollbar styles */
::-webkit-scrollbar {
width: 5px;
height: 15px;
}

::-webkit-scrollbar-track {
border: 1px solid var(--primary);
border-radius: 15px;
}

::-webkit-scrollbar-thumb {
background: var(--primary);  
border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
background: var(--secondary); 
}


@media screen and (min-width: 768px) {
  .pl-5{
    transition-delay: 0 !important;
	padding-bottom: 5rem!important;
    padding-top: 5rem!important;
  }

}

 
  


.keywords-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keyword {
    background: linear-gradient(45deg, #6a5acd, #00bfff);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.keyword:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.keyword:active {
    transform: scale(0.95);
}
 
.carousel-indicators {
    position: relative;
    margin-top: 10px;
}



.sr-only { 
    position: absolute; 
    width: 1px; 
    height: 1px; 
    padding: 0; 
    margin: -1px; 
    overflow: hidden; 
    clip: rect(0,0,0,0); 
    border: 0; 
}