.dynamic-counter{
    max-width:1200px;
    margin:0 auto;
    padding:40px 20px;
}

.dynamic-counter .reflex-grid{
    display:flex;
    justify-content:space-between;
    gap:40px;
}

.dynamic-counter .reflex-col-sm-6{
    flex:1;
}

.dynamic-counter .content{
    text-align:center;
}


.dynamic-counter .number{
    display:flex;
    justify-content:center;
    align-items:baseline;
    gap:4px;
}


.dynamic-counter .number-counter{
    font-size:52px;
    font-weight:300;
    line-height:1;
    color:#f26a00;
}


.dynamic-counter .suffix{
    font-size:52px;
    font-weight:300;
    line-height:1;
    color:#f26a00;
}


.dynamic-counter .counter-header{
    margin-top:10px;

    font-size:18px;
    font-weight:400;

    color:#000;

    text-align:center;
    line-height:1.4;
}
.dynamic-counter .content .counter-header {
    color: var(--ad-primary-color);
    font-size: 18px;
    font-weight: 550;
    margin: 18px 0;
}

@media(max-width:768px){

    .dynamic-counter .reflex-grid{
        flex-direction:column;
    }

    .dynamic-counter .content{
        text-align:center;
    }

    .dynamic-counter .number{
        justify-content:center;
    }

    .dynamic-counter .number-counter,
    .dynamic-counter .suffix{
        font-size:42px;
    }
}