/* ==========================================================================
To top
========================================================================== */
.to-top {
	height: 60px;
	/* background-color: #2cb719;
	background-color: rgb(181 0 0); */
	background-color: var(--color-footer-bg-oben);
}

.to-top .to-top-wrap {
	height: 60px;
	width: 70px;
	/*position: absolute;
	right: 0;*/
	text-align: center;
}

.to-top .to-top-wrap a {
	/*display: block;*/
	width: 100%;
	height: 100%;
	color: rgb(255 255 255 / 80%);
	background-color: rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.to-top .to-top-wrap a:hover,
.to-top .to-top-wrap a:focus {
	background-color: rgba(0, 0, 0, 0.3);
	color: rgb(255 255 255 / 100%);
}

.to-top .to-top-wrap i {
	font-size: 30px;
	line-height: 55px;
}

.to-top .row {
	position: relative;
}


/* ==========================================================================
Footer
========================================================================== */
footer {
	/* background-color: #7a725e;
	background-color: #31cd1c;
	background-color: #820000; */
	background-color: var(--color-footer-bg-unten);
	position: relative;
}

footer p {
	color: #ACB1B4;
	color: #fff;
	color: rgb(255 255 255 / 40%);
	font-size: 13px;
}

footer a:link,
footer a:focus,
footer a:visited {
	text-decoration: none;
	color: #fff;
	color: rgb(255 255 255 / 60%);
	font-size: 13px;
	text-transform: uppercase;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

footer a:hover {
	color: #464136;
	color: rgb(255 255 255 / 100%);
}

footer ul.footer-group {
	/* border-top: solid 1px #686150; */
	padding-top: 20px;
	margin-bottom: 05px;
	padding-left: 0px;
}

footer ul.footer-group li {
	display: inline-block;
}

/* footer ul.footer-group li a {
	text-decoration: none;
	color: #fff;
	color: rgb(255 255 255 / 70%);
	font-size: 13px;
	text-transform: uppercase; 
	-webkit-transition: all 300ms ease-in-out;
			transition: all 300ms ease-in-out;
} */
/* footer ul.footer-group li a:hover {
	color: #464136; 
} */
footer ul.footer-group li {
	margin-right: 30px;
}

footer ul.footer-group li:last-child {
	margin-right: 0;
}

footer .footer-links {
	margin: 0 0 0 30px;
}

/* footer .footer-rechts {
	margin-left: 30px; 
} */
@media (max-width: 960px) {

	.to-top .uk-container,
	footer .uk-container {
		padding-right: 0px;
	}
}

@media (min-width: 800px) {
	footer .footer-links {
		margin: 80px 0 120px 0;
	}

	footer .footer-rechts {
		margin-left: 0px;
	}

	footer ul.footer-group {
		border-top: solid 1px #686150;
		border-top: solid 1px rgb(30, 101, 8);
		border-top: solid 1px rgb(255 255 255 / 20%);
		padding-top: 25px;
		margin-bottom: 45px;
		padding-left: 0px;
	}
}

footer .footer-rechts {
	background-color: #373D4A;
	background-color: rgba(0, 0, 0, 0.15);
	padding: 40px 30px;
}

.footer-rechts p {
	font-size: 1.0em;
	color: #fff;
	margin: 0.5em;
	font-weight: 100;
}

.footer-rechts a {
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

footer .logo_img_footer {
	width: 90px;
}

footer .logo h1 {
	font-size: 2.3em;
}

footer .logo h2 {
	font-size: 1.36em;
}



.pulseOlox {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.pulse2 {
	-webkit-animation-name: pulse2;
	animation-name: pulse2;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes pulse2 {
	0% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	50% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes pulse2 {
	0% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	50% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}