@font-face {
    font-family: 'Futura';
    src: url('../_fonts/FuturaBT-HeavyItalic.woff2') format('woff2'), url('../_fonts/FuturaBT-HeavyItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Futura';
    src: url('../_fonts/FuturaBT-Heavy.woff2') format('woff2'), url('../_fonts/FuturaBT-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
  }

* {
    font-family: 'Source Sans Pro', sans-serif;
}

body, html {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}

h1, h2 {
    font-size: 30px;
}

a {
    color: #000;
    position: relative;
}

a:not(.noBorder) {    
    border-bottom: 2px solid black;
}

a, a:hover, a:active, a:focus {
    text-decoration: none;
}

ul:not(.ignoreListStyle) {
    list-style-position: inside;
    padding-left: 0;
}

ul li ul {
    padding-left: 30px;
}

a:hover:after {
    width: 90%;
    transition: all ease .25s;
}

.special {
    margin-bottom: 15px;
}

.special:before {
    content: "";
    width: 39%;
    height: 18px;
    position: absolute;
    left: 3px;
    top: 22px;
    background: linear-gradient(to right, rgba(214,221,227, 1), rgba(214,221,227, .3)); 
    margin: auto;
    z-index: -1;
}

.extraTop {
    margin-top: 25px;
}

.extraBottom {
    margin-bottom: 25px;
}

img {
    max-width: 100%;
}

.btn {
    width: auto;
    display: inline-block;
    padding: 7.5px 20px;
    background: #d6dde3;
    border: 2px solid black;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: color ease 1s .1s, background ease .5s;
}

.btn:hover {
    background: #000;
    color: #d6dde3;
}

/* Section margin / padding handling + colors*/
section {
    padding-top: 75px;
    padding-bottom: 75px;
}

section.noPaddingTop {
    padding-top: 0;
}

section.noPaddingBottom {
    padding-bottom: 0;
}

section.gray {
    background: #F6F6F6;
}

/* Inputs */

input, textarea {
    height: 51px;
    width: 100%;
    border: 1px solid #ececec;
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    font-style: italic;
    outline: 0;
    outline: none;
}

input:focus, input:active {
    border: 2px solid black;
}

input[type="submit"] {
    background: white;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 0;
}

input[type="submit"]:hover {
    color: white;
}

textarea {
    height: auto;
    max-width: 100%;
    min-width: 100%;
    min-height: 150px;
    max-height: 300px;
    padding: 15px;
}

label {
    margin-bottom: 5px;
    display: block;
    font-family: "Futura";
    letter-spacing: 1.5px;
    font-size: 14px;
}

nav {
    position: fixed;
    left: 0;
    top: 0;
    width:350px;
    height: 100%;
    background: #f7f7f7;
    z-index: 99999;
    box-shadow: 0 0 12.5rem rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(-140%);
    transform: translateX(-140%);
    overflow-y: auto;
    transition: transform .1s linear, box-shadow .2s linear;
    transition-delay: .2s;
    padding: 60px;
    padding-top: 150px;
}

nav.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

nav .claim {
    font-size: 16px;
    line-height: 17px;
    font-family: 'Futura';
    letter-spacing: 0;
    position: absolute;
    left: 45px;
    top: 47px;
    transition: top ease .5s;
}

nav .close {
    font-size: 50px;
    line-height: 25px;
    position: absolute;
    right: 30px;
    top: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: top ease .5s;
}

nav ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

nav ul li {
    line-height: 2.5;
}

nav span.bgPlane {
    position: absolute;
    bottom: 44px;
    left: 5px;
    overflow: hidden;
    opacity: .05;
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(21deg);
    font-size: 263px;
    z-index: -1;
}

.bodyOverlay {
    visibility: hidden;
    background-color: rgba(255, 255, 255, 0.7);
    position: fixed;
    width: 100%;
    height: 100%;
    transition: background-color .1s linear;
}

body.navOpen {
    overflow: hidden;
}

body.navOpen .bodyOverlay {
    visibility: visible;    
    z-index: 99999;
}

header {
    height: auto;
    width: 100%;
}

header .navWrapp {
    transition: background ease 0s;
}

body.navScrolled header .navWrapp {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: white;
    z-index: 99;
    padding: 30px 60px;
    box-shadow: 0 0.125rem 0.3125rem rgba(0,0,0,.26);
    transition: background ease .2s;    
    border-top: 2px solid black;
}

header .headerRow {
    width: 100%;
    height: auto;
    background: #F6F6F6;
}

header .headerRow .headerCol {
    width: 100%;
    height: auto;
    float: left;
    min-height: 1px;
    position: relative;
}

header .headerRow .headerCol .textContent {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform:none;
}

header .headerRow .headerCol .halfHeight > h1,
header .headerRow .headerCol .halfHeight > h2,
header .headerRow .headerCol .halfHeight > h3,
header .headerRow .headerCol .halfHeight > h4,
header .headerRow .headerCol .halfHeight > h5,
header .headerRow .headerCol .halfHeight > h6 {
    margin-top: 0;
}

header .headerRow .headerCol .surtitle {    
    font-size: 16px;
    line-height: 17px;
    font-family: 'Futura';
    letter-spacing: 0px;
    position: relative;
}

header .headerRow .headerCol .surtitle.lines {
    padding-left: 50px;
    padding-right: 50px;
}

header .headerRow .headerCol .surtitle.lines:before, header .headerRow .headerCol .surtitle.lines:after{    
    content: "";
    width: 40px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    background: #000;
}

header .headerRow .headerCol .surtitle.lines:after{    
    left: auto;
    right: 0;
}

header .headerRow .headerCol .fullHeight {
    height: auto;
    padding: 45px;
    transition: padding ease .5s;
}

.textContent p, .textContent ul li, .textContent address {
    line-height: 29px;
    letter-spacing: 1.5px;
    font-size: 16px;
}

.textContent address {
    line-height: 1.5;
}

header .headerRow .headerCol .halfHeight {
    height:auto;
    background: white;
    padding: 45px;
    position: relative;
    transition: padding ease .5s;
}

header .headerRow .headerCol .halfHeight.blue {    
    background: #d6dde3;
}

header .headerRow .headerCol .halfHeight.green {    
    background: #dbe7db;
}

header .headerRow .headerCol .halfHeight.yellow {    
    background: #B89F5D;
}

header .headerRow .headerCol .halfHeight.grey {    
    background: #f1f1f1;
}

header .headerRow .headerCol.imgCol {
    display: none;
    background-image:url(../_img/banner.jpeg);
    background-size: cover;    
    background-position: right;
}

header .headerRow .headerCol .burger-bars {
        float: right;
        position: relative;
        overflow: hidden;
        width: 1.5rem;
        height: 1.0625rem;
        padding: 0;
        cursor: pointer;
}

header .headerRow .headerCol .burger-bars span {
    position: absolute;
    display: inline-block;
    width: 100%;
    right: auto;
    height: 3px;
    transition: .1s width linear;
    background-color: #000;
}

header .headerRow .headerCol .burger-bars span.mbtn-top, header .headerRow .headerCol .burger-bars span.mbtn-bot {
    left: -3px!important;
}

header .headerRow .headerCol .burger-bars span.mbtn-mid {
    top: 50%;
    width: 80%;
    margin-top: -1.5px;
    right: 0px;
    left: inherit;
    position: absolute;
}

header .headerRow .headerCol .burger-bars span.mbtn-bot {
    bottom: 0;
    width: 100%;
}

main figure {
    padding: 0;
    margin: 0;
}

main figure img {
    display: inline;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid #d6dde3;
}

main figure figcaption h1,
main figure figcaption h2,
main figure figcaption h3,
main figure figcaption h4,
main figure figcaption h5,
main figure figcaption h6 {    
    margin-bottom: 5px;
}

main figure figcaption > address, main figure figcaption > ul {
    margin-bottom: 1em;
    margin-top: .5em;
}

main section.quote {
    padding: 75px 0;
    background: #d6dde3;
}

main section.quote blockquote {
    line-height: 29px;
    letter-spacing: 1.5px;
    font-size: 32px;
    font-family: 'Futura';
    font-style: italic;
}

main section.quote blockquote:before {
    content: "“";
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    line-height: 0;
    margin-right: 15px;
    opacity: .5;
}

.backToTop {
    width: 60px;
    height: 60px;
    background: #d6dde3;
    position: fixed;
    right: 15px;
    bottom: -100px;
    border: 2px solid black;
    font-size: 25px;
    cursor: pointer;
    transition:  all ease .2s;
}

body.navScrolled .backToTop {
    bottom: 15px;
}

.backToTop:hover {
    background: black;
    color: #d6dde3;
}

.backToTop i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate( -50%, -50%);
}

footer {
    padding: 25px 0;
    background: #141414;
    color: white;
}

footer .footerTitle {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 22px;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

footer .footerCopyright {
    font-size: 12px;
    margin-bottom: 0;
}

@media screen and (min-width: 480px){
    header .headerRow .headerCol .surtitle {
        letter-spacing: 2px;
    }
    header .headerRow .headerCol .fullHeight {
        padding: 60px;
    }
    header .headerRow .headerCol .halfHeight {
        padding: 60px;
    }
    nav .close {
        top: 20px;
    }
    nav .claim {
        font-size: 17px;
        line-height: 17px;
        letter-spacing: 1.5px;
        left: 60px;
        top: 62px;
    }
}

@media screen and (min-width: 576px) {
    main figure figcaption {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }    
}

@media screen and (min-width: 1200px){
    header {
        height: 100%;
    }
    
    h1, h2 {
        font-size: 25px;
    }

    header .headerRow .headerCol .surtitle.lines {
        padding: 0;
    }
    
    header .headerRow .headerCol .surtitle.lines:before, header .headerRow .headerCol .surtitle.lines:after{    
        display: none;
    }

    h1, h2, h3, h4, h5, h6 {
        margin-top: 0;
    }

    header .headerRow {
        height: 100%;
    }

    header .headerRow .headerCol {
        height: 100%;
    }

    header .headerRow .headerCol .fullHeight {
        height: 100%;
    }

    header .headerRow .headerCol .halfHeight {
        height: 50%;
    }

    header .headerRow .headerCol .textContent {
        position: absolute;
        left: 60px;
        right: 60px;
        top: 55%;
        -webkit-transform: translateY(-50%);
        transform:translateY(-50%);
    }

    header .headerRow .headerCol:first-child, header .headerRow .headerCol:nth-child(2)   {
        width: 36%;
    }

    header .headerRow .headerCol:last-child  {
        width: 28%;
    }

    header .headerRow .headerCol.imgCol {
        display: block;
    }
}

@media screen and (min-width: 1400px) {
    .textContent p, .textContent ul li, .textContent address {
        line-height: 32px;
        font-size: 17px;
    }
    
    .textContent address {
        line-height: 1.5;
    }

    h1, h2 {
        font-size: 35px;
    }
    header .headerRow .headerCol .fullHeight .textContent {
        left: 100px;
        right: 100px;
    }

    header .headerRow .headerCol .surtitle.lines {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    header .headerRow .headerCol .surtitle.lines:before, header .headerRow .headerCol .surtitle.lines:after{    
        width: 20px;
        display: inline-block;
    }
}

@media screen and (min-width: 1500px) {
    header .headerRow .headerCol .surtitle.lines {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    header .headerRow .headerCol .surtitle.lines:before, header .headerRow .headerCol .surtitle.lines:after{    
        width: 40px;
    }
}