/*
colors:
#f6ece2 whiteish
#217d4c green outer
#117664 green middle
#1d98b9 blue
#5f5a30 brownish


*/

body {
    background-color: #f6ece2;
    min-width: 300px;
    border-top: 1px solid #a7a58e;
    background-image: url(../images/asfalt-dark.png);
}

.container {
    max-width: 560px;
    margin-bottom: 1.5em; 
    margin-left: auto;
    margin-right: auto;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-box-shadow: 3px -17px 45px 6px #ccc;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow:    3px -17px 45px 6px #ccc;  /* Firefox 3.5 - 3.6 */
    box-shadow:         3px -17px 45px 6px #ccc;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

.header,
.logo,
.title,
.header-tag
{
    background-image: url(/images/asfalt-light.png);
    background-color: #f6ece2;
}


/* ----- header tag section ----- */

.header {
    height: 19em;
}

.header-tag {
    background-image: url(/images/asfalt-light.png);
    width: 186px;
    margin: 0 auto;
}

.header-tag-lines {
    display: inline-block;
    width: 13.81%;
    height: 20em;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.outer {
    background-color: #217d4c;    
}

.one-in {
    background-color: #117664;
}

.middle {
    background-color: #1d98b9;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: .9em;
    text-transform: uppercase;
    color: #1d98b9;
    opacity: 0.7;
    letter-spacing: .03em;
    text-align: center;
    margin-top: 0.7em
}

/* -----  title section ----- */

.title {
    height: 6em;
    width: 100%;
    padding-top: 2em;
}

h1 {
    font-family: 'Palanquin', sans-serif;
    text-transform: lowercase;
    color: #5f5a30;
    padding: 0;
    margin: 0;
    font-size: 5.1em;
    text-align: center;
    font-weight: 700;
    letter-spacing: -5px;
}

/* ----- logo section ----- */

.logo {
    text-align: center;
    padding-top: 3em;
    padding-bottom: 2em;
}


h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    text-align: center;
    color: #217d4c;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: -.031em;
}

/* ----- footer section ----- */

.footer {
    text-align: center;
    padding-top: 6em;
    padding-bottom: 4em;
}

.footer a {
    font-family: 'Palanquin', sans-serif;
    text-decoration: none;
    color: #5f5a30;    
    opacity: 0.7;
}

/* ----- media queries section ----- */


@media (min-width: 400px) {    
  
    h1,
    h2 {
        margin: 0 auto;
        width: 94%;
    }
    
    h1 {
        font-size: 7.5em;
    }
    
    h2 {
        font-size: 1.5em;
        letter-spacing: -.041em;
    }
    
    .header {
        height: 33em;
    }
    
    .header-tag {
        width: 244px;
        height: 22em;
    }
    .header-tag-lines {
        width: 15.3%;
        height: 32em;
    }
    
    p {
        font-size: 1.1em;
        letter-spacing: .06em;
    }

    .title {
        padding-top: 0;
        padding-bottom: 2.5em;
    }
}

