/* Base */

/* Primary */

/* Secondary */

/* Containers */

/* Header height */

/* Rich text */

/* Widths */

/* Spacing */

/* Radius */

/* Misc */

.header {
  position: relative;
  z-index: 2;
  background-color: #fff;
  margin-bottom: 20rem;
}

.header__cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

@media only screen and (min-width: 1024px) {
  .header__cover {
    display: none;
  }
}

.header__container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 768px) {
  .header__container {
    max-width: 1440px;
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1440px) {
  .header__container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.header__container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media only screen and (min-width: 1024px) {
  .header__container {
    justify-content: center;
    gap: 1rem;
    height: 84px;
    padding-left: 240px;
    padding-right: 148px;
  }
}

@media (min-width: 1280px) {
  .header__container {
    gap: 5.125rem;
  }
}

.header__brand {
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  margin-top: 15px;
}

@media only screen and (min-width: 1024px) {
  .header__brand {
    margin-top: 4px;
  }
}

.header__brand:after {
  content: "";
  position: absolute;
  top: -36px;
  left: -20px;
  display: block;
  width: 165px;
  height: 165px;
  background-color: #033803;
  border-radius: 100%;
  z-index: -1;
}

@media only screen and (min-width: 1024px) {
  .header__brand:after {
    top: -158px;
    left: -97px;
    width: 338px;
    height: 338px;
  }
}

.header__menu {
  display: flex;
  gap: .75rem;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: .75rem;
  margin-bottom: .75rem;
}

@media only screen and (min-width: 1024px) {
  .header__menu {
    position: absolute;
    top: 50px;
    right: 48px;
    height: 84px;
    margin: 0;
    overflow: hidden;
  }
}

@media only screen and (max-width: 1023px) {
  .header__navigation {
    position: absolute;
    top: 95px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
  }
}

@media only screen and (min-width: 1024px) {
  .header__navigation {
    flex-grow: 1;
    max-width: 761px;
  }
}


/*# sourceMappingURL=header.css.map*/