/*
 * CSS-Datei für den Footer
 */
#footer-top {
	display: flex;
	letter-spacing: 0.05em;
	clear: both; 
	width: 100%;
	padding: 0px 0px 0px 0px;
	align-items: center;
	justify-content: center;
	background-color: rgba(240, 240, 240, 1);
}

#footer-top-inside {
	display: flex;
	flex-direction: row;
	justify-content: center;
    align-items: flex-start;
	width: 1280px;
	padding: 10px 0px 10px 0px;
}

#footer-top-inside-box {
	width: 30%;
	padding: 7px 7px 7px 7px;
	margin: 1%;
}

#footer-top-inside-box p {
	font-size: 0.95em;
	line-height: 1.5;
}

#footer-top-inside-box ul {
	list-style-type: disc;
	-moz-padding-start: 0px;
	-webkit-padding-start: 0px;
    padding-inline-start: 0px;
	padding-left: 0px;
}

#footer-top-inside-box li {
	padding: 2px 2px 2px 2px;
	display: block;
    list-style: none;
	text-decoration: none;
	color: rgba(0, 0, 0, 1);	
}

#footer-top-inside-box ul li a {
	font-weight: 700;
	font-size: 0.95em;
	text-decoration: none;
	cursor: pointer;
	color: rgba(0, 0, 0, 1);
	background-color: none;
}


#footer-bottom {
	margin: auto;
    font-weight: 400;
    font-size: 0.8em;
	color: rgba(255, 255, 255, 1);
	clear: both; 
	width: 100%;
	padding: 1em;
	background-color: rgba(30, 30, 30, 1);
	align-items: center;
	justify-content: center;
}

#footer-bottom-div {
	padding-top: 0.5em;
	margin: auto;
	width: 1280px;
	height: auto;
	text-align: center;
}

/* Anpassung Responsive Navigation und kleine Displays, Handys etc. */
@media screen and (max-width: 1279px) {
	#footer-bottom-div {
		width: 100%;
	}

	#footer-top-inside {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	#footer-top-inside-box {
		width: 90%;
	}
}