.counter-section {
    position: relative;
    background-color: #f5f5f5;
    background-image: linear-gradient(90deg, #f5f5f5 75%, #e60202 75%);
    overflow: hidden;
}
.n_container {
    text-align: center;
    position: relative;
    margin: 40px 8px;
    background-color: #fff;
    box-shadow: 0 0 2px #275078a6;
    padding: 30px 25px;
    border-radius: 6px;
}
.n_container.one::before {
    content: "";
    position: absolute;
    height: 30px;
    width: 30px;
    border-radius: 6px 0 0 0;
    z-index: -1;
    background-color: #275078;
    left: -5px;
    top: -5px;
}
.n_digit {
    font-size: 42px;
    font-weight: 700;
    color: #e60202;
}
.n_text {
    font-size: 18px;
    font-weight: 600;
    color: #575757;
}
@media(max-width:991px){
    .counter-section{
        background-image: none;
    }
}