@CHARSET "ISO-8859-1";
/* Reset CSS
 * --------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}
a{
	text-decoration:none;
}
table {
    border-spacing: 0;    
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
strong{
	font-weight: bold;
}
ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}
caption,th {
    text-align: left;

}

q:before,q:after {
    content:'';
}
abbr,acronym { border: 0;
}


/* Custom CSS
 * --------------------------------------- */
body {
	font-family: 'Quicksand', sans-serif;
	color: rgba(0,0,0,0.5);
	font-size: 14px;
}

#menu li {
	display:inline-block;
	margin: 10px;
	color: #000;
	background:#fff;
	background: rgba(255,255,255, 0.3);
	-webkit-border-radius: 10px; 
			border-radius: 10px; 
}
#menu li.active{
	background:#666;
	background: rgba(255,255,255, 1);
	color: #000;
}
#menu li a{
	text-decoration:none;
	color: #000;
}
#menu li.active a:hover{
	color: #000;
}
#menu li:hover{
	background: rgba(255,255,255, 0.8);
}
#menu li a,
#menu li.active a{
	padding: 9px 18px;
	display:block;
}
#menu li.active a{
	color: #000;
}
#menu{
	position:fixed;
	top:0;
	left:0;
	height: 40px;
	z-index: 70;
	width: 100%;
	padding: 0;
	margin:0;
}
#infoMenu{
	height: 20px;
	color: #f2f2f2;
	position:fixed;
	z-index:70;
	bottom:0;
	width:100%;
	text-align:right;
	font-size:0.9em;
	padding:8px 0 8px 0;
}
#infoMenu ul{
	padding: 0 40px;
}
#infoMenu li a{
	display: block;
	margin: 0 22px 0 0;	
	color: #333;
}
#infoMenu li a:hover{
	text-decoration:underline;
}
#infoMenu li{
	display:inline-block;
	position:relative;
}
#examplesList{
	display:none;
	background: #282828;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	padding: 20px;
	float: left;
	position: absolute;
	bottom: 29px;
	right: 0;
	width:638px;
	text-align:left;
}
#examplesList ul{
	padding:0;
}
#examplesList ul li{
	display:block;
	margin: 5px 0;
}
#examplesList ul li a{
	color: #BDBDBD;
	margin:0;
}
#examplesList ul li a:hover{
	color: #f2f2f2;
}
#examplesList .column{
	float: left;
	margin: 0 20px 0 0;
}
#examplesList h3{
	color: #f2f2f2;
	font-size: 1.2em;
	margin: 0 0 15px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-moz-box-shadow: 0 1px 0 rgba(255,255,255,0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	padding: 0 0 5px 0;
}

/* Demos Menu
 * --------------------------------------- */
 #demosMenu{
	position:fixed;
	bottom: 10px;
	right:10px;
	z-index: 999;
 }
 
.graduated {
	background-image: url(img/graduated.png?v=2);
	background-size: cover;
	top: 0px;
	z-index: 2;
}

.graduated,
.fullscreen {
	position: absolute;
	width:200%;
	height: 100%;
	left: 0;
	z-index: 1;
	vertical-align: middle;
	text-align: center;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.arrow-container {
	position: fixed;
	bottom: 70px;
	width: 100%;
	height: 80px;
	display:block;
	background: rgba:(0,0,0,0);
	z-index: 8;
	text-align: center;
}

.arrow_link {
	width: 60px;
	background: rgba:(0,0,0,0);
	z-index: 999;
	display: inline-block;
}

.arrow {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: 24px;
	height: 24px;
}

.chevron {
	position: absolute;
	width: 28px;
	height: 8px;
	opacity: 0;
	transform: scale3d(0.5, 0.5, 0.5);
	animation: move 3s ease-out infinite;
}

.chevron:first-child {
	animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
	animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
	content: ' ';
	position: absolute;
	top: 0;
	height: 100%;
	width: 51%;
	background: #1b1b1a;
}

.chevron:before {
	left: 0;
	transform: skew(0deg, 30deg);
}

.chevron:after {
	right: 0;
	width: 50%;
	transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
	opacity: 1;
  }
  33% {
	opacity: 1;
	transform: translateY(30px);
  }
  67% {
	opacity: 1;
	transform: translateY(40px);
  }
  100% {
	opacity: 0;
	transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes pulse {
  to {
	opacity: 1;
  }
}



#header, #footer{
	position:fixed;
	height: 50px;
	display:block;
	width: 100%;
	background: #1b1b1a;
	z-index:90;
	text-align:center;
	color: #f2f2f2;
	padding: 20px 0 0 0;
}

#header{
	top: 0px;
}

#footer{
	display: none;
	bottom: 0px;
}

.fullscreen {
	top: 0%;
}

.top-margin-medium {
	position: relative;
	top: 24%;
}

#logo1 {
	max-width: 350px; 
	width: 65%;
}

#bottom-logo {
	float: left;
	margin-left: 30px;
	height: 30px;
	filter: brightness(0) invert(1);
}

.home-social-icons .social-icon i {
	color: #1b1b1a;
	fill: #1b1b1a;
	margin-left: 10px;
	margin-right: 10px;
}

.social-icons {
	float: right;
	margin-right: 30px;
}

.social-icon i {
	display: inline-block;
	font-size: 28px;
}

.social-icons .social-icon i {
	color: #fff;
	fill: #fff;
	margin-right: 6px;
}

.track_cover {
	max-width: 320px; 
	width: 60%; 
	position: absolute;
	left: 20%;
	top: 20%;
	border-radius: 4px;
}

.ms-section {
}

.track_container {
	position: absolute;
	top: 20%;
	right: 40px;
	margin: 0px 40px;
	z-index: 9;
	color: #1b1b1a;
	max-width: 380px;
}

.fullscreen .track_container {
	max-width: inherit !important;
	width: 90% !important;
	right: auto !important;
	margin: 0px 0px !important;
	padding: 0px 5%;
}

.fullscreen .track_text .line {
	display: inline-block !important;
}

.fullscreen .track_text .line span.label {
	width: auto !important;
}

.fullscreen .track_text b {
	width: auto !important;
	margin-right: 20px;
}

.track_text {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
}

.track_container h1 {
	font-size: 3.8em;
	letter-spacing: 0.08em;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.section4 .track_text b,
.section4 .track_container h1,
.section4 .track-icon div {
	color: #caa7ff;
}

.section6 .track_text b,
.section6 .track_container h1,
.section6 .track-icon div {
	color: #ffe0f2;
}

.section8 .track_text b,
.section8 .track_container h1,
.section8 .track-icon div {
	color: #b7dfff;
}

.greysection .track_text b,
.greysection .track_container h1,
.greysection .track-icon div	{
	color: #3a3a3a;
}

.section2 .track_text b,
.section2 .track_container h1,
.section2 .track-icon div	{
	color: #c3f0ff;
}

.track_text .line {
	letter-spacing: 0.1em;
	margin-bottom: 11px;
}

.track_text .line span.label {
	width: 140px;
	display: inline-block;
	color: #ffffff;
}

.track_text b {
	width: 180px;
	display: inline-block;
}

a:hover {
	opacity: 0.5;
}

.track-icon {	
	color: #fff;
	display: inline-flex;
	align-items: center;
	width: 120px;
	margin-bottom: 20px;
}

.track-icon div {
	display: inline-block;
	font-size: 10px;
	letter-spacing: 0px;
	padding-top: 10px;
	height: 24px;
}
	
.track-icon i {
	clear: both;
	display: inline-block;
	font-size: 28px;
	margin-right: 6px;
	fill: #fff;
}

.soundcloud-container {
	position: absolute;
	width: 200%;
	text-align: center;
	z-index: 1;
}

.follow-text {
	padding: 45px 0px 25px 0px;
}

@media screen and (max-width: 700px) {
	:not(.soundcloud) .track_container {
		right: 4px;
		margin: 0px 0px 0px 25px;
		top: 25px;
	}
	
	.track_cover {
		top: 60px;
	}
	
	.track_container h1 {
		font-size: 1.18em;
		padding-bottom: 15px;
	}
	
	.track_text {
		font-size: 10px;
	}
	
	.track_text .line {
		letter-spacing: 0em;
	}
	
	.track_text .line span {
		width: auto;
		margin-right: 6px;
	}
	
	.track_text b {
		width: auto;
	}
	
	.track-icon {
		width: 100%;
		clear: both;
		margin-bottom: 5px;
	}
	
	.soundcloud .track_container {
		top: 65px;
		margin: 0px;
	}
}

@media screen and (max-height: 420px) {
	.top-margin-medium {
		position: relative;
		top: 14%;
	}
		
	.follow-text {
		padding: 15px 0px 10px 0px;
	}

	#logo1 {
		display: none;
		max-width: 250px; 
		width: 65%;
	}
	
	.track_container h1 {
		font-size: 1.12em;
		padding-bottom: 10px;
	}

	.track_container {
		top: 25px;
		margin: 0px 0px 0px 40px;
	}
	
	.track_cover {
		max-width: 320px; 
		width: 50%; 
		position: absolute;
		left: 60px;
		top: 60px;
	}
	
	.track-icon {
		width: 120px;
		margin-bottom: 5px;
	}
	
	.soundcloud-container {
		bottom: 140px;
	}
	
	.soundcloud .track_container {
		top: 25px;
		margin: 0px;
	}
	
	.track_text {
		font-size: 11px;
	}
	
	.arrow_link {
		bottom: 60px;
	}
}



@media screen and (max-height: 300px) {
	.top-margin-medium {
		position: relative;
		top: 10%;
	}
		
	.follow-text {
		display: none;
	}

	#logo1 {
		max-width: 150px; 
		width: 45%;
		margin-bottom: 10px;
	}
	
	.track_text .line {
		letter-spacing: 0em;
		margin-bottom: 5px;
	}
	
	.track_container h1 {
		font-size: 1.12em;
		padding-bottom: 5px;
	}

	.track_container {
		top: 15px;
		margin: 0px 0px 0px 40px;
	}
	
	.track_cover {
		max-width: 320px; 
		width: 50%; 
		position: absolute;
		left: 60px;
		top: 30px;
	}
	
	.track-icon {
		width: 70px;
		margin-bottom: 3px;
	}
	
	.track-icon div {
		display: none;
	}
	
	.soundcloud {
		display: none;
	}
	
	.soundcloud-container {
		top: 15px;
	}
	
	.track_text {
		font-size: 11px;
	}
	
	.arrow_link {
		bottom: 50px;
	}
}
