/* -----header---- */
.skip-link {
  position: absolute;
  top: -80px;
  left: 0;
  color: #000 !important;
  background: #ffffff;
  padding: 10px;
  z-index: 100;
  font-family: var(--typography-button-font-family);
}
.skip-link:focus {
  top: 10px;
  left: 10px;
}
.container-navbar {
  background-image: var(--color-gradient);
}
.navbar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.nav-item > .nav-link {
  text-transform: uppercase;
  font-size: 16px;
  padding: 1rem;
  font-weight: bolder;
}
.nav-area,
.brand-logo-area,
.action-buttons {
  width: calc(100% / 3);
}
.brand-logo-area {
  text-align: center;
}
.brand-logo {
  width: 17rem;
  height: auto;
}
.header-call-btn {
  font-size: 1.7rem;
  font-style: italic;
}
.action-buttons {
  text-align: right;
}
.nav-menu-icon {
  width: 30px;
  height: auto;
  filter: invert(100);
}
.navbar-toggler-icon {
  filter: invert(100);
}
@media (max-width: 991.98px) {
  .action-buttons {
    text-align: center;
    width: 100%;
  }
  .navbar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .nav-area,
  .brand-logo-area {
    width: 100%;
  }
}
