.statistics {
    position: relative;
    z-index: 5;
}

.statistics-cards {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    width: 80%;
    margin: -120px auto 0;
}

.statistics-card {
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 2;
    flex-direction: column;
}

.statistics-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.statistics-card-image img {
    width: 100%;
}

.statistics-card-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--w-color);
    box-shadow: 0 22px 44px rgba(171, 56, 125, 0.4);
    border-radius: 32px;
    width: 160px;
    height: 94px;
    margin-top: -40px;
}

.statistics-card-contents h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--p-color);
    text-align: center;
}

.statistics-card-contents span {
    font-size: 20px;
    font-weight: 700;
    color: var(--p-color);
    text-align: center;
}

@media (max-width: 1400px) {
    .statistics-cards {
        margin-top: -110px;
        width: 90%;
    }
}

@media (max-width: 1200px) {
    .statistics-card-image {
        width: 80%;
    }

    .statistics-card-contents {
        margin-top: -70px;
    }

    .statistics-card {
        gap: 16px;
    }

    .statistics-card-contents h3 {
        font-size: 28px;
    }

    .statistics-card-contents span {
        font-size: 18px;
        text-align: center;
    }

    .statistics-card-contents {
        gap: 4px;
    }
}

@media (max-width: 992px) {

    .statistics-cards {
        margin-top: -90px;
        width: 100%;
        gap: 0;
    }

    .statistics-card-image {
        width: 70%;
    }

    .statistics-card-contents {
        width: 130px;
        height: 80px;
        border-radius: 24px;
    }

    .statistics-card-contents h3 {
        font-size: 26px;
    }

    .statistics-card-contents span {
        font-size: 16px;
    }

}

@media (max-width: 768px) {
    .statistics-cards {
        border-radius: 40px;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        padding: 20px;
        margin-top: 20px;
        gap: 32px;
    }
}

@media (max-width: 480px) {

    .statistics-card {
        flex-direction: column;
    }
}

@media (max-width: 390px) {
    .statistics-card-image {
        width: 72%;
    }

    .statistics-card-contents h3 {
        font-size: 24px;
    }

    .statistics-card-contents {
        width: 120px;
        height: 70px;
        border-radius: 24px;
        margin-top: -50px;
        gap: 0;
    }

    .statistics-card-contents h3 {
        font-size: 22px;
    }

    .statistics-cards {
        border-radius: 40px;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        padding: 0;
        margin-top: 40px;
        gap: 32px 0;
    }
}