.number-stats {
    position: relative;
}

.number-stats__heading h2 span {
    position: relative;
    background: linear-gradient(to bottom, rgb(205, 235, 254, 0.5) 0%, rgb(205, 235, 254, 0.5) 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 3px 15px;
    word-break: break-word;
}

.number-stats__heading h2 i {
    display: block;
    color: #0073BA;
    font-size: 43px;
    margin: 0 0 4px;
}

.number-stats-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 5px;
}

.number-stats-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0073BA;
    margin: 0;
}

.number-stats-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1C1C1C;
    margin: 0;
}

.number-stats__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media(min-width: 768px) {
    .number-stats__heading h2 i {
        display: inline-block;
        position: relative;
        top: 5px;
    }

    .number-stats-item h3 {
        font-size: 30px;
    }

    .number-stats__wrapper {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        max-width: 664px;
        margin: 0 auto;
    }

    .number-stats-item:after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        width: 1px;
        height: 75px;
        background: #D0D0D0;
    }

    .number-stats-item:last-child:after {
        display: none;
    }

    .number-stats__heading {
        margin: 0 0 28px;
    }

    .number-stats-item {
        gap: 10px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .number-stats__heading h2 span {
        background-size: 3px 28px;
    }

    .number-stats__right-bg-icon {
        right: -70px;
        position: absolute;
        width: 113px;
        z-index: 2;
        bottom: -23px;
    }

    .number-stats-item h5 {
        font-size: 16px;
    }
}

@media(min-width: 1200px) {
    .number-stats-item h5 {
        font-size: 24px;
        max-width: 220px;
    }

    .number-stats-item h3 {
        font-size: 44px;
    }

    .number-stats-item {
        width: 33.333%;
        padding-left: 40px;
        padding-right: 40px;
        min-height: 99px;
    }

    .number-stats__wrapper {
        gap: 0;
        justify-content: space-between;
        max-width: unset;
    }

    .number-stats-item:after {
        height: 99px;
    }

    .number-stats__heading {
        margin: 0 0 53px;
    }

    .number-stats__right-bg-icon {
        right: unset;
        width: 171px;
        z-index: 2;
        bottom: -58px;
        left: 50%;
        transform: translate(-50%, 0);
        margin-left: 712px;
    }
}





.number-stats--inner .number-stats__wrapper {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
}

.number-stats--inner .number-stats-item {
    gap: 5px;
    flex-direction: column;
    text-align: center;
}

.number-stats--inner .number-stats-item h3 {
    font-size: 18px;
}

.number-stats.bg-blue .number-stats-item h5 {
    color: #fff;
}

.number-stats.bg-blue .number-stats-item h3 {
    color: #FFAA01;
}


@media(min-width: 768px) {
    .number-stats--inner .number-stats-item {
        gap: 10px;
        flex-direction: row;
        text-align: left;
        padding: 15px 34px;
    }

    .number-stats--inner .number-stats-item h3 {
        font-size: 24px;
    }

    .number-stats--inner .number-stats__wrapper {
        gap: 67px;
        justify-content: center;
    }

    .number-stats--inner .number-stats-item:after {
        right: -33px;
        height: 50px;
        background: #D0D0D0;
    }
}


@media(min-width: 1200px) {
    .number-stats--inner .number-stats-item h3 {
        font-size: 44px;
    }

    .number-stats--inner .number-stats__wrapper {
        gap: 32px;
    }

    .number-stats--inner .number-stats-item:after {
        right: -15px;
        height: 99px;
    }

    .number-stats--inner .number-stats-item {
        min-height: 99px;
    }
}