@import url("fonts/constantine/stylesheet.css");

html, body, .body-wrapper {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	.body-wrapper {
		text-align: center;
	}
}

a, a:hover, a:visited, a:focus {
	color:inherit;
	text-decoration: none;
}

.container {
	max-width: 1000px;
}

.body-wrapper {
	overflow: auto;
	background-image:url("../img/bg.png");
	/*background-color:rgb(70,70,70);*/
	font-family: "constantineregular", serif;
	color:#991f1f;
}

p {
	font-family: serif;
	color:#444;
}

@media screen and (max-width: 767px) {
	.container {
		padding:0;
	}
}


.header-nav {
	font-size: 12px;
	line-height: 25px;
	text-align: right;
}
.header-banner {
	text-align: center;
	margin:0;
	padding: 50px 0;

	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+50,1+100 */
	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
.header-banner h1 {
	margin:0;
	font-size: 50px;
}
.header-banner h2 {
	margin:0;
	font-size: 20px;
}
@media screen and (max-width: 767px) {
	.header-banner h1 {
		font-size: 7vw;
		font-weight: bold;
	}
	.header-banner h2 {
		font-size: 6vw;
	}
}



.ribbon {
	display: flex;
	height:110px;
	padding:5px;
	background:hsl(0,0%,90%);
	margin: 0 -15px 0 -15px;
}
.ribbon-slide {
	flex: 1;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.ribbon-slide-bg {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-position: center;
	background-size: cover;
	transition: all 0.5s ease-in-out;
		transform:scale(1.1,1.1);
}
	.ribbon-slide:hover .ribbon-slide-bg {
		transform:scale(1,1);
	}
.ribbon-slide-caption {
	position:absolute;
	left:0;
	top:100%;
	width:100%;
	height:100%;
	z-index: 10;
	transition: all 0.5s ease-in-out;
    display: table-cell;
	vertical-align: bottom;
	font-family:serif;
	font-size: 12px;

	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+50,1+100 */
	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
	.ribbon-slide:hover .ribbon-slide-caption {
		top:0;
	}

.ribbon-slide-caption-inner {
	position: absolute;
	left:0;
	bottom:0;
	width:100%;
	padding:10px;
}
.ribbon-slide-artist {
	color:#666;
	font-size: 0.8em;
}
.ribbon-slide + .ribbon-slide {
	margin-left: 5px;
}
@media screen and (max-width: 767px) {
	.ribbon {
		display: none;
	}
}

.card {
	background:#fff;
	padding:15px;
	box-shadow: 0px 0px 1px rgba(0,0,0,0.2);
	transition:transform 0.2s ease-in-out;
}
	.card:hover {
		transform:scale(1.02, 1.02);
		z-index: 10;
	}
.card-thumbnail {
	height:200px;
	background-size:cover;
}
.card-name {
	text-align: center;
	font-size: 15px;
	margin:15px 0 0 0;
}


section {
	background:#FFF;
	padding:15px 0;
}

.footer section {
	min-height: 200px;
	background:hsl(0,0%,85%);
	font-size: 12px;
	text-align: center;
}
.footer-divider {
	margin:0 10px;
	color:#999;
}
.footer-copyright {
	color:#999;
	font-family: serif;
}
@media screen and (max-width: 767px) {
	.footer section {
		min-height:100px;
	}
}