/*----------------------------------------*/
/*  Header
/*----------------------------------------*/
header {
  padding: 4px 0px;
  z-index: 999;
  width: 100vw;
  background: #ffffffb3;
  border-bottom: 1px solid #eff4f9;
  position: fixed;
  height: 78px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  /* Mobile DropMenu */ }
  header .container {
    max-width: 1440px; }
  header .navContent {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  header .brandlogo {
    display: flex;
    align-items: center;
    float: left;
    height: 70px; }
    header .brandlogo .logo {
      width: 185px;
      height: 54px;
      background: url(../images/logo.svg) left center no-repeat;
      display: inline-block;
      background-size: contain;
      transition: all 0.3s ease; }
  header .navMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -50px; }
  header .navbar {
    padding: 0px;
    /*Sub Menu*/ }
    header .navbar li {
      display: flex;
      align-items: center;
      margin: 0px 12px;
      position: relative;
      float: left; }
      header .navbar li a {
        padding: 15px 16px;
        color: #252A36;
        font-size: 18px;
        font-weight: 500;
        text-transform: capitalize; }
    header .navbar li.on > a.firstLevel, header .navbar li:hover > a.firstLevel {
      color: #000; }
    header .navbar li .dropSubMenu {
      width: 200px;
      background: #0071bc;
      display: flex;
      align-items: center;
      padding: 20px 20px;
      justify-content: center;
      position: absolute;
      top: 60px;
      left: -20px;
      opacity: 0;
      border-radius: 6px;
      visibility: hidden;
      transition: all 0.3s ease-in-out 0.1s; }
    header .navbar li .dropmenuCon {
      padding: 0px 0px;
      display: flex;
      flex-direction: column; }
      header .navbar li .dropmenuCon li {
        width: 100%;
        float: none;
        margin: 0px;
        line-height: 1.5;
        display: flex;
        justify-content: center; }
        header .navbar li .dropmenuCon li a {
          color: #fff;
          padding: 10px 0px;
          font-size: 18px; }
          header .navbar li .dropmenuCon li a:hover {
            text-decoration: underline; }
    header .navbar li:nth-last-of-type(2) .dropSubMenu {
      left: -120px; }
    header .navbar li:hover .dropSubMenu {
      opacity: 1;
      visibility: visible; }
  header .toplinkBox {
    display: flex;
    position: relative;
    align-items: center;
    z-index: 99999; }
    header .toplinkBox .linkBtn {
      grid-column-gap: 8px;
      grid-row-gap: 12px;
      color: #fff;
      background-image: linear-gradient(160deg, #2152ba, #7ec8f5);
      padding: 8px 24px;
      font-size: 16px;
      border-radius: 30px;
      line-height: 1.6;
      display: flex;
      border: none; }
    header .toplinkBox .menubtn {
      width: 50px;
      height: 50px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 6px;
      transition: ease-in-out 0.3s;
      background: url(../images/menubtn.svg) center center no-repeat;
      background-size: 24px 24px;
      display: none; }
      header .toplinkBox .menubtn:hover {
        background: url(../images/menubtn.svg) center center no-repeat;
        background-size: 24px 24px; }
      header .toplinkBox .menubtn.on {
        background: #000 url(../images/menubtn_close_w.svg) center center no-repeat;
        background-size: 24px 24px; }
  header .mobileDropnav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all 0.4s ease; }
    header .mobileDropnav.active {
      height: 280px;
      overflow-y: scroll; }
    header .mobileDropnav .mobDropContent {
      position: fixed;
      width: calc(100% - 30px);
      height: auto;
      right: 15px;
      left: 15px;
      top: 76px;
      z-index: 99999;
      pointer-events: auto;
      padding: 0px 20px;
      border-radius: 6px;
      backdrop-filter: blur(30px);
      background: white;
      display: block;
      transition: visibility .15s ease-in-out, opacity .15s ease-in-out;
      visibility: hidden;
      opacity: 0; }
      header .mobileDropnav .mobDropContent.active {
        height: 280px;
        overflow-y: scroll;
        visibility: visible;
        opacity: 1; }
    header .mobileDropnav li {
      padding: 8px 0;
      border-bottom: 1px solid #dbdbdb; }
      header .mobileDropnav li:nth-last-of-type(1) {
        border: none; }
      header .mobileDropnav li a {
        display: block;
        font-size: 16px;
        line-height: 2;
        color: #1a1a1a; }
      header .mobileDropnav li h3 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 0px; }
        header .mobileDropnav li h3 span {
          width: 30%;
          display: flex;
          justify-content: flex-end; }
        header .mobileDropnav li h3 i {
          display: block;
          width: 24px;
          height: 24px;
          position: relative;
          border: 1px solid #015DAC;
          border-radius: 4px;
          padding: 6px; }
          header .mobileDropnav li h3 i:before, header .mobileDropnav li h3 i:after {
            content: "";
            background: #55636F;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease; }
          header .mobileDropnav li h3 i:before {
            width: 8px;
            height: 1px; }
          header .mobileDropnav li h3 i:after {
            width: 1px;
            height: 8px; }
        header .mobileDropnav li h3 span.on i {
          background: #D00000;
          border: 1px solid #D00000; }
          header .mobileDropnav li h3 span.on i:before {
            background: #fff; }
          header .mobileDropnav li h3 span.on i:after {
            display: none; }
    header .mobileDropnav .dropmenuCon {
      margin-top: 10px;
      display: none; }
      header .mobileDropnav .dropmenuCon ul.subnav {
        padding: 0px 20px;
        background: #fff;
        border-radius: 6px; }
        header .mobileDropnav .dropmenuCon ul.subnav li {
          padding: 6px 0px; }
          header .mobileDropnav .dropmenuCon ul.subnav li a {
            text-align: left;
            font-size: 14px; }
        header .mobileDropnav .dropmenuCon ul.subnav.active {
          display: block; }

/* Header Sticky*/
header.bgfixed header .navMenu, header.pagehead header .navMenu {
  margin-top: 16px; }

@media only screen and (max-width: 1920px) {
  header {
    padding: 12px 12%; }
  header .toplinkBar {
    right: 12%; }
  header .navbar li {
    margin-right: 0px; }
  header.bgfixed, header.pagehead {
    padding: 10px 12%; } }

@media only screen and (max-width: 1780px) {
  header {
    padding: 12px 6%; }
  header .toplinkBar {
    right: 6%; }
  header.bgfixed, header.pagehead {
    padding: 10px 6%; }
  header .navbar li {
    font-size: 15px; }
  header .navbar li a {
    padding: 12px 8px;
    font-size: 16px; }
  header .navbar li .dropSubMenu {
    width: 540px; }
  header .navbar li .dropmenuCon li a {
    font-size: 13px; }
  header .toplinkBox .loginBtn, header .toplinkBox .searchBtn {
    width: 42px;
    height: 42px; }
  header .toplinkBox .loginDropIcon, header .toplinkBox .searchDropIcon {
    background-size: 18px 18px; }
    header .toplinkBox .loginDropIcon.on, header .toplinkBox .loginDropIcon:hover, header .toplinkBox .searchDropIcon.on, header .toplinkBox .searchDropIcon:hover {
      background-size: 18px 18px; }
  header .toplinkBox .langbtn, header .toplinkBox .langbtn {
    width: 100px;
    font-size: 13px;
    background-size: 24px; } }

@media only screen and (max-width: 1480px) {
  header {
    padding: 10px 6%; }
  header .toplinkBar a {
    font-size: 14px; }
  header .navbar li {
    font-size: 14px; }
  header.bgfixed, header.pagehead {
    padding: 10px 6%; } }

@media only screen and (max-width: 1366px) {
  header .container {
    max-width: 100%; }
  header .brandlogo .logo {
    width: 175px;
    height: 56px;
    background-size: contain; }
  header .navMenu {
    margin-left: 0px; }
  header .navbar li {
    font-size: 13px; }
  header .navbar li a {
    padding: 15px 8px;
    font-size: 15px; }
  header .toplinkBox .searchBtn {
    top: 16px;
    background-size: 21px 21px; }
    header .toplinkBox .searchBtn:hover {
      background-size: 21px 21px; }
  header .toplinkBar a {
    font-size: 13px; } }

@media only screen and (max-width: 1280px) {
  header {
    justify-content: space-between; }
  header .navbar li {
    margin-right: 4px; }
  header .navbar li a {
    padding: 15px 6px;
    font-size: 15px; }
  header .navbar li .dropSubMenu {
    width: 450px;
    padding: 0px 16px 16px 30px; }
  header .toplinkBox .loginBtn, header .toplinkBox .searchBtn {
    width: 32px;
    height: 32px; } }

@media only screen and (max-width: 1100px) {
  header .toplinkBox .linkBtn {
    display: none; }
  header .toplinkBox .langbtn {
    background: url(../images/language_ico.svg) left center no-repeat;
    background-size: 24px 24px; }
  header .navbar li a {
    font-size: 14px; } }

@media only screen and (max-width: 1024px) {
  header .container {
    max-width: 96%; }
  header .toplinkBar {
    display: none; }
  header .navMenu .navbar {
    display: none; }
  header .navbar li a {
    padding: 12px 4px; }
  header .toplinkBox .menubtn {
    display: block; }
  header .navMenu {
    display: flex;
    align-items: center;
    float: right;
    justify-content: flex-end; } }

@media only screen and (max-width: 800px) {
  header {
    padding: 0px 15px;
    height: 72px; }
  header .brandlogo .logo {
    width: 158px;
    height: 52px;
    background-size: contain; }
  header .navMenu {
    margin-right: -4px; }
  header .toplinkBox .linkBtn {
    width: 30px;
    height: 30px;
    padding-left: 0px;
    background-size: 24px 24px; }
  header .toplinkBox .langbtn a {
    background: none; }
  header .toplinkBox .linkBtn span {
    display: none; }
  header .toplinkBox .langbtn:hover {
    background-size: 24px 24px; }
  header .toplinkBox .menubtn {
    margin-right: 0px;
    background-size: 24px 24px; }
  header .toplinkBox .menubtn:hover {
    background: url(../images/menubtn.svg) center center no-repeat;
    background-size: 24px 24px; }
  header .toplinkBox .menubtn.on {
    margin-right: 0px;
    background: url(../images/menubtn_close.svg) center center no-repeat;
    background-size: 24px 24px; }
  header .toplinkBox .searchBtn {
    display: none; }
  header.bgfixed, header.pagehead {
    height: 72px;
    padding: 0px 15px; } }
