
.msb-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px rgba(112,112,112,0.09) solid;
    z-index: 999999;
}
.msb-header.msb-header-fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    border-bottom: none;
    /*-webkit-transition: all 0.3s ease-in-out;*/
    /*transition: all 0.3s ease-in-out;*/
    background: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
.msb-header.msb-header-fixed.sticky {
    background: #ffffff;
    border-bottom: 1px rgba(112,112,112,0.09) solid;
}
.msb-header .header-contact {
    position: absolute;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 80px;
}
.msb-header .header-contact .msb-btn-1 {
    z-index: 0;
    font-family: "SVN-Gotham Rounded Medium";
}
.msb-header .header-contact .msb-btn-1:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../images/icons/icon-contact-btn.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}
.msb-header .header-contact .msb-btn-1:hover:after {
    opacity: 1;
}
.msb-header .site-navigation_warp {
    height: 70px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
}
.msb-header .site-navigation_warp .logo a {
    padding: 10px 0;
}
.msb-navbar-nav {
    display: table;
    padding: 0;
    margin: 0;
}
.msb-navbar-nav li.menu-item {
    list-style: none;
    position: relative;
}
.msb-navbar-nav > li.menu-item {
    float: left;
    margin: 0 40px;
}
.msb-navbar-nav li.menu-item a {
    display: inline-block;
    color: #414142;
}
.msb-navbar-nav > li.menu-item > a {
    line-height: 70px;
    font-family: "SVN-Gotham Rounded Bold";
}
.msb-navbar-nav li.menu-item.current-menu-parent a,
.msb-navbar-nav li.menu-item.current-menu-item a,
.msb-navbar-nav li.menu-item a:hover {
    color: #FF671F;
}
.msb-navbar-nav li.menu-item .sub-menu {
    width: 290px;
    position: absolute;
    top: 120%;
    left: 0;
    padding: 0;
    margin: 0;
    border-top: 2px #FF671F solid;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 16px rgba(0,0,0,0.1);
    box-shadow: 0 3px 16px rgba(0,0,0,0.1);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}
.msb-navbar-nav li.menu-item:hover .sub-menu {
    top: calc(100% + 1px);
    z-index: 999;
    opacity: 1;
    visibility: visible;
}
.msb-navbar-nav li.menu-item .sub-menu li {
    padding: 10px;
    border-bottom: 1px rgba(112,112,112,0.09) solid;
}
.msb-navbar-nav li.menu-item .sub-menu li:last-child {
    border-bottom: none;
}

.msb-header .header-search {
    position: relative;
    margin-left: 40px;
}
.msb-header .header-search .dropdown-search {
    width: 320px;
    position: absolute;
    top: 120%;
    right: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}
.msb-header .header-search.active .dropdown-search {
    top: calc(100% + 1px);
    z-index: 999;
    opacity: 1;
    visibility: visible;
}
.msb-header .header-search .dropdown-search .search-field {
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 15px;
    color: #B8B8B8;
    font-style: italic;
    padding: 0 90px 0 25px;
    border: none;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    -webkit-box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    outline: none !important;
}
.msb-header .header-search .dropdown-search .search-submit {
    position: absolute;
    top: 11px;
    right: 25px;
    padding: 0;
    border: none;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.off-canvas-btn {
    display: none !important;
    margin-left: 25px;
    width: 62px;
    background: rgba(112,112,112,0.05);
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
}
.off-canvas-btn img.active,
.off-canvas-btn:hover img.default,
body.canvas-menu-open .off-canvas-btn img.default {
    display: none;
}

.off-canvas-btn:hover img.active,
body.canvas-menu-open .off-canvas-btn img.active {
    display: inline-block;
}
.off-canvas-menu {
    position: fixed;
    width: 290px;
    height: 100vh;
    padding-top: 0;
    top: 0;
    right: -290px;
    z-index: 99999999;
    background: #ffffff;
    overflow-y: auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

body.canvas-menu-open .off-canvas-menu {
    right: 0;
}
.off-canvas-menu .canvas-menu-heading {
    height: 60px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 25px;
    border-bottom: 1px rgba(112,112,112,0.39) solid;
}
.off-canvas-menu .canvas-menu-heading .title-menu {
    font-size: 20px;
}
.off-canvas-menu .canvas-menu-heading span {
    cursor: pointer;
}
.off-canvas-menu .form-search {
    padding: 32px 20px;
    border-bottom: 1px rgba(112,112,112,0.39) solid;
}
.off-canvas-menu .form-search form {
    position: relative;
}
.off-canvas-menu .form-search form input.search-field {
    width: 100%;
    height: 42px;
    line-height: 40px;
    color: #B8B8B8;
    font-style: italic;
    padding: 0 51px 0 20px;
    border: 1px #707070 solid;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    outline: none !important;
}
.off-canvas-menu .form-search form .search-submit {
    position: absolute;
    top: 11px;
    right: 20px;
    padding: 0;
    border: none;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.off-canvas-menu .center {
    height: calc(100vh - 300px);
    overflow: auto;
}
.off-canvas-menu .navbar-nav {
    clear: both;
}
.off-canvas-menu .navbar-nav li {
    list-style: none;
    position: relative;
}
.off-canvas-menu .navbar-nav > li {
    border-bottom: 1px rgba(112,112,112,0.39) solid;
}
.off-canvas-menu .navbar-nav li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: -1px;
    left: 0;
    opacity: 0;
    background: #FF671F;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.off-canvas-menu .navbar-nav li.current-menu-item:before,
.off-canvas-menu .navbar-nav li:hover:before {
    opacity: 1;
}
.off-canvas-menu .navbar-nav li a {
    padding: 10px 20px;
    display: block;
    line-height: 2.8;
    text-align: left;
    color: inherit;
}
.off-canvas-menu .navbar-nav > li > a {
    font-family: "SVN-Gotham Rounded Bold";
}
.off-canvas-menu .navbar-nav li a > span {
    display: inline-block;
    width: 40px;
    line-height: 1;
}
.off-canvas-menu .navbar-nav li a > span img {
    position: relative;
    top: -2px;
}
.off-canvas-menu .navbar-nav li.current-menu-item > a,
.off-canvas-menu .navbar-nav li:hover > a {
    color: #ED1C24;
}
.off-canvas-menu .icon-arrow {
    position: absolute;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    right: 11px;
    top: 15px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.off-canvas-menu .icon-arrow img.hover,
.off-canvas-menu .icon-arrow.icon-arrow-active img.default {
    display: none;
}
.off-canvas-menu .icon-arrow.icon-arrow-active img.hover {
    display: inline-block;
}
.off-canvas-menu .navbar-nav li .sub-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    border-top: 0;
    background-color: transparent;
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 0;
}
.off-canvas-menu .navbar-nav li .sub-menu li {
    border-top: 1px rgba(112,112,112,0.39) solid;
}
.off-canvas-menu .bottom {
    padding: 20px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}
.off-canvas-menu .header-contact .msb-btn {
    width: 100%;
    text-align: center;
    padding: 0 15px;
}
.off-canvas-menu .social {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0;
    margin: 20px 0 0;
}
.off-canvas-menu .social li {
    list-style: none;
}

.msb-overlay {
    position: fixed;
    background: transparent;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999999;
    background: rgba(0,0,0,0.8);
    display: none;
}

.canvas-menu-open .msb-overlay {
    display: block;
}

@media (max-width: 1700px) {
    .msb-header .header-contact {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media (max-width: 1360px) {
    .msb-header .header-contact {
        margin-left: 50px;
    }
    .msb-navbar-nav > li.menu-item {
        margin: 0 25px;
    }
    .msb-header .header-search {
        margin-left: 25px;
    }
}

@media (max-width: 991px) {
    .msb-header .site-navigation_warp {
        height: 59px;
    }
    .msb-header .site-navigation_warp .logo img {
        max-height: 26px;
    }
    .msb-header .site-menu,
    .msb-header .header-contact {
        display: none;
    }
    .off-canvas-btn {
        display: -webkit-flex !important;
        display: flex !important;
    }
}

@media (max-width: 460px) {
    .msb-header .header-left {
        -webkit-justify-content: flex-end !important;
        justify-content: flex-end !important;
    }
    .msb-header .header-search {
        position: inherit;
        margin-left: 15px;
    }
    .msb-header .header-search .dropdown-search {
        width: 100%;
    }
    .off-canvas-btn {
        margin-left: 0;
    }
}

/*# sourceMappingURL=header.css.map */
