/* Clean and simple version of hero and page-header background */
.hero {
    position: relative;
    background: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 49, 97, 0.8);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.page-header {
    position: relative;
    background: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 49, 97, 0.8);
}

.page-header .container {
    position: relative;
    z-index: 1;
}
