.ContainerAccord {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 50px 5%;
}

.contSkill {
    margin: 50px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: start;
    align-content: start;
    gap: 30px;
}

.card {
    width: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.26);
    transition: all 0.5s ease;
    min-width: 250px;
}


.card.actif {
    transform: scale(1.1);
    transition: transform 0.3s;
}

.circle {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    text-align: center;
    margin: 20px auto;
}

.circle img {
    width: 80px;
    height: 80px;
    background-color: rgb(16, 16, 16);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 20px;
    border-radius: 100%;
}

.pourcent {
    position: relative;
    right: -100px;
    top: -80px;
    color: #0084ff;
    font-size: 18px;
}

.card-text {
    height: 0px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.card-text {
    height: 0px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.card-text.actif {
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    transition: all 0.5s ease;
}

.card .btnPlus{
    visibility: visible;
    opacity: 1;
    width: 40px;
    height: 40px;
    fill: #4CAF50;
    cursor: pointer;
    transform: translateX(50%);
    transition: opacity 0.5s ease;
}

.card .btnPlus:hover{
    fill: #4caf4fd7;
}

.card.actif .btnPlus {
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card .btnMoins {
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    width: 40px;
    height: 40px;
    fill: #f00020;
    cursor: pointer;
    transform: translateX(-50%);
    transition: opacity 0.5s ease;
}

.card.actif .btnMoins {
    fill: #f00020ec;
}

.card.actif .btnMoins {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease;
}


@media (max-width: 1750px) {
    .ContainerAccord {
        flex-direction: column;
    }
}


@media (max-width: 550px) {
    .card {
        width: 30%;
    }
}