/**
 * @author Valentin Alisch, Off Office <hallo@valentinalisch.de>
 * @version 1.0
 *
 * Rettberg Module: Footer
 */

#footer {
	--footer-height: 70px;
	/*height: var( --footer-height );*/
	margin-top: auto;
	padding-bottom: var( --spacing--small );
}

#footer .menu {
	display: flex;
}

#footer .menu .menu-item:not( :last-child ) {
	margin-right: calc( var( --spacing--tiny ) * 2 );
}



/* ------------------------ */
@media ( max-width: 899px ) {

	#footer {
		padding-bottom: calc( var( --header-height ) + var( --spacing--tiny ) * 2 );
	}
}

@media ( min-width: 900px ) {

	#footer {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}