footer{
	width: 100%;
	height: max-content;
	display: flex;
	justify-content: center;
	z-index: 2;
	background-color: var(--ac-d);
	position: relative;
}

.footer-holder{
	justify-content: space-between;
	padding: var(--page-padding);
	margin: 50px 0 82px;
}

.footer-logo{
	width: 50px;
	height: max-content;
	position: absolute;
	bottom: 1em;
	right: 1em;
}
.footer-logo img{
	width: 100%;
	height: auto;
}

.footer-links,
.kontakt-info{
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.footer-links a{
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--se);
	text-decoration: underline;
	transition: color .2s;
}
.footer-links a:hover{
	color: var(--ac-l);
}

.kontakt-info p,
.kontakt-info span{
	font-size: 1.1rem;
	color: var(--se);
}
.kontakt-info span{
	font-weight: 700;
}

@media(max-width: 600px){
	.footer-holder{
		flex-direction: column;
		align-items: flex-start;
	}
}