@charset "utf-8";
/* CSS Document */

* {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    
    
}

html, body {
	width: 100%;
	overflow-x: hidden;
    background: linear-gradient(to bottom, #000000 50%, #6C0052 100%);
    color: #FFFFFF;
    font-family: 'Open Sans';
    /* background-image: url("../images/ic-bg.jpg"); */
    background-repeat: no-repeat;
    background-attachment: fixed;
	background-size: cover;
    
}


@keyframes rainbow {
		100%,0%{color: rgb(0, 156, 255);}
		50%{color: rgb(214,0,243);}
	}

@keyframes bounce {
	0%, 100%, 20%, 50%, 80% {
		-webkit-transform: translateY(0);
		-ms-transform:     translateY(0);
		transform:         translateY(0)
	}
	40% {
		-webkit-transform: translateY(-6px);
		-ms-transform:     translateY(-6px);
		transform:         translateY(-6px)
	}
	60% {
		-webkit-transform: translateY(-3px);
		-ms-transform:     translateY(-3px);
		transform:         translateY(-3px)
	}
}

/********************

CORE STRUCTURE

********************/

.bar-gray {
	width: 100%;
	background: rgb(51,51,51);
	background: -webkit-linear-gradient(left, rgba(51,51,51,0.0) 0%, rgba(51,51,51,0.5) 100%);
	background: -o-linear-gradient(left, rgba(51,51,51,0.0) 0%, rgba(51,51,51,0.5) 100%);
	background: linear-gradient(to right, rgba(51,51,51,0.0) 0%, rgba(51,51,51,0.5) 100%);
}

.bar-white {
	width: 100%;
	background: rgb(255,255,255);
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.1) 100%);
	background: -o-linear-gradient(left, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.1) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.1) 100%);
}

.section {
    width: 40%;
    margin-left: 15%;
    margin-right: 45%;
	padding: 50px 0px 50px 0px;
	clear: both;
	overflow-y: auto;
	overflow-x: hidden;
	
}

    .section:first-of-type {
        padding: 50px 0px 50px 0px;
}

.left {
    width: 75%;
    float: left;
}

.right {
    width: 20%;
    float: right;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}


audio {
	display: table;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0px 0px 0px 0px;
}

/********************

TEXT STYLES

********************/

@font-face {
  font-family: 'BAHNSCHRIFT';
  src: local('BAHNSCHRIFT'), url('BAHNSCHRIFT.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
  
}


h1 {
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FFFFFF;
	font-family: 'BAHNSCHRIFT', sans-serif;
    font-size: 36px;
	line-height: 40px;
	letter-spacing: -1px;
	font-weight: 400;
	animation: rainbow 20.0s linear;
	animation-iteration-count: infinite;
	
}

	.main-header {
		margin-top: 40px;
		margin-bottom: 30px;
		padding-bottom: 0px;
		border-bottom: none;
		font-family: 'BAHNSCHRIFT', sans-serif;
		text-transform: none;
		font-size: 36px;
		line-height: 48px;
		letter-spacing: -1px;
		font-weight: 400;
		animation: none;
		text-transform: uppercase;
	}

h2 {
	margin-bottom: 10px;
    font-size: 30px;
    font-weight: 500;
}

h3 {
	margin-bottom: 40px;
    font-size: 24px;
    font-weight: 500;
	text-align: center;
}

h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.75em;
	font-style: italic;
	margin: 0px 100px;
}

h5 {
    margin-bottom: 25px;
    padding-bottom: 2px;
    border-bottom: 1px solid #FFFFFF;
	font-family: 'BAHNSCHRIFT', sans-serif;
    font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	text-transform: uppercase;
}

p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75em;
}

a {
	color: #FFFFFF;
	text-decoration: underline;
}

	p a:hover, .more-info a:hover {
		animation: rainbow 10.0s linear;
		animation-iteration-count: infinite;
	}

sup {
	vertical-align: top;
	font-size: 0.5em;
	position: relative;
	top: -4px;
}

/********************

IMAGE STYLES

********************/

img {
    
}

.right img {
	width: 100%;
	max-width: 150px;
	max-height: 150px;
    float: right;
    margin-bottom: 30px;
    cursor: zoom-in;
}

.right img:hover {
  animation: bounce 1s infinite;
  animation-timing-function: linear;  
}

.right p {
	text-align: right;
	font-size: 12px;
	padding: 0px 0px 20px 0px;
}

.carousel p {
	text-align: left;
	font-size: 12px;
	padding: 0px 0px 20px 0px;
}

.carousel div {
	padding: 0px 5px 5px 0px;
	display: inline-block;
}

.inline-image {
	float: right;
	margin: 0px 0px 40px 40px;
}


/********************

BRAND MENU

********************/

.more-info-button {
	cursor: pointer;
	z-index: 8999;
	width: 50px;
	height: 50px;
	text-align: center;
	position: fixed;
	top: 35px;
	right: -50px;
	
	-webkit-animation-name: more-info-button;
	-webkit-animation-delay: 2s;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
			animation-name: more-info-button;
			animation-delay: 2s;
			animation-duration: 1s;
			animation-fill-mode: forwards;
}

	@-webkit-keyframes more-info-button {
		
		0% {right: -50px;}
		100% {right: 25px}
	}
	
	@keyframes more-info-button {
		
		0% {right: -50px;}
		100% {right: 25px}
	}

	.more-info-button span {
		color: #ffffff;
		font-size: 1.5em;
		font-weight: bold;
		width: 100%;
		line-height: 50px;
	}

.more-info {
	z-index: 8995;
	width: 300px;
	position: fixed;
	top: 100px;
	right: 40px;
	background: #222222;
}

.overlay {
	z-index: 8994;
	position: fixed;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .9);
}
		
		.more-info a {
			display: block;
			text-decoration: none;
			font-size: 16px;
			margin: 15px 20px 15px 20px;
			text-align: right;
		}
			
			.more-info a:hover{
			}

#watermark {
	position: fixed;
	bottom: 15px;
	right: -75px;
	
	-webkit-animation-name: watermark;
	-webkit-animation-delay: 2s;
	-webkit-animation-duration: 1.25s;
	-webkit-animation-fill-mode: forwards;
			animation-name: watermark;
			animation-delay: 2s;
			animation-duration: 1.25s;
			animation-fill-mode: forwards;
}

	@-webkit-keyframes watermark {
		
		0% {right: -50px;}
		100% {right: 40px}
	}
	
	@keyframes watermark {
		
		0% {right: -50px;}
		100% {right: 40px}
	}

#ic-logo {
	position: fixed;
	bottom: 100px;
	right: -75px;
	
	-webkit-animation-name: ic-logo;
	-webkit-animation-delay: 2s;
	-webkit-animation-duration: 1.25s;
	-webkit-animation-fill-mode: forwards;
			animation-name: ic-logo;
			animation-delay: 2s;
			animation-duration: 1.25s;
			animation-fill-mode: forwards;
}

	@-webkit-keyframes ic-logo {
		
		0% {right: -50px;}
		100% {right: 40px}
	}
	
	@keyframes ic-logo {
		
		0% {right: -50px;}
		100% {right: 40px}
	}

/********************

SCREEN AND MOBILE MENU

********************/

.menu-mobile {display: none !important}

.menu-screen{
	position: fixed;
	top: 150px;
	width: 20%;
	margin-left: 65%;
	margin-right: 20%;
	background: rgba(0,0,0, 0.6);
	box-sizing: border-box;
	padding: 20px;
	max-height: 80%;
	overflow-y: auto;
	
}

	.menu-screen::-webkit-scrollbar {
		width: 4px;
	}
	 
	.menu-screen::-webkit-scrollbar-track {
		border-radius: 2px;
		background-color:  rgba(255, 255, 255, .2);
	}
	 
	.menu-screen::-webkit-scrollbar-thumb {
		border-radius: 2px;
		background-color: rgba(255, 255, 255, .4);
	} 

.menu-screen p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.25em;
	margin-bottom: 20px;
	text-decoration: none;
}

.menu-screen a {
	text-decoration: none;
}

/******************** 

HEADER

********************/

.header{
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
	padding: 0px 0px 0px 0px;
	clear: both;
	overflow-y: auto;
	overflow-x: hidden;
	
}

#header{
	background: #ED008C;
	width:100%;
}

#ic_logo {
	height: 100px;
	margin: 25px 0px;
}


/******************** 

FOOTER

********************/

.footer {
	display: none !important;
}


/******************** 

ANIMATION 

********************/


#bm { 
	width: 100%;
	margin: 100px auto 0px auto;
}