/*

TemplateMo 591 villa agency

https://templatemo.com/tm-591-villa-agency

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Damion&family=Rochester&display=swap"); /* 
---------------------------------------------
reset
--------------------------------------------- 
*/

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: #000000;
}
::-webkit-scrollbar-thumb {
  background-color: #d4af37;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

/* Style général pour les liens du sous-menu */
.submenu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: absolute;
  top: 65%;
  left: 0;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  width: 603px;
  padding: 10px;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  list-style: none;
}

.submenu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: all 0.3s ease;
  border-radius: 6px;
  height: 55px !important;
}

.submenu li a:hover {
  background-color: rgb(0, 0, 0); /* Couleur plus visible */
  color: #b89b5e;
  height: 900px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ajout d'une ombre subtile */
  transform: scale(1.05); /* Légère mise en avant */
}

/* Élément actif avec puce dorée */
.submenu li a.active::before {
  content: "• ";
  color: #d4af37;
  font-weight: bold;
}

/* Positionnement du sous-menu */
.has-submenu {
  position: relative;
}

.has-submenu > a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  display: inline-block;
  transition: color 0.3s ease;
}

/* .has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */

.logo img {
  width: 108px;
}
.background-header .logo img {
  width: 96px;
}
/* Conteneur principal du produit */
.product {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Image produit */
.product-figure img {
  max-width: 100%;
  height: 240px;
  transition: transform 0.3s ease;
}

/* Effet zoom au survol */
.product:hover .product-figure img {
  transform: scale(1.05);
}

/* Titre */
.product-title {
  margin: 15px 0 10px;
  font-size: 19px;
  font-weight: 600;
  color: #1e1e1e;
}

/* Étoiles */
.product-rating {
  color: #ffcc00;
  font-size: 16px;
  margin-top: 10px;
}

/* Prix */
.product-price-wrap {
  margin: 10px 0;
}

.product-price {
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
}

.product-price-old {
  text-decoration: line-through;
  color: #aaa;
  margin-right: 5px;
}

/* Badges */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  color: white;
  border-radius: 2px;
}

.product-badge-new {
  background-color: #6c49dc;
}

.product-badge-sale {
  background-color: #f7cc25;
  color: black;
}

/* Boutons masqués par défaut */
.product-button {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Affiche les boutons au hover */
.product:hover .product-button {
  opacity: 1;
  pointer-events: all;
}

/* Style des boutons */
.product-button .button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  /* text-transform: uppercase; */
  text-transform: capitalize;

  letter-spacing: 1px;
  transition: 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: #f7cc25;
  color: black;
}

.button-primary:hover {
  background: #e3b912;
}

.button-secondary {
  background: #6bd09e;
  color: white;
}

.button-secondary:hover {
  background: #58b78a;
}

.paragraph {
  font-size: 19px;
  line-height: 1.9;
  color: #eee; /* blanc cassé chic */
  background: rgba(255, 255, 255, 0.07); /* effet légèrement transparent */
  padding: 25px 30px;
  border-radius: 12px;
  font-weight: 300;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); /* reflet doré subtil */
  text-align: justify;
  backdrop-filter: blur(4px); /* effet "verre" flouté de luxe */
  border-left: 4px solid #d4af37; /* trait or élégant */
  margin-top: 25px;
  transition: all 0.3s ease-in-out;
}

.paragraph:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.promo-section {
  background-color: #111;
  padding: 80px 20px;
  text-align: center;
  margin-top: 65px;
  margin-bottom: 95px;
}

.section-title {
  font-size: 33px;
  color: #d4af37;
  font-family: "Rochester";
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.promo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.promo-box {
  width: 300px;
  background-color: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: white;
}

.promo-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.promo-box p {
  padding: 15px;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: white;
}

.section-heading h2 {
  color: #d4af37;
  /* font-family: "Playfair Display", serif; */
  font-family: "Rochester";
  text-transform: capitalize;
  font-weight: 600;
  font-size: 34px;
}

.section-heading h6 {
  color: #d4af37;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: capitalize;
}

/* carrousel dans service vip */
.carousel-inner {
  border-radius: 10px; /* Ajout de bords arrondis aux images */
  overflow: hidden;
}

/* Style des boutons de navigation du carrousel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Couleur de fond des boutons */
  border-radius: 50%;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(0, 0, 0, 0.8); /* Couleur des boutons au survol */
}
/* Transition fluide pour les images du carrousel */
.carousel-inner .carousel-item {
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev,
.carousel-inner .carousel-item.active {
  display: block;
  opacity: 1;
}

.carousel-inner .carousel-item-next.carousel-item-left,
.carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 0;
}
button.owl-prev {
  position: absolute;
  left: 0;
}
button.owl-next {
  position: absolute;
  right: 0;
}

.section-titles {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: rgb(212, 175, 55);
  border-top: 5px solid #ebeef4;
  -webkit-border-radius: 1.9em;
  -moz-border-radius: 1.9em;
  border-radius: 1.9em;
  padding: 5px 50px;
  margin: 0;
  text-align: center;
  -webkit-box-shadow: 0 0 27px #525f8014;
  -moz-box-shadow: 0 0 27px #525f8014;
  box-shadow: 0 0 27px #525f8014;
}

section.section.section-lg.bg-default {
  position: relative;
  /* background-color: #fff; */
  color: #000;
  box-sizing: border-box;
  padding: 50px 5px;
  border-top: 3px solid #ebeef4;
  border-radius: 20px;
  box-shadow: 0 0 27px #525f8014;
}

.btn-inline-body {
  color: #ffffff;
  background: #d31e26;
}

.btn-inline-body:hover {
  color: #f8f8f8;
  background-color: #e6353e;
}

img.rounded-circle.me-3 {
  width: 38px;
}
img.img-fluid.mb-4.grand {
  height: 450px;
}

.blog-content h4 {
  margin-top: 37px;
  margin-bottom: 3px;
}
.btn-lg-square {
  width: 48px;
  height: 48px;
}
.btn {
  font-weight: 500;
  transition: 0.5s;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Rochester";
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1e1e;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 500;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 17px;
  line-height: 28px;
  color: #4a4a4a;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: "Rochester";
}

::selection {
  background: #0071f8;
  color: #fff;
}

::-moz-selection {
  background: #0071f8;
  color: #fff;
}

.section {
  margin-top: 120px;
}
section.section.section-lg.bg-default {
  margin-top: -16px;
  text-align: center;
}
.section-heading {
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 56px;
}

.section-heading h2 em {
  font-style: normal;
  color: #0071f8;
}

.section-heading h6 {
  color: #d4af37;
  font-size: 35px;
  text-transform: capitalize;
  font-weight: 600;
}

.icon-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding: 1px 12px 0px 0px;
  border-radius: 25px;
  transition: all 0.3s;
}

.icon-button a i {
  background-color: rgb(212, 175, 55);
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  margin-right: 15px;
  margin-left: -1px;
}

.icon-button a:hover {
  color: rgb(212, 175, 55);
}

.icon-button a:hover i {
  color: #fff;
}

.main-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all 0.3s;
}

.main-button a:hover {
  background-color: rgb(212, 175, 55);
  color: #fff;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: rgb(212, 175, 55);
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: rgb(212, 175, 55);
  border-radius: 50%;
}

/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.sub-header {
  background-color: #000;
  padding: 10px 0px;
  border-bottom: 1px solid #d4af37;
}

.sub-header ul li {
  display: inline-block;
}

.sub-header ul.social-links {
  text-align: right;
}

.sub-header ul.social-links li {
  margin-left: 8px;
}

.sub-header ul.social-links li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: rgb(212, 175, 55);
  font-size: 14px;
  transition: all 0.3s;
}

.sub-header ul.social-links li a:hover {
  background-color: rgb(51, 51, 51);
}

.sub-header ul.info li {
  font-size: 15px;
  color: #fff;
  border-right: 1px solid #eee;
  margin-right: 25px;
  padding-right: 25px;
}

.sub-header ul.info li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}

.sub-header ul.info li i {
  font-size: 20px;
  color: rgb(212, 175, 55);
  margin-right: 8px;
}

.background-header {
  background-color: #fff;
  height: 80px !important;
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.sidebar {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  padding: 24px;
}
.sidebar h4 {
  margin-bottom: 20px;
}
h2.display-4 {
  font-weight: 600;
  margin-bottom: 20px;
}
.related-article-link {
  color: #343a40;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  position: relative;
}

.related-article-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #343a40;
  transition: width 0.3s;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.related-article-link:hover {
  color: #007bff;
  transform: translateX(5px);
}

.related-article-link:hover::after {
  width: 100%;
}
.header-area {
  position: relative;
  background-color: #000000;
  height: 100px;
  z-index: 100;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header-area .main-nav {
  background: transparent;
  display: flex;
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}

.header-area .main-nav .logo h1 {
  line-height: 100px;
  font-size: 28px;
  text-transform: capitalize;

  color: #1e1e1e;
  font-weight: 500;
  letter-spacing: 2px;
}

.background-header .main-nav .logo h1 {
  line-height: 80px;
}

.header-area .main-nav ul.nav {
  flex-basis: 100%;
  margin-top: 30px;
  justify-content: right;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 10px;
  padding-right: 10px;
  height: 100px;
  line-height: 100px;
}

.header-area .main-nav .nav li a,
.has-submenu {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 500;
  font-size: 25px;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  color: #ffffff;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: 0.25px;
}

.header-area .main-nav .nav .stylecontact a {
  background-color: rgb(254, 254, 254);
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
  border-radius: 20px;
}
.header-area .main-nav .nav .stylecontact a:hover {
  background-color: rgb(51, 51, 51);
}
.stylecontact a i {
  background-color: rgb(212, 175, 55);
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  margin-left: -1px;
}

.stylecontact a {
  background-color: #1e1e1e;
}

.stylecontact a i {
  color: #fff;
}

.serviceselect {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}
.tab-pane p,
.tab-pane li {
  font-size: 19px;
  font-family: Arial, Helvetica, sans-serif;
}

#serviceselect {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s ease;
  margin-bottom: 20px;
}

#serviceselect:focus {
  border-color: #b89b5e;
  outline: none;
}

.header-area .main-nav .nav li:hover a {
  color: rgb(212, 175, 55);
}

.header-area .main-nav .nav li a.active {
  color: rgb(212, 175, 55);
}

.background-header .main-nav .nav li a.active {
  color: rgb(212, 175, 55);
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 22px;
}

.background-header .main-nav ul.nav {
  margin-top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #ffffff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #ffffff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #ffffff;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #ffffff;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #ffffff;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #ffffff;
}

.visible {
  display: inline !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (max-width: 767px) {
  .background-header .main-nav {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 25px 25px;
    width: 100%;
  }
  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: #fff;
  }
  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: #1e1e1e;
    background-color: #fff;
    border-radius: 0px 0px 25px 25px;
  }
  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    border-top: 1px solid #ddd;
    background-color: #f1f0fe;
    height: 50px;
    border-radius: 0px 0px 25px 25px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 0px;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: rgb(212, 175, 55) !important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area .nav li:last-child a {
    font-weight: 300 !important;
    text-transform: capitalize !important;
  }
  .header-area {
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 80px !important;
  }
  .background-header.header-sticky .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 14px 2% 268px 14%;
  margin-top: 0px;
}

.main-banner .item-1 {
  /* background: url(../images/lysprestige.mp4); */
  position: relative; /* pour que l’absolu de l’enfant soit relatif à .item-1 */
  width: 100%;
  height: 100vh; /* 100% de la hauteur de la fenêtre */
  overflow: hidden; /* coupe les débordements si object-fit dépasse */
}

.main-banner .item-2 {
  background-image: url(../images/head2.jpg);
  height: 426px;
}

.main-banner .item-3 {
  background-image: url(../images/head3.webp);
  height: 426px;
}
.main-banner .item-4 {
  background-image: url(../images/head1.jpeg);
  height: 426px;
}
.main-banner .item-5 {
  background-image: url(../images/head5.jpg);
  height: 426px;
}

.main-banner .item span.category {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 6px 15px;
  display: inline-block;
  margin-bottom: 30px;
}

.main-banner .item span.category em {
  font-style: normal;
  color: rgb(212, 175, 55);
}

.main-banner .item h2 {
  font-size: 70px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
  line-height: 72px;
  width: 50%;
  margin-bottom: 0px;
}

.main-banner .owl-dots {
  position: absolute;
  bottom: 220px;
  left: 50%;
}

.main-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.5s;
}

.main-banner .owl-dots .active {
  background-color: rgb(212, 175, 55);
}

.main-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}

/* 
---------------------------------------------
Featured Style
--------------------------------------------- 
*/

/* .featured .left-image {
  position: relative;
}

.featured .left-image img {
  padding-left: 55px;
}

.featured .left-image a {
  display: inline-block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  background-color: rgb(212, 175, 55);
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -55px;
}

.featured .section-heading {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 60px;
}

.featured .section-heading h2 {
  width: 70%;
}

.featured .accordion {
  margin-left: 10px;
  margin-right: 10px;
  --bs-accordion-border-radius: 10px;
  --bs-accordion-inner-border-radius: 10px;
  --bs-accordion-bg: #fafafa;
  --bs-accordion-border-color: none;
  border: none !important;
}

.featured .accordion-header {
  border-bottom: 1px solid #eaeaea;
}

.featured .accordion-button {
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
}

.featured .accordion-button:not(.collapsed) {
  color: rgb(212, 175, 55);
  background-color: #fafafa;
  outline: none;
}

.featured .accordion-button::after {
  display: none;
}

.featured #headingThree {
  border-bottom: none;
}

.featured .accordion-item:last-of-type .accordion-collapse {
  border-top: 1px solid #eaeaea;
}

.featured .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
}

.featured .info-table ul li {
  display: block;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.featured .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.featured .info-table ul li img {
  float: left;
  margin-right: 25px;
}

.featured .info-table ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.featured .info-table ul li h4 span {
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
} */

/* 
---------------------------------------------
Video Style
--------------------------------------------- 
*/

.video {
  background-image: url(../images/carte.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 250px 0px;
  position: relative;
}

.video-content {
  margin-top: -240px;
}

.video .section-heading h2 {
  color: #fff;
}

.video-content .video-frame {
  position: relative;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.video-content .video-frame img {
  border-radius: 10px;
  height: 500px;
}

.video-content .video-frame a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-26px, -26px);
  width: 52px;
  height: 52px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 52px;
  color: rgb(212, 175, 55);
  outline: 15px solid rgba(254, 85, 37, 0.5);
  font-size: 18px;
}

/* 
---------------------------------------------
Fun Facts Style
--------------------------------------------- 
*/

.fun-facts {
  text-align: center;
  margin-top: 125px;
}

.fun-facts .counter {
  background-color: #ffeee9;
  position: relative;
  border-radius: 10px;
  width: 248px;
  padding: 20px 0px;
  display: inline-block;
}
.wrapper .row .col-lg-4 {
  width: 25%;
}
.col-lg-4.col-md-6.wow.fadeInUp {
  width: 32%;
  padding: 17px;
  background: rgba(255, 255, 255, 0.1);
  margin: 3px;
  margin-bottom: 35px;
  border-radius: 16px;
  box-shadow: 0 5px 3px rgba(23, 20, 2, 0.2);
}
img.img-fluid.mb-4 {
  height: 210px;
}
.col-lg-4.vip {
  text-align: center;
  margin-top: 30px;
  width: 100%;
}

.fun-facts .counter h2,
.fun-facts .counter p {
  display: inline-flex;
  vertical-align: middle;
}

.fun-facts .counter p {
  text-align: left;
  font-size: 18px;
  color: #1e1e1e;
  font-weight: 600;
  line-height: 28px;
}

.fun-facts .counter h2 {
  margin-right: 25px;
  font-size: 22px;
  color: rgb(212, 175, 55);
}

.fun-facts .counter:after {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgb(212, 175, 55);
  border-radius: 50%;
  content: "";
  right: -25px;
  top: -25px;
}

/* 
---------------------------------------------
Best Deal Style
--------------------------------------------- 
*/

.best-deal {
  background-color: #fafafa;
  padding: 100px 0px;
}

.best-deal .tab-content img {
  padding: 0px 45px;
}

.best-deal .tabs-content .nav-link {
  font-size: 16px;
  font-weight: 500;
  background-color: #1e1e1e !important;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding: 0px 25px;
  color: #fff;
}

.best-deal .tabs-content .nav-tabs .nav-link.active {
  background-color: rgb(212, 175, 55) !important;
  color: #fff;
}

.best-deal .tabs-content ul.nav-tabs {
  border-bottom: none !important;
  margin-bottom: 80px;
  align-items: end;
  justify-content: end;
  margin-top: -130px;
}

.best-deal .tabs-content ul.nav-tabs li {
  padding-right: 0px;
  border-right: none;
  margin-left: 20px;
}

.best-deal .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
}

.best-deal .info-table ul li {
  display: block;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
}

.best-deal .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.best-deal .info-table ul li span {
  font-size: 15px;
  color: #1e1e1e;
  font-weight: 600;
  display: inline-block;
}

.best-deal .tabs-content {
  padding: 0px;
  background-color: transparent;
}

.best-deal .tabs-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 30px;
}

.best-deal .icon-button {
  margin-top: 30px;
}

/* 
---------------------------------------------
Properties Style
--------------------------------------------- 
*/

.properties .item {
  background-color: #fafafa;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.properties .item img {
  border-radius: 10px;
}

.properties .item span.category {
  background-color: #fbd9cf;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 25px;
}

.properties .item h4 {
  font-size: 19px;
  margin: 25px 0px;
}

.properties .item h4 a {
  color: #1e1e1e;
}

.properties .item ul li {
  display: inline-block;
  font-size: 15px;
  color: #4a4a4a;
  margin-right: 20px;
}

.properties .item ul li span {
  font-weight: 600;
  color: #1e1e1e;
}

.properties .item ul {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.properties .item h6 {
  font-size: 20px;
  color: rgb(212, 175, 55);
  margin-top: 6px;
  display: inline-block;
  float: right;
  margin-top: 30px;
}

.properties .item .main-button {
  text-align: center;
}

/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact {
  background-image: url(../images/contactaccueil.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 250px 0px;
  position: relative;
}

.contact .section-heading h2 {
  color: #fff;
}

.contact-content {
  margin-top: -240px;
  position: relative;
  z-index: 1;
}

.contact-content #map {
  border-radius: 10px;
  margin-bottom: 60px;
}

.contact-content .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 12px;
  background-color: #fff;
}

.contact-content .phone {
  margin-right: 15px;
}

.contact-content .email {
  margin-left: 15px;
}

.contact-content .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}

.contact-content .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.contact-content .item h6 span {
  font-size: 18px;
  color: #aaaaaa;
  font-weight: 400;
}

.contact-content #contact-form,
.contact-content #home-contact-form {
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
}

.contact-content #contact-form label,
.contact-content #home-contact-form label {
  font-size: 17px;
  color: #3a3a3a;
  margin-bottom: 15px;
}

.contact-content #contact-form input,
.contact-content #home-contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 6px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}

.contact-content #contact-form textarea,
.contact-content #home-contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}

.contact-content #contact-form button,
.contact-content #home-contact-form button {
  background-color: #1e1e1e;
  height: 44px;
  border-radius: 22px;
  padding: 0px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s;
}

.contact-content #contact-form button:hover,
.contact-content #home-contact-form button:hover {
  background-color: rgb(212, 175, 55);
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

/*** Footer ***/
.bg-dark {
  background-color: #000 !important;
}
.text-light {
  color: rgb(212, 175, 55) !important;
}
.footer-content a {
  text-decoration: none;
}
.footer .btn-outline-body {
  background: #fff;
}
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
  font-size: 20px;
}
.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: rgb(212, 175, 55);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .form-control {
  border-color: #777777;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 20px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

/* 
---------------------------------------------
Properties Style
--------------------------------------------- 
*/

.properties ul.properties-filter {
  list-style: none;
  text-align: center;
  margin-bottom: 70px;
}

.properties ul.properties-filter li {
  display: inline-block;
  margin: 5px 8px;
}

.properties ul.properties-filter li a {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  background-color: #1e1e1e;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s;
}

.properties ul.properties-filter li a.is_active {
  background-color: rgb(212, 175, 55);
  color: #fff;
}

.properties ul.properties-filter li a.is_active:hover {
  color: #fff;
}

.properties ul.properties-filter li a:hover {
  color: rgb(212, 175, 55);
}

.properties ul.pagination {
  margin-top: 50px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

.properties ul.pagination li {
  display: inline-block;
  margin: 0px 5px;
}

.properties ul.pagination li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50%;
  transition: all 0.3s;
}

.properties ul.pagination li a:hover,
.properties ul.pagination li a.is_active {
  background-color: rgb(212, 175, 55);
  color: #fff;
}

/* 
---------------------------------------------
Single Page Style
--------------------------------------------- 
*/

.single-property .main-image img {
  float: none;
}

.single-property .main-content h4 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.single-property .main-content span.category {
  background-color: #fbd9cf;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 40px;
}

.single-property .accordion {
  margin-top: 60px;
  margin-left: 0px;
  margin-right: 0px;
  --bs-accordion-border-radius: 10px;
  --bs-accordion-inner-border-radius: 10px;
  --bs-accordion-bg: #fafafa;
  --bs-accordion-border-color: none;
  border: none !important;
}

.single-property .accordion-header {
  border-bottom: 1px solid #eaeaea;
}

.single-property .accordion-button {
  box-shadow: none;
  font-size: 25px;
  font-weight: 500;
  color: #1e1e1e;
}

.single-property .accordion-button:not(.collapsed) {
  color: rgb(212, 175, 55);
  background-color: #fafafa;
  outline: none;
}

.single-property .accordion-button::after {
  display: none;
}

.single-property #headingThree {
  border-bottom: none;
}

.single-property .accordion-item:last-of-type .accordion-collapse {
  border-top: 1px solid #eaeaea;
}

.single-property .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  margin-left: 60px;
}

.single-property .info-table ul li {
  display: block;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.single-property .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.single-property .info-table ul li img {
  float: left;
  margin-right: 25px;
}

.single-property .info-table ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.single-property .info-table ul li h4 span {
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
}

/* 
---------------------------------------------
Contact Page Style
--------------------------------------------- 
*/

.contact-page #map {
  margin-top: 100px;
}

.contact-page .section-heading {
  margin-bottom: 40px;
  margin-right: 280px;
}

.contact-page p {
  margin-bottom: 50px;
}

.contact-page .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
  display: inline-block;
  min-width: 360px;
}

.contact-page .phone {
  margin-bottom: 30px;
}

.contact-page .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}

.contact-page .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.contact-page .item h6 span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 400;
}

.contact-page #contact-form {
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
}

.contact-page #contact-form label {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 15px;
}

.contact-page #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 6px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}

.contact-page #contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}

.contact-page #contact-form button {
  background-color: #1e1e1e;
  height: 44px;
  border-radius: 22px;
  padding: 0px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s;
}

.contact-page #contact-form button:hover {
  background-color: rgb(212, 175, 55);
}

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .header-area .main-nav .logo h1 {
    line-height: 80px !important;
  }
  .best-deal .tabs-content .nav-link {
    font-size: 14px;
    padding: 0px 15px;
    height: 44px;
    line-height: 44px;
  }
  .best-deal .tabs-content ul.nav-tabs li {
    margin: 0px 5px;
  }
  .properties ul.properties-filter li a {
    font-size: 14px;
    padding: 10px 15px;
  }
  .properties ul.properties-filter li {
    margin: 5px;
  }
}

@media (max-width: 992px) {
  .sub-header {
    display: none;
  }
  .header-area .main-nav .logo h1 {
    line-height: 100px;
  }
  .background-header .main-nav .logo h1 {
    line-height: 80px;
  }
  .header-area .main-nav .nav li a {
    padding-left: 3px;
    padding-right: 3px;
  }
  .main-banner .item h2 {
    width: 100%;
  }
  .featured .section-heading {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 100px;
  }
  .featured .accordion {
    margin-left: 0px;
    margin-right: 0px;
  }
  .featured .info-table {
    margin-top: 45px;
  }
  .fun-facts .counter {
    margin-bottom: 45px;
  }
  .best-deal .section-heading {
    text-align: center;
  }
  .best-deal .tabs-content ul.nav-tabs {
    margin-top: 0px;
    justify-content: center;
  }
  .best-deal .info-table {
    margin-bottom: 45px;
  }
  .best-deal .tab-content img {
    padding: 0px;
  }
  .best-deal .tabs-content h4 {
    margin-top: 45px;
  }
  .properties .item h6 {
    text-align: center;
    margin-bottom: 15px;
  }
  .properties .item .main-button {
    text-align: center;
  }
  .properties .item ul li {
    margin-right: 10px;
    font-size: 13px;
  }
  .contact-content .phone {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .contact-content .email {
    margin-left: 0px;
    margin-bottom: 45px;
  }
  .contact-content #contact-form {
    margin-left: 0px;
  }
  .single-property .info-table {
    margin-left: 0px;
    margin-top: 45px;
  }
  .contact-page .section-heading {
    margin-right: 0px !important;
  }
  .contact-page #contact-form {
    margin-left: 0px;
    margin-top: 60px;
  }
  .best-deal .info-table ul li span {
    float: right !important;
    width: auto !important;
  }
}

@media (max-width: 1200px) {
  .best-deal .info-table ul li span {
    float: none;
    width: 100%;
  }
  .contact-page .section-heading {
    margin-right: 100px;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .wrapper .row .col-lg-4 {
    width: auto;
  }
}
.showcase-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  font-family: "Rochester";
}

.text-section {
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-section h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.text-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #666;
}

.text-section .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.text-section .btn:hover {
  background-color: #444;
}

.social-links a {
  margin-right: 15px;
  color: #888;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  color: #000;
}

/* Image Section */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  display: none;
  transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
  display: block;
}

.carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: contain; /* Pour que les images remplissent bien le carrousel sans déformation */
  border-radius: 10px; /* Bords arrondis pour chaque image */
}

/* Carousel Controls */
.carousel-controls {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-controls button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.carousel-controls button:hover {
  background-color: #444;
}

.carousel-controls i {
  pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
  .text-section {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .carousel-controls {
    justify-content: flex-start;
  }
}
.recruitment-section {
  padding: 80px 0;
  background-color: #fff; /* ou une couleur crème si tu veux plus de chaleur */
  font-family: "Rochester";

  text-align: center;
}

.recruitment-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.recruitment-section .paragraph-partenaire {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.recruitment-section .paragraph-partenaire a,
.email-link {
  color: #b89b5e; /* Or doux */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recruitment-section .paragraph-partenaire a:hover,
.email-link:hover {
  color: #000;
}

#afficheplus {
  display: none;
}

/* Ils nous font confiance */
.thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.thumbnail img {
  display: block;
  width: 100%;
  height: 480px;
  transition: transform 0.3s ease;
}

.thumbnail:hover img {
  transform: scale(1.1);
}

.thumbnail-mary-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.thumbnail:hover .thumbnail-mary-caption {
  opacity: 1;
  transform: translateY(0);
}

.caption-content {
  text-align: center;
}

.thumbnail-mary-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.thumbnail-mary-location {
  font-size: 14px;
  color: #ddd;
}

.quote-tara {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.quote-tara-text p {
  font-size: 1rem;
  color: #555;
  min-height: 100px;
}

.quote-tara-figure img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 20px;
}

.quote-tara-author {
  font-weight: bold;
  margin-top: 20px;
}

.quote-tara-status {
  font-size: 0.9rem;
  color: #777;
}

.owl-style-12 .owl-item {
  opacity: 0.3;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.owl-style-12 .owl-item.active.center {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.owl-carousel .owl-item img {
  display: unset;
  width: auto;
}

.owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
}

.owl-nav button {
  background-color: #f0f0f0;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.owl-nav button:hover {
  background-color: #ddd;
  transform: scale(1.1);
}

.owl-nav button:focus {
  outline: none;
}

/* pas fini a verifier  */
h2 {
  font-family: "Rochester", cursive;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
}

/* Page nous */
.link-play-modern {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  padding: 10px 15px;
  border-radius: 10px;
  background: rgb(212, 175, 55);
  transform: translate3d(-50%, -50%, 0);
}

.link-play-modern .icon {
  font-size: 64px;
  color: #ffffff;
}

.link-play-modern-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-transform: capitalize;
  font-family: "Rochester";
  color: #000000;
}

.link-play-modern-title span {
  display: block;
  font-size: 24px;
  font-weight: 900;
}

.link-play-modern-decor {
  display: none;
  height: 2px;
  width: 64px;
  background: #ffffff;
  transition: all 0.3s ease;
}

* + .link-play-modern-title {
  margin-top: 16px;
}

* + .link-play-modern-decor {
  margin-top: 16px;
}
/* Style pour la section "Confiance" */
.confiance {
  border-top: 2px solid #d4af37;
  margin-top: 30px;
  padding: 20px;
  border-radius: 10px;
  width: 579px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.confiance h5 {
  font-size: 23px;
}

/* Style pour les cartes des clients */
.infospersonne .client-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effet au survol des cartes */
.infospersonne .client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

/* Style pour les noms des clients */
.infospersonne .client-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

@media (min-width: 576px) {
  .link-play-modern {
    padding: 20px 26px;
  }
  .link-play-modern .icon {
    color: rgba(255, 255, 255, 0.5);
  }
  .link-play-modern a:hover {
    color: #ffffff;
  }
  .link-play-modern-decor {
    display: inline-block;
  }
}

.box-icon-classic {
  text-align: left;
  transition: all 0.2s ease;
  z-index: 1;
}

.box-icon-classic-icon {
  display: inline-block;
  text-align: center;
  height: 70px;
  width: 70px;
  margin-top: 4px;
  font-size: 30px;
  line-height: 70px;
  color: #151515;
  background: #f3f3f3;
  border-radius: 50%;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.15);
  animation: iconClassic 20s ease-in-out infinite;
}

.box-icon-classic-title {
  text-transform: none;
  letter-spacing: 0.05em;
}

.box-icon-classic-title a,
.box-icon-classic-title a:focus,
.box-icon-classic-title a:active {
  color: inherit;
}

.box-icon-classic-title a:hover {
  color: #d4af37;
}

.box-icon-classic-text {
  line-height: 1.47;
  letter-spacing: 0.05em;
  color: rgba(21, 21, 21, 0.8);
}

* + .box-icon-classic-text {
  margin-top: 20px;
}
/*
*
* Responsive units
*/
.unit {
  display: flex;
  flex: 0 1 100%;
  margin-bottom: -20px;
  margin-left: -30px;
}

.unit > * {
  margin-bottom: 20px;
  margin-left: 30px;
}
.unit-body {
  flex: 0 1 auto;
}

.unit-left,
.unit-right {
  flex: 0 0 auto;
  max-width: 100%;
}
.unit-spacing-lg {
  margin-bottom: -30px;
  margin-left: -30px;
}

.unit-spacing-lg > * {
  margin-bottom: 30px;
  margin-left: 30px;
}

/*
  *
  * Lists
  */
.list-inline > li {
  display: inline-block;
}
.list-history-wrap {
  height: 72px;
}

.list-history {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
}

.list-history::before {
  position: absolute;
  content: "";
  top: 17px;
  right: 20px;
  height: 6px;
  width: 1000%;
  background: #d4af37;
}

@media (min-width: 576px) {
  .list-history {
    padding-left: 20px;
    max-width: 95%;
  }
}
.list-history-item {
  position: relative;
  padding-top: 54px;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.list-history-item a,
.list-history-item a:focus,
.list-history-item a:active {
  color: #151515;
}
.list-history-item a:hover {
  color: #d4af37;
}

.list-history-item > .active .list-history-circle {
  width: 40px;
  height: 40px;
}

.list-history-item > .active .list-history-circle::before {
  width: 11px;
  height: 11px;
}

.list-history-circle {
  position: absolute;
  display: inline-block;
  top: 20px;
  left: 50%;
  font-size: 0;
  line-height: 0;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border: 5px solid #d4af37;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all 0.3s ease-in-out;
}

.list-history-circle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #d4af37;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: inherit;
}

* + .list-history-wrap {
  margin-top: 50px;
}

/*
  *
  * Images
  */
.bg-image-right-1 img {
  height: 390px;
}

.img-circle {
  border-radius: 50%;
}

/*
  *
  * Icons
  */
.icon {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}

.icon::before {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-style: normal;
  speak: none;
  text-transform: none;
}
.button {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 17px 40px;
  font-size: 14px;
  line-height: 1.85;
  min-width: 200px;
  border: none;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: capitalize;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  user-select: none;
  transition: all 0.25s ease-in-out;
}
.button-primary,
.button-primary:focus {
  color: #151515;
  background-color: #ffe745;
  border-color: #ffe745;
}
.button-winona {
  overflow: hidden;
}

.content-original,
.content-dubbed {
  transition: transform 0.3s, opacity 0.3s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.content-dubbed {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translate3d(0, 20%, 0);
  pointer-events: none;
}

.button-winona:hover .content-original {
  opacity: 0;
  transform: translate3d(0, -50%, 0);
}

.button-winona:hover .content-dubbed {
  opacity: 1;
  transform: none;
}

#form-output-global {
  position: fixed;
  bottom: 30px;
  left: 15px;
  z-index: 2000;
  visibility: hidden;
  transform: translate3d(-500px, 0, 0);
  transition: 0.3s all ease;
}

#form-output-global.active {
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 576px) {
  #form-output-global {
    left: 30px;
  }
}

.quote-modern-text {
  font-weight: 300;
  letter-spacing: 0.075em;
  font-style: italic;
  text-transform: capitalize;
  font-family: Arial, Helvetica, sans-serif;
  color: #777777;
}

.quote-modern-author {
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
}

.quote-modern-status {
  color: #eea660;
  letter-spacing: 0.05em;
}

* + .quote-modern-author {
  margin-top: 16px;
}

* + .quote-modern-status {
  margin-top: 7px;
}

@media (max-width: 575px) {
  .main-banner .item h2 {
    font-size: 50px;
  }
  .logo img {
    width: 70px;
  }
  .quote-modern-figure {
    overflow: hidden;
    max-width: 120px;
    max-height: 160px;
  }
}

@media (min-width: 576px) {
  .quote-modern-wrap {
    display: flex;
    text-align: left;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
  }
  .quote-modern-wrap .unit {
    flex-grow: 1;
  }
}

@media (min-width: 768px) {
  .quote-modern {
    text-align: left;
  }
  
}

@media (min-width: 992px) and (max-width: 1199px) {
  .quote-modern-2 .quote-modern-text {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  * + .quote-modern-author {
    margin-top: 36px;
  }
}
/*
*
* Breadcrumbs
*/
.breadcrumbs-custom {
  position: relative;
  padding: 50px 0;
  text-align: center;
  background-color: #d4af37;
}

.breadcrumbs-custom-title {
  font-weight: 400;
  font-size: 55px;
}

.breadcrumbs-custom-decor {
  font-size: 0;
  line-height: 0;
}

.breadcrumbs-custom-decor::before {
  display: inline-block;
  content: "";
  width: 72px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
}

* + .breadcrumbs-custom-decor {
  margin-top: 20px;
}

@media (min-width: 576px) {
  .breadcrumbs-custom {
    padding: 70px 0;
  }
}

@media (min-width: 768px) {
  .breadcrumbs-custom {
    padding: 80px 0;
  }
  .breadcrumbs-custom-path {
    padding: 20px 0;
  }
  * + .breadcrumbs-custom-decor {
    margin-top: 35px;
  }
}

@media (min-width: 992px) {
  .breadcrumbs-custom {
    padding: 90px 0;
  }
}

@media (min-width: 1200px) {
  .breadcrumbs-custom {
    padding: 116px 0;
  }
}
/*
*
* Snackbars
*/
.snackbars {
  padding: 9px 16px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  text-align: left;
  background-color: #151515;
  border-radius: 0;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

.snackbars .icon-xxs {
  font-size: 18px;
}

.snackbars p span:last-child {
  padding-left: 14px;
}

.snackbars-left {
  display: inline-block;
  margin-bottom: 0;
}

.snackbars-right {
  display: inline-block;
  float: right;
  text-transform: capitalize;
}

.snackbars-right:hover {
  text-decoration: underline;
}

@media (min-width: 576px) {
  .snackbars {
    max-width: 540px;
    padding: 12px 15px;
    font-size: 15px;
  }
}

.iso-1 {
  display: inline-block;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #ffffff;
}

.iso-1 span {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.iso-1 .iso-1-big {
  margin-left: 8px;
  font-size: 24px;
  color: #ffffff;
}
.list-category {
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 1.71;
  letter-spacing: 0.1em;
  color: #151515;
}

.list-category-item a {
  position: relative;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #e1e1e1;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-overflow-scrolling: touch;
}

.list-category-item a,
.list-category-item a:focus,
.list-category-item a:active {
  color: inherit;
}

.list-category-item a:hover {
  color: inherit;
}

.list-category-item a::before {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  height: 3px;
  width: 0;
  background: #d4af37;
  transition: all 0.3s ease;
}

.list-category-item a.active::before {
  width: 47px;
}

.desktop .list-category-item a:hover:not(.active)::before {
  width: 100%;
}

* + .list-category {
  margin-top: 20px;
}

.aside-services-title + .button {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .list-category {
    margin-bottom: 0;
    margin-left: -20px;
  }
  .list-category:empty {
    margin-bottom: 0;
    margin-left: 0;
  }
  .list-category > * {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 20px;
  }
}

@media (min-width: 768px) {
  .list-category {
    text-align: left;
  }
  .list-category-item a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .list-category + .button {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .list-category-down-md-inline-block {
    margin-bottom: 0;
    margin-left: -20px;
  }
  .list-category-down-md-inline-block:empty {
    margin-bottom: 0;
    margin-left: 0;
  }
  .list-category-down-md-inline-block > * {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 20px;
  }
}

@media (max-width: 1199px) {
  .list-category-down-lg-inline-block {
    margin-bottom: 0;
    margin-left: -20px;
  }
  .list-category-down-lg-inline-block:empty {
    margin-bottom: 0;
    margin-left: 0;
  }
  .list-category-down-lg-inline-block > * {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 20px;
  }
}

.single-service {
  text-align: left;
}

.single-service .team-classic {
  max-width: 270px;
}

.single-service img + h4 {
  margin-top: 40px;
}

.single-service * + p {
  margin-top: 24px;
}

.single-service p + p {
  margin-top: 20px;
}

.single-service * + .row {
  margin-top: 50px;
}

@media (min-width: 1200px) {
  .team-classic {
    margin-left: auto;
  }
}
/*
*
* Team
*/
.team-modern {
  position: relative;
  text-align: center;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  transition: all 0.3s ease;
  z-index: 1;
}

.team-modern-figure {
  position: relative;
  display: block;
}

.team-modern-figure img {
  width: 100%;
  height: 280px;
  transition: all 0.3s ease;
  will-change: transform;
}

.team-modern-caption {
  padding: 26px 0 0;
  overflow: hidden;
}

.team-modern-name {
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: none;
}

.team-modern-status {
  letter-spacing: 0.05em;
}

.team-modern-social-list {
  text-align: center;
  transform: translate3d(0, -8px, 0);
  margin-bottom: -8px;
  margin-left: -3px;
  margin-right: -3px;
}

.team-modern-social-list > * {
  margin-top: 8px;
  padding-left: 3px;
  padding-right: 3px;
}

.team-modern-social-list .icon {
  width: 31px;
  height: 31px;
  font-size: 15px;
  line-height: 31px;
  background: #f5f5f5;
}

.team-modern-social-list .icon:hover {
  background: #d4af37;
}

.team-modern-social-list .mdi-google-plus {
  font-size: 18px;
}

.team-modern-social-list a,
.team-modern-social-list a:focus,
.team-modern-social-list a:active {
  color: #151515;
}

.team-modern-social-list a:hover {
  color: #ffffff;
}

* + .team-modern-status {
  margin-top: 2px;
}

* + .team-modern-social-list {
  margin-top: 12px;
}

@media (min-width: 992px) {
  .desktop .team-modern::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
    opacity: 0;
    visibility: hidden;
    transition: inherit;
    z-index: -1;
  }
  .desktop .team-modern-social-list {
    transform: translate3d(0, -8px, 0);
    margin-bottom: -8px;
    margin-left: -3px;
    margin-right: -3px;
  }
  .desktop .team-modern-social-list > * {
    margin-top: 8px;
    padding-left: 3px;
    padding-right: 3px;
  }
  .desktop .team-modern-social-list li {
    transform: translate3d(0, 110%, 0);
    transition: all 0.2s ease;
  }
  .desktop .team-modern-social-list li:nth-child(2) {
    transition-delay: 50ms;
  }
  .desktop .team-modern-social-list li:nth-child(3) {
    transition-delay: 100ms;
  }
  .desktop .team-modern-social-list li:nth-child(4) {
    transition-delay: 150ms;
  }
  .desktop .team-modern-social-list li:nth-child(5) {
    transition-delay: 200ms;
  }
  .desktop .team-modern-social-list li:nth-child(6) {
    transition-delay: 250ms;
  }
  .desktop .team-modern-social-list li:nth-child(7) {
    transition-delay: 300ms;
  }
  .desktop .team-modern-social-list li:nth-child(8) {
    transition-delay: 350ms;
  }
  .desktop .team-modern-social-list li:nth-child(9) {
    transition-delay: 400ms;
  }
  .desktop .team-modern-social-list li:nth-child(10) {
    transition-delay: 450ms;
  }
  .desktop .team-modern:hover {
    transform: translate3d(0, -20px, 0);
  }
  .desktop .team-modern:hover::before {
    top: -12px;
    right: -12px;
    bottom: -24px;
    left: -12px;
    opacity: 1;
    visibility: visible;
  }
  .desktop .team-modern:hover .team-modern-social-list li {
    transform: none;
  }
}

@media (min-width: 992px) {
  .mac-os.desktop .team-modern::before {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.03);
  }
}

/*
  *
  * Page layout
  */
.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.text-spacing-200 {
  letter-spacing: 0.2em;
}
.text-transform-none {
  text-transform: none;
}
/*
*
* Offsets
*/
* + p {
  margin-top: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

* + img {
  margin-top: 30px;
}
h4 + p {
  margin-top: 14px;
}

h5 + p {
  margin-top: 12px;
}
p + p {
  margin-top: 12px;
}
* + .row {
  margin-top: 30px;
}
* + .row-lg {
  margin-top: 50px;
}
* + .button {
  margin-top: 30px;
}
.row-40 {
  margin-bottom: -40px;
}

.row-40:empty {
  margin-bottom: 0;
}

.row-40 > * {
  margin-bottom: 40px;
}

.row-50 {
  margin-bottom: -50px;
}

.row-50:empty {
  margin-bottom: 0;
}

.row-50 > * {
  margin-bottom: 50px;
}

.row-60 {
  margin-bottom: -60px;
}

.row-60:empty {
  margin-bottom: 0;
}

.row-60 > * {
  margin-bottom: 60px;
}
.section-md,
.section-lg,
.section-xl,
.section-xxl {
  padding: 50px 0;
}
.section-relative {
  position: relative;
  z-index: 1;
}
/*
*
* Backgrounds
*/
.context-dark,
.bg-gray-dark,
.bg-primary,
.context-dark h1,
.bg-gray-dark h1,
.bg-primary h1,
.context-dark h2,
.bg-gray-dark h2,
.bg-primary h2,
.context-dark h3,
.bg-gray-dark h3,
.bg-primary h3,
.context-dark h4,
.bg-gray-dark h4,
.bg-primary h4,
.context-dark h5,
.bg-gray-dark h5,
.bg-primary h5,
.context-dark h6,
.bg-gray-dark h6,
.bg-primary h6,
.context-dark [class^="heading-"],
.bg-gray-dark [class^="heading-"],
.bg-primary [class^="heading-"] {
  color: #ffffff;
}
/**
* Light Backgrounds
*/
.bg-default {
  background-color: #ffffff;
}

.bg-primary {
  background-color: #d4af37;
}

.bg-secondary {
  background-color: #ffe745;
}

.bg-gray-100 {
  background-color: #f5f5f5;
}
.bg-gray-7 {
  background-color: #f3f3f3;
}
[class^="bg-"] {
  background-size: cover;
  background-position: center center;
}
[class*="bg-image-left-"],
[class*="bg-image-right-"] {
  position: relative;
}

[class*="bg-image-left-"] .box-transform,
[class*="bg-image-right-"] .box-transform {
  display: none;
}
/*
*
* Utilities custom
*/
.oh {
  position: relative;
  overflow: hidden;
}
[style*="z-index: 1000;"] {
  z-index: 1101 !important;
}
.box-transform-wrap {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.box-transform {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% + 150px);
  height: calc(100% + 150px);
  will-change: transform;
  animation: bgPos 100s linear infinite;
  transform: translate3d(75px, -75px, 0) rotate(0.001deg);
  background-position: 50% 50%;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .box-transform-1 {
    padding-top: 56.25%;
  }
}

@keyframes bgPos {
  25% {
    transform: translate3d(150px, -150px, 0) rotate(0.001deg);
  }
  75% {
    transform: translate3d(0, 0, 0) rotate(0.001deg);
  }
}

.container-inset-0 {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 576px) and (max-width: 991px) {
  .container-style-1 {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}
.position-static {
  position: static;
}

.index-1 {
  z-index: 1;
}
/*
  *
  * Animate.css
  */
.animated {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 1;
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(40px, 0, 0);
    transform: translate3d(40px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(40px, 0, 0);
    transform: translate3d(40px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
/*
*
* Preloader
*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  transition: 0.3s all ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

/*
*
* ToTop
*/
.ui-to-top {
  position: fixed;
  overflow: hidden;
  right: 15px;
  bottom: 15px;
  z-index: 100;
  width: 60px;
  height: 60px;
  font-size: 30px;
  line-height: 60px;
  color: #151515;
  background: #ffe745;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  transition: 0.3s all ease-in-out;
  transform: translate3d(0, 100px, 0);
}

.ui-to-top:focus,
.ui-to-top:hover {
  color: #ffffff;
  background: #d4af37;
  text-decoration: none;
}

.ui-to-top.active {
  transform: translate3d(0, 0, 0);
}

html.mobile .ui-to-top,
html.tablet .ui-to-top {
  display: none !important;
}

@media (min-width: 576px) {
  .ui-to-top {
    right: 40px;
    bottom: 40px;
  }
}
.tabs-custom {
  text-align: left;
  color: #151515;
}

.tabs-custom .nav-tabs {
  font-size: 0;
  line-height: 0;
  word-spacing: 0;
  border: 0;
  justify-content: center;
}

.tabs-custom .nav-tabs:before,
.tabs-custom .nav-tabs:after {
  display: none;
}

.tabs-custom .nav-item {
  float: none;
  margin: 0;
  border: 0;
  cursor: pointer;
  transition: 0.33s all ease;
}

.tabs-custom .nav-link {
  margin: 0;
  border-radius: 0;
  border: 0;
  color: #777777;
  font-family: "Rochester";
}

.tabs-custom .nav-link.active {
  cursor: default;
}

.tabs-custom-1 {
  color: inherit;
}

.tab-content > .tab-pane {
  display: block;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.tab-content > .active {
  visibility: visible;
  height: auto;
  overflow: visible;
}
h3 + .tabs-custom {
  margin-top: 35px;
}
.tab-content-1 {
  color: #777777;
}

.tab-content-1 h4 + p {
  margin-top: 22px;
  text-align: justify;
}

.tab-content-1 h5 + p {
  margin-top: 30px;
}

.tab-content-1 p + p {
  margin-top: 20px;
  text-align: justify;
}

.tab-content-1 * + img {
  margin-top: 35px;
}

.tab-content-1 * + .button {
  margin-top: 30px;
}

@media (min-width: 1200px) {
  .tab-content-1 h5 {
    max-width: 88%;
  }
  .tab-content-1 p {
    max-width: 96%;
  }
  .tab-content-1 * + .button {
    margin-top: 45px;
  }
}

@media (min-width: 992px) {
  .tab-content-2 {
    display: flex;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .tab-content-2 .box-info-figure {
    width: 200px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .tab-content-2 .box-info-figure {
    width: 230px;
  }
}
.forme h3 {
  color: #ffffff;
  font-size: 35px;
}
/* end multiselect */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline;
}

.select2-offscreen,
.select2-offscreen:focus {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}

.select2-display-none {
  display: none;
}

.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll;
}

.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: inline-block;
  width: 100%;
}

.slick-slide:focus {
  outline: none;
}

.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;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-loading .slick-list {
  background: #fff url("./../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  padding: 0;
  font-size: 22px;
  line-height: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 9;
}

.slick-prev:hover,
.slick-next:hover {
  outline: none;
  color: #d4af37;
}

.slick-prev::before {
  content: "\f14a";
}

.slick-next::before {
  content: "\f14f";
}

.slick-prev:before,
.slick-next:before {
  font-family: "Rochester";

  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.child-carousel .slick-slide {
  cursor: pointer;
}

.child-carousel .slick-slide img {
  width: 100%;
}
.slick-quote .carousel-parent {
  margin-bottom: 30px;
}

.slick-quote .child-carousel {
  margin-right: -22px;
}

.slick-quote .child-carousel .slick-slide {
  margin-right: 22px;
  opacity: 0.5;
  transition: all 0.25s ease-in-out;
}

.slick-quote .child-carousel .slick-slide:hover {
  opacity: 1;
}

.slick-quote .child-carousel .slick-current {
  opacity: 1;
}

* + .slick-quote {
  margin-top: 27px;
}

@media (min-width: 992px) {
  * + .slick-quote {
    margin-top: 32px;
  }
}

button.slick-prev.slick-arrow,
button.slick-next.slick-arrow {
  display: none !important;
}

section.section.section-lg.bg-default.text-md-left {
  border-top: 0 solid #ebeef4;
  border-radius: 20px;
  box-shadow: 0 0 0 #525f8014;
}

/* Section Partenaire */
.partner-section {
  background-color: #1a1a1a;
  padding: 60px 20px;
  color: white;
  text-align: center;
  border-bottom: 2px solid #d4af37;
}

.partner-section .section-heading {
  margin-bottom: 40px;
}

.partner-section .section-heading h6 {
  font-size: 35px;
  color: #d4af37;
  font-weight: 500;
  text-transform: capitalize;
}

.partner-section .section-heading h2 {
  font-size: 36px;
  font-weight: 500;
  color: white;
  text-transform: capitalize;
  margin-top: 20px;
}

/* Colonne gauche */
.partner-section .col-lg-4 {
  text-align: left;
  width: 44.333333%;
}

.partner-section .col-lg-4 h3 {
  font-size: 24px;
  color: #d4af37;
  margin-bottom: 20px;
}

.partner-section .col-lg-4 ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.partner-section .col-lg-4 ul li {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Colonne droite - Formulaire */
.partner-section .col-lg-8 {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  /* margin-left: 126px; */
}

.partner-section form {
  width: 100%;
}

.partner-section .form-group {
  margin-bottom: 20px;
}

.partner-section .form-group label {
  font-size: 22px;
  color: #fff;
  text-align: left;
  display: block;
}

.partner-section .form-group input,
.partner-section .form-group select,
textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #f4f4f4;
  color: #333;
}
.partner-section .form-group input:focus {
  outline: none;
  border-color: #d4af37;
  border: 2px solid #d4af37;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.7);
}
.partner-section button {
  background-color: #d4af37;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.partner-section button:hover {
  background-color: #bfa02d;
}

/* Style pour le champ téléphone avec intl-tel-input */
.phone-input {
  display: flex;
  align-items: center;
}

.phone-input select {
  width: 120px;
  margin-right: 10px;
}

.col-lg-8.forme {
  width: 55%;
}
#phone {
  flex: 1;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
}

#phone:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.7);
}

.iti__flag-container {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
}

.iti__selected-flag {
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
}

.iti__selected-flag img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.iti__country {
  font-size: 16px;
  color: #333;
}
@media screen and (max-width: 992px) {
  .header-area .main-nav .nav li a,
  .has-submenu {
    font-size: 20px;
  }
}
/* Responsivité - Assurer la compatibilité mobile */
@media (max-width: 768px) {
  .main-banner .owl-dots {
    display: none;
    /* position: absolute;
    bottom: 437px;
    left: 38%; */
}
  .thumbnail-mary-caption {
    opacity: 1;
    transform: translateY(0%);
  }
  .partner-section .col-lg-4,
  .partner-section .col-lg-8 {
    width: 100% !important;
  }
  .wrapper .row .col-lg-4 {
    width: 100%;
  }
  .partner-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .partner-section .col-lg-4,
  .partner-section .col-lg-8 {
    text-align: center;
    margin-bottom: 20px;
  }
  .partner-section .form-group input,
  .partner-section .form-group select {
    font-size: 14px;
  }
  .partner-section button {
    width: 100%;
  }
  .partner-section .col-lg-8 {
    width: 90%;
  }
}

/* Conteneur du formulaire */
.form-group {
  margin-bottom: 20px;
}

/* Label du champ de téléphone */
.form-group label {
  font-size: 16px;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

/* Conteneur de l'input et du sélecteur de pays */
.phone-input {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* Style du sélecteur de pays */
#phone + .iti__flag-container {
  padding: 10px;
  border-right: 1px solid #ccc;
}

/* Sélecteur de pays */
.iti__select {
  font-size: 16px;
  border: none;
  background: transparent;
  padding: 10px;
  margin-right: 10px;
}

/* Style pour l'input de numéro de téléphone */
#phone {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: #f4f4f4;
  color: #333;
}

/* Changer le style du champ de téléphone en cas de focus */
#phone:focus {
  border: 2px solid #d4af37;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.7);
}

/* État "success" (valide) */
#phone.success {
  border: 2px solid #28a745;
  background-color: #e9f7e4;
}

/* État "error" (invalide) */
#phone.error {
  border: 2px solid #dc3545;
  background-color: #f8d7da;
}

/* Responsivité - Ajuster le formulaire sur les petits écrans */
@media (max-width: 768px) {
  .phone-input {
    flex-direction: column;
    align-items: flex-start;
  }

  .iti__flag-container {
    margin-bottom: 10px;
  }

  .iti__select {
    width: 100%;
    margin-bottom: 10px;
  }

  #phone {
    width: 100%;
  }
}
.iti {
  position: relative;
  display: flex !important;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(255, 255, 255, 0);
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(255, 255, 255, 0.05);
  right: 9px;
}
.iti--separate-dial-code .iti__selected-dial-code {
  display: none;
}

/* modale */
.modal-body img {
  max-height: 300px;
  object-fit: cover;
}
/* Modal Custom Styles */
.modal-content {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 15px 20px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.modal-body {
  padding: 20px;
}

.modal-body .row {
  align-items: center;
}

.modal-body img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-body h6 {
  font-size: 1rem;
  font-weight: bold;
  color: #555;
  margin-bottom: 5px;
}

.modal-body p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.modal-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 15px 20px;
}

.modal-footer .btn {
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.modal-footer .btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.modal-footer .btn-secondary:hover {
  background-color: #5a6268;
}
/* Reservation  */
.containerreservation {
  max-width: 650px;
  background: #f2efe9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.containerreservation h1 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
}

.containerreservation label {
  font-weight: bold;
  display: block;
  margin-top: 20px;
  font-size: 20px;
}

.containerreservation select,
.containerreservation input,
.containerreservation textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.containerreservation .dynamic-section {
  display: none;
  margin-top: 20px;
}

.containerreservation .active {
  display: block;
}

.containerreservation button {
  margin-top: 30px;
  background-color: #b89b5e;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.containerreservation button:hover {
  background-color: #a0834c;
}

.reservation-intro {
  background-color: #f2efe9;
  border-left: 6px solid #b89b5e;
  padding: 25px 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease both;
}

.reservation-intro h2 {
  color: #000;
  font-size: 32px;
  margin-top: 0;
}

.reservation-intro p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin-top: 15px;
}

/* Animation fadeInUp */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.reservation-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1300px;
  margin: 50px auto;
  padding: 0 20px;
}

.reservation-intro {
  flex: 1 1 45%;
}

.containerreservation {
  flex: 1 1 50%;
}

/* Responsive */
@media (max-width: 992px) {
  .reservation-wrapper {
    flex-direction: column;
  }

  .reservation-intro,
  .containerreservation {
    width: 100%;
  }
}
/* Responsivité */
@media (max-width: 992px) {
  .containerhebergement .section,
  .containerhebergement .section.reverse {
    flex-direction: column;
    text-align: center;
  }

  .containerhebergement .text-box,
  .containerhebergement .image-box {
    flex: 1 1 100%;
  }
}

.intro-section {
  margin: 50px auto;
  text-align: center;
  padding: 20px;
}

.intro-title {
  font-size: 50px;
  font-weight: bold;
  color: #b89b5e;
  margin-bottom: 15px;
}

.intro-text {
  font-size: 21px;
  color: #555;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* conciergerie d'entreprise  */
.container-co-entreprise {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.container-co-entreprise .header {
  text-align: center;
  margin-bottom: 50px;
}

.container-co-entreprise .header h1 {
  font-size: 60px;
  color: #b89b5e;
}

.container-co-entreprise .header p {
  font-size: 30px;
  color: #444;
  margin-top: 10px;
}

.container-co-entreprise .services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.container-co-entreprise .service-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.container-co-entreprise .service-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.container-co-entreprise .service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.container-co-entreprise .service-box h2 {
  font-size: 32px;
  color: #b89b5e;
  margin-bottom: 10px;
}

.container-co-entreprise .service-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.container-co-entreprise .note {
  text-align: center;
  font-size: 18px;
  margin: 40px 0 20px;
  color: #666;
  font-style: italic;
}

.container-co-entreprise .btn-devis {
  display: block;
  margin: 0 auto 60px;
  padding: 15px 30px;
  background-color: #b89b5e;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.container-co-entreprise .btn-devis:hover {
  background-color: #a0834c;
}
/* demande un devis  */
.h1-devis {
  text-align: center;
  color: #b89b5e;
  font-size: 50px;
}

#devisForm {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.inputdevis,
#details {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#service[multiple] {
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fafafa;
}

#service[multiple] option {
  padding: 10px;
  margin: 4px 0;
  border-bottom: 1px solid #eee;
}

.boutondevis {
  background: #b89b5e;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  margin-top: 25px;
  font-size: 16px;
  cursor: pointer;
}

.boutondevis:hover {
  background: #a0834c;
}

/* medical */
.info-table ul li i {
  margin-right: 10px;
  vertical-align: middle;
}

.info-table ul li h5 {
  display: inline-block;
  margin-left: 10px;
  color: #333;
}

.info-table ul li a:hover h5 {
  color: #b89b5e;
}
p#detail-desc {
  font-size: 20px;
}
div#accordion1,
div#collapseTwo,
div#collapseThree {
  font-size: 20px;
}
.card-img-top {
  height: 200px;
}
/* Style personnalisé pour le bouton "Découvrir" */
.btn.show-detail {
  background-color: #b89b5e; /* Couleur de fond dorée */
  color: #fff; /* Couleur du texte */
  border: 2px solid #b89b5e; /* Bordure dorée */
  border-radius: 25px; /* Coins arrondis */
  padding: 8px 20px; /* Espacement interne */
  font-size: 14px; /* Taille du texte */
  font-weight: bold; /* Texte en gras */
  transition: all 0.3s ease; /* Animation fluide */
}

.btn.show-detail:hover {
  background-color: #fff; /* Couleur de fond au survol */
  color: #b89b5e; /* Couleur du texte au survol */
  border-color: #b89b5e; /* Bordure dorée */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Ombre au survol */
}

/* Personnalise les boutons Owl */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* suppression des bouton next et previous */
.owl-next span,
.owl-prev span {
  display: none;
}
/* Positionne à gauche et droite */
.owl-nav button.owl-prev {
  left: 30px;
}

.owl-nav button.owl-next {
  right: 30px;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* langues */
/* Cache la barre Google */
body > .goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Cache le logo et le "Fourni par Google" */
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

/* Style du container flottant */
.language-bot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: white;
  border: 1px solid #ddd;
  padding: 8px 10px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Segoe UI", sans-serif;
  cursor: pointer;
}

/* Icône globe */
.language-bot .fa-globe {
  font-size: 18px;
  color: #d6a74a;
}

/* Selecteur Google (caché par défaut) */
.translate-box {
  display: none;
  margin-left: 10px;
}

.translate-box.active {
  display: block;
}

#google_translate_element select {
  border: none;
  background: transparent;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  outline: none;
}
.translate-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.translate-box.active {
  max-height: 100px; /* ou plus si nécessaire */
}
.current-lang {
  font-size: 13px;
  font-weight: bold;
  color: #444;
  margin-left: 5px;
}
.taille {
  font-size: 18px;
}
.white {
  color: #fff;
}

h3.intervention {
  color: #ffc107;
}

/*view hebergement*/
/* Sections */
.containerhebergement {
  padding: 0 20px;
  /*background: #000;*/
}

.containerhebergement .section {
  display: flex;
  align-items: center;
  margin-bottom: 90px;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.section.reverse {
  flex-direction: row-reverse;
}

.image-box {
  flex: 1 1 40%;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.image-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}

.text-box {
  flex: 1 1 55%;
  color: #eee;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  transition: background 0.3s;
}

.text-box h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.text-box p {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #000;
}

.text-box ul {
  list-style-type: "✨ ";
  padding-left: 20px;
}

.text-box li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: rgb(96, 94, 92);
  font-family: Arial, Helvetica, sans-serif;
}

p.explication {
  color: rgb(96, 94, 92);
  font-size: 1.2rem;
}
p.explication strong {
  font-size: 1.7rem;
}

/*view accueil*/
.presentation-section {
  background-color: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  margin-top: -190px;
}

.presentation-container {
  /* max-width: 1000px; */
  text-align: center;
  padding: 20px;
  /* background-color: #f9f9f9; */
  border-radius: 20px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.presentation-title {
  font-size: 2.5em;
  color: rgb(212, 175, 55);
  margin-bottom: 20px;
  font-weight: 600;
}

.presentation-text {
  font-size: 2em;
  line-height: 1.8;
  color: #555;
}

.blocs-prestige-row {
  margin-top: 32px;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bloc-prestige {
  background: #111;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 32px 24px;
  margin: 8px;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid #c9b037;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bloc-prestige:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(201, 176, 55, 0.15);
}

.bloc-prestige .bloc-icon {
  font-size: 2.5rem;
  color: #c9b037;
  margin-bottom: 18px;
}

.bloc-prestige h4 {
  color: #c9b037;
  font-weight: bold;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.bloc-prestige p,
.bloc-prestige ul,
.bloc-prestige li {
  color: #fff;
  font-size: 1rem;
}

.bloc-prestige ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.bloc-prestige li:before {
  content: "•";
  color: #c9b037;
  margin-right: 8px;
}

@media (max-width: 991px) {
  .blocs-prestige-row {
    flex-direction: column;
    align-items: center;
  }
  .bloc-prestige {
    max-width: 100%;
  }
}

.presentation-point {
  background: #111;
  border-radius: 18px;
  border: 2px solid #c9b037;
  color: #fff;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  padding: 24px 18px;
  margin: 8px;
  text-align: center;
}

.presentation-point-icone {
  font-size: 2rem;
  color: #c9b037;
  margin-bottom: 10px;
}

.presentation-point h4 {
  color: #c9b037;
  margin-bottom: 10px;
}

.presentation-point p {
  margin-bottom: 0;
  color: rgb(255, 255, 255);
  font-family: Arial, sans-serif;
}

.offre-section {
  background: #f8f3ee;
  border-radius: 32px;
  margin: 48px 0 32px 0;
  padding: 32px 0;
}

.offre-section .col-md-7 {
  display: flex;
}

.offre-section .col-md-5 {
  display: flex;
}

.offre-section .apres {
  display: flex;
  align-items: stretch;
}

.offre-section .offre-description {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offre-section .offre-description2 {
  background: #111;
  border-radius: 24px;
  padding: 40px 32px;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.offre-section .offre-description2 h2 {
  color: #c9b037;
  font-size: 2.6rem;
  font-family: "Montserrat", serif;
  font-weight: bold;
  margin-bottom: 0;
}

.offre-section .offre-description2 #offre-pourcentage {
  font-size: 3.5rem;
  color: #c9b037;
}

.offre-section .offre-description2 span {
  font-size: 2.2rem;
  color: #c9b037;
}

.offre-section .offre-description h3 {
  color: #111;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.offre-section .offre-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offre-section .offre-description li {
  margin-bottom: 14px;
  color: #6d2d1a;
  font-size: 1.08rem;
  font-family: Arial, Helvetica, sans-serif;
}

.container .h2offre {
  color: #fff;
  font-size: 1px;
  height: 0;
  overflow: hidden;
}

.offre-section .offre-description li span {
  color: #c9b037;
  font-size: 1.2em;
  margin-right: 8px;
}

.offre-section .offre-description2 .spandiff {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 400;
  margin-left: 8px;
}

.offre-section .offre-description2 .diff {
  margin: 28px 0 18px 0;
  border: 1px solid #c9b037;
  border-radius: 32px;
  padding: 12px 24px;
  color: #fff;
  font-size: 1.1rem;
}

.offre-section .offre-description2 hr {
  width: 80%;
  border-top: 1px solid #c9b037;
  margin: 18px 0;
}

.offre-section .offre-description2 .forfait {
  background: rgba(201, 176, 55, 0.13);
  border-radius: 16px;
  padding: 14px 18px;
  color: #fff;
  font-size: 1rem;
}

#tabs-4-1 h4,
#tabs-4-2 h4,
#tabs-4-3 h4,
#tabs-4-4 h4 {
  color: #d4af37;
  font-size: 40px;
  margin: 20px;
  font-size: 34px;
}
#tabs-4-1 h5,
#tabs-4-2 h5,
#tabs-4-3 h5,
#tabs-4-4 h5 {
  font-size: 29px;
  margin: 20px;
}

.position-static h3 {
  font-size: 34px;
}
h5.font-weight-normal.text-transform-none.text-spacing-75 {
  font-size: 22px;
}

/* commentaire */
.demo {
  background: #f8f8f8;
  margin: 53px 0px 0px 0px;
  padding: 30px;
}
.testimonial {
  margin: 0 20px 40px;
}
.testimonial .testimonial-content {
  padding: 35px 25px 35px 50px;
  margin-bottom: 35px;
  background: #fff;
  border: 1px solid #f0f0f0;
  position: relative;
}
.testimonial .testimonial-content:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  bottom: -10px;
  left: 22px;
  transform: rotate(45deg);
}
.testimonial-content .testimonial-icon {
  width: 50px;
  height: 45px;
  background: #bfa534;
  text-align: center;
  font-size: 22px;
  color: #fff;
  line-height: 42px;
  position: absolute;
  top: 37px;
  left: -19px;
}
.testimonial-content .testimonial-icon:before {
  content: "";
  border-bottom: 16px solid #bfa534;
  border-left: 18px solid transparent;
  position: absolute;
  top: -16px;
  left: 1px;
}
.testimonial .description {
  font-size: 15px;
  font-style: italic;
  color: #8a8a8a;
  line-height: 23px;
  margin: 0;
}
.testimonial .title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #525252;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}
.testimonial .post {
  display: block;
  font-size: 14px;
  color: #bfa534;
}
.owl-theme .owl-controls {
  margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span {
  background: #ccc;
  opacity: 1;
  transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #bfa534;
}

/* fleche des avis */
.owl-buttons {
  position: absolute;
  top: 35%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-prev,
.owl-next {
  background-color: rgb(212, 175, 55);
  color: white;
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 18px;
  pointer-events: all;
  cursor: pointer;
  transition: background 0.3s ease;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: #bfa534; /* teinte dorée plus foncée */
}

.owl-buttons {
  display: block !important;
}
.owl-prev,
.owl-next {
  display: inline-block !important;
  font-size: 24px;
  color: #d4af37;
}

.tab-pane img {
  height: 381px;
  width: 650px;
}

.flex-lg-row-reverse .col-xl-7 img {
  width: 85%;
}

/* fleche des dates */
.history-arrow {
  background: none;
  border: none;
  font-size: 24px;
  color: #b89b5e;
  cursor: pointer;
  padding: 0 10px;
}
.history-arrow:focus {
  outline: none;
}
.team-description {
  background-color: #f9f9f9;
  border-left: 4px solid #b89b5e;
  border-radius: 8px;
  margin-top: -137px;
}

h5.teamupe.mb-3 {
  font-size: 35px;
} /* --- CONTENU PRINCIPAL --- */
.style1 {
  margin-top: 30px;
}

#content {
  display: flex;
  flex-direction: row-reverse; /* Colonne principale à gauche, barre latérale à droite */
  gap: 2rem;
  margin-bottom: 4rem;
}

#content article {
  flex: 3;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#content article header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 0.5rem;
}

#content article .image-featured {
  margin: 2rem 0;
  text-align: center;
}

#content article .image-featured img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#content article .content-text {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

#content article .content-text p {
  margin-bottom: 1.5rem;
}

#content article .content-text ul {
  list-style: none;
  padding-left: 0;
}

#content article .content-text ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #555;
}

#content article .content-text ul li::before {
  content: "°";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-size: 1.5rem;
}

/* --- BARRE LATÉRALE --- */
#sidebar {
  flex: 1;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#sidebar section {
  margin-bottom: 2rem;
}

#sidebar section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: #333;
  margin-bottom: 1rem;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 0.5rem;
}

#sidebar section p {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
}

#sidebar section footer {
  margin-top: 1.5rem;
  text-align: center;
}

#sidebar section footer .button {
  background-color: #d4af37;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

#sidebar section footer .button:hover {
  background-color: #b99a3b;
}

#sidebar {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#sidebar h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

#sidebar ul {
  list-style-type: none;
  padding: 0;
}

#sidebar li {
  margin-bottom: 0.8rem;
}

#sidebar a {
  text-decoration: none;
  color: #b89b5e;
  font-size: 1.1rem;
}

#sidebar a:hover {
  text-decoration: underline;
}

#sidebar .show-detailsblog {
  text-decoration: none;
  color: #b89c5ed5;
  font-weight: bold;
  font-size: 1.4rem;
  position: relative; /* Nécessaire pour placer le tiret avant */
}

#sidebar .show-detailsblog::before {
  content: "– "; /* Tiret avant le lien */
  position: absolute;
  left: -1rem; /* Décalage du tiret à gauche pour l'aligner correctement */
  top: 0;
  font-size: 1.4rem; /* Taille du tiret, peut être ajustée */
  color: #b89c5ed5; /* Même couleur que le texte du lien */
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .style1 .col-4,
  .style1 .col-8 {
    width: 100%;
  }
  #content {
    flex-direction: column; /* Affiche le contenu et la barre latérale en colonnes pour les petits écrans */
  }

  #content article {
    margin-bottom: 2rem; /* Ajout d'un espace entre le contenu et la barre latérale */
  }

  #sidebar {
    margin-top: 2rem; /* Ajoute un espace au-dessus de la barre latérale sur les petits écrans */
  }

  #content article header h2 {
    font-size: 2rem; /* Ajuste la taille du titre pour les écrans plus petits */
  }

  #content article .content-text {
    font-size: 1rem; /* Réduit la taille du texte dans l'article */
  }

  #sidebar h3 {
    font-size: 1.3rem; /* Ajuste la taille du titre dans la barre latérale */
  }

  #sidebar .show-detailsblog {
    font-size: 1.2rem; /* Réduit la taille du texte des liens dans la barre latérale */
  }
}

/* ================================
       Mentions légales – Styles spécifiques
       ================================ */
.mentions-container {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-family: "Poppins", sans-serif;
  color: #4a4a4a;
  line-height: 1.8;
}

.mentions-container > h1 {
  font-family: "Rochester", cursive;
  font-size: 2.5rem;
  color: #d4af37;
  text-align: center;
  margin-bottom: 1.5rem;
}

.mentions-container h2 {
  font-family: "Rochester", cursive;
  font-size: 1.75rem;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #d4af37;
}

.mentions-container p,
.mentions-container ul li {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.mentions-container ul {
  list-style: none;
  padding-left: 0;
}

.mentions-container ul li::before {
  content: "•";
  color: #d4af37;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  margin-right: 0.5em;
}

.mentions-container a {
  color: #1e1e1e;
  text-decoration: underline;
  transition: color 0.3s;
}

.mentions-container a:hover {
  color: #d4af37;
}

.mentions-container section {
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background-color: #f9f9f9;
  border-left: 4px solid #d4af37;
  border-radius: 6px;
}

.mentions-container footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 767px) {
  .mentions-container {
    margin: 40px 15px;
    padding: 30px 20px;
  }

  .mentions-container h2 {
    font-size: 1.5rem;
  }

  .mentions-container p,
  .mentions-container ul li {
    font-size: 0.95rem;
  }
}

/* ================================
   FAQ – Styles spécifiques
   ================================ */

/* Conteneur principal */
.faq-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 15px;
  font-family: "Poppins", sans-serif;
  color: #4a4a4a;
}

/* Titre principal */
.faq-container > h1 {
  font-family: "Rochester", cursive;
  font-size: 3rem;
  color: #d4af37;
  text-align: center;
  margin-bottom: 2rem;
}

/* Accordéon Bootstrap personnalisé */
.accordion-button {
  font-weight: 600;
  color: #1e1e1e;
  background-color: #f9f9f9;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s, color 0.3s;
  font-size: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: #d4af37;
  color: #fff;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.5);
}

/* Corps de l’accordéon */
.accordion-body {
  background-color: #fff;
  border: 1px solid #eee;
  border-top: none;
  padding: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

/* Espacements entre items */
.accordion-item + .accordion-item {
  margin-top: 1rem;
}

/* Liens dans les réponses */
.accordion-body a {
  color: #1e1e1e;
  text-decoration: underline;
  transition: color 0.3s;
}

.accordion-body a:hover {
  color: #d4af37;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .faq-container > h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .accordion-body {
    font-size: 0.95rem;
    padding: 1rem;
  }
}
