:root {
  --color-mn-text-m: #313591;
  --color-mn-text-d: #333;
  --color-mn-text-ha-m: #313591;
  --color-mn-text-ha-d: #313591;
  --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;
	font-family: 'Roboto', sans-serif;
}
.header .nav-menu {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}
.logo {
    max-width: 250px;
    position: absolute;
    left: 0;
    bottom: -30px;
}
.logo:before {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    content: url(../../images/Shape-header.png);
    z-index: -1;
}
.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-d);
  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: 1199.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-1);
    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;
  }
  .logo img {
    width: 82%;
    margin: 0 auto;
}
  .logo {
    width: 92px;
    height: 79px;
    position: absolute;
    left: 10px;
    bottom: -40px;
    display: flex;
    justify-content: center;
}
.logo:before {
    bottom: -6px;
    left: 43%;
}
}
@media (min-width: 1200px) {
  .header{
    background-color: var(--color-mn-bg-d);
  }
  .header .nav-menu {
    justify-content: flex-end;
  }
  .header .menu {
    background-color: inherit;
  }
  .header .menu .menu-item {
    position: relative;
    display: inline-block;
    margin: 0 11px;
    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 {
    transform: translateX(8px)
  
  }
  .header .menu .menu-item.is-active a,
  .header .menu .menu-item:hover a {
    color: var(--color-mn-text-ha-m);
  }
  .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-m);
      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-m);
    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;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    top: -70px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}

@keyframes stuckMoveDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
.navbar_scrolled {
    top: 0;
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.navbar_scrolled {
    -webkit-animation: stuckMoveDown .6s;
    animation: stuckMoveDown .6s;
}
.dem{
  height: 75px;
}

@media (min-width: 1200px) and (max-width: 1300px){
	.header .menu .menu-item{
		margin: 0 10px;
	}
	.header .menu .menu-item a{
		font-size: 14px;
	}
}