:root {
	/* Colors */
	--white: #fff;
	--bright-base: #ccc;
	--dark-base: #3d3d3d;
	--gray: #777;
	/* Retired, kept for reference: #D3D5CB, #575756, #EC612A */

	/* Fonts */
	--base-font-size: 14px;
	--body-font: 'Mate', serif;
	--main-headline-font: 'Six Caps', sans-serif;
	--sub-headline-font: 'Teko', sans-serif;
	--highlight-font: 'Six Caps', sans-serif;
	--sans-serif-font: 'Lato', sans-serif;
}

/* Breakpoints are inlined as literals throughout this file, because custom
   properties cannot be used in media query conditions:
     superwidescreen 2860px | widescreen 1500px | desktop 1280px
     tablet 700px | mobile 540px */

.skiss {
	background-color: #000;
	width: 100%;
}

.test {
	/* background-color: rgba(255,255,255,0.1) */
}





/*

LOOPING IMAGES ON HOVER 

h1,
p {
  text-align: center;
}

.outer {
  display:block;
  width: 25%;
  height: auto;
  margin: 20px auto;
  border: 1px solid #000;
  overflow:hidden;
 position:relative;
}

.inner {
  width: 800px;
  height: 200px;
  cursor:pointer;
  display:block;
  background: url(http://localhost:8888/txtpilot/imgs/photography/sports/upsidedown.jpg) 0 0, url(http://localhost:8888/txtpilot/imgs/photography/people/barber.jpg) 200px 0, url(http://localhost:8888/txtpilot/imgs/photography/fyr/miljo/DSC06890.jpg) 400px 0, url(http://localhost:8888/txtpilot/imgs/photography/food/diagonal.jpg) 600px 0;
  background-repeat: no-repeat;
  background-size: 300px 200px;
}
.outer:hover .inner,.outer:focus .inner{
animation:swap 4s linear infinite;  
}
.outer:focus{
  border:2px solid red;
}
@keyframes swap{
  0%{transform:translateX(-200px)}
  24.999%{transform:translateX(-200px)}
  25%{transform:translateX(-400px)}
  49.999%{transform:translateX(-400px)}
  50%{transform:translateX(-600px)}
  74.999%{transform:translateX(-600px)}
  75%{transform:translateX(0)}
  99.999%{transform:translateX(0)}
}

*/

/* FROM NOFONT FRAMEWORK */

.u-flex {
	display: flex;
  }

.u-flexItem {
	display:block;
	/* margin: 0 3% 3% 0; */
}

.u-flexRowReverse {
	flex-direction: row-reverse !important;
}

.u-flexRow { flex-flow: row wrap; }
.u-flexColumn { flex-flow: column wrap; }
.u-flexCenter { justify-content: center; margin: 0 auto;}
.u-flexLeft { justify-content: left; }

.u-flexColToRow {
	flex-direction: column !important;
	
	@media (min-width: 540px ) {
		flex-direction: row !important;
	}
}

.u-flexColToRowReverse {
	flex-direction: column-reverse !important;
	
	@media (min-width: 540px ) {
		flex-direction: row-reverse !important;
	}
}

.u-flexRowToCol {
	flex-direction: row;
	@media (min-width: 540px ) {
		  flex-direction: column;
	  }
}
.u-flexRowToColReverse {
	flex-direction: row-reverse;
	@media (min-width: 540px ) {
		  flex-direction: column-reverse;
	  }
}

.u-flexRowToCol {
	flex-direction: row;
	@media (min-width: 540px ) {
		  flex-direction: column;
	  }
}
.u-flexRowToColReverse {
	flex-direction: row-reverse;
	@media (min-width: 540px ) {
		  flex-direction: column-reverse;
	  }
}

.u-flexRight { justify-content: right; }
.u-flexEven { justify-content: space-evenly; }
.u-flexVertCenter {
	align-content: center; 
	&> * {
		margin: auto;
		height: fit-content;
		/* background-color: green; */
	}
}
.u-flexAlignBottom { align-items: end; }
.u-flexAlignCenter { align-items: center; }
.u-flexWrap { flex-wrap: wrap; }
.u-flexNoWrap { flex-wrap: nowrap; }
.u-last { margin-right: 0 !important; }
.u-center { text-align: center; }
.u-cover { img { object-fit: cover; } }
.u-contain { img { object-fit: contain; } }
.u-centered { margin: 0 auto !important; }
.u-border { border: 1px solid rgba(0,0,0,0.1)}
.u-alignRight { text-align: right; }
.u-noOverflow { overflow: hidden; }
.u-mobile {
	display: none;
	@media (min-width: 540px ) {
		  display: inline-block;
	}
}
.u-fullscreen {
	width: 100%;
	margin: 0;

	@media (min-width: 540px ) {
		max-width: 115%;
		margin: 0 -7.5%;
	  }

	@media (min-width: 700px ) {
		max-width: 130%;
		margin: 0 -15%;
	  }
}
.u-widescreen {
	max-width: 100%;
	margin-left: 0;

	@media (min-width: 540px ) {
		max-width: 120%;
		margin: 0 -10%;
	  }

	@media (min-width: 700px ) {
		max-width: 140%;
		margin: 0 -20%;
	  }
}
.u-superwidescreen {
	max-width: 100%;
	margin-left: 0;

	@media (min-width: 540px ) {
		max-width: 140%;
		margin: 0 0 0 -70%;
	  }

	@media (min-width: 700px ) {
		max-width: 180%;
		margin: 0 0 0 -90%;
	  }
}

.u-mobileHide {
	display: none;
	@media (min-width: 540px ) {
		  display: inline-block;
	  }
}

.u-desktopHide {
	display: inline-block;
	@media (min-width: 540px ) {
		  display: none;
	  }
}

.u-sticky {
	position: sticky;
}

.u-flexGap-3 {
	gap: 3%;
}

.u-flexGap-5 {
	gap: 5%;
}

.u-flexGap-10 {
	gap: 10%;
}

/********************************************
	UTILITY CLASSES CUTOM FOR NOFONT.STUDIO
*********************************************/

.u-thumbnail {
	position: relative;
}

.u-border {
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.u-borderBottom {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.u-thumbnail:hover > .thumbnail {
	visibility: hidden;
}

/* .u-flexRow { flex-flow: row wrap; } */
/* .u-flexColumn { flex-flow: column wrap; } */
/* .u-flexAlignCenter { align-items: center; } */
.u-flexFlipDirection { flex-flow: column;  flex-direction: column !important;}
.u-flexDirectionColumn { flex-direction: column !important; }
.u-flexDirectionRow { flex-direction: row !important; }
.u-flexDirectionColumnToRow { flex-direction: column !important; }
/* .u-center { text-align: center; } */
.box.u-sizeFull.u-breakContainer {
	
	@media (max-width: 900px) {
		width: 130% !important;
		margin-left: -15% !important;
		margin-right: -15% !important;
		margin-bottom: 6% !important;
	}
}



body .container .u-last { margin-right: 0 !important; }

.u-column-image {
	margin-bottom: 10%;
}
.u-noMargTop {
	margin-top: 0;
}

.u-centerBox {
	margin: 0 auto !important;
}

.u-me {
	
	blockquote {
	margin-top: 30px;
	text-align: left;
	}
	
	img {
		width: 85%;
	}
}


.u-half {
	width: 50%;
	margin: 0 auto;
}

/*
.u-topGap { margin-top: 1.25rem; }
.u-bottomGap { margin-bottom: 1.25rem; }
*/

/* GLOBAL Flex-Gap value for grid spacing */
.u-sizeFull,
.u-size1of2,

.u-size1of3,
.u-size2of3,

.u-size1of4,
.u-size2of4,
.u-size3of4,

.u-size1of5,
.u-size2of5,
.u-size3of5,
.u-size4of5,

.u-size-md-1of2,

.u-size-md-1of3,
.u-size-md-2of3,

.u-size-md-1of4,
.u-size-md-3of4,

.u-size-md-1of5,

.u-size-xl-2of3,
.u-size-xl-1of2,
.u-size-xl-1of3,
.u-size-xl-1of4,
.u-size-xl-1of5 {
	gap: 1.25rem; /* Introducing gap based spacing. */
}

/***************************
********* NARROW ***********
****************************/

.u-sizeFull { width: 100%; }
.u-size1of2 { width: 50%; }

.u-size1of3 { width: 33%; }
.u-size2of3 { width: 66.666% }

.u-size1of4 { width: 25%; }
.u-size2of4 { width: 50%; }
.u-size3of4 { width: 75%; }

.u-size1of5 { width: 20%; }
.u-size2of5 { width: 40%; }
.u-size3of5 { width: 60%; }
.u-size4of5 { width: 80%; }


/***************************
********* MEDIUM ***********
****************************/

@media (min-width: 540px) {
	.u-size-md-Full { width: 100% !important; }
	.u-size-md-1of2 { width: 50% !important; }
	
	.u-size-md-1of3 { width: 33.333% !important; }
	.u-size-md-2of3 { width: 66.666% !important; }
		
	.u-size-md-1of4 { width: 25% !important; }
	.u-size-md-3of4 { width: 75% !important; }
		
	.u-size-md-1of5 { width: 20% !important; }
	.u-size-md-2of5 { width: 40% !important; }
	.u-size-md-3of5 { width: 60% !important; }
	.u-size-md-4of5 { width: 80% !important; }
	
	
	.u-flexFlipDirection { flex-flow: row; flex-direction: row !important; }
	
	blockquote {
		width: 70%;
		text-align: center;
		margin: 0 auto;
	}
	
	h2 + .preamble {
		width: 70%;
	}
	
	nav {
		a {
			/* margin-right: 30px; */
			opacity: 0.7;
		}
	}

}

/***************************
*********** WIDE ***********
****************************/

@media (min-width: 1280px) {
	.u-size-xl-Full { width: 100% !important; }
	.u-size-xl-2of3 { width: 66.6666% !important; }
	.u-size-xl-1of2 { width: 50% !important; }
	.u-size-xl-1of3 { width: 33.3333% !important; }
	.u-size-xl-1of4 { width: 25% !important; }
	.u-size-xl-3of4 { width: 75% !important; }
	.u-size-xl-1of5 { width: 20% !important; }
	
	.u-size-xl-2of3, .u-size-xl-1of2, .u-size-xl-1of3, .u-size-xl-1of4, .u-size-xl-1of5  {
		/* margin: 0 3% 3% 0 !important; MOVED TO GLOBAL Flex-Gap value */
	}
	
	.u-flexFlipDirection { flex-flow: row; flex-direction: row !important; }
	
	nav {
		a {
			/* margin-right: 30px; */
			opacity: 0.7;
		}
	}

}

/***************************
******* SUPER WIDE ***********
****************************/

@media (min-width: 1300px) {
	
	blockquote {
		width: 110%;
		margin-left: -5%;
	}
	
	.video-description, .video-placeholder {
		padding: 12% 5% 5% 5%;
	}


	.u-sizeFull, .u-size-md-Full, .u-size-xl-Full {
		/* margin: 0 3% 3% 0 !important; MOVED TO GLOBAL Flex-Gap value */
	}
	
	.u-size2of3, .u-size1of2, .u-size1of3, .u-size1of4, .u-size1of5 {
		/* margin: 0 3% 3% 0 !important; MOVED TO GLOBAL Flex-Gap value */
	}
	
	.u-size1of2 + .u-size1of2 {
		margin: 0 0 3% 0;
	}
	
	.u-last { margin: 0 0 3% 0 !important; }
	.u-center { 
		margin: 0 auto 0 auto !important; 
	}
	.u-left { text-align: left; }
	.u-right { text-align: right; }
	.u-flexWrap { flex-flow: wrap; }
	
	
	.box {
		min-height: 10px;
		display: flex;
		position: relative;
		/* background-color: #333; */
		/* border: 1px solid #333; */
		flex-direction: column;
		/* border-bottom: 1px solid #000; */
		
		.content-wrapper {
			width: 90%;
			margin-bottom: 6%;
			
			strong {
				display: block;
				margin: 15px 0 5px 0;
			}
			
			ul {
				margin: 20px 0;
			}
		
		}
	}

}


/************************************
		END UTILITY CLASSES
*************************************/



body {
	background-color: var(--dark-base);
	text-align: left;
	font-family: sans-serif;
	font-size: var(--base-font-size);
	line-height: 1.6;
	color: var(--bright-base);
	font-family: var(--body-font);
	max-width: 1440px;
	margin: 90px auto 0 auto;
}

@media (min-width: 2860px)  {
	body {
		max-width: 2280px;
		/* border: 1px solid red; */
	}
}

.case {
	p:not(.preamble) + p {
	text-indent: 1.5em; /* indent subsequent paragraphs */
	}
}

body {
	
	&.mjbk {
		/* background-color: #d4acad; */
		background-color: #b0d4c3;
		color: #2c7086;
		
		.site-head {
			nav {
				border-top: 1px solid rgba(0,0,0,0.1);
				border-bottom: 1px solid rgba(0,0,0,0.1);
			}
		}
		
		h1 {
			color: beige;
		}
		
		.preamble {
			color: #2c7086;
		}
	}
	
	&.jord {
		background-color: #272d27;
		
		.preamble {
			color: rgb(132, 152, 97);
		}
	}
	
	&.skistar {
		background-color: #232018;
		
		.preamble {
			color: rgb(132, 152, 97);
		}
		
	}

	&.ssdf {
		background-color: #23343d;
		
		.preamble {
		color: rgb(74, 169, 208);
		}
	}
	
	&.cb {
		background-color: #242118;
		
		.preamble {
		color: rgb(205, 91, 194);
		}
	}
	
	&.ryde {
		background-color: #202227; /* Dark gray */
		/* background-color: #1f2a33; // Blue */
	}
	
	.animations {
		/* background-color: #09212b; */
		background-color: #111;
		
		.preamble {
			color: rgb(151, 151, 151);
		}
	}
	
	&.case {
		.case-intro {
			
			p {
				width: 100%;
			}
			h3 + .preamble {
				margin: 30px 0 30px 0;
				display: block;
			}
			
			@media (min-width: 540px) {
				margin-bottom: 5%;
				
				p {
					width: 90%;
				}
			}
			
		}
	}

}

img {
	width: 100%;
	height: auto;
}







/************************************
	   FEATURED WORK
*************************************/

.hero-video {
	padding: 56.25% 0 0 0;
	position: relative;
	margin-bottom: 80px;
	
	@media (max-width: 540px) {
		&.featured-work {
			padding: 100% 0 0 0;
		}

		&.u-sizeReels {
			padding: 150% 0 0 0 !important;
		}
	}
}

.index {
	.hero-video {
		width: 100%;
		margin: 0 auto;
		
		iframe {
			z-index: 2;
		}
		
		.video-placeholder {
			padding-top: 18%;
			text-align: center;
			align-items: center;
			width: 84%;
			margin: 0 auto;
			
			@media (min-width: 540px) {
				width: 100%;
				top: 2.3%;
			}
		}
	}
}

.highlightHeadline {
	color: var(--white);
	font-size: 2.5rem;
	font-family: var(--highlight-font);
	position: absolute;
	/* font-style: italic; */
	/* transform: rotate(-8deg); */
	transform: rotate(-6deg) skew(-6deg, -5deg);
	padding: 4px 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	background-color: #000;
	margin-left: -5%;
	border-radius: 4px;
	
	&.ryde {
		background-color: rgb(255, 63, 0);
	}
	
	&.skistar {
	  background-color: rgb(25, 133, 142);
	}
	
	&.jagargille {
		background-color: #0D2530;
	}
	
	@media (max-width: 540px) {
		font-size: 1.6rem;
		padding: 3px 12px 4px 12px;
	}
}


.featured-work {
	.highlightHeadline {
		z-index: 10;
		left: 10%;
		top: -19px;
		
		@media (max-width: 540px) {
			left: 50px;
		}
	}
}

.featured-description {
	background-color: #000;
	padding: 20px 30px;
	margin: -20px auto 50px auto;
	width: 75%;
	position: relative;
	z-index: 100;
	font-family: var(--sans-serif-font);
	
	@media (min-width: 540px) {
		width: 100%;
	}
	
	table {	
		tr {
			border-bottom: none;
		}
	}
	
	@media (max-width: 540px) {		
		table {	
			tr {
				td {
					display: block;
					text-align: left !important;
				}
			}
		}
	}
	
	
}

/************************************
	   END FEATURED WORK
*************************************/

.separatorLarge {
	position: relative;
	text-align: center;
	height: 75px;
	margin: 70px 0 70px 0;
	background-image: url("../imgs/separator_horiz.svg"); 
	background-position: center;
	background-repeat: repeat-x;
	@media (max-width: 540px) {
		height: 75px;
		margin: 50px 0 20px 0;
		background-image: none;
	}
} 

footer {
	border-top: 1px #777 dotted;
	border-bottom: 1px #777 dotted;
	margin: 90px auto 0 auto;
	padding: 30px 0 55px 0;
	text-align: center;
	width: 90%;
	
	@media (min-width: 540px) {
		margin: 90px auto;
		padding: 40px 0 40px 0;
		width: 80%;
	}
	
	nav {
		justify-content: center;
		font-size: 1.7rem;
		font-weight: 200;
		padding: 10px 0 20px;
		border-top: none;
		border-bottom: none;
		opacity: 1;
		margin: 0 auto 20px auto;
		width: fit-content;
		opacity: 1;
		line-height: 1;
		gap: 15px;
		
		@media (min-width: 540px) {
			gap: 10px;
			padding: 0;
			margin: 0 auto 20px auto;
		}
		
		.sc {
				text-transform: none;
				letter-spacing: 1px;
				font-family: var(--sub-headline-font) !important;
		}
	}
	
	.about {
		border-bottom: 1px #777 dotted;
		border-top: 1px #777 dotted;
		padding: 10px 0;
		margin-bottom: 17px;
		width: auto;
		display: inline-block;
		
		.sc {
			font-family: var(--sans-serif-font);
			text-transform: uppercase;
			font-size: 0.56rem;
		}
	}
	
	.portfolio {
		display: block;
	}
	
	h2 {
		margin-top: 10px;
		margin-bottom: 5px;
		display: block;
		text-transform: uppercase;
		letter-spacing: 4px;
		font-size: 35px;
		line-height: 50px;
	}
	
	hr {
		margin: 30px 0;
	}
	
	@media (min-width: 540px) {
		/* padding: 70px 0; */
		
		footer {
			margin: 80px auto;
			hr {
				margin: 30px 0;
			}
		}
	}
	
	h3 {
		display: inline-block;
		margin: 0;
	}
	
	i {
		letter-spacing: 0.01em;
	}
}

.bg-mask {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 180%;
	height: 200%;
	z-index: 2;
	background-color: rgba(61,61,61,0.9);
}

.bg-video {
	padding: 56.25% 0 0 0;
	position: absolute;
	top: 270px;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 0;
	transform: scale(2);
	overflow: hidden;
}

small, .sc {
	font-family: 'Mate SC', serif;
	text-transform: lowercase;
	letter-spacing: 3px;
}

h1 {
	font-family: var(--main-headline-font);
	font-size: 100px;
	line-height: 95px;
	letter-spacing: 2px;
	text-transform: lowercase;
	margin: 20px 0 30px 0;
}

h2 {
	font-family: 'Six Caps', sans-serif;
	font-size: 55px;
	line-height: 63px;
	letter-spacing: 4px;
	text-transform: lowercase;
}

h2.uppercase {
	text-transform: uppercase;
}

/**********************************************************
********** Custom client name sizes on startpage **********
***********************************************************/

@media (min-width: 900px) and (max-width: 1080px)  {
	.index { 
		h2 {
			font-size: 45px;
			line-height: 50px;
		}
		
		.button {
			margin-top: 18px !important;
		}
	}
}

@media (min-width: 585px) and (max-width: 710px)  {
	.index h2 {
		font-size: 40px;
		line-height: 45px;
		}
		
		.index .button {
		margin-top: 15px !important;
	}
}

@media (min-width: 320px) and (max-width: 350px)  {
	.index h2 {
		font-size: 40px;
		line-height: 45px;
	}
	
	.index .button {
		margin-top: 15px !important;
	}
}

/**************************************************************
********** End custom client name sizes on startpage **********
***************************************************************/

.clientSection {
	width: 80;
	margin: 0 auto;
	padding: 2% 0 2% 0;
	border-top: 1px #777 dotted;
	/* border-bottom: 1px #777 dotted; */
	
	@media (max-width: 540px) {
		width: 100%;
	}
	
	@media (min-width: 1080px) {
		width: 80%;
		
		.u-size1of2+.u-size1of2 {
			margin: 0 !important;
		}
	}		
		
	
	h3 {
		margin: 50px auto 40px auto;
		display: block;
		text-align: center;
	}
	
	.clientList {
		
		margin-top: 30px;
		padding: 0;
		width: 100%;
		
		.flexItem { 
			display: flex; 
			justify-content: center; 
			align-content: center; 
			margin-right: 0 !important;
			align-items: center;
			
			@media (max-width: 540px) {
				&:nth-child(odd) {
					justify-content: center;
					/* padding-left: 15%; */
				}
				&:nth-child(even) {
					justify-content: center;
					/* padding-right: 15%; */
				}
			}
		}
		
		.clientLogo {
			width: 100px;
			height: auto;
			margin-bottom: 40px;
			
			&.wide { width: 180px; }
			&.skistar { width: 135px; }
			&.cartier { width: 110px; }
			&.almroths { width: 130px; }
			&.jord { width: 110px; margin-top: 8px; }
			&.tall { height: 50px; width: auto; }
			
			@media (max-width: 540px) {
				width: 70px;
				height: auto;
				margin-bottom: 40px;
				
				&.wide { width: 150px; }
				&.tall { height: 60px; width: auto; }
				
				&.skistar { width: 105px; }
				&.cartier { width: 80px; margin-bottom: 28px; }
				&.almroths { width: 100px; 
					&.tall { height: 40px; width: auto; }
				}
				&.liam { width: 120px;
					&.tall { height: 40px; width: auto; }
				}
				&.kyrkan { width: 120px;
					&.tall { height: 40px; width: auto; }
				}
				&.jord { width: 80px; margin-top: 8px; }
				&.ryde { height: 40px; }
			}
			
			@media (max-width: 1300px) {
				margin-bottom: 40px;
			}
			
		}
	}
}


.bts {
	h2 {
		margin: 20px 0 40px 0;
	}
	
	.content-wrapper {
		h3 {
			margin-top: 0;
		}
	}
	
	ul {
		margin-top: 1.5rem;
	}
}

h3 {
	font-family: var(--sub-headline-font);
	font-size: 28px;
	line-height: 1.1;
	letter-spacing: 0px;
	font-weight: 300;
	margin-top: 0;
	margin-bottom: 10px;
}

.static {
	h3 {
		margin-top: 2.5rem;
	}
}

.content-wrapper h3 {
	font-family: var(--sub-headline-font);
	font-size: 33px;
	line-height: 1.1;
	letter-spacing: 0px;
	font-weight: 300;
	margin-top: 0;
	margin-bottom: 15px;
}

.preamble {
	font-size: 18px;
	font-family: var(--sans-serif-font);
	font-weight: 300;
	margin-bottom: 18px;
	line-height: 1.5;
	
	p {
		margin-top: 10px;
	}
	
}

blockquote {
	font-size: 33px;
	font-family: var(--sans-serif-font);
	font-style: italic;
	font-weight: 300;
	margin-bottom: 30px !important;
	line-height: 1.3;
	text-align: center;
	display: block;
}

blockquote:before {
	content: '\201c';
	top: 0;
	left: 0;
}

blockquote:after {
	content: '\201d';
	bottom: 0;
	right: 0;
}


h2 + .preamble {
	font-size: 16px;
	margin: 30px auto 30px auto;
	width: 40%;
	max-width: 550px;
}

h3 + .preamble {
	margin: 30px auto 30px auto;
	display: block;
}

a {
	/* color: $white; */
	color: inherit;
	text-decoration: none;
}

p.preamble a {
	/* border-bottom: 15px solid;
	border-color: inherit;
	margin-bottom: -15px; */
}

table {

	width: 100%;
	
	tr {
		border-bottom: 1px #555 dotted;
		width: 100%;
	}
	
	td {
		margin: 5px 0;
		padding: 5px 0;
		vertical-align: top;
	}
	
	td.right {
		text-align: right;
	}
	
	td.left {
		text-align: left;
	}
}

ul {
	/* display: inline-block; */
	
	li {
		list-style: square;
		margin: 5px 0;
		border-bottom: 1px #555 dotted;
		width: auto;
		padding-bottom: 5px;
		list-style: none;
	}
	
	li:first-child {
		border-top: 1px #555 dotted;
		padding-top: 5px;
	}
}

hr {
	margin: 50px 0;
	border: none;
	border-top: 1px #777 dotted;
	width: 100%;
}

.socMed {
	display: inline-block;
	margin-right: 20px;
	
	.sc {
		margin-right: 5px;
	}
}

img.socMed {
	display: inline-block;
	width: 17px;
	vertical-align: sub;
	margin-right: 7px;
}

.button {
	/* background: pink; */
	color: var(--bright-base);
	padding: 5px 10px;
	border-radius: 4px;
	text-decoration: none;
	display: inline-block;
	margin-top: 30px;
	font-family: sans-serif;
	border: 1px solid var(--bright-base);
	
	&:hover {
		color: var(--white);
		border: 1px solid var(--white);
		background: rgba(0,0,0,0.7);
	}
}

.table {
	width: 35%;
	margin: 0 auto;
}

.video-container {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	/* border: red 1px solid; */
	z-index: 50;
	text-align: center;
}

.video {
	width: 30%;
	height: auto;
	display: flex;
	position: relative;
	transition: all .2s ease-in-out;
	margin: 0 1.5% 1.5% 0;
}


.video:nth-child(3), .video:nth-child(6)  {
	margin: 0 0 1.5% 0;
}

.video:hover {	
	transform: scale(1.025);
	z-index: 100;
}

.videoWrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	z-index: 1;
	
	iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
	}
}

.animationWrapper {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 1;
	
	iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
	}
}

.loader {
	text-align: center;
	color: var(--white);
	font-size: 12px;
	font-style: italic;
	font-family: var(--sans-serif-font);
	font-weight: 300;
	width: 80px;
	/* margin: 0 auto; */
	position: absolute;
	top: 30%;
	left: 40%;
	
	
	svg {
		/* display: block; */
		/* font: 12.5em "Six Caps"; */
		width: 130px;
		height: auto;
		margin: 0;
		/* letter-spacing: 4px; */
	}
	
}

.loaderWrapper {
	position: absolute;
	padding: 0;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 0 !important;
	visibility: visible !important;
	/* border: 1px solid rgba(255,255,255,0.4); */
	background-color: rgba(0,0,0,0.1);
	text-align: center;
	/* border: 1px solid red; */
	background-image: url("../imgs/loader_three_dots.svg"); /* The image used */
	background-color: rgba(0,0,0,0.1);
	background-size: 50px;
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	/* background-size: cover; /* Resize the background image to cover the entire container */ */
}


.video-description {
	position: absolute;
	padding: 7% 5% 5% 5%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10;
	visibility: hidden;
	color: var(--white);
}

.video-placeholder {
	position: absolute;
	padding: 5%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 0 !important;
	visibility: visible !important;
	color: #404040;
	background-color: #333;
	
	.button {
		color: #404040;
		padding: 5px 10px;
		border-radius: 4px;
		text-decoration: none;
		display: inline-block;
		margin-top: 30px;
		font-family: sans-serif;
		border: 1px solid #404040;
	}

}

.video:hover > .video-description {
	visibility: visible;
	background-color: rgba(0,0,0,0.8);
	width: 100.04%;
	height: 100.05%;
}

/************************************
       SITE HEAD & NAVIGATION
*************************************/

.site-head {
	position: relative;
	z-index: 1;
	margin-bottom: 70px;
	padding: 0 10%;
	text-align: center;
	
	@media (max-width: 540px) {
		padding: 0 5%;
	}
	
	h1 {
		/* margin-top: 60px; */
		margin-top: 15px;
	}
	
	.sc {
		letter-spacing: 8px;
	}
	
	nav {
		.sc {
			letter-spacing: 3px;
		}
	}
}

nav {
	/* display: block; */
	font-size: 0.58rem;
	padding: 15px 15px;
	border-top: 1px solid #555;
	border-bottom: 1px solid #555;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-webkit-transition: opacity 1s ease-in-out;
	width: 80%;
	margin: 0 auto 55px auto;
	gap: 10px;
	
	@media (min-width: 540px) {
		gap: 15px;
		margin: 15px auto 55px auto;
		width: fit-content;
		padding: 10px 15px;
	}
	
	.sc {
		font-family: var(--sans-serif-font);
		text-transform: uppercase;
	}
	
	a {
		/* margin-right: 15px; */
		opacity: 0.7;
	}
	
	a:hover {
		opacity: 1;
	}
	
	.u-last {
		margin-right: 0;
	}
}

.logo {
	display: block;
	
	&.prod {
		margin: 0 auto 60px auto; 
	}
	
	> img {
		width: 300px;
		height: auto;
		margin: 0 auto 0 auto; 
	}
}

.logo:hover + nav, nav:hover {
	visibility: visible;
	opacity: 1;
	transition: opacity .55s ease-in-out;
	-moz-transition: opacity .55s ease-in-out;
	-webkit-transition: opacity .55s ease-in-out;
}

/* Visible on devices without hoover: tablets and smartphones */
@media (hover: none) {
	
	.logo + nav, nav {
		visibility: visible !important;
		opacity: 1 !important;
		transition: opacity .55s ease-in-out;
		-moz-transition: opacity .55s ease-in-out;
		-webkit-transition: opacity .55s ease-in-out;
	}
}


/************************************
	   END SITE HEAD & NAVIGATION
*************************************/



.thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 100;
	color: var(--white);
}

.embedded-video {
	padding:56.25% 0 0 0;
	position:relative;
}

.has-thumbnail {
	
}

.container {
	display: flex;
	justify-content: center;
	/* border: red 1px solid; */
	z-index: 50;
	width: 80%;
	margin: 40px auto;
}

.box > .container {
	margin: 0px auto;
}

.box .content-wrapper p {
	margin-bottom: 10px;
	
	+ ul {
		margin-top: 20px;
	}
}

.last {
	margin: 0 !important;
}

figure {
	padding: 6% 0 0 0;
	text-align: center;
}

#almroths figure {
	padding: 0;
}

figcaption {
	font-size: 12px;
	font-style: italic;
	font-family: var(--sans-serif-font);
	font-weight: 300;
    margin: 20px 0 0 0;
	padding-top: 10px;
    width: 100%;
    border-top: dotted 1px rgba(255,255,255,0.2);
}

.caption {
	font-size: 12px;
	font-style: italic;
	font-family: var(--sans-serif-font);
	font-weight: 300;
	margin: -6% 0 0 0;
	text-align: left;
	width: 100%;
}

#doors figcaption, #almroths figcaption, #cartier figcaption {
	border-top: none;
	padding-top: 0;
	margin: 10px 0 0 0;
}

blockquote {
	width: 70%;
	text-align: center;
	margin: 0 auto;
}


/***************************
********* MEDIUM ***********
****************************/

@media (min-width: 581px) and (max-width: 900px) {
	
	.u-me img {
		width: 100%;
	}
	
	.u-me blockquote {
		margin-top: 15px;
		text-align: left;
		margin-bottom: 15px !important;
	}
	
	.video {
		width: 45%;
	}
	
	.video:nth-child(3), .video:nth-child(6) {
		margin: 0 1.5% 1.5% 0;
	}
	
	.content {
		padding: 0 15%;
	}
	
	.table {
		width: auto;
	}
	
}


/***************************
********* NARROW ***********
****************************/

@media (max-width: 580px) {
	
	body {
		margin-top: 40px;
	}
	
	blockquote {
		font-size: 20px;
		font-weight: 700;
		margin-bottom: 5px !important;
	}
	
	.u-me blockquote {
		margin-top: 5px;
		text-align: left;
	}

	.index .u-me blockquote {
		width: 100%;
		text-align: left;
		margin: 0 auto;
	}
	
	.index .box .content-wrapper {
		width: 100%;
		margin-bottom: 6%;
	}
	
	
	
	.video:nth-child(3), .video:nth-child(6) {
		margin: 0 0 25px 0;
	}
	
	.u-me img {
		width: 100%;
	}
	.hero-video {
		margin-bottom: 30px;
	}
	
	.content {
		margin-bottom: 40px;
		padding: 0 15%;
	}
	
	.box .content-wrapper {
		margin: 0 auto 6% auto;
	}
	
	h1 {
		font-size: 65px;
		line-height: 70px;
	}
	
	h2 + .preamble {
		width: 90%;
		text-align: left;
	}
	
	hr {
		margin: 30px 0 20px 0;
	}
	
	.video, .photo-cat {
		width: 90%;
		margin: 0 0 25px 0 !important;
	}
	
	.logo {
		width: 200px;
		height: auto;
		margin: 0 auto 15px auto; 
	}
	
	.table {
		width: auto;
	}
	
	/* .u-sizeFull { width: 100%; margin: 0 0 3% 0; } */
	/* .u-size1of2 { width: 47%; } */
	/* .u-size1of3 { width: 30%; } */
	/* .u-size1of4 { width: 23%; } */
	/* .u-size1of5 { width: 23%; } */
}

/************************************************
*************************************************

    P A G E   S P E C I F I C   S T U F F

*************************************************
*************************************************/


/********** C O L O P H O N **********/

.colophon i {
	padding: 0 2px 0 1px;
}

.colophon tr {
	vertical-align: top;
}

/*
.colophon a {
	color: #e19be8;
}

.colophon footer a {
	color: $white;
}
*/

/********** A N I M A T I O N S **********/

body.animations {
	max-width: 100% !important;
	background-color: #111;
	
	.box {
		.content-wrapper {
			margin: 0 auto 6% auto;
		}
	}
}

.animations .container {
	max-width: 1440px;
	margin: 0 auto;
}

.color-section {
	padding: 60px 0;
}

.color-section {
	
	&.cartier {
		background-color: rgb(244, 243, 237);
	}
	
	&.doors {
		background-color: rgb(0, 22, 51);
	}

	&.immuneed {
		/* background-color: rgb(12, 36, 31); */
		background-color: #0c241f;
	}

	&.almroths {
		/* background-image: url("../imgs/animations/almroths_bg.png"); */
		background-color: rgb(247, 247, 235);
		color: #444;
	}
}

.animations h1 {
	text-align: center;
	font-size: 80px;
	line-height: 150px;
	margin: 0 0 30px 0;
}

.animations iframe.highlight {
	border: 2px solid rgba(255,255,255,0.5);
}

.color-section.doors iframe.highlight {
	border: 2px solid rgba(136, 143, 149, 0.21);
}

.color-section.immuneed iframe.highlight {
	border: 2px solid rgba(136, 143, 149, 0.21);
}

.color-section.almroths iframe.highlight {
	border: 2px solid rgba(136, 143, 149, 0.21);
}

.color-section.cartier .highlight {
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.immuneedWeb {
	/* margin: -60px 0 0 -50px; */
	/* margin: 12% 0 0 0; */
	margin: 6% 0 0 10%;
	width: 79%;
}

.animations .site-head {
	margin-bottom: 0px;
	}

.animations table {
	margin-bottom: 50px;
	width: 100%;
}

.animations .button {
	margin-top: 0;
}

.animations h2 + .preamble {
	margin: 30px 0;
	width: 100%;
	max-width: 550px;
}

.animations .clientLogos hr {
	margin: 20px 0;
}

.animations .clientLogos {

	margin: -20px auto 50px auto !important;
	text-align: center;

	/* FIXED POSITION 
	margin: 0 auto 0 auto !important;
	text-align: center;
	position: fixed;
	top: 0;
	margin: 0 auto;
	left: 50%;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0,0,0,0.8);
	z-index: 1000;
	*/
}

.animations .clientLogos .box, .animations .clientLogos .box.u-last {
	margin:  0 !important;
}

.animations .clientLogo {
	height: auto;
	width: 60px;
}

.animations h3 {
	margin-top: 15px;
}

.animations .clientLogos h3 {
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 10px;
	text-align: center;
}

.animations {
	
	.almroths {
		h1 {
			color: #395D74;
		}
		h2, h3 {
			color: #66859A;
		} 
		p, table {
			color: #444;
		}
	}
	
	.cartier {
		h1 {
			color: #395D74;
		}
		h2, h3 {
			color: #66859A;
		} 
		p, table {
			color: #444;
		}
		figcaption {
			color: #395D74;
			margin: 20px 0 0 0;
			padding-top: 10px;
			border-top: dotted 1px rgba(57, 93, 116, 0.5);
		}
	}
}

/********* MEDIUM ***********/

@media (max-width: 900px) and (min-width: 581px) {
	
.animations h1 {
	text-align: center;
}

.animations .clientLogo {
	height: auto;
	width: 80px;
}

.animations .clientLogos {
	text-align: center;
}

.animations .clientLogos h3 {
	text-align: center;
	margin-top: 0;
	margin-bottom: 10px;
}

.color-section {
	padding: 80px 0;
}


}

/*********** WIDE ***********/

@media (min-width: 901px) {
	
	.animations .clientLogo {
		height: auto;
		width: 65px;
	}
	
	.animations h1 {
		text-align: center;
		font-size: 120px;
	}
	
	.animations .clientLogos h3 {
		font-size: 24px;
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.immuneedWeb {
		/* margin: -60px 0 0 -50px; */
		/* margin: 12% 0 0 -89px; */
	}
	
	.color-section {
		padding: 120px 0;
	}


}

/***************************
******* SUPER WIDE ***********
****************************/

@media (min-width: 1300px) {
	
	.animations .clientLogo {
		height: auto;
		width: 100px;
	}
	
	.animations .clientLogos h3 {
		margin-top: 5px;
	}

}


/*************** S E R V I C E S ******************/

.services-component {
	.social-sub-nav {
		li {
			align-items: center;
			justify-items: center;
			justify-content: center;
			gap: 20px;
			padding: 40px 0 20px 0;
			margin-bottom: 20px;
			border-bottom: none;
	
			@media (min-width: 540px ) {
				gap: 30px;
			}
	
			h2 {
				text-align: right;
			}
			img.icon {
				height: 70px;
				width: auto;
			}
			p {
				width: 80%;
				@media (min-width: 540px ) {
					width: 30%;
				}
			}
		}
	}
}


.services {

	.projectExamples {
		position: relative;
		min-height: 500px;
	}
	
	&.interviews {
		.projectExamples {
			position: relative;
			min-height: auto;
			width: 100%;
			aspect-ratio: 16 / 9;
			margin: 0 auto;
			margin-bottom: 110px;
			@media (min-width: 540px ) {
				width: 80%;
			}
			
			.facts {
				position: absolute;
				left: 0;
				bottom: -26px;
				width: auto;
				background-color: #3d3d3d;
				color: #888;
				font-family: var(--sans-serif-font);
				
				i {
					display: inline;
					margin-right: 20px;
				}
			}
		}
	}

	/********** DRONE ********/

	&.drone {

		.heroContent {
			margin-top: -110px;
			z-index: 200;
			position: relative;
			text-align: center;

			@media (min-width: 540px) {
				margin-top: -11%;
			}

			img {
				margin: 0 auto !important;
			}
		}
	}

	/********** END DRONE ********/


	/********** SOCIAL-MEDIA ********/
	
		
	iframe {
		position: absolute;
		left: 0;
		top: -18px;
		width: 100%;
		height: 100%;
		z-index: 1;
		/* clip-path: inset(0 5px 0 5px round 50px 50px 0 0); */
		-webkit-clip-path: inset(4px round 56px 63px 0px 0px);
		clip-path: inset(4px round 56px 63px 0px 0px);

		@media (min-width: 540px ) {
			top: -20px;
		}
	}
	
	.smartphoneContainer {
		/* width: 440px;
		height: 912px; */
		width: 180px;
		height: 366px;
		position: relative;
		display: inline-block;
		box-shadow: 10px black;
		margin-right: 20px;
		opacity: 0;
		animation: imageAnimFadeIn 2s linear 1;
		animation-fill-mode: forwards;/* Makes it stay after animation */
	}
	
	.first { 
		animation-delay: 1s; 
	}
	.second { 
		animation-delay: 2s;
		/* padding-top: 60px; */
	}
	.third {
		animation-delay: 3s;
	}
	.fourth {
		animation-delay: 4s;
		/* padding-top: 90px; */
	}
	.fifth {
		animation-delay: 5s;
		/* padding-top: 90px; */
	}
	.sixt {
		animation-delay: 6s;
		/* padding-top: 90px; */
	}
	.seventh {
		animation-delay: 7s;
		/* padding-top: 90px; */
	}
	
	.first, .third, .fifth {
		transform: rotate(-3deg);
	}
	
	.second, .seventh {
		transform: rotate(8deg);
	}
	
	.fourth, .sixt {
		transform: rotate(4deg);
	}
	
	.video {
		z-index: 0;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	.smartphone {
		z-index: 1000;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	.slideAnimationWrapper {
		overflow: hidden;

		@media (min-width: 700px) {
			overflow: unset; 
			text-align: center;
		}
	}
	
		
	/********** END SOCIAL-MEDIA ********/
	
	.u-slideLeft {
		animation: swap 60s linear infinite; 
		height: 441px;
		width: 1500px;
		/* background: url("../../imgs/figurines.png") repeat-x; */
		background-size: contain;
		padding-top: 10px;
		
		@media (min-width: 700px) {
			animation: none; 
			height: auto;
			width: 100%;
			padding-top: 0;
		}
	}

	figure {
		img {
			width: fit-content;
			margin: 0 auto;
			height: fit-content;
			min-height: 150px;
		}
		strong {
			display: block;
		}
		figcaption {
			/* text-align: left; */
			border-top: none;
			border-bottom: dotted 1px rgba(255,255,255,.2);
			display: block;
			padding-bottom: 20px;
			margin: 0 auto 20px auto !important;

			@media (min-width: 700px) {
				border-bottom: none;
			}

			p {
				
			}
		}
	}

	table {
		width: 100%;

		h3 {
			margin: 0 !important;
		}

		tr {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		td {
			vertical-align: middle;
			width: 100%;
		}

		.right {
			text-align: right;
		}
	}
	
	.tableValue {
		text-align: right;
		font-family: var(--sans-serif-font);
		font-size: 16px;

		tr.lastRow {
			border-bottom: none;
		}
	}
	
	.listIcon {
		width: 24px;
		height: auto;
		margin-left: 5px;
	}

	.formats {
		margin: 0 auto;
		max-width: 250px;

		@media (min-width: 540px ) {
			max-width: 140%;
			margin-left: -20%;
			width: 140%;
		}
	}
		
	@media (min-width: 1280px) {
		
		iframe {
			/* top: -32px; */
			/* clip-path: inset(0 5px 0 5px round 100px 100px 0 0); */
		}
		
		.smartphoneContainer {
			width: 220px;
			height: 446px;
		}
	}
	
	@media (min-width: 2860px) {
		
		iframe {
			top: -32px;
			clip-path: inset(0 5px 0 5px round 100px 100px 0 0);
		}
		
		.smartphoneContainer {
			width: 340px;
			height: 688px;
		}
	}
	
	
	
}

/*************** P H O T O G R A P H Y ******************/


/**** TYPOGRAHIC VERSION *****/

.photography {
	.page-header {
		margin-top: 20px;
	}
}

.photo-container {
	display: flex;
	flex-flow: column wrap;
	justify-content: left;
	/* border: red 1px solid; */
	z-index: 50;
	margin-left: 5%;
}

.photo-cat {
	
	position: relative;
	
	@media (hover: hover) {
		.hidden-image {
			display: block;
			z-index: -1;
			width: 150px;
			position: absolute;
			top: 30px;
			right: 0;
			-webkit-filter: grayscale(100%) contrast(200%) opacity(10%);
			-moz-filter: grayscale(100%) contrast(200%) opacity(10%);
			filter: grayscale(100%) contrast(200%) opacity(10%);
			transition: all 0.5s ease;
		}
		
		
		&:hover {	
			cursor: pointer;
		
			.hidden-image {
				display: block;
				-webkit-filter: grayscale(0%) contrast(100%) opacity(100%);
				-moz-filter: grayscale(0%) contrast(100%) opacity(100%);
				filter: grayscale(0%) contrast(100%) opacity(100%);
				transition: all 0.5s ease;
		   	}
		}
	}
	
	@media (hover: none) {
		
		.hidden-image {
			display: block;
			z-index: -1;
			width: 150px;
			position: absolute;
			top: 30px;
			right: 0;
			-webkit-filter: grayscale(100%) contrast(200%) opacity(10%);
			-moz-filter: grayscale(100%) contrast(200%) opacity(10%);
			filter: grayscale(100%) contrast(200%) opacity(10%);
			transition: all 0.5s ease;
		}
		
		img.hidden-image {
			&.one { 
				animation: grayscale 8s ease 1s infinite;
				-webkit-animation: grayscale 8s ease 1s infinite;
				-moz-animation: grayscale 8s ease 1s infinite;
			}
			&.two {
				animation: grayscale 8s ease 2s infinite;
				-webkit-animation: grayscale 8s ease 2s infinite;
				-moz-animation: grayscale 8s ease 2s infinite;
			}
			&.three {
				animation: grayscale 8s ease 3s infinite;
				-webkit-animation: grayscale 8s ease 3s infinite;
				-moz-animation: grayscale 8s ease 3s infinite;
			}
			&.four {
				animation: grayscale 8s ease 4s infinite;
				-webkit-animation: grayscale 8s ease 4s infinite;
				-moz-animation: grayscale 8s ease 4s infinite;
			}
			&.five {
				animation: grayscale 8s ease 5s infinite;
				-webkit-animation: grayscale 8s ease 5s infinite;
				-moz-animation: grayscale 8s ease 5s infinite;
			}
			&.six {
				animation: grayscale 8s ease 6s infinite;
				-webkit-animation: grayscale 8s ease 6s infinite;
				-moz-animation: grayscale 8s ease 6s infinite;
			}
			&.seven {
				animation: grayscale 8s ease 7s infinite;
				-webkit-animation: grayscale 8s ease 7s infinite;
				-moz-animation: grayscale 8s ease 7s infinite;
			}
		}
		
		
				
		filter: blur(3px);
		-webkit-filter: blur(3px);
		-moz-filter: blur(3px);
		-o-filter: blur(3px);
		-ms-filter: blur(3px);
		filter: url(blur.svg#blur);
		filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='3');
		
	} /* End animation on devices without hover */
	
	h2 {
		font-size: 6rem;
		line-height: 0.8;
		text-align: left;
		z-index: 100;
		transition: all 0.5s ease;
		color: var(--gray);
		
		&:hover {
		  color: white;
		  transition: all 0.5s ease;
		}
		
		@media (hover: none) {
			&.first { 
				animation: colorfade 8s ease 1s infinite;
				-webkit-animation: colorfade 8s ease 1s infinite;
				-moz-animation: colorfade 8s ease 1s infinite;
			}
			&.second {
				animation: colorfade 8s ease 2s infinite;
				-webkit-animation: colorfade 8s ease 2s infinite;
				-moz-animation: colorfade 8s ease 2s infinite;
			}
			&.third {
				animation: colorfade 8s ease 3s infinite;
				-webkit-animation: colorfade 8s ease 3s infinite;
				-moz-animation: colorfade 8s ease 3s infinite;
			}
			&.fourth {
				animation: colorfade 8s ease 4s infinite;
				-webkit-animation: colorfade 8s ease 4s infinite;
				-moz-animation: colorfade 8s ease 4s infinite;
			}
			&.fifth {
				animation: colorfade 8s ease 5s infinite;
				-webkit-animation: colorfade 8s ease 5s infinite;
				-moz-animation: colorfade 8s ease 5s infinite;
			}
			&.sixt {
				animation: colorfade 8s ease 6s infinite;
				-webkit-animation: colorfade 8s ease 6s infinite;
				-moz-animation: colorfade 8s ease 6s infinite;
			}
			&.seventh {
				animation: colorfade 8s ease 7s infinite;
				-webkit-animation: colorfade 8s ease 7s infinite;
				-moz-animation: colorfade 8s ease 7s infinite;
			}

					} /* End animation on devices without hover */
	
	}
	
}

/*********** P H O T O G R A P H Y MEDIUM **********/

@media (min-width: 501px) {

	.photo-container {
		margin-left: 15%;
	}
	
	.photo-cat {
		
		h2 {
			font-size: 8rem;
			line-height: 1.3;
		}
		
		.hidden-image {
			width: 230px;
			top: 0px;
			
			&.sports {
				left: 37%;
			}
			
			&.nature {
				left: 35%;
			}
			
			&.events {
				left: 35%;
			}
			
			&.people {
				left: 33%;
			}
			
			&.worklife {
				left: 45%;
			}
			
			&.food {
				left: 27%;
			}
			
			&.products {
				left: 52%;
			}
			
			&.interiors {
				left: 52%;
			}
		}
	
	}

}

/*********** P H O T O G R A P H Y WIDE ***********/

@media (min-width: 901px) {
	
	.photo-container {
		margin-left: 25%;
	}
	
	
	.photo-cat {

		h2 {
			font-size: 15rem;
			line-height: 1;
		}
		
		.hidden-image {
			width: 280px;
			top: 0px;
			
			&.sports {
				left: 37%;
			}
			
			&.nature {
				left: 35%;
			}
			
			&.events {
				left: 35%;
			}
			
			&.people {
				left: 33%;
			}
			
			&.worklife {
				left: 45%;
			}
			
			&.food {
				left: 27%;
			}
			
			&.products {
				left: 52%;
			}
			
			&.interiors {
				left: 45%;
			}

		}
		
	}
}







/*** REG GRID 


.photo-container {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	//border: red 1px solid;
	z-index: 50;
	text-align: center;
}


.photo-cat {
	width: 45%;
	height: auto;
	display: flex;
	position: relative;
	transition: all .2s ease-in-out;
	margin: 0 1.5% 1.5% 0;
}

.photo-cat:nth-child(2), .photo-cat:nth-child(4), .photo-cat:nth-child(6) {
	margin: 0 0 1.5% 0;
}

.photo-description {
	position: absolute;
	padding: 7px 12px 5px 11px;
	top: 125px;
	left: 0;
	z-index: 100;
	background-color: #3d3d3d;
	margin-top: -95px;
	margin-bottom: 32px;
	display: block;
	
	h3 {
		font-size: 19px;
		line-height: 1.1;
		letter-spacing: 2px;
		font-weight: 300;
		margin: 0;
		text-transform: uppercase;
	}
}

.photoWrapper {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 1;
	overflow: hidden;
	
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: all 0.3s;
		
		&:hover {
			transform: scale(1.01) rotate(-0.1deg);
		}
	}
	
}

**/


/******************************
	END PAGE SPECIFIC STUFF
*******************************/


svg {
	display: block;
	font: 12.5em 'Six Caps';
	width: 100%;
	height: 200px;
	margin: 0 0 0 20%;
	letter-spacing: 4px;
}

.text-copy {
	fill: none;
	stroke: white;
	stroke-dasharray: 6% 29%;
	stroke-width: 2px;
	stroke-dashoffset: 0%;
	animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1){
	stroke: #eee;
	animation-delay: -1;
}

.text-copy:nth-child(2){
	stroke: #ccc;
	animation-delay: -2s;
}

.text-copy:nth-child(3){
	stroke: #aaa;
	animation-delay: -3s;
}

.text-copy:nth-child(4){
	stroke: #bbb;
	animation-delay: -4s;
}

.text-copy:nth-child(5){
	stroke: #ddd;
	animation-delay: -5s;
}

.text-copy:nth-child(6){
	stroke: #fff;
	animation-delay: -6.5s;
}

@keyframes stroke-offset{
	100% {stroke-dashoffset: -35%;}
}

/************** PHOTOGRAPHY   ****************/



/* Reset CSS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body.photography {
	padding: 0 5%;
	text-align: center;
	/* background: linear-gradient(45deg, #190f2c, #200b30); */
	/* padding: 15px; */
	.u-last {
		margin-right: 0;
	}
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	display: inline-block;
}

/* Main CSS */
.grid-wrapper > div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.grid-wrapper > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0px;
}

.grid-wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
}

@media (min-width: 2860px) {
	.grid-wrapper {
		display: grid;
		grid-gap: 30px;
		grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
		grid-auto-rows: 300px;
		grid-auto-flow: dense;
	}
}

@media (max-width: 501px) {
	.grid-wrapper {
		display: block;
		
		> div {
			margin-bottom: 15px;
		}
	}
}


.grid-wrapper .wide {
	grid-column: span 2;
}
.grid-wrapper .tall {
	grid-row: span 2;
}

.grid-wrapper .extratall {
	grid-column: span 2;
	grid-row: span 4;
}

.grid-wrapper .supertall {
	grid-column: span 2;
	grid-row: span 5;
}

.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}

.grid-wrapper .superwide {
	grid-column: span 3;
	grid-row: span 2;
}



/*****************/



/************** ASIDES *************/

.aside {
	&.one-day {
		.projectLogo {
			width: 80%;
			display: block;
			max-width: 400px;
			margin: 50px auto 0 auto;
		}
	}
	
	@media (max-width: 910px) {
		.container {
			width: 100%;
		}
	}
}

/* Keyframes, hoisted to the top level (they were nested in the
   SCSS; plain CSS does not allow @keyframes inside a style rule). */

@keyframes imageAnimFadeIn {
	   0% { opacity: 0 }
	   100% { opacity: 1 }
	}

@keyframes swap{
	  	0% {
		  transform: translate(200px);
		}
		100% {
		  transform: translate(-800px);
		}
	}

@media (hover: none) {
@keyframes grayscale {
			0%, 10%, 50%, 100% {
				-webkit-filter: grayscale(100%) contrast(200%) opacity(10%);
				-moz-filter: grayscale(100%) contrast(200%) opacity(10%);
				-o-filter: grayscale(100%) contrast(200%) opacity(10%);
				-ms-filter: grayscale(100%) contrast(200%) opacity(10%);
			}
			
			30% {
					-webkit-filter: grayscale(0%) contrast(100%) opacity(100%);
					-moz-filter: grayscale(0%) contrast(100%) opacity(100%);
					-o-filter: grayscale(0%) contrast(100%) opacity(100%);
					-ms-filter: grayscale(0%) contrast(100%) opacity(100%);
		  	}	  
		}
}

@media (hover: none) {
@keyframes colorfade {
				0%, 10%, 50%, 100% {
					color: var(--gray);
				}
				
				30% {
					color: #fff;
			  	}	  
			}
}
