
/*
 * -- MENU STYLES --
 * I want to customize how my .pure-menu looks at the top of the page
 */


.header {
}

.home-menu {
    text-align: center;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: white;
    box-shadow: 0 1px 1px rgba(0,0,0, 0.10);
}
.home-menu {
    background: white;
}
.pure-menu.pure-menu-fixed {
    /* Fixed menus normally have a border at the bottom. */
    border-bottom: none;
    /* I need a higher z-index here because of the scroll-over effect. */
    z-index: 4;
}

.home-menu .pure-menu-heading {
    padding: 22px 0;
}

.home-menu .pure-menu-selected a {
    color: black;
}

.home-menu a {
    color: black;
}
.home-menu li a:hover,
.home-menu li a:focus {
    background: none;
    border: none;
    color: #AAAAAA;
}

.logo {
    width: 55px;
    display: block;
}

.pure-menu-item {
    font-size: 1em;
}

.mobile-only .menu-button {
    background-color: transparent;
    border: none;
    padding: 22px;
    margin-right: -20px;
}
.mobile-only .menu-button img {
    width: 20px;
    height: 20px;
}
.hamburger-img {
    display: block;
}
.open .hamburger-img {
    display: none;
}
.close-img {
    display: none;
}
.open .close-img {
    display: block;
}

.mobile-modal-menu {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 60px 20px 30px 20px;
    z-index: -1;
}
.open.mobile-modal-menu {
    display: block;
}

.mobile-menu-list {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 13px;
}

.mobile-menu-list li {
    list-style: none;
    text-align: left;
}

.mobile-menu-item a {
    font-size: 13px;
    display: inline-block;
    width: 100%;
    height: 47px;
    line-height: 47px;
}

.mobile-download-button {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    font-size: 14px;
    color: white;
    background-color: black;
    border-radius: 5px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-download-button img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}



/*
 * -- TABLET (AND UP) MEDIA QUERIES --
 * On tablets and other medium-sized devices, we want to customize some
 * of the mobile styles.
 */
@media (min-width: 48em) {

    /* We increase the body font size */
    body {
        font-size: 16px;
    }

    .pure-menu-item {
        font-size: 0.8125em;
    }


    /* We can align the menu header to the left, but float the
    menu items to the right. */
    .home-menu {
        text-align: left;
        padding: 0 148px;
    }
        .home-menu ul {
            float: right;
        }
}

/*
 * -- DESKTOP (AND UP) MEDIA QUERIES --
 * On desktops and other large devices, we want to over-ride some
 * of the mobile and tablet styles.
 */
@media (min-width: 78em) {
    /* We increase the body font size */
    body {
        font-size: 16px;
    }

    .pure-menu-item {
        font-size: 0.8125em;
    }

    /* We can align the menu header to the left, but float the
    menu items to the right. */
    .home-menu {
        text-align: left;
    }
        .home-menu ul {
            float: right;
        }

}

