@charset "utf-8";
/* CSS Document */

* {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    
    
}

html, body {
	width: 100%;
	overflow-x: hidden;
    background: #000000;
    color: #FFFFFF;
    font-family: 'Open Sans';
    background-image: url("../images/laser-bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}


@keyframes rainbow {
		100%,0%{color: rgb(255,0,0);}
		8%{color: rgb(255,127,0);}
		16%{color: rgb(255,255,0);}
		25%{color: rgb(127,255,0);}
		33%{color: rgb(0,255,0);}
		41%{color: rgb(0,255,127);}
		50%{color: rgb(0,255,255);}
		58%{color: rgb(0,127,255);}
		66%{color: rgb(0,0,255);}
		75%{color: rgb(127,0,255);}
		83%{color: rgb(255,0,255);}
		91%{color: rgb(255,0,127);}
	}

@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.8) 0%, rgba(51,51,51,0.3) 100%);
	background: -o-linear-gradient(left, rgba(51,51,51,0.8) 0%, rgba(51,51,51,0.3) 100%);
	background: linear-gradient(to right, rgba(51,51,51,0.8) 0%, rgba(51,51,51,0.3) 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.2) 100%);
	background: -o-linear-gradient(left, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.2) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.2) 100%);
}

.section {
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
	padding: 100px 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

********************/

h1 {
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FFFFFF;
    font-size: 48px;
    font-weight: 700;
	animation: rainbow 20.0s linear;
	animation-iteration-count: infinite;
}

h2 {
	margin-bottom: 10px;
    font-size: 30px;
    font-weight: 500;
}

h3 {
	margin-bottom: 40px;
    font-size: 24px;
    font-weight: 500;
	text-align: center;
}

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;
	}

/********************

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;
}


/********************

BRAND MENU

********************/

.more-info-button {
	cursor: pointer;
	z-index: 8999;
	width: 50px;
	height: 50px;
	text-align: center;
	position: fixed;
	top: 50px;
	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}
	}

/********************

SCREEN AND MOBILE MENU

********************/

.mobile-menu {display: none !important}

.dot {
    height: 16px;
    width: 16px;
    border: 2px solid #FFFFFF;
    border-radius: 30%;
    display: block;
    position: fixed;
    z-index: 8888;
	right: -40px;
	
	-webkit-animation-name: dot-bar;
	-webkit-animation-delay: 2s;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
			animation-name:  dot-bar;
			animation-delay: 2s;
			animation-duration: 1s;
			animation-fill-mode: forwards;
}

	@-webkit-keyframes dot-bar {
		
		0% {right: -50px;}
		100% {right: 40px}
	}
	
	@keyframes dot-bar {
		
		0% {right: -50px;}
		100% {right: 40px}
	}

    .dot:hover {
        background: #FFFFFF;
    }


    #dot1 {
        top: 150px;
    }

    #dot2 {
        top: 200px;
    }

    #dot3 {
        top: 250px;
    }

    #dot4 {
        top: 300px;
    }

    #dot5 {
        top: 350px;
    }

    #dot6 {
		top: 400px;
	}

.navbar-overlay {
    background: rgb(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 7886;
    display: none;
}

.bar-container {
    position: fixed;
    z-index: 7887;
    height: 290px;
    width: 40px;
    top: 140px;
    right: 30px;
	
}

.navbar {
    height: 40px;
    width: 600px;
    background: rgb(0,0,0);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(68,68,68,1) 100%);
    background: -o-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(68,68,68,1) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(68,68,68,1) 100%);
    position: fixed;
    z-index: 7888;
    right: 90px;
    
    display: none;
    
}

.navbar::after{
    content:'';
    position: absolute;
    margin-right: -20px;
    right: 0;
    top: 0;
    width: 0; 
	height: 0; 
	border-bottom: 20px solid transparent;  /* left arrow slant */
	border-top: 20px solid transparent; /* right arrow slant */
	border-left: 20px solid #444444; /* bottom, add background color here */
	font-size: 0;
	line-height: 0;
}

.navbar p {
    text-align: right;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 25px !important;
    padding-right: 20px;
}

    #navbar1 {
        top: 140px;
        color: #FF0004;
    }

    #navbar2 {
        top: 190px;
        color: #FF9600;
    }

    #navbar3 {
        top: 240px;
        color: #FFED00;
    }

    #navbar4 {
        top: 290px;
        color: #22FF00;
    }

    #navbar5 {
        top: 340px;
        color: #006CFF;
    }

    #navbar6 {
        top: 390px;
        color: #9900FF;
    }


.transcript_link {
	cursor: pointer;
	font-weight: 500;
	margin-top: 20px;
	text-align: center;
}

.transcript {
	padding: 25px;
}


/******************** 

FOOTER

********************/

.footer {
	display: none !important;
}


/******************** 

ANIMATION 

********************/


#bm { 
	width: 100%;
	margin: 100px auto 0px auto;
}