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/SBogers10/bomacon.komma.pro/resources/sass/site/6-Organisms/_organisms.intro.scss
// Component settings: Intro
// ------------------------------------------

$o-intro: (
	'bgcolor':				palette(primary),
	'bgcolor-alt':			palette(primary, 700),
);

// ------------------------------------------


.o-intro {
	position: relative;
	z-index: 0;

	&.is-intro-alt {
		@include vspacing(
				'margin-bottom' 1
		);
	}
}

.o-intro__header {
	.is-intro-alt & {
		background-color: map-get($o-intro, 'bgcolor-alt');
	}
}

.o-intro__body {
	position: relative;

	@include vspacing(
		'margin-bottom' 1
	);

	@include mq(m) {
		.is-intro-alt & {
			background-color: map-get($o-intro, 'bgcolor-alt');
		}
	}
}

.o-intro__main {
	@include mq($max: m) {
		.o-intro--mobile-break-out & {
			width: 100vw;
			margin-left: 50%;
			transform: translateX(-50%);
		}
	}

	@include mq(m) {
		&::before {
			content: '';
			position: absolute;
			z-index: 0;
			top: 50%;
			right: 0;
			bottom: 0;
			left: 0;
			background-color: map-get($o-intro, 'bgcolor');
		}
	}
}