/*----------------------------------------
    Counter
----------------------------------------*/
.counter-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-item: center;
    gap: 15px;
}
.counter-flex > div {
    background-color: var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}
/* first-child, last-child, nth-child(x), nth-child(even), nth-child(odd), nth-child(3n) */
.counter-flex > div:nth-child(odd) {
    background-color: var(--blue);
}

.card-counter{
    box-shadow: 2px 2px 10px #DADADA;
    margin: 5px;
    padding: 20px 10px;
    background-color: #fff;
    height: 100px;
    border-radius: 15px;
    transition: .3s linear all;
    color: var(--white);
}

.card-counter:hover{
    box-shadow: 4px 4px 20px #DADADA;
    transition: .3s linear all;
}

.card-counter i{
    font-size: 2.75em;
    opacity: 0.5;
}

.card-counter .card-info {
    margin-left: 1em;
}

.card-counter .counter{
    font-size: 32px;
    text-align: right;
}

.card-counter .count-name{
    opacity: 0.5;
    font-size: 18px;
    text-align: right;
}
.card-link {
    z-index: 1;
    opacity: 0;
}