#button-rdv {
  position: fixed;
  bottom: 20px;
  left: 20px;
}

/* navbar */

@media (hover: hover) {
  .navbar-nav .nav-item .nav-link {
      position: relative;
      transition: color 0.3s ease;
  }
  
  .navbar-nav .nav-item .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px; /* Épaisseur du soulignement */
      width: 0%;
      background-color: currentColor; /* Utilise la couleur du texte */
      transition: width 0.3s ease;
  }
  
  .navbar-nav .nav-item .nav-link:hover::after {
      width: 100%;
  }
}

@media (max-width: 576px) {
  .navbar-nav .nav-item .nav-link {
    display: block;              /* Pour occuper toute la largeur de son conteneur */
    padding: 12px 15px;          /* Augmentez ces valeurs selon vos besoins */
    border-radius: 4px;          /* Optionnel, pour un effet arrondi */
    transition: background-color 0.2s ease;
  }

  .navbar-nav .nav-item .nav-link:active,
  .navbar-nav .nav-item .nav-link:focus {
    background-color: rgba(0, 0, 0, 0.1);  /* Fond qui apparaît lors du toucher */
    outline: none;              /* Retire le contour par défaut si nécessaire */
  }
}

/* Carousel */

#carouselExampleInterval {
  width: 100%; /* Prend toute la largeur de la page */
  height: auto; /* Ajuste la hauteur automatiquement */
  height: 425px; /* Hauteur fixe pour le carousel */
}

#carouselExampleInterval .carousel-item img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 400px;
  object-fit: cover; /* Gère la manière dont l'image remplit l'espace */
  filter: brightness(70%); /* Diminue la luminosité de l'image */
}

/* Google Recaptcha */
.g-recaptcha-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Google Map */
.google-map {
  height: 30rem;
  position: relative;
}
.google-map iframe {
  height: 100%;
  width: 100%;
}
.google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}

/* pricing */
.best-value {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #007bff;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
}

.pricing-card {
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  margin: 20px 0;
}

.pricing-card .price small {
  font-size: 1rem;
  color: #888;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card ul li {
  margin: 10px 0;
}

.pricing-card .btn {
  margin-top: 20px;
  padding: 10px 20px;
}
