/*----------------------------------------*/
/*  Header
/*----------------------------------------*/
header {
  padding: 12px 160px;
  z-index: 999;
  width: 100vw;
  background: none;
  background: #000000;
  position: fixed;
  height: 90px;
  transition: all 0.3s ease;
  /* Mobile DropMenu */
}
header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .brandlogo {
  display: flex;
  align-items: center;
  float: left;
  height: 60px;
}
header .brandlogo a {
  height: 100%;
}
header .brandlogo .logo {
  width: 200px;
  height: 60px;
  background: url(../images/logo.png) left center no-repeat;
  display: inline-block;
  background-size: contain;
  transition: all 0.3s ease;
}
header .navMenu {
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 80px;
}
header .navbar {
  padding: 0px;
  /*Sub Menu*/
}
header .navbar li {
  display: flex;
  align-items: center;
  margin-right: 12px;
  position: relative;
  float: left;
}
header .navbar li a {
  padding: 15px 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
header .navbar .on a{
  color: #be8d42;
}
header .navbar li:hover > a {
  color: #be8d42;
}
header .navbar li .dropSubMenu {
  width: 200px;
  background: #333;
  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 .toplinkBar {
  position: absolute;
  right: 160px;
  display: flex;
  gap: 30px;
}
header .toplinkBar a {
  font-size: 16px;
  color: #fff;
}
header .toplinkBox {
  display: flex;
  position: relative;
  align-items: center;
}
header .toplinkBox .searchBtn {
  width: 40px;
  margin-left: 16px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: ease-in-out 0.3s;
  background: url(../images/contact_ico.svg) right center no-repeat;
  background-size: 24px 24px;
  transition: all 0.3s ease;
}
header .toplinkBox .searchBtn:hover {
  background: url(../images/contact_ico.svg) right center no-repeat;
  background-size: 24px 24px;
}
header .toplinkBox .contactBtn {
  padding: 12px 12px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  width: 120px;
  height: 42px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .toplinkBox .contactBtn:hover {
  background: #be8d42;
  border: 1px solid #be8d42;
  color: #000;
}
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: 99999;
  transition: all 0.4s ease;
}
header .mobileDropnav.active {
  height: 380px;
  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: rgba(255, 255, 255, 0.9);
  display: block;
  transition: visibility 0.15s ease-in-out, opacity 0.15s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
header .mobileDropnav .mobDropContent.active {
  height: 460px;
  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*/
@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;
    margin-right: 10px;
  }
  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;
    margin-right: 10px;
  }
  header.bgfixed,
  header.pagehead {
    padding: 10px 6%;
  }
}

@media only screen and (max-width: 1366px) {
  header .navbar li {
    margin-right: 0px;
    font-size: 13px;
  }
  header .navbar li a {
    padding: 15px 8px;
    font-size: 15px;
  }
  header .toplinkBox .searchBtn {
    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: 0px;
  }
  header .navbar li a {
    padding: 15px 10px;
    font-size: 14px;
  }
  header .navbar li .dropSubMenu {
    width: 450px;
    padding: 0px 16px 16px 30px;
  }
  header .brandlogo .logo {
    width: 160px;
    height: 38px;
  }
  header .navMenu {
    margin-left: 50px;
  }
  header .navbar li a {
    padding: 15px 6px;
    font-size: 14px;
  }
  header .toplinkBox .loginBtn,
  header .toplinkBox .searchBtn {
    width: 32px;
    height: 32px;
  }
  header .toplinkBox .contactBtn {
    width: 100px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1100px) {
  header .toplinkBox .linkBtn span {
    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;
    padding: 15px 6px;
  }
}

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

@media only screen and (max-width: 959px) {
  header .toplinkBox .contactBtn {
    display: none;
  }
}

@media only screen and (max-width: 800px) {
  header {
    padding: 0px 15px;
    height: 72px;
  }
  header .brandlogo .logo {
    width: 158px;
    height: 42px;
    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;
  }
}
