.stats-area {
    margin: 100px 0;
    padding: 60px 40px 40px;
    background: radial-gradient(120% 100% at 50% 0%, #1c3f78 0%, #0b1832 55%, #050b1a 100%);
    text-align: center;
}

.stats-area .section-title h2 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.stats-area .stats-main .number {
    color: #ffffff;
    font-family: Mulish;
    font-weight: 800;
    font-size: 92px;
    line-height: 1;
    margin-bottom: 10px;
}

.stats-area .stats-main .caption {
    color: #F9F9F9;
    font-family: var(--Font-family-Inter, Inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 10px;
}

.stats-area .stats-divider-curve {
    display: block;
    width: calc(100% + 80px);
    height: 40px;
    margin: 10px -40px 10px;
}

.stats-area .stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stats-area .stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.stats-area .stats-item i {
    color: #ffffff;
    font-size: 26px;
}

.stats-area .stats-item .number {
    color: #ffffff;
    font-family: Mulish;
    font-weight: 800;
    font-size: 24px;
}

.stats-area .stats-item .label {
    color: #F9F9F9;
    font-family: var(--Font-family-Inter, Inter);
    font-size: var(--Body-sm-font-size, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--Body-sm-line-height, 20px);
}

.stats-area .stats-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 767px) {
    .stats-area {
        margin: 60px 0;
        padding: 40px 20px 30px;
    }

    .stats-area .stats-main .number {
        font-size: 44px;
    }

    .stats-area .stats-divider-curve {
        width: calc(100% + 40px);
        margin: 10px -20px 10px;
    }

    .stats-area .stats-sep {
        display: none;
    }
}