header {
    width: 100%;
    background-color: #ffffff;
}

nav {
    font-family: RegularFont;
    padding: 0.5em;
    font-size: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header_toggler_icon {
    background-image: url("../Images/HamburgerMenu.png");
}

.nav_container_fluid {
    height: 100%;
}

.navbar-collapse {
    flex-grow: 0;
}

.header_logo {
    height: 100%;
}

.header_logo img {
    /* height: 4.48em; */
    height: 2em;
}

.navbar-nav .nav-link {
    padding-left: 1em;
}

.link_items li a:hover {
    background-color: #b5b5b5;
    color: #000;
}

.link_items li a:visited {
    color: #000;
}

.link_item_active {
    background-color: #d4d4d4;
}

.header_navbar_collapse {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 2;
    background-color: #fff;
}

.nav-item {
    width: 94%;
    margin: 0 auto;
}

#MyAccount {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#maple_leaf_homes_logo {
    height: 1.5em;
}

@media screen and (max-width: 400px) {
    .header_logo {
        display: flex;
        flex-direction: column;
    }

    .header_logo img {
        width: min-content;
    }

    #maple_leaf_homes_logo {
        height: 1em;
    }
}

@media screen and (min-width: 1200px) {
    .nav-item {
        width: 100%;
        margin: 0 auto;
    }

    .link_items li a {
        padding: 0.5em 1em;
        margin: 0.5em;
        text-decoration: none;
        color: #000;
        width: max-content;
    }

    .header_navbar_collapse {
        position: unset;
        width: unset;
        top: unset;
        left: unset;
        z-index: unset;
        background-color: #fff;
    }

    #MyAccount {
        max-width: 12em;
    }

    #maple_leaf_homes_logo {
        height: 2em;
    }

    .header_logo img {
        height: 3em;
    }
}