/* Font Styles */
body {
    font-family: 'Roboto', sans-serif;
}

body {
    font-size: 16px;
}

body {
    color: #2a2a2a;
}

p {
    font-size: 18px;
}

a {
    color: #0770B4;
}

    a:hover {
        color: #0770B4;
        text-decoration: none;
    }

li {
    font-size: 16px;
}

a.article {
    color: #2a2a2a;
    display: block;
}
    /*a.article:after { content:'\2BC8'; padding-left: 5px; color: #0770B4; }*/
    a.article:after {
        content: "";
        background: url(../img/arrow.png) center center no-repeat;
        width: 15px;
        height: 9px;
        padding-left: 25px;
        color: #0770B4;
    }

.blue {
    color: #0770B4;
}

.white {
    color: white;
}

.gray {
    color: #2a2a2a;
}

.gold {
    color: #DDA127;
}

.black {
    color: black;
}

.light {
    font-weight: 300;
}

.bold {
    font-weight: 700;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 20px;
}

.form-group input {
    font-size: 21px;
}

/* Spacing Styles */
.mar-10 {
    margin: 10px;
}

.mar-20 {
    margin: 20px;
}

.mar-30 {
    margin: 30px;
}

.mtop-10 {
    margin-top: 10px;
}

.mtop-20 {
    margin-top: 20px;
}

.mtop-30 {
    margin-top: 30px;
}

.mbot-10 {
    margin-bottom: 10px;
}

.mbot-20 {
    margin-bottom: 20px;
}

.mbot-30 {
    margin-bottom: 30px;
}

.pad-10 {
    padding: 10px;
}

.pad-20 {
    padding: 20px;
}

.pad-30 {
    padding: 30px;
}

.ptop-10 {
    padding-top: 10px;
}

.ptop-20 {
    padding-top: 20px;
}

.ptop-30 {
    padding-top: 30px;
}

.pbot-10 {
    padding-bottom: 10px;
}

.pbot-20 {
    padding-bottom: 20px;
}

.pbot-30 {
    padding-bottom: 30px;
}

/** Header Styles **/
img.logo {
    margin: 55px 0 35px 0;
    max-width: 350px;
}

.header-top {
    height: 12px;
}

.header-top, .header-middle-top-links {
    background-color: #0770B4;
}

    .header-middle-top-links a {
        color: white;
    }

        .header-middle-top-links a:hover {
            color: #333;
        }

.header-middle {
    margin-bottom: 10px;
}

.header-middle-top {
    font-size: 12px;
}

.header-middle-top-links a {
    padding: 0px 5px;
}

.header-middle-top-links {
    padding: 6px 10px;
    float: right;
}

/** Form Styles **/
section#participant {
    background: url(../img/participant-bkg.jpg) center 25% no-repeat;
}

section#sponsor {
    background: url(../img/sponsor-bkg.jpg) center 25% no-repeat;
}

section#advisor {
    background: url(../img/advisor-bkg.jpg) center 25% no-repeat;
}

section#participant, section#sponsor, section#advisor {
    background-size: cover;
}

section#content {
    margin: 30px 0;
}

    section#content.sponsor, section#content.advisor, section#sponsor, section#advisor {
        display: none;
        min-height: 580px;
    }

section.content-login-bg {
    padding: 60px 0;
    border-bottom: 10px solid #2a2a2a;
}

.content-login-wrapper-form {
    background-color: #fff;
    padding: 20px;
}

.content-login-form-title, .content-login-form-info {
    margin-bottom: 10px;
}

.form-control {
    border: none;
    border-radius: 0px;
    border-bottom: 2px solid #ccc;
    box-shadow: none;
}

#form-select-part, #form-select-sponsor, #form-select-advisor {
    background-color: #ccc !important;
}

.btn {
    background-color: #0770B4;
    margin-bottom: 10px;
    border-radius: 10px;
}

select {
    /* styling */
    background-color: white;
    border: thin solid #0770B4;
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 3.5em 0.5em 1em;
    /* reset */
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
}

    select:focus {
        background-image: linear-gradient(45deg, gray 50%, transparent 50%), linear-gradient(135deg, transparent 50%, gray 50%), linear-gradient(to right, #ccc, #ccc);
        background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
        background-size: 5px 5px, 5px 5px, 1px 1.5em;
        background-repeat: no-repeat;
        border-color: #ccc;
        outline: 0;
    }

@media (max-width: 767px) {
    .content-login-wrapper-form {
        margin-bottom: 20px;
    }

    .desktop {
        display: none;
    }

    .nav-item {
        margin-bottom: 20px;
        text-align: center;
        display: block;
        width: 100%;
        padding: 0 20px;
    }

    a.nav-link {
        margin-right: 0 !important;
    }

    img.logo {
        max-width: 100%;
        height: auto;
    }
}

/* Navigation Tabs */
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    text-align: center;
    color: #2a2a2a;
    background-color: white;
}

/*.nav > li > a { padding: 10px 30px; }*/

.nav > li > a:focus, .nav > li > a:hover {
    background-color: inherit;
}

.nav-pills > li.active > a {
    color: #2a2a2a;
    font-weight: 700;
}

.nav-pills {
    font-size: 25px;
}

    .nav-pills > li > a > .icon {
        filter: alpha(opacity=50);
        opacity: 0.5;
    }

    .nav-pills > li.active > a > .icon {
        filter: alpha(opacity=100);
        opacity: 1;
    }

    .nav-pills > li > a > .small {
        font-size: 14px;
    }

    .nav-pills > li > a {
        color: #939597;
        font-weight: 400;
        text-align: center;
    }

.nav-link {
    padding: 20px 10px;
    min-width: 270px;
    max-width: 310px;
}

section.sponsor .nav-link {
    min-width: 230px;
}

.nav-pills {
    padding-bottom: 30px;
    border-bottom: 2px solid #ececec;
}

    .nav-pills .icon {
        height: 130px;
    }

ul.nav-pills {
    margin: 0 auto;
}

li.nav-item {
    display: inline-block;
}

/* Footer Styles */
footer {
    width: 100%;
    padding: 30px 0;
}

footer {
    font-size: 12px;
}

footer {
    background-color: #07415B;
}

/*********************

TOP BARS

****************************/
.top-bar-dark {
    background-color: #07415b;
}

.top-bar-light {
    background-color: #f3f3f3;
}

    .top-bar-light .top-dark-right li {
        border-color: #ddd;
    }

        .top-bar-light .top-dark-right li a:hover {
            color: #32c5d2;
        }

.top-bar-socials {
    line-height: 18px;
    padding-top: 5px;
}

    .top-bar-socials:after {
        display: table;
        clear: both;
        content: "";
    }

    .top-bar-socials a {
        margin: 0px 3px;
    }

.top-dark-right {
    margin: 0px;
    padding: 0px;
}

    .top-dark-right li {
        line-height: 40px;
        border-left: 1px solid #bbb;
        padding: 0px 10px;
    }

        .top-dark-right li:last-child {
            border-left: none;
            ;
        }

.top-log {
    background-color: #62b6cb;
}

    .top-log > a {
        color: #fff !important;
        font-size: 14px !important;
    }

.top-dark-right li, .top-dark-right li a {
    color: #bbb;
    font-size: 12px;
}

    .top-dark-right li i {
        margin-right: 5px;
    }

    .top-dark-right li a:hover {
        color: #fff;
    }

/***search top bar**/
.topbar-icons {
    display: block;
}

    .topbar-icons i {
        margin: 0px !important;
        display: block;
    }

.search {
    display: none;
    position: absolute;
    left: 0;
    right: 15px;
    top: 0;
    height: 100%;
    z-index: 99999;
}

    .search .form-control {
        height: 100%;
        position: absolute;
        top: 0;
        width: 99%;
        right: 0;
        border: 0px;
        background-color: #fff;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        box-shadow: none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        border-radius: 0px;
    }

.search-close {
    position: absolute;
    right: 9px;
    top: 5px;
    cursor: pointer;
}

/* Mega MENU */
.yamm-content {
    padding: 25px;
    box-sizing: border-box;
    background-color: #fff;
}

.dropdown-menu .divider {
    background-color: #222;
}

.yamm-content h3.heading {
    border-bottom: none;
    margin: 0 0 5px;
    color: #000;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}

.yamm-content h3:before {
    content: "";
    display: none;
}

.yamm-content .mega-vertical-nav {
    margin-bottom: 30px;
}

    .yamm-content .mega-vertical-nav li a {
        padding: 8px 0px;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        -webkit-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        color: #888;
        border-bottom: 1px solid #fbfbfb;
        font-size: 14px;
        font-weight: 400;
        text-transform: capitalize;
        /*    border-bottom: 0px;*/
    }

.nav.mega-vertical-nav li a:hover {
    background-color: transparent;
    color: #32c5d2;
}

.nav.mega-vertical-nav li a i {
    margin-right: 10px;
}

.mega-contact p {
    margin: 0;
}

.mega-contact i {
    color: #32c5d2;
    margin-right: 5px;
}

/*navbar search form***/
.dropdown-form {
    padding: 10px 27px;
    min-width: 213px;
}

    .dropdown-form .form-control {
        height: 34px;
    }

/***header top bar with search***/
.top-bar form {
    position: relative;
    margin: 0px;
    padding: 0px;
}

.top-bar button {
    border: 0px;
    background-color: transparent;
    position: absolute;
    top: 9px;
    right: 13px;
    margin: 0px;
    padding: 0px;
    width: auto;
    height: auto;
    line-height: 15px;
}

.top-bar form .form-control {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    margin-top: 6px;
    width: 150px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.top-bar .form-group {
    margin: 0px;
}

.top-bar .form-control:focus {
    width: 200px;
}

.footer-btm {
    margin-top: 30px;
    padding: 20px;
    background-color: #07415B;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.socialmedialinks {
    text-align: end;
}

.top-bar-socials {
    line-height: 18px;
    padding-top: 5px;
}


/***social icons small***/
/**social icons default size**/
.social-icon {
    margin: 0 5px 5px 0;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px !important;
    color: #555;
    text-shadow: none;
    border-radius: 3px;
    overflow: hidden;
    display: block;
    float: left;
    text-align: center;
    border: 1px solid #AAA;
}

    .social-icon:hover {
        border-color: transparent;
    }

    .social-icon i {
        display: block;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        line-height: 40px;
        position: relative;
    }

        .social-icon i:last-child {
            color: #FFF !important;
        }

    .social-icon:hover i:first-child {
        margin-top: -40px;
    }

.social-icon-sm {
    margin: 0 5px 5px 0;
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 30px !important;
    color: #555;
    text-shadow: none;
    border-radius: 3px;
    overflow: hidden;
    display: block;
    float: left;
    text-align: center;
    border: 1px solid #AAA;
}

    .social-icon-sm:hover {
        border-color: transparent;
    }

    .social-icon-sm i {
        display: block;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        line-height: 30px;
        position: relative;
    }

        .social-icon-sm i:last-child {
            color: #FFF !important;
        }

    .social-icon-sm:hover i:first-child {
        margin-top: -30px;
    }

si-border {
    border: 1px solid #AAA !important;
}

.si-border-round {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.si-dark-round {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.si-gray-round {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.si-gray {
    background: #f3f3f3;
    border: 0px;
}

.si-dark {
    background-color: #333;
    border: 0px !important;
    color: #fff !important;
}

/**icons hover colored**/
.si-colored-facebook, .si-facebook:hover {
    background-color: #3B5998 !important;
}

.si-colored-twitter, .si-twitter:hover {
    background-color: #00ACEE !important;
}

.si-colored-google-plus, .si-g-plus:hover {
    background-color: #DD4B39 !important;
}

.si-colored-skype, .si-skype:hover {
    background-color: #00AFF0 !important;
}

.si-linkedin:hover, .si-colored-linkedin {
    background-color: #0E76A8 !important;
}

.si-pin:hover, .si-colored-pinterest {
    background-color: #C8232C !important;
}

.si-rss:hover, .si-colored-rss {
    background-color: #EE802F !important;
}

.si-pinterest:hover, .si-colored-pinterest {
    background-color: #C8232C !important;
}

.si-tumblr:hover, .si-colored-tumblr {
    background-color: #34526F !important;
}

.si-vimeo:hover, .si-colored-vimeo {
    background-color: #86C9EF !important;
}

.si-digg:hover, .si-colored-digg {
    background-color: #191919 !important;
}

.si-instagram:hover, .si-colored-instagram {
    background-color: #3F729B !important;
}

.si-flickr:hover, .si-colored-flickr {
    background-color: #FF0084 !important;
}

.si-paypal:hover, .si-colored-paypal {
    background-color: #00588B !important;
}

.si-yahoo:hover, .si-colored-yahoo {
    background-color: #720E9E !important;
}

.si-android:hover, .si-colored-andriod {
    background-color: #A4C639 !important;
}

.si-appstore:hover, .si-colored-apple {
    background-color: #000 !important;
}

.si-dropbox:hover {
    background-color: #3D9AE8 !important;
}

.si-dribbble:hover, .si-colored-dribbble {
    background-color: #EA4C89 !important;
}

.si-soundcloud:hover, .si-colored-soundcoloud {
    background-color: #F70 !important;
}

.si-xing:hover, .si-colored-xing {
    background-color: #126567 !important;
}

.si-phone:hover, .si-colored-phone {
    background-color: #444 !important;
}

.si-behance:hover, .si-colored-behance {
    background-color: #053eff !important;
}

.si-github:hover, .si-colored-github {
    background-color: #171515 !important;
}

.si-stumbleupon:hover, .si-colored-stumbleupon {
    background-color: #F74425 !important;
}

.si-email:hover, .si-colored-email {
    background-color: #6567A5 !important;
}

.si-wordpress:hover, .si-colored-wordpress {
    background-color: #1E8CBE !important;
}

.social-shortcodes .left-heading {
    font-size: 30px;
    text-transform: uppercase;
}

.grid-boxed {
    border: 1px solid transparent;
    padding: 20px;
}

    .grid-boxed:hover {
        border: 1px dashed #999;
    }


/**footet dark**/
#footer {
    background: #07415B;
    font-size: 0.9em;
    padding: 80px 0 0;
    position: relative;
    clear: both;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 35px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 300;
    font-style: normal;
}

    .footer-col h3:first-letter {
        border-bottom: 1px solid #bbb;
    }

.footer-col p {
    color: #fff;
    font-size: 13px;
}

.contact p {
    margin-bottom: 10px;
}

.contact strong {
    margin-right: 10px;
    font-weight: bold;
}

    .contact strong i {
        margin-right: 0;
        width: 20px;
    }

.contact a {
    color: #fff;
}

    .contact a:hover {
        color: #32c5d2;
    }

.f2-work li {
    margin: 1px;
    padding: 0px;
}

    .f2-work li a {
        display: block;
    }

        .f2-work li a img {
            width: 80px;
            border: 2px solid transparent;
            -moz-transition: 0.7s ease-in-out;
            -o-transition: 0.7s ease-in-out;
            -webkit-transition: 0.7s ease-in-out;
            transition: 0.7s ease-in-out;
        }

        .f2-work li a:hover img {
            border-color: #32c5d2;
        }

.footer-btm {
    margin-top: 30px;
    padding: 20px;
    background-color: #07415B;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

    .footer-btm > span {
        color: #fff;
    }

.news-form .form-control {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    height: 30px;
}

@media (max-width: 767px) {
    .news-form {
        text-align: center !important;
    }

        .news-form .form-control {
            margin-bottom: 10px;
        }
}

.footer-social li {
    padding: 0px;
}

/****************footer 2****************/
#footer-option {
    background: #121214;
    border-top: 4px solid #e1e1e1;
    font-size: 0.9em;
    padding: 80px 0 0;
    position: relative;
    clear: both;
}

    #footer-option .footer-col h3 {
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
    }

    #footer-option .footer-btm {
        background-color: #0c0c0c;
    }

    #footer-option .contact a {
        color: #777;
    }

        #footer-option .contact a:hover {
            color: #32c5d2;
        }

/*******************footer 3********************/
.footer-col.footer-3 h3 {
    text-transform: uppercase;
    font-size: 35px;
}

/***********bootstrap navigation default overrides--*/
.navbar-default {
    border: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    margin-bottom: 0;
    width: 100%;
    min-height: 70px;
    padding: 10px 0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.11765) 0px 1px 3px;
    -moz-box-shadow: rgba(0, 0, 0, 0.11765) 0px 1px 3px;
    -ms-box-shadow: rgba(0, 0, 0, 0.11765) 0px 1px 3px;
    box-shadow: rgba(0, 0, 0, 0.11765) 0px 1px 3px;
    background-color: #fff;
    clear: both;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
        color: #32c5d2;
        background-color: transparent;
    }

    .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
        color: #006484;
        background-color: transparent;
    }

.navbar-brand {
    font-weight: 700;
    color: #000 !important;
    font-size: 30px;
    line-height: 20px;
    font-style: normal;
    text-transform: uppercase;
}

.navbar-default .navbar-nav > li > a {
    color: #777;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Roboto';
}

    .navbar-default .navbar-nav > li > a:hover {
        color: #006484;
    }

.navbar-brand img {
    width: 80px;
    height: auto;
}

/*============================*/
/*======dropdowm menu=========*/
/*============================*/
.navbar .dropdown-menu {
    padding: 0px;
    margin: 0;
    min-width: 200px;
    background-color: #fff;
    border: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    border: 1px solid #eee;
}

.search-dropdown {
    min-width: 244px !important;
}

.navbar .dropdown-menu li a {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid #f5f5f5;
    padding: 6px 16px;
    line-height: 1.42857143;
    text-transform: capitalize;
}

.dropdown-menu .label {
    margin-top: 6px;
}

.navbar .dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

/*********************

TOP BARS

****************************/
.top-bar-dark {
    background-color: #07415b;
}

.top-bar-light {
    background-color: #f3f3f3;
}

    .top-bar-light .top-dark-right li {
        border-color: #ddd;
    }

        .top-bar-light .top-dark-right li a:hover {
            color: #32c5d2;
        }

.top-bar-socials {
    line-height: 18px;
    padding-top: 5px;
}

    .top-bar-socials:after {
        display: table;
        clear: both;
        content: "";
    }

    .top-bar-socials a {
        margin: 0px 3px;
    }

.top-dark-right {
    margin: 0px;
    padding: 0px;
}

    .top-dark-right li {
        line-height: 40px;
        border-left: 1px solid #bbb;
        padding: 0px 10px;
    }

        .top-dark-right li:last-child {
            border-left: none;
            ;
        }

.top-log {
    background-color: #62b6cb;
}

    .top-log > a {
        color: #fff !important;
        font-size: 14px !important;
    }

.top-dark-right li, .top-dark-right li a {
    color: #bbb;
    font-size: 12px;
}

    .top-dark-right li i {
        margin-right: 5px;
    }

    .top-dark-right li a:hover {
        color: #fff;
    }

/***search top bar**/
.topbar-icons {
    display: block;
}

    .topbar-icons i {
        margin: 0px !important;
        display: block;
    }

.search {
    display: none;
    position: absolute;
    left: 0;
    right: 15px;
    top: 0;
    height: 100%;
    z-index: 99999;
}

    .search .form-control {
        height: 100%;
        position: absolute;
        top: 0;
        width: 99%;
        right: 0;
        border: 0px;
        background-color: #fff;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        box-shadow: none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        border-radius: 0px;
    }

.search-close {
    position: absolute;
    right: 9px;
    top: 5px;
    cursor: pointer;
}

/* Mega MENU */
.yamm-content {
    padding: 25px;
    box-sizing: border-box;
    background-color: #fff;
}

.dropdown-menu .divider {
    background-color: #222;
}

.yamm-content h3.heading {
    border-bottom: none;
    margin: 0 0 5px;
    color: #000;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}

.yamm-content h3:before {
    content: "";
    display: none;
}

.yamm-content .mega-vertical-nav {
    margin-bottom: 30px;
}

    .yamm-content .mega-vertical-nav li a {
        padding: 8px 0px;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        -webkit-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        color: #888;
        border-bottom: 1px solid #fbfbfb;
        font-size: 14px;
        font-weight: 400;
        text-transform: capitalize;
        /*    border-bottom: 0px;*/
    }

.nav.mega-vertical-nav li a:hover {
    background-color: transparent;
    color: #32c5d2;
}

.nav.mega-vertical-nav li a i {
    margin-right: 10px;
}

.mega-contact p {
    margin: 0;
}

.mega-contact i {
    color: #32c5d2;
    margin-right: 5px;
}

/*navbar search form***/
.dropdown-form {
    padding: 10px 27px;
    min-width: 213px;
}

    .dropdown-form .form-control {
        height: 34px;
    }

/***header top bar with search***/
.top-bar form {
    position: relative;
    margin: 0px;
    padding: 0px;
}

.top-bar button {
    border: 0px;
    background-color: transparent;
    position: absolute;
    top: 9px;
    right: 13px;
    margin: 0px;
    padding: 0px;
    width: auto;
    height: auto;
    line-height: 15px;
}

.top-bar form .form-control {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    margin-top: 6px;
    width: 150px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.top-bar .form-group {
    margin: 0px;
}

.top-bar .form-control:focus {
    width: 200px;
}

/****************************dark heder********************/
/***********bootstrap navigation default overrides--*/
.navbar-inverse {
    border: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    margin-bottom: 0;
    width: 100%;
    min-height: 70px;
    padding: 10px 0;
    -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
    background-color: #333;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
        color: #32c5d2;
        background-color: transparent;
    }

    .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
        color: #32c5d2;
        background-color: transparent;
    }

    .navbar-inverse .navbar-brand {
        font-weight: 700;
        color: #fff !important;
        font-size: 30px;
        line-height: 20px;
        font-style: normal;
        text-transform: uppercase;
    }

    .navbar-inverse .navbar-nav > li > a {
        color: #fff;
        font-size: 13px;
        text-transform: uppercase;
    }

        .navbar-inverse .navbar-nav > li > a:hover {
            color: #32c5d2;
        }

#header-top.dark-header-top {
    background-color: #111;
    border-bottom-color: #222;
}

    #header-top.dark-header-top .top-bar a i {
        color: #fff;
    }

    #header-top.dark-header-top .top-bar ul li {
        color: #fff;
    }

/******************transparent header*****************************/
.navbar-inverse.transparent-header {
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    padding: 10px 0px;
    min-height: 50px;
}

@media (max-width: 767px) {
    .navbar-inverse.transparent-header {
        background-color: #111 !important;
    }
}
/****************header center*****************/
.header-center {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f5f5f5;
    padding: 25px 0;
}

    .header-center a {
        font-size: 30px;
        text-transform: uppercase;
        color: #000;
        font-weight: 700;
    }

    .header-center span {
        display: block;
    }

.navbar-default.menu-header-center {
    padding: 0px;
    min-height: 50px;
}

    .navbar-default.menu-header-center .navbar-nav > li {
        border-left: 1px solid #ddd;
    }

/***home boxed***/
#boxed {
    background-color: #f8f8f8;
}

@media (min-width: 1200px) {
    .boxed-wrapper {
        margin: 0 auto;
        width: 1170px;
        background-color: white;
        -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.16);
        -ms-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.16);
        box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.16);
    }
}

.boxed-wrapper .tp-banner-container {
    margin: 0px auto;
}

.boxed-wrapper .navbar-default {
    left: auto;
    width: auto;
    right: auto;
}

/***side panel*****/
.side-panel-page {
    overflow-x: hidden;
}

.side-panel {
    padding: 15px 0;
    background-color: #fff;
}

    .side-panel .offcanvas-toggle-right.navbar-toggle {
        display: block;
        padding: 0px;
        margin: 0px;
        font-size: 18px;
    }

.offcanvas-side-content .logo-side-nav {
    padding: 25px 15px;
    text-align: center;
}

.offcanvas-side-content .navmenu {
    width: 220px;
    padding: 0;
}

.offcanvas-side-content li.nav-header {
    padding: 15px;
}

.offcanvas-side-content .profile-element img {
    display: block;
    margin: 0 auto;
}

.offcanvas-side-content .profile-element .dropdown-menu {
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    padding: 0px;
}

    .offcanvas-side-content .profile-element .dropdown-menu > li:last-child a {
        border-bottom: 0px;
    }

    .offcanvas-side-content .profile-element .dropdown-menu > li > a {
        padding: 8px 15px;
        border-bottom: 1px solid #f5f5f5;
    }

        .offcanvas-side-content .profile-element .dropdown-menu > li > a i {
            margin-right: 5px;
        }

.metismenu > li > a {
    border-bottom: 1px solid #eee;
    padding: 7px 15px;
}

.metismenu .arrow {
    float: right;
    position: absolute;
    right: 10px;
    top: 14px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}

    .metismenu .arrow:before {
        content: "\f196";
    }

.metismenu .active > a > .arrow:before {
    content: "\f147";
}

.metismenu .nav-second-level > li a {
    padding: 7px 15px;
    padding-left: 45px;
}

.metismenu .nav-third-level > li a {
    padding: 7px 15px;
    padding-left: 55px;
}

@media (max-width: 991px) {
    .navbar-default .nav > li > a {
        padding: 10px 12px;
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 12px;
    }

        .navbar-default .nav > li > a i {
            margin-right: 3px;
        }

    .navbar-inverse .nav > li > a {
        padding: 10px 11px;
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 12px;
    }

        .navbar-inverse .nav > li > a i {
            margin-right: 3px;
        }
}

/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    font-family: Arial;
    width: 100%;
    height: 37px;
    line-height: 1.42857143;
}

    .custom-select select {
        display: none; /*hide original SELECT element:*/
    }

.select-selected {
    background-color: DodgerBlue;
}

    /*style the arrow inside the select element:*/
    .select-selected:after {
        position: absolute;
        content: "";
        top: 14px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #ccc transparent transparent transparent;
    }

    /*point the arrow upwards when the select box is open (active):*/
    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #ccc transparent;
        top: 7px;
    }

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
    /*color: #ffffff;*/
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}
