.menu-underline {
  position: relative;
  color: #222853 !important;
}

.menu-underline::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 4px);
  width: 100%;
  height: 3px; 
  background: #222853; 
}

.logo-border {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: #ECEEF3;
  pointer-events: none;
  z-index: 1;
}

header {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
}

.menu {
  a {
    height: 100%;
    text-decoration: none;
    color: #808080;
  }
}

a.color-gray {
  transition: color 0.2s;
  &:hover {
    color: #222853;
  }
}

.hidden {
  display: none !important;
}

.hamburger-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding:1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  flex-direction: column;
  background-color: white;
  padding: 1rem;
  gap: 1rem;
}

.menu-item {
  font-family: 'Days One', sans-serif;
  color: #171151;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
}
