/**/
.full-header-top {
  background-color: #14375F;
  padding: 4px 0;
}
.header-top-wrap {
  align-items: center;
}
.header-top-wrap p {
  flex: 1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.header-top-wrap input {
  width: 316px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FFF;
  padding: 0 20px;
  height: 40px;
  font-style: italic;
}
.header-top-wrap form {
  position: relative;
}
.header-top-wrap form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 40px;
  background-color: transparent;
  border: 0;
  color: #E3322C;
  font-size: 20px;
}
/**/
.btn-header {
  height: 40px;
  padding: 0 20px;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00ADEF;
  border-radius: 6px;
  margin-left: 5px;
}
.btn-header i {
  margin-right: 10px;
}
.btn-gray {
  background-color: #6C829A;
}
.btn-header.cart-btn {
  width: 40px;
  background-color: #fff;
  padding: 0;
}
/**/
.full-header-mobile{
  display: none;
}
.full-header {
  position: relative;
  z-index: 2;
  overflow-x:clip;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0 0;
}
/**/
@media only screen and (min-width: 640px) {
  .full-header.sticky {
    background-color: #fff;
    padding: 5px 0;
    top: 0;
    position: sticky;
    z-index: 999;
    -webkit-box-shadow: 1px 1px 10px rgba(0,0,0,.15);
    box-shadow: 1px 1px 10px rgba(0,0,0,.15);
    -webkit-animation: stuckMoveDown .6s;
    animation: stuckMoveDown .6s;
  }
}
  @keyframes stuckMoveDown {
    0% {
      -webkit-transform:translateY(-100%);
      transform:translateY(-100%)
    }
    100% {
      -webkit-transform:translateY(0);
      transform:translateY(0)
    }
  }
  .sticky .header-logo a img {
    max-height: 120px;
    margin-bottom: -50px;
  }
  .sticky .header-right-wrap {
    overflow-y: clip;
  } 
  /**/
.header-wrap {
  justify-content: space-between;
  align-items: center;
}
/**/
.header-right{
  position:relative;
  flex: 1;
  padding-left: 80px;
}
/**/
.header-menu {
  flex: 1;
}
.header-logo a {
  display: block;
}
.header-desktop .header-logo a img {
  max-width: 160px;
  object-fit: contain;
  margin-bottom: -60px;
  background-color: #fff;
  border-radius: 100%;
  padding: 10px;
}
.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}
.main-menu .menu-primary > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.main-menu ul li {
  position: relative;
  margin: 0;
}
.main-menu ul li a {
  padding: 0 20px;
  font-weight: 600;
  color: #275C86;
}
.main-menu a:hover,
.main-menu .menu-primary ul li.current-item a {
  color: #00ADEF;
}

/*submenu*/
.main-menu .menu-primary>ul>li {
  min-height: 35px;
  line-height: 35px;
}
ul.sub-menu {
  display: none;
}
@media only screen and (min-width: 1101px) {
  .has-children>a::after{
    content: "\f107";
    font-family: FontAwesome;
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
  .main-menu ul li {
    position: relative;
  }
  ul.sub-menu::before {
    position: absolute;
    top: -9px;
    left: 20px;
    content: "";
    width:0px;
    height:0px;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-bottom:10px solid #fff;
  }
  ul.sub-menu {
    position: absolute;
    display: none;
    background-color: #fff;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.12));
    min-width: 328px;
    padding: 10px 0;
  }
  li:hover > ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
  /*transform: translate(-50%);*/
  }
  ul.sub-menu li {
    margin: 5px 0;
  }
  ul.sub-menu li a{
    padding: 0 20px;
    min-height: 35px;
    display: block;
    line-height: 22px;
    display: flex;
    align-items: center;
  }
}
/**/
.btn-login {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-weight: 700;
}
.btn-login a{
  padding: 14px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.btn-login img{
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
/**/
.main-menu .menu-toggle {
  display: none;
}
@media only screen and (max-width: 1300px) {
  .main-menu .menu-primary > ul{
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-top-wrap input {
    width: 280px;
    padding: 0 20px;
    height: 35px;
  }
  .header-top-wrap form button {
    width: 40px;
    height: 35px;
    font-size: 16px;
  }
  .btn-header {
    padding: 0 10px;
    height: 35px;
    width: 35px !important;
    justify-content: center;
  }
  .btn-header span {
    display: none;
  }
  .btn-header i {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .full-header.header-desktop {
    display: none;
  }
  .full-header-mobile{
    display: block;
  }
  .header-logo .site-logo {
    max-width: 80px;
    padding: 10px 0;
  }
  .full-header{
    overflow: hidden;
    padding: 10px 0;
  }
  .full-header.menu-opend{
    z-index: 999;
  }
  .main-menu .menu-toggle {
    display: block;
    background: linear-gradient(180deg, #00ADEF 0%, #0084B7 100%);
    border: 0;
    box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    padding: 2px 10px;
    color: #fff;
    font-size: 18px;
  }
  .main-menu .menu-toggle::after {
    position: fixed;
    width: 100%;
    height: 99999px;
    content: "";
    top: 0;
    left: 0;
    opacity: 0.5;
    background: black;
    cursor: pointer;
    z-index: 9999999998;
  }
  .main-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;
  } 
  .main-menu:not(.active) .menu-toggle::after{
    display: none;
  }
  .main-menu .menu-primary{
    position: fixed;
    width: 300px;
    max-width: 90%;
    height: 100vh;
    max-height: 100vh;
    top: 0;
    box-sizing: border-box;
    transition: left 200ms ease-in-out, right 200ms ease-in-out;
    overflow: auto;
    z-index: 9999999999;
    overscroll-behavior: contain;
    left: -300px;
    background-color: #fff;
  }
  .main-menu.active .menu-primary{
    left: 0;
  }
  .main-menu ul li {
    line-height: 35px;
    font-size: 14px;
    width: 100%;
  }
  .main-menu ul li a {
    padding: 0 10px;
    color: #262626;
    display: block;
  }
  .main-menu .menu-primary > ul {
    display: block;
    padding: 0;
  }
  ul.sub-menu {
    width: 100%;
    background-color: #fff;
    z-index: 1;
  }
  .has-children i {
    display: block;
    color: #333;
    font-size: 14px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 40px;
    text-align: right;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition:.3s all;
  }
  .has-children.active i::before{
    content: "\f068";
  }
  /**/
  .moblie-menu .menu-primary>ul>li{
    border-bottom: 1px dashed #ddd;
    min-height: 40px;
  }
  .moblie-menu .menu-primary ul ul{
    padding-left: 10px;
  }
}

@media only screen and (max-width: 900px) {
 .header-top-wrap {
    justify-content: center;
  }
  .header-top-wrap p {
    flex: unset;
    width: 100%;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .header-wrap-top {
    justify-content: center;
  }
  .header-wrap-top p,
  .header-wrap-top ul{
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .header-right {
    padding-left: 80px;
  }
  .searchform input{
    width: 180px;
  }
}
@media only screen and (max-width: 640px) {
  .btn-dki{
    display: none;
  }
  .header-search .searchform {
    right: 10px;
  }
  .header-search {
    padding-right: 0;
  }
  .header-search{
    display: none;
  }
  /**/
  .menu-primary .searchform {
    width: calc(100% - 20px);
    display: block;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 10px auto;
  }
  /**/
  .header-top-wrap form {
    flex: 1;
  }
  .header-top-wrap p {
    display: none;
  }
  .header-top-wrap input {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .btn-login a {
    padding: 6px;
    background: linear-gradient(180deg, #00ADEF 0%, #0084B7 100%);
    box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    width: 35px;
    height: 33px;
  }
  .btn-login span {
    display: none;
  }
  .btn-login img {
    margin: 0;
  }
  .main-menu {
    padding-right: 10px;
  }
}