
header {
    position:sticky;
    top:0px;
    z-index:998;
    min-width:100vw;
    max-width:100vw;
    background-color:var(--main-color);
    display:flex;
    flex-direction:row;
    align-items: stretch;
    justify-content:space-between;
}


#logo-wp {
    @media (min-width: 276px) {
      width:80px;
    }
    @media (min-width: 768px) {
      width:130px;
    }
    @media (min-width: 992px) {
      width:140px;
    }
}


#logo-wp img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  display: block;
}


#header-title-div {
    display:flex;
    align-items:center;
    padding: 0.3rem 0rem 0.3rem 0rem;
}

#header-title-div h1 {
    text-align:center;
}

#header-title-div h1 a {
    font-size:1.3rem;
}

#main-nav {
    font-size:1.5rem;
    font-weight:700;
    min-height:100%;
    flex-direction:row;
    align-items:center;
    padding: 0 1rem;
    @media (min-width: 276px) {
	display:none;
	width:0px;
    }
    @media (min-width: 768px) {
	display:none;
        width:0%;
    }
    @media (min-width: 992px) {
	display: flex;
        width:auto;
    }
}

.nav-link-item,
.nav-link-last-item {
    color: #ebebeb;
    text-decoration: none;
}

.nav-link-item {
    margin-right: 1rem;
}

.nav-link-last-item {
    margin-right: auto;
}


.dropdown-btn {
  padding: 0.7rem;
  padding-top: 0.3rem;
  padding-right: 0.9rem;
  border: none;
  cursor: pointer;
  background: none;
  font-size:1.5rem;
  aspect-ratio: 1 / 1;
}

.dropdown-btn:hover, .dropdown-btn:focus {
  background-color: darkgrey;
}

.dropdown {
  position: relative;
  display: inline-block;
  float: right

  /* padding: 0.4rem; */ /* padding-top: 0.2rem; */
  /* padding-right: 0.8rem; */
  /* border: none; */
  /* background: none; */
  /* font-size:1.5rem; */
  /* aspect-ratio: 1 / 1; */
  @media (min-width: 276px) {
      visibility: visible;
  }
  @media (min-width: 768px) {
      visibility: visible;
  }
  @media (min-width: 992px) {
      width: 0px;
     position: absolute;
      visibility: hidden;
  }
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  min-width: 160px;
  z-index: 1;
  right:0
}

.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: darkgrey}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;} 
