.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
    min-height: fit-content;
    padding-bottom: 5rem;
}

.about-section h1 {
    margin-bottom: 0;
}

.about-section p {
    margin-top: 0;
}

.about-content{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 1em;
    max-width: 600px;
    
}
.about-img {
    max-width: 600px;
    width: 100%;
    margin: 2rem;
}

.section-title-box {
    max-width: 600px;
    width: 100%;
    padding: 1em;
}

.exemple-section {
    min-height: fit-content;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.exemple-content {
    transform: translateY(80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: flex-start;
    gap: 2rem;
    text-align: center;
    max-width: 700px;
    width: 90%;
}

.carrousel-card {
    width: 100%;
    max-width: 700px;
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 2rem 1rem
}

.carrousel-content {
    padding: 0 5%;
}


.besoin-section {
    min-height: fit-content;
    padding-top: 5rem;
}

.besoin-content{
    padding: 3em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/*Carousssel*/

  .mySlides {
    display: none;
  }

  .first-slide {
    display: block;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    width: auto;
    padding: 0.4rem;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
  }
  
  /* Position the "next button" to the right */

  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.164);
  }
  
  /* The dots/bullets/indicators */
  .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;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  

/*Carousssel - fin*/

  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }











@media (min-width: 1400px)
{
    .section-title-box{
        max-width: 1400px;
    }
    .about-content {
        flex-direction: row;
        max-width: 1400px;
    }

    .about-img {
        margin: 0 2rem;
    }

    
}