@charset "utf-8";

.header {
  height: var(--headerHeight);
  width: min(100%, var(--widthMax));
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 var(--wSpace);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.header_brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: auto;
}

.header_brand img {
  display: block;
  width: auto;
  height: calc(var(--headerHeight) * 0.6);
  transition: all 0.5s ease;
}

.header_logo {
  box-sizing: content-box;
  height: var(--headerHeight);
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  border-radius: 0 0 0px 0px;
}

.header_logotype {
  transition: all 0.5s ease;
  padding: calc(var(--headerHeight) * 0.2);
  padding-left: 0;
}

.header_navigation {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.5s ease;
  margin: calc(var(--headerHeight) * 0.2) 0 0 0;
  margin-right: 40px;
}

.header_navigation a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  display: inline-block;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
  padding: 5px 10px;
  border-radius: 5px;
}

.header_navigation a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: white;
  border-radius: inherit;

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.75s ease-in-out;
  will-change: transform;

  z-index: -1;

  box-shadow: var(--shadow-elevation-high);
}

.header_navigation a:hover::before {
  transform: scaleY(1);
  transition: transform 0.25s ease-in-out;
}

.header_navigation a:hover {
  color: hsl(0 0% 0% / 100%);
}

.header_menu-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  font: 0/0 a;
  cursor: pointer;
  color: transparent;
  overflow: hidden;
  background-color: var(--bgPage);
  background-image: url("../images/icons/menudark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% auto;
  transition: all 0.5s ease;
  border-radius: 0px;
  margin: calc(var(--headerHeight) * 0.2) 0 0 0;
  border-radius: 5px;
}

.header_menu-toggle:hover {
  box-shadow: var(--shadow-elevation-high);
}

.header_menu-toggle[aria-expanded="true"] {
  background-image: url("../images/icons/close.svg");
}

.header_menu-toggle[aria-expanded="false"] {
  background-image: url("../images/icons/menudark.svg");
}

.header_logo.is-scrolled {
  background: white;
  box-shadow: var(--shadow-elevation-high);
  border-radius: 0 0 5px 5px;
  padding: 20px 17px 0px 17px;
}

.header_logo.is-scrolled img {
  height: calc(var(--headerHeight) * 0.5);
}

.header_menu-toggle.is-scrolled {
  background-color: white;
  box-shadow: var(--shadow-elevation-high);
  border-radius: 5px;
}

.header_menu-toggle.is-scrolled:hover {
  box-shadow: var(--shadow-elevation-low);
}

.header_logotype.is-scrolled,
.header_navigation.is-scrolled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1160px) {
  .header_navigation {
    gap: 20px;
  }
}

@media only screen and (max-width: 1080px) {
}

@media only screen and (max-width: 780px) {
  .header {
    height: var(--headerHeight);
    width: 100%;
    margin: 0;
    padding: 0 calc(var(--wSpace) / 2);
  }

  .header_logo.is-scrolled {
    padding: 20px 12px 4px 12px;
  }

  .header_logo.is-scrolled img {
    height: calc(var(--headerHeight) * 0.72);
  }

  .header_menu-toggle {
    margin: calc(var(--headerHeight) * 0.1) 0 0 0;
  }
}

@media only screen and (max-width: 340px) {
}
