
/* Footer Styling */

.footer {
	
	width: 100%;
	padding: 20px;
	background: linear-gradient(#08247a,#041549);
	margin-top: 40px;
	box-sizing: border-box;

	
}

.footer li {

	margin-top: 10px;
	
}


.footerInner {

	max-width: 1200px;
	display: flex;
	display: -webkit-flex;
	flex-direction: row;
	-webkit-flex-direction: row;
	margin: auto;
	
}

.copyright {
	
	color: #ffffff;
	margin: 40px 0;
	padding: 20px;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	font-size: 14pt;
	
}

.footerItem {

	width: 25%;
	margin: 20px;
	color: white;
	
}

.footerHeader {
	
	font-size: 	20px;
	font-weight: bold;
	color: #c3cce7;
	margin-bottom: 10px;
	
}

.footer i {
	border: none;
}


ul.footer {

	color: white;
	list-style: none;
	margin: 0;
	padding: 0;
	background: none;
	
}

.footerItem {

	width: 25%;
	margin: 20px;
	color: white;
	
}

.companyInfo {
	
	font-size: 0.8em;
	margin-top: 20px;
	line-height: 2.2em;
	color: white;
	
}

.fa-facebook, .fa-instagram, .fa-pinterest {
	
	font-size: 40px;
	color: white;
	margin: 10px;
}

a.footerLink:link, a.footerLink:visited, a.footerLink:active {
	
	text-decoration: none;
	font-weight: bold;
	color: white;
	
}

a.footerLink:hover {
	
	color: #579aff;
	
}





/* ###################################################################### */
/* Media queries */
/* ###################################################################### */






@media only screen and (max-width: 600px) {
	

	
	.footer {
		
		margin-top: 0;
		
	}


	.footerItem {
		width: 100%;
		margin: 20px 0;
	}

	.footerInner {
		
		flex-direction: column;
		-webkit-flex-direction: column;
		
	}

	
}




