/* #455A64 */

.navbar-container {
    height: 5rem;
    background-color: white;
    /* background-color: #455A64; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 4;
}

.navbar-logo-container {
    height: 4.7rem;
    margin-left: 1rem;
    /* width: fit-content; */
}



.navbar-logo-container img,.navbar-logo-container a {
    height: inherit;
}

.navlink-container {
    display: flex;
    justify-content: flex-end;
}

.navbar-item {
    /* color: #009688; */
    /* color: white; */
    color: black;
    font-size: larger;
    text-decoration: none;
    padding: .5rem 1rem .5rem 1rem;
    margin: 0 1rem 0 1rem;
    border-radius: 10px;
    transition: background-color ease-in-out 200ms;
    /* color: black; */
}

.navbar-item:focus {
    outline: none;
}

.active {
    background-color: #03cab6;
}

.navbar-item:hover {
    background-color: #03cab6;
}

/* hamburger icon design */

.hamburger-icon-container {
    display: none;
}

.hamburger-icon {
    width: 2rem;
    height: .15rem;
    background-color: #455A64;
    /* background-color: white; */
    transition: 0.5s;
    position: absolute;
    top: 2.3rem;
    right: 2rem;
}

.hamburger-icon:before, .hamburger-icon:after {
    content: '';
    width: 2rem;
    height: .15rem;
    background-color: #455A64;
    /* background-color: white; */
    transition: 0.5s;
    position: absolute;
}

.hamburger-icon:before {
    top: 8px;
}

.hamburger-icon:after {
    top: -8px;
}

.hamburger-icon-container.open .hamburger-icon {
    background-color: transparent;
}

.hamburger-icon-container.open .hamburger-icon:after {
    transform: rotate(45deg);
    top: 0;
}

.hamburger-icon-container.open .hamburger-icon:before {
    transform: rotate(-45deg);
    top: 0;
}
/* end of hamburger icon design */

/* responsive navebar design */
@media only screen and (max-width: 1103px) {
    .navlink-container {
        display: none;
    }

    .hamburger-icon-container {
        display: flex;
        margin-right: 1rem;
        height: 4rem;
        width: 4rem;
        background-color: none;
    }
}

@media only screen and (max-width: 375px) {
    .simple-logo {
        display: flex;
    }

    .large-logo {
        display: none;
    }
}
/* end of responsive navbar design */

/* mobile drawer design */
.mobile-drawer-container {
    width: 15rem;
    height: 100%;
    position: fixed;
    top: 5rem;
    left: -20rem;
    /* background-color: #455A64; */
    background-color: white;
    transition: transform ease-in-out 300ms;
    z-index: 3;
    box-shadow: 1px -2px 14px -1px rgba(0,0,0,0.75);
}

.open-drawer {
    transform: translateX(20rem);
}

.drawer-nav-container {
    display: flex;
    flex-direction: column;
}

.drawer-nav-container a {
    margin-top: 2rem;
    margin-left: 1rem;
    text-decoration: none;
    /* color: white; */
    color: black;
    padding: 1rem;
    width: fit-content;
    border-radius: 10px;
    font-size: larger;
}

.drawer-nav-container a:focus {
    outline: none;
}

.drawer-nav-container a:hover {
    background-color: #03cab6;
    transition-duration: 300ms;
}
/* end of mobile drawer design */

