/* header {
  background-color: aqua;
} */

#navbar-container {
  background-color: #fff;
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  /* position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%; */
  width: 100%;
  height: 80px;
  overflow: hidden;
  transition: 0.3s all linear;
}

.hidden {
  transform: translateY(-100%);
  transition: 0.3s all linear;
}

.navbar-logo-wrapper {
  width: 170px;
}

.navbar-logo-wrapper img {
  width: 100%;
}

.toggle-menu {
  display: none;
}

.nav-anchor-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  /* width: 60%; */
  /* background-color: wheat; */
  /* text-transform: uppercase; */
  font-family: var(--DmSans);
}

.nav-anchor-wrapper li a {
  font-size: 0.9rem;
  color: #000;
  /* font-weight: 600; */
}

.nav-donate-wrapper {
  font-family: var(--DmSans);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-color);
  /* border: 2px solid yellow; */
  width: 180px;
  height: 50px;
  color: #fff;
  border-radius: 24px;
}

/* Scroll to the Top */
.scroll-top-wrapper {
  position: fixed;
  bottom: 5vh;
  right: 0px;
  width: 70px;
  padding: 5px;
  z-index: 4;
  border-radius: 24px 0px 0px 24px;
  background-color: var(--primary-color);
  transform: translateX(100px);
  transition: 0.3s all linear;
}

.scroll-top {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: var(--primary-color);
  cursor: pointer;
}

/* Show Scroll top */
.show-top {
  transform: translateX(0);
  transition: 0.3s all linear;
}

@media (max-width: 968px) {
  #navbar-container {
    /* background-color: yellow; */
    display: block;
    padding: 10px 20px;
    height: 80px;
    overflow: hidden;
  }

  .navbar-mobile-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: teal; */
  }

  .toggle-menu {
    display: block;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 3rem;
    color: var(--primary-color);
    /* border: 2px solid var(--primary-color); */
    transition: 0.2s all linear;
    cursor: pointer;
  }

  .toggle-menu:hover {
    /* background-color: #fff; */
    background-color: var(--primary-color);
    color: #fff;

    transition: 0.2s all linear;
    cursor: pointer;
  }

  .nav-anchor-wrapper {
    width: 100%;
    display: none;
    /* flex-direction: column; */
    line-height: 2.5;
    gap: 0;
    margin-top: 30px;
  }

  .nav-anchor-wrapper li {
    /* background-color: blue; */
    cursor: pointer;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
  }

  .nav-anchor-wrapper li a {
    /* background-color: tomato; */
    display: block;
    width: 100%;
  }

  .nav-anchor-wrapper li a:hover {
    background-color: var(--primary-color);
    /* color: #fff; */
  }

  .nav-donate-wrapper {
    width: 100%;
    margin-top: 20px;
    display: none;
  }
}

/* SIDEBAR */

.sidebar-container {
  position: fixed;
  z-index: 30;
  /* background-color: blue; */
  background-color: #fff;
  padding: 20px;
  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: 200px;
}

.sidebar-links-wrapper {
  /* background-color: yellowgreen; */
  line-height: 3;
  font-family: var(--DmSans);
  margin-top: 20px;
  font-size: 0.9rem;
}

.sidebar-links-wrapper li {
  /* padding: 10px; */
  /* background-color: yellow; */
  font-weight: 500;
}

.sidebar-links-wrapper li a {
  display: block;
  color: var(--primary-color);
  color: #000000;
  /* background-color: thistle; */
  border-bottom: 1px solid rgb(224, 224, 224);
  transition: 0.2s all line;
}

.sidebar-links-wrapper li a:hover {
  color: var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
  padding-left: 10px;
  transition: 0.2s all line;
}

.sidebar-donate-wrapper {
  font-family: var(--DmSans);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-color);
  /* border: 2px solid yellow; */
  width: 180px;
  height: 50px;
  color: #fff;
  border-radius: 24px;
  width: 100%;
  margin-top: 20px;
}

/* Bread Crumb Navigation */
.bread-navigation-wapper {
  height: 450px;
  width: 100%;
  background-image: url(/Assets/Images/header-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bread-navigation-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 100px;
  font-family: var(--DmSans);
  /* background-color: #000000be; */
  width: 100%;
  height: 100%;
  color: #ffff;
}

.bread-navigation-overlay h2 {
  /* text-transform: uppercase; */
  font-weight: 500;
  font-size: 2.5rem;
  margin-top: 50px;
}

.bread-navigation-anchor {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  margin-top: 20px;
  text-align: center;
  /* max-width: 600px; */
}

.bread-navigation-anchor a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.bread-navigation-anchor a::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0px;
  height: 1.5px;
  background-color: #fff;
  margin-right: 10px;
  transition: width 0.3s ease;
}

.bread-navigation-anchor a:hover::before {
  width: 100%;
  background-color: goldenrod;
  transition: width 0.3s ease;
}

@media (max-width: 968px) {
  .bread-navigation-wapper {
    height: 400px;
    background-size: fill;
    background-position: left;
  }
  .bread-navigation-overlay {
    align-items: normal;
    justify-content: end;
    padding: 50px 20px;
  }

  .bread-navigation-overlay h2 {
    font-size: 2rem;
    font-family: var(--anton-family);
  }

  .bread-navigation-anchor {
    margin-top: 10px;
    text-align: left;
  }
}
