@charset "UTF-8";
/* CSS Document */

.footer-background {
	background: var(--act-primary);
}

.footer{
	grid-template-columns: 1fr 0.5fr;
	gap: 50px;
	padding: 50px;
}

.footer .menus {
	grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
	align-items: start;
	align-self: center;
}

.footer .bedrijf {
	padding: 10px 0 10px 40px;
	border-left: 3px solid var(--act-alt);
	color: var(--white);
	text-align: right;
}

.footer .bedrijf grid {
	gap: 20px;
}

.footer .bedrijf p {
	font-size: 18px;
}

.footer .bedrijf a {
	font-size: 18px;
	color: var(--white);
}

.footer .bedrijf a:hover {
	color: var(--act-alt);
}

.footer .bedrijf h4 {
	font-size: 22px;
	font-weight: 600;
}

.footer .menu {
	align-items: start;
}

.footer .menu h4 {
	margin: 0 0 20px 0;
	color: var(--white);
}

.footer .menu ul {
	list-style: none;
	margin: 10px 0;
	padding: 0;
}

.footer .menu ul a {
	color: var(--white);
}

.footer .menu ul a:hover {
	color: var(--act-alt);
}

@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
	.footer .content .menus {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 768px) {
	.footer {
		grid-template-columns: 1fr;
	}
	
	.footer .menus {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.footer .bedrijf {
		margin: 0;
		padding: 20px 0;
		border-left: none;
		border-top: 1px solid var(--act-primary);
		color: var(--white);
		text-align: center;
	}
}