#header-bg.front {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 6%,rgba(0,0,0,0) 100%);
  height: 60px;
  z-index:2;
}

#header-bg.front.bright {
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 6%,rgba(255,255,255,0) 100%)
}

#header-hat {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  background: var(--colorHeader);
  color: var(--colorWhite);
}

#header-hat.front-fixed {
  position: fixed;
}

#header-hat.front:not(.js-menu-open) {
  background: transparent;
  transition: background-color .2s linear;  
}

#header-hat h1 {
  margin: 0;
  padding: 0;
  text-align: left;
}

.header-branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header-button-menu {
  font-size: var(--fontSizeMedium);
  margin-right: 1em;
  display: flex;
  align-items: center;
}

#header-button-menu span {
  width: 52px;
}

#block-cama-main-menu {
  border-bottom: 1px solid #e6e6e6;
  box-shadow: 0 0 10px rgba(0,0,0,.15), 0 3px 3px rgba(0,0,0,.15);
  background: white;

}

header.front:not(.js-menu-open) #block-cama-main-menu {
  border: 0;
  box-shadow: none;
  background: transparent;
  transition: background-color .2s linear;
}

@media screen and (min-width: 1024px) {
  #header-bg.front {
    height: 200px;
  }
  
  #header-button-menu {
    display: none;
  }
}
