nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: +10;
}
.nav {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0d1320;
  flex-direction: row;
  padding-left: 6%;
  padding-right: 6%;
}
.light {
  background-color: #ffffff;
}
.lightBlue {
  background-color: #f7fdfe;
}
.logoContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}

.imgPortos {
  width: auto;
  height: 50px;
}
.menuContainer {
  flex-direction: row;
  width: auto;
  display: inline;
}
a {
  text-decoration: none;
}
ul a {
  text-decoration: none;
  margin-right: 40px;
}
li {
  display: inline;
  color: white;
}
.liLight {
  color: #0d1320;
}
.menuIcon {
  display: none;
}
.mobileMenuContainer {
  display: none;
}

.highlight {
  color: #51d3bd;
}

@media (max-width: 767px) {
  .nav {
    height: 50px;
  }
  .light {
    background-color: #effbf9;
  }
  .menuContainer {
    display: none;
  }
  .imgPortos {
    width: auto;
    height: 40px;
  }
  .menuIcon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 30px;
    height: 40px;
    margin-right: 13px;
  }
  .menuIconLine {
    background-color: #0d1320;
    width: 100%;
    height: 4px;
    border-radius: 3px;
  }
  .light {
    background-color: #effbf9;
  }
  .mobileMenuContainer {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
  }
  .closeMenu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-color: #effbf9;
  }
  .closeMenu div {
    transform: rotate(45deg);
    color: #0d1320;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 40px;
  }
  .mobileMenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .mobileMenu a {
    width: 100%;
    color: #0d1320;
    text-align: center;
    height: 60px;
    font-size: 40px;
    background-color: #effbf9;
  }
}
