.footer {
	height: 300px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
	z-index: 5;
	border-top: 2px solid grey;
}

.footer .footer-phone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer img {
	max-height: 100px;
}

.footer div:not(:last-child) {
	border-right: 1px solid #f49da2;
}

.footer .footer-address {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: rgb(90, 90, 90);
	font-weight: 700;
	min-height: 104px;
}

.footer .footer-address p:first-child {
	font-size: 24px;
	margin: 10px 0;
}

.footer .footer-address p {
	margin: 2px 0px 5px 0;
	font-size: 18px;
}

.footer .footer-phone p:first-child {
	color: rgb(90, 90, 90);
	font-weight: 700;
	font-size: 18px;
}

.footer .footer-phone a {
	color: rgb(90, 90, 90);
}

.footer .footer-phone a[data-ajax=legal-notice] {
	font-weight: 700;
	color: #50A2A7;
	font-size: 24px;
}

@media only screen and (max-width: 992px) {
	.footer {
		flex-direction: column;
		border-top: none;
		height: 360px;
	}
	
	.footer .footer-logo {
		margin: 0;
	}
	
	.footer .footer-phone {
		margin: 0;
	}
	
	.footer img {
		max-height: 100px;
	}
	
	.footer div:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid #f49da2;
		padding-right: 0;
		padding: 20px 0;
		margin: 0;
	}
	
	.footer .footer-address {
		padding-bottom: 2vh;
	}
	.footer .footer-address p:first-child {
		margin: 0.5vh 0vw;
	}
	.footer .footer-address p{
		margin: 0;
	}
}