.number-stack-section {
    position: relative;
    padding: 48px 0;
    background-color: #EBEBEB;
}
.number-stack-section::before,
.number-stack-section::after {
    content: "";
    display: block;
    position: absolute;
    top:0;bottom:0;
    width: 80px;
    background-color: inherit;
}
.number-stack-section::before {
    left:0;
    transform: translateX(-100%);
}
.number-stack-section::after {
    right:0;
    transform: translateX(100%);
}
.number-stack-title {
    margin-bottom: 75px;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

.number-stack-invoke {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    width: 100%;
    max-width: 1580px;
    margin-right: auto;
    margin-left: auto;
    justify-content: space-between;

    .number-stack-item,
    .number-stack-item-content {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .number-stack-item {
        flex: 1 1 20%;
        row-gap: 24px;
    }

    .number-stack-item-content {
        row-gap: 8px;
    }

    .number-stack-item-icon {
        width: 56px;
    }

    .number-stack-item-title {
        line-height: normal;
    }
}

@media (max-width: 1279px) {
    .number-stack-section::before,
    .number-stack-section::after {
        width: 40px;
    }
}

@media (max-width: 1023px) {
    .number-stack-section::before,
    .number-stack-section::after {
        width: 16px;
    }
    .number-stack-title {
        margin-bottom: 32px;
        font-size: 24px;
    }

    .number-stack-invoke {

        .number-stack-item {
            row-gap: 8px;
        }

        .number-stack-item-icon {
            width: 32px;
        }
    }
}
