.header .overlay {
  position: fixed;
  top: 0;
  width: 100%;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a,
.header .menu > .menu-item > a {
  display: block;
  font-weight: 500;
  line-height: inherit;
  color: #333;
  text-transform: capitalize;
}
.top-menu {
  position: sticky;
  top: 0;
  transition: 0.5s;
  z-index: 999;
  background-color: var(--color-1);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  padding: 15px 0;
}
.header .nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo, .logo-text {
    max-width: 190px;
}
.header .menu {
  padding: 0;
  margin: 6px 0;
  background-color: #fff;
}
.header .menu > .menu-item {
  display: block;
  margin: 0;
  border-bottom: 0.5px solid #e0e0e0;
}
.header .menu > .menu-item:last-child {
  border-bottom: unset;
}
.header .menu > .menu-item > a {
  font-size: 15px;
  padding: 10px 20px;
  border: none;
  outline: 0;
}
.header .menu > .menu-item:hover > a,
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: #2196f3;
}
.header .menu > .menu-item:hover > a .expand::after,
.header .menu > .menu-item:hover > a .expand::before {
  background: #2196f3;
}
.header .menu > .menu-item > .sub-menu {
  -webkit-transition: 0.35s;
  transition: 0.35s;
  z-index: 8888;
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  border-top: 0.5px solid #e0e0e0;
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  font-size: 14px;
  padding: 10px 32px 10px 35px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.header .overlay {
  left: 0;
  height: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.65);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.logo-text {
  display: none;
}
@media (min-width: 992px) {
  .header .nav-menu {
    justify-content: space-between;
  }
  .header .menu {
    background-color: inherit;
  }
  .header .menu > .menu-item {
    position: relative;
    display: inline-block;
    margin: 0 12px;
    border-bottom: unset;
  }
  .header .menu > .menu-item > a {
    padding: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 10px 20px 10px 25px;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
    color: #fff;
    background: var(--color-2);
  }
  .header .menu > .menu-item.is-active > a,
  .header .menu > .menu-item:hover > a {
    color: #f2f2f2;
  }
  .header .menu > .menu-item > .sub-menu {
    position: absolute;
    top: 34px;
    left: 0;
    width: 267px;
    height: auto;
    padding: 1px 0;
    border: none;
    outline: 0;
    opacity: 0;
    visibility: hidden;
    border-top: 3px solid var(--color-2);
    border-radius: 7px;
    background: #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 15%);
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
  .header .menu > .menu-item-child:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-3px);
    transform: translateY(-6px);
    left: -3px;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item:first-child a {
    border-radius: 5px 5px 0 0;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item:last-child a {
    border-radius: 0 0 5px 5px;
  }
  .header .menu > .menu-item-child:hover > a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  .header .menu > .menu-item:before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    background-color: #f2f2f2;
    height: 3px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .header .menu > .menu-item.is-active:before,
  .header .menu > .menu-item:hover:before {
    left: 0;
    right: 0;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item:first-child {
    border-top: unset;
  }
  i.expand {
    right: -13px;
    position: absolute;
  }
  .menu-item-child:hover .expand span:first-of-type {
    transform: rotate(-45deg) translate(5px, 0);
  }
  .menu-item-child:hover .expand span:last-of-type {
    transform: rotate(45deg) translate(-5px, 0);
  }
  .expand span {
    width: 7px;
    height: 2px;
    margin-left: 4px;
    background-color: #fff;
    display: inline-block;
    transition: transform 0.3s;
  }
  .expand span:first-of-type {
    transform-origin: center center;
    transform: rotate(45deg) translate(0, -5px);
  }
  .expand span:last-of-type {
    transform-origin: center center;
    transform: rotate(-45deg) translate(0, -5px);
  }
  .brand-mobileSub,
  .header .burger,
  .hotline-onPush,
  .search-in-push {
    display: none;
  }
}
@media (max-width: 991.8px) {
  body,
  html {
    overflow-x: hidden;
  }
  .top-menu {
    padding: 17px 0;
  }
  .search-in-push {
    margin: 6px 0;
  }
  .group_search {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background-color: #fff;
  }
  .icon_bg {
    display: block;
    width: 100%;
    padding: 7px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    border: 0;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: Quicksand;
  }
  input.icon_bg:focus-visible {
    outline: 0;
  }
  .group_search input:focus {
    outline: 0;
  }
  button.butt_search {
    border-radius: 0;
    padding: 0;
    display: block;
  }
  button.butt_search i {
    font-size: 15px;
    color: #595959;
    border-left: 0.5px solid #e0e0e0;
    padding: 7px 12px;
  }
  .btn:not(:disabled):not(.disabled) {
    cursor: pointer;
  }
  .butt_search {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0;
  }
  .brand-mobileSub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 3px 10px 20px;
    background-color: var(--color-1);
  }
  button.closeMenu {
    background: 0 0;
    border: none;
    font-size: 19px;
    padding: 6px 10px;
    color: #fff;
  }
  .logo-text {
    display: block;
  }
  .logo-text a {
    font-size: 25px;
    color: #fff;
    transition: none;
  }
  .logo-text a:hover {
    color: #fff;
  }
  .brand-mobileSub img {
    max-width: 165px;
  }
  .hotline-onPush {
    background-color: var(--color-1);
    color: #fff;
    padding: 10px 10px 10px 20px;
    margin: 5px 0;
  }
  .hotline-onPush a,
  .hotline-onPush span {
    font-weight: 600;
    color: #fff;
    display: inline-block;
  }
  .hotline-onPush a:hover {
    color: #ebebeb;
  }
  .header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .header .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    padding-bottom: 20px;
    z-index: 999;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    background: #f2f2f2;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header .navbar.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .header .menu > .menu-item-child > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header .menu > .menu-item > a .expand {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 0 0 5px;
    pointer-events: none;
    border: none;
    outline: 0;
  }
  .header .menu > .menu-item > a .expand:after,
  .header .menu > .menu-item > a .expand:before {
    position: absolute;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #595959;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.35s;
    transition: 0.35s;
  }
  .header .menu > .menu-item > a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .header .menu > .menu-item-child.active > a .expand:after {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  .header .menu > .menu-item > .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: none;
    outline: 0;
    opacity: 0;
    overflow: hidden;
    visibility: visible;
    background-color: #efefef;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  li.menu-item.menu-item-child.active ul.sub-menu {
    opacity: 1;
  }
  .header .burger {
    position: relative;
    cursor: pointer;
    background-color: unset;
    padding: 7px;
    border: 1px solid #ddd;
    border-radius: 3px;
  }
  .header .burger-line {
    display: block;
    width: 27px;
    height: 3px;
    background-color: #fff;
    border-radius: 1px;
  }
  .header .burger-line:nth-child(2),
  .header .burger-line:nth-child(3) {
    margin-top: 5px;
  }
  .box-search-header-push {
    margin: 5px 0;
  }
}

/*CSS Exten Top*/
.top-wrap {
    background-color: var(--color-1);
	border-top: 1px solid #ffffff00;
	border-bottom: 1px solid #fff;
}
.box-top {
    line-height: 1.4;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 20px;
    padding: 6px 0;
}
.top-social ul {
    list-style: none;
    padding: 0;
	margin: 0;
}
.top-social ul li:not(:last-child){
	margin-right: 10px;
}
.top-social ul a{
    color: #fff;
}
.top-social ul a:hover{
    color: var(--color-2);
}
@media (max-width: 991.8px){
	.top-social{
		display: none
	}
}