/*--------------------------------//
//                                //
//             Footer             //
//                                //
//--------------------------------*/
footer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	flex-direction: row;            /* default value; can be omitted */
	flex-wrap: nowrap;              /* default value; can be omitted */
	justify-content: space-between; /* switched from default (flex-start, see below) */

	background-color: #FFD600;
	background-color: var(--color-secondary);
	color: #000;
	color: var(--color-secondary-text);
	box-sizing: border-box;
	padding: 1em;
	width: 100%;
}

footer img {
	height: 3em;
	width: 3em;
}

footer .company-logo {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	margin-right: 1em;
}

footer .company-name {
	vertical-align: top;
	display: inline-block;
	font-weight: 700;
}

footer .social .social-link {
	display: inline-block;
	padding: 0em 0.3em;
}

footer .social-link:hover {
	transform: scale(1.1, 1.1);
}
