/* --------------------------------------------------------------
CSS Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    -webkit-box-sizing: border-box;     /* Safari/Chrome, other WebKit */
       -moz-box-sizing: border-box;     /* Firefox, other Gecko */
            box-sizing: border-box;     /* Opera/IE 8+ */
}


/* --------------------------------------------------------------
Basic Styles
-------------------------------------------------------------- */
html { 
    overflow-y: scroll;
}

body {
    background: #fff;
    font: 16px/28px 'Merriweather', 'Helvetica Neue', Helvetica, Arial, "Lucida Grande", sans-serif;
    color: #444;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a, a:visited {
    color: #800020;
    text-decoration: none;
    border-bottom: 1px solid #800020;
    -webkit-transition:all .1s ease-in-out;
    -moz-transition:all .1s ease-in-out;
    -o-transition:all .1s ease-in-out;
    transition:all .1s ease-in-out; 
}

input, textarea {
    font-size: 14px;
    width: 100%;
    outline: none;
    margin: 0;
    padding: 7px 7px;
    color: #999;
    border: 2px solid #ddd;
    border-radius: 3px;
    -webkit-font-smoothing:antialiased;
}

input:focus, textarea:focus {
    border-color: #9ea4aa;
}


/* --------------------------------------------------------------
Typography
-------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    position: relative;
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight:inherit;}
h1 { font-size:34px;}
h2 { font-size:30px;}
h3 { font-size:26px;}
h4 { font-size:22px;}
h5 { font-size:16px;}
h6 { font-size:12px; margin-bottom: 15px}

p       { margin-bottom: 30px; }
em      { font-style: italic; }
strong  { font-weight: 700; }
.small  { font-size: 80%; }
.center { text-align: center; }


/* --------------------------------------------------------------
Page styles
-------------------------------------------------------------- */
.container {
    width: 540px;
    margin: 0 auto;
    padding-bottom: 80px;
}

/* Header */
header {
    position: relative;
    padding-top: 180px;
}

header.active {
    padding-top: 80px;
}

/* Menu */
.menu {
    text-align: center;
}

.menu ul li {
    display: inline-block;
    margin: 0 10px;
}

.menu ul li a {
    border-bottom: 0;
    text-transform: uppercase;
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, "Lucida Grande", sans-serif;
    color: #999;
    font-weight: 700;
}

.menu ul li a:hover {
    color: #800020;
}

.menu ul li a.active {
    color: #800020;
    padding-bottom: 5px;
    border-bottom: 2px solid #800020;
    -webkit-transition:all .4s ease-in-out;
    -moz-transition:all .4s ease-in-out;
    -o-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out; 
}

.menu ul li.home-link {
    display: block;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 50px;
    width: 238px;
}

/* Logo */
.logo {
    width: 238px;
    height: 85px;
    background: url('../img/logo.png');
    background-size: 238px 85px;
    margin: 0 auto;
}

/* Site content */
.content {
    padding-top: 50px;
}

.content .slogan {
    display: block;
    text-align: center;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px
}

.content .list-title {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, "Lucida Grande", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 5px;
}

.content .list-title:first-child {
    margin-top: 0;
}

/* Contact form */
.contact {
    text-align: left;
}

.contact .label {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: #888;
}

.contact input, .contact textarea {
    margin-bottom: 20px;
    -webkit-appearance: none;
    -webkit-border-radius: 3px;
}

.contact textarea {
    min-height: 150px;
}

.contact .submit {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, "Lucida Grande", sans-serif;
    position: relative;
    background: #444;
    border: 2px solid #333;
    padding: 10px 0;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-box-shadow: inset 0 1px #555;
}

.contact .submit:hover {
    background: #555;
    border-color: #444;
    -webkit-box-shadow: inset 0 1px #656565;
}

.contact .submit:active {
    top: 2px;
    background: #555;
    border-color: #444;
}

.message {
    display: none;
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: #bbb;
    margin: 50px 0;
}

.contact label.error {
    display: block;
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #f36b6b;
    text-transform: uppercase;
    margin-top: -10px;
    margin-bottom: 20px;
}


/* --------------------------------------------------------------
Mobile
-------------------------------------------------------------- */
@media only screen and (max-width: 600px) {
    .container {
        width: 100%;
        padding: 0 30px 60px;
    }

    header {
        padding-top: 60px !important;
    }

    .menu ul li {
        display: block;
        padding: 0 0 10px;
    }
}

/* Logo for Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
    .logo {
        background: url('../img/logo@2x.png');
        background-size: 238px 85px;
    }
}

