
/* générales */
/* tous les sections */

/* préloader */
.uca-preloader {
  position: fixed;
  /* background-color: #f8c3af; */
  background-color: #ddd;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  left: 0;
}
.search-form .block, .uca-preloader {
  display: flex
;
  align-items: center;
  justify-content: center;
}
svg {
  overflow: hidden;
  vertical-align: middle;
  width: 400px;
}
@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 9535.361328125px;
    stroke-dasharray: 9535.361328125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 9535.361328125px;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 9535.361328125px;
    stroke-dasharray: 9535.361328125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 9535.361328125px;
  }
}

.svg-elem-1 {
  -webkit-animation: animate-svg-stroke-1 2s cubic-bezier(0.755, 0.05, 0.855, 0.06) 0s both;
          animation: animate-svg-stroke-1 2s cubic-bezier(0.755, 0.05, 0.855, 0.06) 0s both;
}
/* /preloader */
html, body {
  scroll-behavior: smooth;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden; /*empeche le défilement horizontale de la page*/
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}
.snap-container {
  height: 100vh;
  overflow-y: scroll;
}
.snap-section {
  height: 100vh;
  align-items: center;
  justify-content: center;
  /* scroll-snap-align: start; */
  /* scroll-snap-stop: always; */
  padding-top: 80px; 
  padding-bottom: 80px;
}

/* Désactivation du scroll snap sur tablette et mobile (<= 991px) */
/* @media (max-width: 991px) {
  .snap-container {
    scroll-snap-type: none;
  }
} */

/* header */
/* Par défaut : fond transparent */
.fixed-top.header {
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
}

/* Après scroll : fond blanc + texte foncé */
.fixed-top.header.scrolled {
  background-color: #fff !important;
  /* height:80px; */
}

.fixed-top.header.scrolled .nav-link,
.fixed-top.header.scrolled .dropdown-item {
  color: #333 !important; /* texte plus foncé */
}

.fixed-top.header.scrolled .navbar-nav .nav-link:hover {
  /* color: white !important; */
}

.fixed-top.header.scrolled .img-logo {
  /* filter: brightness(0); rendre le logo sombre si nécessaire */
}
.logo-ens {
  position: relative;
  top: 0;
  /* left: 100px; */
  background: white;
  height: 120px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;

  /* Ajout Flexbox pour centrage vertical */
  display: flex;
  align-items: center;     /* Centrage vertical */
  justify-content: center; /* Optionnel : centrer horizontalement aussi */
  padding: 20px;              /* Supprimer padding vertical */
}


.img-logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin-top: 30px;
}

/* .logo-ens {
  top: 0; 
  left: 100px; 
  background: white; padding: 20px; 
  border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); z-index: 1000;
  height: 120px;
}

.img-logo {
  max-width: 150px;
} */

ol, ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #000000;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: 0.2s ease;
}

a h4:hover {
  color: #ffbc3b;
}
.border-primary {
  border-color: #ededf1 !important;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #ffbc3b !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.text-primary {
  color: #C67037 !important;
}

.text-color {
  color: #fff;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "futura-bold";
}
.top-header {
  font-size: 12px;
  transition: transform 0.2s ease;
  transform-origin: top;
  font-weight: 600;
}
.top-header.hide {
  transform: scaleY(0);
  transform-origin: top;
}

.navigation {
  /* background: linear-gradient(to right, transparent 50%, #ffbc3b 50%); */
  transition: 0.2s ease;
}
.navigation .navbar {
  height: 70px;
  align-items: center;
}

.navbar-nav {
  padding-left: 50px;
  /* background: #ffbc3b; */
}

.nav-item {
  margin: 0 15px;
  position: relative;
}
.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}
.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #C67037;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.nav-item:hover::before, .nav-item.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}
.navbar-dark .navbar-nav .nav-link {
  /* color: #7a7777; */
  color: white;
}
link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  /* color: #C67037; */
}

/*ligne marron sous menu active et hover*/
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  border-bottom: 6px solid rgb(198, 112, 55);
  /* padding-bottom: 8px; */
  /* margin-bottom: -4px; */
}

.navbar-expand-lg .navbar-nav .nav-link {
  /* padding: 40px 0px; */
}
.navbar .nav-item > .dropdown-toggle::after {
  border: 0;
  margin-left: 0.255em;
  vertical-align: 1px;
  content: "\e64b";
  font-family: "themify";
  font-size: 11px;
  width: auto;
  display: none;
}
.navbar .dropdown .dropdown-menu li {
  padding-top: 10px;
}
.navbar .dropdown .dropdown-menu li:last-child {
  padding-bottom: 15px;
}
.navbar .dropdown .dropdown-menu.dropdown-submenu {
  top: 0;
}
.navbar .dropdown .dropdown-item .dropdown-toggle {
  display: block;
  line-height: 1.8;
}
.navbar .dropdown:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  /* border-bottom: 5px solid #C67037; */
  padding: 0 15px;
  padding-left: 5px;
  /* top: 96px; */
  /* top: 80px; */
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  /* background: #4b3127ca; */
  /* background: #ffe9e1; */
  background: white;
}
.navbar .dropdown-menu > li:not(:last-child) {
  /* border-bottom: 1px solid #C67037; Ligne entre les éléments */
  border-bottom: 1px solid #ded8d3;
}
.navbar .dropdown-menu.show {
  visibility: hidden;
}
.navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
  position: relative;
  color: #C67037;
  transition: 0.2s ease;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}
.navbar .dropdown .dropdown .dropdown-toggle:hover, .navbar .dropdown-item:hover {
  color: white;
  /* background: transparent; */
  background-color: #C67037; ;
}
.hero-section {
  padding: 250px 0 290px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; /* ou 'contain' selon effet voulu */
  /* background-attachment: fixed; optionnel, pour que l’image ne bouge pas en scroll */
}

button.prevArrow.slick-arrow {
  display: none !important;
}
button.nextArrow.slick-arrow {
  display: none !important;
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear 0.2s;
  background: transparent;
}
.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}
.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #C67037;
}
.hero-slider .prevArrow {
  right: 60px;
}
.hero-slider .nextArrow {
  right: 0;
}
/* .hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}
.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}
.hero-slider .slick-dots li.slick-active button {
  background: #C67037;
}
.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
} */

/* test */
.hero-slider .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px; /* ajuste selon ton besoin */
  padding-left: 0;
  text-align: center;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 8px;
}

.hero-slider .slick-dots li button {
  height: 24px;
  width: 24px;
  border-radius: 50%; /* cercle */
  /* background: rgba(255, 255, 255, 0.5); */
  border: none;
  outline: none;
  padding: 0;
  color: transparent;
  overflow: hidden;
  transition: background 0.3s ease;
}

.hero-slider .slick-dots li.slick-active button {
  background: #C67037;
}

/* fin test */
/* bouton scroll to top */
.backToTopBtn {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1;
  height: 50px;
  width: 50px;
  font-size: 20px;
  border: none;
  color: white;
  border-radius: 100%;
  background-color: #C67037;
  transition: background 0.5s, transform 0.5s;
  cursor: pointer;

  animation: floatUpDown 2s ease-in-out infinite;
}

.backToTopBtn:hover {
  /* background: #000000;
  color: #C67037; */
  animation-play-state: paused; /* Stop floating on hover */
  box-shadow: 0 8px 15px black; /* Colored shadow */
  background-color: #C67037;
  color: #fff;
}

.backToTopBtn.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.backToTopBtn:not(.active) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.backtotop-icon::before {
  content: "\e648";
  font-family: "themify";
  font-size: 24px;
  color: white;
  display: inline-block;
  vertical-align: middle;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* section 1 */
.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: .6;
}
/* section 2 */
.section2 {
  /* padding-top: calc(80px + 7.5%); */
  /* padding-top: 143px; */
  /* background-image: linear-gradient(-45deg, #c7bfbc78, rgb(255 255 255)), url('/images/backgrounds/18.jpeg'); */
  /* background-size: cover;  */
  /* background: linear-gradient(rgb(246, 246, 246) 0px, rgba(246, 246, 246, 0) 100%); */
  background: linear-gradient(rgb(246, 246, 246) 0px, rgba(246, 246, 246, 0) 100%), url('/images/backgrounds/bg3.jpg');;
  /* background-size: contain; */
  /* background-image: url("ton-image.jpg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.section-title {
  margin-bottom: 30px;
  font-size: 30px;
  font-size: 20px;
  color: #b96243;
}
.photo {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.photo {
  outline: #fff solid 2px; 
  outline-offset: -10px; 
  cursor: pointer; 
  border-radius: 20px; 
}

.photo img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
  margin: auto;
}

.photo .name {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background-color: #C67037;
  /* padding: 0.5rem 1rem; */
  padding: 7px;
  font-size: 1rem;
  text-align: center;
  width: fit-content;
  border-radius: 4px 4px 0 0;
}
/* .single-cta-item {
  padding: 20px 5px;
  border-right: 1px solid #D9D9D9;
} */
p, .paragraph {
  font-weight: 400;
  color: #000000;
  font-size: 13px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  /* color: #1e1e4b; */
  font-family: "futura-bold";
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}

h2, .h2 {
  font-size: 40px;
  color:#C67037;
}

h3, .h3 {
  font-size: 25px;
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 16px;
}

.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  /* padding: 15px 40px; */
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: transform 0.2s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
}
.btn:active, .btn:hover, .btn.focus, .btn:focus, .btn.active {
  outline: 0;
  box-shadow: none !important;
}
.btn:active::before, .btn:hover::before, .btn.focus::before, .btn:focus::before, .btn.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}
.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}
.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}
.btn-primary {
  color: #C67037;
  background-color: transparent;
  border: 1px solid transparent;
  border: 1px solid;
}
.btn-primary::before {
  background-color: #C67037;;
}
.btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary.active {
  color: #fff !important;
  background-color: #C67037 !important;
  border-color: #C67037 !important;
}
.btn-outline-primary {
  /* color: #C67037; */
  color: white;
  /* background-color: transparent; */
  background-color: #C67037;
  border: 1px solid #C67037;
}
.btn-outline-primary::before {
  background-color: #C67037;
}
.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary.active {
  color: #fff  !important;
  background-color: #C67037 !important;
  border-color: #fff !important;
}
.btn-light {
  color: #ffbc3b;
  background-color: #fff;
  border: 1px solid #fff;
}
.btn-light::before {
  background-color: #ffbc3b;
}
.btn-light:active, .btn-light:hover, .btn-light.focus, .btn-light:focus, .btn-light.active {
  color: #fff !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
}
  /* tous les chiffres */
  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
  }
  
  .btn-floating {
    display: inline-block;
    padding: 2px 10px;
    background-color: transparent;
    color: #C67037;
    font-size: 15px;
    font-weight: 500;
    font-family: "Butler", "Almarai", sans-serif;
    border: 2px solid #C67037;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    animation: float 3s ease-in-out infinite;
    box-shadow: none;
  }
  
  .btn-floating i {
    margin-left: 8px;
  }
  
  .btn-floating:hover {
    animation-play-state: paused; /* Stop floating on hover */
    box-shadow: 0 8px 15px black; /* Colored shadow */
    background-color: #C67037;
    color: #fff;
  }
  .btn-bottom {
    margin-top: 10%;
  }
  .btn-bottom5 {
    margin-top: 5%;
  }

  @media (max-width: 768px) {
    .section2 {
      padding-top: 79px;
    }
    .mobile-hidden {
      display: none;
    }
    .mobile-reduce h2{
      font-size: 20px;
    }
  }
  
  @media (max-width: 991px) {
    .mobile-hidden {
      display: none;
    }
    .image-reduite {
      max-width: 80%; /* ou 70%, ou ce que tu veux */
      margin: 0 auto; /* pour centrer */
      display: block;
    }
  }

/* section 3 formation */
.section3 {
  position: relative; /* nécessaire pour positionner ::before */
  padding-top: 200px;
  background-color: rgb(246, 246, 246);
  overflow: hidden; /* évite tout débordement du ::before */
  z-index: 0;
}

.section3::before {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -8rem;
  left: 80rem;
  right: -100%;
  background-color: #665c57;
  background-image: url('/images/2.webp');
  border-bottom-left-radius: 2rem;
  z-index: 0;
}

/* .section3 {
  padding-top: 200px;
  background-color: rgb(246, 246, 246);
} */

.horizontal-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 15px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.horizontal-scroll-container::-webkit-scrollbar {
  display: none;
}
.formation-card {
  flex: 0 0 auto;
  min-width: 250px;
  max-width: 250px;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 5px solid #C67037 !important;
  /* background-color: #C6703726; */
  background-color: white;
  border-radius: 8px;
}

.formation-card:hover {
  transform: scale(1.09); /* agrandissement */
  box-shadow: 0 100px 20px rgba(0, 123, 255, 0.3);
  border-color: #E1FF00FF; /* bordure bleu Bootstrap */
  z-index: 9999 !important;
}

/* section 4 vie estudiantine*/
/* .section4 {
  padding-top: 143px;
  background-image: linear-gradient(358deg, #c7bfbc45, rgb(0, 0, 0)), url('/images/banner-1.jpg');
  background-size: cover; 
} */
.section4 {
  padding-top: 143px;
  /* background-color: #a54f25; */
  background-color: #a54f257d;
  position: relative; /* Nécessaire pour ::before */
  overflow: hidden;   /* Optionnel : évite les débordements */
}

.section4::before {
  content: ""; /* Obligatoire pour que le pseudo-élément soit affiché */
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;     /* Ajuste selon le design souhaité */
  height: 100%;    /* Ajuste selon le design souhaité */
  background-image: url('/images/shape__h1.svg');
  background-repeat: no-repeat;
  background-size: cover; /* ou contain selon le besoin */
  z-index: 0;
  opacity: 1;    /* facultatif : ajuster visibilité */
}

.custom-container {
  width: 70%;
  height: 70%;
  margin: 0 auto;
}
.card__container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  width: 100%;
  max-width: 90%;
  margin: auto;
  padding: 60px 0;
  z-index: 1;
}
.card__bx {
  --dark-color: #2e2e2e;
  --dark-alt-color: #777777;
  --white-color: #ffffff;
  --button-color: #333333;
  --transition: 0.5s ease-in-out;
  font-family: inherit;
  height: 350px;
  width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: var(--dark-color); */
  transition: var(--transition);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  border: 4px solid #C67037;
}
.card__bx:hover {
  border:0;
}
.card__bx.img2 {
  background-image: url('../../../../../storage/etudiants/images/2.jpg');
}
.card__bx.img1 {
  background-image: url('../../../../../storage/etudiants/images/1.jpg');
}
.card__bx.img3 {
  background-image: url('../../../../../storage/etudiants/images/3.jpg');
}
.card__bx::before,
.card__bx::after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: var(--transition);
}
.card__bx::before {
  inset: -10px 50px;
  border-top: 4px solid var(--clr);
  transform: skewY(15deg);
  border-bottom: 4px solid var(--clr);
}
.card__bx:hover::before {
  inset: -10px 40px;
  transform: skewY(0deg);
}
.card__bx::after {
  inset: 60px -10px;
  border-left: 4px solid var(--clr);
  transform: skew(15deg);
  border-right: 4px solid var(--clr);
}
.card__bx:hover::after {
  inset: 40px -10px;
  transform: skew(0deg);
}

.card__bx .card__data {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  padding: 0 20px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  backdrop-filter: blur(2px);
}
.card__bx .card__data .card__icon {
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: var(--text-color);
  /* background-color: var(--dark-color); */
  transition: var(--transition);
}
.card__bx .card__data .card__icon {
  color: var(--clr);
  box-shadow: 0 0 0 4px var(--dark-color), 0 0 0 6px var(--clr);
}
.card__bx:hover .card__data .card__icon {
  color: var(--dark-color);
  background-color: var(--clr);
  box-shadow: 0 0 0 4px var(--dark-color), 0 0 0 300px var(--clr);
}
.card__bx .card__data .card__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(255,255,255,0.5);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin: 0;
  min-height: 40px;
}
.card__bx .card__data .card__content h3{
  color:black;
  font-size: 30px;
}

.card__bx .card__data h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white-color);
  transition: var(--transition);
}
.card__bx:hover .card__data h3 {
  color: var(--dark-color);
  transition: var(--transition);
}
.card__bx .card__data p {
  font-size: 0.9rem;
  color: rgb(18, 17, 17);
  transition: var(--transition);
}
.card__bx:hover .card__data p {
  color: #C67037;
  /* font-weight: 800; */
  transition: var(--transition);
  font-size: 0.9rem;
}
.card__bx .card__data a {
  position: relative;
  display: inline-flex;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  margin-top: 10px;
  border: 2px solid var(--clr);
  color: var(--dark-color);
  background-color: transparent;
  transition: var(--transition);
}
.card__bx:hover .card__data a {
  color: var(--clr);
  background-color: var(--dark-color);
}
.card__bx:hover .card__data a:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
  background-color: var(--clr);
}
.feature-icon {
  font-size: 50px;
  /* color: #ffbc3b; */
  display: inline-block;
  margin: 20px;
}
.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%;
}
/* version mobile
Conteneur des cartes en défilement horizontal
.card-slider {
  position: relative;
  overflow-x: auto; ✅ pour autoriser le défilement horizontal
  overflow-y: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch; pour un scroll fluide sur mobile
  scroll-snap-type: x mandatory;     optionnel pour effet snap
}
.cards-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}
.card__bx {
  min-width: 100%;      ✅ Largeur plus grande sur mobile
  height: 400px;       ✅ Hauteur augmentée sur mobile
  scroll-snap-align: start;
  flex: 0 0 auto;
  margin-right: 16px;  Un petit espace entre les cartes
}
.card-slider::-webkit-scrollbar {
  display: none;
}
.card-slider {
  -ms-overflow-style: none; IE et Edge
  scrollbar-width: none;    Firefox
}
Contrôles de navigation
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.prev-btn, .next-btn {
  background-color: #C67037;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}
.prev-btn:hover, .next-btn:hover {
  background-color: #b76d4e;
} */

/* section 5 evenement récents*/
/* .section5 {
  background-image: linear-gradient(to left, #2a100736, rgb(255 255 255) 50%), url('/images/backgrounds/45.jpg');
  background-size: cover;
} */
.section5 {
  position: relative; /* essentiel pour positionner le ::before */
  /* background-image: url('/images/backgrounds/45.jpg'); */
  background-size: cover;
  background-position: center;
  z-index: 0; /* niveau de base */
}

/* .section5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(255, 255, 255, 0.7); 
  z-index: -11; 
  pointer-events: none; 
} */

.bgevent {
  background-image: url('/images/backgrounds/bg4.png');
  background-size: cover;
  border-radius: 50px; /* ou toute autre valeur souhaitée */
}

.bgevent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  /* background: rgba(63, 59, 59, 0.7); overlay sombre */
  background: #3a1d0a9e; /* overlay sombre */
  z-index: -11; /* doit être au-dessus de l'image, mais sous le contenu */
  pointer-events: none; /* évite les problèmes de clics */
  border-radius: 50px;
}

.bgevent::after {
  content: "";
  position: absolute;
  top: -20px;    /* "padding" externe */
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid #C67037; /* bordure "bold" */
  box-shadow: 0 0 0 10px #a54f257d; /* bordure fine extérieure */
  border-radius: 70px; /* = 50px (bgevent) + 20px (padding externe) */
  z-index: 2;
  pointer-events: none;
}

.hover-shadow {
  transition: 0.3s ease;
  border: 1px solid #C67037 !important;
}
.hover-shadow:hover {
  box-shadow: 0px 4px 50px 5px #C67037;
  transform: scale(1.05); /* effet d’agrandissement */
}
.card-date {
  position: absolute;
  background: #C67037;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}
.card-date span {
  font-size: 40px;
}

.evenements-scroll-container {
  display: flex; /*pour afficher les cartes avec defilement mode mobile*/
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 50px;
}

.evenements-scroll-container::-webkit-scrollbar {
  height: 8px;
}
.evenements-scroll-container::-webkit-scrollbar-thumb {
  background-color: #C67037;
  border-radius: 4px;
}

.evenements-scroll-container > .col-lg-4 {
  flex: 0 0 auto;
  width: 300px; /* ou 30%, ou une taille fixe comme tu préfères */
  scroll-snap-align: start;
}
/* Centrer les cartes si l’écran est large (>= 1400px) */
@media (min-width: 1400px) {
  .evenements-scroll-container {
    justify-content: center;
  }
}

/* section 6 professeur */
.section6 {
  padding-top: 10%;
  /* background-image: linear-gradient(to top, #c7bfbc45, rgb(255 255 255) 90%), url('/images/backgrounds/46.jpg'); */
  background-size: cover; 
}
.container2{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  column-gap: 1rem;
  position: relative;
  width: 800px;
  height: 80vh;
  margin: auto;
  transition: all 400ms;
}
.img{
  background: var(--image) center center;
  width: 100%;
  height: 60%; 
  background-size: cover;
  transition: all 400ms;
  cursor: pointer;
  position: relative;
}
.container2:hover .img{
  filter: grayscale(100%) opacity(24%);
  transition: all 400ms;
}
.container2 .img:hover{
  filter: grayscale(0%) opacity(100%);
  transition: all 400ms;
}
.container2:has(.box-1:hover){
  grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
}
.container2:has(.box-2:hover){
  grid-template-columns: 1fr 3fr 1fr 1fr 1fr;
}
.container2:has(.box-3:hover){
  grid-template-columns: 1fr 1fr 3fr 1fr 1fr;
}
.container2:has(.box-4:hover){
  grid-template-columns: 1fr 1fr 1fr 3fr 1fr;
}
.container2:has(.box-5:hover){
  grid-template-columns: 1fr 1fr 1fr 1fr 5fr;
}
.img:nth-child(odd){
  transform: translateY(-1rem);
}
.img:nth-child(even){
  transform: translateY(1rem);
}

.img::after{
  content: attr(data-text);
  position: absolute;
  background-color: #C67037;
  color: #fff;
  padding: 5px 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  opacity: 0;
  transition: all 600ms;
}
.img:hover::after{
  bottom: 20px;
  opacity: 1;
}

/* section galerie */

.section9 {
  /* height: 100vh; */
  /* scroll-snap-align: start; */
  position: relative;
}
.section9::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* filtre noir transparent */
  z-index: 1;
  pointer-events: none; /* pour ne pas bloquer les clics sur les éléments dessous */
  /* backdrop-filter: blur(2px); optionnel : flou subtil pour un effet pro */
}

.item {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255,255,255,0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
  

  &:nth-child(1), &:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
  }

  &:nth-child(3) { left: 50%; }
  &:nth-child(4) { left: calc(50% + 220px); }
  &:nth-child(5) { left: calc(50% + 440px); }
  &:nth-child(6) { left: calc(50% + 660px); opacity: 0; }
}

.content2 {
  width: min(30vw,400px);
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  font: 400 0.85rem helvetica,sans-serif;
  color: white;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
  opacity: 0;
  display: none;

  & .title {
    font-family: 'arial-black';
    text-transform: uppercase;
  }

  & .description {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 0.8rem;
  }

  & button {
    width: fit-content;
    background-color: rgba(0,0,0,0.1);
    color: white;
    border: 2px solid white;
    border-radius: 0.25rem;
    padding: 0.75rem;
    cursor: pointer;
  }
}

.item:nth-of-type(2) .content2 {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;

  & .btn {
    background-color: rgba(255,255,255,0.5);
    color: rgba(0,0,0,0.7);
    border: 2px solid rgba(0,0,0,0.6);
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;

    &:hover {
      background-color: rgba(255,255,255,0.3);
    }
  }
}

@media (width > 650px) and (width < 900px) {
  .content2 {
    & .title        { font-size: 1rem; }
    & .description  { font-size: 0.7rem; }
    & button        { font-size: 0.7rem; }
  }
  .item {
    width: 160px;
    height: 270px;

    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 170px); }
    &:nth-child(5) { left: calc(50% + 340px); }
    &:nth-child(6) { left: calc(50% + 510px); opacity: 0; }
  }
}

@media (width < 650px) {
  .content2 {
    & .title        { font-size: 0.9rem; }
    & .description  { font-size: 0.65rem; }
    & button        { font-size: 0.7rem; }
  }
  .item {
    width: 130px;
    height: 220px;

    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 140px); }
    &:nth-child(5) { left: calc(50% + 280px); }
    &:nth-child(6) { left: calc(50% + 420px); opacity: 0; }
  }
}
/* fin section galerie */
/* section 10 */

.slider-container {
  height: 35rem;
  /* width: 100vw; */
  /* max-width: 1200px; */
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  position: relative;
  /* margin-top: 2rem; */
}

.slider-title{
  position: absolute;
  top: 0;
  font-family: 'Papyrus', Fantasy;
  font-size: 20px;
}
/* ajouté pour que l'image soit entièrement visible */
.media img {
  width: 100%; /* La largeur prend tout l’espace */
  height: 100%; /* La hauteur remplit l’espace disponible */
  object-fit: contain; /* Empêche le recadrage, assure une visibilité complète */
}
/* ajouté fin */


.left-arrow,
.right-arrow {
  height: 100%;
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: arrow-slide-in 2s 1s forwards ease-out
}

.left-arrow{
  transform: translate(-100vw);
}
.right-arrow{
  transform: translate(100vw);
}

@keyframes arrow-slide-in{
  to{
    transform: translate(0px);
  }
}

.slider-content {
  height: 100%;
  width: 80%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: row;
  overflow: hidden;
  position: relative;
  perspective: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.slider-content-background {
  height: 100%;
  width: 102%;
  position: absolute;
  top: 0;
  left: -1%;
  background: linear-gradient(
    to left,
    #f1f1f1,
    transparent,
    transparent,
    transparent,
    #f1f1f1
  );
  z-index: 3;
}
.slider-content .slide {
  position: absolute;
  left: 50%;
  /* height: 24rem; */
  height: 30rem;
  /* max-height: 400px; */
  max-height: 500px;
  /* width: 14rem; */
  width: 18rem;
  /* min-width: 270px; */
  min-width: 320px;
  background: #999;
/*   border: 1px solid; */ 
  border-radius: 25px;
  left: 50%;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, 0) rotateY(0deg) scale(1,1);
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, left 0.5s ease-in-out,
    z-index 0s 0.25s ease-in-out, box-shadow 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.slide.position-1 {
  left: 20% !important;
  z-index: 1 !important;
  transform: translate(-50%, 0) rotateY(-2deg) scale(0.8, 0.8) !important;
  opacity: 1 !important;
  box-shadow: 0px 0.4rem 1.6rem rgba(0, 0, 0, 0.1) !important;
  filter: blur(5px);
  
}
.slide.position-2 {
  left: 35% !important;
  z-index: 2 !important;
  transform: translate(-50%, 0) rotateY(-1deg) scale(0.9, 0.9) !important;
  opacity: 1 !important;
  box-shadow: 0px 0.4rem 1.6rem rgba(0, 0, 0, 0.3) !important;
  filter: blur(2px);
  
  
}
.slide.position-3 {
  left: 50% !important;
  z-index: 4 !important;
  transform: translate(-50%, 0) rotateY(0deg) scale(1, 1) !important;
  opacity: 1 !important;
  box-shadow: 0px 0.4rem 1.6rem rgba(0, 0, 0, 0.5) !important;
  cursor: pointer;
  filter: blur(0px);
}
.slide.position-3:hover {
  box-shadow: 0px 0rem 1.8rem rgba(0, 0, 0, 0.7) !important;
  transform: translate(-50%, 0) rotateY(0deg) scale(1.05, 1.05) !important;
}
.slide.position-4 {
  left: 65% !important;
  z-index: 2 !important;
  transform: translate(-50%, 0) rotateY(1deg) scale(0.9, 0.9) !important;
  opacity: 1 !important;
  box-shadow: 0px 0.4rem 1.6rem rgba(0, 0, 0, 0.3) !important;
  filter: blur(2px);
}
.slide.position-5 {
  left: 80% !important;
  z-index: 1 !important;
  transform: translate(-50%, 0) rotateY(2deg) scale(0.8, 0.8) !important;
  opacity: 1 !important;
  box-shadow: 0px 0.4rem 1.6rem rgba(0, 0, 0, 0.1) !important;
  filter: blur(5px);
}

.slide.position-none{
   left: 50%;
  z-index: 0;
  transform: translate(-50%, 0) rotateY(0deg) scale(0.7, 0.7);
  opacity: 0;
  box-shadow: 0px 0.4rem 1.6rem rgba(0, 0, 0, 0);
}

.slider-container i{
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background: #C67037;
  color: #fff;
  
}
.slider-container .left-arrow:hover i, .slider-container .right-arrow:hover i{
  background: #090909;
  color: #C67037;
  box-shadow: 0px 0rem 1rem rgba(0, 0, 0, 0.7) !important;
}


.slider-content .slide .card-sections .upper-section, .slider-content .slide .card-button{
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slider-content .slide.position-3 .card-sections .upper-section, .slider-content .slide.position-3:hover .card-button{
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

/* .slide > *{
  color: rgb(20, 18, 18);
  font-family: 'Inter';
  font-size: 90%;
  letter-spacing: -0.001em;
} */

.slide > * {
  color: rgb(20, 18, 18);
  font-family: 'Arial', sans-serif;
  font-size: 100%;
  letter-spacing: -0.001em;
  font-weight: bold;
}

.media, .card-sections{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  /* overflow: hidden; */
}
.media{
  display: flex;
  align-items: center;
  justify-content: center;
}

.media img{
  position: absolute;
  height: 30rem;
}

.card-sections{
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.upper-section{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.lower-section{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-sections .lower-section .card-button{
  margin: 0 auto;
  z-index: 1;
}

/* .slide.position-3:hover .card-sections .lower-section .card-button{
  animation: ;
} */

.slide.active.position-3 .card-sections .lower-section .card-button{
  transform: rotatex(180deg); 
}

.upper-section .wishlist, .upper-section .cart{
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  backdrop-filter: blur(10px);
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out ;
}
.upper-section .cart:hover{
  color: rgb(252, 163, 60);
  background: rgba(0,0,0,0.4);
} 
.upper-section .wishlist:hover{
  color: rgb(244, 129, 129);
  background: rgba(0,0,0,0.4);
}

.card-caption{
  width: 90%;
  position: absolute;
  text-align: center;
  bottom: 4%;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
  font-family: 'Papyrus', Fantasy;
  transition: bottom 0.2s 0.3s ease-in-out, left 0.2s 0.3s ease-in-out, transform  0.2s 0.3s ease-in-out;
}

.product-content{
  text-align: left;
  position: absolute;
  opacity: 0;
  width: 100%;
  height:180px;
  margin-top: 5px;
  font-size: 13px;
  transition: opacity 0.2s 0s ease-in-out;
  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3; 
   -webkit-box-orient: vertical;
}

.slide.active.position-3 .product-content{
  opacity: 1;
  transition: opacity 0.5s 0.3s ease-in-out;
  
}

.slide.position-3:hover .card-caption, .slide.active.position-3 .card-caption{
  /* bottom: 15%; */
  transition: bottom 0.4s 0s ease-in-out;
}

 .slide.active.position-3 .card-caption{
  left: 5%;
  transform: translate(0%);
  bottom: 40%;
  transition: bottom 0.4s 0s ease-in-out, left 0.4s 0s ease-in-out, transform  0.4s 0s ease-in-out;;
/*   margin-top: -10rem; */
}

.upper-section .price{
  position: relative;
  background: rgba(0,0,0,0.3);
  width: 55%;
  height: 35px;
  margin-top: -10rem;
  display: grid;
  place-content: center;
  border-radius: 0 0 25px 25px;
  backdrop-filter: blur(10px);
  transition: margin-top 0.2s 0s ease-in-out;
  
}
.slide.position-3:hover .upper-section .price, .slide.active.position-3 .upper-section .price{
  margin-top: -1rem;
  transition: margin-top 0.4s 0.2s ease-in-out;
}
/* .upper-section .price::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 15px;
    left: -15px;
    border-radius: 0 15px 0 0;
    box-shadow: 0px -12px 0 rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  
}
.upper-section .price::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 15px;
    right: -15px;
    border-radius: 15px 0 0 0;
    box-shadow: 0px -12px 0 rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
} */

.lower-section::before {
    content: '';
    background:rgb(217 125 90 / 72%);;
    position: absolute;
    bottom: -5%;
    height: 15%;
    width: 100%;
    left: 0;
    border-radius: 8rem 8rem 0 0;
    filter: blur(11px);
    transition: background 0.35s 0.35s ease-in-out, height 0.35s ease-in-out, border-radius 0.35s ease-in-out;
}

.slide.active.position-3 .lower-section::before {
    content: '';
    background: rgb(217 125 90);
/*     background: linear-gradient(45deg,rgba(0,0,0,0.2), rgba(255,255,255,0.2)); */
    position: absolute;
    bottom: -5%;
    height: 55%;
    width: 100%;
    left: 0;
    border-radius: 1rem 1rem 0 0;
    filter: blur(0px);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.3);
    box-sizing: border-box;
    transition: background 0.35s ease-in-out, height 0.35s ease-in-out, border-radius 0.01s ease-in-out;
}


.slide:not(.active).position-3:hover .lower-section::before {
  height: 33%;
  /* background: rgba(0,0,0,0.3); */
  background: rgb(217 125 90 / 72%);
  border-radius: 28rem 28rem 0 0;
}

@media screen and (max-width:620px){
.slide.position-1, .slide.position-5 {
  opacity: 0.5 !important;
  }
  .slide.position-2, .slide.position-4 {
  opacity: 0.95 !important;
}
} 
  
@media screen and (max-width: 445px){
  
  .slide.position-1, .slide.position-5 {
  opacity: 0 !important;
  }
.slide.position-2, .slide.position-4 {
  opacity: 0.5 !important;
}
}
@media screen and (max-width: 415px){
  .slide.position-3:hover {
    box-shadow: 0px 0rem 0.8rem rgba(0, 0, 0, 0.7) !important;
    transform: translate(-50%, 0) rotateY(0deg) scale(1.05, 1.05) !important;
  }
  .slide{
    opacity: 0 !important;
    box-shadow: none !important;
  }
  .slide.position-3{
    box-shadow: none !important;
    opacity: 1 !important;
  }
  .slide.position-1, .slide.position-2 {
    left: -50% !important;
    transform: translate(-50%, 0) rotateY(0deg) scale(0.7, 0.7) !important;
  }
  .slide.position-4, .slide.position-5 {
    left: 150% !important;
    transform: translate(-50%, 0) rotateY(0deg) scale(0.7, 0.7) !important;
  }
}
@media screen and (max-width: 390px){

.left-arrow,
.right-arrow {
  display: none;
}
  .slider-content{
    width: 100%;
  }
}
/* fin section 10 */

/* section 7  footer*/
.section7 {
  /* padding-top: 150px; */
 /* background: #182b45; */
 background: #222020;
}
.bg-footer {
  /* background-color: #182b45; */
  background-color: #222020;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 275px;
}
/* logo footer */
.logo {
  margin-top:30px;
  max-width: 300px; /* Réduit la taille du logo à 120px */
  width: 100%; /* Le logo s'ajustera automatiquement en fonction de la taille du conteneur */
  height: auto;
}

/* Base pour toutes les animations */
.fade-left, .fade-right, .fade-up, .fade-down,
.fade-in, .zoom-in, .zoom-out,
.rotate-in, .rotate-out,
.flip-left, .flip-right,
.slide-in-left, .slide-in-right, .slide-in-up, .slide-in-down {
  opacity: 0;
  transition: all 2s ease;
  will-change: opacity, transform;
}

/* Déplacements */
.fade-left        { transform: translateX(-100px); }
.fade-right       { transform: translateX(100px); }
.fade-up          { transform: translateY(100px); }
.fade-down        { transform: translateY(-100px); }

/* Opacité & Zoom */
.fade-in          { transform: scale(0.95); }
.zoom-in          { transform: scale(0.8); }
.zoom-out         { transform: scale(1.2); }

/* Rotations */
.rotate-in        { transform: rotate(-15deg); }
.rotate-out       { transform: rotate(15deg); }

/* Flip */
.flip-left        { transform: rotateY(-90deg); }
.flip-right       { transform: rotateY(90deg); }

/* Slides */
.slide-in-left    { transform: translateX(-200px); }
.slide-in-right   { transform: translateX(200px); }
.slide-in-up      { transform: translateY(200px); }
.slide-in-down    { transform: translateY(-200px); }

/* Active animation */
.animate {
  opacity: 1 !important;
  transform: none !important;
}
/* / base animation */

/* curseur style */
#particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; /* plus élevé que tout */
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}
/* /curseur style */

/* Tablette */
@media (max-width: 768px) {
 .top-header {
  display:none;
 }
 .img-logo {
  max-width: 100px;
  }
  .navbar-nav {
    padding-left: 0;
    background: #1a1a37;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 20px;
  }
  .hero-section {
    padding-top: 20%;
  }
  .sb1 {
    margin-bottom:20px;
  }
  .ma-colonne-1 {
    text-align: center;
    margin-top:40px;
    order: 2;
  }
  .ma-colonne-2 {
    margin-top:10px;
    order: 1;
  }
}

/* partials */
/* Générals */
.hero-section-partials {
  padding: 200px 0 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.breadcrumb-icon::before {
  content: "\e649";
  font-family: "themify";
  font-size: 20px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumb-separator {
  margin: 0 15px;
  display: flex;
  align-items: center;
}
.partials_path {
color: #C67037 !important;
}

/* Test pour mobile pour la menu */
@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: #1a1a37;
    max-height: calc(100vh - 80px);
  }
  .navbar-collapse.show {
    overflow-y: auto;
  }
}
@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
    background: #1a1a37;
  }
}
@media (max-width: 991px) {
  .nav-item:last-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .nav-item::before {
    opacity: 0.1;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 20px;
  }
}
@media (max-width: 991px) {
  .navbar .dropdown .dropdown-menu.dropdown-submenu li:first-child {
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    padding-left: 15px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transform-origin: unset;
    margin: 0;
    border: 0;
    position: static;
  }
}
@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}
@media (max-width: 991px) {
  .navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .hero-section {
    padding: 200px 0 200px;
  }

  .descrip {
    display: none;
  }

  .hero-slider .slick-dots li button {
    height: 10px;
    width: 10px;
  }
  .photo {
    outline: none;
  }
  .snap-section {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .section9 {
    display: none;
  }

  /* body, html {
    overflow-x: hidden;
  } */
  
}
/* @media (max-width: 991px) {
  .feature-blocks {
    margin-top: 60px;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
} */
