/* ----------------------------------------
   ----------------------------------------
                MAIN
------------------------------------------
------------------------------------------ */

html {
    font-family: "Helvetica", "Arial", "sans-serif";
    background-image: url(background.png);
}

html body {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Gasalt;
    src: url(Gasalt-Regular.ttf);
}

/* ----------------------------------------
   ----------------------------------------
                NAVIGATION
------------------------------------------
------------------------------------------ */

nav {
    height: 40px;
    width: 100%;
    background: #F1F1F1;
    font-size: 11pt;
    font-family: helvetica, Arial, sans-serif;
    font-weight: bold;
    position: relative;
    margin-bottom: 1%;
    margin-top: -1%;
}

nav ul {
    padding: 0;
    margin: 0 auto;
    width: 500px;
    height: 40px;
}

nav li {
    display: inline;
    float: left;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

nav a {
    color: black;
    display: inline-block;
    width: 100px;
    text-align: center;
    text-decoration: none;
    line-height: 40px;
}

nav a:hover, nav a:active {
    background-color: #201E19;
    color: #F1F1F1;
}

/* ----------------------------------------
   ----------------------------------------
                HEADER AND FOOTER
------------------------------------------
------------------------------------------ */

footer {
    height: 40px;
    width: 100%;
    background: #F1F1F1;
    position: relative;
    margin-bottom: %;
    margin-top: 1%;
    bottom: 0;
}

footer p {
    text-align: center;
    padding-top: 1%;
    padding-bottom: 1%;
    font-size: .8em;
}

#ban img {
    width: 100%;
    max-height: 480px;
    position: relative;
    margin-top: -1%;
}

header img {
    width: 100%;
    max-height: 480px;
}

header {
    position: relative;
}

header h1 {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    font-size: 5em;
    width: 100%;
    height: 26px;
    padding: 0;
    margin: 0;
    margin-top: -13px; /* 1/2 height */
    text-align: center;
    text-shadow: 3px 3px 6px #21201B;
    font-family: gasalt;
}

header p {
    z-index: 2;
    position: absolute;
    top: 85%;
    left: 0;
    right: 0;
    font-size: 3em;
    width: 100%;
    height: 26px;
    padding: 0;
    margin: 0;
    margin-top: -13px; /* 1/2 height */
    text-align: center;
    text-shadow: 3px 3px 6px #21201B;
    font-family: gasalt;
}

table th {
    border: 1px solid black;
    padding: 1%;
    background-color: #201E19;
    color: #F1F1F1;
}



/* ----------------------------------------
   ----------------------------------------
                WRAPPERS
------------------------------------------
------------------------------------------ */

#wrapper {
    margin-top: 5%;
    margin-bottom: 5%;
}

#innerWrap {
    background-color: #F1F1F1;
    margin-left: 5%;
    margin-right: 5%;
}

#innerWrapM {
    background-color: #F1F1F1;
    margin-left: 5%;
    margin-right: 5%;
}

#innerWrapM {
    text-align: center;
    padding: 3%;
}

#innerWrap {
    padding: 3%;
}

#innerWrapM a {
    color: black;
    display: inline-block;
    width: 150px;
    text-align: center;
    text-decoration: none;
    line-height: 40px;
    border-radius: 25px;
    border: 1px solid #201E19;
}

#innerWrapM a:hover, nav a:active {
    background-color: #201E19;
    color: #F1F1F1;
}

#submitButton {
    color: #F1F1F1;
    background-color: #201E19;
    border: none;
    width: 150px;
    height: 40px;
}

.row {
    padding: 2%;
}

#name, #email, #message {
    border: 2px solid #201E19;
}

/* ----------------------------------------
   ----------------------------------------
                COLUMNS
------------------------------------------
------------------------------------------ */

.section {
    clear: both;
    padding: 0px;
    margin: 0px;
}


.col {
    display: block;
    float:left;
    margin: 1% 0 1% 1.6%;
}

.col:first-child { 
    margin-left: 0; 
}


.group:before,
.group:after { 
    content: ""; 
    display: table; 
}

.group:after { 
    clear:both;
}

.group { 
    zoom:1; 
}


.span_3_of_3 { 
    width: 100%; 
}

.span_2_of_3 { 
    width: 66.13%; 
}

.span_1_of_3 { 
    width: 32.26%; 
}


/* ----------------------------------------
   ----------------------------------------
                MEDIA QUERIES
------------------------------------------
------------------------------------------ */

@media only screen and (max-width: 480px) {
    .col {  
        margin: 1% 0 1% 0%; 
    }
    .span_3_of_3, .span_2_of_3, .span_1_of_3 { 
        width: 100%; 
    }
}

@media screen and (max-width: 700px) {
    html {
    	background-image: url(background.png);
    }

    nav {
        height: auto;
        margin-top: -2%;
    }
    nav ul {
        width: 100%;
        display: block;
        height: auto;
    }
    nav li {
        width: 50%;
        float: left;
        position: relative;
    }
    nav a {
        text-align: left;
        width: 100%;
        text-indent: 25px;
    }

    #wrapper {
        width: 100%;
    }

    header h1 {
        font-size: 3em;
    }

    header p {
        font-size: 2em;
        top: 20%;
    }

    #innerWrapM video {
        width: 200px;
        height: 140px;
    }

    input {
        width: 215px;
    }

    textarea {
        width: 215px;
    }

    #innerWrap img {
        width: 200px;
        height: 200px;
    }
}

