.header {
    position: relative;
    height: 164px;          /* This needs to match .headerText line-height for vertical centering */
    width: 1000px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    border: 0;
}

#siteLogo {
    position: absolute;
    bottom: 0;
    padding-bottom: 15px;
    padding-left: 10px;
    width: 252px;
    height: 135px;
}

.headerText {
    position: absolute;
    display: block;
    line-height: ;     /* This needs to match .header height for vertical centering */
    right: 0;
    bottom: 0;
    width: 400px;
    text-align: center;
    margin-bottom: 15px;
}

.headerText div {
    border: 0px solid #00983e;
    border-radius: 25px;
    background-color: #e8e8e8;
    margin: 0.7em;
}

#slogan {
    display: inline-block;
    font-size: 22px;
    color: #000000;
    margin-bottom: 16px;
}

#phoneNum {
    display: inline-block;
    font-size: 20px;
    margin-top: 2px;
}

nav {
    display: none;
}

#largeMenu {
    display: block;
    position: relative;
    height: 50px;
    line-height: 50px;
    margin: 0;
    padding: 0;
    border: 0px solid green;
    min-width: 100%;
    list-style: none;
    text-align: center;
    white-space: nowrap;
    background: #00983e;
}

#largeMenu li {
    display: inline;
    padding-left: 16px;
    padding-right: 16px;
    text-transform: uppercase;
    transition: padding-left 0.5s;
    transition: padding-right 0.5s
}

#largeMenu li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

#subMenu {
    display: block;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    height: 50px;
    line-height: 50px;
    margin: 0;
    padding: 0;
    border: 0px solid green;
    min-width: 100%;
    list-style: none;
    text-align: center;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0.55);
}

#subMenu li {
    display: inline;
    padding-left: 16px;
    padding-right: 16px;
    text-transform: uppercase;
    transition: padding-left 0.5s;
    transition: padding-right 0.5s;
}

#subMenu li a {
    text-transform: none;
}

.topImg {
    top: -50px;
    margin-bottom: -50px;
    z-index: -10;
    background-attachment: fixed;
}

.jumpTo::before { 
    display: block;
    position: relative;
    content: " "; 
    margin-top: -60px; 
    height: 60px; 
    visibility: hidden; 
    pointer-events: none;
    z-index: -1;
}

#fireSecurityBG {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-image: url(/fire-security/fire-alarm-background.jpg);
}




/* Start homepage promo banner styles  */

.homePromoDiv {
    background-color: rgb(249,157,29);
    background-image: url(/img/IR_Promo_Background.png), linear-gradient(45deg, rgba(249,157,29,1) 4%, rgba(203,60,109,1) 37%, rgba(120,42,143,1) 71%, rgba(203,60,109,1) 92%, rgba(249,157,29,1) 100%);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
    min-height: 430px;
}

.homePromoDiv h1 {
    font-size: 60px;
    line-height: 60px;
}

.homePromoDiv h3 {
    font-size: 30px;
}

.whiteBorder {
    min-height: calc(430px - 2em);
}

.subPromo {
    display: block;
    max-width: 50%;
    border: 0px solid yellow;
    text-align: right;
    padding-right: 1em;
    float: right;
}

.promoButton {
    margin-top: 3em;
    margin-left: 1em;
    margin-right: 1em;
}

/* End homepage promo banner styles  */





@media screen and (max-width: 890px) {
    #largeMenu li {
        padding-left: 8px;
        padding-right: 8px;
        transition: padding-left 0.5s;
        transition: padding-right 0.5s
    }
    
    #subMenu li {
        padding-left: 8px;
        padding-right: 8px;
        transition: padding-left 0.5s;
        transition: padding-right 0.5s
    }
    
}