* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    background-color: var(--exp-blue);
    color: white;
    min-height: 130px;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}


.navbar .nav_logo_container{
    width: 9rem;
    height: 6rem;
}


.nav_logo_container .nav_logo{
    object-fit: contain;
    width: 145%;
    height: 115%;
}

.navbar .elsa_logo_container{
    width: 9rem;
    height: 6rem;
    margin: 2rem;
}

.elsa_logo_container .elsa_logo  {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: var(--exp-white);
    padding: 1rem;
    font-size: 1.4em;
}

.navbar-links li:hover {
    /* background-color: #555; */
}

.navbar-links li a:hover{
    color: var(--exp-bez);
}

.navbar-links li a.currentLink{
    color: var(--exp-bez);
}

.toggle-button {
    position: absolute;
    top: 2rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

@media (max-width: 900px){
    .navbar-links ul li a {
        font-size: 1em;
    }
}
/* responsive for desktop */
@media (max-width: 750px){
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }

}


/* responsive for mobile */
@media (max-device-width: 750px){
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }

}
