body {
    font-family: Roboto, Cambria;
    padding: 0px;
    margin: 0px;
}

.header {
    margin: 0px;
    padding: 0px;
    background-color: #FFFFFF;
    color: #000000;
}

.headerBanner {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
}

.bannerLink {
    text-decoration: none;
    color: #ffffff;
    padding: 10px;
    font-size: 20px;
}

.bannerLink:hover {
    color: #bebebe;
    text-decoration: underline;
}

.mainHeaderContainer {
    display: flex;
    justify-content: space-between;
    padding: 15px 0px 10px 25px;
    margin-bottom: 20px;
}

.logoImage {
    width: 250px;
}

.businessInfo {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    margin-top: 25px;
}

.nav {
    display: flex;
    justify-content: space-evenly;
    align-items:center;
    width: 30vw;
}

.menuLink {
    text-decoration: none;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.menuLink:hover {
    color: #bebebe;
    text-decoration: underline;
}

@media screen and (max-width: 1440px) {
    .nav {
        justify-content: space-between;
        margin-right: 20px;
        width: 40vw;
    }
    
    /* .menuLink {
        font-size: 24px;
    } */
}

@media screen and (max-width: 1024px) {
    .nav {
        width: 50vw;
    }

    .menuLink {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .bannerLink {
        font-size: 16px;
    }

    .mainHeaderContainer{
        display: block;
        text-align: center;
        padding: 10px 5px 0px;
    }

    .nav {
        margin-top: 20px;
        width: 100%;
        justify-content: space-evenly
    }
}

@media screen and (max-width: 425px) {
    .headerBanner {
        display:block;
        text-align: center;
        padding: 15px 0px;
    }

    .bannerLink {
        font-size: 18px;
        line-height: 30px;
        text-wrap: nowrap;
    }
}

.borderLayer{
    border-bottom: 5px solid #000000;
}

.contactHeaderContainer {
    isolation: isolate;
    background-color: #000000;
    color: #ffffff;
    border-bottom: 5px solid #ffffff;
}

.sectionHeader {
    margin: 0px;
    padding: 15px 0px;
    text-align: center;
    font-size: 36px;
}

.contactText {
    font-size: 20px;
    padding: 30px 0px;
    text-align: center;
    line-height: 35px;
}

.locationBorder {
    border-top: 5px solid #000000;
    border-bottom: 5px solid #000000;
}

.locationContainer {
    border-top: 5px solid #ffffff;
    border-bottom: 5px solid #ffffff;
    background-color:#000;
    padding: 20px;
    text-align: center;
}

.locationHeader {
    color:#ffffff;
    font-size: 36px;
    margin-top: 0px;
}

.hessMillsMap {
    width: 75vw;
    height: 500px;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    .hessMillsMap {
        width: 90%;
        height: 300px;
    }
}

.footer {
    display: flex;
    justify-content: space-evenly;
    padding-top: 40px;
}

.footerLogo {
    width: 250px;
}

.belowLogoText{
    margin: 30px 0px;
    text-align: center;
}

.hoursText{
    font-size: 22px;
    font-weight: 600;
    line-height: 38px;
}

.fbLink {
    text-decoration: none;
    color: #0000F0;
}

.fbLink:hover {
    text-decoration: underline;
    color: #0000A0;
}

.footerNav {
    text-align: center;
}

.footerMenuLink {
    font-size: 24px;
    font-weight: 600;
    line-height: 70px;
    text-decoration:none;
    color: #000000;
}

.footerMenuLink:hover {
    color: #bebebe;
    text-decoration: underline;
}

@media screen and (max-width: 1024px) {
    .footerLogo {
        width: 200px;
    }

    .hoursText {
        font-size: 18px;
    }
}

@media screen and (max-width: 425px) {
    .footer {
        display: block;
        text-align: center;
    }

    .footerMenuLink {
        font-size: 18px;
        line-height: 50px;
    }
}