.header-fix{
  padding-top: 78px;

}

.header{
  background: #fff;
  padding: 8px 0;
  box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.1);
}

.header.fixed{
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
}

.header_logo{
  display: flex;
  align-items: center;
  width: 20%;
  min-width: 250px;
}

.header_nav{
  flex-grow: 2;
  ul{
    display: flex;
    list-style: none;
  }
  li{
    display: block;
  }
  a{
    font-size: 14px;
    line-height: 30px;
    color: $text_color_main;
    text-decoration: none;
  }
}

.menuitem-icon{
  display: flex;
  align-items: center;
  padding-right: 20px;
  span{
    display: block;
    margin-left: 5px;
  }
}

.header_rekl{
  display: flex !important;
  align-items: center;
  span{
    color: #2097F2;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
  }
}

.flex-between{
  justify-content: space-between;
}

.hamburger {
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger:hover {
  opacity: 0.7; }

.hamburger-box {
  width: 30px;
  height: 25px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: 0px; }

.hamburger-inner, .hamburger-inner:before, .hamburger-inner:after {
  width: 36px;
  height: 4px;
  background-color: $text_color_main;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; }

.hamburger-inner:before, .hamburger-inner:after {
  content: '';
  display: block; }

.hamburger-inner:before {
  top: -8px; }

.hamburger-inner:after {
  bottom: -8px; }

.hamburger--slider .hamburger-inner {
  top: 0px;
}

.hamburger--slider .hamburger-inner:before {
  top: 12px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner:after {
  top: 24px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
  background: $text_color_main;
}

.hamburger--slider.is-active .hamburger-inner:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
  background: $text_color_main;
}

.hamburger--slider.is-active .hamburger-inner:after {
  transform: translate3d(0, -24px, 0) rotate(-90deg);
  background: $text_color_main;
}

.mobile-nav{
  align-items: center;
  margin-right: 10px;
  position: absolute;
  right: 20px;
  top: 23px;
  display: none;
}