header{
    position: fixed;
    width: 100%;
    z-index: 2053;
}

header.popup{
    position: initial;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
@media (min-width: 991px) /*and (max-width: 1199px)*/ {
  header{
    background: white;
    border-bottom: 1px solid #D8D8D8;
    height: 100px;
    padding: 0 10px;
    position: fixed;
    width: 100%;
    z-index: 20;
  }
}

.menu-small {
  background-color: #333;
  color: #ddd;
  display: flex;
  flex-flow : column wrap;
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  z-index: 2052;
}
/*
.menu-small:before{
  background: #ddd;
  content: '';
  display: block;
  height: 2px;
  height: .2rem;
  position: absolute;
  right: 13px;
  right: 1.3rem;
  top: 13px;
  top: 1.3rem;
  width: 20px;
  width: 2rem;
}

.menu-small:after{
  border-bottom: 2px solid #ddd;
  border-top: 2px solid #ddd;
  content: '';
  display: block;
  height: 8px;
  height: .8rem;
  position: absolute;
  right: 13px;
  right: 1.3rem;
  top: 19px;
  top: 1.9rem;
  width: 20px;
  width: 2rem;
}*/

.menu-small h1 {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 12px;
  margin: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-small h1 a{
  color:white;
}

.menu-small ul {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2051;
}

.menu-small ul.has-sub {
  display: none;
}

.menu-small ul li {
  border-top: 1px solid rgba(120, 120, 120, 0.2);
  position: relative;
}

.menu-small ul li a{
  padding: 14px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #dddddd;
  font-weight: 700;
  text-transform: uppercase;
  display:inline-block;
  width:100%;
}

.menu-small .submenu-button {
  flex-basis: 42px;
height: inherit;
display: flex;
align-items: center;
justify-content: center;
color: #333;
border-left: 1px solid rgba(120, 120, 120, 0.2);
flex-shrink: 0;
cursor: pointer;
}

.menu-small .submenu-button:before {
  content: '\002B';
  font-size: 2rem;
  font-weight: 600;
  color:white;
}

.menu-small .submenu-button.submenu-opened {
  background-color: #262626;
}

.menu-small .submenu-button.submenu-opened:before {
  content: '\2212';
  color:white;
}

.menu {
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
  height: 100%;
}

.menu .logo {
  margin-right: auto;
}

.menu a:not(:last-child) {
  margin-right: 10px;
}
