.the_stats {
    display: flex;
    gap: 80px 20px;
    margin-top: 70px;
    justify-content: center;
    flex-wrap: wrap;
}

.the_stat {
    background: #1D5377;
    border-top: 9px solid var(--Red);
    flex-basis: 23%;
}

.stat_icon {
    border-radius: 100%;
    background: #fff;
    width: 140px;
    aspect-ratio: 1 / 1;
    margin: -70px auto 0;
    padding: 15px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat_icon > div {
    width: 100%;
}

.the_stat .wp_content {
    text-align: center;
    padding: clamp(20px, 3vw, 30px) clamp(20px, 3vw, 40px);
}

.the_stat .wp_content * {
    color: #fff;
    font-family: 'Catamaran', sans-serif;
}

.the_stat .wp_content .title-large {
    padding: 10px 0;
}

@media (max-width: 1200px) {
    .stat_icon {
        width: 100px;
        margin-top: -50px;
    }
    .the_stats {
        margin-top: 50px;
    }
}

@media (max-width: 1024px) {
    .the_stats {
        gap: 70px 20px;
    }
    .the_stat {
        flex-basis: 48%;
    }
}

@media (max-width: 640px) {
    .the_stats {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}