﻿.counter-section {
    position: relative;
    padding: 40px 0px 30px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

    .counter-section:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        background-image: linear-gradient(to right, rgba(215,99,33,0.6), rgba(0,140,200,0.6));
    }

    .counter-section .sec-title {
        margin-bottom: 50px;
    }
.fact-counter {
    position: relative;
}

    .fact-counter .column {
        position: relative;
        z-index: 5;
        margin-bottom: 30px;
    }

        .fact-counter .column .inner {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto;
            text-align: center;
            padding: 25px 20px;
            overflow: hidden;
            display: inline-block;
            border-radius: 75% 75% 75% 0px;
            background-color: #af8454; /*#363636*/
            transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            -webkit-transition: all 500ms ease;
            -ms-transition: all 500ms ease;
            -o-transition: all 500ms ease;
        }

        .fact-counter .column.actual .inner {
            background-color: forestgreen !important;
        }

        .fact-counter .column.normal .inner {
            background-color: royalblue !important;
        }

        .fact-counter .column .inner:before {
            position: absolute;
            content: '';
            left: 0px;
            top: 0px;
            width: 0px;
            height: 100%;
            transition: all 600ms ease;
            -moz-transition: all 600ms ease;
            -webkit-transition: all 600ms ease;
            -ms-transition: all 600ms ease;
            -o-transition: all 600ms ease;
            background-image: -ms-linear-gradient(left, #D1641A 0%, #C2292A 100%);
            background-image: -moz-linear-gradient(left, #D1641A 0%, #C2292A 100%);
            background-image: -o-linear-gradient(left, #D1641A 0%, #C2292A 100%);
            background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #D1641A), color-stop(100, #C2292A));
            background-image: -webkit-linear-gradient(left, #D1641A 0%, #C2292A 100%);
            background-image: linear-gradient(to right, #D1641A 0%, #C2292A 100%);
        }

        .fact-counter .column .inner:hover::before {
            width: 100%;
        }

    .fact-counter .count-outer {
        position: relative;
        font-weight: 700;
        color: #ffffff;
        font-size: 48px;
        line-height: 1em;
    }

        .fact-counter .count-outer .count-text {
            position: relative;
            font-weight: 700;
            color: #ffffff;
            font-size: 36px;
        }

    .fact-counter .column .counter-title {
        position: relative;
        font-size: 18px;
        font-weight: 500;
        color: #ffffff;
        margin-top: 18px;
        line-height: 1.3em;
        text-transform: capitalize;
        display: block;
    }

    .fact-counter .count-outer .text {
        position: relative;
        color: #ffffff;
        font-size: 14px;
        margin-top: 6px;
        font-weight: 400;
    }

@media only screen and (max-width: 1023px) {
    .counter-section .fact-counter .counter-column {
        text-align: center;
    }
}