.stats h2 {
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    margin: 0 auto 40px;
}

.stats[data-theme="dark"] h2 {
    color: #FFF !important;
}
.stats{
    background-color: #F8FAFE;
    padding: 60px 0;
}

.stats[data-theme="dark"] {
    background: #12182F;
}
.stats .flex {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    margin: auto;
    max-width: 1080px !important;
    border-radius: 30px;
    border: 1px solid #BDD9FF !important;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #D8EAFD !important;
    padding: 40px 60px;
    flex-wrap: wrap;
    align-content: center;
    gap: 24px;
}

.stats[data-theme="dark"] .flex {
    border: 1px solid #217EFF !important;
    background: linear-gradient(0deg, #0F183C 0%, #0F183C 100%), #D8EAFD !important;
}
.stats .box {
    position: relative;
}

.stats .box:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 70px;
    border-right: 1px solid #BDD9FF;
    right: -80px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.stats[data-theme="dark"] .box:before {
    border-right-color: #217EFF;
}
.stats .box:last-child:before{
    display:none;
}
.stats .box h4 {
    color: #123991;
    font-size: 40px;
    text-transform: none;
    text-align: center;
    margin: 0 !important;
    line-height: normal;
    font-weight: 600;
}

.stats[data-theme="dark"] .box h4 {
    color: #FFFFFF;
}
.stats .active [data-counter="26"] {
    --num: 26;
}

.stats [data-counter] {
    counter-reset: num var(--num);
    min-width: 52px;
    display: inline-block;
    transition: --num 3s;
}

 .stats [data-counter] i {
    display: none;
}
.stats h4 i {
    font-size: 12px;
    margin: 0 0 5px;
    font-weight: 300;
    line-height: 30px;
}
.stats i {
    color: #000 !important;
}
.stats .active [data-counter]::after {
    content: counter(num);
}

.stats .active [data-counter="26"] {
    --num: 26;
}

@property --num {
    syntax: '<integer>';
    initial-value: 0;
    inherits: false;
}

.stats .active [data-counter="31"] {
    --num: 31;
}

.stats .active [data-counter="20"] {
    --num: 20;
}

.stats .active [data-counter="190"] {
    --num: 190;
    min-width:72px;
}

.stats .box p {
    color: #000000;
    text-align: center;
    margin: 0;
    line-height:30px;
    font-size: 18px;
    font-weight:300;
    opacity: 0.9958;
}

.stats[data-theme="dark"] .box p {
    color: #FFFFFF;
}

.stats .box-cover {
    display: inline-flex;
    width: 730px;
    background-color: #18181C;
    border-radius: 8px;
    justify-content: center;
}
.stats .box-cover .box {
    background-color: #18181C;
}
.stats .mobile-view{
    display:none;
}

@media (width<750px){
    .stats .box:before{
        display:none;
    }
     .stats .box{
       width:100%;
}
}
