
/*--------------------------------------------------*/
/*	OVERRIDE
/*--------------------------------------------------*/

#webpage {
	padding-bottom: 100px;
}

footer .copyright,
footer .socials {
	display: inline-flex;
    justify-content: center;

    width: 100%;
}

/*--------------------------------------------------*/
/*	GENERAL
/*--------------------------------------------------*/

footer {
	position: absolute;
	left: 0;
	bottom: 0;

	width: 100%;
	height: 100px;

	background: #191A1E;
	color: #FFFFFF;
}

/*--------------------------------------------------*/
/*	COPYRIGHT
/*--------------------------------------------------*/

footer ul.copyright {
	line-height: 32px;
	text-align: center;
	font-weight: bold;
}

footer ul.copyright li {
	display: inline-flex;
	padding: 0 10px;
}

/*--------------------------------------------------*/
/*	SOCIALS
/*--------------------------------------------------*/

footer .socials {

}

/*--------------------------------------------------*/
/*	RESPONSIVE
/*--------------------------------------------------*/

/* Desktop */
/* 950px width + 220px header width + 30px padding */
@media screen and (min-width: 1200px) {
	footer {
		padding: 15px calc(50% - 470px) !important;
	}

	footer > * {
		width: 50%;
	}
}

/* Mobile */
/* 950px width + 220px header width + 30px padding */
@media screen and (max-width: 1200px) {
	footer {
		padding: 15px;
		width: 100%;
	}
}
