
/* HEADER MENU */

  body {
    padding-top: 60px;
  }

  header {
    position: fixed;
    width: 100%;
    background-color: #16336b;
    color: white;
    top: 0;
    left: 0;
    z-index: 1000;
  }
	.header-link{
		cursor: hand;
	}
  .menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }

  .logo {
	  height: 50%;
	 }

  nav.desktop-menu {
    display: flex;
    gap: 20px;
  }

  nav.desktop-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  nav.desktop-menu a:hover {
    text-decoration: underline;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
  }

  nav.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(45 69 132 / 95%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
  }

  nav.mobile-menu a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
  }

  nav.mobile-menu .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
	font-size: 30px;
	cursor: hand;
  }

  nav.mobile-menu a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 1130px) {
    nav.desktop-menu {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    nav.mobile-menu.show {
      display: flex;
    }
  }