/* ============================================================ */
/*   HEADER & FOOTER — NEWCASTLE CLIENT                        */
/*   Client-specific file — edit here, not in styles.css       */
/* ============================================================ */

/* =============================== */
/*            HEADER               */
/* =============================== */

header {
    padding: 10px 20px 15px;
    background: #fff;
}

header .menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .menu-left .brand-logo {
    height: 40px;
}

header .menu-container .home-btn {
    font-family: var(--primaryFont);
    margin-left: 20px;
    cursor: pointer;
    background: var(--brandColor2);
    border-radius: 100px;
    border: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 14px;
    color: var(--blackColor);
    padding: 8px 75px;
    vertical-align: sub;
    text-decoration: none;
}

header .menu-container .home-btn:hover {
    text-decoration: underline;
}

header .menu-right li.account-avatar a {
    font-weight: 400;
    color: #2A302F;
    font-size: 14px;
}

header .menu-right li.account-avatar a:hover {
    color: var(--brandColor1);
    text-decoration: underline;
}

header .menu-right li.account-avatar a img {
    margin-right: 5px;
    border-radius: 50%;
}

/* =============================== */
/*            FOOTER               */
/* =============================== */

footer {
    padding: 10px;
    background-color: var(--darkColor);
}

footer .menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .menu-container a {
    color: var(--whiteColor);
    padding-left: 20px;
    font-weight: 300;
}

footer .menu-container a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 991px) {

    header .menu-container .home-btn {
        display: block;
        margin-top: 30px;
        margin-left: 0 !important;
        padding: 10px 55px !important;
    }
}
