@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");
.blog-header nav {
  background-color: #7E0202;
}
.blog-header nav .nav-content ul li a {
  color: #ffffff;
}

.gallery-header nav {
  background-color: #9DBF9E;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000000000000000;
  background-color: #fec400;
}
nav .nav-content {
  width: 100%;
  display: flex;
  padding-top: 24px;
  padding-bottom: 24px;
  justify-content: space-between;
  align-items: center;
}
nav .nav-content .logo-wrapper {
  width: -moz-fit-content;
  width: fit-content;
}
nav .nav-content ul {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}
nav .nav-content ul .logo-wrapper {
  display: none;
}
nav .nav-content ul .logo-wrapper .logo {
  width: 100%;
}
nav .nav-content ul li a {
  font-family: "Hind", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  text-decoration: none;
  color: #2A2A2A;
  text-transform: uppercase;
}
nav .nav-content ul li .button {
  padding: 16px 32px;
  background-color: #2A2A2A;
  color: #ffffff;
  border-radius: 8px;
}
nav .nav-content .cross-icon {
  display: none;
}
nav .nav-content .hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  display: none;
  top: 40px;
}
nav .nav-content .hamburger .line {
  height: 3px;
  width: 30px;
  background-color: #000000;
}

@media (max-width: 1100px) {
  .blog-header nav .nav-content ul li a {
    color: #2A2A2A;
  }
  nav .nav-content {
    /*flex-direction: column;*/
  }
  nav .nav-content .hamburger {
    display: flex;
    position: absolute;
    right: 30px;
  }
  nav .nav-content .cross-icon {
    display: flex;
    font-size: 30px;
    color: #ffffff;
    z-index: 99;
    position: absolute;
    left: 230px;
  }
  nav .nav-content ul {
    flex-direction: column;
    min-height: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    left: -100%;
    top: 0;
    padding: 24px 50px 10px 20px;
    background-color: #fec400;
    max-width: 300px;
    transition: all 0.5s ease-in-out;
    z-index: 999999999;
  }
  nav .nav-content ul .logo-wrapper {
    display: block;
  }
  nav .nav-content .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3764705882);
    position: fixed;
    top: 0;
    left: -100%;
    transition: all 0.5s ease-in-out;
    z-index: 9999;
  }
}
@media (max-width: 450px) {
  nav .logo-wrapper .logo {
    width: 70%;
  }
}
@media (max-width: 450px) {
  .nav-content .logo {
    /*width: 60%;*/
    height:100%;
  }
}