.navItem {
}

.navItem a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: var(--color-secondary);
  padding: 10px 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: var(--color-primary);
  border-radius: 9px;
  border: 1px solid var(--color-primary);
  box-sizing: border-box;
}

.btn-primary {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#000;
  stroke-width:5.5;
  stroke-linecap:round;
}

.ham .top {
  stroke-dasharray: 40 121;
}

.ham .bottom {
  stroke-dasharray: 40 121;
}

.ham.active .top {
  stroke-dashoffset: -68px;
}

.ham.active .bottom {
  stroke-dashoffset: -68px;
}

#navbar-menu {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  transition: all 0.5s ease;
}

#navbar-menu.active {
  max-height: 350px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: -5;
  transition: all 0.5s ease;
}

#backdrop.active {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.tmargin-5px {
  margin-top: 5px;
}