.em2-counters{
    & .em2-counter{
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        & .icon{
            width: 172px;
            height: 172px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-style: solid;
            border-width: 4px;
            border-radius: 50%;
            padding: 9px;
            & .icon-inner{
                width: 146px;
                height: 146px;
                border-radius: 50%;
                border-width: 2px;
                border-style: solid;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            & i{
                font-size: 96px;
            }
        }
        & .number{
            font-weight: 300;
            font-size: 50px;
            line-height: 69px;
        }
        & .title{
            font-weight: 300;
            font-size: 20px;
            line-height: 26px;
            text-align: center;
        }
    }
}
@media (max-width: 768px){
    .em2-counters .em2-counter{
        margin-bottom: 30px;
        & .icon i{
            font-size: 60px;
        }
    }
}