.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  padding: 10px 20px;
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 20px; */
}

.logo img {
  height: 70px;
  border-radius: 50%;
}

.navlinks {
  display: flex;
  align-items: center;
}

.navlinks ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.navlinks ul li {
  position: relative;
  margin-right: 30px;
}

.navlinks ul li a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: all 0.35s ease-in-out;
  color: #CC6328;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  font-family: 'Quicksand', san serif;
}

.navlinks ul li a:hover {
  color: #00a5a2;
}

.navlinks ul li:hover .dropdown {
  display: block;
}

.navlinks ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 10px;
  background-color: #FFC83B;
  /* margin-left: 20px; */
  z-index: 1;
  /* background-color: rgba(255, 166, 0, 0.598); */
}

.navlinks ul li .dropdown li {
  /* width: 200px; */
}

.navlinks ul li .dropdown li a {
  padding: 10px;
  display: block;
  white-space: nowrap;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
}

.navlinks ul li .dropdown li a:hover {
  color: black;
}

.donate {
  /* padding-left: 40px; */
}

.donate-button {
  background-color: #FFC83B;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  color: #0e0d0d;
  font-weight: bold;
  display: inline-block;
  border: 2px solid black;

}

.donate-button:hover {
  background-color: #e69500;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.Introduction {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #00a5a2;
}

.Introduction h1.anaya {
  color: #ffc83b;
  /* flex-grow: 0.5; */
}

.Profile {
  position: relative;
  /*  margin-right: 60px;*/
}

.dropdown-profile {
  width: 150px;
  display: none;
  position: absolute;
  top: 100%;
  left: -30px;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.Profileimg:hover+.dropdown-profile,
.dropdown-profile:hover {
  display: block;
}

.Profile:hover #profile-img {
  content: url("/img/circle-user-solid.jpg");
}

li {
  list-style: none;
}

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

.Profileimg {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  cursor: pointer;
}

.Profileimg img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.dropdown2 {
  position: relative;
  display: inline-block;
  /*  width: 200px;*/
  width: 35%;
  /* float: right; */
}

.dropdown-button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  border-radius: 20px;
  cursor: pointer;
  color: #000000;

}

.dropdown-content {
  display: none;
  position: absolute;
  width: 200px;
  border-radius: 10px;
  background: #ffc83b;
  z-index: 111;
  overflow: hidden;
}

.dropdown-content div {
  margin-top: 4px;
  width: 100%;
  padding: 6px 0px 6px 4px;
  cursor: pointer;
  color: white;
}

.dropdown-content div:hover {
  background-color: #00a5a2;
  color: #ffc83b;
}

.dropdown-profile ul {
  padding: 5px;
}

.dropdown-profile li {
  padding: 8px;
}

.dropdown-profile li:hover {
  background-color: #e69500;
}

header select.cohort-dropdown-select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  border-radius: 20px;
  cursor: pointer;
  color: black;
  border: none;
}

@media (max-width: 1199px) and (min-width: 991px) {}

@media (max-width: 991px) and (min-width: 768px) {}

@media (max-width: 900px) {
  .navlinks {
    width: 100%;
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    background-color: #f4f4f4;
    padding: 10px 20px;
    position: absolute;
    top: 94px;
    left: 0;
    /* display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f4f4f4; 
    position: absolute;
    top: 70px; 
    left: 0;
    padding: 0 20px; 
    z-index: 1000;
    justify-content: flex-end; */
  }

  .donate {
    padding: 40px 0;
  }

  .navlinks ul {
    flex-direction: column;
    width: 100%;
    /* gap: 20px; */
  }

  .navlinks ul li {
    width: 100%;
  }


  .navlinks ul li a {
    color: #0e0d0d;
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .navlinks.active {
    display: flex;
  }

  .Introduction h1.anaya {
    display: none;
  }
}

@media (max-width: 480px) {
  .dropdown-button {
    font-size: 10px;
  }
}