#videoGallery {
	width: 100%;
	padding: 15px;
	box-sizing: border-box;
}

#videoGallery h2 {
	color: #333;
	font-family: "Lato",sans-serif;
	font-size: 24px;
	padding: 20px 0;
	text-transform: uppercase;
	text-align: center;
}

#videoGallery #video {
	width: 100%;
	font-family: "Lato",sans-serif;
	border-bottom: 1px solid #CCC;
	margin-bottom: 10px;
}

#videoGallery #video h4 {
	padding: 5px 0 10px;
}

#videoGallery #video iframe {
	width: 100%;
	height: 500px;
}

#thumbnails {
	width: 200px;
	display: inline-block;
	vertical-align: top;
	margin: 10px 13px;
	font-family: "Lato",sans-serif;
}

#thumbnails:hover {
	opacity: 0.7;
}

#thumbnails a {
	text-decoration: none;
	color: #333;
}

#thumbnails a h4 {
	font-weight: normal;
	font-size: 13px;
}

#thumbnails img {
	width: 100%;
}

@media (min-width:768px) and (max-width:991px) {
	#thumbnails {
		width: 20%;
	}
}

@media (max-width:767px) {
	#thumbnails {
		width: 27%;
	}

	#videoGallery #video iframe {
		height: 300px;
	}
}

@media (max-width:560px) {
	#thumbnails {
		width: 42%;
	}
}

@media (max-width:480px) {
	#thumbnails {
		width: 38.5%;
	}

	#videoGallery #video iframe {
		height: 250px;
	}
}


