body {
	margin: 0;
	padding: 0;
	font-family: 'Courier New', 'Courier New2', 'Calibri', 'Arial';
}

.container {
	display: block;
	width: 100%;
	text-align: center;
}

.logo {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}
.logo img {
	width: 100%;
}
.logo .slogan {
	font-size: 18pt;
	color: #cccccc;
	font-weight: 600;
}

.contact-info {
	margin-top: 25px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.contact-info .contact {
	margin: 0 10px;
}
.contact-info .contact a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background-color: #039fc3;
	color: #000;
	border-radius: 5px;
	border: 2px solid #039fc3;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.contact-info .contact a:hover{
	background-color: #fff;
	border-color: #000;
	color: #039fc3;
}
.contact-info .contact a .fa {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 15pt;
}
