* {
	box-sizing: border-box;
}

*:before,
*:after {
	box-sizing: border-box;
}
html,
body {
	height: 100%;
	position: relative;
}
#content {
	min-height: 100vh; /* will cover the 100% of viewport */
	overflow: hidden;
	display: block;
	position: relative;
	padding-bottom: 168px; /* height of your footer */
}
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
}

body {
	line-height: 1.5;
	color: rgb(85, 85, 85);
	font-family: Lato, sans-serif;
}

.bg-dark {
	background-color: rgba(0,0,0,0.2);
}

#page-title {
	position: relative;
	background-color: rgb(245, 245, 245);
	padding: 60px 0px;
	border-bottom: 1px solid rgb(238, 238, 238);
	color: #003366;
}

#page-title h1 {
	font-family: Lato;
	font-weight: 600;
	font-size: 28px;
	line-height: 40px;
	letter-spacing: 1px;
}

#page-title.page-title-pattern {
	background-color: #F5F5F5;
	background-attachment: fixed;
	background-repeat: repeat;
}

#mobile-logo {
	display: none;
}

@media (max-width: 768px) {
	#mobile-logo {
		display: block;
	}
	#desktop-logo {
	display: none;
}
}
