.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) 25%,
    rgba(16, 185, 129, 0.00) 50%,
    rgba(16, 185, 129, 0.01) 75%,
    rgba(16, 185, 129, 0.06) 100%);
}

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

.bg-dark-light{
  background-color: #c4d5cc;
}

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

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


.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-lg{
  z-index: 99999 !important;
}
.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{
  display: none !important;
}




.search-container {
  max-width: 800px;
  width: 90%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.search-container:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.search-container .form-control {
  font-size: 1rem;
}

.search-container .form-control::placeholder {
  color: #6c757d;
}

.cursor-pointer {
  cursor: pointer;
}

.search-container textarea {
  overflow-y: hidden; 
  min-height: 40px; 
}
.input {
  border: none;
  outline: transparent;
}
.input:focus {
  border: none;
  outline: transparent;
}




.chat-bubble {
  position: relative;
  max-width: 80%;
}

.chat-bubble::before {
  content: "";
  position: absolute;
  top: 15px;        
  left: -15px;  
  width: 0;
  height: 0;
  border-top: 15px solid rgba(236,241,241,255); 
  border-left: 15px solid transparent;
}

.link{
  text-decoration: none !important;
  color: none !important;
}

.fs-xs{
  font-size: xx-small !important;
}



.inVisible{
  display: block !important;
}
.visible{
  display: none !important;
}
/* .flex-hidden {
  display: flex !important;
} */

@media (max-width: 990px) {

  .inVisible{
    display: none !important;
  }
  .visible{
    display: block !important;
  }  
}

.index-max{
  z-index: 999999 !important;
}

.minh-60{
  min-height: 60vh !important;
}