
#logo{
    height: 25px;
    width: auto;
}
.navbar {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    background-color: #ffffff;
    border-style: solid;
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    position:sticky;

}

.navbar a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  
}

.navbar a:hover {
  color: #04AA6D;
  text-decoration: underline;
  text-underline-offset: 10px;

}

.navbar a.active {
   color: #04AA6D;
  text-underline-offset: 10px;
  text-decoration: underline;
}

.navbar .icon {
    display: none;
}

#login {
    float: inline-end;
}

@media screen and (max-width: 900px) {
    .navbar a:not(:first-child) {
        display: none;
    }

    .navbar a.icon {
        float: right;
        display: block;
    }
    #login {
    float: left;
}
}

@media screen and (max-width: 900px) {
    .navbar.responsive {
        position: relative;
    }

    .navbar.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .navbar.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}