#header {
  position: relative;
  width: 100%;
  background-color: #fff;
  z-index: 3;
  /* display: none; */
}

/* Styles */
.navbar-head-container {
  /* background-color: yellow; */
  display: flex;
  align-items: center;
  gap: 50px;
  height: 100px;
  padding: 0px 50px;
  justify-content: space-between;
  position: relative;
}

.logo-wrapper {
  width: 200px;
}

.logo-wrapper img {
  width: 100%;
  font-family: var(--popins-font);
}

.toggle-menu-btn {
  display: none;
}

/* Links */

.navigation-links-wrapper {
  display: flex;
  gap: 50px;
  width: 60%;
  /* background-color: violet; */
  justify-content: space-between;
  align-items: center;
}

.anchor-links-wrapper {
  display: flex;
  font-family: var(--fire-font);
  font-weight: 500;
  gap: 30px;
  list-style: none;
}
.anchor-links-wrapper li a {
  color: #000;
  transition: 0.2s ease-in-out;
}

.anchor-links-wrapper li a:hover {
  color: var(--primary-color);
  transition: 0.2s ease-in-out;
}

.donate-btn-wrapper {
  /* background-color: yellowgreen; */
  font-family: var(--fire-font);
}

.donate-btn-wrapper a {
  padding: 15px 30px;
  /* background-color: wheat; */
  background-color: var(--primary-color);
  display: flex;
  color: #fff;
  align-items: center;
  gap: 10px;
  border-radius: 34px;
  /* outline: 2px solid #000; */
}

/* Active Navigation */
.active-nav {
  color: var(--primary-color) !important;
}

@media (max-width: 867px) {
  .navbar-head-container {
    /* background-color: yellow; */
    display: block;
    padding: 20px;
    height: 90px;
    overflow: hidden;
  }

  .logo-wrapper {
    width: 150px;
  }
  .toggle-menu-btn {
    /* display: contents; */
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    height: 50px;
  }

  .navigation-links-wrapper {
    display: none;
  }
}

/* SIDEBAR */

.sidebar-container {
  position: fixed;
  z-index: 2;
  /* background-color: blue; */
  background-color: #fff;
  padding: 20px 50px;
  left: 0;
  top: 0;
  width: 80%;
  height: 100vh;
  transform: translateX(-100%);
  transition: 0.2s all ease-in;
  overflow-y: auto;
}

.slidebar {
  transition: 0.2s all linear;
  transform: translateX(0);
}
.sidebar-logo {
  /* background-color: blue; */
}

.sidebar-logo img {
  width: 150px;
}

.sidebar-links-wrapper {
  /* background-color: yellowgreen; */
  line-height: 3;
  font-family: var(--popins-font);
  margin-top: 20px;
}

.sidebar-links-wrapper li {
  /* padding: 10px; */
  font-weight: 500;
}

.sidebar-links-wrapper li a {
  color: var(--primary-color);
  color: #000000;
  transition: 0.2s all line;
}

.sidebar-links-wrapper li a:hover {
  color: var(--primary-color);
  transition: 0.2s all line;
}
