body.page-template-page-home .header.fade-in .header__brand {
  opacity: 1;
}
body.page-template-page-home .header .header__brand {
  opacity: 0;
}

.header {
  padding: var(--s-10) 0;
  background-color: var(--cl-white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
@media (max-width: 992px) {
  .header {
    height: var(--s-70);
  }
}
.header.fade-in {
  box-shadow: var(--shadow-1);
}
.header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav {
  list-style: none;
  font-size: var(--step-1);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cl-blue-3);
}
@media (max-width: 992px) {
  .header__nav {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    display: none;
  }
}
@media (min-width: 992px) {
  .header__nav {
    margin-left: auto;
    display: flex;
    gap: var(--s-30);
  }
}
.header__nav.active {
  position: fixed;
  z-index: 101;
  inset: var(--s-70) 0 0 0;
  background-color: var(--cl-white);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header__nav.active li {
  padding: var(--s-05);
  font-size: var(--step-3);
}
.header__nav.active li a {
  padding: var(--s-15);
  display: block;
}
.header__brand {
  width: 8rem;
  margin-right: auto;
}
@media (max-width: 992px) {
  .header__brand {
    margin-bottom: calc(var(--s-10) * -1);
  }
}
@media (min-width: 992px) {
  .header__brand {
    display: flex;
    width: 12rem;
    height: auto;
  }
}
.header__burger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent;
  font-weight: 500;
  color: var(--cl-blue-3);
  font-size: var(--step-2);
  text-transform: uppercase;
}
.header__burger em {
  display: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  font-style: normal;
}
.header__burger.active {
  font-weight: 700;
}
.header__burger.active b {
  display: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.header__burger.active em {
  display: block;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
@media (min-width: 992px) {
  .header__burger {
    display: none;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}/*# sourceMappingURL=header.css.map */