/*Div for Matembologo navigation and contact button*/
.header-div {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 align-items: center;
 height: 75px;

 position: fixed;
 top: 0;
 left: 0;
 right: 0;

 background: linear-gradient(to right, rgba(245, 219, 172, 1), rgba(255,255,255,1), rgb(255, 166, 0, 1));

 z-index: 1;
}

.nav-links {
  display: none;
}

.nav-links ul {
 display: flex;
 flex-direction: row;
 list-style-type: none;
 column-gap: 1.625rem;
 margin-right: 1.9375rem;
 margin-left: -1.5rem;
 font-size: 1.155rem;
 
}

.nav-links li a {
  text-decoration: none;
  list-style-type: none;
  color: black;
  cursor: pointer;
}

.nav-links .active {
  color: blue;
  font-weight: 700;
}

.nav-links li a:hover {
  text-shadow: 2px 2px 8px green;
}

.matembo-logo {
  display: flex;
  align-items: center;
  column-gap: 5px;
  
  margin-left: 20px;
}

.logo-image {
  border-radius: 25px;
}

.matembo-logo a {
  text-decoration: none;
  color: black;
  font-size: 20px;
}

/*Humberger Menu*/
#menu-toggle {
  display: none;
}

.check-btn {
  position: fixed;
  top: 10px;
  right: 25px;
  font-size: 30px;
  z-index: 2;
  cursor: pointer;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(245, 219, 172, 0.6), rgba(255,255,255,1), rgb(255, 166, 0, 0.6));
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-100%);
  align-items: center;
  z-index: 1;
  transition: 0.4s ease-in-out;
}

.menu a {
  text-decoration: none;
  color: black;
  padding: 20px 25px;
  margin-bottom: 20px;
  font-size: 20px;
  
}

.menu a:hover {
  background-color: green;
  box-shadow: 0 0 28px green;
  color: white;
  font-weight: 700;
  border-radius: 20px;
}

#menu-toggle:checked ~ .menu {
  transform: translateY(0);
}

@media (min-width: 450px) {
 
}


@media (min-width: 575px) {
  .nav-links {
    display: block;
  }

  .check-btn {
    display: none;
  }

  .matembo-logo {
   margin-top: 6px;
  }
}


@media (min-width: 760px) and (max-width: 999px) {
  .nav-links {
    display: block;
  }

  .check-btn {
    display: none;
  } 
}

@media (min-width: 1000px) {
  .nav-links {
    display: block;
  }

  .check-btn {
    display: none;
  }
}

