.statistics_container {
    display: flex;
    background: var(--card);
    border-radius: 10px;
    padding: 20px;
    color: var(--text-custom);
    gap: 2rem;
    position: relative;
    overflow: hidden;
    align-items: center;
}

.statistics_number {
    font-family: "Unbounded";
    font-size: 35px;
    font-weight: 500;
    color: var(--text-default);
}

.statistics_icon svg {
    fill: var(--span);
    width: 100%;
    height: 60px;
}

.statistics_name {
    color: var(--text-custom);
}

.statistics_flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blocks {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.blocks-flex {
    gap: 10px;
    display: flex;
}

.blocks-flex:first-child .block1 {
    flex: 1.3;
}
.blocks-flex:first-child .block2 {
    flex: 1;
}

.blocks-flex:last-child .block3 {
    flex: 1;
}
.blocks-flex:last-child .block4 {
    flex: 1.3;
}


@media (max-width: 767px) {
    .blocks-flex {
        flex-direction: column;
    }
    
    .blocks-flex:first-child .block1,
    .blocks-flex:first-child .block2,
    .blocks-flex:last-child .block3,
    .blocks-flex:last-child .block4 {
        flex: 1;
        width: 100%;
    }
}