/* ==============================
   Header Base
================================= */

header {
    position: relative;
    z-index: 999;
    width: 100%;
    padding: 15px 0;
    background: #fff;
    overflow: visible;
}

header.current {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

.header-main {
    position: relative;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

header .logo {
    width: 139px;
    height: 68px;
    flex-shrink: 0;
}

header .logo a {
    display: block;
     width: 139px;
       height: 68px;
    background: url(../images/logo.jpg) no-repeat center;
    background-size: contain;
}
header .logo a h1{ display:none;}


/* ==============================
   Header Right
================================= */

.header-search {
    position: relative;
   width: 300px;
   height: 46px;
   background: #FFFFFF;
   border-radius: 6px;
   border: 1px solid #026ABD; padding: 4px;
}

.header-search input {
  width: calc(100% - 60px); height: 36px; border:none; padding: 0 15px;
}

.header-search input::placeholder {
    color: #666;
}

.header-search button {
    width: 60px;
    height: 36px;
    background: #026ABD;
    border-radius: 6px; border: none; color: #FFFFFF; font-size: 1.2rem;
}

.header-search button:hover {
    background: #f8ce50;
}



/* ==============================
   Header Nav
================================= */

.header-nav {
    position: static;
}

.header-nav .nav-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header-nav li {
    list-style: none;
}

.header-nav .nav-list > li {
    position: relative;
}

.header-nav .nav-list > li > a {
    display: block;
    padding: 0 18px;
    color: #222;
    font-size: 1.1rem;
    line-height: 80px;
    text-decoration: none;
    transition: all .25s ease;
}

.header-nav .nav-list > li:hover > a {
    color: #026ABD;
}

.header-nav .has-sub > a::after {
    content: "\f107";
    font-family: FontAwesome;
    margin-left: 7px;
    font-size: 13px;
}

.header-nav .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 180px;
    margin: 0;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
    z-index: 999;
}

.header-nav .has-sub:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav .sub-menu li a {
    display: block;
    padding: 11px 18px;
    color: #333;
    font-size: 14px;
    line-height: 22px;
    white-space: nowrap;
    text-decoration: none;
    transition: all .25s ease;
}

.header-nav .sub-menu li a:hover {
    color: #026ABD;
    background: #fff4eb;
}


/* ==============================
   Product Mega Menu
================================= */

.header-nav .nav-list > li.product-mega-li {
    position: static !important;
}

.header-nav .product-mega-li > a::after {
    content: "\f107";
    font-family: FontAwesome;
    margin-left: 7px;
    font-size: 13px;
}

.product-mega {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 100vw;
    background: #fff;
    border-top: 1px solid #f1f1f1;
    box-shadow: 0 14px 35px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: all .25s ease;
    z-index: 998;
}

.product-mega-li:hover .product-mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.product-mega-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 80px;
    row-gap: 42px;
    padding: 38px 0 42px;
}

.product-mega-group h3 {
    margin: 0 0 14px;
    color: #0d1b2a;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}

.product-mega-group a {
    position: relative;
    display: block;
    padding-left: 14px;
    margin-bottom: 10px;
    color: #222;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    transition: all .25s ease;
}

.product-mega-group a::before {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: #222;
    font-size: 13px;
    line-height: 22px;
    transition: all .25s ease;
}

.product-mega-group a:hover {
    color: #026ABD;
    padding-left: 18px;
}

.product-mega-group a:hover::before {
    color: #026ABD;
}



