#headerButton svg {
    position: fixed;
    top: 0;
    visibility: visible;
    margin-left: 2%;
    margin-top: 30px;
    z-index: 100;
 }

.container {
  position: fixed;
  top: 0;
  width: 100%;
  min-height:14%;
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  -webkit-box-shadow: 0 3px 14px 0 #dbdbdb24, 0 5px 5.5px 0 #dbdbdb24;
    box-shadow: 0 3px 14px 0 #dbdbdb24, 0 5px 5.5px 0 #dbdbdb24;
    z-index: 99;
  opacity: 1;
}

.container{
transition: opacity 0.75s ease;
}

.item {
  font-family: Bitter;
  text-align: center;
  width: 3rem;
  padding: 1rem 1rem;
  background: #ffffff;
  color: #1e1e1e;
}


.item-1 {
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0;
    font-size: clamp(0.8rem, 4vw, 2.25rem);
    text-align: left;
    padding-left: max(12%, 50px);
    margin-top: 1rem;
    font-weight: 500;
    line-height: 1;
}

.item-2 {
    flex-grow: .5;
    flex-shrink: 2;
    font-size: 20px;
    margin-top: 1rem;
}


.dropdown {
  float: right;
  position: relative;
  padding-right: 25%;
  padding-top: .5%;
}

.dropdown .dropbtn {
  font-size: 17px;  
  border: none;
  outline: none;
  color: #4e4e4e;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.05);
  z-index: 1;
  background-color: #fdfcfc;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 15px;
  line-height: 1.1;
}

.dropdown-content a:hover {
  color: #043eec; 
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
  display: block;
}

@media (max-width: 750px) {
  .item-1 {
    font-size: clamp(0.7rem, 5vw, 2.25rem);
  }

  .dropdown {
    padding-right: 6%;
    color: red;
  }

  .dropbtn-label {
    display: none;
    
  }
  
}

footer {
  margin-top: 8rem;
  margin-bottom: 2rem;
}

hr {
  margin-bottom: 1rem;
  width: 85%;
  color:rgb(240, 240, 240);
}

h5 {
  font-weight: 400;
  font-size: 1em;
}

h5 a{
  color: black;
  text-decoration: none;
}

h5 a:hover {
  text-decoration: underline;
  color: #043eec;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

