.cardsList {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center
}

.card {
    background-color: var(--color-second);
    border: 5px solid var(--color-main);
    border-radius: 20px;
    width: 450px
}

.cardsList.showing .card {
    cursor: pointer;
    height: fit-content;
}

.card .cardImg {
    align-items: center;
    background-color: #fff;
    border-bottom: 5px solid var(--color-main);
    border-radius: 15px 15px 0 0;
    display: flex;
    height: 200px;
    justify-content: center;
    padding: 10px
}


.card .cardImg img {
    max-height: 150px;
    max-width: 100%;
    width: auto
}


.card .cardTitle {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 6px 15px 10px;
    position: relative;
    z-index: 0
}

.card .cardTitle button {
    align-items: center;
    background-color: #fff;
    border: none;
    border-radius: 32px;
    color: var(--color-main);
    display: flex;
    height: 32px;
    justify-content: center;
    padding: 0;
    width: 32px
}

.card .cardTitle button .fa-chevron-down, .card.show .cardTitle button .fa-xmark {
    display: initial
}

.card.show .cardTitle button .fa-chevron-down, .card .cardTitle button .fa-xmark {
    display: none
}

.card .cardTitle h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.05em;
    margin: 0;
    padding: 0
}

.card .cardContent {
    display: none;
    color: #fff;
    width: 100%
}

.card.show .cardContent {
    display: block;
}

.card.show .cardContent p {
    padding: .5rem
}