.counter_section{
    max-width: 1200px;
    margin: 0 auto 6rem !important;
    padding: 8rem 0 12rem;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    text-align: center;
    display: block;

}

.counter_section .counters{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.counter_section .counters .counter{
    position: relative;
    width: 17rem;
    height: 17rem;
    text-align: center;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    
}

.counter_section .counters .counter .border{
    border: 0 !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('./counter_border.png');
    background-size: cover !important;
    background-repeat: no-repeat !important;
}



.counter_section .counters .counter .number{
    font-size: 4rem;
    font-weight: 500;
}

.counter_section .counters .counter .text{
    max-width: 12rem;
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 500;
}

.counter_section .description{
    max-width: 900px;
    margin: 3rem auto;
}

.counter_section .sbtn{
    margin: 0 auto;
}


@media only screen and (max-width: 600px){
    .counter_section .counters{
        flex-wrap: wrap;
    }

    .counter_section .counters .counter{
        width: 43vw;
        height: 43vw;
    }
    .counter_section .counters .counter .number{
        font-size: 2rem;
    }
    .counter_section .counters .counter .text{
        font-size: .9rem;
        line-height: 1rem;
        padding: 0 20px;
    }
}

