.border-grays{
   border-bottom: 1px solid rgb(60, 60, 60) !important;
}
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.oval-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;   /* largeur de l'ovale */
  height: 300px;  /* hauteur de l'ovale */
  background: #90ee90; /* vert clair */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.7;
}

.hero h1,
.hero p,
.hero button {
  z-index: 1; /* pour rester au-dessus de l'ovale */
  position: relative;
}

.navbar.transition {
  transition: background-color .25s ease, box-shadow .25s ease;
}
.hero-wrap {
   background: linear-gradient(180deg,
    rgba(16, 185, 129, 0.03) 0%,
    rgba(16, 185, 129, 0.06) 45%,
    rgba(16, 185, 129, 0.06) 55%,
    rgba(16, 185, 129, 0.0) 100%);
}
.hero-wrap .lead {
  max-width: 700px;
}
.hero-wrap-row {
   background: linear-gradient(90deg,
    rgba(16, 185, 129, 0.06) 0%,
    rgba(16, 185, 129, 0.01) 20%,
    rgba(16, 185, 129, 0.00) 50%,
    rgba(16, 185, 129, 0.01) 80%,
    rgba(16, 185, 129, 0.06) 100%);
}

.bg-green-light{
  background-color: rgba(236,241,241,255);
}

.bg-gray-light{
  background-color: rgb(242, 242, 242);
}

.embed-responsive-16by9 {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
}

.embed-responsive-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.accordion-button.custom-green {
  background-color: #d4edda !important; /* vert clair */
  color: #155724 !important; /* texte vert foncé */
}

.accordion-button.custom-green:not(.collapsed) {
  background-color: #c3e6cb !important; /* vert clair un peu plus foncé quand ouvert */
  color: #155724 !important;
}

.shadow-active:hover {
  transform: scale(1.02);
  transition: all 1s;
}

.modal-container{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    z-index: 9999;
}


/* ::-webkit-scrollbar {
  width: 1px;
} */

/* ::-webkit-scrollbar-thumb {
  background: #888; 
} */

/* Handle on hover */
/* ::-webkit-scrollbar-thumb:hover {
  background: var(--c1); 
  transition: all .5s;
} */

.scroll-hidden{
overflow-y: scroll !important;
height: 100vh;
}


.left-frame{
  position: relative;
  top: 0px;
  left: 50px;
  width: 300px;
  height: 100vh;
}

.right-frame{
  position: relative;
  top: 0px;
  left: 350px;
  right: 50px;
  width: calc(100% - 420px);
}

.p-absolute{
  /* position: absolute; */
  height: 100vh;
}

.z-index-md{
  z-index: 9999 !important;
}


.z-index-sm{
  z-index: 999 !important;
}

/* App.css */
.active-link {
  color: #025114 !important; 
  background-color: rgba(236,241,241,255)  !important;
  border-left: 2px solid #025114 !important;
}

.nav-link {
  transition: all 0.3s ease-in-out;
}

.checkbox{
  width: 20px !important;
  height: 20px !important;
  cursor: pointer;
}

.checkbox:checked{
    accent-color: #096820;
}

.text-green{
  color: #025114 !important;
}

.cursor{
  cursor: pointer;
}


.hidden-sm{
  display: block;
}

@media (max-width: 590px) {

 .hidden-sm{
  display: none;
  }
  
}



.partner-card {
  min-height: 280px;       /* ajuste selon ton design */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}