:root {
  --color-mn-text-m: #141414;
  --color-mn-text-d: #141414;
  --color-mn-text-ha-m: #03A9F4;
  --color-mn-text-ha-d: #03A9F4;
  --color-mn-bg-m: #fff;
  --color-mn-bg-d: #fff;
  --color-mn-border-m: #e0e0e0;
  --color-mn-dark: #343a40;
}
.header {
  z-index: 999;
  background-color: var(--color-mn-bg-m);
  box-shadow: 0 2px 5px 0 #00000026;
  padding: 15px 0;
  width: 100%;
  position: sticky;
  top: 0;
}
.header .nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  max-width: 250px;
}
.header .menu .menu-item .sub-menu .menu-item a,
.header .menu .menu-item a {
  display: block;
  font-weight: 500;
  line-height: inherit;
  color: var(--color-mn-text-m);
  text-transform: capitalize;
}
.header .menu {
  padding: 0;
  margin: 6px 0;
  background-color: #fff;
}
.header .menu .menu-item-child {
  display: block;
  margin: 0;
  border-bottom: 0.5px solid var(--color-mn-border-m);
}
.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: var(--color-mn-text-ha-m);
}
.header .menu .menu-item:hover a .expand::after,
.header .menu .menu-item:hover a .expand::before {
  background: var(--color-mn-text-ha-m);
}
.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 var(--color-mn-border-m);
  display: block;
  margin: 0;
}
.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 {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  background: #000000a6;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 991.8px) {
  html, body{
    overflow-x: hidden;
  }
  .header .burger {
    position: relative;
    cursor: pointer;
    background-color: unset;
    padding: 7px;
    border: 1px solid var(--color-mn-border-m);
    border-radius: 3px;
  }
  .header .burger-line {
    display: block;
    width: 27px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 1px;
  }
  .header .burger-line:nth-child(2),
  .header .burger-line:nth-child(3) {
    margin-top: 5px;
  }
  .logo-sm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 3px 10px 20px;
    background-color: #fff;
  }
  .logo-sm img {
    max-width: 165px;
  }
  button.closeMenu {
    background: 0 0;
    border: none;
    font-size: 19px;
    padding: 6px 10px;
    color: var(--color-mn-dark);
  }
  .search-sm {
    margin: 6px 0;
  }
  .group_search {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background-color: #fff;
  }
  .icon_search {
      width: 100%;
      padding: 7px 20px;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--color-mn-dark);
      border: 0;
      transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  input.icon_search:focus-visible, .group_search input:focus {
    outline: 0;
  }
  .group_search input::placeholder{
    color: #a5a5a5;
  }
  button.butt_search {
    border-radius: 0;
    padding: 0;
    display: block;
  }
  button.butt_search i {
    font-size: 15px;
    color: var(--color-mn-dark);
    border-left: 0.5px solid var(--color-mn-border-m);
    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;
  }
  .hotline-onPush {
    background-color: #03a9f4;
    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: var(--color-mn-text-m);
    -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: #f5f5f5;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  li.menu-item.menu-item-child.active ul.sub-menu {
    opacity: 1;
  }
  .box-search-header-push {
    margin: 5px 0;
  }
}
@media (min-width: 992px) {
  .header{
    background-color: var(--color-mn-bg-d);
  }
  .header .nav-menu {
    justify-content: center;
  }
  .header .menu {
    background-color: inherit;
  }
  .header .menu .menu-item {
    position: relative;
    display: inline-block;
    margin: 0 20px;
    border-bottom: unset;
  }
  .header .menu .menu-item a {
    padding: 5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-mn-text-d);
    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-mn-text-ha-d);
  }
  .header .menu .menu-item.is-active a,
  .header .menu .menu-item:hover a {
    color: var(--color-mn-text-ha-d);
  }
  .header .menu .menu-item .sub-menu {
      position: absolute;
      top: 34px;
      left: 0;
      width: 267px;
      padding: 1px 0;
      opacity: 0;
      visibility: hidden;
      border-top: 3px solid var(--color-mn-text-ha-d);
      border-radius: 7px;
      overflow: hidden;
      background-color: #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: 7px 7px 0 0;
  }
  .header .menu .menu-item .sub-menu .menu-item:last-child a {
    border-radius: 0 0 7px 7px;
  }
  .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-child:before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    background-color: var(--color-mn-text-ha-d);
    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: var(--color-mn-text-d);
    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);
  }
  .logo-sm,
  .header .burger,
  .hotline-onPush,
  .search-sm {
    display: none;
  }
}

.top {
    background-color: var(--color-primary)
}

.btn-search,.input-search {
    background-color: transparent
}

.box-top {
    line-height: 1.4;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
}
.box-top, .phone-header a{
  color: #fff;
}

.top-right {
    display: flex;
    align-items: center
}


/*Start Form Search Destop*/
.search-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--color-primary);
    transition: all ease .3s;
    cursor: pointer;
}
.search-modal-btn:hover {
  box-shadow: 0 3px 5px 0 rgb(255 255 255 / 15%);
}


.modal-search-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.97);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transform: translateY(1rem) translateZ(0);
  transition: all 0.3s ease;
}
.modal-search-wrapper.active {
  visibility: visible;
  transform: translateY(0) translateZ(0);
  opacity: 1;
  z-index: 9999;
  visibility: visible;
}
.modal-search-wrapper.active .content-search {
  opacity: 1;
  visibility: visible;
}


.modal-search-wrapper .content-search {
    position: absolute;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0.3s;
}
form.form-search {
  display: flex;
  align-items: center;
    border: 1px solid #03A9F4;
    border-width: 0 0 1px 0;
    border-radius: var(--radius);
}
.modal-search-wrapper input {
    width: 100%;
    background: none;
    color: white;
    padding: 10px 10px 10px 25px;
    font-size: 20px;
    font-family: inherit;
}
.modal-search-wrapper input:focus {
  outline: none;
}
.modal-search-wrapper input::placeholder {
  color: #f3f3f3;
}
form.form-search button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: .3s;
    border-radius: var(--radius);
}
form.form-search button:hover, form.form-search button:focus{
  background-color: #3d3d3d8a;
  outline: none;
}

button.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 0;
    width: 35px;
    height: 35px;
    transition: .3s;
}
button.close-modal-btn:hover {
  box-shadow: 0 3px 5px 0 rgb(255 255 255 / 15%);
  background-color: #f2f2f2;
}


@media (max-width: 991.8px){
  .search-modal-btn{
    display: none !important;
  }
}
/*End Form Search Destop*/