@keyframes loaderAnim {
	0% {
		box-shadow: 20px 0 0 var(--color-text), -20px 0 0 transparent;
		background: transparent;
	}
	50% {
		box-shadow: 20px 0 0 transparent, -20px 0 0 transparent;
		background: var(--color-text);
	}
	100% {
		box-shadow: 20px 0 0 transparent, -20px 0 0 var(--color-text);
		background: transparent;
	}
}


.contenteg {
	position: relative;
	display: grid;
	justify-content: center;
	align-content: center;
	height: calc(100vh - 140px);
	overflow: hidden;
	min-height: 650px;
	margin: 0 auto;
}

.content--fixed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: none;
	z-index: 100;
	align-content: space-between;
	pointer-events: none;
	padding: 1.5em;
	grid-template-columns: 50% 50%;
	grid-template-rows: auto auto 4em;
	grid-template-areas: 	"header tagline"
							"deco tagline"
							"deco demos";
}

.content--layout {
	grid-template-columns: 100%;
	padding: 0;
}

.content--fixed a {
	pointer-events: auto;
}

.word {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0;
	cursor: default;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.word--moveout {
    font-size: 50px;
    font-family: Play;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    background: rgba(0,0,0,.8);
    width: 100%;
height: 50px !important;
    margin: 0 auto;
}

.word--moveout > span {
	display: block;
	cursor: default;
	position: relative;
	cursor: pointer;
}

.word--moveout span span {
	display: block;
	pointer-events: none;
}

.word--moveout svg {
	position: absolute;
	left: 50%;
    margin-left: -2.5vw;
    width: 5vw;
	top: 100%;
}

.word--moveout svg rect {
	fill: currentColor;
	opacity: 0;
	transform-origin: 50% 50%;
}

@media screen and (min-device-width: 1024px) 
	{
		.word--moveout {
			font-size: 3em;
		}
	}

@media screen and (min-device-width: 1280px) 
	{
		.word--moveout {
			font-size: 3em;
		}
	}

@media screen and (min-device-width: 1366px) 
	{
		.word--moveout {
			font-size: 3em;
		}
	}

@media screen and (min-device-width: 1920px) 
	{
		.word--moveout {
			font-size: 4em;
		}
	}