@font-face {
	font-family: 'awesome';
	src: url('fonts/fontawesome-webfont.ttf');
	src: url('fonts/fontawesome-webfont.woff');
	font-weight: normal;
	font-style: normal;
}

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,font,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{
	border: 0;
	outline: 0;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	background: transparent;
}
ol,ul{
	list-style:none;
}
*,*:before,*:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


.header,
.navigation,
.content,
.page-footer{
	width: 100%;
	display: inline-block;
}
.centered{
	max-width: 1024px;
	margin: 0 auto;
}



.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}


/* one item */
.flex > div:first-child:nth-last-child(1) {
/* -or- .flex > div:only-child { */
    flex-basis: 100%;
}

/* two items */
.flex > div:first-child:nth-last-child(2),
.flex > div:first-child:nth-last-child(2) ~ div {
    flex-basis: calc(50% - 20px);
}

@media(max-width: 768px){
	
.flex > div:first-child:nth-last-child(2),
.flex > div:first-child:nth-last-child(2) ~ div {
    flex-basis: 100%;
}

}

/* three items */
.flex > div:first-child:nth-last-child(3),
.flex > div:first-child:nth-last-child(3) ~ div {
    flex-basis: calc(33.3333% - 20px);
}

@media(max-width: 768px){

.flex > div:first-child:nth-last-child(3),
.flex > div:first-child:nth-last-child(3) ~ div {
   flex-basis: 100%;
}

}
/* four items */
.flex > div:first-child:nth-last-child(4),
.flex > div:first-child:nth-last-child(4) ~ div {
    flex-basis: calc(25% - 20px);
}
/* five items */
.flex > div:first-child:nth-last-child(5),
.flex > div:first-child:nth-last-child(5) ~ div {
    flex-basis: calc(20% - 20px);
}





.flex-wrap{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

	.flex-double{
	    flex-basis: calc(50% - 20px);
	}
	.flex-triple{
	    flex-basis: calc(33.33333333% - (60px / 2) );
	    margin-right: calc(135px / 3);
	}
	.flex-triple:nth-child(3n){
		margin-right: 0;
	}
	.flex-quarter{
	    flex-basis: calc(25% - (80px / 3) );
	    margin-right: calc(106px / 3);
	}
	.flex-quarter:nth-child(4n){
		margin-right: 0;
	}




@media(max-width: 768px){
	
	.flex-double{
	    flex-basis: 100%;
	}
	.flex-triple{
	    flex-basis: 100%;
	    margin-right: 0;
	}
	.flex-quarter{
	    flex-basis: 100%;
	    margin-right: 0;
	}
	.flex-quarter:nth-child(4n){
		margin-right: 0;
	}
}










body{
	position: relative;
}






.header{
	position: fixed;
	top: 0;
	height: 96px;
	background: rgba(0,0,0,0.7);
	z-index: 2;
}
	.main-nav{
		color: #fff;
	}
		.logo{
			float: left;
			margin-top: 13px;
			max-width: 360px;
		}
			.logo svg{
				max-width: 100%;
			}
			.footer-content svg{
				max-width: 360px;
			}
@media(max-width: 1024px){

.header{
	height: 76px;
}
		.logo{
			padding-left: 40px;
			width: calc(100% - 120px);
			margin-top: 2px;
		}
}
		.menu-trigger{
			font-family: awesome;
			color: #fff;
			padding:  20px 40px 0 0;
			font-size: 30px;
			float: right;
			cursor: pointer;
			display: none;
		}
@media(max-width: 1024px){
		.menu-trigger{
			display: block;
		}
}
		.main-nav > ul{
			float: right;
		}
			.main-nav > ul > li{
				float: left;
			}
			.main-nav > ul > li:last-child{
				margin-right: 0;
			}
				.main-nav .submenu-trigger,
				.main-nav > ul > li > a{
					font-size: 12px;
					text-transform: uppercase;
					color: #fff;
					cursor: pointer;
					padding: 40px 15px;
					float: left;
					text-decoration: none;
					letter-spacing: 2px;
					border-top: 2px solid transparent;
				}
				.main-nav > ul > li > .current-page,
				.main-nav .w-submenu:hover .submenu-trigger,
				.main-nav > ul > li > a:hover{
					background: #222;
					border-top: 2px solid #ddd;
				}

@media(max-width: 1024px){
		.main-nav > ul{
			display: none;
			width: 100%;
			position: absolute;
			top: 100%;
			left: 0;
			z-index: 5;
			background: rgba(0,0,0,0.9);
		}
			.main-nav > ul > li{
				width: 100%;
			}

				.main-nav .submenu-trigger,
				.main-nav > ul > li > a{
					padding: 20px 15px;
					width: 100%;
				}
}
				.w-submenu{
					position: relative;
				}
				.submenu-trigger:after{
					content: "";
					font-family: awesome;
					color: #fff;
				}
				.submenu{
					display: none;
					position: absolute;
					background: rgba(0,0,0,0.8);
					top: 100%;
					left: 0;
				}

@media(max-width: 1024px){
				.submenu{
					position: static;
				}
}
				.social-sub a:before{
					font-family: awesome;
					margin-right: 5px;
				}
				.social-sub .facebook:before{
					content: "";
				}
				.social-sub .twitter:before{
					content: "";
				}
				.social-sub .youtube:before{
					content: "";
				}
				.social-sub .instagram:before{
					content: "";
				}
				.social-sub .soundcloud:before{
					content: "";
				}


				/*.social-sub .iTunes:before{
					content: "";
				}*/
				.social-sub .Bandcamp:before{
					content: "";
				}
				/*.social-sub .google-play:before{
					content: "";
				}*/
				.social-sub .Amazon:before{
					content: "";
				}
				.social-sub .Spotify:before{
					content: "";
				}


				.main-nav .w-submenu:active .submenu,
				.main-nav .w-submenu:hover .submenu{
					display: block;
				}

				.submenu li{
					width: 100%;
				}
				.submenu li a{
					width: 100%;
					padding: 20px 30px;
					font-size: 12px;
					text-transform: uppercase;
					color: #fff;
					cursor: pointer;
					text-decoration: none;
					letter-spacing: 2px;
					display: inline-block;
				}
				.submenu li a:hover{
					background: #222;
				}









.content{
	min-height: 500px;
	z-index: 1;
	position: relative;
}

	.fill{
		width: 100%;
		/* display: inline-block; */
		float: left;
	}
	div.fill{
		margin-bottom: 60px;
	}

h1{
	font-size: 30px;
	font-weight: lighter;
	text-transform: uppercase;
}
h3{
	font-size: 26px;
	font-weight: lighter;
	text-transform: uppercase;
}
h4{
	font-size: 22px;
	font-weight: lighter;
	text-transform: uppercase;
}

h5{
	text-transform: uppercase;
	font-weight: lighter;
	font-size: 18px;
	margin-bottom: 10px;
}
h6{
	text-transform: uppercase;
	font-weight: lighter;
	font-size: 14px;
	margin-bottom: 10px;
}


img{
	max-width: 100%;
	max-height: 100%;
}
p{
	margin-bottom: 20px;
	line-height: 1.5;
}
.text-fill{
	padding: 40px 0;
}
.light-text{
	color: #fff;
}








.news-full > .one-liner{
	display: inline-block;
	margin-top: 30px;
}
main > .one-liner,
main > .centered{
	margin-bottom: 60px;
}



main > .headline,
.headline{
	margin: 32px auto;
}








.news{
	padding: 60px 80px;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.news.video-news{
	padding: 16px 80px 60px;
}
@media(max-width: 1024px){
.news{
	padding: 40px 20px;
}
.news.video-news{
	padding: 16px 20px 40px;
}
}
	.news .centered{
		max-width: 600px;
	}
	.news.video-news .centered{
		max-width: 720px;
	}

/*BACKGROUNDs*/

	.black{
		background: rgba(0, 0, 0, 0.95);
		color: #fff;
	}
	.brown{
		background: rgba(19, 10, 0, 0.95);
	}
	.maroon{
		background: rgba(99, 0, 0, .95);
	}

	.trees{
		background: url(../images/treessign.png) center center rgba(0, 0, 0, 0.4);
		position: relative;
		z-index: 2;
		min-height: 777px;
	}
	@media(max-width: 1200px){
		.trees{
			min-height: 480px;
		}
	}
	@media(max-width: 960px){
		.trees{
			min-height: 360px;
		}
	}
	@media(max-width: 768px){
		.trees{
			min-height: 260px;
		}
	}
	.trees-and-stars{
		position: relative;
		overflow: hidden;
	}
	.orange-trees{
		background: url(../images/treessign.png) center center rgba(165, 76, 15, 0.6);
	}
	.green-trees{
		background: url(../images/treessign.png) center center rgba(0, 47, 15, 0.6);
	}
	.blue-trees{
		background: url(../images/treessign.png) center center rgba(1, 71, 93, 0.6);
		/*rgba(1, 71, 93, 0.6)*/
		/*rgba(0, 12, 95, 0.5)*/
	}
	.gray-trees{
		background: url(../images/treessign.png) center center rgba(43, 43, 43, 0.6);
	}
	.brown-trees{
		background: url(../images/treessign.png) center center rgba(49, 14, 8, .5);
	}
	.red-trees{
		background: url(../images/treessign.png) center center rgba(255, 0, 0, 0.3);
	}
	.faint-red-trees{
		background: url(../images/treessign.png) center center rgba(129, 39, 13, 0.3);
	}
	.maroon-trees{
		background: url(../images/treessign.png) center center rgba(47, 0, 0, 0.6);
	}
	


	
	.orange-city{
		background: url(../images/mid-sign.png) center center rgba(165, 76, 15, 0.6);
	}
	.green-city{
		background: url(../images/mid-sign.png) center center rgba(0, 47, 15, 0.6);
	}
	.blue-city{
		background: url(../images/treessign.png) center center rgba(1, 71, 93, 0.6);
	}
	.gray-city{
		background: url(../images/mid-sign.png) center center rgba(43, 43, 43, 0.6);
	}
	.brown-city{
		background: url(../images/mid-sign.png) center center rgba(49, 14, 8, .5);
	}
	.red-city{
		background: url(../images/mid-sign.png) center center rgba(255, 0, 0, 0.3);
	}
	.faint-red-city{
		background: url(../images/mid-sign.png) center center rgba(129, 39, 13, 0.3);
	}
	.maroon-city{
		background: url(../images/mid-sign.png) center center rgba(47, 0, 0, 0.6);
	}




	@media(max-width: 960px){
		.trees{
		background-size: cover;
		}
	}


	.star-twirl{
		width: 500%;
		height: 500%;
		position: fixed;
		background: url(../images/bg.jpg) repeat center center;
		animation: rotation 411s infinite linear;
		z-index: 0;
		left: -200%;
		top: -200%;
	}

	@keyframes rotation {
		from {
			-webkit-transform: rotate(0deg);
		}
		to {
			-webkit-transform: rotate(359deg);
		}
	}

/*END BACKGROUNDS*/





.news-block{
	display: flex;
}
	.image-side{
		flex-basis: 400px;
	}
	.news-side{
		flex-basis: calc(100% - 200px);
		padding: 0 0 0 20px;
	}
		.news-side h2{
			font-size: 24px;
			padding-bottom: 20px;
		}







.middle-block{
	text-align: center;
}
	.image-full{
		max-width: 300px;
		margin: 0 auto 20px;
	}
	.video-full{
		max-width: 720px;
		margin: 0 auto 20px;
	}
	video{
		width: 100%;
	}
	.news-full{
		width: 100%;
		padding: 0;
	}
		.news-full h2{
			width: 100%;
			font-size: 24px;
			color: #fff;
			padding-bottom: 20px;
		}




.to-middle{
	text-align: center;
}
main > .one-liner{
	width: 100%;
	display: inline-block;
	margin: 20px 0 60px;
	padding: 40px 0;
}
p + .one-liner{
	margin-top: 20px;
	display: inline-block;
}

.cta{
	border: 1px solid #fff;
	padding: 12px 20px;
	color: #fff;
	text-align: center;
	font-size: 16px;
	border-radius: 8px;
	text-decoration: none;
	display: inline-block;
}
/*.cta:hover{
	text-decoration: underline;
}*/













.tiles{
	display: flex;
	flex-direction: row;
  	flex-wrap: wrap;
  	/* max-width: 1920px; */
  	margin: 0 auto;
}
	.tile{
		flex-basis: 33.3333333333333%;
		position: relative;
	}
@media(max-width: 768px){
	.tile{
		flex-basis: 100%;
		text-align: center;
	}
}
		.tile-text{
			position: absolute;
			top: 0;
			left: 0;
			text-align: center;
			color: #fff;
			width: 100%;
			height: calc(100% - 3px);
			background: rgba(0,0,0,0.6);
			padding: 75px 66px 20px;
		}
@media(max-width: 1024px){
		.tile-text{
			padding: 25px 36px 20px;
		}
}
@media(max-width: 768px){
		.tile-text{
			padding: 68px 36px 20px;
		}
}
			.tile-text .date{
				margin: 0;
			}
			.tile-text h3{
				margin: 0;
				font-size: 20px;
				font-weight: lighter;
				text-transform: none;
			}













.date{
	text-transform: uppercase;
	font-size: 11px;
	font-weight: lighter;
	letter-spacing: 3px;
}










.spotify-embed{
	width: 100%;
	min-height: 400px;
}

.video-frame{
	width: 100%;
	position: relative;
	padding-bottom: 56.25%;
	margin-bottom: 20px;
}
.youtube-frame{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}







.page-footer{
	text-align: center;
	color: #fff;
	z-index: 1;
	position: relative;
}
.page-footer p{
	margin: 15px 40px;
}





.social-line{
	margin-bottom: 30px;
}
.social-line a{
	font-family: awesome;
	color: #fff;
	text-decoration: none;
	font-size: 30px;
	margin-right: 25px;
}
.social-line a:last-child{
	margin-right: 0;
}
































body{
	width: 100%;
	height: 100%;
	min-height: 800px;
	font-family: sans-serif;
	padding-top: 96px;
	background: url('data:image/jpeg;base64,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') no-repeat center center #000;
	background: url(../images/bg.jpg) no-repeat center center #000;
	background-attachment: fixed;
}




@media(max-width: 960px){

body{
	background: url(../images/bg.jpg) repeat top center #000;
}
}
@media(max-width: 1024px){

body{
	padding-top: 76px;
}

}







