﻿/* ==========================================================================
   Countdown Style Start
   ========================================================================== */



.heading-count h2 {
    font-size: 80px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.countdown {
    width: 100%;
    margin: 25px auto;
    display: inline-block;
}

    .countdown .time-count {
        padding: 0;
        position: relative;
        display: inline-block;
        text-align: center;
    }

        .countdown .time-count .time-entry {
            position: relative;
            display: inline-block;
            width: 130px;
            height: 115px;
            border-radius: 4px;
            font-size: 14px;
            text-align: center;
            background: rgba(255, 255, 255, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 5px 50px -10px #000;
            margin: 15px;
            padding: 20px;
            line-height: 22px;
        }

            .countdown .time-count .time-entry span {
                font-size: 45px;
                font-weight: 700;
                color: #fff;
                font-family: 'Montserrat', sans-serif;
                display: block;
                width: 100%;
                line-height: 45px;
                margin-bottom: 10px;
            }


@media (max-width: 768px) {
    .heading-count h2 {
        font-size: 40px;
        text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    }


    .countdown {
        width: 100%;
        margin:  12px auto;
        display: inline-block;
    }

        .countdown .time-count {
            padding: 0;
            position: relative;
            display: inline-block;
            text-align: center;
        }

            .countdown .time-count .time-entry {
                position: relative;
                display: inline-block;
                width: 65px;
                height: 60px;
                border-radius: 2px;
                font-size: 8px;
                text-align: center;
                background: rgba(255, 255, 255, 0.25);
                border: 1px solid rgba(255, 255, 255, 0.5);
                box-shadow: 0 3px 25px -5px #000;
                margin: 7px;
                padding: 20px;
                line-height: 11px;
            }

                .countdown .time-count .time-entry span {
                    font-size: 22px;
                    font-weight: 700;
                    color: #fff;
                    font-family: 'Montserrat', sans-serif;
                    display: block;
                    width: 100%;
                    line-height: 22px;
                    margin-bottom: 5px;
                }
}