
:root {
    --client-primary: #30110a;
}

@font-face {
    font-family: 'Fat-Frank-heavy';
    src: url("../fonts/fat-frank-heavy.otf");
}

body {
    background-color: white;
    background-size: cover;
}

.branding-top {
    margin-top: 30px;
    background-image: url(../images/Header_Cannonsburg-100.jpg);
    background-size: cover;
    aspect-ratio: 1251/301;
}

#return-link {
    text-decoration: none;
    color: #f1f3e7;
    border-radius: 24px;
    font-size: 14px;
    padding: 3px 24px;
    border: 1px solid #f1f3e7;
    text-wrap: nowrap;
    align-items: flex-start;
    margin-top: 8px;
}

.header-links {
    display: flex;
    width: 90%;
    justify-content: space-between;
    margin-top: 16px;
}

.header-contact {
    color: #f3f5e9;
    margin-top: 16px;
}

#header-contact {
    text-decoration: none;
    color: white;
    margin-right: 8px;
}

.branding-top-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}

#header-logo {
    height: auto;
    width: 150px;
    margin-left: 80px;
}

#title {
    font-family: Fat-Frank-heavy, sans-serif;
    height: auto;
    font-weight: bolder;
    font-size: 150px;
    text-align: center;
    color: #F3F5E9;
}

.container-fluid > .page_inner {
    border-radius: 0;
}

.branding-bottom {
    margin-bottom: 15px;
}

.branding-bottom > .branding-inner {
    background-image: url(../images/Footer_Cannonsburg-100.jpg);
    background-size: cover;
    height: 225px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    justify-content: center;
    display: flex;
    flex-direction: row;
    font-family: "Helvetica Neue", sans-serif;
    color: black;
}

.footer-container {
    display: flex;
    width: 90%;
    justify-content: space-between;
}

.footer-left {
    margin-top: 16px;
}

.footer-left > div {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    width: 180px;
    color: #E46329;
    font-weight: bolder;
}

.footer-left > div > a {
    color: #E46329;
    text-decoration: none;
    overflow-wrap: normal;
}

.footer-right {
    margin-top: 40px;
}

.footer-right > div {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

.footer-right > div > a {
    color: #E46329;
    text-wrap: nowrap;
    text-decoration: none;
    font-weight: bolder;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 85%;
}

#footer-logo {
    width: 300px;
    height: auto;
    margin-top: 16px;
}


/* navbar styles */
.navbar-inverse {
    background-color: #0b3581;
    border-color: #0b3581;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    background-color: #0b3581;
}

.container_icon_search {
    display: none;
}

/* Product Styles */
.btn-primary {
    background-color: #e2af67;
    border-color: #e2af67;
    border-radius: 25px;
}

.product_pod h3 a {
    color: #b85f37;
    font-family: Fat-Frank-heavy, sans-serif;
    font-size: 20px;
    font-weight: normal;
}

.category-container .thumbnail .caption h3 a {
    color: #b85f37;
    font-family: Fat-Frank-heavy, sans-serif;
    font-size: 20px;
    font-weight: normal;
}

#copyright-phone {
    display: none;
}

/* mobile view */
@media (max-width: 767px) {

    .branding-top {
        background-position-x: center;
    }

    #header-logo {
        margin-left: 0;
    }

    #return-link {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .header-links {
        justify-content: center;
    }


    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    #footer-logo {
        margin-left: -32px;
    }

    .branding-bottom > .branding-inner {
        height: fit-content;
        align-items: flex-start;
    }

    .footer-left {
        order: 3;
        margin-top: 0;
    }

    .footer-center {
        order: 1;
    }

    .footer-right {
        order: 2;
        margin-top: 0;
    }

    #copyright {
        display: none;
    }

    #copyright-phone {
        order: 5;
        display: block;
        margin-bottom: 16px;
        margin-top: 16px;
    }
}

