/* 
 ___        ___ 
|   |      |   |
|   |      |   |  
|   |  /\  |   |
|   | /  \ |   |
|   |/    \|   |
|      /\      |
|     /  \     |
|____/    \____|

*/

html, body {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    font-family: 'Merriweather', serif;
    font-weight: 300;
    font-size: 10Pt;
    line-height: 2em;
    letter-spacing: .0em;
    color: black;
}

header {
    position: fixed;
    top: 0;
    padding: 25px;
    width: 100%; 
    z-index: 10;
    text-align: center;
    background-color: white;
}

footer {
    position: fixed;
    bottom: 0;
    padding: 25px;
    width: 100%;
    z-index: 10;
    background-color: white;
}

#w_hero {
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.content {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 10;
}

a {
    color: black;
    font-size: 18Pt;
    text-decoration: none;
}

a:focus,
a:active,
a:hover {
    color: black;
    text-decoration: none;
    border-top: 1px solid black;
}


h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 180%;
    font-weight: 700;
    text-transform: uppercase;
}

address > strong,
p > strong {
    font-weight: 700;
    font-style: italic;
}

.w-quote {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

w-text-bottom {
    height: auto;
    vertical-align: bottom;
}

.container-fluid {
    padding: 20%;
}

hr {
    width: 50%;
    border-top: solid 2px black;
}

.w-icon {
    width: 22px; 
    height: 22px;
}

.w-icon-posi {
    margin-left: 14px;
}

.w-blend-multi {
    mix-blend-mode: multiply;
}

@media (min-width: 768px) {
    
    header {
        position: fixed;
        top: 0;
        padding: 60px;
        width: 100%; 
        z-index: 10;
        text-align: center;
        background-color: rgba(255, 255, 255, 1);
    }

    footer {
        position: fixed;
        bottom: 0;
        padding: 60px;
        width: 100%;
        z-index: 10;
        background-color: rgba(255, 255, 255, 1);
    }
}


@media (min-width: 992px) {
    html, body {
        height: 100%;
        width: 100%;
        margin: 0 auto;
        background-color: white;
        font-family: 'Merriweather', serif;
        font-weight: 300;
        font-size: 12Pt;
        line-height: 2em;
        letter-spacing: .0em;
        color: black;
    }
    
    .container-fluid {
        padding: 5%;
    }
    
    header {
        position: fixed;
        top: 0;
        padding: 50px;
        width: 100%; 
        z-index: 10;
        text-align: center;
        background-color: rgba(255, 255, 255, 0);
    }

    footer {
        position: fixed;
        bottom: 0;
        padding: 50px;
        width: 100%;
        z-index: 10;
        background-color: rgba(255, 255, 255, 0);
    }
}