@font-face {
	font-family: 'FK Grotesk Reg';
	src:url('../fonts/FKGrotesk-Regular.woff2') format('woff2'),
		url('../fonts/FKGrotesk-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'FK Grotesk Italic';
	src:url('../fonts/FKGrotesk-Italic.woff2') format('woff2'),
		url('../fonts/FKGrotesk-Italic.woff') format('woff');
	font-weight: 400;
	font-style: italic;
}

/* —————————————————————————————————————————————————— */
/* BASE */

:root {
	--bgBlack: rgba(0,0,0,1);
	--bgWhite: rgba(255,255,255,1);
	--bgTrans: transparent;
	--colorACCGray: rgba(132, 131, 131, 1);
	--colorBlack: rgba(0,0,0,1);
	--colorWhite: rgba(255,255,255,1);
	--colorDisabled: rgba(196, 196, 196, 1);
	--fillDisabled: rgba(196, 196, 196, 1);
	--fillBlack: rgba(0,0,0,1);
	--fillWhite: rgba(255,255,255,1);
	--strokeBlack: rgba(0,0,0,1);
	--strokeWhite: rgba(255,255,255,1);
	--fillTrans: transparent;
	--body-small: 1.4rem;
	--body-reg: 2rem;
	--body-menu-controls: 1.4rem;
	--body-menu: 3.8rem;
	--body-line-height: 1.2;
	--body-large: 2.8rem;
	--body-large-exh: 3.2rem;
	--header-small: 2.3rem;
	--header-reg: 2.6rem;
	--header-line-height: 1.1;
	--header-large: 3.2rem;
	--header-xlarge: 3.2rem;
	--minFontSize: 1.4rem;
	--maxFontSize: 10rem;
	--scaler: 10vw;
	--fig-caption: 1.5rem;
	--column: 4;
	--pad-top: 2.7rem;
	--pad-left: 5.375vw;
	--bp-w-extra-small: 380px;
	--bp-w-small: 767px;
	--bp-w-medium: 1024px;
	--bp-w-large: 1204px;
	--bp-h-extra-extra-small: 380px;
	--bp-h-extra-small: 480px;
	--bp-h-small: 670px;
	--viewport-h: 100svh;
	--img-col-width: 8vw;
	--border-1px-solid: 1px solid rgba(0,0,0,.5);
	--border-1px-trans: 1px solid transparent;
	--max-h: 65vh;
	--aspect-ratio: 16/9;
}

@media only screen and (max-width: 1024px) {
	:root {
		--type-preset--marquee--font-size: 2.4rem;
	}
}

@media only screen and (max-width: 767px) {
	:root {
		--body-small: 1.2rem;
		--body-reg: 1.6rem;
		--body-line-height: 1.2;
		--body-large: 2.8rem;
		--body-large-gar: 3.2rem;
		--header-small: 2rem;
		--header-reg: 1.6rem;
		--header-line-height: 1.1;
		--header-large: 2.0rem;
		--header-xlarge: 2.4rem;
		--minFontSize: 1.4rem;
		--maxFontSize: 10rem;
		--scaler: 10vw;
		--fig-caption: 1.5rem;
		--column: 4;
		--pad-message: 0;
		--pad-left: 1rem;
		--img-col-width: 20vw;
	}
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	margin: 0;
	padding: 0;
}

html {
	font-size: 10px;
	line-height: 10px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	height: 100%;
}

body {
	font-family: 'FK Grotesk Reg', sans-serif;
	font-size: 10px;
	/* mix-blend-mode: difference; */
	font-weight: normal;
	line-height: var(--body-line-height);
	height: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	background: var(--bgWhite);
	padding: 0;
}
/* —————————————————————————————————————————————————— */
/* ACCESSIBILITY */

.screen-reader-shortcut {
	position: absolute !important;
	top: 0.5rem;
	left: 0.5rem;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	padding: 1.5rem 2rem 1rem;
	border: 0;
	overflow: hidden;
	-webkit-transition: all ease 0.2s;
	transition: all ease 0.2s;
}

.screen-reader-shortcut:focus {
	font-size: 2rem;
	line-height: 1;
	font-weight: normal;
	clip: auto !important;
	height: 5rem;
	width: auto;
	display: block;
	color: #000;
	background: #fff;
	z-index: 100000;
	text-decoration: none;
	box-shadow: 0 5px 5px -3px rgb(0 0 0 / 20%), 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%);
}

.off_screen {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	padding: 0;
	margin: 0;
}

/* —————————————————————————————————————————————————— */
/* TYPOGRAPHY */

h1, h2, h3, h4, h5, h6 {
	color: black;
	font-weight: normal;
	font-size: var(--body-small);
	line-height: var(--body-line-height);
	/* mix-blend-mode: difference; */
}

p, a, ul li {
	color: black;
	font-size: var(--body-small);
	line-height: var(--body-line-height);
	/* mix-blend-mode: difference; */
}

p {
	margin-bottom: 2rem;
}

p:last-child {
	margin-bottom: 0;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button {
	background: transparent;
	border: none;
	font-size: var(--body-small);
	line-height: var(--body-line-height);
	color: black;
}

button:hover,
button.active,
.archive-active button.archive-toggle {
	text-decoration: underline;
}

/* —————————————————————————————————————————————————— */
/* CLEARING */

.container:after,
.row:after,
.u-cf {
	content: "";
	display: table;
	clear: both;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix {
	zoom: 1;
}

/* IE6 */
*:first-child+html .clearfix {
	zoom: 1;
}

/* —————————————————————————————————————————————————— */
/* GRID */

main {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	padding: 0 4rem;
}

main section {
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: var(--pad-message);
	border-bottom: 3px solid black;
	border-color: var(--borderColorCAB);
}

@media only screen and (max-width: 767px) {
	main {
		padding: 0 2rem;
	}
}

/* —————————————————————————————————————————————————— */
/* HEADER */

.primary-header {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	z-index: 3;
	max-height: 11rem;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	padding: 2rem 4rem;
	background-color: transparent;
	will-change: background-color, color, opacity;
	transition: background-color 1000ms 100ms ease-in-out, color 400ms 100ms ease-in-out, opacity 100ms ease-in-out;
	flex-direction: column;
	justify-content: flex-start;

	font-size: var(--body-small);
	line-height: var(--body-line-height);
}

.header-wrapper {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 3;
}

.name-link {
	position: relative;
	text-decoration: none;
	color: black;
}

.name-link span {
	will-change: opacity;
	transition: opacity 100ms ease-in-out;
}

.full-name .letters {
	opacity: 0;
}

.period {
	opacity: 0;
}

.initials {
	position: absolute;
	left: 0;
	top: .15rem;
}

.initials .b-letter,
.initials .c-letter,
.initials .letters {
	opacity: 0;
}

.initials .period {
	opacity: 1;
}

.name-link.active .full-name .letters,
.name-link:hover .full-name .letters {
	opacity: 1;
}

.name-link.active .initials .period,
.name-link:hover .initials .period {
	opacity: 0;
}

.info-overlay, .archive-overlay {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

header button,
footer button {
	position: relative;
	display: flex;
	flex-direction: row;
}

.info-toggle.active::before,
.news-toggle.active::before,
.contact-toggle.active::before,
.archive-active .archive-toggle::before {
	content: '';
	position: absolute;
	top: -.375rem;
	left: -2.5rem;
	width: 2.4rem;
	height: 2.4rem;
	background-image: url(../images/close.svg);
	background-repeat: no-repeat;
	opacity: 1;
}

@media only screen and (max-width: 767px) {
	.primary-header {
		padding: 2rem;
	}
	.info-overlay {
		margin-left: -12px;
	}
}

/* —————————————————————————————————————————————————— */
/* INDEX */
.home main {
	padding-top: calc(50vh - 4rem);
}

.block-archive-wrapper {
	font-size: var(--body-small);
	line-height: var(--body-line-height);
	min-height: 100vh;
	padding-bottom: 8rem;
	position: relative;
	z-index: 0;
}

.block-archive-wrapper.news-active .archive-rows-wrapper,
.block-archive-wrapper.contact-active .archive-rows-wrapper,
.block-archive-wrapper.news-active .archive-col,
.block-archive-wrapper.contact-active .archive-col,
.block-archive-wrapper.info-active .archive-col,
.block-archive-wrapper.info-active .archive-rows-wrapper {
	opacity: .1;
}

.scrim {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	transition: background .5s linear 0s;
	z-index: 0;
	will-change: width, height, background;
	visibility: hidden;
}

.scrim.active,
.info-active .scrim,
.news-active .scrim,
.contact-active .scrim {
	visibility: visible;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	background: hsla(0, 0%, 100%, .45);
}

.single .block-archive-wrapper {
	padding-top: 10rem;
}

.view-archive-toggle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4rem;
	cursor: pointer;
	z-index: -10;
	opacity: 0;
	visibility: hidden;
}

.view-archive-toggle.active {
	z-index: 1;
	opacity: 1;
	visibility: visible;
	-webkit-backdrop-filter: blur(1.5px);
	backdrop-filter: blur(1.5px);
	background: hsla(0, 0%, 100%, .45);
	-moz-transition: all 1.25s ease;
	-o-transition: all 1.25s ease;
	-webkit-transition: all 1.25s ease;
	transition: all 1.25s ease;
	transition-delay: 250ms;
}

.view-archive-toggle.active.loaded {
	-webkit-backdrop-filter: blur(.5px);
	backdrop-filter: blur(.5px);
	background: hsla(0, 0%, 100%, .15);
}

.view-archive-toggle.active:hover {
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	background: transparent;
}

.single .view-archive-toggle.active {
	z-index: -10;
	opacity: 0;
	visibility: hidden;
}

.cursor-title {
	position: absolute;
	height: 2.5rem;
	font-size: var(--body-small);
	line-height: var(--body-line-height);
	color: black;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 1rem;
	white-space: nowrap;
}

.cursor-title::after {
	content: "";
	height: 100%;
	left: 0;
	opacity: .2;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}

.archive-col {
	-moz-transition: color 250ms ease;
	-o-transition: color 250ms ease;
	-webkit-transition: color 250ms ease;
	transition: color 250ms ease;
	width: 100%;
	min-height: 4rem;
	padding-top: 3px;
	padding-bottom: 2px;
	position: relative;

	display: grid;
	align-items: center;
	/* -webkit-grid-column-gap: 2rem;
	grid-column-gap: 2rem; */
	-ms-grid-template-columns: var(--img-col-width) 24vw 1fr 1fr 1fr 1fr;
	grid-template-columns: var(--img-col-width) 24vw 1fr 1fr 1fr 1fr;
}

/* .archive-rows-wrapper {
	opacity: 0;
}

.archive-header:hover ~  .archive-rows-wrapper,
.archive-rows-wrapper:hover {
	opacity: 1;
} */

.sort-direction {
	padding-right: 2rem;
}

.js-sort {
	cursor: pointer;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	-moz-transition: color 250ms ease;
	-o-transition: color 250ms ease;
	-webkit-transition: color 250ms ease;
	transition: color 250ms ease;
	display: inline-block;
}

.no-sort {
	cursor: default;
	display: inline-block;
}

.js-sort span {
	-moz-transition: opacity 250ms ease;
	-o-transition: opacity 250ms ease;
	-webkit-transition: opacity 250ms ease;
	transition: opacity 250ms ease;
	color: #000;
	font-size: 10px;
	position: relative;
	top: -1px;
	margin-left: 2px;
	opacity: 0;
}

.js-sort:hover, .js-sort:active {
	color: #000;
}

.js-sort:hover span, .js-sort:active span {
	color: #000;
	opacity: 1;
}

.sort-direction-asc .sort-desc {
	display: none;
}

.sort-direction-desc .sort-asc {
	display: none;
}

.js-sort svg .svg-fill {
	fill: #000;
}

.sort-arrow {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	padding-left: .75rem;
}

.sort-direction a {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.sort-direction a.year {
	justify-content: flex-end;
}

.sort-direction a:hover .sort-arrow {
	opacity: 1;
}

.archive-col-year,
.archive-row-year {
	text-align: right;
	justify-content: flex-end;
	padding-right: 0;
}

.archive-rows-wrapper {
	opacity: 0;
	visibility: hidden;
}

.single-project .archive-rows-wrapper,
.show-archive .archive-rows-wrapper,
.archive-rows-wrapper.active,
.archive-active .archive-rows-wrapper {
	opacity: 1;
	visibility: visible;
}

.archive-rows {
	zoom: 1;
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-top: 3px;
}

.single .archive-row-wrapper {
	opacity: 1;
}

.archive-row-wrapper {
	opacity: 0;
	zoom: 1;
	width: 100%;
	position: relative;
	max-height: 4.45rem;
	margin-top: -3px;
	/* overflow: hidden; */
}

.archive-filtered .archive-row-wrapper {
	opacity: 1;
}

.fadein {
	animation: fadeIn 0.5s 1;
	animation-fill-mode: forwards;
}

.single .fadein {
	animation: none;
	animation-fill-mode: unset;
	opacity: 1;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.archive-rows:hover .archive-row-wrapper:not(:hover),
.archive-rows:hover .archive-row:not(:hover) {
	opacity: .3;
}

.archive-rows:hover .archive-row-wrapper.active:not(:hover) .archive-row {
	opacity: 1;
}

.archive-row-wrapper.active {
	max-height: inherit;
	/* margin-top: -2px; */
}

.archive-content {
	height: 0px;
	visibility: hidden;
	opacity: 0;
	will-change: background-color, color, opacity;
	transition: background-color 1000ms 100ms ease-in-out, color 400ms 100ms ease-in-out, opacity 100ms ease-in-out;
}

.archive-row-wrapper.active .archive-content {
	height: auto;
	max-height: inherit;
	visibility: visible;
	opacity: 1;
	padding-top: 2rem;
	background: white;
}

.archive-row {
	will-change: color;
	-moz-transition: color 250ms ease;
	-o-transition: color 250ms ease;
	-webkit-transition: color 250ms ease;
	transition: color 250ms ease;
	width: 100%;
	min-height: 4.25rem;
	/* padding-top: .5rem;
	padding-bottom: .5rem; */
	padding-top: 0;
	padding-bottom: 0;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	display: grid;
	align-items: center;
	position: relative;
	z-index: 1;
	/* -webkit-grid-column-gap: 2rem;
	grid-column-gap: 2rem; */

	-ms-grid-template-columns: var(--img-col-width) 24vw 1fr 1fr 1fr 1fr;
	grid-template-columns: var(--img-col-width) 24vw 1fr 1fr 1fr 1fr;

	will-change: background-color, color, opacity, border-color;
	transition: background-color 1000ms 100ms ease-in-out, color 400ms 100ms ease-in-out, opacity 100ms ease-in-out, border-color 100ms ease-in-out;
}

/* .archive-row:hover {
	z-index: 10;
} */

.archive-content-close-wrapper {
	position: relative;
	padding-left: var(--img-col-width);
}

.content-close {
	position: relative;
	text-decoration: underline;
	margin-bottom: 2rem;
}

.archive-content-border {
	position: absolute;
	left: 0;
	bottom: 0;
	border-bottom: var(--border-1px-solid);
	height: 1px;
	width: calc(100% - 11.25rem);
	margin-left: var(--img-col-width);
	margin-right: 4rem;
}

.archive-row-wrapper.active .content-close::before {
	content: '';
	position: absolute;
	top: -.375rem;
	left: -2.5rem;
	width: 2.4rem;
	height: 2.4rem;
	background-image: url(../images/close.svg);
	background-repeat: no-repeat;
	opacity: 1;
}

.block-archive-row {
	zoom: 1;
	width: 100%;
	position: relative;
}

.archive-row-img {
	position: relative;
	max-height: 4.45rem;
	z-index: 10;
}

.archive-row-img img {
	width: auto;
	max-width: 80%;
	max-height: 3.5rem;
	padding: .5rem 0 0;
}

.archive-row-img .featured-video-player {
	position: relative;
	/* padding-bottom: 56.25%; */
	height: 0;
	padding-bottom: calc(100% /(var(--aspect-ratio)));
	overflow: hidden;
	width: 100%;
	max-width: 80%;
	max-height: 3.5rem;
	z-index: 0;
}

.archive-row-img .featured-video-player iframe,
.archive-row-img .featured-video-player video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: 70%;
	max-height: 3.5rem;
	object-fit: cover;
	z-index: 0;
	top: 50%;
	transform: translateY(-80%);
}

.big-preview,
.big-preview-title {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: contain;
	width: 100%;
	max-width: 100vw;
	max-width: calc(100vw - 4rem);
	max-height: 100svh;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: -1 !important;
	opacity: 0;
	visibility: hidden;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
}

#outside-preview {
	position: fixed;
	display: flex;
	justify-content: center;
	align-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.featured-video-player video {
	width: 80%;
}

#outside-preview .big-preview img {
	width: calc(100vw - 8rem);
	object-fit: contain;
}

#outside-preview .big-preview,
#outside-preview .big-preview-title {
	opacity: 1;
	visibility: visible;
}

.video-big-preview {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: contain;
	width: 100%;
	max-width: 100vw;
	max-width: calc(100vw - 4rem);
	height: 100svh;
	max-height: 100svh;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: -100;
	opacity: 0;
	visibility: hidden;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
}

.video-big-preview iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	max-width: calc(100vw - 8rem);
	max-height: inherit;
	object-fit: cover;
	z-index: 1;
}

.big-preview-title {
	font-size: 12.2rem;
	mix-blend-mode: difference;
}

.archive-row-img:hover {
	cursor: pointer;
}

.archive-row-img:hover ~ .big-preview,
.archive-row-img:hover ~ .video-big-preview {
	opacity: 1;
	visibility: visible;
}

.big-preview img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-width: calc(100vw - 8rem);
	max-height: 100%;
	object-fit: contain;
}

.archive-row-title:hover ~ .big-preview-title {
	opacity: 1;
	visibility: visible;
}

.archive-row-wrapper.active .archive-row-title:hover ~ .big-preview-title {
	opacity: 0;
	visibility: hidden;
}

.archive-row-title,
.archive-row-type,
.archive-row-client-company,
.archive-row-role,
.archive-row-year {
	position: relative;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	min-height: 4.25rem;
	padding: .5rem 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	/* height: 2.2rem; */

	will-change: background-color, color, opacity, border-color;
	transition: background-color 1000ms 100ms ease-in-out, color 400ms 100ms ease-in-out, opacity 100ms ease-in-out, border-color 100ms ease-in-out;
}

.archive-row:hover .archive-row-title,
.archive-row:hover .archive-row-type,
.archive-row:hover .archive-row-client-company,
.archive-row:hover .archive-row-role,
.archive-row:hover .archive-row-year {
	border-color: rgba(0,0,0,.5);
}

.archive-row-wrapper.active .archive-row .archive-row-title,
.archive-row-wrapper.active .archive-row .archive-row-type,
.archive-row-wrapper.active .archive-row .archive-row-client-company,
.archive-row-wrapper.active .archive-row .archive-row-role,
.archive-row-wrapper.active .archive-row .archive-row-year {
	border-top: var(--border-1px-solid);
}

.archive-row-wrapper.active:hover .archive-row .archive-row-title,
.archive-row-wrapper.active:hover .archive-row .archive-row-type,
.archive-row-wrapper.active:hover .archive-row .archive-row-client-company,
.archive-row-wrapper.active:hover .archive-row .archive-row-role,
.archive-row-wrapper.active:hover .archive-row .archive-row-year {
	border-bottom: var(--border-1px-trans);
}

.archive-row:hover .archive-row-img,
.archive-row:hover .archive-row-title {
	cursor: pointer;
}

.archive-row-wrapper.active .big-preview {
	opacity: 0;
	visibility: hidden;
}

.archive-row .archive-row-title {
	text-decoration: underline;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.archive-row .archive-row-img::after {
	content: '';
	position: absolute;
	top: .875rem;
	right: .5rem;
	width: 2.4rem;
	height: 2.4rem;
	background-image: url(../images/more.svg);
	background-repeat: no-repeat;
	opacity: 0;
}

.archive-row:hover .archive-row-img::after {
	opacity: 1;
}

.archive-row-wrapper.active .archive-row .archive-row-img::after {
	content: '';
	position: absolute;
	top: .875rem;
	right: .5rem;
	width: 2.4rem;
	height: 2.4rem;
	background-image: url(../images/less.svg);
	background-repeat: no-repeat;
	opacity: 1;
}

.archive-row-year {
	padding-right: 1.25rem;
}

@media only screen and (max-width: 767px) {
	.archive-col,
	.archive-row {
		-ms-grid-template-columns: var(--img-col-width) 51vw 18vw 0px 0px 0px;
		grid-template-columns: var(--img-col-width) 51vw 18vw 0px 0px 0px;
	}
	.archive-col-client-company,
	.archive-col-type,
	.archive-col-year,
	.archive-row-client-company,
	.archive-row-type,
	.archive-row-year {
		height: 0 !important;
		overflow: hidden;
		display: none;
	}
	.archive-row .archive-row-title {
		display: inline-block;
		padding-top: 1.25rem;
	}
	.sort-direction {
		padding-right: 0;
	}
	.archive-col-role.sort-direction a {
		justify-content: flex-end;
	}
	.archive-row-role {
		justify-content: flex-end;
	}
	.archive-row-year {
		padding-right: 0;
	}
	.sort-direction a .sort-arrow {
		opacity: 1;
	}
	.archive-rows:hover .archive-row-wrapper.active:not(:hover),
	.archive-rows:hover .archive-row-wrapper:not(:hover),
	.archive-rows:hover .archive-row:not(:hover) {
		opacity: 1;
	}
	.big-preview, .big-preview-title {
		display: none;
	}
	.archive-content-border {
		width: calc(100% - 7.25rem);
	}
	.archive-row-wrapper.active .archive-row .archive-row-img::after,
	.archive-row .archive-row-img::after {
		opacity: 0;
	}
	.archive-row-img .featured-video-player iframe, .archive-row-img .featured-video-player video {
		max-width: 100%;
		transform: translateY(-50%);
	}
	.archive-row .archive-row-img::after {
		width: 1.5rem;
	}
}

/* —————————————————————————————————————————————————— */
/* PROJECT */

.archive-content-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}

.archive-content-details {
	width: 33.5%;
	display: flex;
	flex-direction: column;
	padding-left: var(--img-col-width);
	padding-right: 2rem;
}

.archive-desc {
	margin-bottom: 2rem;
}

.archive-details {

}

.detail-wrapper {
	margin-bottom: 2rem;
}

.archive-content-media {
	width: 65.5%;
	display: flex;
	flex-direction: column;
	flex: 1;
	position: relative;
}

.load {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.9);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 10;
	display: none;
}

.load.active {
	animation: fadeOut 0.5s 1;
	animation-fill-mode: forwards;
	animation-delay: 1.5s;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
		z-index: 10;
	}
	100% {
		opacity: 0;
		z-index: -1;
	}
}

.load-txt {
	color: black;
	font-size: var(--body-small);
	line-height: var(--body-line-height);
}

.project-slider {
	position: relative;
	/* margin-left: 2.5rem; */
	/* padding-right: 2rem; */
}

.project-slider {
	overflow: hidden;
}

.archive-media .archive-pagination {
	position: absolute;
	top: 1rem;
	left: 50%;
	transform: translate(-50%, 0);
	height: 10px;
	width: 80%;
	display: none;
}

.swiper-wrapper {
	/* width: 100vw; */
	max-height: var(--max-h);
	background: white;
}

.news-slider .swiper-wrapper {
	width: 100vw;
	background: transparent;
}

.archive-media .swiper-slide {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.project-slider .inside-slide {
	display: flex;
	flex-direction: column;
}

.project-slider .inside-slide figure {
	background: white;

	position: relative;
	height: 0;
	padding-bottom: calc(100%/(var(--aspect-ratio)));
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	max-height: var(--max-h);

}

.project-slider .inside-slide figure img {
	position: absolute;
	top: 0;
	left: 50%;
	width: auto;
	height: auto;
	height: 100%;
	object-fit: cover;
	max-height: 100%;
	transform: translateX(-50%);
}

.project-slider .inside-slide figure.video-player {
	background: black;
	position: relative;
	/* padding-bottom: 56.25%; */
	height: 0;
	padding-bottom: calc(100%/(var(--aspect-ratio)));
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}

.video-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.project-slider .inside-slide figure figcaption {
	text-align: center;
}

.slider-button-next {
	position: absolute;
	top: 7%;
	right: 0;
	width: 6rem;
	height: 85%;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	mix-blend-mode: difference;
}

.slider-button-next::before {
	content: 'Next';
	font-size: var(--body-small);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: white;
}

.slider-button-prev {
	position: absolute;
	top: 7%;
	left: 0;
	width: 4rem;
	height: 85%;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	mix-blend-mode: difference;
}

.slider-button-prev::before {
	content: 'Prev';
	font-size: var(--body-small);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: white;
}

.swiper-button-disabled {
	opacity: 0;
	cursor: default;
}

.archive-content-section {
	display: flex;
	flex-direction: row;
	/* padding-left: var(--img-col-width); */
}
@media only screen and (max-width: 767px) {
	.archive-content-media {
		width: 100%;
		order: 1;
		padding-left: var(--img-col-width);
	}
	.archive-content-details {
		width: 100%;
		order: 2;
		margin-top: 2rem;
	}
	.project-slider {
		margin-left: 0;
	}
	.load {
		margin-left: var(--img-col-width);
		width: calc(100% - var(--img-col-width));
	}
}


/* —————————————————————————————————————————————————— */
/* INFO */

.info {
	position: fixed;
	top: 6rem;
	left: 4rem;
	width: calc(100vw - 8rem);
	visibility: hidden;
	opacity: 0;
	-moz-transition: opacity 250ms ease;
	-o-transition: opacity 250ms ease;
	-webkit-transition: opacity 250ms ease;
	transition: opacity 250ms ease;
}

.info.active {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}

.info-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.info-img {
	width: 25%;
}

.info-img img {
	width: auto;
	max-height: 9rem;
}

.info-text {
	width: 50%;
	visibility: hidden;
	opacity: 0;
	-moz-transition: opacity 250ms ease;
	-o-transition: opacity 250ms ease;
	-webkit-transition: opacity 250ms ease;
	transition: opacity 250ms ease;
	transition-delay: 325ms;
}

.info.active .info-text {
	visibility: visible;
	opacity: 1;
}

@media only screen and (max-width: 767px) {
	.info {
		left: 2rem;
		width: calc(100vw - 4rem);
	}
	.info-text {
		width: 70%;
		padding-left: 2rem;
	}
}

/* —————————————————————————————————————————————————— */
/* CONTACT */

.contact {
	position: fixed;
	top: 50%;
	left: 4rem;
	width: calc(100vw - 8rem);
	height: calc(50vh - 6rem);
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	visibility: hidden;
}

.contact.active {
	visibility: visible;
}

.contact-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.contact-cell {
	width: 33%;
	display: flex;
	flex-direction: row;
	padding-left: var(--img-col-width);
}

.contact-cell h3 {
	margin-right: 4rem;
}

@media only screen and (max-width: 767px) {
	.contact {
		position: fixed;
		top: 50%;
		left: 2rem;
		width: calc(100vw - 4rem);
	}
	.contact-wrapper {
		flex-direction: column;
	}
	.contact-cell {
		width: 100%;
		padding-left: 0;
		justify-content: space-between;
		margin-bottom: 1rem;
	}
}

/* —————————————————————————————————————————————————— */
/* NEWS */

.news {
	position: fixed;
	top: 50%;
	left: 0;
	width: 100%;
	height: calc(50vh - 6rem);
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	visibility: hidden;
}

.news.active {
	visibility: visible;
}

.news-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.news-slider, .slide-section {
	position: relative;
	padding-left: 4rem;
	/* padding-right: 2rem; */
}

.news-slider {
	overflow-x: hidden;
}

.news .news-pagination {
	position: absolute;
	top: 1rem;
	left: 50%;
	transform: translate(-50%, 0);
	height: 10px;
	width: 80%;
}

.swiper-slide {
	width: 25%;
	display: flex;
	flex-direction: row;
}

.news-slider .inside-slide {
	display: flex;
}

.news-button-next {
	position: absolute;
	top: 0;
	right: 0;
	width: 4rem;
	height: 100%;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
}

.news-button-prev {
	position: absolute;
	top: 0;
	left: 0;
	width: 4rem;
	height: 100%;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
}

.swiper-button-disabled {
	opacity: 0;
}

.news-content-section {
	display: flex;
	flex-direction: row;
	/* padding-left: var(--img-col-width); */
}

.news-content {
	display: flex;
	flex-direction: column;
	padding-right: 4rem;
}

.news-content-section h3 {
	min-width: var(--img-col-width);
}

.news-content-section ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.news-content-section ul li {
	list-style: none;
	opacity: .5;
	margin-right: 1rem;
}

.news-content-section ul li::before {
	content: '#';
	display: inline-block;

}

.svg-fill {
	fill: black;
}
@media only screen and (max-width: 767px) {
	.swiper-slide {
		width: 100%;
	}
	.news-content {
		padding-right: 2rem;
	}
	.news-content-section h3 {
		min-width: 35%;
	}
	.news-content {
		width: 65%;
	}
}

/* —————————————————————————————————————————————————— */
/* FOOTER */

footer {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	z-index: 3;
	max-height: 11rem;
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 2rem 4rem;
	background-color: transparent;
	will-change: background-color, color, opacity;
	transition: background-color 1000ms 100ms ease-in-out, color 400ms 100ms ease-in-out, opacity 100ms ease-in-out;
	flex-direction: column;
	justify-content: flex-start;

	font-size: var(--body-small);
	line-height: var(--body-line-height);
}

.footer-wrapper {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 3;
}

/* .news-col {
	margin-left: 1.5rem;
} */

@media only screen and (max-width: 767px) {
	footer {
		padding: 2rem;
	}
	.news-col {
		margin-left: -8px;
	}
}

/* ---- static build additions: press overlay ---- */
.news .press-wrapper { padding: 0; width: 100%; height: 100%; }
.news .press-frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: transparent;
}

/* press overlay: taller panel — from just under the header to just above the footer */
.news {
	top: 7rem;
	height: calc(100vh - 13rem);
}
