.statistics .section-body {
    margin-top: 2rem;
    display: flex;
    /* flex-direction: row; */
    gap: 21px;
    align-items: center;
    justify-content: center;
}

.statistics .section-body .card {
    width: 270px;
    height: 365px;
    border-radius: 30px;
    border: 0;
    background-color: #ffffff;
    box-shadow: 0 0 10px #b3b3b3;
    padding: 2rem;
    position: relative;
}



.statistics .section-body .card .stat-quote {
    position: absolute;
    bottom: 3rem;
    padding-right: 2rem;
}

.statistics .section-body .card img {
    width: 25%;
    margin-bottom: 2rem;
    /* height: 100px; */
}
.statistics .section-body .card:first-child img{
    width: 35%;
}
.statistics .section-body .card h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 50px;
    line-height: 40px;
    color: #1b1b1b;
    font-weight: 800;
    /* height: 60px; */
}

.statistics .section-body .card h5 {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #1b1b1b;
    font-weight: 700;
    margin-bottom: 1rem;
    height: 40px;
}

.statistics .section-body .card p {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #1b1b1b;
    font-weight: 400;
    margin-bottom: 0;
    height: 60px;
}

.statistics .section-body .card:hover {
    background-color: #0080FF;
}

.statistics .section-body .card:hover h2,
.statistics .section-body .card:hover h5,
.statistics .section-body .card:hover p {
    color: #ffffff;
}

@media (max-width: 426px) {
    .statistics .section-body .card {
        width: 270px;
        height: 306px;
    }

    .statistics .section-body .card img {
        /* width: 18%; */
    }

    .statistics .section-body .card .stat-quote {
        bottom: 1rem;
    }

    .statistics .section-body .card h2 {
        font-size: 40px;
        line-height: 30px;
    }

    .statistics .section-body .card h5 {
        font-size: 14px;
        line-height: 16px;
    }

    .statistics .section-body .card p {
        font-size: 12px;
        line-height: 16px;
    }
}

@media (max-width: 321px) {
    .statistics .section-body .card img {
        width: 18%;
    }

    .statistics .section-body .card {
        width: 70%;
        height: 270px;
        padding: 2rem;
    }

    .statistics .section-body .card .stat-quote {
        padding-right: 1rem;
        bottom: 2rem;
    }

    .statistics .section-body .card h5 {
        height: 30px;
    }
}

