@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');

.footer-distributed {
	background-color: #1A1919;
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 55px 50px;
	margin-top: 80px;
}

.footer-distributed .header-limiter {
	max-width: 1000px;
	text-align: left;
	margin: 0 auto;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
	width: 50%;
}

/* Screenworks logo */

.footer-distributed h3 {
	margin: 0;
}

/* Footer links */

.footer-distributed .footer-links {
	color:  #ffffff;
	margin: 20px 0 12px;
	padding: 0;
}

.footer-distributed .footer-links a {
	display: inline-block;
	line-height: 1.8;
	text-decoration: none;
	color:  inherit;
}

.footer-distributed .footer-links a:hover {
	color:  #f87211;
}

.footer-distributed .footer-company-name {
	color:  #8f9296;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
	width: 40%;
}

.footer-distributed .footer-center i {
	background-color:  #1A1919;
	color: #ffffff;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p {
	display: inline-block;
	color: #ffffff;
	vertical-align: middle;
	margin:0;
}

.footer-distributed .footer-center p span {
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a {
	color:  #ffffff;
	text-decoration: none;;
}

.footer-distributed .footer-center p a:hover {
	color:  #f87211;
}

/* Footer Right */

.footer-distributed .footer-right {
	width: 10%;
}

/* Responsive Styling */

@media (max-width: 880px) {

	.footer-distributed {
		font: bold 14px sans-serif;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right {
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-distributed .footer-center i { 
		margin-left: 0;
		display: none;
	}
	
	.footer-distributed .footer-center p {
		padding-bottom: 20px;
	}
}

/* To fix the footer to the bottom in this file. Possibly remove in the live site. */

/*footer {
	position: fixed;
	bottom: 0;
}

@media (max-height:800px) {
	footer { position: static; }
}*/

/* The footer will look funny if the margin and padding on the body is not set to 0. Possibly need to align this properly with the live site styling*/

*{
	padding:0;
	margin:0;
}