body{
    overflow-x: hidden;
    background-repeat: no-repeat;
}

.diplomes{
    width: 80vw;
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.card-img-top{
  width: 100%; /* L'image remplit la largeur du cadre */
  height: 100%; /* L'image remplit la hauteur du cadre */
  object-fit: cover; /* LE PLUS IMPORTANT : Gère le redimensionnement */
  object-position: center; /* Centre l'image dans le cadre */
  display: block; /* Supprime l'espace sous l'image */
}

.diplomes-trier{
    width: 100%;
    margin-bottom: 2rem;
    justify-content: center;
    /* border: 1px solid yellow;  */
}

.head{
    width: 40%;
}

.diplomes-trier .footer-diplome-trie{
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 15px;
    margin: 0 auto;
}

.diplomes-trier .title-diplome-trier{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 40%;
    /* min-height: 40vh; */
}

.title-diplome-trier button{
    width: 4vw;
    margin-right: 1rem;
}

.liste-dimplomes{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#diplome-en-cours {
    height: auto;
    overflow: hidden;
    transition: height 0.5s ease;
}

#diplome-obtenu {
    height: auto;
    overflow: hidden;
    transition: height 0.5s ease;
}

.liste-dimplomes .card-diplome{
    color: black;
    margin: 1rem;

}

.modal{
    color: #000 !important;
}

/* Responsive */
@media screen and (max-width: 1180px) {
    .diplomes{
        overflow: scroll;
        height: fit-content;
        display: block;
        position: relative;
        padding-top: 5rem;
        width: 100%;
    }
    .head{
        width: 100%;
    }
    .title-diplome-trier{
        margin: 2px;
    }
    .title-diplome-trier button{
        width: 10vw;
        margin-right: 2%;
    }
}

/* Responsive */