.qui-concept{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 200px;
}

.titre-qui-concept{
    margin-bottom: 125px;
}

.text-container{
    display: flex;
    height: fit-content;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    bottom: 15%;
}

.image-apropos img{
    width: 400px;
    height: 400px;
}


.text-container p{
    width: 500px;
    font-size: var(--text-size);
    line-height: 1.6rem;
}

.titre-histoire h2{
    font-size: var(--title-size);
    margin-bottom: 100px;
}
.histoire-concept{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 100px;
}

#c1{
    grid-area: c1;
}
#c1{
    grid-area: c2;
}
#c1{
    grid-area: c3;
}
#c1{
    grid-area: c4;
}
#c1{
    grid-area: c5;
}
#c1{
    grid-area: c6;
}

.cards-container{
    height: fit-content;
    display: grid;

    grid-template-areas:
        'c1 c2 c3'
        'c4 c5 c6';
    grid-gap: 50px;
}

.card-histoire{
    height: 500px;
    width: 350px;
    border: solid white 6px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 35px;
    flex-wrap: wrap;
    padding: 16px;
  }

.card-histoire p {
    margin-bottom: 50px;
}

.histoire-concept a{
    border: 8px solid var(--white-color);
    border-radius: 5px;
    color: var(--white-color);
    margin-top: 100px;
    transition: ease-in-out 0.2s;
    padding: 12px;
    font-size: 1.6rem;
    text-decoration: none;

}


.histoire-concept a:hover{
    transform: scale(1.1);
}

  @media screen and (max-width:1150px){
    .cards-container{

        grid-template-areas:
        'c1 c2'
        'c3 c4'
        'c5 c6';

    }
  }
  @media screen and (max-width:768px){
    .cards-container{
        display: block;
    }

    .card-histoire{
        margin-bottom: 50px;
    }
    
  }

