.navbar-absolute {
  width: 100%;
  height: 63px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-container {
  min-width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  z-index: 50;
}

.w-container:before,
.w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

.w-nav:before,
.w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.brand-tablet {
  display: none;
}

.primary-button-navbar {
  width: auto;
  height: 50px;
  padding: 0 30px;
  text-align: center;
  font-family: sk8club, sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--primary-dark);
  background-color: var(--primary);
  border-radius: 100px / 36px;
  transition: all 0.3s;
  display: flex;
}

.primary-button-navbar:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #a4fd4b, #70f03e);
}

.navbar-filler {
  display: block;
  width: 100%;
  height: 7px;
  background-repeat: repeat-x;
  background-image: url(/images/nav-filler.svg);
  position: absolute;
  background-position: center top;
  overflow: hidden;
  left: 0;
  bottom: -4px;
  opacity: 0 !important;
}

.navbar-filler.visible {
  opacity: 1 !important;
}

@media screen and (min-width: 1920px) {
  .nav-container {
    padding-left: 80px;
    padding-right: 80px;
  }
  .primary-button-navbar {
    padding-left: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .nav-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 991px) {
  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .brand-tablet {
    display: block;
  }

  .primary-button-navbar {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .brand-tablet {
    padding-left: 0;
  }
}
