@charset "UTF-8";
/* CSS Document */

*{
	padding: 0px;
	margin: 0px;
	list-style: none;
}

html, body {
width: 100%;
height: 100%;
font-size: 14px;
font-family: 'Open Sans', sans-serif;

}

body {
background-color: #006699;
}

#main-title {
	background-color: #006699;
	font-family: 'Open Sans Condensed', 'Open Sans', sans-serif;
	font-weight: 700;
	text-align: center;
	padding: 25px 20px 25px 20px;
	color: #FFFFFF;
	font-size: 2.5em;
}

#container {
	width: 100%;
	height: 100%;
}

.exhibit {
	box-sizing: border-box;
	position: relative;
	background-color: #006699;
	width: 33.33%;
	float: left;
	overflow: hidden;
	padding-bottom: 0px;
	margin-bottom: 0px;
	
	opacity: 0.70;
		-webkit-transition: opacity .5s ease-out;
		-moz-transition: opacity .5s ease-out;
		-o-transition: opacity .5s ease-out;
		-ms-transition: opacity .5s ease-out;
		transition: opacity .5s ease-out;
}

	.exhibit:hover{
		opacity: 1.0;
			-webkit-transition: opacity .5s ease-in;
			-moz-transition: opacity .5s ease-in;
			-o-transition: opacity .5s ease-in;
			-ms-transition: opacity .5s ease-in;
			transition: opacity .5s ease-in;
	}
	
	.exhibit img{
		width: 100%;
		display: block;
	}
	
/* HOVER CODE */

.info {
	width: 100%;
	height: 60%;
	position: absolute;
	bottom: -60%; /*height of exhibit div minimum */
	background-color: rgba(0, 0, 0, .75);
	z-index: 1000;
	color: #ffffff;
	padding: 25px 50px 25px 50px;
	box-sizing: border-box;
	transition: all 0.5s ease;
	
	transform: translateY(-100px);
}

	.info h2{
		height: 100px;
		padding-bottom: 10px;
		box-sizing: border-box;
		font-family: 'Open Sans Condensed', 'Open Sans', sans-serif;
		font-weight: 700;
	}

	.info p {
		
	}

#exhibit1:hover #info1 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit2:hover #info2 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit3:hover #info3 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit4:hover #info4 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit5:hover #info5 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit6:hover #info6 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit7:hover #info7 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit8:hover #info8 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit9:hover #info9 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit10:hover #info10 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit11:hover #info11 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit12:hover #info12 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit13:hover #info13 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit14:hover #info14 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit15:hover #info15 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

#exhibit16:hover #info16 {
	transition: all 0.5s ease;
	display: block;
	bottom: 0px;
	transform: translateY(0px);
}

/********************

BRAND MENU

********************/

.more-info-button {
	cursor: pointer;
	z-index: 8999;
	width: 50px;
	height: 50px;
	text-align: center;
	position: fixed;
	top: 25px;
	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;
			color: white;
		}
			
			.more-info a:hover{
				color: white;
				text-decoration: underline;
			}

#watermark {
	position: fixed;
	bottom: 15px;
	right: -75px;
	z-index: 8993;
	
	-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}
	}

/********************

FOOTER

********************/
	
.footer {
	width: 100%;
	background-color: #222222;
	border-top: 3px solid #333333;
	box-sizing: border-box;
	display: none;
	padding: 20px 0px 20px 0px;
}

	.footer a {
		text-decoration: none;
		text-align: center;
		color: #5abfff;
		font-size: 16px;
		display: block;
		padding: 5px 0px 5px 0px;
	}

/********************

RESPONSIVE CODE

********************/

.exhibit:nth-child(even) {
	background-color: #EEEEEE;
}

@media only screen and (max-width: 1500px) {

	.exhibit {
		width: 50%;
	}

	.footer {
		display: none;
	}
}

@media only screen and (max-width: 1024px) {

	.exhibit {
		width: 100%;
	}

	.footer {
		display: inline-block;
	}

	.more-info-button {
		display: none;
	}

	#watermark {
		display: none;
	}
}