
/* ============= responsive css here ============== */

/* Default styles for all screen sizes */




/* =========  Small devices (phones, up to 600px) ========= */
@media only screen and (max-width: 600px) {
   
}

/* ========== Medium devices (tablets, 601px to 900px) ======= */
@media only screen and (min-width: 601px) and (max-width: 900px) {
   
}

/* ========== Large devices (desktops, 901px to 1200px) ======== */
@media only screen and (min-width: 901px) and (max-width: 1200px) {

}

/* ========== Extra large devices (large desktops, 1201px and up) ==== */
@media only screen and (min-width: 1201px) {
    .counter-area {
            padding: 60px 50px;
            margin: 100px 163px;
            border-radius: 30px;
    }
}
