HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/Neopoints/momsecurity.be/resources/sass/6-Organisms/_organisms.footer.scss
$o-footer-bp1: 1080;


.o-footer {
	@include z(z-footer);
	//min-height: 835px;

	background: $blueGradient;
	color: palette(text, 400);
}


.o-footer__main {
	@include contain;
	@include vspacing(
		'padding-top' 0.25,
		'padding-bottom' 1
	);
}


.o-footer__brand {
	display: inline-block;
	transition: opacity 200ms linear;

	&:hover {
		opacity: 0.5;
	}
}


.o-footer__columns {
	@include vspacing(
		'margin-top' 0.5
	);
	@include mq($o-footer-bp1) {
		display: flex;
	}
}


.o-footer__logo {
	width: 160px;
	max-height: 60px;

	@include mq(700) {
		width: 220px;
		max-height: 80px;
	}
}


// Left column
.o-footer__info {
	@include owl-children(space(4));

	@include mq($o-footer-bp1) {
		width: column(4);
	}
}

.o-footer__contact {
	padding-left: 72px;

	@include mq(700) {
		padding-left: 100px;
	}
}

// Right column
.o-footer__nav {

	@include mq($max: 640) {
		> * {
			margin-top: 40px;
		}
	}

	@include mq(640, $o-footer-bp1) {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;


		> * {
			margin-top: 40px;
			width: calc((100% - 40px) / 2);
		}
	}

	@include mq($max: 700) {
		padding-left: 72px;
	}

	@include mq(700, $o-footer-bp1) {
		padding-left: 100px;
	}

	@include mq($o-footer-bp1) {
		display: flex;
		margin-left: column(1);
		width: column(7);
	}
}


.o-footer__list {
	list-style: none;
	margin-left: 0;

	@include mq($o-footer-bp1) {
		width: column(3, 7);

		// All subsequent lists need spacing
		&:nth-child(n+2){
			margin-left: column(1, 7);
		}
	}
}

.o-footer__item--heading {
	color: white;
	margin-bottom: 40px;
	@include font-size(20, 24);
}

.o-footer__heading-link {
	text-decoration: none;
}

.o-footer__link {
	display: inline-block;
	position: relative;
	z-index: 0;
	text-decoration: none;
	line-height: 2.25;
	cursor: pointer;
	transition: color 250ms;

	&:hover {
		color: palette(secondary, 500);
	}

	&:focus {
		outline-color: palette(feedback, focus);
	}
}


.o-footer__social {
	display: flex;
	list-style: none;
	margin: space(4) 0 0;
}


.o-footer__channel {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	margin-right: space(2);
}


.o-footer__icon {
	flex: auto;
	display: block;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transition-property: opacity;
	transition-duration: 300ms;

	.facebook & {
		background-image: url("/img/social/facebook.svg");
		height: 21px;
	}
	.instagram & {
		background-image: url("/img/social/instagram.svg");
	}
	.twitter & {
		background-image: url("/img/social/twitter.svg");
		height: 20px;
	}
	.linkedin & {
		background-image: url("/img/social/linkedin.svg");
		height: 18px;
	}

	&:hover {
		opacity: 0.5;
	}

	&:focus {
		outline-color: palette(feedback, focus);
	}
}