/*    GLOBAL STYLES
===================================================================*/
/*=== CONTENT OF CSS FILE =========================================*/
#loader-overflow {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fefefe;
    z-index: 99999;
}

#loader3 {
    will-change: transform;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -20px 0 0 -20px;
    background-color: #b6b6b7;
    border-radius: 50%;
    -webkit-animation: scaleout 1.1s infinite ease-in-out;
    animation: scaleout 1.1s infinite ease-in-out;
    text-indent: -99999px;
    z-index: 999991;
}

@-webkit-keyframes scaleout {
    0% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes scaleout {
    0% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.0);
        -ms-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/* #CSS RESET
 ===================================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

:focus {
    outline: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html,
body {
    margin: 0;
    padding: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
th,
var {
    font-style: normal;
    font-weight: normal;
}

caption,
th {
    text-align: left;
}

body {
    border: 0 none;
    font-size: 100%;
    margin: 0;
    outline: 0 none;
    padding: 0;
    vertical-align: baseline;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: normal;
    color: #4e4e4e;
    background-color: #fff;
    -webkit-font-smoothing: antialiased !important;
    -webkit-text-size-adjust: 100% !important;
}

.bold {
    font-weight: bold !important;
}

.font-light {
    font-weight: 100;
}

.font-normal {
    font-weight: normal !important;
}

::-moz-selection {
    background-color: #ffea00;
    color: #4b4e53;
}

.relative {
    position: relative;
}

/* #SEARCH NEW
================================================== */
/***** MAIN COMPONENTS  *****/
.cd-main-content,
.cd-main-header {
    position: relative;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

@media only screen and (max-width: 1169px) {

    .cd-main-content.nav-is-visible,
    .cd-main-header.nav-is-visible {
        -webkit-transform: translateX(-260px);
        -ms-transform: translateX(-260px);
        transform: translateX(-260px);
    }

    .nav-on-left .cd-main-content.nav-is-visible,
    .nav-on-left .cd-main-header.nav-is-visible {
        -webkit-transform: translateX(260px);
        -ms-transform: translateX(260px);
        transform: translateX(260px);
    }
}

.cd-main-content {
    background: #e2e3df;
    min-height: 100vh;
    z-index: 2;
}

.cd-main-header {
    height: 50px;
    background: #ffffff;
    z-index: 3;
}

.nav-is-fixed .cd-main-header {
    /* add .nav-is-fixed class to body if you want a fixed navigation on > 1170px */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

@media only screen and (min-width: 1170px) {
    .cd-main-header {
        height: 80px;
    }

    .cd-main-header:after {
        content: "";
        display: table;
        clear: both;
    }
}

.cd-logo {
    position: absolute;
    top: 12px;
    left: 5%;
}

.cd-logo img {
    display: block;
}

@media only screen and (max-width: 1169px) {
    .nav-on-left .cd-logo {
        left: auto;
        right: 5%;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-logo {
        top: 26px;
        left: 4em;
    }
}

.cd-header-buttons {
    position: absolute;
    display: inline-block;
    padding: 0;
    top: 26px;
    right: 35px;
    z-index: 29;
    -webkit-transition: top .4s ease 0s;
    -o-transition: top .4s ease 0s;
    transition: top .4s ease 0s;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.affix .cd-header-buttons {
    top: 10px;
    color: #8b8c8e;
    -webkit-transition: top .4s ease 0s;
    -o-transition: top .4s ease 0s;
    transition: top .4s ease 0s;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.cd-header-buttons li {
    display: inline-block;
}

@media only screen and (max-width: 1169px) {
    .nav-on-left .cd-header-buttons {
        right: auto;
        left: 5%;
    }

    .nav-on-left .cd-header-buttons li {
        float: right;
    }
}

/* #IMAGES
================================================== */
img.scale-with-grid {
    max-width: 100%;
    height: auto;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/*	#HEADER
=====================================================*/
.logo-row {
    position: relative;
    width: 133px;
    z-index: 1;
}

.header-transporent-bg-black {
    background: #303634;
}

/* #FEATURES 1 #NEW
=====================================================*/
.fes1-cont {
    padding-top: 130px;
    padding-bottom: 110px;
}

.fes1-img-cont {
    text-align: center;
}

.fes1-main-title-cont {
    margin: 30px 0 40px 0;
}

.title-fs-60 {
    color: #4b4e53;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 60px;
    line-height: 60px;
    font-weight: 300;
}

.line-3-100 {
    margin-top: 15px;
    height: 3px;
    width: 100px;
    background: #4b4e53;
}

.fes1-box {
    position: relative;
    padding-left: 55px;
    padding-bottom: 10px;
}

.fes1-box-icon {
    position: absolute;
    top: 0;
    left: 0;
    color: #4b4e53;
    font-size: 35px;
}

.fes1-box h3 {
    color: #4b4e53;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.fes2-box {
    position: relative;
    padding-left: 55px;
    padding-bottom: 10px;
}

.fes2-box-icon {
    position: absolute;
    top: 0;
    left: 0;
    color: #4b4e53;
    font-size: 35px;
}

.fes2-box h3 {
    color: #4b4e53;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* #FEATURES 2-3 #NEW
=====================================================*/
@media only screen and (min-width: 992px) {
    .left-50 {
        left: 50%;
    }

    .right-50 {
        right: 50%;
    }
}

.fes1-img {
    background: url(../images/fes1.jpg) 50% 50% no-repeat;
    width: 100%;
    display: block;
    position: relative;
    background-size: cover;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
}

.fes2-main-text-cont {
    margin: 0 auto;
    padding: 145px 50px 140px 50px;
    max-width: 500px;
}

.fes2-text-cont {
    margin-top: 30px;
}

.fes2-img {
    background: url(../images/fes2.jpg) 50% 50% no-repeat;
    width: 100%;
    display: block;
    position: relative;
    background-size: cover;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
}

.fes2-img-02 {
    background: url(../images/003-top.jpg) 50% 50% no-repeat;
    width: 100%;
    display: block;
    position: relative;
    background-size: cover;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
}

/* #FEATURES 4 #NEW
=====================================================*/
@media only screen and (max-width : 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .row-sm-fix {
        margin-right: -20px;
        margin-left: -20px;
    }

    .fes1-cont {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .fes4-cont {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .title-fs-60 {
        font-size: 40px;
        line-height: 40px;
    }

    .line-3-100 {
        margin-top: 10px;
    }

    .fes1-img-cont img {
        height: 250px;
    }

    .fes2-main-text-cont {
        padding: 70px 30px 70px 30px;
    }
}

@media only screen and (max-width : 480px) {
    .p-140-cont {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.white-bg {
    background-color: #fff;
}

.grey-light-bg {
    background-color: #eee;
}

.grey-dark-bg,
.header.no-transparent .header-wrapper.grey-dark-bg {
    background-color: #303236;
}

.yellow-bg {
    background-color: #ffea00 !important;
}

.font-black {
    color: #4b4e53 !important;
}

.font-dark {
    color: #101010;
}

.font-text {
    color: #7e8082;
}

@media (max-width: 992px) {
    .fes7-img-cont {
        position: relative;
    }

    .fes7-img {
        position: relative;
        height: 390px;
    }
}

/* #STATICK MEDIA #NEW
=====================================================*/
.sm-img-bg {
    background-position: 50% 0px;
}

.sm-img-bg-fullscr {
    background-position: 50% 0px;
    background-size: cover;
    width: 100%;
    display: block;
    position: relative;
    background-size: cover;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background-repeat: no-repeat;
}

.sm-video-bg {
    background-image: url(../images/static-media/video-bg.jpg);
    background-position: 50% 0px;
    overflow: hidden;
    position: relative;
}

.sm-content-cont {
    display: table;
    height: 600px;
}

.sm-content-cont-660 {
    height: 660px;
}

.sm-content-cont-fullscr {
    display: table;
}

@media only screen and (max-width: 767px) {
    .sm-content-cont {
        height: 350px;
        /*300*/
    }

    .sm-content-cont .light-72-wide,
    .sm-content-cont-fullscr .light-72-wide {
        font-size: 25px;
        line-height: 30px;
        letter-spacing: 3px;
    }

    .light-72-wide,
    .sm-content-cont .light-50-wide {
        font-size: 21px;
        line-height: 30px;
        letter-spacing: 1px;
    }

    .slider-text-bg {
        height: 45%;
        height: 50%;
        width: 100%;
        background: rgba(255, 255, 255, .5);
        background: rgba(103, 103, 103, 1);
        background: rgba(13, 13, 13, .75);
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        z-index: 0;
    }

    .port-filter a {
        width: 40%;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {

    .sm-content-cont .light-72-wide,
    .sm-content-cont-fullscr .light-72-wide {
        letter-spacing: 5px;
    }
}

.sm-cont-middle {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

/* #PAGE TITLE #NEW
=====================================================*/
.breadcrumbs {
    margin-top: 53px;
    text-align: right;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: #7e8082;
    font-weight: 500;
}

.breadcrumbs a:hover,
.bread-current {
    color: #cc0000;
}

.grey-dark-bg .page-title,
.grey-dark-bg .page-title-big {
    color: #fff;
}

.grey-dark-bg .page-sub-title {
    color: rgba(255, 255, 255, .7);
}

.page-title-cont.grey-dark-bg a {
    color: rgba(255, 255, 255, .8);
}

.page-title-cont.grey-dark-bg a:hover {
    color: rgba(255, 255, 255, 1);
}

.page-title-cont.grey-dark-bg .bread-current {
    color: #fff;
}

.page-title-img {
    width: 100%;
    display: block;
    position: relative;
    background-size: cover;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.page-title-small {
    padding-top: 118px;
    padding-bottom: 58px;
}

.page-title-small .page-title {
    margin-top: 40px;
    margin-bottom: 10px;
}

.page-title-small .breadcrumbs {
    margin-top: 40px;
}

.blog-single-fullwidth-img {
    padding-top: 550px;
}

/* #FOOTER 1 NEW
=====================================================*/
.footer-copy {
    margin-top: 5px;
}

.footer-copy a {
    font-size: 11px;
    color: #4c4d4e;
}

.footer-soc-a a {
    font-size: 16px;
    padding: 12px;
}

/* #FOOTER 2 NEW
=====================================================*/
.footer-2-copy-cont {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.widget {
    margin-bottom: 60px;
}

.footer-2-copy {
    font-size: 11px;
    color: #7e8082;
}

.footer-2-copy:hover {
    color: #101010;
}

.footer-2-soc-a a {
    font-size: 16px !important;
    padding: 7px 11px !important;
}

.logo-footer {
    max-height: 60px;
}

.logo-footer-cont {
    margin-bottom: 50px;
}

.footer-2-text-cont {
    margin-bottom: 24px;
}

.widget h4 {
    margin-top: 16px;
    margin-bottom: 21px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.widget .links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget .links-list li {
    padding-bottom: 7px;
}

.entry-title h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.widget .post-prev-title a {
    font-size: 14px;
    line-height: 21px;
    font-weight: normal;
}

.widget .post-prev-info {
    text-transform: none;
    line-height: 18px;
}

.container-m-60 {
    padding-right: 60px;
    padding-left: 60px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    width: 100%;
}

@media (max-width: 992px) {
    .container-m-60 {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* #MENU #NEW
=====================================================*/
/***** #MAIN-MENU MENU *****/
#main-menu {
    z-index: 1;
}

#main-menu .navbar {
    background: none;
    border: 0 none;
    margin: 0;
}

#main-menu .navbar .navbar-collapse {
    padding: 0;
    position: static;
    border: none;
    box-shadow: none;
}

#main-menu .navbar .nav {
    margin: 0;
    position: static;
}

#main-menu .navbar .nav > li {
    position: relative;
    z-index: 5;
}

#main-menu .navbar .nav > li > a {
    font-size: 13px;
    color: #5c6066;
    z-index: 1;
    text-shadow: none;
    transition: padding .4s ease 0s, border-color .6s ease 0s;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.black-header #main-menu .navbar .nav > li > a {
    color: rgba(255, 255, 255, .85);
}

/* Effect 3: bottom line slides/fades in */
.affix #main-menu .navbar .nav > li > a {
    transition: padding .4s ease 0s;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

#main-menu .navbar .nav > li > a .main-menu-title {
    line-height: 10px;
    font-weight: 400;
    font-size: 13px;
}

@media only screen and (max-width: 767px) {
    .main-navi-end {
        padding-bottom: 20px;
    }
}

#main-menu .navbar .nav > li > a {
    padding: 38px 3px 5px 3px;
    margin: 0 12px 17px 12px;
    border-bottom: 1px solid rgba(45, 78, 83, 0);
    color: #121212;
    letter-spacing: 1px;
}

.affix.header-1 #main-menu .navbar .nav > li > a {
    margin-bottom: 13px;
    padding: 20px 3px 5px 3px;
}

.header-1 #main-menu .navbar .nav > li.current > a {
    padding: 38px 3px 5px 3px;
    margin: 0 12px 17px 12px;
    border-bottom: 1px solid rgba(230, 1, 1, 1);
    color: #111;
}

.black-header #main-menu .navbar .nav > li.current > a {
    border-bottom: 1px solid #ffcc00;
    color: #fff;
}

.affix.header-1 #main-menu .navbar .nav > li.current > a {
    margin-bottom: 13px;
    padding: 20px 3px 5px 3px;
    border-color: rgba(230, 1, 1, 1);
}

.affix.header-1.black-header #main-menu .navbar .nav > li.current > a {
    border-color: #ffcc00;
}

/***** #INDENT MAIN CONTAINER	( responsive in "media query" section)*****/
.page-main-content.indent-header-1.affix-indent {
    padding-top: 60px;
    -webkit-transition: padding-top .4s ease;
    -o-transition: padding-top .4s ease;
    transition: padding-top .4s ease;
}

.page-main-content.indent-header-1 {
    padding-top: 95px;
    -webkit-transition: padding-top .4s ease;
    -o-transition: padding-top .4s ease;
    transition: padding-top .4s ease;
}

/************************************/
.header.header-not-sticky {
    position: relative !important;
}

.header.header-always-sticky {
    position: fixed !important;
    z-index: 9999;
    -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 1px 15px rgba(0, 0, 0, .15);
}

/***** #STICKY ICON BUTTON ANIMATION	*****/
.main-menu-icon {
    display: block;
    font-size: 18px;
    font-weight: 100 !important;
    padding: 12px;
    border: 2px solid #a3a7ad;
    border-radius: 50%;
    color: #a3a7ad;
    height: 46px;
    width: 46px;
}

.main-menu-icon.icon_house_alt.main-menu-icon {
    padding-top: 10px;
}

.main-menu-icon.icon_toolbox_alt.main-menu-icon {
    padding-top: 10px;
}

.main-menu-icon.icon_mail_alt.main-menu-icon {
    padding-bottom: 14px;
    padding-top: 10px;
}

#main-menu .navbar .nav > li:hover > a {
    color: #cc0000;
    font-weight: bold;
}

.black-header #main-menu .navbar .nav > li:hover > a {
    color: #ffcc00;
    font-weight: 900;
}

#main-menu .navbar .nav .parent {
    position: relative;
}

#main-menu .sub {
    background: #4B4E53;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .2);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .2);
    display: none;
    margin: 0;
    padding: 10px 10px 10px 24px;
    position: absolute;
    z-index: 905;
}

#main-menu .sub li {
    font-size: 12px;
    line-height: 24px;
    text-transform: uppercase;
}

/*****	#ANIMATION FOR SUB MENU	*****/
#main-menu .parent:hover > .sub {
    display: block;
    -webkit-animation: fadeIn .4s;
    animation: fadeIn .4s;
}

#main-menu .sub a {
    color: #d3d3d3;
    display: block;
    text-decoration: none;
    min-width: 160px;
    padding: 9px;
    padding-left: 0;
    -webkit-transition: color .3s ease 0s, padding .3s ease 0s;
    -o-transition: color .3s ease 0s, padding .3s ease 0s;
    transition: color .3s ease 0s, padding .3s ease 0s;
    /* -ms-transition: none; */
}

#main-menu .sub a:hover {
    color: #fff;
    padding-left: 7px;
    -webkit-transition: color .2s ease 0s, padding .3s ease 0s;
    -o-transition: color .2s ease 0s, padding .3s ease 0s;
    transition: color .2s ease 0s, padding .3s ease 0s;
}

#main-menu .sub a.current {
    color: #fff;
    -webkit-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
}

#main-menu .sub .parent:hover > a {
    color: #fff;
    padding-left: 7px;
}

#main-menu .sub .sub {
    left: 100%;
    top: 0;
}

#main-menu .navbar .nav .parent .parent > a:after {
    content: "\e232";
    font-family: linea-icons;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    font-size: 15px;
    display: block;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/****************************************************************************/
.header .primary .parent:hover > .sub {
    display: block;
}

#main-menu .megamenu .title {
    font-size: 18px;
    line-height: 25px;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 3px;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-weight: 300;
    color: #fff;
    border-bottom: 1px solid #585a5f;
}

.megamenu .box.col-md-3,
.megamenu .box.col-md-2,
.megamenu .box.col-md-4 {
    padding-left: 24px;
}

.megamenu .box.col-md-3 .icon {
    float: left;
    margin-right: 14px;
    margin-top: 3px;
    font-size: 16px;
    line-height: 16px;
}

#main-menu .megamenu > .sub a {
    width: 100%;
}

#main-menu .sub .sub .sub .sub {
    background: none;
    border: 0 none;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    left: 0;
    padding: 0;
    position: relative;
    -webkit-animation: fadeIn 0;
    animation: fadeIn 0;
}

#main-menu .sub .sub .sub .parent > a {
    background: none !important;
}

.navbar-collapse.right {
    border: none;
}

/* #PRIMARY MENU
================================================== */
.header .primary {
    margin-top: 7px;
}

.header .primary .navbar {
    margin: 0 0 0 80px;
}

.header .nav .open > a,
.header .nav .open > a:hover,
.header .nav .open > a:focus {
    background: none;
}

.header .primary .navbar .nav {
    float: none;
    margin: 0;
}

.header .primary .navbar .nav > li {
    padding: 0 4px;
    position: relative;
}

.header .primary .navbar .nav > li > a {
    border-width: 1px;
    border-color: transparent;
    color: #1e1e1e;
    padding: 11px 15px;
    text-shadow: none;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.header .primary .navbar .nav > li:hover > a {
    background: #fff;
    border-color: #ccc;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.header .primary .navbar .nav .parent {
    position: relative;
}

.header .primary .navbar .nav > li.parent:hover > a {
    background: #fff;
    border-bottom-color: transparent;
    border-radius: 3px 3px 0 0;
}

.header .primary .navbar .nav > li.parent:hover > a:after {
    background: #fff;
    bottom: 0;
    content: "";
    display: block;
    height: 10px;
    left: 5px;
    margin: 0 0 -3px 0;
    position: absolute;
    right: 5px;
    z-index: 49;
}

.header .primary .sub {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0 3px 3px 3px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    display: none;
    font-size: 13px;
    line-height: 24px;
    padding: 15px 20px;
    position: absolute;
    z-index: 48;
}

.header .primary .sub li {
    font-size: 13px;
    line-height: 24px;
}

.header .primary .parent:hover > .sub {
    display: block;
    -webkit-animation: fadeIn .4s;
    animation: fadeIn .4s;
}

.header .primary .sub a {
    color: #1e1e1e;
    display: block;
    text-decoration: none;
    width: 175px;
    -webkit-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    transition: opacity .2s linear;
}

.header .primary .sub a:hover {
    opacity: .6;
    filter: alpha(opacity=60);
    -webkit-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    transition: opacity .2s linear;
}

.header .primary .sub .sub {
    left: 100%;
    top: 0;
}

.header .primary .navbar .nav .parent .parent > a,
.header .primary .navbar .nav .parent:hover .parent > a {
    background-image: url("../images/caret.png");
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

.header .primary .navbar .nav .parent.megamenu {
    position: static;
}

.header .primary .navbar .nav .parent.megamenu > a {
    position: relative;
}

.header .primary .navbar .nav > li.parent.megamenu:hover > a:after {
    margin-left: -5px;
    margin-right: -5px;
}

.header .primary .megamenu > .sub {
    border-radius: 3px;
    left: 4px;
    margin: 0;
    padding: 35px 40px 35px 0;
    width: 844px;
}

.header .primary .megamenu > .sub .box {
    float: left;
    padding: 0 0 28px 40px;
    width: 240px;
}

.header .primary .megamenu.four-columns > .sub .box {
    width: 170px;
}

.header .primary .megamenu.five-columns > .sub .box {
    width: 128px;
}

.header .primary .megamenu > .sub .box.first {
    clear: left;
}

.header .primary .megamenu > .sub .promo-block {
    float: right;
    font-size: 14px;
    line-height: 18px;
    position: relative;
}

.header .primary .megamenu > .sub .promo-block:before {
    border-left: 1px solid #e6e6e6;
    bottom: -35px;
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: -35px;
}

.header .primary .megamenu > .sub .promo-block .promo-article {
    margin: 2px 0 11px;
}

.header .primary .megamenu > .sub .promo-block .promo-article img {
    float: left;
    margin: 7px 19px 15px 0;
    max-height: 70px;
    max-width: 70px;
}

.header .primary .megamenu > .sub .promo-block p {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 18px 0;
}

.header .primary .megamenu > .sub .promo-block .big-image {
    margin-bottom: -63px;
}

.header .primary .megamenu .title {
    font-size: 13px;
    line-height: 23px;
    margin: 0 0 3px;
    text-transform: uppercase;
}

.header .primary .megamenu > .sub a {
    width: 100%;
}

.header .primary .sub .sub .sub .sub {
    background: none;
    border: 0 none;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    left: 0;
    padding: 0;
    position: relative;
    -webkit-animation: fadeIn 0;
    animation: fadeIn 0;
}

.header .primary .sub .sub .sub .parent > a {
    background: none !important;
}

/***********************************************************/
/* #HEADER FIX #NEW
=====================================================*/
.header .search .main-menu-icon {
    -webkit-transition: margin-top .4s ease, margin-bottom .4s ease, border .9s ease .2s;
    -o-transition: margin-top .4s ease, margin-bottom .4s ease, border .9s ease .2s;
    transition: margin-top .4s ease, margin-bottom .4s ease, border .9s ease .2s;
}

.affix.header .search .main-menu-icon {
    border-color: rgba(0, 0, 0, 0);
    opacity: 1;
    height: 46px;
    width: 46px;
    padding: 12px;
    margin-bottom: 7px;
    margin-top: 7px;
    -webkit-transition: margin-bottom .3s ease, margin-top .3s ease, border .3s ease;
    -o-transition: margin-bottom .3s ease, margin-top .3s ease, border .3s ease;
    transition: margin-bottom .3s ease, margin-top .3s ease, border .3s ease;
}

.header .sb-search-open .main-menu-icon {
    -webkit-transition: opacity .5s ease .2s, height .3s ease 0s, margin-bottom 0s ease 0s, margin-top 0s ease 0s, border .5s ease;
    -o-transition: opacity .5s ease .2s, height .3s ease 0s, margin-bottom 0s ease 0s, margin-top 0s ease 0s, border .5s ease;
    transition: opacity .5s ease .2s, height .3s ease 0s, margin-bottom 0s ease 0s, margin-top 0s ease 0s, border .5s ease;
}

.header {
    position: fixed;
    left: 0;
    -webkit-transition: background .3s ease, height .4s ease;
    -o-transition: background .3s ease, height .4s ease;
    transition: background .3s ease, height .4s ease;
    width: 100%;
    z-index: 29;
}

.affix.header {
    position: fixed;
    height: 60px;
    -webkit-transition: height .4s ease;
    -o-transition: height .4s ease;
    transition: height .4s ease;
}

.header-big-offset {
    padding-top: 136px;
}

.header-wrapper {
    position: relative;
    width: 100%;
    -webkit-transition: height .3s ease 0s, background .3s ease 0s;
    -o-transition: height .3s ease 0s, background .3s ease 0s;
    transition: height .3s ease 0s, background .3s ease 0s;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 29;
}

.header.no-transparent .header-wrapper {
    background: #fff;
}

.border-b {
    border-bottom: 1px solid #eee;
}

.affix .header-wrapper {
    /* position:fixed; */
    top: 0;
    left: 0;
    z-index: 100;
    background: #fff;
    -webkit-transition: height .3s ease 0s, background .3s ease 0s;
    -o-transition: height .3s ease 0s, background .3s ease 0s;
    transition: height .3s ease 0s, background .3s ease 0s;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 1px 15px rgba(0, 0, 0, .15);
}

#nav-below.header {
    position: relative;
}

.is-sticky .header {
    -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 1px 15px rgba(0, 0, 0, .15);
}

.header .container-m-30 {
    position: relative;
}

.header-no-bg,
.header-no-bg .header-wrapper {
    background: none;
}

.affix.header-no-bg,
.affix.header-no-bg .header-wrapper {
    background: #fff;
}

.container-m-30 {
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    width: 100%;
}

@media (min-width: 1025px) {
    .indent-header {
        padding-top: 93px;
    }
}

/***********************************************************/
/* COLOR HEADER FIX #NEW
===============================================*/
.affix.black-header .header-wrapper {
    background: #3b526a;
}

.header.no-transparent .header-wrapper {
    background: #3b526a;
}

header.affix .logo-2,
.header.affix.no-transparent .logo-2 {
    padding-top: 0px;
    padding-bottom: 10px;
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.header.no-transparent .logo-2 {
    padding: 26px 0 25px 0;
}

.logo-2,
.header.no-transparent .logo-2 {
    padding: 10px 0 10px 13px;
}

.header.mobile-no-transparent {
    margin-bottom: 0px;
}

.header.black-header.mobile-no-transparent {
    background: #3b526a;
}

/*--
/*--
/*--
/*--

/* #LOGO
================================================== */
.logo-container {
    width: 120px;
    background-color: #414146;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

/* .logo-container-2 {
	transition: all .3s ease 0s;
} */
header .logo {
    display: block;
    padding-bottom: 15px;
    padding-left: 45px;
    padding-top: 81px;
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

footer .logo {
    display: block;
    padding-bottom: 15px;
    padding-left: 45px;
    padding-top: 81px;
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    height: 120px;
}

header.affix .logo {
    padding-top: 20px;
    padding-bottom: 16px;
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

header.affix .logo-2,
.header.affix.no-transparent .logo-2 {
    padding-top: 9px;
    padding-bottom: 9px;
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.logo-img {
    height: 42px;
}

.logo-img.logo-color-change {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.affix .logo-img.logo-color-change {
    -webkit-filter: none;
    filter: none;
}

header .logo .logo-img {
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

header.affix .logo .logo-img {
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.logo-2 {
    display: block;
    padding: 36px 0 25px 0;
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.header.no-transparent .logo-2 {
    padding: 26px 0 15px 0;
}

.logo-3 {
    text-align: left;
    display: block;
    padding: 15px 0 10px 10px;
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

/* #BREADCRUMB
================================================== */
/* #FOOTER
================================================== */
/*****	#CONTACT FOOTER	*****/
.contact-text-container {
    padding-left: 50px;
    padding-top: 12px;
    min-height: 46px;
    opacity: .8;
}

.right-1024 {
    float: right;
}

.right {
    float: right;
}

.left {
    float: left;
}

.right-text {
    text-align: right;
}

.center-text {
    text-align: center;
}

/*	#TYPOGRAPHY
===============================================================*/
/***** #HEADINGS *****/
h1,
h2,
h3 {
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-weight: normal;
    color: #4b4e53;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #4b4e53;
    margin: 0;
}

h1 {
    font-size: 32px;
    line-height: 45px;
    margin: 40px 0 32px 0;
}

h2 {
    font-size: 28px;
    line-height: 32px;
    margin: 27px 0 18px 0;
}

h3 {
    font-size: 24px;
    letter-spacing: normal;
    line-height: 33px;
    margin: 26px 0 16px 0;
}

h4 {
    font-size: 18px;
    letter-spacing: normal;
    line-height: 25px;
    margin: 21px 0 19px 0;
}

h5 {
    font-size: 14px;
    letter-spacing: normal;
    line-height: 25px;
    margin: 18px 0 13px 0;
}

h6 {
    font-size: 12px;
    letter-spacing: normal;
    line-height: 18px;
    margin: 18px 0 13px 0;
}

/*****	#DIVIDERS	*****/
hr {
    border-top: 1px solid #eee;
    margin: 22px 0 22px 0;
}

hr.gradient {
    background-image: -webkit-linear-gradient(left, transparent, rgba(0, 0, 0, .2), transparent);
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(0, 0, 0, .2)), to(transparent));
    background-image: -o-linear-gradient(left, transparent, rgba(0, 0, 0, .2), transparent);
    background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, .2), transparent);
    border: 0;
    height: 1px;
    margin: 22px 0 22px 0;
}

.label {
    font-weight: normal;
}

/*****	#BUTTONS	*****/
button {
    border: none;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.button {
    background-color: #ffea00;
    color: #4b4e53;
    border: none;
    border-radius: 2px;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    /****	add in anim	*******/
    outline: none;
    position: relative;
}

.button:hover {
    background-color: #4b4e53;
    color: #fff;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.button.small {
    font-size: 12px;
    line-height: 14px;
    padding: 12px 20px 10px 20px;
    display: inline-block;
}

.button.small-border {
    font-size: 12px;
    line-height: 14px;
    padding: 6px 20px;
    display: inline-block;
    border-bottom: 1px solid #FFFFFF !important;
    border-right: 1px solid #FFFFFF !important;
    -webkit-box-shadow: 2px 2px 0 rgba(0, 0, 0, .1) !important;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .1) !important;
}

/*****	#THIN BUTTONS	*****/
.button.thin,
.button.small.thin,
.button.medium.thin,
.button.large.thin {
    position: relative;
    display: inline-block;
    padding: 13px 13px 13px 13px;
    background-color: transparent;
    color: #7a7b80;
    border: 2px solid #c5c2c2;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.button.thin-bg-dark:hover {
    background-color: #ffea00 !important;
    color: #4b4e53 !important;
    border: 2px solid #ffea00 !important;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

/*****  #BUTTONS THIN COLORS  *****/
.button.thin.yellow {
    border-color: #ffea00;
    color: #ffea00;
}

.button.thin.yellow:hover {
    background-color: #ffea00;
    color: #4b4e53;
}

/*****	#HOVER THIN BUTTONS		*****/
.button.hover-thin {
    border: 2px solid #ffea00;
    color: #4b4e53;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.button.hover-thin:hover {
    background: none;
    border: 2px solid #dfdfdf;
    color: #4b4e53;
}

.button.medium.hover-thin {
    padding: 10px 5px;
}

.button.medium.thin.red {
    background: none;
    border-color: #a90000;
    color: #a90000;
}

.button.medium.thin.red:hover {
    background: #a90000;
    border: 2px solid #a90000;
    color: #fff;
}

.button.medium.hover-thin.blue {
    background: #0074c1;
    border-color: #0074c1;
    color: #fff;
}

.button.medium.hover-thin.blue:hover {
    background: none;
    border: 2px solid #0074c1;
    color: #0074c1;
}

.button.medium.hover-thin.green {
    background: #007e28;
    border-color: #007e28;
    color: #fff;
}

.button.medium.hover-thin.green:hover {
    background: none;
    border: 2px solid #007e28;
    color: #007e28;
}

.button.small.hover-thin {
    padding: 12px 5px 11px 5px;
    border-radius: 4px;
}

.button.medium.thin.red.hover-dark {
    background: none;
    border-color: #cc0000;
    color: #cc0000;
}

.button.red.hover-thin:hover {
    background: #484848;
    border: 2px solid #cc0000;
    color: #cc0000;
}

/*****	#HOVER THIN BUTTONS COLORS		*****/
.button.yellow.hover-thin {
    border-color: #ffea00;
    color: #484848;
}

.button.yellow.hover-thin:hover {
    background: none;
    border: 2px solid #ffea00;
    color: #484848;
}

.button.red.hover-thin {
    background: #cc0000;
    border-color: #cc0000;
    color: #fff;
}

.button.red.hover-thin:hover {
    background: none;
    border: 2px solid #cc0000;
    color: #cc0000;
}

.button.deeporange.hover-thin {
    background: #da3300;
    border-color: #da3300;
    color: #fff;
}

.button.deeporange.hover-thin:hover {
    background: none;
    border: 2px solid #ff5722;
    color: #ff5722;
}

.button.color-black {
    color: #4b4e53 !important;
}

/*****  #BUTTONS COLORS  *****/
.button.small.yellow {
    background-color: #ffea00;
    color: #4b4e53;
}

.button.small.yellow:hover {
    background-color: #4b4e53;
    color: #fff;
}

.button.yellow {
    background-color: #ffea00;
    color: #4b4e53;
}

.button.yellow:hover {
    background-color: #4b4e53;
    color: #fff;
}

.button.red {
    color: #fff;
    background-color: #cc0000;
}

.button.red:hover {
    background-color: #4b4e53;
    cursor: pointer;
}

.button.dark {
    color: #000;
    background-color: #f1f1f1;
    border: 2px solid #777;
}

.button.dark:hover {
    color: #fff;
    background-color: #4b4e53;
    cursor: pointer;
}

/****************************************/
a {
    color: #4b4e53;
    outline: none !important;
    text-decoration: none;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

a:hover {
    color: #97999c;
    text-decoration: none;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    cursor: pointer;
}

.a-text,
.a-text-cont a {
    color: #7e8082;
}

.a-text:hover,
.a-text-cont a:hover {
    color: #101010;
}

.a-blue {
    color: #37a2d6;
}

.a-blue:hover {
    color: #4b4e53;
}

a:focus {
    text-decoration: none !important;
}

a:hover,
a:focus {
    color: #97999c;
    text-decoration: none;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    cursor: pointer;
}

.black-text {
    color: #4B4E53 !important;
    border-color: #4B4E53 !important;
}

/* #BACK TO TOP BUTTON
================================================== */
#back-top {
    position: fixed;
    bottom: 16px;
    right: 13px;
    padding: 0;
    margin: 0;
    z-index: 20;
}

#back-top a {
    text-decoration: none;
    display: block;
    color: rgb(167, 15, 15);
    font-size: 42px;
    z-index: 999;
}

#back-top a:hover {
    color: rgba(36, 3, 3, 0.75)
}

.center {
    margin: 0 auto;
    max-width: 960px;
    width: 100%;
}

/*	#CLEARFIX
============================================================*/
.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.row:after,
.clearfix:after {
    clear: both;
}

.row,
.clearfix {
    zoom: 1;
}

.display-block-xs {
    display: none;
}

/******************************************************************************
  Max Width "480px"
*******************************************************************************/
@media (max-width: 480px) {
    .text-center-xxs {
        text-align: center;
    }

    .mt-0-xxs {
        margin-top: 0;
    }

    .ml-10-xxs {
        margin-left: 10px;
    }

    .font-32-wide-xxs {
        font-size: 32px;
        letter-spacing: 5px;
        line-height: 40px;
    }

    .display-no-xxs {
        display: none !important;
    }
}

/******************************************************************************
  Max Width "768px"
*******************************************************************************/
@media (max-width: 768px) {

    /*	#FOOTER 2 ====================================*/
    .footer-2-copy-cont .left,
    .footer-2-copy-cont .right {
        float: none;
    }

    .footer-2-copy-cont {
        text-align: center;
    }

    .text-center-sm {
        text-align: center;
    }
}

/******************************************************************************
  Max Width "600px"
*******************************************************************************/
@media (max-width: 600px) {
    .header .menu-btn-respons-container .btn-navbar.collapsed:before {
        display: none;
    }

    /*	#TESTIMONIALS ====================================*/
    .ts-text-container {
        padding-top: 20px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 13px;
    }

    .t-a-container {
        padding-bottom: 10px;
        margin-top: 10px;
    }

    .ts-img-container {
        display: none;
    }
}

/******************************************************************************
  Max Width "640px"
*******************************************************************************/
@media (max-width: 640px) {
    .nl-caption {
        display: none;
    }
}

/******************************************************************************
  Max Width "767px"
*******************************************************************************/
@media (max-width: 767px) {
    #main-menu .navbar-collapse.in {
        overflow: visible !important;
    }

    .text-center-xs {
        text-align: center;
    }

    .pt-20-xs {
        padding-top: 20px;
    }

    .pt-30-xs {
        padding-top: 30px;
    }

    .mt-0-xs {
        margin-top: 0;
    }

    .mt-40-xs {
        margin-top: 40px;
    }

    .display-block-xs {
        display: block;
    }
}

/******************************************************************************
  Min Width "768px"
*******************************************************************************/
/******************************************************************************
  Max Width "991px" - Min Width "768px"
*******************************************************************************/
@media (min-width: 768px) and (max-width: 1024px) {
    #main-menu .navbar-collapse.collapse {
        display: none !important;
    }

    #main-menu .navbar-collapse.collapse.in {
        display: block !important;
    }

    .navbar-nav {
        float: none
    }

    .navbar-nav > li {
        float: none
    }
}

/******************************************************************************
  Max Width "991px"  PHONE
*******************************************************************************/
@media (max-width: 991px) {
    .wow {
        visibility: visible !important;
        -webkit-animation: none !important;
        animation: none !important;
    }

    .hide-max-960 {
        display: none;
    }

    /*****	#MARGINS MOBILE	*****/
    .p-top-60-mobile {
        padding-top: 60px;
    }

    .m-top-0-mobile {
        margin-top: 0;
    }

    .m-top-min-40-mobile {
        margin-top: -40px;
    }
}

@media (max-width: 1024px) {
    .hide-lg {
        display: none;
    }

    /*	#HEADER MENU ====================================*/
    /*****	#HEADER	*****/
    .container-m-30 {
        padding: 0;
    }

    .nofloat.col-md-3,
    .nofloat.col-md-4,
    .nofloat.col-md-2 {
        float: none;
        width: auto;
    }

    .logo-2,
    .header.no-transparent .logo-2 {
        padding: 17px 0 17px 13px;
    }

    .logo-row {
        width: auto;
    }

    .header-side-menu .logo-row {
        width: 180px;
    }

    .cd-header-buttons {
        top: 21px;
        right: 50px;
        margin: 0;
        padding: 0;
    }

    .affix .cd-header-buttons {
        top: 13px;
    }

    .hamb-mob-icon {
        display: block;
        float: left;
        padding: 25px 17px 22px 5px;
        font-size: 29px;
        color: #4b4e53;
        -webkit-transition: padding .4s ease 0s;
        -o-transition: padding .4s ease 0s;
        transition: padding .4s ease 0s;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .black-header .hamb-mob-icon,
    .header-black-white .hamb-mob-icon {
        color: #fff;
    }

    .affix.header-black-white .hamb-mob-icon {
        color: #4b4e53;
    }

    .affix .hamb-mob-icon {
        padding: 17px 17px 13px 5px;
        -webkit-transition: padding .4s ease 0s;
        -o-transition: padding .4s ease 0s;
        transition: padding .4s ease 0s;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /****************************************/
    .menu-row {
        margin-top: 0px !important;
    }

    .affix.header .btn-navbar .main-menu-icon {
        display: block;
    }

    .header.header-always-sticky {
        height: 60px;
    }

    .header-1 .main-content {
        margin-top: 0px;
    }

    .menu-btn-respons-container {
        position: absolute;
        right: 0;
        top: 0;
    }

    .main-menu-container {
        background-color: #4b4e53;
    }

    .header .logo,
    .header-maintenance .logo {
        padding-top: 21px;
        -webkit-transition: all .3s ease 0s;
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
    }

    .menu-contact-info .contact-list {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .menu-address-container {
        padding-top: 12px;
    }

    .menu-map-container {
        margin-left: -20px;
        margin-bottom: -5px;
    }

    .menu-contact-info {
        margin: 0;
    }

    #main-menu .sub .a-mail {
        padding: 0 !important;
    }

    nav .main-menu-icon {
        display: none;
    }

    .btn-navbar .icon_menu.main-menu-icon {
        float: left;
        margin: 0;
        margin-top: 7px;
        padding-bottom: 0px;
        padding-top: 13px;
    }

    /***** #INDENT MAIN CONTAINER	*****/
    .header {
        position: relative;
        margin-bottom: -76px;
        width: auto;
        height: auto;
    }

    .header.mobile-no-transparent {
        margin-bottom: 0px;
    }

    .header.black-header.mobile-no-transparent {
        background: #24283f;
    }

    .header .right-box-wrapper {
        text-align: right;
    }

    .right-1024 {
        float: none;
    }

    #main-menu {
        margin: 0;
        text-align: left;
    }

    .header .navbar {
        margin: 0;
        min-height: inherit;
        position: static;
    }

    .header .menu-btn-respons-container .btn-navbar {
        background: #fff;
        border: none !important;
        display: block;
        margin: 0;
        padding: 0;
    }

    .header .menu-btn-respons-container .btn-navbar:before {
        content: "";
        display: none;
    }

    .header .menu-btn-respons-container .btn-navbar.collapsed:before {
        display: block;
    }

    .header .menu-btn-respons-container .btn-navbar.collapsed {
        background: none;
        border: 1px solid transparent;
        border-bottom: 0 none;
    }

    .header .btn-navbar .text {
        color: #1e1e1e;
        float: left;
        line-height: 16px;
        padding: 0;
        font-family: 'Lato', Arial, Helvetica, sans-serif;
        font-weight: 300;
        font-size: 14px;
        padding-top: 23px;
        padding-right: 15px;
    }

    #main-menu .navbar .nav {
        padding-top: 10px;
    }

    #main-menu .navbar .nav li a {
        font-size: 13px;
    }

    #main-menu .navbar .nav > li > a {
        font-weight: normal;
        margin: 0 !important;
        padding: 16px 9px 16px 17px !important;
        text-decoration: none;
        width: 100%;
        text-align: left;
        color: #d3d3d3 !important;
        border: none !important;
    }

    #main-menu .navbar .nav .parent .parent > a:after {
        display: none;
    }

    #main-menu .navbar .nav .open-sub {
        position: absolute;
        bottom: 0;
        left: 0;
        top: 0;
        width: 100%;
    }

    #main-menu .navbar .nav .open-sub:before {
        content: "\e232";
        font-size: 20px;
        font-family: "linea-icons" !important;
        color: #d3d3d3;
        padding-top: 15px;
        right: 14px;
        position: absolute;
        font-style: normal !important;
        font-weight: normal !important;
        font-variant: normal !important;
        text-transform: none !important;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    #main-menu .navbar .nav .current .open-sub:before {
        color: #fff;
    }

    #main-menu .navbar .nav .active .open-sub:before {
        content: "\e200";
    }

    #main-menu .navbar .nav .active .sub .open-sub:before {
        content: "\e232";
    }

    #main-menu .navbar .nav .active .sub .active .open-sub:before {
        content: "\e200";
    }

    #main-menu .navbar .nav > li.parent:hover > a:after {
        display: none;
    }

    #main-menu .sub,
    #main-menu .parent .sub,
    #main-menu .parent:hover .sub {
        display: none;
        position: relative;
        margin: 0;
        padding: 0;
        background: #3e4045;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    #main-menu .parent .sub .sub {
        background: #323538;
    }

    #main-menu .sub a.current {
        color: #fff;
    }

    #main-menu .navbar .nav > li.current > a {
        margin: 0;
        color: #fff !important;
        border: none !important;
    }

    #main-menu .navbar .nav > .parent.active > a,
    #main-menu .navbar .nav > .parent.active:hover > a {
        background: transparent;
    }

    #main-menu .parent:hover > .sub {
        -webkit-animation: fadeIn 0;
        animation: fadeIn 0;
    }

    #main-menu .sub li {
        line-height: 22px;
    }

    #main-menu .sub a {
        padding: 15px 9px 15px 27px !important;
    }

    #main-menu .sub .sub a {
        padding: 15px 9px 15px 37px !important;
    }

    #main-menu .sub .sub {
        left: 0;
        margin-left: 25px;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    #main-menu .megamenu > .sub .box.closed ul {
        display: none;
        background: #323538;
        padding-left: 10px;
    }

    .mt-60-md {
        margin-top: 60px;
    }

    .mb-md-30 {
        margin-bottom: 30px;
    }
}

/******************************************************************************
  Min Width "1025px" DESKTOP
*******************************************************************************/
@media (min-width: 1025px) {
    .navbar-collapse {
        display: block !important;
        height: auto !important;
    }

    .navbar-collapse.collapse {
        padding-bottom: 0;
        overflow: visible !important;
    }

    .header-1 #main-menu .nav.navbar-nav {
        margin-right: 54px;
    }

    .main-menu-container {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
    }

    #header-left .cd-header-buttons,
    #header-left #cd-search {
        display: none;
    }

    .side-content .container {
        width: 100%;
    }
}

/******************************************************************************
  Max Width "1024px" TABLET
*******************************************************************************/
/******************************************************************************
  Max Width "479px"
*******************************************************************************/
@media (max-width: 479px) {
    .nl-email-input {
        width: 240px;
        margin-right: 0px;
    }
}

/******************************************************************************
* 	CSS SOURCE #OWL & #Magnific Popup CSS
******************************************************************************/
/* text-based popup styling */
.white-popup {
    position: relative;
    background: #FFF;
    padding: 25px;
    width: auto;
    max-width: 400px;
    margin: 0 auto;
}

/*
====== Zoom effect ======
*/
.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-move-horizontal .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
}

.mfp-move-horizontal.mfp-bg {
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mfp-move-horizontal.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
}

.mfp-move-horizontal.mfp-removing.mfp-bg {
    opacity: 0;
}

#main-menu .sub .contact-phone a {
    color: #fff !important;
    display: inline !important;
    padding: 0 !important;
}

#main-menu .sub .contact-phone a:hover {
    color: #414146 !important;
    background: none !important;
}

/* #HEADER CENTER ***************************************************/
@media (min-width: 1025px) {
    .navbar-collapse.collapse.nav-center {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .header-1 #main-menu .nav-center .nav.navbar-nav {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

/* #HEADER LEFT ***************************************************/
@media (min-width: 1025px) {
    .header-menu-left .logo-row {
        float: right;
        width: 148px;
    }
}

.header-menu-left .logo-2 {
    text-align: right;
    padding-right: 15px;
}

@media (max-width: 1024px) {
    .header-menu-left .menu-btn-respons-container {
        right: inherit;
    }
}

/* #FULL SCREEN SUB MENU ***************************************************/
.fs-table {
    display: table;
    width: 100%;
    height: 100%;
}

.fs-table-cell {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.logo-hiding {
    opacity: 1;
    visibility: visible;
}

.logo-hide {
    opacity: 0;
    visibility: hidden;
}

.fs-primary-nav.fs-sub-nav li {
    margin: 10px 0;
}

.fs-primary-nav.fs-sub-nav li a {
    font-size: 22px;
    color: #101010;
    letter-spacing: 3px;
}

.fs-primary-nav.fs-sub-nav li a:hover {
    color: #97999c;
}

.fs-primary-nav.fs-sub-nav .fs-sub li {
    margin: 3px 0;
}

.fs-primary-nav.fs-sub-nav .fs-sub li a {
    padding: 5px 20px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1px;
}

@media only screen and (min-width: 1170px) {
    .fs-primary-nav.fs-sub-nav li {
        margin: 10px 0;
    }
}

@media only screen and (max-width: 480px) {
    .fs-primary-nav.fs-sub-nav li a {
        padding: 5px 20px;
        font-size: 16px;
        line-height: 18px;
        font-weight: 400;
        letter-spacing: 1px;
    }
}

.fs-a-sec {
    margin: .1em 0 !important;
}

.fs-parent {
    position: relative;
}

.fs-sub {
    display: none;
    opacity: 0;
    position: relative;
}

.fs-active .fs-sub {
    opacity: 1;
}

.fs-parent .open-sub:before {
    content: "\e232";
    font-size: 18px;
    font-family: "linea-icons" !important;
    right: 0;
    position: absolute;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fs-active .open-sub:before {
    content: "\e200";
}

.fs-active .fs-sub .open-sub:before {
    content: "\e232";
}

.fs-active .fs-sub .fs-active .open-sub:before {
    content: "\e200";
}

.fs-active .fs-sub .open-sub:before {
    line-height: 20px;
    right: 4px;
}

/* #LOGO HIDE HEADER ON MOBILE
***************************************************/
.hiding-logo.logo-img {
    -webkit-transition: all .3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all .3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all .3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    opacity: 0
}

.affix .hiding-logo.logo-img {
    -webkit-transition: all .3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all .3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all .3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    opacity: 1;
}

/* #HEADER BELOW
***************************************************/
.nav-below-sticky-wrapper.is-sticky {
    height: 60px !important;
    -webkit-transition: height .3s ease 0s;
    -o-transition: height .3s ease 0s;
    transition: height .3s ease 0s;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

#nav-below.header {
    position: relative;
    width: 100%;
}

.font-lato {
    font-family: 'Lato', Arial, Helvetica, sans-serif;
}

/* #SIDE MENU NEW *******************************************/
.cd-img-replace {
    /* replace text with a background-image */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

#nav-stick {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    width: 100%;
}

.sliding-content {
    /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
    min-height: 100%;
    position: relative;
    background-color: #fff;
    z-index: 2;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.sliding-content.lateral-menu-is-open {
    /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
    -webkit-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    transform: translateX(-260px);
}

header.lateral-menu-is-open {
    /* translate to show the lateral menu */
    -webkit-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    transform: translateX(-260px);
}

header.is-fixed {
    position: fixed;
}

#cd-logo {
    display: block;
    float: left;
    margin: 12px 0 0 20px;
}

#cd-logo img {
    display: block;
}

@media only screen and (min-width: 768px) {
    #cd-logo {
        margin: 22px 0 0 30px;
    }
}

#cd-top-nav {
    position: absolute;
    top: 0;
    right: 120px;
    height: 100%;
    display: none;
}

#cd-top-nav ul {
    height: 100%;
    padding-top: 18px;
}

#cd-top-nav li {
    display: inline-block;
    margin-right: 1em;
}

#cd-top-nav a {
    display: inline-block;
    padding: .5em;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 600;
}

#cd-top-nav a.current {
    background-color: #242e30;
}

.no-touch #cd-top-nav a:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media only screen and (min-width: 768px) {
    #cd-top-nav {
        display: block;
    }
}

#cd-menu-trigger {
    position: absolute;
    right: 45px;
    top: 0;
    height: 100%;
    width: 50px;
}

@media only screen and (max-width: 1024px) {
    #cd-menu-trigger {
        right: 25px;
    }
}

#cd-menu-trigger .cd-menu-icon {
    /* this span is the central line in the menu menu */
    display: inline-block;
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    bottom: auto;
    width: 34px;
    height: 3px;
    background-color: #cc0000;
}

#cd-menu-trigger .cd-menu-icon::before,
#cd-menu-trigger .cd-menu-icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: inherit;
    left: 0;
}

#cd-menu-trigger .cd-menu-icon::before {
    bottom: 7px;
}

#cd-menu-trigger .cd-menu-icon::after {
    top: 7px;
}

#cd-menu-trigger.is-clicked .cd-menu-icon {
    background-color: rgba(255, 255, 255, 0);
}

#cd-menu-trigger .cd-menu-icon,
#cd-menu-trigger .cd-menu-icon::before,
#cd-menu-trigger .cd-menu-icon::after {
    -webkit-transition: all .3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all .3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all .3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

#cd-menu-trigger.is-clicked .cd-menu-icon::before,
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
    background-color: #cc0000;
    -webkit-transition: all .3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all .3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all .3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

#cd-menu-trigger.is-clicked .cd-menu-icon::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#cd-menu-trigger.is-clicked .cd-menu-icon::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#cd-lateral-nav {
    position: fixed;
    height: 100%;
    right: 0;
    top: 0;
    visibility: hidden;
    padding-top: 10px;
    /* the secondary navigation is covered by the main element */
    z-index: 1;
    width: 260px;
    background-color: #2a2b2f;
    overflow-y: auto;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
    -webkit-transition: visibility 0s .4s, -webkit-transform .4s 0s;
    transition: visibility 0s .4s, -webkit-transform .4s 0s;
    -o-transition: transform .4s 0s, visibility 0s .4s;
    transition: transform .4s 0s, visibility 0s .4s;
    transition: transform .4s 0s, visibility 0s .4s, -webkit-transform .4s 0s;
    /* this creates the subtle slide in animation of the navigation */
    -webkit-transform: translateX(80px);
    -ms-transform: translateX(80px);
    transform: translateX(80px);
}

#cd-lateral-nav .cd-navigation {
    margin: 10px 0 16px;
}

#cd-lateral-nav .sub-menu {
    padding: 0 10px 20px 15px;
    display: none;
}

#cd-lateral-nav a {
    display: block;
    line-height: 38px;
    letter-spacing: 1px;
    padding: 0 16px 0 32px;
    color: #aab5b7;
}

#cd-lateral-nav a.current {
    background-color: #484A51;
    color: #FFF;
}

.no-touch #cd-lateral-nav a:hover {
    color: #FFF;
}

@media only screen and (min-width: 768px) {
    #cd-lateral-nav .cd-navigation {
        margin: 20px 0;
    }
}

#cd-lateral-nav.lateral-menu-is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
    -webkit-transition: visibility 0s 0s, -webkit-transform .4s 0s;
    transition: visibility 0s 0s, -webkit-transform .4s 0s;
    -o-transition: transform .4s 0s, visibility 0s 0s;
    transition: transform .4s 0s, visibility 0s 0s;
    transition: transform .4s 0s, visibility 0s 0s, -webkit-transform .4s 0s;
    /* smooth the scrolling on touch devices - webkit browsers */
    -webkit-overflow-scrolling: touch;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    /* this is the right arrow to show that the item has a submenu  */
}

#cd-lateral-nav .item-has-children > a::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1em;
    content: "\e232";
    font-family: linea-icons;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    font-size: 16px;
    display: block;
    line-height: 1;
    position: absolute;
    right: 25px;
    top: 14px;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

#cd-lateral-nav .item-has-children > a.submenu-open::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .socials {
    padding: 0 32px;
}

#cd-lateral-nav .socials:after {
    content: "";
    display: table;
    clear: both;
}

#cd-lateral-nav .socials a {
    display: inline-block;
    padding: 9px;
}