/*--------------------------------------------------------------------------------------*\
| FOOTER
\*--------------------------------------------------------------------------------------*/
footer{
	padding-top: 0;
	overflow-x: hidden;
}

footer .footer-three{
	background-image: url(../images/grey-stripes.svg);
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: left 22% bottom 200%;
}

footer .footer-two, footer .footer-three{
	display: grid;
    grid-template-columns: repeat(5, 1fr);
	gap: var(--content-padding-m);
	row-gap: var(--content-padding-s);
	padding-top: var(--section-padding-s);
}

footer .footer-two .col1,
footer .footer-three .col1{
	grid-column: 1 / 3;
}

footer .footer-two .col2,
footer .footer-three .col2{
	grid-column: 4 / 5;
}

footer .footer-two .col3,
footer .footer-three .col3{
	grid-column: 5 / 6;
}


footer .footer-three .footer-legal{
	grid-row: 2 / 3;
	grid-column: 4 / 6;
	font-size: .8rem;
	display: flex;
    gap: 1ch;
    letter-spacing: normal;
}

footer .footer-three .footer-legal > *{
	display: inline-block;
	font: inherit;
}

footer .footer-three .footer-legal #menu-legal-menu-nl,
footer .footer-three .footer-legal #menu-legal-menu-fr{
	margin: 0;	
}

footer .footer-three .footer-legal #menu-legal-menu-nl li,
footer .footer-three .footer-legal #menu-legal-menu-fr li{
	display: inline-block;
	font: inherit;
    margin-right: 1ch;
}

footer .footer-three .footer-legal #menu-legal-menu-nl li a,
footer .footer-three .footer-legal #menu-legal-menu-fr li a{
	font: inherit;
}

footer .footer-two .col1{
	display: flex;
    justify-content: space-between;
}

footer p, footer a, footer h3{
	color: var(--color-gray);
}

footer > div.footer-two, footer .footer-three, footer > div.wp-block-columns.footer-nieuwsbrief{
	margin-bottom: 0;
}

footer .footer-two .footer-image, footer .footer-three .footer-image {
	position: relative;
}

footer .footer-two .footer-image img, footer .footer-three .footer-image img{
	position: absolute;
    width: 100%;
    bottom: calc(0px - var(--section-padding-m));
}

footer .openingsuren p:not(:first-of-type){
	margin-bottom: 0;
}

footer .footer-three .bottom{
	width: 100%;
}

footer .footer-two{
	background-color: var(--color-light-gray);
	border-top: 4px solid var(--color-blue);
    padding-bottom: 0;
}

/*--------------------------------------------------------------------------------------*\
| MEDIA QUERIES
\*--------------------------------------------------------------------------------------*/
@media screen and (min-width: 1800px){
	footer  > *{
		/*padding-left: calc( 3 * var(--section-padding-l));
		padding-right: calc( 3 * var(--section-padding-l));*/
		margin-bottom: var(--section-padding-m);
		padding-top: var(--section-padding-m);
		padding-bottom: var(--section-padding-m);
	}
}
@media screen and (max-width: 1800px){
	footer > *{
		/*padding-left: calc( 2 * var(--section-padding-l));
		padding-right: calc( 2 * var(--section-padding-l));*/
	}
}
@media screen and (max-width: 1350px){
	footer > *{
		/*padding-left: var(--section-padding-l);
		padding-right: var(--section-padding-l);*/
	}
}
@media screen and (max-width: 900px){
	footer > *{
		/*padding-left: var(--section-padding-m);
		padding-right: var(--section-padding-m);*/
	}
}
@media screen and (max-width: 768px){

}
@media screen and (max-width: 550px){
	
	footer .footer-two, footer .footer-three{
		grid-template-columns: auto;
    	grid-template-rows: auto;
	}

	footer .footer-two > *,
	footer .footer-three > *{
		grid-column: auto !important;
		grid-row: auto !important;
	}

	footer .footer-three .footer-legal{
		grid-row: auto !important;
		font-size: .7rem;
	}

	footer .footer-two .col1 picture{
		display: none;
	}

	footer h3{
		font-weight: 700;
    	margin: 1.5em 0 1em;
	}
}