.home{
    padding-top: 2em;
}

.home .uniformSpacing{
    display: flex;
    gap: 1.5em;
    flex-direction: column;
}

.home .uniformSpacing{
    display: flex;
    gap: 1.5em;
}

.home .statsContainer,
.home .formationsContainer,
.home .filtersContainer{
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.home .stats{
    display: flex;
    gap: 1em;
    justify-content: center;
}

.home .stats div{
    display: flex;
    flex-direction: column;
    gap: .5em;
    width: calc((100% - 1em * 2) /3);
    border-radius: var(--basicRadius);
    align-items: center;
    justify-content: space-between;
    padding: .75em;
}


.home .filters{
    height: 2em;
    position: relative;
}

.home .filters > div{
    display: flex;
    gap: 1em;
    position: absolute;
}

.home .FiltersType,
.home .FiltersThematique{
    padding: .5em 1em;
    border-radius: var(--basicRadius);
    display: flex;
    flex-direction: column;
    gap: 1em;
    height: 2em;
    overflow: hidden;
    cursor: pointer;
}

.home .FiltersType.active,
.home .FiltersThematique.active{
    height: fit-content;
}

.home .FiltersType p:not(:first-child),
.home .FiltersThematique p:not(:first-child){
    cursor: pointer;
}

.home .FiltersType p.actif,
.home .FiltersThematique p.actif{
    text-decoration: underline;
}

.home .formationListe{
    display: flex;
    flex-direction: column;
    gap: .5em;
}

 .home .formationListe > a{
     background-color: #F8F8F8;
     border-radius: var(--basicRadius);
     display: flex;
     gap: 1em;
     padding: .5em;
     font-size: 1em;
 }

.home .formationListe > a .extrait{
    max-height: 10em;
    overflow-y: auto;
    height: auto;
    line-height: 1.6;
}

.home .formationListe > a img{
    height: 5em;
    width: 5em;
    min-width: 5em;
    object-fit: cover;
    border-radius: var(--basicRadius);
}

.home .formationListe > a > div{
    display: flex;
    flex-direction: column;
    gap: .5em;
    width: 100%;
}

.home .formationListe > a > div p{
    width: 100%;
}







