/* font-face */
@font-face {
    font-family: 'Lato-Regular';
    src: url('../fonts/Lato-Regular.eot');
    src: url('../fonts/Lato-Regular.woff2') format('woff2'), url('../fonts/Lato-Regular.woff') format('woff'), url('../fonts/Lato-Regular.svg#Lato-Regular') format('svg'), url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato-Light';
    src: url('../fonts/Lato-Light.eot');
    src: url('../fonts/Lato-Light.woff2') format('woff2'), url('../fonts/Lato-Light.woff') format('woff'), url('../fonts/Lato-Light.svg#Lato-Light') format('svg'), url('../fonts/Lato-Light.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato-Medium';
    src: url('../fonts/Lato-Medium.woff') format('woff'), url('../fonts/Lato-Medium.svg#Lato-Medium') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato-Bold';
    src: url('../fonts/Lato-Bold.eot'); /* IE9 Compat Modes */
    src: url('../fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/Lato-Bold.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Lato-Bold.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Lato-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato-Semibold';
    src: url('../fonts/Lato-Semibold.woff') format('woff'), url('../fonts/Lato-Semibold.svg#Lato-Semibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

*,
:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    line-height: 1.4;
    font-size: 14px;
    color: #2c2c2c;
    font-family: 'Lato-Regular';
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a:active,
a:hover {
    outline: 0 !important;
    text-decoration: none;
    color:#333;
}
a, img a {
    border: 0;
    text-decoration: none;
    color:#333;
}

a, button, input {
    transition: all ease-in .1s;
    -moz-transition: all ease-in .1s;
    -ms-transition: all ease-in .1s;
    -o-transition: all ease-in .1s;
    -webkit-transition: all ease-in .1s;
}

:focus {
    outline: 0px !important;
    outline-offset:0 !important;
    text-decoration: none !important;
}
button:focus {
    color:#fff;
}

img {
    height: auto;
    max-width: 100%;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*Initial css*/
.clearfix:after {
    clear: both;
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

/* start commented backslash hack \*/

* html .clearfix {
    height: 1%;
}

/* close commented backslash hack */

html,
body {
    height: 100%;
}
.scroll_to_top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 143, 194,0.3);
    color:#fff;
    text-align: center;
    z-index: 9999;
    border-radius: 2px;
    display: none;
}
.scroll_to_top .fa-arrow-up {
    margin-top: 14px;
}
.scroll_to_top:hover {
    background: #008fc2;
    color:#fff;
}
.alert-message {
    position: absolute;
    top: 50%;
    left: 50% !important;
    -webkit-transform: translate(-50%,-50%) !important;
    -moz-transform: translate(-50%,-50%) !important;
    transform: translate(-50%,-50%) !important;
    z-index: 1;
    background: #efefef;
    width: 350px;
    padding: 56px;
    text-align: center;
    font-size: 15px;
}
.alert .close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
}

/* header */

.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    background: #fff;
    top:0;
    left:0;
    right:0;
    transition: all ease-in .1s;
    -moz-transition: all ease-in .1s;
    -ms-transition: all ease-in .1s;
    -o-transition: all ease-in .1s;
    -webkit-transition: all ease-in .1s;
    -webkit-box-shadow: 0px 1px 8px 0px rgba(204,204,204,1);
    -moz-box-shadow: 0px 1px 8px 0px rgba(204,204,204,1);
    box-shadow: 0px 1px 8px 0px rgba(204,204,204,1);
}
.header_shadow {
    box-shadow: 0px 0px 21px -4px rgba(0,0,0,0.5);
}
.top-header-content {
    padding: 15px 0 10px;
    position: relative;
}
.top-contact {
    float: left;
    margin-left: 45px;
}
.top-contact a span {
    display: none;
}
.top_menu {
    display: inline-block;
}
.top-icon {
    vertical-align: middle;
    margin-top: -2px;
    width: 21px;
}
.top-login {
    float: right;
    position: relative;
}
.top-login ul.top_menu > li {
    float: left;
    margin-bottom: -5px;
    position: relative;
    cursor: pointer;
}
.top-login ul.top_menu > li:not(:first-child) {
    margin-left: 15px;
}
.top-header-content .small-label {
    position: relative;
    height: 22px;
    width: 22px;
    background: url(../images/user_icon.png) no-repeat;
    display: inline-block;
}
.top-header-content .small-label span {
    content: '';
    top: -8px;
    left: -11px;
    background: #e10001;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    font-style: initial;
    font-size: 10px;
    font-weight: 400;
    padding: 2px 6px;
    position: absolute;
    line-height: 13px;
}
.top-header-content a:hover,
.top-header-content a:active,
.top-header-content a:focus {
    text-decoration: none;
}
.top_menu li a > span {
    color:#0089c0;
    font-style: italic;
    margin-right: 7px;
}
.top_menu li a > span.welcome-hide {
    font-style: normal;
    color:#2c2c2c;
    display: none;
}

.m-search-top {
    display: inline-block;
    margin-right: 16px;
    cursor: pointer;
    vertical-align: top;
}
.m-search-top .fa {
    color: #0088c0;
    font-size: 20px;
    vertical-align: middle;
}
.search {
    position: absolute;
    top: 53px;
    right: 0;
    width: 100%;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    transition: 0.2s;
    padding: 0 13px;
}
.search .form_group input {
    padding-right: 32px !important;
    background:#fff !important;
}
.search .form_group .fa-search {
    position: absolute;
    top: 11px;
    right: 10px;
    color: #d6d6d6;
}
.search-show {
    right:0;
}
.m-search-hide {
    right:-106%;
}
.brand_logo {
    margin-top: -21px;
    margin-left: auto;
    margin-right: auto;
    width:128px;
    display: none;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.brand_logo img {
    padding-right: 0px;
}

/* toggle */
.navbar_toggle {
    position: absolute;
    overflow: hidden;
    cursor: pointer;
    padding: 6px 5px;
    background: #0088c0;
    border: none;
    border-radius: 3px;
    left: 5px;
    top: 8px;
    display: block;
}
.navbar_toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    display: block;
    margin-bottom: 4px;
}
.navbar_toggle span:last-child {
    margin-bottom: 0;
}
.nav_menu > ul > li {
    display: block;
    border-bottom: 1px solid #fff;
}
.nav_menu > ul > li > a {
    display: block;
    color:#fff;
    font-size: 12px;
    text-transform: uppercase;
    background: #0088c0;
}
.mb-drp {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    z-index: 99;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    cursor: pointer;
}
.fa-angle {
    font-size: 20px !important;
}
.fa-angle:after {
    display: none;
}
.open_submenu.active .fa-angle:before {
    display: none;
}
.open_submenu.active .fa-angle:after {
    display: block !important;
}
.nav_menu > ul > li > a.active,
.nav_menu > ul > li > a:hover {
    display: block;
    color: #fff;
    background: #152f44;
}

/* sub menu */
.inner_dropdown {
    width:100%;
    background: #fff;
    padding: 14px;
    display: none;
    -webkit-box-shadow: 0 4px 15px -7px rgba(0,0,0,0.2);
    box-shadow: 0 4px 15px -7px rgba(0,0,0,0.2);
}
.inner_dropdown.active {
    display: block !important;
}
.inner_dropdown > ul {
    overflow: hidden;
    text-align: left;
}
.inner_dropdown > ul > li {
    position: relative;
}
.sub_menu ul {
    margin-bottom: 14px;
}
.sub_menu ul li {
    position: relative;
}
.sub_menu ul li:nth-child(1) {
    font-size: 16px !important;
    color:#0088c0;
}
.sub_menu ul li a {
    padding: 2px 0;
    display: block;
    font-size: 13px;
    color:#777;
}
/* dynamic sub menu */
.dynamic_submenu {
    display: none;
    width: 100%;
    background: #fff;
    padding: 14px;
}
.dynamic_submenu.active {
    display: block !important;
}
.opened {
    left:0 !important;
}

.main-container {
    padding-top: 45px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.resize-main-container {
    padding-top: 146px !important;
}

/* footer */
.footer-main {
    position: relative;
}
.footer-citycontainer {
    margin-right: auto;
    margin-left: auto;
}
.footer-inner {
    background: #0d1c29;
    overflow: hidden;
    padding-top:50px;
    padding-bottom:15px;
}

/* footer menu */
.footer_pad { padding:0 20px; }
.footer_menu {
    padding-right: 50px;
    float: left;
}
.footer_menu:last-child {
    padding-right: 0;
}
.footer_menu ul li a,
.footer_menu ul li a img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.f_menu_4 {
    float:right;
}
.f_menu_4 ul li {
    float: left;
    padding-right: 18px;
}
.f_menu_4 ul li a:hover img {
    opacity: 0.7;
}
.f_menu_4 ul li:last-child {
    padding-right:0;
}
.f_menu_4 h4 {
    font-family: 'Lato-Medium';
    font-size: 16px;
    color:#fff;
    margin-bottom: 15px;
}
.footer_menu ul li {
    margin-bottom: 15px;
}
.footer_menu ul li a {
    color:#fff;
    font-size: 12px;
}

.footer_menu ul li a:hover {
    color:#0089c0;
}

/* footer info */
.footer_info {
    background: #0a1621;
    color:#fff;
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
    font-family: 'Lato-Light';
}

@media (max-width: 599px) {
    .brand-formobile {
        padding-top:20px;
        text-align: center;
    }
    .top-header-content {
        position: fixed;
        width: 100%;
        z-index: 999;
        background: #fff;
        top:0;
        left:0;
        right:0;
        padding-left: 3px;
        padding-right: 10px;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(204,204,204,1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(204,204,204,1);
        box-shadow: 0px 0px 10px 0px rgba(204,204,204,1);
    }
    .nav_menu {
        position: fixed;
        top: 0;
        left:-100%;
        width: 250px;
        height: 100%;
        background: #fff;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        -webkit-box-shadow: 0px 1px 8px 0px rgba(204,204,204,1);
        -moz-box-shadow: 0px 1px 8px 0px rgba(204,204,204,1);
        box-shadow: 0px 6px 8px 0px rgba(204,204,204,1);
        padding-top: 45px;
        z-index: 99;
        overflow-y: auto;
    }
    .nav_menu > ul > li {
        position: relative;
    }
    .nav_menu > ul > li > a {
        padding: 14px;
    }
    .footer_menu {
        width: 50%;
        margin-bottom: 19px;
    }
}
@media (max-width: 599px) {
    .inner_dropdown > ul > li {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .top-contact span { font-size: 12px; }
    .inner_dropdown {
        height: 162px;
        overflow: scroll;
    }
    .footer_menu { width: 50%; }
}

@media (min-width: 480px) {
    .main-inner-container {
        margin-bottom: 50px;
    }
    .top-header-content a.user-name { 
        font-size: 15px;
        margin-top: 0;
    }
    .top-contact a span { display: inline-block; }
    .top_menu li a > span.welcome-hide {
        display: inline-block;
    }
    .header {
        position: fixed;
        width: 100%;
        z-index: 999;
        background: #fff;
        top:0;
        left:0;
        right:0; 
    }

}

@media (min-width: 600px) {
    .small-header .nav_menu > ul > li {
        padding: 10px 16px;
    }
    .top-contact { margin-left: 0; }
    .main-container { padding-top: 245px; }
    .search { width: 250px;padding: 0;top:40px;}
    .m-search-hide { right:-100%; }
    .brand_logo { width:201px;display:block; }
    .navbar_toggle { display: none; }
    .top-login {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .brand-formobile {
        display: none;
    }
    .nav_menu {
        margin-top: 0px;
        display: block;
        position: relative;
    }
    .nav_menu > ul {
        text-align: center;
        margin: 0 -15px;
    }
    .nav_menu > ul > li {
        display: inline-block;
        padding: 15px 16px;
        border-bottom: none;
        border:1px solid transparent;
    }
    .nav_menu > ul > li.open_submenu > a .fa-angle {
        display: none;
    }
    .nav_menu > ul > li.active {
        border-color: #ccc;
        border-style: solid;
        border-width: 1px 1px 0 1px;
        background: #fff;
        cursor: pointer;
    }
    .nav_menu > ul > li > a {
        background: transparent;
        color:#2c2c2c;
    }
    .nav_menu ul > li > a.active {
        color:#0088c0;
        background: transparent;
    }
    .nav_menu ul > li > a:hover {
        color: #0088c0;
        background: transparent;
    }
    /* sub menu */
    .inner_dropdown {
        width:800px;
        border-top: 1px solid #ccc;
        position: absolute;
        top:49px;
        left:0;
        z-index: -1;
    }
    .inner_dropdown > ul > li {
        width:33.33%;
        float:left;
    }
    .nav_menu ul > li.subm:hover {
        border-color: #ccc;
        border-style: solid;
        border-width: 1px 1px 0 1px;
        background: #fff;
        cursor: pointer;
    }
    .nav_menu ul > li:hover .inner_dropdown,
    .nav_menu ul > li:hover .dynamic_submenu {
        display: block !important;
    }
    /* dynamic sub menu */
    .dynamic_submenu {
        width: 150px;
        background: #fff;
        border-top: 1px solid #ccc;
        padding: 14px;
        position: absolute;
        right: 2px;
        top: 49px;
        z-index: -1;
    }

}
.header .top-header-content .brand_logo { padding: 15px 0 0; }
.small-header .top-header-content .brand_logo {
    margin-top: -41px;
}
.small-header .top-header-content .brand_logo {
    width:80px;
}
.small-header .inner_dropdown {
    top:49px;
}

.error{
    color: red;
}

/* my profile */
.myprofile_wrapper {
    width:100%;
    margin:0 auto;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);
}
.myprofile-title h3 {
    background: #f5f5f5;
    border-bottom: 1px solid #ccc;
    padding: 15px 15px 10px;
    margin-bottom: 30px;
    font-size: 25px;
}
.profile-username {
    font-size: 25px;
    text-align: center;
    margin-top: 20px;
    color:#fff;
}
.myprofile-body .form-group .form-label {
    font-weight: bold;
    font-size: 18px;
}
.profile-block {
    display: table;
}
.profile-block {
    display: table;
    width:100%;
    margin:0 auto;
}
.pf-c1 {
    background: #0088c0;
    width: 100%;
    text-align: center;
    padding:30px 0 58px;
}
.pf-c2 {
    background: #e8e8e8;
    width: 100%;
    padding-bottom: 38px;
}
.photo-frame-wrap {
    padding: 3px;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: #fff;
}
.photo-frame {
    width: 194px;
    height: 194px;
    border-radius: 2px;
    position: relative;
}
.photo-upload-here img {
    position: absolute;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.photo-frame .image_upload_trigger {
    height: 38px;
    width: 38px;
}

@media (min-width: 768px) {
    .opened { left:-200px !important; }
    .sidenav-wrapper { left:0;}
    .nav_menu > ul > li > a { font-size:14px; }
    .footer_pad { padding:0 100px; }
    .footer_menu { padding-right: 53px; }
    .footer-main:before,
    .footer-main:after {
        content:'';
        position: absolute;
        top:0;
        height:80px;
        z-index: -1;
    }
    .footer-main:before {
        left:0;
        width:50%;
        background: #0089c0;
    }
    .footer-main:after {
        right:0;
        width:50%;
        background: #efefef;
    }
}

@media (min-width: 992px) {
    .nav_menu > ul { margin-left: 74px; }
    .nav_menu > ul > li,
    .small-header .nav_menu > ul > li { 
        padding: 15px 33px; 
    }
    .nav_menu > ul > li:nth-child(3) { margin-right: 196px; }
    .footer_menu { padding-right: 96px; }
    .footer-citycontainer {
        width:1170px;
    }
}

@media (min-width: 992px) and (max-width:1150px) {
    .nav_menu > ul > li { padding: 15px 23px; }
}
