.collectionBanner {
	background-repeat: no-repeat;
	background-position: center top;
	min-height: 150px;
	position: relative;
	-webkit-box-shadow: inset 0px 5px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 0px 5px 15px 0px rgba(0,0,0,0.75);
	box-shadow: inset 0px 5px 15px 0px rgba(0,0,0,0.75);
}
.discoverCollection {
	padding-top: 100px;
	text-align: center;
}
.collectionBanner .discoverCollection {
	display: none;
}
.collectionBanner:hover .discoverCollection {
	display: block;
}
.discoverCollection span {
	border: 1px solid white;
	color: white;
	cursor: pointer;
	font-size: 13px;
	letter-spacing: 0.25em;
	padding: 10px 15px;
	text-transform: uppercase;
}
.collectionDescriptionContainer {
	background-color: white;
	color: black;
	display: none;
	padding: 15px 0px;
	position: relative;
	text-align: center;
	margin-bottom: 30px;
}
.collectionDescriptionContainer:after {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #FFF;
	border-width: 10px;
	margin-left: -10px;
}
.collectionBanner.expanded .collectionDescriptionContainer {
	display: block;
}
.collectionDescriptionContainer h3 {
	text-transform: uppercase;
}
.collectionDescriptionContainer p {
	font-size: 13px;
	line-height: 20px;
	padding: 0px 15px;
	margin: 25px 0px;
}
.collectionDescriptionContainer button {
	font-style: normal;
	font-size: 14px;
	letter-spacing: 0.15em;
	padding: 7px 45px;
	text-transform: uppercase;
}

@media (min-width: 500px) {
	.collectionDescriptionContainer p {
		font-size: 15px;
		line-height: 30px;
		padding: 0px;
	}
}

@media (min-width: 600px) {
	.collectionDescriptionContainer:after {
		border-width: 30px;
		margin-left: -30px;
	}
}

@media (min-width: 768px) {
	.collectionBanner {
		min-height: 200px;
	}
	.discoverCollection {
		padding-top: 140px;
	}
}