.navbar-container {
    background-color: #e6eff6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    position: sticky;
    top: 0;
    z-index: 3;
}

.navbar-item {
    text-decoration: none;
    margin: .5rem;
    color: black;
    padding: 1rem;
    border-radius: .5rem;
    text-align: center;
    transition: background-color ease-in-out 200ms;
}

.navlink-container {
    display: flex;
    align-items: center;
    margin-right: 1rem;
    font-size: large;
}

.search-container #search-input {
    padding: 1rem;
    border-radius: 10px;
    border: none;
    min-width: 15.5rem;
    font-size: large;
}

.search-container #search-button {
    padding: 1rem;
    background-color: #89b4c4;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: large;
    transition: background-color ease-in-out 200ms;
}

.search-container #search-button:hover {
    cursor: pointer;
    background-color: #9ecedf;
}

.navbar-item:hover {
    background-color: #9ecedf;
    color: black;
    transition-duration: 300ms;
}

.logo-container {
    /* height: calc(4rem - 1px); */
    height: 5rem;
    width: auto;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-logo{
    height: 4rem;
    width: auto;
}

.large-logo {
    image-rendering: -webkit-optimize-contrast;
}

.simple-logo {
    display: none;
    height: 4rem;
    width: auto;
}

/* hamburger icon design */

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

.hamburger-icon {
    width: 2rem;
    height: .15rem;
    background-color: black;
    transition: 0.5s;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.hamburger-icon:before, .hamburger-icon:after {
    content: '';
    width: 2rem;
    height: .15rem;
    background-color: black;
    transition: 0.5s;
    position: absolute;
}

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

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

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

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

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

/* responsive navebar design */
@media only screen and (max-width: 1060px) {
    .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: 100vh;
    position: fixed;
    top: 5rem;
    left: -20rem;
    background-color: #e6eff6;
    transition: transform ease-in-out 300ms;
    z-index: 3;
    /* transform: translateX(-100%); */
}

.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: black;
    padding: 1rem;
    width: fit-content;
    border-radius: 10px;
}

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