

/* Google Web Fonts */

@import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,300i,400,400i,600,600i,700,700i,900');

@import url('https://fonts.googleapis.com/css?family=PT+Serif:400,400i,700,700i');

@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900");



/* ================= General ==================== */

html,
body {
    height: 100%;
}

body {
    /*_font-family: 'PT Serif', serif;*/
    font-family: "Montserrat", sans-serif;
    color: #000;
    background: #fff;
    font-size: 14px;
    line-height: 22px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased !important;
}



/* Link style

------------------------------ */

a {
    cursor: pointer;
}

    a:focus {
        outline: 0 solid;
    }

    a:hover {
        text-decoration: none;
    }



/* Transition elements

------------------------------ */

a,
.navbar a,
.form-control {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}







/* ================ Typography ================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Titillium Web', sans-serif;
    color: #212121;
    margin: 0 0 15px;
}

h1 {
    font-size: 40px;
    line-height: 50px;
}

h2 {
    font-size: 34px;
    line-height: 44px;
}

h3 {
    font-size: 22px;
    line-height: 30px;
}

h4 {
    font-size: 20px;
    line-height: 18px;
}

h5 {
    font-size: 18px;
    line-height: 22px;
}

h6 {
    font-size: 16px;
    line-height: 20px;
}



.btn {
    color: #fff;
    padding: 14px 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: "Titillium Web",sans-serif;
    border-radius: 3px;
    box-shadow: 0 4px 5px rgba(34, 34, 34, 0.2);
}

    .btn:hover {
        box-shadow: 0 8px 10px rgba(34, 34, 34, 0.2);
    }

.btn-primary {
    background-color: #0a89bc;
}

    .btn-primary,
    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus,
    .btn-primary:active:focus,
    .btn-primary:active:hover {
        background-color: #0a89bc;
        border-color: #0a89bc;
    }





.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 400;
}





/* ================ Global setting ================== */

input:focus,
textarea:focus {
    outline: none;
}

.alert {
    padding: 12px 15px;
}

img {
    max-width: 100%;
    height: auto;
}

.form-group {
    margin-bottom: 30px;
}



.form-control {
    height: 50px;
    padding: 6px 20px;
    border: 1px solid #ebebeb;
    box-shadow: none;
}

    .form-control:focus {
        border-color: transparent;
        -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.075), 0 0 20px rgba(0,0,0,.3);
        box-shadow: 0 1px 1px rgba(0,0,0,.075), 0 0 20px rgba(0,0,0,.3);
    }



.contact-form .form-group textarea {
    min-height: 210px;
    padding: 15px 20px;
    position: relative;
    z-index: 20;
}



@media (max-width: 991px) {

    .contact-form {
        margin-bottom: 30px;
    }
}





/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/* helper classes */

.section-padding {
    padding: 30px 0px;
}



.darker-bg {
    background: #f4f7f7;
}



/* ================ Header section ================== */



/* header top bar 

------------------------*/

header {
    background: #f2f6f9;
    background: -moz-linear-gradient(top, #f2f6f9 0%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #f2f6f9 0%,#ffffff 100%);
    background: linear-gradient(to bottom, #f2f6f9 0%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f6f9', endColorstr='#ffffff',GradientType=0 );
}



.header-top-area {
    height: 32px;
    background: #333;
    background: url(../assets/img/footer-btm-bg.png) repeat;
    font-size: 14px;
    color: #FFFFFF;
    font-family: "Titillium Web",sans-serif;
}

.contact p {
    float: left;
    margin-right: 50px;
    line-height: 30px;
    margin-bottom: 0px;
   
}



@media (max-width: 768px) {

    .contact p {
        line-height: 35px;
    }
}



.contact p i {
    margin-right: 10px;
}

.contact a {
    color: #fff;
}

    .contact a:hover {
        color: #d1eced;
    }

.social-icon {
    margin-top: 6px;
}

    .social-icon ul {
        float: right;
        list-style: none;
        padding: 0px;
        margin: 0px;
    }



        .social-icon ul li {
            float: left;
        }

            .social-icon ul li a {
                color: #0a89bc;
                background: #fff;
                border-radius: 3px;
                font-size: 14px;
                width: 20px;
                height: 20px;
                text-align: center;
                margin-left: 12px;
                display: block;
                line-height: 20px;
                transition: all .3s;
            }

                .social-icon ul li a:hover,
                .social-icon ul li.active a {
                    color: #4cb748;
                    border-radius: 3px;
                }



                .social-icon ul li a i {
                    -moz-transition: all 0.6s;
                    -webkit-transition: all 0.6s;
                    transition: all 0.6s;
                }

                .social-icon ul li a:hover i {
                    -webkit-transform: rotate(360deg);
                    -moz-transform: rotate(360deg);
                    transform: rotate(360deg);
                }





@media (max-width: 768px) {

    .social-icon ul {
        float: none;
        text-align: center;
    }

        .social-icon ul li {
            float: none;
            display: inline-block;
        }

            .social-icon ul li a {
                text-align: center;
            }

    .header-top-area {
        height: 35px;
    }

    .social-icon {
        margin-top: 3px;
    }
}





/* ================ Navigation ================== */



nav.navbar.bootsnav ul.nav > li > a {
    color: #000000;
}



    nav.navbar.bootsnav ul.nav > li > a:hover,
    nav.navbar.bootsnav ul.nav > li.active > a,
    nav.navbar.bootsnav ul.nav > li > .dropdown-menu li > a:hover,
    nav.navbar.bootsnav ul.nav > li > .dropdown-menu li.active > a,
    nav.navbar.bootsnav ul.nav > li > .dropdown-menu.megamenu-content li > a:hover,
    nav.navbar.bootsnav ul.nav > li > .dropdown-menu.megamenu-content .menu-col li.active > a {
        color: #82031e;
    }

.dropdown-menu.cart-list h2 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
}

    .dropdown-menu.cart-list h2 a {
        color: #3f4b5a;
    }

        .dropdown-menu.cart-list h2 a:hover {
            color: #0a89bc;
        }



@media (min-width: 993px) {

    nav.navbar.bootsnav ul.nav > li > a {
        padding: 15px 6px;
        font-weight: 600;
        font-size: 14px;
        text-transform: none;
        color: #000;
        opacity: 1;
    }

    nav.navbar.bootsnav ul.nav > li:first-child a {
        padding-left: 0px;
    }

    nav.navbar.bootsnav ul.nav > li:last-child a {
        padding-right: 0px;
    }
}





@media (min-width: 768px) {

    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-top: 15px;
    }
}



.attr-nav > ul > li > a span.badge {
    background-color: #0a89bc;
}



ul.cart-list > li.total > a.btn {
    color: #fff !important;
}

    ul.cart-list > li.total > a.btn:hover {
        background-color: #0a89bc !important;
    }







/* ================ Slider area ================== */



.slider-bg1 {
    background: url("../assets/img/slider-bg/1.jpg") no-repeat;
}

.slider-bg2 {
    background: url("../assets/img/slider-bg/2.jpg") no-repeat;
}

.slider-bg3 {
    background: url("../assets/img/slider-bg/3.jpg") no-repeat;
}

.homepage-slider {
    width: 100%;
    height: 700px;
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

    .homepage-slider:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        /*background: rgba(46, 46, 46, .4);*/
        z-index: -1;
    }

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.slider-content h1 {
    color: #fff;
    font-size: 67px;
    font-weight: 700;
    line-height: 77px;
    margin-bottom: 55px;
}

.slider-content p {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 75px;
}

.slider-content a {
    border-radius: 5px;
    background: #0a89bc;
    padding: 15px 25px;
    border: none;
    color: #fff;
    font-family: "Titillium Web",sans-serif;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: inline-block;
}

    .slider-content a:hover {
        background: #0f32fd;
    }

    .slider-content a i {
        padding-left: 8px;
    }

@media (max-width: 1366px) {

    .homepage-slider {
        height: 450px;
    }
}



@media (max-width: 768px) {

    .homepage-slider {
        height: 400px;
    }

    .slider-content h1 {
        font-size: 30px;
        line-height: 33px;
        margin-bottom: 20px;
    }

    .slider-content p {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 24px;
    }

    .slider-content a {
        padding: 8px 15px;
    }
}



/* owl-carousel 

-----------------------------*/



.owl-nav div {
    display: inline-block;
    margin-top: -25px;
    position: absolute;
    top: 50%;
    transition: all .3s;
}

.owl-nav i {
    background: #4cb748 none repeat scroll 0 0;
    color: #fff;
    font-size: 40px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 50px;
    transition: all .3s;
    opacity: 1;
    border-radius: 3px;
}

    .owl-nav i:hover {
        opacity: .9;
    }

.owl-nav .owl-prev {
    left: -15px;
    opacity: 0;
}

.owl-nav .owl-next {
    right: -15px;
    opacity: 0;
}



.slider-area.owl-carousel {
    overflow: hidden;
}

    .slider-area.owl-carousel:hover .owl-nav .owl-prev {
        left: 15px;
        opacity: 1;
    }

    .slider-area.owl-carousel:hover .owl-nav .owl-next {
        right: 15px;
        opacity: 1;
    }



/* ================ Block area ================== */

.block-text, p {
    text-align: justify;
    color: #000;
    opacity: 1;
    font-weight: 500;
}

.block.block2 {
    padding: 40px 0px 0px;
    background: #F4F7F7;
}

.block2 .block-text {
    margin-top: 128px;
}



.block-text h2 {
    margin-bottom: 30px;
}

/*.block-text p{

	margin-bottom: 60px;

}*/

.block.about-us-block .block-img {
    margin-top: 0px;
}

/*.block.about-us-block h2 {

	margin-top: 30px;

}*/

.block-img {
    margin-top: 50px;
}

.block-text a:hover, .dir-desk a:hover, .intro-details h3 a:hover {
    color: #0a88bb;
}



@media (max-width: 768px) {

    .block2 .block-text {
        margin-top: 40px;
    }
}

@media (min-width: 768px) {

    .block2 .block-text {
        margin-top: 50px;
    }
}

@media (min-width: 992px) {

    .block2 .block-text {
        margin-top: 38px;
    }

    .block-text h2 {
        font-size: 28px;
    }
}

@media (min-width: 1200px) {

    .block2 .block-text {
        margin-top: 128px;
    }

    .block-text h2 {
        font-size: 32px;
    }
}



/* ================ Intro section ================== */



.intro-bg1 {
    background: url("assets/img/intro/1.jpg") no-repeat;
}

.intro-bg2 {
    background: url("assets/img/intro/2.jpg") no-repeat;
}

.intro-bg3 {
    background: url("assets/img/intro/3.jpg") no-repeat;
}



.intro-title p {
    margin-bottom: 50px;
}

.single-intro {
    overflow: hidden;
}

.intro-img {
    width: 100%;
    height: 222px;
    background-size: cover;
    background-position: center;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
}

    .intro-img figure {
        max-height: 222px;
        overflow: hidden;
    }

    .intro-img:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: rgba(76, 183, 72, 0.8);
        -webkit-transition: .3s;
        transition: .3s;
        opacity: 0;
    }

.single-intro:hover .intro-img:after {
    opacity: 1;
}

.single-intro:hover .intro-details {
    border-bottom: 4px solid #4cb748;
}

.intro-details {
    background: #fff none repeat scroll 0 0;
    border-radius: 4px;
    box-shadow: 0 2px 29px 0 rgba(15, 46, 64, 0.12);
    max-height: 210px;
    margin: -70px auto 15px;
    padding: 15px 25px;
    position: relative;
    width: 88%;
    overflow: hidden;
    border-bottom: 4px solid #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    min-height: 140px;
}

    .intro-details h3 {
        margin-top: 0;
        font-weight: 600;
    }



        .intro-details h3 a {
            color: #4cb748;
        }











/* ================ Services area ================== */



.template-title p {
    margin-bottom: 55px;
}

.services-tiem {
    margin-bottom: 50px;
    overflow: hidden;
}

    .services-tiem img {
        float: left;
        margin-right: 25px;
        padding-left: 5px;
    }

    .services-tiem h3, .services-tiem p {
        margin-left: 92px;
        margin-top: 0px;
        transition: all .3s;
    }

        .services-tiem h3:hover {
            color: #000;
        }

    .services-tiem a {
        color: #212121;
        transition: all .3s;
    }

        .services-tiem a:hover {
            color: #0a89bc;
        }



/* ================= Client logo area ======================*/

.client-logo {
    padding: 30px 0px;
    border-top: 1px solid #ddd;
}

    .client-logo a {
        background: #fff;
    }

    .client-logo img {
        height: auto;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        width: 16%;
    }

        .client-logo img:hover {
            -webkit-filter: grayscale(100%);
            filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /></filter></svg>#filter');
            filter: grayscale(100%);
        }



/* services animation effect 

----------------------------------*/



@-webkit-keyframes hvr-buzz-out {

    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

@keyframes hvr-buzz-out {

    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

.services-tiem img {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

.services-tiem:hover img {
    -webkit-animation-name: hvr-buzz-out;
    animation-name: hvr-buzz-out;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}





/* ================ Breadcrumb style ================== */



.page-title {
    
    background-image: url('../assets/img/breadcrumb.jpg');
    background-size: cover;
    background-position: center;
    padding: 95px 0px;
    color: #fff;
    z-index: 1;
    position: relative;
}

/*.page-title:after{

	position: absolute;

	content: "";

	top: 0px;

	left: 0px;

	right: 0px;

	height: 100%;

	background: rgba(0, 0, 0, .5);

	z-index: -1;

}*/

.page-breadcrumbd h2, .page-breadcrumbd a {
    margin: 0px;
    color: #fff;
}

.page-breadcrumbd h2 {
    display: inline-block;
    position: relative;
    background: rgba(0, 0, 0, .5);
    padding: 10px 15px;
    border-radius: 2px;
    font-weight: 600;
}

/* ================ Accordian section ================== */

.panel-default > .panel-heading {
    background-color: #F4F7F7;
    border: none;
}

.panel-default {
    border: none;
    background: #F4F7F7;
}

.panel-heading {
    border-bottom: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding: 0px;
}

.panel-title > a {
    background: #F4F7F7;
    display: block;
    padding: 10px 15px;
    color: #212121;
    font-size: 18px;
    position: relative;
}

    .panel-title > a[aria-expanded=true] {
        background: #0a89bc;
        color: #fff;
    }

        .panel-title > a[aria-expanded=true]:after {
            content: "-";
            background: #fff;
            color: #0a89bc;
        }

    .panel-title > a:focus {
        text-decoration: none;
    }

    .panel-title > a:after {
        background: #0a89bc none repeat scroll 0 0;
        border-radius: 2px;
        color: #fff;
        content: "+";
        height: 20px;
        line-height: 16px;
        position: absolute;
        right: 15px;
        text-align: center;
        top: 9px;
        width: 20px;
        font-weight: bold;
    }

.panel-group .panel + .panel {
    margin-top: 6px;
}

.accordian-right-content h2 {
    margin-bottom: 13px;
}



/* ================ Portfolio section ================== */

.portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    -webkit-box-shadow:  0px 0px 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 2px 4px rgba(0, 0, 0, 0.1);
}

    /*.portfolio-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(77, 103, 254, .9);
    }*/

/*.portfolio-details {
    position: absolute;
    left: 0;
    bottom: -30%;
    width: 100%;
    padding: 20px;
}*/

/*.portfolio-item:hover .portfolio-details {
    bottom: 0;
}*/



/*.portfolio-details,
.portfolio-item::before {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}*/
h3 {
    font-size: 22px;
    line-height: 30px;
}


.portfolio-item:hover::before,
.portfolio-item:hover .portfolio-details {
    opacity: 1;
    visibility: visible;
}

.portfolio-details h3 {
    padding: 2px 10px 10px 10px;
    margin: 0;
}


.portfolio-details span {
    display: block;
}

.portfolio-details h3 a, 
.portfolio-details a {
    color: #fff;
}
.portfolio-details h3{padding: 2px 10px 10px 10px;}/*added*/
.portfolio-details h3 a,

.portfolio-details a {

	color: #0a88bb;

}
/* kshetra*/
.portfolio-item figure{ margin: 10px;  overflow: hidden;}

.portfolio-item figure img{
	transition: all 1.5s ease-in-out;
    -webkit-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
}

.portfolio-item:hover img{
	-moz-transform: scale(2.1);
    -webkit-transform: scale(2.1);
    -o-transform: scale(2.1);
    -ms-transform: scale(2.1);
    transform: scale(2.1);
}



/* portfolio-single-page 

------------------------------------*/

.single-portfolio-wrapper,
.single-portfolio-wrapper a {
    font-family: "Titillium Web",sans-serif;
}



.single-portfolio-title a {
    color: #0a89bc;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
}

.single-portfolio-title h2 {
    font-size: 26px;
    margin-bottom: 20px;
    margin-top: 5px;
    font-weight: 600;
}

.portfolio-details-panel p {
    line-height: 27px;
    margin-bottom: 25px;
}

.portfolio-details-panel ul span {
    display: inline-block;
    width: 140px;
}

.portfolio-details-panel ul {
    color: #aaa;
    list-style: none;
    padding: 0px;
    margin-bottom: 30px;
}

    .portfolio-details-panel ul span {
        color: #000;
        text-transform: uppercase;
    }

    .portfolio-details-panel ul li {
        padding-bottom: 15px;
    }

    .portfolio-details-panel ul a {
        color: #aaa;
        margin-right: 6px;
    }

        .portfolio-details-panel ul a:hover {
            color: #0a89bc;
        }

.portfolio-details-panel img {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin: 10px auto;
}

.portfolio-details-panel .btn {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.single-portfolio-images img {
    margin-bottom: 30px;
}



.divider {
    background: #EEEEEE;
    display: block;
    width: 100%;
    height: 1px;
    margin: 10px 0px;
}

.company-address {
    margin: 0 15px;
}

    .company-address ul {
        margin: 0px;
        padding: 0px;
        list-style: none;
    }

        .company-address ul li {
            padding-left: 50px;
            position: relative;
            margin-bottom: 40px;
        }

            .company-address ul li i {
                left: 0;
                position: absolute;
                top: 4px;
                color: #4860F0;
                font-size: 22px;
            }

            .company-address ul li a {
                color: #61727f;
            }



/* ================ testimonial section ================== */



.testimonial {
    padding: 120px 0px;
    background: #F4F7F7;
    color: #212121;
}

    .testimonial h3 {
        font-size: 30px;
        margin-bottom: 30px;
        line-height: 45px;
    }

    .testimonial a {
        color: #212121;
        font-size: 25px;
        color: #212121;
        font-weight: bold;
    }

a:focus {
    text-decoration: none;
}

.testimonial span {
    font-size: 15px;
}



/* preloader  

-------------------------------*/



#loading {
    background-color: #4cb748;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 200px;
    width: 200px;
    margin-top: -100px;
    margin-left: -100px;
}

.object {
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    position: absolute;
    border-left: 5px solid #FFF;
    border-right: 5px solid #FFF;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    -webkit-animation: animate 2s infinite;
    animation: animate 2s infinite;
}

#object_one {
    left: 75px;
    top: 75px;
    width: 50px;
    height: 50px;
}

#object_two {
    left: 65px;
    top: 65px;
    width: 70px;
    height: 70px;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

#object_three {
    left: 55px;
    top: 55px;
    width: 90px;
    height: 90px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#object_four {
    left: 45px;
    top: 45px;
    width: 110px;
    height: 110px;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}



@-webkit-keyframes animate {

    50% {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}



@keyframes animate {

    50% {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}



/* ================ Blog Section ================== */



.blog-item {
    margin-bottom: 30px;
    box-shadow: 0 49px 72px 0 rgba(25, 25, 25, 0.12);
}

    .blog-item a {
        font-family: "Titillium Web",sans-serif;
    }

    .blog-item .blog-thumb {
        overflow: hidden;
    }

        .blog-item .blog-thumb img {
            transition: all .3s;
            width: 100%;
            height: auto;
        }

.blog-content {
    padding: 0px 10px 20px 30px;
}

.blog-header .tag {
    margin-top: 20px;
    overflow: hidden;
}

.entry-title {
    color: #212121;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 25px;
}

    .entry-title a {
        color: #212121;
        transition: all .3s;
    }

        .entry-title a:hover {
            color: #0a89bc;
        }

.blog-header ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

    .blog-header ul li {
        float: left;
        position: relative;
        padding-right: 2px;
        margin-right: 3px;
    }

        .blog-header ul li:last-child:before {
            content: "";
        }

        .blog-header ul li:before {
            bottom: 4px;
            content: ",";
            position: absolute;
            right: 0;
            font-size: 14px;
        }

        .blog-header ul li a {
            display: block;
            margin-right: 5px;
            margin-bottom: 3px;
            color: #61727f;
            transition: all .3s;
        }

            .blog-header ul li a:hover {
                color: #000;
            }

.entry-content a {
    color: #000;
    font-weight: 700;
    transition: all .3s;
}

    .entry-content a:hover {
        color: #0a89bc;
    }



/* single blog 

---------------------------------------*/



.post-wrapper {
    box-shadow: 0 49px 72px 0 rgba(25, 25, 25, 0.12);
    padding-bottom: 30px;
}

    .post-wrapper .blog-content {
        padding: 15px 20px 15px 40px;
    }

.single-post-title h2 {
    font-size: 29px;
    font-weight: bold;
    padding-top: 20px;
    margin-bottom: 10px;
}

    .single-post-title h2 a {
        color: #212121;
    }

.post-meta ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.post-meta li {
    float: left;
}

.post-meta {
    overflow: hidden;
    margin-bottom: 30px;
}

    .post-meta > ul > li > a {
        color: #888;
        margin-right: 19px;
        transition: all .3s;
        font-size: 13px;
    }

        .post-meta > ul > li > a:hover {
            color: #000;
        }

    .post-meta li a i {
        margin-right: 7px;
    }

    .post-meta li.rating ul {
        display: inline;
        float: right;
    }

    .post-meta a {
        font-family: "Titillium Web",sans-serif;
    }

li.rating > a {
    margin-right: 8px !important;
}

li.rating > ul a {
    font-size: 13px;
    margin: 0;
}

li.rating ul i {
    margin: 1px;
    color: #FE6000;
}

.entry-content p {
    margin-bottom: 30px;
}

.full-width-img {
    margin-bottom: 30px;
    margin-left: -40px;
    margin-right: -20px;
}



/* single page social icon 

-------------------------------*/

.social-link {
    overflow: hidden;
}

    .social-link ul {
        margin: 0px;
        padding: 0px;
        list-style: none;
    }

        .social-link ul li {
            float: left;
        }

            .social-link ul li a {
                color: #fff;
                display: block;
                font-size: 15px;
                text-align: center;
                width: 45px;
                background: #ddd;
                white-space: nowrap;
                margin-right: 6px;
                padding: 7px 0px;
                width: 45px;
                overflow: hidden;
                font-size: 15px;
                transition: all 400ms ease 0s;
                border-radius: 3px;
                position: relative;
                margin-bottom: 10px;
            }

                .social-link ul li a.facebook {
                    background: #286196;
                }

                .social-link ul li a.twitter {
                    background: #1AA2F6;
                }

                .social-link ul li a.google {
                    background: #E7462A;
                }

                .social-link ul li a.linkedin {
                    background: #0078B4;
                }

                .social-link ul li a.pinterest {
                    background: #BD081B;
                }

                .social-link ul li a.reddit {
                    background: #FF4400;
                }

                .social-link ul li a.message {
                    background: #9FA3A4;
                }

                .social-link ul li a:hover {
                    width: 90px;
                }

            .social-link ul li i {
                width: 45px;
            }

            .social-link ul li span {
                width: 45px;
                text-align: center;
                padding-right: 15px;
            }



/* comments form 

------------------------------*/

.comments-wrapper {
    padding: 15px 40px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}



.comment-title h2 {
    margin-bottom: 40px;
}



/* comments media 

--------------------------*/



.comments-responsed-wrapper {
    border-top: 1px solid #ddd;
    margin-top: 50px;
    padding: 20px 40px;
}

.comments-media ol {
    border: 1px solid #eaeaea;
    list-style: outside none none;
    padding: 15px;
    margin-bottom: 15px;
}

    .comments-media ol ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

.comments-media img {
    border-radius: 50%;
    height: 80px;
    width: 80px;
}

.comment-avatar {
    float: left;
    margin-right: 15px;
    padding-top: 15px;
}

.comment-section {
    margin-left: 95px;
    overflow: hidden;
}

    .comment-section h2 {
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .comment-section span {
        color: #aaa;
        font-size: 13px;
        margin-left: 20px;
    }

.comment-content a.btn-comment-replay {
    border: 1px solid #aaa;
    border-radius: 3px;
    color: #aaa;
    padding: 0px 10px;
    margin-top: 10px;
    font-size: 12px;
    display: inline-block;
    text-transform: uppercase;
    line-height: 1.42857143;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

    .comment-content a.btn-comment-replay:hover {
        background: #011a48 none repeat scroll 0 0;
        border-color: #011a48;
        color: #fff;
    }

.comments-media li .comment-inner {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 22px;
    overflow: hidden;
}

.comments-media ol ul {
    margin-left: 60px;
}

.comments-media ul li:last-child .comment-inner {
    border-bottom: none;
    padding-bottom: 0px;
}

@media (max-width: 768px) {

    .comments-media ol ul {
        margin-left: 0px;
    }
}

@media (min-width: 992px) {

    .comments-media ol ul {
        margin-left: 60px;
    }
}

@media (max-width: 480px) {

    .comment-avatar {
        float: none;
        margin-right: 0;
    }

    .comment-section {
        margin-left: 0;
    }
}







/* ================ footer section ================== */



.primary-footer ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.primary-footer {
    background: #0a88bb;
    padding: 30px 0px 0px;
    background: url(../assets/img/bg-noise.png)  repeat;
}

.footer-widget {
    margin-bottom: 30px;
}

    .footer-widget span {
        font-size: 13px;
        color: #fff;
    }

    .footer-widget p, .footer-widget a {
        color: #fff;
    }

    .footer-widget h3 {
        color: #fff;
        margin-top: 0px;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        padding-bottom: 10px;
    }

.about-us p {
    margin-bottom: 10px;
}

.about-us a {
    display: inline-block;
    position: relative;
}

.about-us img {
    margin-bottom: 15px;
    max-height: 150px;
    max-width: 100%;
    /*opacity: 0.5;

    -webkit-filter: grayscale(100%);

    filter: grayscale(100%);*/
}

.about-us a:first-child img {
    margin-right: 5px;
}

.online-card img {
    margin-right: 5px;
}

.about-us ul li {
    margin-top: 10px;
    margin-bottom: 25px;
    color: #fff;
}

    .about-us ul li:last-child {
        margin-bottom: 0px;
    }

    .about-us ul li i {
        font-size: 16px;
        min-width: 30px;
        color: #fff;
    }

    .about-us ul li i, .about-us ul li span {
        display: inline-block;
        position: relative;
        vertical-align: -webkit-baseline-middle;
    }

    .about-us ul li span {
        width: 80%;
        font-size: 15px;
    }



.about-us a:hover img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}



/*Useful Link Widget*/

.usefull-link ul li a {
    display: block;
    padding: 4px 0;
    -webkit-transition: .3s;
    transition: .3s;
}

    .usefull-link ul li a:hover {
        padding-left: 15px;
        color: #39ff33;
    }

    .usefull-link ul li a i {
        color: #fff;
        margin-right: 10px;
    }

.usefull-link ul li:first-child {
    padding-top: 0;
}



/*Latest Post Widget*/

.latest-post ul li {
    margin-bottom: 10px;
    display: block;
    overflow: hidden;
}

    .latest-post ul li img {
        float: left;
        margin: 5px 7px 10px 7px;
        border-radius: 3px;
        max-width: 105px;
    }

    .latest-post ul li p a {
        font-size: 15px;
        margin-bottom: 0;
        font-family: 'Titillium Web', sans-serif;
        transition: all .3s;
    }

        .latest-post ul li p a:hover {
            color: #39ff33;
        }

    .latest-post ul li p {
        margin-bottom: 2px;
    }



/*NewsLetter Subscription*/

.news-letter p {
    margin-bottom: 23px;
}



.subscribe-form {
    position: relative;
}

    .subscribe-form button {
        display: block;
        height: 50px;
        width: 50px;
        position: absolute;
        right: 0;
        top: 0;
        border: 0;
        color: #0a89bc;
        font-size: 20px;
        background: transparent;
    }

.subscription-success {
    margin-top: 20px;
    margin-bottom: 0;
    color: #3c763d !important;
}



/* footer bottom 

--------------------------------*/

.copyright-wrapper {
    background: #00021C;
    padding: 10px 0px;
    background: url(../assets/img/footer-btm-bg.png) repeat;
    font-size: 14px;
}

    .copyright-wrapper p {
        color: #a0a2b1;
        margin-bottom: 0px;
    }

    .copyright-wrapper a {
        color: #fff;
    }

.dir-desk figure {
    max-height: 200px;
    overflow: hidden;
    margin-bottom: 10px;
}

.copyright-wrapper a:hover {
    color: #39ff33;
}

.block-text a, .dir-desk a, .intro-title h2 span {
    color: #4cb748;
}

.center-logo h2, .center-logo h4, .dir-desk, .dir-desk h3, .block-text h2, .intro-title h2 {
    font-weight: 700;
}

    .dir-desk a {
        font-weight: normal;
        margin-top: 10px;
        display: block;
    }

.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-top: 0px;
}

.navbar-brand > img {
    max-height: 60px;
}

.navbar-brand {
    padding: 5px 15px;
}

.wrap-sticky {
    height: auto !important;
}

.logo-row {
    padding: 5px 0px;
}

    .logo-row .col-lg-1 {
        padding-right: 0px;
    }

    .logo-row img {
        max-height: 80px;
        max-width: 100%;
        margin: 1px 0px;
    }

.center-logo h2, .center-logo h4, .dir-desk h4, .dir-desk h5 {
    margin-bottom: 0px;
}

.center-logo h2 {
    color: #0a88bb;
    font-size: 24px;
    line-height: 30px;
}

.block-text h2 span, .dir-desk h3 span {
    color: #4cb748;
}

.dir-desk {
    background: #fff;
    padding: 20px;
    width: 100%;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,.15);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.15);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.15);
    margin-bottom: 30px;
    /*text-align:center;*/
}

.center-logo h4 {
    font-size: 18px;
    line-height: 18px;
    font-weight: normal;
    margin-top: 2px;
}

.center-logo h3 {
    font-weight: 600;
    margin-bottom: 0px;
}

.dir-desk h3 {
    font-size: 24px;
}

.dir-desk h5 {
    font-size: 16px;
    margin-top: 5px;
}

.dir-desk img {
    max-width: 100%;
    max-height: 260px;
}

.ad {
    margin-top: 15px;
}

    .ad figure {
        text-align: center;
        overflow: hidden;
    }

        .ad figure img {
            max-width: 100%;
            max-height: 132px;
            -moz-transition: all 0.6s;
            -webkit-transition: all 0.6s;
            transition: all 0.6s;
        }

.ads figure {
    overflow: hidden;
    margin-top: 10px;
    max-height: 162px;
}

.all-client-logo .owl-item a img {
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.ads figure img {
    max-width: 100%;
    max-height: 382px;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.latest-post ul li figure img {
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.ads-row {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.all-client-logo .owl-item a {
    border: 1px solid #ccc;
    display: inline-block;
    position: relative;
    padding: 10px;
}

    .all-client-logo .owl-item a:hover {
        border-color: #4cb748;
    }

.link-block-sec .link-block figure img {
    -moz-transition: all 0.9s;
    -webkit-transition: all 0.9s;
    transition: all 0.9s;
}

.link-block-sec .link-block .media:hover figure img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.link-block-sec .link-block a:hover {
    color: #fff;
    background: #4cb748;
}

.event-carousel .owl-nav .owl-next, .event-carousel .owl-nav .owl-prev,
.all-client-logo .owl-nav .owl-next, .all-client-logo .owl-nav .owl-prev,
.all-area .owl-nav .owl-next, .all-area .owl-nav .owl-prev {
    background: #fff;
    border-radius: 0;
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-size: 0px;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    border: 2px solid #ccc;
    transition: all 0.5s ease-in;
    -moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    opacity: 1;
}

.event-carousel .owl-nav .owl-next, .event-carousel .owl-nav .owl-prev {
    border: 2px solid transparent;
    background: #4cb748;
}

.event-carousel .owl-prev:before {
    content: "\f060";
    font-size: 12px;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 28px;
    font-family: FontAwesome;
}

.event-carousel .owl-next:before {
    content: "\f061";
    font-size: 12px;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 28px;
    font-family: FontAwesome;
}

.all-client-logo .owl-nav .owl-prev:before, .all-area .owl-nav .owl-prev:before {
    content: "\f060";
    font-size: 12px;
    color: #999;
    display: block;
    text-align: center;
    line-height: 28px;
    font-family: FontAwesome;
}

.all-client-logo .owl-nav .owl-next:before, .all-area .owl-nav .owl-next:before {
    content: "\f061";
    font-size: 12px;
    color: #999;
    display: block;
    text-align: center;
    line-height: 28px;
    font-family: FontAwesome;
}

.event-carousel .owl-nav [class*=owl-]:hover, .event-carousel .owl-nav [class*=owl-]:hover, .all-client-logo .owl-nav [class*=owl-]:hover, .all-client-logo .owl-nav [class*=owl-]:hover,
.all-area .owl-nav [class*=owl-]:hover {
    border: 2px solid transparent;
    background: #04a9f3;
    color: #fff;
}

.area-sec {
    position: absolute;
    ;
    width: 100%;
    z-index: 999;
    margin-top: -21px;
}

.area-box {
    background: #4cb748;
    padding: 30px 15px;
}

    .area-box .all-area a {
        color: #fff;
        border-right: 1px solid #e4e2a3;
        display: block;
        text-transform: uppercase;
        text-align: center;
    }

.all-area .owl-nav .owl-next {
    margin-right: 0px;
    border: none;
}

.all-area .owl-nav .owl-prev {
    margin-left: 0px;
    border: none;
}

.mt-60 {
    margin-top: 60px;
}

.all-client-logo .owl-nav {
    margin-top: -70px;
    position: absolute;
    width: 100%;
}

.all-area .owl-nav {
    margin-top: -25px;
    position: absolute;
    width: 100%;
}

.all-client-logo .owl-prev, .all-client-logo .owl-next, .all-area .owl-prev, .all-area .owl-next {
    display: block !important;
}

    .event-carousel .owl-prev:hover:before, .event-carousel .owl-next:hover:before, .all-client-logo .owl-prev:hover:before, .all-client-logo .owl-next:hover:before,
    .all-area .owl-nav .owl-prev:hover:before, .all-area .owl-nav .owl-next:hover:before {
        color: #fff;
    }

.single-listing ul li a {
    display: block;
    width: 100%;
}

    .single-listing ul li a figure, .single-listing ul li a span {
        display: inline-block;
        position: relative;
        vertical-align: middle;
    }

    .single-listing ul li a figure {
        width: 65px;
        overflow: hidden;
    }

    .single-listing ul li a span {
        width: 82%;
    }

    .single-listing ul li a figure img {
        width: 53px;
        height: 53px;
        border-radius: 100%;
    }

.footer-widget a:hover {
    color: #39ff33;
}

.link-block-sec .link-block {
    position: relative;
    z-index: 50;
}

    .link-block-sec .link-block a, .btn_sec a {
        background: -webkit-linear-gradient(to right, #61ba6d, #83c331);
        background: linear-gradient(to right, #61ba6d, #83c331);
        color: #fff;
        padding: 7px 15px;
        display: inline-block;
        text-transform: uppercase;
        font-size: 16px;
        font-family: 'Titillium Web', sans-serif;
    }

    .link-block-sec .link-block .media-right {
        font-size: 14px;
        line-height: 18px;
        vertical-align: middle;
    }

        .link-block-sec .link-block .media-right h3 {
            font-weight: 600;
        }

    .link-block-sec .link-block .media-left figure {
        height: 120px;
        width: 120px;
        padding: 30px;
        border-radius: 100px;
        background: #4cb748;
    }

    .link-block-sec .link-block .media-left img {
        max-width: 100%;
        max-height: 70px;
    }

.news-header {
    margin-bottom: 15px;
    position: relative;
    display: block;
}

    .news-header .main-title {
        margin: 0;
        line-height: 1;
        text-transform: uppercase;
        color: #eee;
        position: relative;
        text-align: center;
        width: 85%;
        float: left;
    }

        .news-header .main-title:after {
            position: absolute;
            z-index: 0;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #eaeceb;
            content: " ";
        }

        .news-header .main-title h4 {
            z-index: 10;
            margin: 0;
            font-size: 18px;
            position: relative;
            display: inline-block;
            padding: 0 15px;
            color: #212121;
            font-weight: 600;
            background-color: #fff;
        }

            .news-header .main-title h4 span {
                color: #4cb748;
            }

    .news-header .view-all {
        font-size: 80%;
        text-transform: uppercase;
        float: right;
        font-weight: 500;
    }

        .news-header .view-all a {
            text-decoration: none;
            padding: 5px 6px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

            .news-header .view-all a:hover {
                color: #0a88bb;
                border-color: #0a88bb;
            }

.single-listing ul {
    background-color: #fff;
    padding-left: 0px;
    border-bottom: 5px solid #eee;
    box-shadow: 0 2px 29px 0 rgba(15, 46, 64, 0.12);
}

    .single-listing ul li {
        list-style-type: none;
        padding: 0 15px;
    }

        .single-listing ul li a {
            padding: 5px 0px;
            display: block;
            color: #444;
            border-bottom: 1px solid #ddd;
            font-size: 14px;
            font-weight: 500;
        }

            .single-listing ul li a i {
                display: inline-block;
                position: relative;
                padding-right: 10px;
            }

        .single-listing ul li:last-child a {
            border-bottom: 0px;
        }

        .single-listing ul li a:hover {
            color: #0a88bb;
        }

.pgrm_vdo_sec {
    display: block;
    background: #edebec;
    border: 1px solid #ccc;
}

    .pgrm_vdo_sec .nav-pills {
        background: #ccc;
    }

        .pgrm_vdo_sec .nav-pills > li > a {
            font-weight: 600;
            font-family: 'Titillium Web', sans-serif;
            font-size: 24px;
            border-radius: 0px;
            border-bottom: 1px solid #ccc;
            background: #e6e7e9;
            color: #000;
        }

        .pgrm_vdo_sec .nav-pills > li.active > a, .pgrm_vdo_sec .nav-pills > li.active > a:focus,
        .pgrm_vdo_sec .nav-pills > li.active > a:hover {
            color: #4cb748;
            background-color: #edebec;
            border-bottom: 1px solid #edebec;
        }

        .pgrm_vdo_sec .nav-pills > li {
            display: inline-block;
            position: relative;
            width: 42%;
        }

            .pgrm_vdo_sec .nav-pills > li + li {
                margin-left: 20px;
            }

            .pgrm_vdo_sec .nav-pills > li:first-child {
                width: 50%;
            }

            .pgrm_vdo_sec .nav-pills > li:last-child {
                float: right;
            }

            .pgrm_vdo_sec .nav-pills > li:first-child:before {
                content: "";
                display: block;
                width: 0;
                height: 0;
                border-top: 43px solid transparent;
                border-bottom: 0px solid transparent;
                border-left: 20px solid #e6e7e9;
                position: absolute;
                top: 0px;
                right: -20px;
                z-index: 2;
            }

            .pgrm_vdo_sec .nav-pills > li:first-child:after {
                content: "";
                display: block;
                width: 0;
                height: 0;
                border-top: 0px solid transparent;
                border-bottom: 42px solid transparent;
                border-right: 20px solid #edebec;
                position: absolute;
                top: 0px;
                right: -21px;
                z-index: 2;
                box-shadow: 0px 1px #ccc;
            }

            .pgrm_vdo_sec .nav-pills > li.active:first-child:before {
                border-left: 20px solid #edebec;
            }

            .pgrm_vdo_sec .nav-pills > li.active:first-child:after {
                border-right: 20px solid #e6e7e9;
                box-shadow: none;
            }

    .pgrm_vdo_sec .tab-content ul li {
        margin-top: 15px;
    }

    .pgrm_vdo_sec .tab-content ul {
        list-style: none;
    }

        .pgrm_vdo_sec .tab-content ul li {
            position: relative;
        }

            .pgrm_vdo_sec .tab-content ul li:after {
                content: '';
                height: 1em;
                width: 1em;
                background: #a5a6a8;
                border-radius: 100px;
                display: block;
                position: absolute;
                top: 35%;
                left: -1.5em;
            }

    .pgrm_vdo_sec .tab-content .vdo_sec {
        padding: 15px;
    }

.btn_sec {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: block;
}

nav.navbar.bootsnav {
    background: #f8931f;
}

.events-ticker {
    margin-bottom: 10px;
    position: relative;
}

    .events-ticker h4 {
        display: inline-block;
        position: relative;
        width: 152px;
        text-align: center;
    }

        .events-ticker h4 span {
            background: #eee;
            padding: 5px 10px;
            position: absolute;
            top: 15px;
            left: 0px;
            z-index: 9;
            font-size: 14px;
            text-transform: uppercase;
        }

            .events-ticker h4 span:after {
                content: " ";
                position: absolute;
                right: -7px;
                top: 8px;
                border-top: 7px solid transparent;
                border-right: none;
                border-left: 7px solid #eee;
                border-bottom: 7px solid transparent;
            }

.marquee-with-options a {
    margin-right: 15px;
    color: #666;
    font-weight: 500;
}

    .marquee-with-options a:hover {
        color: #4cb748;
    }

.marquee,
.marquee-with-options,
.marquee-vert-before,
.marquee-vert {
    width: 100%;
    overflow: hidden;
}

.container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header {
    margin-left: -15px;
    margin-right: -15px;
}

.about-us-area .block-img figure {
    background: #eef3f6;
    padding: 15px;
    text-align: center;
}

    .about-us-area .block-img figure img {
        width: 100%;
        max-height: 350px;
    }

.abt_img_sec figure {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
}

    .abt_img_sec figure img {
        -moz-transition: all 0.6s;
        -webkit-transition: all 0.6s;
        transition: all 0.6s;
    }

    .ad figure a:hover img, .ads figure a:hover img, .all-client-logo .owl-item a:hover img, .latest-post ul li figure:hover img,
    .abt_img_sec figure:hover img {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.hidden-xs.text-center, .hidden-xs.text-center p {
    text-align: center !important;
}

.media-right p {
    text-align: left;
    !important;
}

.abt_img_sec {
    background: #eef3f6;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

/******
  Search
 ******/
.inner-search {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.addon_label {
    font-size: 24px;
    font-weight: 500;
}

.inner-search .btn {
    font-size: 18px;
}

.pad0 {
    padding: 0px;
}

.inner-search .pad0 {
    padding-left: 1px;
    border-left: 1px solid #ccc;
}

.n_field::-webkit-inner-spin-button,
.n_field::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}



/*Calende of Event*/
.gap {
    height: 15px;
}

.eventTitle {
    background-color: #fbfbfb;
    padding: 5px;
    border: 1px solid #eee;
}

    .eventTitle a {
        font-size: 18px;
        color: #4cb748;
        text-decoration: none;
        font-weight: 500;
    }

        .eventTitle a:hover {
            font-size: 18px;
            color: #0a88bb;
            text-decoration: none;
        }

    .eventTitle span {
        font-size: 9pt;
        color: #000;
    }

.eventImage {
    max-width: 120px;
    max-height: 100px;
    margin-right: 15px;
    float: left;
    padding: 3px;
}

.archiveStyle {
    width: 500px;
    margin: 0px auto;
    font-size: 22px;
    padding-bottom: 30px;
}

    .archiveStyle .text {
        margin-top: 12px;
    }

.archiveFloat {
    width: auto;
    float: left;
    margin-right: 10px;
}

.u-float-right {
    float: right;
}

.u-flex-center {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.card-media {
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    height: 125px;
    margin-bottom: 25px;
    transition: all 300ms ease-out;
    width: 100%;
}

    .card-media:hover {
        box-shadow: 0 5px 14px rgba(0, 0, 0, .2);
    }

.card-media-object-container {
    background: none;
    float: left;
    height: 100%;
    width: 35%;
    position: relative;
    overflow: hidden;
}

.card-media-object-social-list {
    bottom: auto;
    left: auto;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 20;
    right: 15px;
    top: 10px;
}

    .card-media-object-social-list li {
        border-radius: 50%;
        display: inline-block;
        height: 30px;
        margin-right: 6px;
        opacity: 0;
        overflow: hidden;
        transform: translateY(5px);
        transition: all 300ms ease-out;
        width: 30px;
    }

.card-media:hover .card-media-object-social-list li {
    opacity: 1;
    transform: translateY(0);
}

.card-media-object-social-list li:nth-child(1) {
    transition-delay: 0;
}

.card-media-object-social-list li:nth-child(2) {
    transition-delay: 75ms;
}

.card-media-object-social-list li:nth-child(3) {
    transition-delay: 150ms;
}

.card-media-object-social-list-item-additional {
    border: 1px solid #4cb748;
    color: #4cb748;
    font-size: 12px;
    padding-top: 4px;
    text-align: center;
}

.card-media-body {
    background-color: #fff;
    float: left;
    height: 100%;
    padding: 12px 15px;
    position: relative;
    width: 65%;
}

.card-media-body-top {
    display: block;
}

.card-media-body-heading {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    min-height: 50px;
}

    .card-media-body-heading a {
        color: #0a88bb;
    }

/*.card-media-body-supporting-bottom {
  position: absolute;
  bottom: 10px;
  left: 0;
  opacity: 1;
  padding: 0 15px;
  transition: all 300ms ease-out;
  width: 100%;
}

.card-media:hover .card-media-body-supporting-bottom {
  opacity: 0;
  transform: translateY(-8px);
}*/

.card-media-body-supporting-bottom-text {
    display: inline-block;
    font-weight: 500;
}

.card-media-body-supporting-bottom span:first-child {
    font-size: 12px;
}
/*.card-media-body-supporting-bottom-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: all 300ms ease-out;
}

.card-media:hover .card-media-body-supporting-bottom-reveal {
  opacity: 1;
  transform: translateY(0);
}*/

.card-media-link {
    color: #4cb748;
    text-decoration: none;
    font-weight: 600;
}

.portfolio-details-panel small {
    display: block;
    padding-bottom: 10px;
}

.publications-sec table tr th {
    background: #0a88bb;
    color: #fff;
}

.publications-sec table tr td:first-child {
    background: #f9f9f9;
    font-weight: 600;
}

.publications-sec table tr a {
    font-weight: 500;
}

    .publications-sec table tr a:hover {
        color: #4cb748;
    }

    /*Added Ks*/ 
    .board_member figure img{max-width: 100%;}
.member_box{ border-radius: 2px; box-shadow: 0 2px 8px rgba(0, 0, 0, .12); min-height: 185px;
	margin-bottom: 25px; transition: all 300ms ease-out; width: 100%; padding: 15px; 
	border: 1px solid #eef3f6;}
.member_box figure{margin-bottom: 0px;}
.member_box figure img{min-height: 150px;}
.member_box ul{margin-bottom: 0px; padding-left: 15px; font-weight: 600; color: #000; line-height: 24px;}
.member_box h5{margin-bottom: 2px; color: #000; font-weight: 600; color: #0a88bb;}
.member_box small{color: #666; padding-left: 5px; padding-bottom: 10px; display: block;}
.member_box ul li span{font-weight: 500;}

.member_box:hover {
    box-shadow: 0 5px 14px rgba(0, 0, 0, .2);
}

@media screen and (max-width: 992px) {
	nav.navbar.bootsnav.no-full .navbar-collapse{max-height:inherit; overflow-y: inherit !important; height: 49px !important;}
	.wrap-sticky nav.navbar.bootsnav{z-index: 9999;}
}

@media screen and (max-width: 991px) { 
	nav.navbar.bootsnav .navbar-nav{background: #ffffff; margin-top: 50px; position: absolute; width: 100%;}	

	nav.navbar.bootsnav ul.nav > li > a, nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu > li > a{font-weight: 600;}
	nav.navbar.bootsnav ul.nav > li > a:hover, nav.navbar.bootsnav ul.nav > li.active > a, nav.navbar.bootsnav ul.nav > li>.dropdown-menu li > a:hover, nav.navbar.bootsnav ul.nav > li>.dropdown-menu li.active > a, nav.navbar.bootsnav ul.nav > li>.dropdown-menu.megamenu-content li > a:hover, nav.navbar.bootsnav ul.nav > li>.dropdown-menu.megamenu-content .menu-col li.active > a
	{color: #f8931f;}

}


/*CSS for Gallery*/

.img-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.img-wrapper img{max-width: 100%; max-height: 260px;}
.img-overlay {
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.img-overlay a{padding: 60px;}
.img-overlay i {
    color: #fff;
    font-size: 3em;
  }

#overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  /*// Removes blue highlight*/
  -webkit-user-select: none;
  -moz-user-select: none;    
  -ms-user-select: none; 
  user-select: none; 
}

#overlay img {
    margin: 0;
    width: 80%;
    height: auto;
    object-fit: contain;
  }
#nextButton, #prevButton {
  padding: 60px;
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  cursor: pointer;
}
#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}
#nextButton:hover, #prevButton:hover, #exitButton:hover {
    opacity: 0.7;
  }
