body{
	margin-bottom: 70px;
	background: #2f3238;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'Montserrat', sans-serif;
}

.welcome{
	text-align: center;
	max-width: 1110px;
	margin: 0 auto 10px;
	z-index: 5;
	color: #ffffee;
	padding: 0 10px;
}

.jumbotron, 
.footer{
	background: #B1B5BE;
}

.container-fluid{
	max-width: 1600px;
	padding: 0 5px;
}

.inline-block{
	display: inline-block;
}

/* Footer */
.footer{
	width: 100%;
}

.footer-normal{
	position: fixed;
	bottom: 0;
	padding: 10px;
}

.footer-normal{
	display: block;
}

.footer-mobile{
	padding-top: 10px;
	display: none;
	margin-top: 10px;
	position: static;
	bottom: 0;
}

@media only screen and (max-width: 767px){
	.footer-normal{
		display: none;
	}
	
	.footer-mobile{
		display: block;
	}
	
	body{
		margin-bottom: 0;
		padding-bottom: 0;
	}
}

/* Social Media Buttons */
.fa-circle{
	color: #ececec;
}

#fbcircle.hover{
	color: #3b5998;
}

#twitcircle.hover{
	color: #55acee;
}

.fa-stack:hover{
	cursor: pointer;
}

/* Back To Top Button Styling */
.btp{
	position: fixed;
	bottom: 0;
	right: 55px;
	margin: 0;
	border-radius: 5px 5px 0 0;
	font-size: 2em;
	padding-bottom: 0;
	padding-top: 4px;
	display: none;
	box-shadow: 0 0 10px #353535;
	border-color: #B0B0B0;
}

.btp:hover{
	background-color: #cfcfcf;
	cursor: pointer;
}

/* Hover Images */
.column{
	width: 33%;
	padding: 15px;
	float: left;
	margin: 0 auto;
}

figcaption{
	font-weight: 400;
	font-family: 'Raleway', Arial, sans-serif;
}

.hover-effect{
	position: relative;
	float: left;
	overflow: hidden;
	cursor: pointer;
	color: #ffffee;
	max-width: 100%;
	max-height: 100%;
	border: 4px solid #ffffee;
	background: -webkit-linear-gradient(-45deg, #34495e 0%, #cc6055 100%);
	background:    -moz-linear-gradient(-45deg, #34495e 0%, #cc6055 100%);
	background:      -o-linear-gradient(-45deg, #34495e 0%, #cc6055 100%);
	background:         linear-gradient(-45deg, #34495e 0%, #cc6055 100%);
}

.appImg{
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
	opacity: 0.9;
	-webkit-transition: all 0.5s ease-in-out;
	   -moz-transition: all 0.5s ease-in-out;
	     -o-transition: all 0.5s ease-in-out;
	        transition: all 0.5s ease-in-out;
}

figcaption,
figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.appTitle, 
.appInfo{
	position: absolute;
	margin: 20px;
	float: left;
	display: none;
	-webkit-transition: display 0.35s ease-in-out;
	   -moz-transition: display 0.35s ease-in-out;
	     -o-transition: display 0.35s ease-in-out;
	        transition: display 0.35s ease-in-out;
}

.appTitle{
	top: 0;
	left: 0;
	text-align: left;
	padding: 10px;
}

.appInfo{
	border: 4px solid #ffffee;
	bottom: 0;
	left: 0;
	text-align: center;
	padding: 25px;
	font-size: 160%;
}

figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	opacity: 0;
}

.hover-effect:hover .appImg{
	-webkit-transform: scale3d(1.5,1.5,1);
	   -moz-transform: scale3d(1.5,1.5,1);
	    -ms-transform: scale3d(1.5,1.5,1);
	     -o-transform: scale3d(1.5,1.5,1);
	        transform: scale3d(1.5,1.5,1);
	opacity: 0.5;
}

.hover-effect:hover .appTitle, .hover-effect:hover .appInfo{
	display: block;
}

/* Media Queries */
@media only screen and (max-width: 970px) { 
	.column{
		width: 50%;
	}
}

@media only screen and (max-width: 650px) { 
	.column{
		width: 100%;
		max-width: 500px;
		float: none;
		margin: 0 auto;
	}
}

@media screen and (max-width: 50em) {
	.hover-effect{
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 100%;
	}
}