﻿body {
    font-family: "Catamaran", sans-serif;
}

p {
    font-family: 'Catamaran', serif;
}

.borderTop {
    width: 100%;
    position: absolute;
    top: 0;
}

.primarylinks {
    padding-left: 15px;
    margin-top: 21px;
    margin-bottom: 17px;
}


.desktopNav li {
    display: inline-block;
}

    .desktopNav li a {
        font-size: 16px;
        color: #2d2d2d;
        padding-right: 15px;
        margin-right: 5px;
        text-transform: uppercase;
        font-weight: 700;
    }

        .desktopNav li a:hover {
            text-decoration: none;
        }

.desktopNav {
    padding-left: 0;
    display: none;
}

.navigationWrap {
    min-height: 90px;
    background-color: white;
 /*   padding-top: 50px;*/
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.17);
}

.mobileNav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 14;
    top: 0;
    left: 0;
    background-color: #050505;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

    .mobileNav.open {
        width: 300px;
    }

.mobileNavTrigger span {
    display: block;
    margin-top: 8px;
    margin-bottom: 8px;
    height: 2px;
    background-color: white;
    width: 45px;
}

.mobileNavTrigger {
    float: left;
    margin-top: 28px;
    cursor: pointer;
}

.mobileNavClose {
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 20px;
    width: 35px;
}

.mobileNav ul {
    padding-left: 25px;
}


.mobileNav li {
    list-style: none;
}

    .mobileNav li a {
        display: inline-block;
        padding-top: 5px;
        padding-bottom: 5px;
        color: white;
        font-family: 'Catamaran', serif;
        font-size: 22px;
    }

.mobileNav a.pointer{
    color: white;
}

.navPlaceHolder {
    height: 90px;
}

.navigationWrap {
    position: fixed;
    z-index: 13;
    top: 0;
    width: 100%;
    background-color: #a6193c;
}


.upperNav {
    min-height: 30px;
    background-color: #a6193c;
}


.desktopNav .submenu {
    position: absolute;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height ease .25s;
    background-color: white;
    z-index: 0;
    margin-left: -15px;
    margin-top: 15px;
}

/*.mobileNav .submenu {
    max-height: 0;
    transition: max-height ease .25s;
    overflow: hidden;
}
*/

.mobileNav li:hover .submenu {
    max-height: 800px;
}

.mobileNav li:hover{
    color: white;
}

.desktopNav li:hover .submenu {
    max-height: 800px;
    z-index: 2;
}

.desktopNav .submenu li {
    display: block;
    margin-bottom: 5px;
}

@media screen and (min-width:992px) {
    .desktopNav {
        display: block;
    }

    .mobileNav {
        display: none;
    }

    .mobileNavTrigger {
        display: none;
    }
    .navigationWrap {
        background-color: #ffffff;
    }
}
