/*-- Colour Palette

Blue (highlights): 1EADE8;
Red-Pink (main content): c12c47;
Red-Black (background): 1e0005;
Grey (footer): 666;

--*/

* {
    margin: 0;
    padding: 0;
}

html {
    background: #353535;
    color: #FFFFFF;
    font-family: 'Merriweather', serif;
    font-size: 16px;
}

body {
    color: #F2F2F2;
    background: rgb(30, 0, 5);
    background: -moz-linear-gradient(top, rgba(30, 0, 5, 1) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(30, 0, 5, 1)), color-stop(100%, rgba(0, 0, 0, 1)));
    background: -webkit-linear-gradient(top, rgba(30, 0, 5, 1) 0%, rgba(0, 0, 0, 1) 100%);
    background: -o-linear-gradient(top, rgba(30, 0, 5, 1) 0%, rgba(0, 0, 0, 1) 100%);
    background: -ms-linear-gradient(top, rgba(30, 0, 5, 1) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(30, 0, 5, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

#wrapper {
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
    padding: 1em 1em 0 1em;
    border-radius: 0 0 7px 7px;
    background: rgb(30, 0, 5);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(30, 0, 5, 1) 10%, rgba(30, 0, 5, 1) 10%, rgba(0, 0, 0, 1) 99%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(30, 0, 5, 1)), color-stop(10%, rgba(30, 0, 5, 1)), color-stop(99%, rgba(0, 0, 0, 1)));
    background: -webkit-linear-gradient(top, rgba(30, 0, 5, 1) 10%, rgba(30, 0, 5, 1) 10%, rgba(0, 0, 0, 1) 99%);
    background: -o-linear-gradient(top, rgba(30, 0, 5, 1) 10%, rgba(30, 0, 5, 1) 10%, rgba(0, 0, 0, 1) 99%);
    background: -ms-linear-gradient(top, rgba(30, 0, 5, 1) 10%, rgba(30, 0, 5, 1) 10%, rgba(0, 0, 0, 1) 99%);
    background: linear-gradient(to bottom, rgba(30, 0, 5, 1) 10%, rgba(30, 0, 5, 1) 10%, rgba(0, 0, 0, 1) 99%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#1e0005', endColorstr='#000000', GradientType=0);
}

#title {
    max-width: 80%;
    margin: -2em 0 0 0;
    float: left;
    text-align: center;
}

#title h2 {
    font-size: 1.4em;
    margin-top: -0.8em;
}

h1,
h2,
span {
    font-weight: normal;
}

h2 {
    font-family: 'Rubik Mono One', sans-serif;
}

a {
    color: #1EADE8;
}

.gutter-none {
    margin-right: -15 px;
    margin-left: -15 px;
}

.gutter-none > [class *=col-] {
    padding-right: 0;
    padding-left: 0;
}

.margin-top-2x {
    margin-top: 2em;
}

.margin-bottom-2x {
    margin-bottom: 2em;
}

.margin-vert-2x {
    margin-top: 2em;
    margin-bottom: 2em;
}

#name,
#capletter {
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 0.2em;
    font-size: 2em;
}

#capletter {
    font-size: 2.3em;
}

#socmedia {
    width: 20%;
    display: table;
    font-family: 'Alfa Slab One', cursive;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    float: right;
}

#socmedia ul {
    list-style: none;
    display: block;
}

#socmedia li {
    display: table-cell;
}

#follow {
    padding: 0 0 0.5em 0;
}

#button {
    width: 75%;
    height: auto;
    border: 0 solid rgba(0 0 0 0);
}


/*----------------------------------------------------------------------------------------------------*/

#nav {
    background: #c12c47;
    width: 100%;
    display: table;
    font-family: 'Coustard', serif;
    font-size: 18px;
    border-radius: 5px;
}

#nav ul {
    list-style: none;
    line-height: 1;
    display: block;
    zoom: 1;
    text-align: center
}

#nav li {
    display: table-cell;
    width: 14.28%;
    text-align: center;
}

#nav ul:after {
    content: ' ';
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden
}

#nav ul li {
    float: left;
    display: block;
    padding: 0
}

#nav ul li a {
    color: #222;
    text-decoration: none;
    display: block;
    padding: 15px 25px;
    font-weight: 700;
    text-transform: lowercase;
    position: relative;
    -webkit-transition: color .25s;
    -moz-transition: color .25s;
    -ms-transition: color .25s;
    -o-transition: color .25s;
    transition: color .25s
}

#nav ul li a:hover {
    color: #fff;
    text-shadow: 1px 2px 1px rgba(0, 0, 0, 1);
}

#nav ul li a:hover:before {
    width: 100%
}

#nav ul li a:after {
    content: '';
    display: block;
    position: absolute;
    right: -3px;
    top: 14px;
    height: 20px;
    width: 6px;
    background: #333;
    opacity: .5
}

#nav ul li a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #1EADE8;
    -webkit-transition: width .25s;
    -moz-transition: width .25s;
    -ms-transition: width .25s;
    -o-transition: width .25s;
    transition: width .25s
}

#nav ul li.last > a:after,
#nav ul li:last-child > a:after {
    display: none
}

#nav ul li.active a {
    color: #fff;
    text-shadow: 1px 2px 1px rgba(0, 0, 0, 1);
}

#nav ul li.active a:before {
    width: 100%;
    background: #fff;
}

@media screen and (max-width: 767px) {
    #nav ul li {
        float: none;
    }
    #nav ul li a {
        width: 100%;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    #nav ul li a:after {
        display: none;
    }
    #nav ul li a:before {
        height: 1px;
        background: #fff;
        width: 100%;
        opacity: .2;
    }
    #nav ul li.last > a:before,
    #nav ul li:last-child > a:before {
        display: none;
    }
}


/*----------------------------------------------------------------------------------------------------*/

#image img {
    float: left;
    max-width: 50%;
}

#paragraph {
    position: relative;
    float: right;
    max-width: 50%;
    font-size: 2em;
    text-align: center;
    z-index: 1;
}

blockquote {
    font-weight: bolder;
    font-size: 16px;
    margin: 1em 0;
    padding: 0.4em;
}

blockquote em {
    color: #1EADE8;
}

cite {
    font-size: 12px;
}

.offset {
    color: #c12c47;
}

#footer {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    margin-top: -1.5em;
    text-align: center;
    width: 100%;
    float: left;
    color: #666;
}

#contentcentered {
    text-align: center;
    padding: 0 0 1em 0;
}

#contentcentered h2 {
    padding: 1em;
}

#contentcentered h3 {
    font-family: 'Lobster', cursive;
    font-size: 2.4em;
    padding: 0 0 0.5em 0;
    margin: -0.5em 0 0 0;
}

#contentcentered h4 {
    font-family: 'Lobster', cursive;
    font-size: 2em;
    padding: 0 0 1em 0;
}

#contentcentered a {
    text-decoration: underline;
}

#fringelogo {
    border: 5px dotted white;
    border-radius: 15px;
    padding: 1em 1em 0.5em 1em;
    margin-bottom: 1em;
}

.textwrapright {
    float: right;
    margin: 0 0 1em 1em;
    max-width: 40%;
    clear: both;
}

.textwrapleft {
    float: left;
    margin: 0 1em 1em 0;
    max-width: 30%;
    clear: both;
}

#aboutparagraph {
    position: relative;
    float: left;
    margin-top: 1em;
}

#aboutparagraph p {
    text-align: justify;
    margin: 0 0 1em 0;
}

#aboutparagraph em {
    color: #1EADE8;
}

#aboutbottom {
    text-align: center;
    color: #1EADE8;
    margin: 0;
    padding: 0;
}

#aboutbottom img {
    max-width: 100%;
}

.team {
    clear: both;
}

.team p {
    padding: 0 0 1em 0;
}

.team a {
    color: #1EADE8;
    text-decoration: underline;
}

.team h3 {
    margin: 1em 0 1em 0;
}

.team em {
    color: #1EADE8;
}

iframe {
    margin: 1em 0 1em 0;
    max-width: 100%;
}

.video p {
    margin: 0;
    padding: 0;
}

#pressimage img {
    float: left;
    max-width: 25%;
    padding: 0 0 1em 0;
}

#pressparagraph {
    position: relative;
    float: left;
    max-width: 55%;
    font-size: 2em;
    text-align: left;
    z-index: 1;
}

#pressparagraph a {
    color: #1EADE8;
    text-decoration: underline;
}

#twitterfeed {
    float: right;
}

#contentcontact {
    text-align: center;
    padding: 1em 0 2em 0;
}

#contentcontact h3 {
    font-family: 'Lobster', cursive;
    font-size: 2.4em;
}

#contentcontact h4 {
    font-size: 1.5em;
}

#contentcontact a {
    color: #1EADE8;
    text-decoration: underline;
}

#contentcontact p {
    font-size: 1.2em;
}

@media screen and (max-width: 767px) {
    #title {
        font-size: 3.5vmin;
    }
}
