@charset "utf-8";
/* CSS Document */

@import 'https://fonts.googleapis.com/css?family=Roboto:300,700&subset=latin-ext';

/* ==================================================
    BOX SIZING & CLEARFIX
================================================== */
*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
}

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

/* ==================================================
    BODY, WRAPPER, CONTAINER
================================================== */
body {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: normal;
    background-color: #fff;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
}

.container{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1em;
}

/* ==================================================
    HEADER
================================================== */
header {
    position: fixed;
    background-color: SlateGray;
    color: #fff;
    width: 100%;
    top: 0;
    text-align: center;
}

header nav {
    display: inline-block;
    margin: 0 auto;
}

header nav ul li {
    float: left;
    margin: 0.5em;
}

header nav ul li a {
    text-transform: uppercase;
    font-size: 1em;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 200ms ease
}

header nav ul li a:hover {
    color: LightGray;
    letter-spacing: 0.2em;
}
/* ==================================================
    SECTION
================================================== */
section .parallax {
    height: 300px;/*600px;*/
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

section .parallax h1 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 2em;
    line-height: 300px;/*600px;*/
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 200ms ease
}

section .parallax#parallax-1 {
    background-image: url("../img/pic1.jpg");
}

section .parallax#parallax-2 {
    background-image: url("../img/pic2.jpg");
}

section .parallax#parallax-3 {
    background-image: url("../img/pic3.jpg");
}

section .parallax#parallax-4 {
    background-image: url("../img/pic4.jpg");
}

section .content {
    padding: 3em 0;
    color: SlateGray;
    font-weight: 300;
    background-color: #fff;
}

section .content h2 {
    margin-bottom: 1em;
    font-size: 2em;
    transition: all 200ms ease
}

section .content p {
    margin-bottom: 1em;
    text-indent: 1em;
    transition: all 200ms ease
}

section .content ul {
    padding-left: 1.2em;
    list-style-type: square;
}

section .content ul li {
    padding-bottom: 0.5em;
    transition: all 200ms ease
}

section:last-child {
    margin-bottom: 5em;
}

section:last-child img {
    display: block;
    margin: 0 auto 2em;
    width: 250px;
    height: 50px;
    transition: all 200ms ease

}

section:last-child .content p {
    margin-bottom: 0.25em;
    text-align: center;
}

section:last-child .content a {
    color: SlateGray;
}

/* ==================================================
    FOOTER
================================================== */
footer {
    position: fixed;
    background-color: SlateGray;
    color: #fff;
    width: 100%;
    bottom: 0;
    text-align: center;
    padding: 1em;
    z-index: -1;
}

/* ==================================================
    @MEDIA
================================================== */
@media all and (min-width: 600px) {
    header nav ul li {
        margin: 1em;
    }
    header nav ul li a {
        font-size: 1.5em;
    }
    section .parallax {
        height: 600px;
    }
    section .parallax h1 {
        line-height: 600px;
        font-size: 5em;
    }
    section .content h2 {
        font-size: 3em;
    }
    section .content p {
        font-size: 1.5em;
    }
    section .content ul {
        padding-left: 1.5em;
    }
    section .content ul li {
        font-size: 1.5em;
    }
    section:last-child img {
        width: 500px;
        height: 100px;
    }
}

@media all and (min-width: 960px) {
    section .parallax h1 {
        font-size: 8em;
    }
}
