﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Cookie');

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}



/* :: DEFAULT CSS :: =================================================== */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *:before, *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

body, html, form, section {
    height: 100%;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: Poppins, sans-serif, Arial;
    font-size: 14px;
    line-height: 1.52857143;
    color: #353535;
    background-color: #fff;
    padding-top: 100px;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #353535;
    text-decoration: underline;
    outline: none;
}

    a:hover, a:focus {
        color: #000;
        text-decoration: none;
    }

    a:focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

p {
    margin: 0 0 15px;
    text-align: justify;
}

body {
    opacity: 0;
}

/* :: COMMON CSS :: =================================================== */

/* GO To Top Style  */
.scrollup {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    bottom: 10px;
    right: 20px;
    display: none;
    z-index: 1;
    font-size: 24px;
}

.scrollup {
    -webkit-animation: moveFromBottom 1000ms ease;
    -moz-animation: moveFromBottom 1000ms ease;
    -ms-animation: moveFromBottom 1000ms ease;
}

a.scrollup {
    background: #cc6f84;
    color: #fff;
}

    a.scrollup:hover {
        background: #445173;
        color: #fff;
        box-shadow: 0px 3px 5px rgba(0,0,0,0.5);
    }

/* List Styles */
.list li {
    margin: 0 0 15px;
}

.fa-icon {
    padding-left: 25px !important;
    position: relative;
}

    .fa-icon .fa {
        margin-left: -22px;
        position: absolute;
        top: 3px;
        bottom: 0px;
    }


/* Clear Styles */
.clear {
    clear: both;
}

.spacer1 {
    clear: both;
    width: 100%;
    height: 10px;
}

.spacer2 {
    clear: both;
    width: 100%;
    height: 20px;
}

.spacer3 {
    clear: both;
    width: 100%;
    height: 30px;
}

.spacer4 {
    clear: both;
    width: 100%;
    height: 40px;
}

.spacer5 {
    clear: both;
    width: 100%;
    height: 50px;
}


/* Spacing, Border, Shadow Styles */
.border {
    border: 1px solid #ccc !important;
}

.no-border {
    border: none !important;
}

.no-border-l {
    border-left: none !important;
}

.no-border-r {
    border-right: none !important;
}

.no-border-t {
    border-top: none !important;
}

.no-border-b {
    border-bottom: none !important;
}

.no-border-rad {
    border-radius: 0px !important;
}

.border-t {
    border-top: 1px solid #ccc !important;
}

.border-b {
    border-bottom: 1px solid #ccc !important;
}

.no-shadow {
    box-shadow: none !important;
}

.no-back {
    background: transparent !important;
}

.no-margin {
    margin: 0 !important;
}

.no-margin-r {
    margin-right: 0 !important;
}

.no-margin-l {
    margin-left: 0 !important;
}

.no-margin-b {
    margin-bottom: 0 !important;
}

.no-margin-t {
    margin-top: 0 !important;
}

.no-margin-x {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.no-margin-y {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.marg-t {
    margin-top: 30px !important;
}

.marg-b {
    margin-bottom: 20px !important;
}

.marg-ftr-t {
    margin-top: 20px !important;
}

.no-pad {
    padding: 0 !important;
}

.no-pad-l {
    padding-left: 0 !important;
}

.no-pad-r {
    padding-right: 0 !important;
}

.no-pad-t {
    padding-top: 0 !important;
}

.no-pad-b {
    padding-bottom: 0 !important;
}

.no-pad-x {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.no-pad-y {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pad-t {
    padding-top: 40px !important;
}

.pad-b {
    padding-bottom: 40px !important;
}

.pad-t-nav {
    padding-top: 10px !important;
}


/* Hr Line Style  */
hr.solid {
    border: 0;
    border-top: 1px solid #ccc;
}

hr.dotted {
    border: 0;
    border-top: 1px dotted #666;
    background: #292929;
}

hr.dashed {
    border: 0;
    border-top: 1px dashed #ccc;
    background: #fff;
}

hr.double {
    border: 0;
    border-top: 1px dashed #ccc;
    background: #999;
}


.err {
    font-size: 12px;
    color: #c80000;
}

.red {
    color: #c80000;
}

/*  Transition style */
a, .btn {
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.btn {
    text-decoration: none;
}

.delay-05s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.delay-06s {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.delay-07s {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.delay-08s {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.delay-09s {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay-15s {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.delay-25s {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}


/* Social Media Style */
ul.social_media {
    margin: 0px;
    padding: 0px 0px 0px 0px;
    width: 100%;
}

    ul.social_media li {
        display: inline-block;
        list-style-type: none;
        list-style-image: none;
        padding: 0px;
        margin: 0 5px 10px 0px;
        border: none;
        vertical-align: top;
    }

        ul.social_media li a {
            display: block;
            font-size: 15px;
            transition: none .6s ease-in-out;
            -webkit-transition: none .6s ease-in-out;
            -moz-transition: none .6s ease-in-out;
            -o-transition: none .6s ease-in-out;
            -ms-transition: none .6s ease-in-out;
        }

            ul.social_media li a:hover {
                display: block;
                font-size: 15px;
            }

    ul.social_media .fa {
        padding: 0px;
        margin: 0px;
        font-weight: 300;
        color: #333;
        width: 35px;
        height: 35px;
        border-radius: 100%;
        line-height: 35px;
        text-align: center;
    }

        ul.social_media .fa:hover {
            color: #fff;
        }

.fa-facebook, .fa-google, .fa-google-plus, .fa-linkedin, .fa-youtube, .fa-youtube-play, .fa-tumblr, .fa-twitter, .fa-pinterest, .fa-instagram {
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
}

ul.social_media .fa-facebook:hover {
    background: #3b5998;
}

ul.social_media .fa-google:hover {
    background: #3f85f4;
}

ul.social_media .fa-google-plus:hover {
    background: #d13f2d;
}

ul.social_media .fa-linkedin:hover {
    background: #0275b5;
}

ul.social_media .fa-youtube:hover {
    background: #ce332d;
}

ul.social_media .fa-youtube-play:hover {
    background: #ce332d;
}

ul.social_media .fa-tumblr:hover {
    background: #274152;
}

ul.social_media .fa-twitter:hover {
    background: #4dc8f1;
}

ul.social_media .fa-pinterest:hover {
    background: #cb2028;
}

ul.social_media .fa-instagram:hover {
    background: #3e739d;
}

/*  Parallax Image CSS */
.parallax-container {
    min-height: 300px;
    width: 100%;
}

.parallax-banner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 100px 0;
    margin: 0px;
    overflow: hidden;
    clear: both;
    float: left;
}

/*  Breadcrumbs */
.breadcrumbs_panel {
    padding: 20px 0;
    border-top: 1px solid #ccc;
}

.breadcrumb {
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    text-align: center;
}

    .breadcrumb li {
        padding: 0;
        margin: 0;
        list-style: none;
        font-size: 13px;
        color: #333;
    }

        .breadcrumb li.active {
            color: #24abe2;
        }

    .breadcrumb a {
        color: #333 !important;
        text-decoration: none;
        padding: 0;
    }

        .breadcrumb a:hover {
            color: #000;
            text-decoration: underline;
        }

    .breadcrumb > li + li:before {
        color: #333 !important;
    }

/* Google Map  */
.map-container {
    width: 90%;
    height: 315px;
    border: 0px;
    float: left;
    padding: 0;
    /*margin: 30px 0;*/
    margin: 30px 17px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0px;
        pointer-events: none;
        border: 1px solid #ccc;
    }

/*  Form Control / Btn */
.form-control, .btn {
    border-radius: 0px !important;
    resize: none;
}

/*  Bootsratp Grid of 5 */
.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
    width: 100%;
    float: left;
}

@media (min-width: 768px) {
    .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
        width: 100%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
        width: 20%;
        float: left;
    }
}

/*  Table Heads bg */
.th {
    background: #006a4e;
    color: #fff;
}

.tch {
    background: #999;
    color: #fff;
}

.tc {
    background: #f5f5f5;
}

/*  btn-outline */
.btn-outline {
    background: none;
    border: 2px solid #24abe2 !important;
    text-transform: uppercase;
    color: #24abe2 !important;
}

    .btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.active, .open > .dropdown-toggle.btn-outline {
    }

    .btn-outline:active, .btn-outline.active {
        box-shadow: none;
    }

    .btn-outline.btn-sm {
        border-radius: 0px;
    }

.btn-white {
    background: none;
    border: 2px solid #fff !important;
    text-transform: lowercase;
    color: #fff !important;
}


/*  fa width */
.fa-20 {
    width: 20px;
    text-align: center;
}

.fa-25 {
    width: 25px;
    text-align: center;
}

.fa-30 {
    width: 30px;
    text-align: center;
}

/*  text responsive align */
@media (min-width: 768px) {
    .text-sm-right {
        text-align: right;
    }
}

@media (min-width: 992px) {
    .text-md-left {
        text-align: left;
    }

    .text-md-right {
        text-align: right;
    }

    .text-md-center {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .text-md-left {
        text-align: left;
    }

    .text-md-right {
        text-align: right;
    }
}


/* :: HEADINGS CSS :: =================================================== */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: normal;
    line-height: normal;
    color: inherit;
}

    .h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
        font-weight: 400;
        line-height: 1;
        color: #777;
    }

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 0px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

    .h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small {
        font-size: 65%;
    }

.h4, .h5, .h6, h4, h5, h6 {
    margin-top: 0px;
    margin-bottom: 5px;
}

    .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
        font-size: 75%;
    }

.h1, h1 {
    font-size: 24px;
    color: #dd0310;
}

.h2, h2 {
    font-size: 20px;
}

.h3, h3 {
    font-size: 18px;
}

.h4, h4 {
    font-size: 16px;
}

.h5, h5 {
    font-size: 14px;
}

.h6, h6 {
    font-size: 12px;
}

@media (min-width: 768px) {
    .lead {
        font-size: 18px !important;
    }
}

.heading {
    position: relative;
    margin: 0px 0px 15px;
}

.white, .white h2, .white h1 {
    color: #fff !important;
}

.heading h1, .heading h2 {
    color: #9d9d9d;
    padding: 5px 0;
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

    .heading h1 small {
        display: block;
        color: #fff;
        font-size: 16px;
    }

/* :: WRAPPER CSS :: =================================================== */
.wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    float: none;
}

.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -200px;
}
/* the bottom margin is the negative value of the footer's height */
.footer {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.footer, .push {
    min-height: 200px;
    clear: both; /* .push must be the same height as .footer */
}



/* :: HEADER CSS :: =================================================== */

header {
    background: #fcf8e3;
}



.navbar {
    z-index: 0;
    margin-bottom: 0px !important;
    -webkit-transform: none !important;
}

    .navbar .container {
        position: relative;
        -webkit-overflow-scrolling: touch;
        overflow: auto;
    }

.navbar-header {
    padding: 0px 0px;
    margin: 0 !important;
    display: block;
    width: 100%;
}

.navbar .logo {
    float: left;
}

@media(max-width:992px) {
    .navbar .logo {
        float: none;
    }
}

.navbar .logo img {
    margin-top: 0px;
   max-width: 100%;
   height:95px;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
    float: left;
}


/* header sticky  */
@media (min-width:992px) {
    .navbar-custom {
        padding: 4px 0px 0px;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

        .navbar-custom.top-nav-collapse {
            padding: 0;
            background: #fcf8e3;
            box-shadow: 0 0px 10px 0px #000;
        }

            .navbar-custom.top-nav-collapse .logo img {
                width: 100%;
                max-width:100% !important;
            }

            .navbar-custom.top-nav-collapse .navbar-toggle {
                margin-top: 10px;
            }

            .navbar-custom.top-nav-collapse #navbar {
                margin-top: 13px !important;
            }

    #navbar {
        margin-top: 25px;
    }
    /*40px*/
}

/* Menu */
.navbar, .navbar-nav {
    border: none !important;
}

.nav > li > a {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    padding: 10px 20px !important;
    display: inline-block !important;
    text-decoration: none;
    text-transform: uppercase;
}

.nav > li.active a {
    color: #24abe2;
}

.nav li:hover > a {
    color: #24abe2;
}

.nav > li > a:hover, .nav > li > a:focus {
    background: transparent !important;
    color: #24abe2;
}

/* Dropdown Menu */
.menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 200px;
    padding: 5px 0;
    margin: 0;
    list-style: none;
    background-color: #fff;
    font-size: 14px;
    text-align: left;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

    .menu-dropdown > li > a {
        display: block;
        padding: 10px 15px;
        clear: both;
        font-weight: normal;
        line-height: 1.42857143;
        color: #333;
        white-space: nowrap;
    }

ul.menu-dropdown li {
    border-bottom: 1px solid #ccc;
}

    ul.menu-dropdown li:last-child {
        border-bottom: none;
    }

    ul.menu-dropdown li a {
        font-weight: 600;
        color: #333;
        text-wrap: normal;
        line-height: normal;
        padding: 10px 15px;
        text-decoration: none;
    }

        ul.menu-dropdown li a:hover {
            color: #204f08;
            background: #f5f5f5;
        }

.nav > li.active ul.menu-dropdown li a {
    color: #333;
}

.navbar-nav .menu-dropdown {
    width: auto;
    border-radius: 0px;
    min-width: 200px;
    padding: 0px !important;
}

.has-dropdown .menu-dropdown li a {
    font-weight: normal !important;
    white-space: normal;
}

.has-dropdown:hover .menu-dropdown {
    display: block !important;
    padding: 0px;
    border: 0px;
    width: 100%;
}

/* First Level Dropdown Menu */
.nav > li.has-dropdown a {
    padding-right: 30px !important;
}

.nav > li.has-dropdown > a:after {
    position: absolute;
    top: auto;
    right: 11px;
    display: inline-block;
    content: "\f107";
    font-family: 'FontAwesome';
    -webkit-transition: all .50s ease;
    -moz-transition: all .50s ease;
    -ms-transition: all .50s ease;
    -o-transition: all .50s ease;
    transition: all .50s ease;
}

.nav > li.has-dropdown:hover > a:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    /* nav dropdown First level */
    .menu-dropdown {
        display: none !important;
        -webkit-animation: fadeInDown 300ms ease;
        -moz-animation: fadeInDown 300ms ease;
        -ms-animation: fadeInDown 300ms ease;
    }
}

@media (max-width:992px) {
    .nav > li {
        border-bottom: 1px solid #ccc;
    }

        .nav > li > a {
            line-height: normal !important;
            color: #333;
            width: 100%;
            display: block;
        }

    .navbar-nav .open .menu-dropdown > li > a {
        padding: 5px 15px !important;
    }

    .menu-dropdown {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media (min-width: 992px) {
    #navbar {
        display: inline-block;
        float: right;
        -webkit-transition: margin 0.6s;
        -moz-transition: margin 0.6s;
        transition: margin 0.6s;
    }

    .nav > li > a {
        line-height: 25px !important;
        margin: 0px 10px;
        display: block;
    }

    .nav > li.active a {
        color: #fd2424;
    }

    .nav li:hover > a {
        color: #fff;
    }

    .nav > li > a:hover, .nav > li > a:focus {
        background: transparent !important;
        color: #c80000;
    }
}

@media (max-width:991px) {
    .navbar-header {
        padding: 0px 0 0;
        width: 100% !important;
    }

    header {
        background: #fcf8e3;
    }

    .navbar-header .logo img {
        width: auto;
    }

    .navbar-nav > li {
        border-bottom: 1px solid #ccc;
    }

    .nav > li > a {
        display: block !important;
    }

    body {
        padding-top: 60px;
    }
}

@media (min-width: 992px) and (max-width:1025px) {
    .nav > li > a {
        font-size: 16px;
    }
}






/* :: FOOTER CSS :: =================================================== */
footer {
    position: relative;
    background: #fff;
}

    footer a {
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

    footer h3 {
        text-transform: uppercase;
    }

.ftr_top {
    border-top: 1px solid #555;
    padding: 25px 0px;
    background: #555;
    color: white;
}

    .ftr_top ul.ftr_links {
        padding: 0;
        margin: 0 0 20px 0;
        list-style: none;
        vertical-align: top;
        line-height: 20px;
    }

        .ftr_top ul.ftr_links > li {
            padding: 0 5px 0 0;
            margin: 0;
            display: block;
            vertical-align: top;
        }

            .ftr_top ul.ftr_links > li > a {
                color: #fff;
            }

            .ftr_top ul.ftr_links > li:before {
                content: "\f105";
                font-family: FontAwesome;
                padding-right: 5px;
            }

ul.ftr_contact {
    padding: 0;
    margin: 0px 0 20px;
}

    ul.ftr_contact li {
        padding: 0;
        margin: 0 0 5px 0;
        list-style: none;
        line-height: normal;
    }

        ul.ftr_contact li a {
            color: #fff;
        }

.ftr_bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

    .ftr_bottom ul.ftr_links {
        padding: 0;
        margin: 0;
        list-style: none;
        vertical-align: top;
        line-height: 20px;
    }

        .ftr_bottom ul.ftr_links > li {
            padding: 0 5px 0 0;
            display: inline-block;
        }

            .ftr_bottom ul.ftr_links > li:before {
                content: "\f0c8";
                font-family: FontAwesome;
                padding-right: 8px;
                font-size: 5px;
                vertical-align: middle;
            }

            .ftr_bottom ul.ftr_links > li:first-child:before {
                content: "";
                padding-right: 0px;
            }

.ftr_copy {
    padding: 10px 0px;
}

@media (max-width:767px) {
    .ftr_top {
        padding: 15px;
    }
}

/* :: HOME BODY CSS :: =================================================== */
.bodyhome {
    padding: 0px;
}

    .bodyhome header {
        background: #fcf8e3;
    }
/*  Visual Panel */
#visual_wrapper {
    background: #fcf8e3; /*url(../images/bg-home.jpg) repeat-x top center*/
    overflow: hidden;
}

#visual_container {
    max-width: 1600px;
    margin: 90px auto 0;
    position: relative;
    z-index: 99;
}

.banner_txt {
    text-align: center;
    margin-top: 105px;
    margin-bottom: 30px;
}

    .banner_txt h2 {
        font-size: 36px;
        color: #fff;
    }

    .banner_txt h3 {
        font-size: 40px;
        color: #000;
        font-family: 'Cookie', cursive;
        text-transform: none;
    }

.edfont {
    font-family: Poppins important;
}

.headers {
    font-weight: bold;
    line-height: normal;
    color: inherit;
    font-size: 36px;
    color: #656296;
}

.blue_bar {
    background: rgba(253, 69, 66, 0.9490196078431372);
    height: 10px;
    width: 100%;
    float: left;
    position: relative;
    z-index: 0;
}

.bg_blue {
    /*background: #a8a6cc;*/
    background: -moz-linear-gradient(-45deg, #fd2424 0%,#aaa3c8 50%,#ad9ec2 50%,#c0829d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #fd2424 0%,#aaa3c8 50%,#ad9ec2 50%,#c0829d 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,#fd2424 0%,#aaa3c8 50%,#ad9ec2 50%,#c0829d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd2424', endColorstr='#dddddd',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    background: linear-gradient(135deg, #fd2424 0%,#aaa3c8 50%,#ad9ec2 50%,#c0829d 100%);
}

.bg_blue_dark {
    background: #445173;
}

.home_row {
    padding-top: 30px;
    padding-bottom: 30px;
}
/*50px*/
.parallax-container {
    color: #fff;
}

/*ul.counter_bar{width:100%;padding:0;margin:0px 0px;color:#545454;}
ul.counter_bar li{list-style:none;display:block;padding:0px 10px;margin:0 0 10px margin:0 45px 10px;vertical-align:middle;font-size:16px;color:#000;background:#fff;
               float:left;width:100%;position:relative;
}
ul.counter_bar li .fa{font-size:62px;color:#ddd;float:right;display:inline-block;position:absolute;bottom:0;right:10px;}
ul.counter_bar li h2{font-size:32px;color:#fd2424;position:relative;display:inline-block;}
ul.counter_bar li h2 span{ padding:0px 0px;width:100%;display:block; text-transform:none;color:#000;font-size:18px;}
ul.counter_bar li i.numscroller{display:inline-block;font-style:normal;font-weight:600;line-height:0;font-size:32px;padding:0;}*/
ul.counter_bar {
    width: 100%;
    padding: 0;
    margin: 0px 0px;
    display: table;
    text-align: center;
    color: #545454;
}

    ul.counter_bar li {
        width: 30%;
        list-style: none;
        display: inline-block;
        padding: 0px;
        margin: 60px 15px;
        vertical-align: middle;
        text-align: center;
        font-size: 16px;
        color: #545454;
        border: 1px solid #bf839e;
    }

        ul.counter_bar li h2 {
            font-size: 18px;
            color: #656296;
            width: 100%;
            font-weight: 600;
            position: relative;
            margin-top: -40px;
        }

            ul.counter_bar li h2 span {
                padding: 5px 0px;
                width: 100%;
                display: block;
                text-transform: uppercase;
            }

        ul.counter_bar li i.numscroller {
            display: inline-block;
            font-style: normal;
            line-height: 80px;
            font-size: 72px;
            text-align: center;
            background: #fff;
            padding: 0 25px;
        }

        ul.counter_bar li b.step {
            display: inline-block;
            font-style: normal;
            line-height: 52px;
            font-size: 72px;
            text-align: center;
        }

@media (max-width: 767px) {
    ul.counter_bar li {
        width: 100%;
        list-style: none;
        display: block;
        margin: 60px 0px;
    }
}

.client_box {
    padding: 20px;
    box-shadow: 0px -3px 10px rgba(0,0,0,0.2);
}

.client_list {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    color: #ffffff;
    text-align: center;
}

    .client_list li {
        padding: 0;
        margin: 0;
        list-style: none;
        display: block;
    }

.tm_panel {
    position: relative;
}

    .tm_panel:before, .tm_panel:after {
        position: absolute;
        font-family: FontAwesome;
        color: rgba(105,116,143,0.5);
        font-size: 80px;
    }

    .tm_panel:before {
        content: "\f10d";
        top: 0;
        left: 0;
    }

    .tm_panel:after {
        content: "\f10e";
        bottom: 0;
        right: 0;
    }

.tm_box {
    max-width: 600px;
    margin: 0 auto;
}

.tm_list {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    color: #ffffff;
    text-align: center;
}

    .tm_list li {
        padding: 0;
        margin: 0;
        list-style: none;
        display: block;
    }

        .tm_list li h4 {
            color: #24abe2;
            text-transform: uppercase;
        }

.tm_panel .bx-wrapper .bx-pager.bx-default-pager a {
    background: transparent !important;
    border: 2px solid #fff;
}

    .tm_panel .bx-wrapper .bx-pager.bx-default-pager a.active, .tm_panel .bx-wrapper .bx-pager.bx-default-pager a:hover {
        background: #24abe2 !important;
        border: 2px solid #24abe2;
    }

/* :: BODY :: =================================================== */

#body {
    min-height: 300px;
    padding-top: 30px;
    padding-bottom: 30px;
}

    #body .body_content {
        padding: 30px 0px;
    }


/* :: SECTION VISUAL PANEL  :: =================================================== */
@media (min-width:767px) {
    .section_visual {
        width: 100%;
        height: 125px;
        position: relative;
        background: #445173; /* Old browsers */
        background: -moz-linear-gradient(-45deg, #fd2424 0%,#9b9bff 50%,#a096f6 50%,#b6afed 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(-45deg,#fd2424 0%,#9b9bff 50%,#a096f6 50%,#b6afed 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(135deg, #fd2424 0%,#9b9bff 50%,#a096f6 50%,#b6afed 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#445173', endColorstr='#dddddd',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    }

        .section_visual .heading {
            margin-top: 40px;
        }

        .section_visual .btn-group {
            margin-top: 60px;
            float: right;
        }
}

.section_pic {
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center !important;
}


@media (max-width:767px) {
    .section_visual {
        width: 100%;
        padding: 60px 0px 0;
        position: relative;
        background: #afa7f0; /* Old browsers */
    }

        .section_visual .btn-group {
            margin-bottom: 20px;
        }
}



/* :: PRODUCTS :: =================================================== */

ul.prod_list {
    padding: 0;
    margin: 0;
    list-style: none;
    float: left;
    width: 100%;
    text-align: center;
}

    ul.prod_list > li {
        padding: 0;
        margin: 0 15px 15px;
        list-style: none;
        max-width: 250px;
        display: inline-block;
        vertical-align: top;
    }

    ul.prod_list .prod_thumb {
        padding: 0px;
        margin: 0 auto;
        position: relative;
        border: 1px solid #ddd;
    }

    ul.prod_list img {
        max-width: 100%;
    }

    ul.prod_list li .prod_name {
        padding: 15px;
    }

        ul.prod_list li .prod_name h2 {
            font-size: 18px;
            color: #445173;
        }

        ul.prod_list li .prod_name h4 {
            font-size: 15px;
            color: #445173;
            text-transform: uppercase;
        }

    ul.prod_list li a {
        display: block;
        text-decoration: none;
    }

.prod_pic_slider, .prod_pic_slider li {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .prod_pic_slider img {
        max-width: 100%;
    }

ul.prod_list_inner {
    padding: 0;
    margin: 0;
    list-style: none;
    float: left;
    width: 100%;
    text-align: center;
}

    ul.prod_list_inner > li {
        padding: 0;
        margin: 0 15px 0px;
        list-style: none;
        max-width: 250px;
        display: inline-block;
        vertical-align: top;
    }

    ul.prod_list_inner .prod_thumb {
        padding: 0px;
        margin: 0 auto;
        position: relative;
        border: 1px solid #ddd;
    }

    ul.prod_list_inner img {
        max-width: 100%;
    }

    ul.prod_list_inner li .prod_name {
        padding: 15px;
    }

        ul.prod_list_inner li .prod_name h2 {
            font-size: 18px;
            color: #445173;
        }

    ul.prod_list_inner li a {
        display: block;
        text-decoration: none;
    }
/* :: NEWS :: =================================================== */
ul.news_list {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

    ul.news_list > li {
        padding: 20px;
        margin: 0 0 20px;
        background: rgba(0,0,0,0.1);
    }

        ul.news_list > li a {
            display: block;
            text-decoration: none;
            margin-bottom: 5px;
            text-transform: none;
            font-weight: bold;
        }

            ul.news_list > li a .fa {
                padding-left: 10px;
            }

            ul.news_list > li a:hover {
                text-decoration: underline;
            }

    ul.news_list ul li {
        margin: 5px 0px;
        padding-left: 0px;
        padding-right: 10px;
        font-size: 15px;
    }

        ul.news_list ul li.fa-icon .fa {
            top: 3px;
        }


/* :: CONTACT :: =================================================== */
ul.contact_list {
    padding: 0;
    margin: 0px 0 20px;
}

    ul.contact_list li {
        padding: 0;
        margin: 0 0 10px 0;
        list-style: none;
        line-height: normal;
    }

    ul.contact_list .fa-icon {
        padding-left: 22px;
        position: relative;
    }

        ul.contact_list .fa-icon .fa {
            margin-left: -22px;
            position: absolute;
            top: 4px;
            bottom: 0px;
        }

/* :: SITEMAP :: =================================================== */
ul.sitemsp_links {
    padding: 0;
    margin: 0 0 60px;
    list-style: none;
    vertical-align: top;
    line-height: 25px;
}

    ul.sitemsp_links > li {
        padding: 0 5px 0 0;
        display: block;
    }

        ul.sitemsp_links > li:before {
            content: "\f105";
            font-family: FontAwesome;
            padding-right: 5px;
        }

        ul.sitemsp_links > li > ul {
            margin-left: 20px;
        }

.links_col_3 > li {
    width: 33.33%;
    display: inline-block;
    float: left;
}

@media (max-width:767px) {
    .links_col_3 > li {
        width: 100%;
    }
}

.panel_head h3 {
    border: 1px solid #afa7f0 !important;
    padding: 5px;
    /*background-color: #77bdda !important;*/
    background: -moz-linear-gradient(-45deg,#c8659b 0%, rgb(163, 153, 245) 50%, #afa7f0 ); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,#c8659b 0%, rgb(163, 153, 245) 50%, #afa7f0 ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #c8659b 0%, rgb(163, 153, 245) 50%, #afa7f0 ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background: linear-gradient(125deg, #c8659b 0%, rgb(163, 153, 245) 50%, #afa7f0 );
    color: #fff;
    font-size: 16px;
}

.panel_head h2 {
    border: 1px solid #afa7f0 !important;
    padding: 5px;
    /*background-color: #77bdda !important;*/
      background: -moz-linear-gradient(-45deg,#c8659b 0%, rgb(163, 153, 245) 50%, #afa7f0 ); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,#c8659b 0%, rgb(163, 153, 245) 50%, #afa7f0 ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #c8659b 0%, rgb(163, 153, 245) 50%, #afa7f0 ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background: linear-gradient(125deg, #c8659b 0%, rgb(163, 153, 245) 50%, #afa7f0 );
    color: #fff;
    font-size: 24px;
}

.head h1, .head h2 {
    color: #fff;
    padding: 5px 0;
    margin: 0;
    font-size: 35px;
    text-transform: uppercase;
}

.head {
    position: relative;
    margin: 0px 0px 15px;
}

@media (min-width: 767px) {
    .section_visual .head {
        margin-top: 40px;
    }
}
