/* styles.css */

body {
    font-family: avenir, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    padding-top: 0px
}

.logo {
    margin: 0;
}

.nav {
    text-align: right;
}

.nav-list {
    list-style: none;
    padding: 0;
}

.nav-item {
    display: inline-block;
    margin-left: 20px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
}

.hero {
    background-color: #f2f2f2;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    margin: 0;
    font-size: 36px;
}

.hero-subtitle {
    margin-top: 20px;
    color: #666;
    font-size: 20px;
}

.section-title {
    text-align: center;
}

.feature {
    margin-bottom: 40px;
}

.feature-title {
    margin-top: 0;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.logo {
    padding-top: 20px; /* Ajustez cette valeur pour déplacer le titre vers le bas */
    margin-bottom: -50px;
}

/* Masque toutes les diapositives par défaut */
.mySlides {
  display: none;
}

/* Ajoute un effet de fondu pour les transitions entre les diapositives */
.fade {
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Styles pour les flèches précédentes et suivantes */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px; /* Ajuste la position verticale */
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Positionnement de la flèche précédente */
.prev {
  left: 0;
}

/* Positionnement de la flèche suivante */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Styles pour les points indicatifs */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Styles pour les points indicatifs actifs */
.active {
  background-color: #717171;
}