
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 2px solid #00b050;
}
.menu a {
  font-size: 18px;
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
}

.menu a:hover, 
.menu a:focus {
	background-color: #00b050;
	color: white;
  border-radius: 5px;
}
.menu a.active {
	background-color: #00b050;
    color: white;
    border-radius: 5px;
   
}
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}
.menu-links {
  display: flex;
  gap: 15px;
}
.title_logo{
  display: flex;
  align-items: center;
}
.title_logo a{
  text-decoration: none;
}

.title_logo img {
  width: 8rem;
  margin-right: 10px;
}
.title_logo h1 {
  font-size: 16px;
  color: #00b050;
  margin: 20px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .menu-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 4rem;
    left: 0;
    background: #4caf50;
    width: 100%;
    text-align: center;
  }
  .menu-links.active {
    display: flex;
    justify-content: space-evenly;
    margin-top: 5rem;
    height: 80vh;
    background: #a6e2a4;
  }
  .menu-toggle {
    display: block;
    margin: 0 0px 8rem;
    font-size: 35px;
    color: black;
  }
  .menu a:hover, 
.menu a:focus {
	background-color: #00b050;
	color: white;
  border-radius: 5px;
}
.menu a.active {
	background-color: #00b050;
    color: white;
    border-radius: 5px;
    width: 100%;
    /* margin-left: 2rem; */
}
}
/* *************************** ************************************************* */
/* *********************** Mode mini desktop************************************ */
/* *************************** ************************************************* */
@media (min-width: 769px) and (max-width: 900px) {

  /* *************************** ************************************************* */
  /* *********************** Navigation ***************************************** */
  /* *************************** ************************************************* */
    .menu {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff; 
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      border-bottom: 2px solid #00b050;
    }
    .title_logo img {
      width: 5rem;
      margin-right: 10px;
    }
    .title_logo h1 {
      font-size: 9px;
      margin: 20px 0;
      text-align: center;
    }    
      .menu a {
        font-size: 10px;
        color: #000;
        text-decoration: none;
        padding: 5px 5px;
    }
    .menu a:hover {
      color: #fff;
      background: #00b050;  
      border-radius: 5px;
    }
    
  }
  
  

