.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--d-9-d-9-d-9, #008C3B);
  padding: 20px 60px;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
}

.header img {
  height: 64px;
  max-width: 200px;
}

.header nav {
  display: flex;
  gap: 20px;
}

.header nav a {
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  margin: -10px;

}

.header nav a:hover {
  color: #008C3B;
  background: white;
  border-radius: 20px;
  text-decoration: underline white;
}

.mobile-menu , .close-menu-mobile{
  display: none;
  background: transparent;
}


.mobile-nav {
  position: fixed; 
  top: -100vh; 
  overflow: scroll;
  left: 0;
  width: 100%;
  height: 100%; 
  background: rgba(0, 0, 0, 0.8);

  gap: 40px;
  z-index: 1000;
  transition: top 0.5s;
  background: var(--d-9-d-9-d-9, #008C3B);

  display: flex;
  flex-direction: column;
  align-items: center;  
  padding-top: 80px;
  opacity: 0; 
  transform: scale(0.9); 
}

.hidden {
  top: 100px;
  display: none;
}

.mobile-nav a{
  color: #222B6E;
  font-weight: bold;
  font-size: 16px;
  padding: 10px; 
  margin: -10px; 
}

.mobile-nav a:hover {
  color: white;
  background: #008C3B;
  border-radius: 20px;
}


@media only screen and (max-width: 1300px) {
  .header nav a {
      font-size: 14px;
  }
}

@media only screen and (max-width: 1080px) {
  .mobile-menu {
      display: block;
  }

  .header nav {
      display: none;
  }

}


@media only screen and (max-width: 560px) {
  .mobile-menu img, .close-menu-mobile img, .header img {
    transform: scale(0.7);
  }

  .header {
    padding: 20px 20px;
  }
 
}
