
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    overflow: hidden;
	  height: 3rem;
    background-image: linear-gradient(to right, #000f01 33%, #13a0bf 75%);
    border-bottom: 0.1rem solid white;
    display: flex;
}

/*#050808*/

.navbar-left {
  width: 40%;
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
  .navbar-left {
    width: 25%;
    display: flex;
  }
}

.logo-mobile {
  display: none;
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
  .logo-mobile {
    display: block;
    padding: .5rem;
  }
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
  .no-mobile {
    display: none;
  }
}

.navbar-left > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0; 
    padding: 0;
}

.navbar-left > ul > li {
    display: flex;
    background-color: transparent;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.navbar-left > ul > li:hover {
    background-color: #0e7a92;
}

.navbar-left > ul > li:visited {
    background-color: #0e7a92;
    color: white;
    text-decoration: none;
}

.navbar-left > ul > li > a {
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 100;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
}

.navbar-left > ul > li > a:active {
    color: #000f01
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
  .navbar-left .no-mobile {
    display: none;
  }
}


.navbar-right {
  width: 40%;
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
  .navbar-right {
    width: 65%;
  }
}

.navbar-right > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin: 0; 
    padding: 0;
}

.navbar-right > ul > li {
    display: flex;
    background-color: transparent;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.navbar-right > ul > li > a {
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 100;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
}


.navbar-right > ul > li > a:hover {
    color: #000f01;
}

.navbar-right .active {
    background-color: #000f01;
    color: white !important;
}