.header {
    display: flex;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 195px;
}

.header--columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 25px;
}

.header--nav--item {
    list-style: none;
}

.header--nav--item a {
    font-family: var(--font-family-montserrat);
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--blue);
    text-transform: uppercase;
    position: relative;
}

.header--nav--item a{
    margin: 6px;
}

.header--column {
  > a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
  }
}

.header--nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: -20px 0 10px;
}

.header--nav-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  height: 44px;
  width: 100%;
  padding-inline-start: 0px;

  .component-menu-item {
    list-style-type: none;
    padding: 0 5px;

    a {
      font-family: var(--font-family-montserrat);
      font-size: 1.25rem; /* 20px */
      font-weight: 800;
      text-decoration: none;
      color: var(--blue);
      text-transform: uppercase;
      position: relative;
    }
  }
}

.open-modal {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin-top: -60px;
}

.open-modal svg {
  width: 3rem;
  height: 3rem;
}

.header .nav-mobile {
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 190px;
  left: 0;
  padding: 3rem;
  z-index: 30;
  transform: translateY(-200%);
  transition: 400ms ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
  padding-left: 20px;
  gap: 20px;
  background-color: var(--white);
}

.header .nav-mobile.active {
  transform: translateY(0%);
  transition: 500ms ease;
  overflow-y: scroll;
}

.header .nav-mobile li {
    list-style: none;
    line-height: 35px;
}

.header .nav-mobile a {
    font-family: var(--font-family-montserrat);
    color: var(--blue);
    font-size: 2rem;
    text-decoration: none;
    display: flex;
    gap: 4px;
    align-items: center;
    font-weight: 800;
    text-transform: uppercase;
    }

.header--nav--item a.is-active::after {
    content: "";
    position: absolute;
    bottom: -0.95rem;
    left: 15%;
    width: 2.375rem;
    height: 0.1875rem;
    border-radius: 0.0625rem;
    background-color: var(--blue);
    transform: translateX(-50%);
    margin: 15px;
}

.header--nav--item a.is-active{
    font-weight: 900;
}

.header--nav--item a {
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
}

@media (min-width: 48rem) { /* 768px */
    .header nav li a.is-active::after {
        bottom: -0.5rem; /* 12px */
        left: 50%;
        margin: unset;
    }
}
@media (min-width: 90rem) { /* 1440px */
    .header--nav-inner {
        gap: 34px;
    }
    
    .header nav li a {
        font-size: 1.25rem;
    }
}