﻿   /*---------------------------counter----------------------------------*/
        .counter-area {
            background: url(/theme/html/assets/img/64.png);
    width: 100%;
    background-attachment: fixed;
    background-position: 50% 0;
    /*background-size: cover;*/
   
    padding: 40px 0;
}
        

        .counter {
            color: #ffffff;
            font-size: 25px;
            font-weight: 800;
            padding-top: 5px;
        }

        .hero-image {
            background-image: url("/theme/html/assets/img/site.png"); /* The image used */
            background-position: center; /* Center the image */
            background-repeat: no-repeat; /* Do not repeat the image */
            background-size: cover; /* Resize the background image to cover the entire container */
        }

        .counter_item {
            /*margin-top: 30px;*/
            background-color: #042b52;
            border: 3px solid #042b52;
            height: 107px;
            border-radius: 5px;
            /*-moz-border-radius: 75px;
            -webkit-border-radius: 75px;*/
            width: calc((100% - 60px) / 6);
            float: left;
            margin-right: 10px;
            text-align: center;
            box-shadow: 4px 4px #888888;
        }

       

        .counter_text {
            font-size: 15px;
            font-weight: 500;
            color: #ffffff;
            padding: 0;
            margin: 0;
        }



        /*---------------------------responsisve----------------------------------*/

        @media (max-width: 768px) {
            .counter-area {
                padding: 50px 0px;
            }

            .counter {
                font-size: 16px;
            }

            .counter_text {
                font-size: 10px;
            }
        }
