.lighteraboutHead {
    max-width: 93%;
    margin: 0 auto;
    margin-top: 2em;
}

.lighteraboutHead a {
    color: #000;
    font-size: 1.5em;
}

.lighteraboutHead a img {
    margin-right: 15px;
}

.bgWrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../../images/bgocean.jpg') rgba(0, 0, 0, 0.5);
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

header.mainHeader {
    position: absolute;
    z-index: 5;
    height: 90px;
    width: 100%;
    top: 0;
    left: 0;
}

header.mainHeader .headerInner {
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

header.mainHeader .headerInner img {
    width: 60px;
    /*position: fixed;*/
    /*left: calc(50% - 50px);*/
    top: 10px;
}

nav div {
    position: relative;
    padding: 0.75rem 1.5rem;
}

nav div a {
    font-size: 16px;
    color: #fff;
}

.headerUL {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

ul.headerUL li {
    margin: 0 15px;
}

section.mainSection {
    position: relative;
    z-index: 5;
    width: 75%;
    height: calc(100vh - 100px);
    margin: 0 auto;
    top: 100px;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.left h1 {
	color: #fff;
	font-size: 3em;
	margin: 0;
}

.left h2 {
	color: #fff;
	margin-top: -10px;
	margin-bottom: 70px;
	font-size: 1.3em;
}

.links{
    display: none;
}

@media screen and (max-width: 965px) {
    .headerUL{
        display: none;
    }
    .links{
        display: flex;
        margin-top: 6em;
    }
    .links div {
        margin: 0 30px 0 0;
    }
    .links div a {
        color: #fff;
    }
    header.mainHeader .headerInner {
        justify-content: center;
    }
    .bgWrap {
        background-position: 75% 0;
    }

}