/*

gold: #E5BB34
orange: #D55B11
magenta: #EE057F
eggplant: #372235;

*/

body, html {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

body {
	font-family: eurostile, sans-serif;
	font-weight: 400;
	font-style: normal;
	background-image: url(img/background.jpg);
    background-position: top center;
	background-size: 110%;
	background-repeat: no-repeat;
	background-color: #362235;
}

@media only screen and (max-width: 768px) {
	body {
		background-image: url(img/background-portrait.jpg);
		background-size: contain;
	}
}

a {
	color: #E5BB34;
	text-decoration: none;
	transition: 500ms linear;
	cursor: pointer;
}

a:hover {
	color: #FFF;
	transition: 500ms linear;
	cursor: pointer;
}

article {
	position: relative;
	width: 100%;
	min-height: 100vh;
	/*display: flex;*/
	/*background: #372235;*/
	display: table;
	border-bottom: 1px solid #E5BB34;
	font-family: montserrat, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 32px;
	color: #FFF;
}

@media only screen and (max-width: 768px) {
	article {
		font-size: 16px;
		line-height: 28px;
	}
}

.inner-article {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	/*margin: 100px auto;*/
	min-height: 100%;
}

.standard-wrap {
	position: relative;
	width: calc(75% - 400px);
	margin: 50px auto;
	padding: 0 0 0 150px;
	align-items: center;
	z-index: 3;
}

@media only screen and (max-width: 1024px) {
	.standard-wrap {
		width: 70%;
		padding: 0 ;
	}
}

@media only screen and (max-width: 767px) {
	.standard-wrap {
		z-index: 99;
	}
}

@media (min-width: 481px) and (max-width: 767px) {
	.standard-wrap {
		width: calc(75% - 100px);
		padding: 0 0 0 60px;
	}
}

h2, h3 {
	letter-spacing: 1px;
	line-height: 36px;
	font-weight: 600;
	color: #E5BB34;
}

h2 {
	font-size: 30px;
}

.clearfix {
	clear: both;
}

a#edge_logo {
    position: absolute;
	width: 160px;
	right: 40px;    
    bottom: 40px;
}

a#edge_logo img {
	width: 100%;
}

/*svg {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -50px;
	margin-left: -50px;
  
	animation: rotate 200ms linear 400ms;
	animation-play-state: paused;
	animation-delay: calc(var(--scroll) * -1s);
  
	animation-iteration-count: 1;
	animation-fill-mode: both;
  }
  
  @keyframes rotate {
	to {
	  -webkit-transform: translateX(300%);
	-ms-transform: translateX(300%);
	transform: translateX(300%);
	}
  } */

/* ============ HEADER ============ */

header {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	display: block;
	z-index: 99;
}

header.internal {
	height: 200px;
}

@media (min-width: 768px) and (max-width: 1024px) {
	header.internal {
		background-color: rgba(55, 34, 53, 0.75);
	}
}

@media only screen and (max-width: 481px) {
	header.internal {
		background-color: rgba(55, 34, 53, 0.75);
	}
}

@media only screen and (max-width: 414px) {
	header.internal {
		z-index: 999;
	}
}

header nav {
	position: absolute;
	display: block;
	font-size: 28px;
	letter-spacing: 1px;
	font-family: eurostile-condensed, sans-serif;
	font-weight: 400;
	font-style: normal;
	transition: 500ms linear;
	z-index: 99;
}

@media only screen and (max-width: 1024px) {
	header nav {
		font-size: 23px;
	}
}

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

@media only screen and (max-width: 414px) {
	header nav ul {
		display: flex;
		font-size: 5vw;
	}
}

header nav ul li {
	margin: 0 0 5px 0;
	transition: 500ms linear;
}

header nav ul li a {
	text-decoration: none;
	color: #D55B11;
	transition: color 1s ease-out;
	cursor: pointer;
}

header nav ul li a.active {
	color: #E5BB34;
	transition: color 1s ease-out;
}

header #nav {
	top: 30%;
	margin: 0 0 0 40px;
	-ms-transform: translateY(30%);
	transform: translateY(30%);
	transition: 500ms linear;	
	z-index: 999;
}

header #nav.internal {
	top: 70%;
	transform: translateY(70%);
	-ms-transform: translateY(70%);
	transition: 500ms linear;	
}

@media only screen and (max-width: 1024px) {
	header #nav {
		top: 40px;
		margin: 0 0 0 20px;
		-ms-transform: none;
		transform: none;
	}
	header #nav.internal {
		transform: translateY(10%);
		-ms-transform: translateY(10%);	
	}
}

@media only screen and (max-width: 414px) {
	header #nav {
		top: 50%;
		margin: 0;
	}
}

header #nav ul li::before {
	margin: 0 20px 0 0;
	content: ">";
	color: #EE057F;
}

@media only screen and (max-width: 414px) {
	header #nav ul li::before {
		margin: 0 5px 0 20px;
	}
}

header nav#social {
	position: absolute;
	right: -40px;
	text-align: right;
	margin: 80px 0 0 0;
	transform: rotate(-90deg);
}

@media only screen and (max-width: 414px) {
	header nav#social {
		text-align: left;
		margin: 15px;
		transform: none;
	}
}

header nav#social ul.mobilePortrait {
	display: none;
}

@media only screen and (max-width: 414px) {
	header nav#social ul.standard {
		display: none;
	}
	header nav#social ul.mobilePortrait {
		display: block;
	}
}

header nav#social ul.mobilePortrait li {
	display: inline-block;
	margin: 0 0 0 10px;
}

header nav#social ul li::after {
	margin: 0 0 0 20px;
	content: "<";
	color: #EE057F;
}

@media only screen and (max-width: 414px) {
	header nav#social ul li::after {
		display: none;
	}
}

#logo {
	position: absolute;
	width: calc(90% - 400px);
	top: 50%;
	right: 0;
	left: 0;
	margin: 0 auto;
	padding: 35% 0 0 0;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 1;
	background: url(img/logo/logo-horz.png) center center no-repeat;
	background-size: contain;
}

@media only screen and (max-width: 1024px) {
	#logo {
		top: 45%;
		background: url(img/logo/logo-horz.png) center top no-repeat;
		background-size: contain;
		z-index: 99;
	}
}

@media only screen and (max-width: 768px) {
	#logo {
		width: 85%;
	}
}

@media only screen and (max-width: 414px) {
	#logo {
		width: 100%;
		height: 60px;
		top: 38%;
	}
}

#logo.reduced {
	width: 350px;
	height: 300px;
	top: 0;
	right: auto;
	left: -30px;
	margin: 0;
	padding: 0;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	background: url(img/logo/logo-vert.png) left center no-repeat;
	background-size: contain;
}

@media only screen and (max-width: 1024px) {
	#logo.reduced {
		position: fixed;
		width: 50%;
		height: 200px;
		top: 0;
		right: 0;
		left: -20px;
		margin: 0 auto;
		background: url(img/logo/logo-horz.png) center center no-repeat;
		background-size: contain;
	}
}

@media (min-width: 481px) and (max-width: 767px) {
	#logo.reduced {
		position: fixed;
		width: 23%;
		height: 180px;
		right: auto;
		margin: 0;
		background: url(img/logo/logo-vert.png) left top no-repeat;
		background-size: contain;
	}
}

@media only screen and (max-width: 414px) {
	#logo.reduced {
		width: 60%;
		height: 155px;
		left: 0;
	}
}

/* ============ ./END HEADER ============ */


/* ============ HOMEPAGE ============ */

#set-height {
	display: block;
}
#v0 {
  position: fixed;
  top: 0;
  left: 0;  
  width: 100%;
}

/* ============ .END HOMEPAGE ============ */


/* ============ LISTEN ============ */

#demo-wrap {
	position: relative;
	height: 100%;
	margin: 60px 0 0 0;
}

#demo-wrap h3,
#demo-wrap p {
	margin: 0;
}

ul#demos,
ul.tracks {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul#demos {
	position: relative;
	display: inline-block;
	margin: 60px 0 0 0;
}

ul#demos li {
	position: relative;
	display: inline-block;
	margin: 0 15px 0 0;
}

ul.tracks {
	margin: 40px 0 0 0;
}

@media only screen and (max-width: 767px) {
	ul.tracks {
		margin: 0;
	}
}

ul.tracks li {
	margin: 0 0 20px 0;
}

.iru-tiny-player {
	border: 2px solid #D55B11;
}

.iru-tiny-player .song-main-info {
	margin: 10px 30px;
	font-size: 20px;
}

@media only screen and (max-width: 767px) {
	.iru-tiny-player .song-main-info {
		margin: 5px 20px;
		font-size: 16px;
	}
}

.iru-tiny-player .song-progress {
	background-color: #D55B11;
}

.iru-tiny-player .icon:hover {
	color: #E5BB34;
}

.iru-tiny-player .song-title,
.iru-tiny-player .song-timer {
	z-index: 9;
}

.iru-tiny-player .song-volume-control {
	background-color: #E5BB34;
	z-index: 10;
	color: #372235;
}

.iru-tiny-player .icon.fa-times {
	margin: 10px;
}

.iru-tiny-player .icon.fa-times:hover {
	color: #FFF;
}

/* ============ .END LISTEN ============ */