
@import url(../fonts/aaargh.css);
@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url('../css/font-awesome.min.css');

* {
    margin: 0;
    padding: 0;
}

body {
    background: #0f1116;
    color: #555555;
    font-weight: 300;
    line-height: 1.65em;
    font-family: 'Raleway', sans-serif;
}

#wrapper-inner {
    background: url(../images/bg.jpg) no-repeat center top;
    min-height: 1000px;
    background-size: cover;
}

header {
    background: #0F1116;
    color: #fff;
    padding: 1.25em 1.25em 1.25em 1.25em;
    position:relative;
}

#wrapper #logo h1 a {
    text-decoration: none;
    color: #fff;
    font-size: 1.6em;
}

#logo h1 {
    display: inline-block;
    text-transform: uppercase;
    font-size: 1em;
    font-family: 'aaargh', sans-serif;
}



#logo span {
    color: #555;
    font-size: 1.2em;
}

#nav {
    position: absolute;
    right:0;
    top:0;
}

#nav ul li {
    display: inline-block;
    padding: 1.25em;
}

#wrapper #nav ul li a, #wrapper #nav ul li a:link {
    -ms-transition: color 0.35s ease-in-out;
    -o-transition: color 0.35s ease-in-out;
    -moz-transition: color 0.35s ease-in-out;
    -webkit-transition: color 0.35s ease-in-out;
    transition: color 0.35s ease-in-out;
    color: #ddd;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

#wrapper #nav ul li a:hover {
    color: #fff;
}


/* START BANNER */

#banner {
    text-align: center;
    color: #ffffff;
    padding: 6em 13%;
    margin-bottom: 6em;
}

#banner p {
    font-size: 1.5em;
    margin-bottom: 1.5em;
    line-height: 1.5em;
}

#wrapper a,
#wrapper a:link, 
#wrapper a:hover, 
#wrapper a:visited  {
    color: #fff;
    text-decoration: underline;
}

#wrapper a:link.button, #wrapper a.button {
    display: inline-block;
    padding: 0.75em 1.5em;
    font-size: 1.2em;
    background: #d84780;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: background-color 0.35s ease-in-out;
    -moz-transition: background-color 0.35s ease-in-out;
    -ms-transition: background-color 0.35s ease-in-out;
    -o-transition: background-color 0.35s ease-in-out;
    transition: background-color 0.35s ease-in-out;
}

#wrapper a:link.button:hover, #wrapper a.button:hover {
    background-color: #e1719d;
}

/* END BANNER */

/* START CONTENT */

.container {
   background: #ccc;
    min-height: 300px;
    width: 90%;
    margin: 0 auto;
}

#content .row article.item {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 40px;
}

#content .row article.item:last-child {
    margin-right: 0;
}

.row > * {
    float: left;
}

.caption {
    padding: 3em 2em;
    background: #fff;
    text-align: center;
    border-radius: 0 0 6px 6px;
}

#content .item .image {
    display: block;
}

#content .item img.responsive {
    width:100%;
    display: block;
}



/* END CONTENT */





