#pageHeader {
    background-position: center center;
    background-image: url(/wp-content/uploads/2017/02/home1.jpg);
    height: 250px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 250px;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #737373;
    margin-bottom: 40px;
    z-index: 1;
}

#pageHeader:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(48,48,48,.8);
    z-index: -1;
    opacity: .8;
}

#pageHeader h1 {
    margin: 0;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.page-holder ul {
    padding-left: 20px;
}

@media only screen and (max-width: 767px) {
    .alignright,
    .alignleft {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }
}