/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }
  
  
@font-face {
  font-family: 'fontello';
  src: url('../fonts/fontello.eot?54808190');
  src: url('../fonts/fontello.eot?54808190#iefix') format('embedded-opentype'),
       url('../fonts/fontello.woff2?54808190') format('woff2'),
       url('../fonts/fontello.woff?54808190') format('woff'),
       url('../fonts/fontello.ttf?54808190') format('truetype'),
       url('../fonts/fontello.svg?54808190#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}  

 @font-face {
	font-family: 'Source Sans Pro';
	src: url('../fonts/SourceSansPro-Bold.eot');
	src: url('../fonts/SourceSansPro-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SourceSansPro-Bold.woff2') format('woff2'),
		url('../fonts/SourceSansPro-Bold.woff') format('woff'),
		url('../fonts/SourceSansPro-Bold.ttf') format('truetype'),
		url('../fonts/SourceSansPro-Bold.svg#SourceSansPro-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'GT Pressura';
	src: url('../fonts/GTPressura-BoldItalic.eot');
	src: url('../fonts/GTPressura-BoldItalic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/GTPressura-BoldItalic.woff2') format('woff2'),
		url('../fonts/GTPressura-BoldItalic.woff') format('woff'),
		url('../fonts/GTPressura-BoldItalic.ttf') format('truetype'),
		url('../fonts/GTPressura-BoldItalic.svg#GTPressura-BoldItalic') format('svg');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'GTCinetypeRegular';
	src: url('../fonts/GTCinetypeRegular.eot');
	src: url('../fonts/GTCinetypeRegular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/GTCinetypeRegular.woff2') format('woff2'),
		url('../fonts/GTCinetypeRegular.woff') format('woff'),
		url('../fonts/GTCinetypeRegular.ttf') format('truetype'),
		url('../fonts/GTCinetypeRegular.svg#GTCinetypeRegular') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'GTCinetypeBold';
	src: url('../fonts/GTCinetypeBold.eot');
	src: url('../fonts/GTCinetypeBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/GTCinetypeBold.woff2') format('woff2'),
		url('../fonts/GTCinetypeBold.woff') format('woff'),
		url('../fonts/GTCinetypeBold.ttf') format('truetype'),
		url('../fonts/GTCinetypeBold.svg#GTCinetypeBold') format('svg');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Tiempos Text';
	src: url('../fonts/TiemposText-Bold.eot');
	src: url('../fonts/TiemposText-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/TiemposText-Bold.woff2') format('woff2'),
		url('../fonts/TiemposText-Bold.woff') format('woff'),
		url('../fonts/TiemposText-Bold.ttf') format('truetype'),
		url('../fonts/TiemposText-Bold.svg#TiemposText-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: 'GTCinetypeRegular', sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  height:100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
  text-shadow:-1px -1px 0 #000253, 1px -1px 0 #000253, -1px 1px 0 #000253, 1px 1px 0 #000253;
  height:100%;
  background:#aad5e4;
  background-size: initial !important;
  }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
  text-decoration:none; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline:0; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

.clear-after:after {
	content:'';
	display:block;
	clear:both;
}

h2 {
	font-family: 'GT Pressura';
	text-transform:uppercase;
	/*text-shadow:0px 2px #000253, 0px 4px #000253, -1px 0px #000253, 1px 0px #000253, 0px -1px #000253;*/
	font-weight:100;
}

/*  Left Bar  */

#container {
   min-height:100%;
   position:relative;
   padding-bottom:50px;
   box-sizing: border-box;
}

#content {
    margin-left: 40px;
	background:#000253;
}

#inner-content {
    overflow: auto;
}

#left {
    background: #aad5e4;
    position: fixed;
    left: -210px;
    top: 0;
    bottom: 0;
    z-index: 3;
    padding: 20px 40px;
    text-align: center;
    min-width: 40px;
    border-right: 1px solid;
    box-sizing: border-box;
    width: 250px;
	transition: left 0.15s ease-in-out;
  	-o-transition: left 0.15s ease-in-out;
  	-ms-transition: left 0.15s ease-in-out;
  	-moz-transition: left 0.15s ease-in-out;
  	-webkit-transition: left 0.15s ease-in-out;
}
#left:hover {
    left: 0px;
}

.touch #left:hover {
    left: -210px;
}

#left.showleft {
	left:0 !important;
	-o-transition: left 0s ease-in-out;
  	-ms-transition: left 0s ease-in-out;
  	-moz-transition: left 0s ease-in-out;
  	-webkit-transition: left 0s ease-in-out;
}

#left.slideleft {
	left:0 !important;
}

.header {
    display: table;
    width: 100%;
    height: 100%;
	position:relative;
}

#inner-header {
    display: table-cell;
    vertical-align: middle;
}

h1#logo {
    line-height: 1em;
    display: block;
    margin: 0;
	top: 0;
    left: 0;
    position: absolute;
}

#logo .small {
    display: block;
    width: 30px;
	display:none;
}

#logo .large {
    display:block;
	width:100%;
	max-width:250px;
	margin:auto;
}

#left:hover #logo .small {
	display:none;
}

#header-toggle {
	display:none;
}

#header-arrows {
    position: absolute;
    right: -25px;
    top: 50%;
    margin-top: -9px;
}

#header-arrows:before {
    font-family: 'FontAwesome';
    content: '\f101';
    font-size: 18px;
    color: #000253;
    font-weight: 100;
    text-shadow: 0 0;
}


/*  NAV  */

#nav {
    display: block;
}

#nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#nav li {
    margin: 10px auto;
    display: block;
}

#nav a {
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 0;
    font-family: 'Source Sans Pro';
    font-size: 24px;
    color: #141f49;
	display:block;
	opacity: 1;
	font-weight: bold;
}

#nav a:hover, #nav .current_page_item a {
    text-shadow: -1px -1px 0 #000253, 1px -1px 0 #000253, -1px 1px 0 #000253, 1px 1px 0 #000253;
    color: #fff;
}

#menu-item-2066 {
    position: absolute;
    bottom: 30px;
    width: 100%;
    left: 0;
}

#menu-item-2066 a {
    font-size: 20px;
}

/*  SOCIAL  */

#social {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0;
}

#social .contact {
    display: block;
    text-shadow: none;
    font-size: 10px;
}


#social ul {
list-style: none;
margin: auto;
padding: 0;
display: table;
position: relative;
top:0;
}

#social li, #artist-social li {
margin-left: -50000px;
margin-top: -50000px;
position: absolute;
}
#spotifyfollow iframe {
padding:0;
}

#social a, #artist-social a {
    float: left;
    font-family: 'FontAwesome';
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 100;
    -webkit-transition: opacity ease-in-out 0.5s;
    -moz-transition: opacity ease-in-out 0.5s;
    -o-transition: opacity ease-in-out 0.5s;
    transition: opacity ease-in-out 0.5s;
    display: block;
    text-align: center;
	margin-left:10px;
	    width: initial;
		line-height: 1em;
}


#social a:first-child, #artist-social a:first-child {
	margin-left:0 !important;
}

#social a:hover, #artist-social a:hover {
	opacity:0.5;
}

#social #www:before, #artist-social #www:before {
content: '\f0ac';
}

#social #fb:before, #artist-social #fb:before {
content: '\f09a';
}

#social #tw:before, #artist-social #tw:before {
content: '\f099';
}

#social #in:before, #artist-social #in:before {
content: '\f16d';
}

#social #sp:before, #artist-social #sp:before {
content: '\f1bc';
}
#social #email:before, #artist-social #email:before {
content: '\f0e0';
}
#social #yt:before, #artist-social #yt:before {
content: '\f167';
}
#social #sc:before, #artist-social #sc:before {
content: '\f1be';
}
#social #sk:before, #artist-social #sk:before {
	font-family: 'Fontello';
    content: '\e802';
    font-size: 22px;
    margin-top: 1px;
    display: block;
}
/*  FOOTER  */

.footer {
    color: #fff;
    background: #000;
    text-shadow: 0 0;
    font-family: 'GTCinetypeRegular';
    padding: 20px;
    line-height: 1em;
    font-size: 10px;
    text-align:left;
    position: absolute;
    padding-left: 70px;
    width: 100%;
    bottom: 0;
    box-sizing: border-box;
}

.footer p {
    margin: 0;
}

.signup-open {
    float: right;
    cursor: pointer;
    text-transform: uppercase;
}

.signup-open:hover {
	opacity:0.5;
}

/*  Artists  */
#artists, #artists-page {
	overflow:hidden;
}
.artist {
    float: left;
    width: 25%;
    background: center no-repeat;
    background-size: cover;
    position: relative;
	display:block;
	text-align:center;
	color:#fff;
}

.artist-outer {
    position: relative;
    width: 100.1%;
	width: calc( 100% + 1px );
    height: 0;
    padding-bottom: 71%;
	overflow: hidden;
}

.artist-inner {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.artist h2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    margin: 0 auto;
    padding: 0;
    line-height: 1em;
	display:block;
	text-shadow: -1px -1px 0 #000253, 1px -1px 0 #000253, -1px 1px 0 #000253, 1px 1px 0 #000253;
	z-index:1;
	-webkit-transition: bottom ease-in-out 0.3s;
    -moz-transition: bottom ease-in-out 0.3s;
    -o-transition: bottom ease-in-out 0.3s;
    transition: bottom ease-in-out 0.3s;
}

.artist-overlay {
    display: table-cell;
    vertical-align: middle;
    background: #f9d6b4;
    position: relative;
    z-index: 2;
	opacity: 0;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
	padding: 25px;
}

.artist:hover .artist-overlay {
	/*opacity:1;*/
}

.artist.lowdown h2 {
    bottom: 20px !important;
}
.artist .artist-outer:before, .home-single:before, .advert-single:before, #staff-wrap a:before {
    content: '';
    background: #f9d6b4;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
	z-index: 1;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}

.artist:hover .artist-outer:before, .home-single:hover:before, .advert-single:hover:before, #staff-wrap a:hover:before {
	opacity:0.8;
	}

.artist-overlay:before, .single-artist-box:before {
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    top: 10px;
    border: 5px solid #000253;
	z-index:0;
}

.artist-overlay:after, .single-artist-box:after {
    content: '';
    display: block;
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 11px;
    top: 11px;
    border: 3px solid #fff;
	z-index:0;
}

.artist-overlay h2 {
	position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 10px;
}

.artist-overlay span {
    font-family: 'Source Sans Pro';
    font-weight: bold;
    text-transform: uppercase;
    display: table;
    margin: auto;
    padding: 5px;
    border: 5px solid #000253;
	position:relative;
}

.artist-overlay span:before {
    display: block;
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    border: 3px solid #fff;
    right: -4px;
    bottom: -4px;
}

/*  HOME CAROUSEL  */

.home-single, .advert-single {
    display: block;
    width: 100%;
    background: center no-repeat;
    background-size: cover;
	color:#fff;
	z-index:2;
	position:relative;
}

/*  Home Instagram  */

#instagramfeed {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
}

#instagramfeed .owl-item div {
    display: block;
    position: relative;
    width: 100%;
    background: #f9d6b4;
}

#instagramfeed .owl-item .insta-item {
    display: block;
    position: relative;
    width: 100%;
    background: center no-repeat;
    background-size: cover;
	transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}

#instagramfeed .owl-item .insta-item:hover {
	opacity:0.2;
}

#instagramfeed .owl-item span {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    opacity: 1 !important;
    display: block;
    z-index: 2;
	font-weight: 100 !important;
    font-family: 'GT Pressura';
    text-transform: uppercase;
    font-size: 24px;
}

#instagramfeed .owl-item span a {
	color:#fff;
	transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}

#instagramfeed .owl-item span a:hover {
	opacity:0.2;
}

#instagramfeed .owl-item span a:before {
    font-family: 'FontAwesome';
    content: '\f16d';
    margin-right: 10px;
}
/*  Column & Row  */
.row-1 .artist-outer, #twitter-sizer, .insta-item {
    padding-bottom: 71%;
}

.row-2 .artist-outer {
    padding-bottom: 142%;
}

.row-3 .artist-outer {
    padding-bottom: 213%;
}

.row-4 .artist-outer {
    padding-bottom: 284%;
}

.row-5 .artist-outer {
    padding-bottom: 355%;
}

.row-6 .artist-outer {
    padding-bottom: 426%;
}

.artist {
	width:25%;
}

.three-column .artist {
	width:33.33% !important;
	width: calc(100% / 3) !important;
}

/*.column-1 {
    width: 16.66666666%;
    width: calc(100% / 6);
}

.column-2, #twitter-wrapper {
    width: 25%;
}

#artists-page .artist.column-3, .column-3 {
    width: 50%;
}

.column-4 {
    width: 66.66%;
    width: calc(100% / 1.5);
}

.column-5 {
    width: 0.83333333333%;
	width: calc(100% / 6 * 5);
}

.column-6 {
    width: 100%;
}*/

/*  ARTISTS PAGE  */

#artists-page .artist {
    width: 16.66666666%;
    width: calc(100% / 6);
}

#artist-social {
    display: table;
    float: left;
    margin: 0 0 0 20px;
    list-style: none;
    padding: 0;
	font-family:'FontAwesome';
}

#artist-social a {
    margin: 0 10px 0 0;
}

#artists-page .artist h2 {
    font-size: 18px;
}

/*  Single Artist  */

#content.single-artist {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 50px;
}

.single-artist #inner-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: center no-repeat;
    background-size: cover;
    left: 0;
}

.single-artist-box {
    position: absolute;
    bottom: 20px;
    left: 200px;
    right: 20px;
    background: #f9d6b4;
    padding: 25px;
    color: #fff;
}

.top-artist {
    position: relative;
    z-index: 1;
}

.the-copy {
    color: #000253;
    text-shadow: 0 0;
    font-family: 'GTCinetypeRegular';
    font-size: 12px;
	position: relative;
    z-index: 1;
}

.single-artist-box h2, .single-artist-box .the-flag, .single-artist-box .the-agent {
    float: left;
    margin-left: 10px;
}

.single-artist-box h2 {
    margin: 0;
    font-size: 30px;
    line-height: 30px;
}

.single-artist-box .the-flag {
    height: 30px;
    border: 1px solid #000253;
    box-sizing: border-box;
}

.single-artist-box .the-agent, .single-artist-box .the-agent a {
    text-transform: uppercase;
    color: #000253;
    text-shadow: 0 0;
    font-family: 'GTCinetypeBold';
    text-decoration: none;
    font-size: 14px;
    line-height: 30px;
}

.multiple-agents {
    float: left;
}

.multiple-agents span {
    display: block;
    line-height: 15px;
}

.multiple-agents a {
    line-height: 15px !important;
}

/*  Twitter Box  */
#twitter-wrapper {
    background: #f9d6b4;
}

#twitter-sizer {
	position:relative;
	width:100%;
	height:0;
}

#twitter-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    right: 0;
    bottom: 0;
    text-align: left;
	color: #c7c7c7;
    background: #000253;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	font-size: 14px;
}

.ttf-tweet-full-name {
    color: #c7c7c7 !important;
}

#twitter-inner a:hover {
	opacity:0.5;
}

#twitter-inner a {
    color: #fff;
    font-weight: bold;
	-webkit-transition: opacity ease-in-out 0.5s;
    -moz-transition: opacity ease-in-out 0.5s;
    -o-transition: opacity ease-in-out 0.5s;
    transition: opacity ease-in-out 0.5s;
}

.timeline-twitter-feed {
    box-sizing: border-box;
}

a.ttf-tweet-screen-name {
    font-weight: 100 !important;
    font-family: 'GT Pressura';
    text-transform: uppercase;
    font-size: 24px;
    color: #fff !important;
    /*text-shadow: -1px -1px 0 #000253, 1px -1px 0 #000253, -1px 1px 0 #000253, 1px 1px 0 #000253;*/
}

.ttf-tweet-screen-name:before {
    content: '\f099';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

/*  AGENTs  */

.single-agent {
    display: table;
    position: relative;
    width: 100%;
    height: 50%;
}

.single-agent a {
	color:#fff;
}

.single-agent-copy, .single-agent-image {
    display: table-cell;
    width: 50%;
    background: #000253 center no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
	vertical-align:middle;
	position:relative;
}

.agent-award-wrapper {
    display: block !important;
    padding: 20px 20px 0 0;
    max-width: 15%;
    max-height: 50%;
    position: absolute;
    right: 0;
    top: 0;
    box-sizing: border-box;
}

.agent-award-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 100%;
}

/*  ISOTOP SEARCH  */

#search-header {
    color: #fff;
    background: #000;
	text-shadow: 0 0;
    font-family: 'GTCinetypeRegular';
}

#search-header a, #search-header span {
	color:#fff;
	cursor:pointer;
}

#search-header a:hover, #search-header span:hover {
    color: #252525;
}

.quicksearch {
    display: block;
    float: left;
    border: 0;
    margin: 0;
    padding: 20px;
    -webkit-appearance: none;
    font-family: 'GTCinetypeRegular';
    font-size: 18px;
    color: #fff;
    outline: 0 !important;
    background: #252525;
    line-height: 18px;
    text-transform: uppercase;
}

.filters {
    float: left;
    line-height: 18px;
    font-size: 18px;
    padding: 22px;
}

.filters .is-checked {
    opacity: 0.5;
}

#newsignings-header {
    font-family: 'GT Pressura';
    text-transform: uppercase;
    color: #fff;
    line-height: 1em;
    font-size: 3em;
    padding: 22px;
    text-shadow: -1px -1px 0 #000253, 1px -1px 0 #000253, -1px 1px 0 #000253, 3px 3px 0 #f9d6b4;
    text-align: center;
}

/*  List View  */

#artist-list {
    color: #fff;
    padding: 0 30px 50px;
}

#artist-list .hideme {
    display: none;
}

#artist-list h2 {
    margin: 30px auto;
}

#artist-list a {
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    display: block;
}

#toggle-list {
    float: right;
    line-height: 18px;
    font-size: 18px;
    padding: 22px;
    cursor: pointer;
}

#toggle-list #show-grid {
	display:none;
}

#toggle-list #show-list:after {
    content: '\f03a';
    font-family: 'FontAwesome';
	margin-left: 5px;
    width: 22px;
    display: block;
    float: right;
    text-align: center;
}

#toggle-list #show-grid:after {
    content: '\f03e';
    font-family: 'FontAwesome';
	margin-left: 5px;
    width: 22px;
    display: block;
    float: right;
    text-align: center;
}

#toggle-list.listed #show-list {
	display:none;
}

#toggle-list.listed #show-grid {
	display:block;
}




/*  ABOUT  */

.about-page {
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    color: #000253;
    box-sizing: border-box;
    width: 100%;
}

.about-wrapper {
    display: table;
    width: 100%;
    height: 50%;
    font-size: 14px;
	    background: #000253;
}

.about-block, .follow-block {
    display: table;
    width: 50%;
	height:100%;
	float: left;
    position: relative;
	box-sizing:border-box;
	padding:20px 50px;
}

.about-copy, .follow-copy {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}


.about-block {
    background: #f9d6b4;
}

.about-block {
    color: #fff;
	background:transparent;
}

.follow-block {
    background: #000253;
    color: #fff;
}

.follow-block {
    background: #f9d6b4;
}


.about-block h2, .follow-block h2 {
    text-shadow: -1px -1px 0 #000253, 1px -1px 0 #000253, -1px 1px 0 #000253, 1px 1px 0 #000253;
    color: #fff;
    font-size: 30px;
    margin: auto;
	display: table-header-group;
}

.about-copy {
    width: 50%;
    margin: auto;
	font-weight:bold;
}

.about-copy p {
    margin: 5px 0;
}

.follow-block #social {
    position: absolute;
    margin: auto;
    display: block;
    padding: 0;
    top: 10px;
    left: 0;
    right: 0;
    bottom: initial;
}

.follow-copy #social a {
    font-size: 30px;
    margin-left: 20px;
	color:#000253;
}

.follow-copy .nsu-form {
    max-width:350px;
    margin: auto;
}

.follow-copy .nsu-form input {
    font-size: 24px;
    font-weight: bold;
	color:#000253 !important;
	border-color: #000253;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.follow-copy input::-webkit-input-placeholder {
   color: #FFF;
   color:#000253;
}

.follow-copy input:-moz-placeholder { /* Firefox 18- */
   color: #FFF;  
}

.follow-copy input::-moz-placeholder {  /* Firefox 19+ */
   color: #FFF;  
}

.follow-copy input:-ms-input-placeholder {  
   color: #FFF;  
}

.follow-block .nsu-signed-up {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
}

#staff-wrap {
    width: 100%;
    position: relative;
    height: 50%;
}

#staff-wrap a {
    display: block;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    height: 50%;
    width: 14.2857143%;
    width: calc(100% / 7);
}

#staff-wrap h2 {
    font-size: 18px;
}

#staff-wrap h2 span {
	display:block;
}



/*  CONTACT  */

.contact-page {
    width: 100%;
    text-align: center;
    height: 100%;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    color: #000253;
}

.contact-wrapper {
    height: 50%;
    display: table;
    width: 100%;
}

.contact-block, .contact-image {
    display: table;
    width: 50%;
    background: #000253 center no-repeat;
    background-size: cover;
    height: 100%;
    float: left;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
}

.contact-block h2 {
    display: table-header-group;
}

.contact-copy {
    display: table-cell;
    vertical-align: middle;
	text-transform:uppercase;
	font-size:14px;
}

.contact-copy p {
    margin: 0.5em auto;
}

.contact-page .contact-copy h2 {
    font-size: 14px;
    display: block;
    line-height: 1em;
    margin-top: 2em;
}

.contact-block a {
    color: #fff;
}

.contact-page h2 {
    text-shadow: -1px -1px 0 #000253, 1px -1px 0 #000253, -1px 1px 0 #000253, 1px 1px 0 #000253;
    color: #fff;
    font-size: 30px;
    margin: auto;
}

#themap {
    text-shadow: 0 0;
    width: 100%;
    height: 50%;
}

/*  SIGNUP  */
#signupbox {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 50px;
    background: #000;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    z-index: 99;
	display:none;
}

.signup-page {
    background: transparent;
    color: #fff;
}

.nsu-form {
	display:table;
	width:100%;
}

.nsu-form p {
    display: table-cell;
    margin: 0;
	vertical-align:top;
}

.nsu-form label {
    display: none;
}

.nsu-form input {
    -webkit-appearance: none;
    border: 0;
    background: rgba(0, 0, 0, 0);
    color: #fff !important;
    border-bottom: #fff 1px solid;
    font-size: 14px;
    display: block;
    padding: 5px;
    box-sizing: border-box;
	font-family:'GTCinetypeRegular', sans-serif;
	outline:0;
    width: 100%;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

#nsu-submit-0 {
    font-weight: bold;
}

#signupbox h2 {
    margin: auto;
}

#signupbox iframe {
    display: table;
    margin: 20px 0 0;
    height: 40px;
    max-height: 40px;
    width: 100% !important;
}

.signup-close:before {
    content: '\f00d';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
}

.signup-page #nsu-signed-up-0 {
    margin: auto;
    text-shadow: 0 0;
}

input::-moz-focus-inner { 
	border: 0; 
	padding: 0;  
}

/*  Text Page  */

#content.text-page {
    padding: 5em;
    color: #fff;
}

#content.text-page a {
    color: #fff;
    text-decoration: underline;
}

#content.text-page a:hover {
    text-decoration: none;
}

@media screen and (min-width:1450px) {
/*  Column & Row  */


#artists-page .artist {
    width: 16.66666%;
    width: calc(100% / 6);
}

.about-wrapper, .contact-copy, .contact-page .contact-copy h2, body, #twitter-inner {
	font-size:18px;
}

}
@media screen and (min-width:737px) and (max-width:1199px) {

body, #twitter-inner, .about-wrapper {
	font-size: 12px;
}

#artists-page .artist h2, .follow-copy .nsu-form input, .quicksearch {
	font-size:14px;
}
.quicksearch {
	padding:10px;
}

.filters, #toggle-list {
line-height: 14px;
font-size: 14px;
padding: 12px;
}

.the-agent {
width: 100%;
margin:10px 0 !important;
}

#artist-social {
	margin-left:0;
}
}
@media screen and (min-width:737px){
#nav {
	display:block !important;
}
}

@media screen and (max-width:736px){
	
	#left {
    left: 0 !important;
    top: 0;
    bottom: auto;
    padding: 10px;
    border-right: 0;
    width: 100%;
    right: 0;
    border-bottom: 1px solid;
}

h1#logo {
    display: table;
    margin: 0;
    position: relative;
    width: 77px;
}

#nav {
    display: none;
    margin-top: 10px;
	margin-left: -10px;
	margin-right: -10px;
}

#nav li {
    border-top: 1px solid;
    padding-top: 5px;
    margin: 5px auto 0;
}

#menu-item-2066 {
    position: relative;
    bottom: 0;
}

#menu-item-2066 a {
    font-size: 24px;
}

#social {
    left: auto;
    right: 31px;
    bottom: auto;
    top: 10px;
}

#header-arrows {
	display:none !important;
}

#header-toggle {
    position: absolute;
    right: 0;
    top: 10px;
    margin-top: 0;
	display:block;
	cursor:pointer;
}

#header-toggle:before {
	font-family: 'FontAwesome';
    color: #000253;
    font-weight: 100;
    text-shadow: 0 0;
    content: '\f0c9';
    font-size: 24px;
}

/*Page content*/
#content {
    margin-left: 0;
	margin-top: 65px;
}

.artist {
    width: 50% !important;
}

.artist h2 {
    font-size: 14px;
}

/*  Tweet box  */


a.ttf-tweet-screen-name, #instagramfeed .owl-item span {
    font-size: 14px;
}
.ttf-tweet-full-name {
    display: none;
}

#twitter-inner {
    font-size: 7px;
}

/*  Artist Page  */
.quicksearch {
    width: 100%;
    box-sizing: border-box;
	font-size: 10px;
    line-height: 10px;
}

.filters {
    line-height: 10px;
    font-size: 10px;
    padding: 20px 20px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

#toggle-list {
    line-height: 10px;
    font-size: 10px;
    padding:20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

#toggle-list #show-list:after, #toggle-list #show-grid:after {
    display: inline-block;
    float: none;
}

/*  Single Artist Page  */

#content.single-artist {
    position: relative;
    bottom: 0;
}

.single-artist #inner-content {
    height: 50%;
    position: relative;
}

.single-artist-box {
    position: relative;
    left: 0;
    right: 0;
    bottom: initial;
}

.single-artist-box h2 {
    float: none;
}

.single-artist-box .the-agent, .single-artist-box .the-flag {
    margin-left: 0;
    margin-top: 20px;
    float: none;
}

#artist-social {
    float: none;
    width: 100%;
    margin: 0;
    padding-top: 20px;
}

/*  About Page  */

.about-block, .follow-block {
    width: 100%;
    height: auto;
    padding: 50px 20px;
}

.follow-block #social {
    position: relative;
    margin: 20px auto;
    top: 0;
}

.follow-copy .nsu-form input {
    font-size: 18px;
}

/*  Single Agent  */

.single-agent-copy, .single-agent-image {
    display: block;
    width: 100%;
}

.single-agent-copy {
    padding-top: 30px;
}

.single-agent-image {
    padding-bottom: 71%;
    margin-top: 50px;
}

/*  Contact Page  */

.contact-wrapper {
    height: initial;
    display: table;
    width: 100%;
}

.contact-block, .contact-image {
    width: 100%;
}

.footer {
    padding-left: 20px;
}

.agent-award-wrapper {
    max-width: 20%;
}

#newsignings-header {
    font-size: 2em;
    text-shadow: -1px -1px 0 #000253, 1px -1px 0 #000253, -1px 1px 0 #000253, 2px 2px 0 #f9d6b4;
}

#content.text-page {
    padding: 1em 2em;
}

}

@media only screen 
and (max-device-width : 736px) 
and (orientation : landscape) { 

#staff-wrap a {
	height:75%;
}
}