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

@font-face {
	font-family: 'Tiempos Headline Regular';
	src: url("/fonts/tiempos-headline-regular.woff2") format('woff2');
	font-weight: 400;
	font-style: normal;
	font-kerning: normal;
}

@font-face {
	font-family: 'Tiempos Headline Regular Italic';
	src: url("/fonts/tiempos-headline-regular-italic.woff2") format('woff2');
	font-weight: 400;
	font-style: italic;
	font-kerning: normal;
}

@font-face {
	font-family: 'Graphik Web Regular';
	src: url("/fonts/Graphik-Regular-Web.woff2") format('woff2'),
	url("/fonts/Graphik-Regular-Web.woff") format('woff');
	font-weight: 400;
	font-style: normal;
	font-kerning: normal;
}

@font-face {
	font-family: 'Graphik Web Semibold';
	src: url("/fonts/Graphik-Semibold-Web.woff2") format('woff2'),
	url("/fonts/Graphik-Semibold-Web.woff") format('woff');
	font-weight: 600;
	font-style: normal;
	font-kerning: normal;
}

body {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100vh;
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	font-kerning: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: 'liga' 1, 'kern' 1, 'calt' 1;
	-webkit-font-feature-settings: 'liga' 1, 'kern' 1, 'calt' 1;
	font-feature-settings: 'liga' 1, 'kern' 1, 'calt' 1;
	background-color: #fff;
	color: #000;
}

main {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
}

a {
	margin: 0;
	text-decoration: none;
	cursor: pointer;
}

a:link {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

a:visited {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

a:hover {
	text-decoration: none;
	cursor: pointer;
}

a:active {
	text-decoration: none;
	cursor: pointer;
}

b, strong {
	font-family: inherit;
	font-weight: 600;
	font-style: normal;
}

i, em {
	font-family: inherit;
	font-weight: inherit;
	font-style: italic;
}

sup, sub {
	position: relative;
	font-size: 0.6em;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sup.footnote-number {
	position: relative;
	vertical-align: baseline;
	font-feature-settings: "numr";
	top: initial;
	font-size: 1em;
}

sub {
	position: relative;
	/* font-size: .6em; */
	vertical-align: baseline;
	font-weight: 800;
	bottom: -0.155em;
	font-size: 0.52em;
}

img {
	pointer-events: none;
}

img, svg {
	display: block;
	width: 100%;
	object-fit: contain;
}

/* List */

ul {
	list-style-position: inside;
}

ul > ul {
	padding-left: 32px;
}

ul > ul > ul {
	padding-left: 32px;
}

ul li {
	margin-top: 0.4em;
	list-style-position: inside;
}

dt {
	font-family: 'Graphik Web Semibold', sans-serif;
	font-weight: 600;
	font-style: normal;
}

/* Form */

form button {
	margin-top: 48px;
}

label {
	display: block;
	margin-top: 24px;
	font-family: 'Graphik Web Semibold', sans-serif;
	font-weight: 600;
	font-style: normal;
}

input {
	display: block;
	flex-direction: column;
	padding: 22px 16px;
	margin: 0 0 16px 0;
	width: 100%;
	height: 64px;
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	border-radius: 12px;
	border: 1px solid #d2d2d2;
}

input::placeholder {
	color: #666;
}

input:required {
	border-color: #d2d2d2;
}

input:focus {
	border: 2px solid #0066cc;
}

input:user-invalid {
	border-color: #cc0d00;
	background-color: rgba(204, 13, 0, 0.05)
}

textarea {
	display: block;
	flex-direction: column;
	padding: 22px 16px;
	margin-top: 16px;
	width: 100%;
	height: 128px;
	min-height: 128px;
	max-height: 256px;
	resize: vertical;
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	color: #000;
	border-radius: 12px;
	border: 1px solid #d2d2d2;
}
textarea::placeholder {
	color: #666;
}

textarea:required {
	border-color: #d2d2d2;
}

textarea:focus {
	border: 2px solid #0066cc;
}

textarea:user-invalid {
	border-color: #cc0d00;
	background-color: rgba(204, 13, 0, 0.05)
}

/* Typography */

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0.4em;
}

p {
	margin-bottom: 0.8em;
}

p:first-of-type {
	margin-top: 0;
}

.typography-headline-standalone {
	margin-bottom: 0;
	font-family: 'Tiempos Headline Regular', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 96px;
	line-height: 100px;
}

@media only screen and (max-width: 1200px) {
	.typography-headline-standalone {
		font-size: 80px;
		line-height: 84px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-headline-standalone {
		font-size: 48px;
		line-height: 52px;
	}
}

.typography-headline-super {
	font-family: 'Tiempos Headline Regular', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 80px;
	line-height: 84px;
}

@media only screen and (max-width: 1200px) {
	.typography-headline-super {
		font-size: 64px;
		line-height: 68px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-headline-super {
		font-size: 48px;
		line-height: 52px;
	}
}

.typography-headline-elevated {
	font-family: 'Tiempos Headline Regular', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 64px;
	line-height: 68px;
}

@media only screen and (max-width: 1200px) {
	.typography-headline-elevated {
		font-size: 48px;
		line-height: 52px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-headline-elevated {
		font-size: 40px;
		line-height: 44px;
	}
}

.typography-headline {
	font-family: 'Tiempos Headline Regular', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 48px;
	line-height: 52px;
}

@media only screen and (max-width: 1200px) {
	.typography-headline {
		font-size: 40px;
		line-height: 44px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-headline {
		font-size: 32px;
		line-height: 36px;
	}
}

.typography-standalone-subhead {
	font-family: 'Tiempos Headline Regular', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 48px;
	line-height: 52px;
}

@media only screen and (max-width: 1200px) {
	.typography-standalone-subhead {
		font-size: 32px;
		line-height: 40px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-standalone-subhead {
		font-size: 28px;
		line-height: 36px;
	}
}

.typography-headline-reduced {
	font-family: 'Tiempos Headline Regular', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 32px;
	line-height: 36px;
}

@media only screen and (max-width: 1200px) {
	.typography-headline-reduced {
		font-size: 32px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-headline-reduced {
		font-size: 28px;
		line-height: 32px;
	}
}

.typography-quote {
	font-family: 'Tiempos Headline Regular', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 40px;
	line-height: 48px;
}

@media only screen and (max-width: 1200px) {
	.typography-quote {
		font-size: 32px;
		line-height: 40px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-quote {
		font-size: 28px;
		line-height: 36px;
	}
}

.typography-quote-reduced {
	font-family: 'Tiempos Headline Regular', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 32px;
	line-height: 40px;
}

@media only screen and (max-width: 1200px) {
	.typography-quote-reduced {
		font-size: 28px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-quote-reduced {
		font-size: 24px;
		line-height: 32px;
	}
}

.typography-callout {
	font-family: 'Graphik Web Semibold', sans-serif;
font-weight: 600;
	font-style: normal;
	font-size: 32px;
	line-height: 36px;
}

.typography-eyebrow-super {
	font-family: 'Tiempos Headline Regular', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 32px;
	line-height: 36px;
}

@media only screen and (max-width: 1200px) {
	.typography-eyebrow-super {
		font-size: 28px;
		line-height: 32px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-eyebrow-super {
		font-size: 24px;
		line-height: 28px;
	}
}

.typography-eyebrow-elevated {
	font-family: 'Tiempos Headline Regular', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 28px;
	line-height: 32px;
}

@media only screen and (max-width: 1200px) {
	.typography-eyebrow-elevated {
		font-size: 24px;
		line-height: 28px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-eyebrow-elevated {
		font-size: 20px;
		line-height: 24px;
	}
}

.typography-label {
	font-family: 'Graphik Web Semibold', sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 24px;
	line-height: 28px;
}

@media only screen and (max-width: 1200px) {
	.typography-label {
		font-size: 20px;
		line-height: 24px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-label {
		font-size: 20px;
		line-height: 24px;
	}
}

.typography-eyebrow {
	font-family: 'Graphik Web Semibold', sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 24px;
	line-height: 28px;
}

@media only screen and (max-width: 1200px) {
	.typography-eyebrow {
		font-size: 20px;
		line-height: 24px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-eyebrow {
		font-size: 20px;
		line-height: 24px;
	}
}

.typography-intro-elevated {
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 24px;
	line-height: 32px;
}

@media only screen and (max-width: 1200px) {
	.typography-intro-elevated {
		font-size: 20px;
		line-height: 28px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-intro-elevated {
		font-size: 20px;
		line-height: 28px;
	}
}

.typography-eyebrow-reduced {
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	line-height: 24px;
}

@media only screen and (max-width: 1200px) {
	.typography-eyebrow-reduced {
		font-size: 20px;
		line-height: 24px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-eyebrow-reduced {
		font-size: 18px;
		line-height: 22px;
	}
}

.typography-intro {
	font-family: 'Graphik Web Regular', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	margin-top: 24px;
}

@media only screen and (max-width: 1200px) {
	.typography-intro {
		font-size: 20px;
		line-height: 28px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-intro {
		font-size: 18px;
		line-height: 26px;
	}
}

.typography-tout {
	font-family: 'Graphik Web Semibold', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	line-height: 24px;
}

@media only screen and (max-width: 1200px) {
	.typography-tout {
		font-size: 18px;
		line-height: 22px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-tout {
		font-size: 18px;
		line-height: 22px;
	}
}

.typography-body {
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
}

@media only screen and (max-width: 1200px) {
	.typography-body {
		font-size: 16px;
		line-height: 24px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-body {
		font-size: 16px;
		line-height: 24px;
	}
}

.typography-body-tight {
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
}

@media only screen and (max-width: 1200px) {
	.typography-body-tight {
		font-size: 16px;
		line-height: 20px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-body-tight {
		font-size: 16px;
		line-height: 20px;
	}
}

.typography-body-reduced {
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 20px;
}

@media only screen and (max-width: 1200px) {
	.typography-body-reduced {
		font-size: 14px;
		line-height: 20px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-body-reduced {
		font-size: 14px;
		line-height: 20px;
	}
}

.typography-body-reduced-tight {
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 18px;
}

@media only screen and (max-width: 1200px) {
	.typography-body-reduced-tight {
		font-size: 14px;
		line-height: 18px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-body-reduced-tight {
		font-size: 14px;
		line-height: 18px;
	}
}

.typography-caption {
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
	line-height: 16px;
}

@media only screen and (max-width: 1200px) {
	.typography-caption {
		font-size: 12px;
		line-height: 16px;
	}
}

@media only screen and (max-width: 720px) {
	.typography-caption {
		font-size: 12px;
		line-height: 16px;
	}
}

/* Rows and Columns */

.row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}

@media only screen and (max-width: 1200px) {
	.row {
		width: 720px;
	}
}

@media only screen and (max-width: 720px) {
	.row {
		flex-direction: column;
		width: 85%;
		max-width: 85%;
		padding-left: 0;
		padding-right: 0;
	}
}

.column {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-width: 0;
	
}

@media only screen and (min-width: 640px) {
	.large-1 {
		width: 8.33333%;
	}

	.large-2 {
		width: 16.66667%;
	}
	
	.large-3 {
		width: 25%;
	}
	
	.large-4 {
		width: 33.33333%;
	}
	
	.large-5 {
		width: 41.66667%;
	}
	
	.large-6 {
		width: 50%;
	}
	
	.large-7 {
		width: 58.33333%;
	}
	
	.large-8 {
		width: 66.66667%;
	}
	
	.large-9 {
		width: 75%;
	}
	
	.large-10 {
		width: 83.33333%;
	}
	
	.large-11 {
		width: 91.66667%;
	}
	
	.large-12 {
		width: 100%;
	}
	
	.large-centered {
		margin-right: auto;
		margin-left: auto;
	}
	
	.large-offset-1 {
		margin-left: 8.33333%;
	}
	
	.large-offset-2 {
		margin-left: 16.66667%;
	}
	
	.large-offset-3 {
		margin-left: 25%;
	}
}

@media screen and (max-width: 720px) {
	.large-offset-1 {
		margin-left: 0 ;
	}
	
	.large-offset-2 {
		margin-left: 0 ;
	}
	
	.large-offset-3 {
		margin-left: 0 ;
	}
}

@media only screen and (max-width: 720px) {
	.small-2 {
		width: 16.66667%;
	}
	
	.small-3 {
		width: 25%;
	}
	
	.small-4 {
		width: 33.33333%;
	}

	.small-6 {
		width: 50%;
	}

	.small-9 {
		width: 75%;
	}

	.small-12 {
		width: 100%;
	}
}

/* Buttons */

.button {
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	width: intrinsic;
	height: 48px;
	min-width: 24px;
	padding: 8px 16px;
	margin-right: auto;
	margin-left: auto;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	outline: none;
	border: none;
	border-radius: 24px;
	background-color: #000;
	cursor: pointer;
	transition: all .25s ease;
}

.button:visited {
	background-color: #000;
	transition: all .25s ease;
}

.button:hover {
	background-color: #666;
	transition: all .25s ease;
}

.button:active {
	background-color: #666;
	transition: all .25s ease;
}

.button.secondary {
	background-color: #f5f5f5;
	color: #000;
}

.button.secondary:visited {
	background-color: #000;
	transition: all .25s ease;
}

.button.secondary:hover {
	background-color: #f2f2f2;
	transition: all .25s ease;
}

.button.secondary:active {
	background-color: #e6e6e6;
	transition: all .25s ease;
}

.button-reduced {
	font-size: 12px;
	line-height: 16px;
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	min-width: 24px;
	padding: 3px 12px;
	border-radius: 12px;
}

/* Header */

header {
	width: 100%;
	height: 64px;
	padding-top: 22px;
	padding-bottom: 22px;
	background-color: rgba(255,255,255,0.8);
	backdrop-filter: saturate(180%) blur(20px);
	transition: all .5s ease;
	position: fixed;
	top: 0;
	z-index: 999;
}

@media only screen and (max-width: 720px) {
	header {
		width: 100vw;
	}
}

/* Nav */

header > nav {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 960px;
	height: 16px;
	margin: 0 auto;
}

@media screen and (max-width: 1200px) {
	header > nav {
		width: 640px;
	}
}

@media screen and (max-width: 720px) {
	header > nav {
		width: 85%;
	}
}

header > nav ul {
	display: flex;
	flex-direction: row;
	gap: 24px;
	margin: 0;
}

header > nav ul li {
	display: inline-block;
	margin-top: 0;
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
	line-height: 16px;
	list-style-type: none;
	text-align: right;
	color: #666;
}

header > nav svg {
	display: block;
	width: 56px;
	height: 20px;
	fill: #000;
}

header a:link {
	text-decoration: none;
	color: #000;
}

header a:visited {
	text-decoration: none;
	color: #000;
}

header a:hover {
	text-decoration: none;
	color: #666;
}

header a:active {
	text-decoration: none;
	color: #666;
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 32px;
	row-gap: 64px;
}

@media screen and (max-width: 720px) {
	.work-grid {
		display: flex;
		row-gap: 32px;
	}
}

.work-grid a:link {
	color: #000;
}

.work-grid a:visited {
	color: #000;
}
.work-grid a:hover {
	color: #000;
}
.work-grid a:active {
	color: #000;
}

.work-grid a img {
	filter: opacity(100%);
	transition: all .25s ease;
}

.work-grid a:hover img {
	filter: opacity(90%);
	transition: all .25s ease;
}

.work-grid img {
	margin-bottom: 24px;
	object-fit: cover;
	object-position: 50% 50%;
	border-radius: 8px;
}

.work-grid .three-four img {
	aspect-ratio: 3 / 4;
}

.work-grid .three-two img {
	aspect-ratio: 3 / 2;
}

.work-grid .one-one img {
	aspect-ratio: 1 / 1;
}

.work-grid .full {
	grid-column: 1 / span 2;
	aspect-ratio: 3 / 2;
}

.work-grid .full img {
	aspect-ratio: 3 / 2;
}

.work-grid h1 {
	margin-bottom: 16px;
}

.work-title {
	font-family: 'Graphik Web Semibold', sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 18px;
	line-height: 22px;
}

.work-grid p {
	margin-bottom: 0;
	color: #888;
}

/* Containers */

.subsection-content {
	display: grid;
	grid-row-gap: 80px;
	margin-bottom: 160px;
}

@media screen and (max-width: 1200px) {
	.subsection-content {
		grid-row-gap: 60px;
		margin-bottom: 120px;
	}
}

@media screen and (max-width: 720px) {
	.subsection-content {
		grid-row-gap: 40px;
		margin-bottom: 80px;
	}
}

.subsection-content:first-of-type {
	margin-top: 224px;
}

@media screen and (max-width: 1200px) {
	.subsection-content:first-of-type {
		margin-top: 192px;
	}
}

@media screen and (max-width: 720px) {
	.subsection-content:first-of-type {
		margin-top: 160px;
	}
}

main.project .subsection-content {
	margin-bottom: 240px;
}

@media only screen and (max-width: 1200px) {
	main.project .subsection-content {
		margin-bottom: 160px;
	}
}

main.project .subsection-content:first-of-type {
	margin-top: 144px;
	margin-bottom: 0;
}

main.subsection-content:last-of-type {
	margin-bottom: 0;
}

.row.terms {
	margin-top: 64px;
	margin-bottom: 0;
}

.terms h2 {
	margin-bottom: 12px;
}

.terms p {
	margin-bottom: 16px;
}

.terms .disclaimer {
	text-transform: uppercase;
}

.terms > div > div *:last-child {
	margin-bottom: 32px;
}

/* New */

.image-hero {
	position: relative;
}

.image-hero img, .image-hero video {
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	padding-right: 120px;
	padding-left: 120px;
}

@media only screen and (max-width: 1200px) {
	.image-hero img, .image-hero video {
		padding-right: 80px;
		padding-left: 80px;
	}
}

@media only screen and (max-width: 720px) {
	.image-hero img, .image-hero video {
		width: 85%;
		padding-right: 0;
		padding-left: 0;
		margin-right: auto;
		margin-left: auto;
	}
}

.image-hero svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 480px;
	fill: #fff;
}

.image-full {
	width: 100%;
	padding-right: 120px;
	padding-left: 120px;
}

@media only screen and (max-width: 1200px) {
	.image-full {
		padding-right: 80px;
		padding-left: 80px;
	}
}

@media only screen and (max-width: 720px) {
	.image-full {
		width: 85%;
		padding-right: 0;
		padding-left: 0;
		margin-right: auto;
		margin-left: auto;
	}
}

.image-full img, .image-full video {
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	aspect-ratio: 16 / 9;
}

.image-fullscreen {
	margin-bottom: 160px;
}

@media only screen and (max-width: 1200px) {
	.image-fullscreen {
		margin-bottom: 120px;
	}
}

.image-fullscreen img, .image-fullscreen video {
	display: block;
	width: 100%;
	height: 960px;
	object-fit: cover;
	object-position: 50% 50%;
}

@media only screen and (max-width: 1200px) {
	.image-fullscreen img, .image-fullscreen video {
		height: 720px;
	}
}

@media only screen and (max-width: 720px) {
	.image-fullscreen img, .image-fullscreen video {
		height: 640px;
	}
}

main.project .image-fullscreen {
	margin-bottom: 240px;
}

@media only screen and (max-width: 1200px) {
	main.project .image-fullscreen {
		margin-bottom: 160px;
	}
}

.fifty-fifty {
	display: grid;
	grid-auto-columns: minmax(0, 1fr);
	grid-auto-flow: column;
	gap: 40px;
}

@media only screen and (max-width: 720px) {
	.fifty-fifty {
		grid-auto-flow: row;
	}
}

.fifty-fifty img, .fifty-fifty video {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: 50% 50%;
}

@media only screen and (max-width: 720px) {
	.fifty-fifty img, .fifty-fifty video {
		aspect-ratio: 1 / 1;
	}
}

.fifty-fifty p {
	width: 100%;
	padding: 32px 32px 0 32px;
	font-size: 14px;
	line-height: 20px;
}

.project-details {
	margin: 160px 0;
}

@media only screen and (max-width: 1200px) {
	.project-details {
		margin: 120px 0;
	}
}

.project-details h1 {
	font-family: 'Graphik Web Semibold', sans-serif;
	font-weight: 600;
	font-style: normal;
}

.project-details dl {
	margin-top: 32px;
}

.project-details dt {
	margin-bottom: 8px;
}

.pull-quote {
	text-align: center;
}

.pull-quote p {
	margin-bottom: 0;
}

.pull-quote p:first-of-type {
	margin-bottom: 32px;
}

.client-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-rows: 160px;
	justify-content: center;
	width: 100%;
}

.client-grid > div {
	display: flex;
	justify-content: center;
	align-items: center;
}

.client-grid > div svg, .client-grid > div img {
	display: block;
	max-width: 96px;
	max-height: 32px;
	fill: #000;
}

.tab {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 12px;
	margin-bottom: 80px;
	overflow: hidden;
}

@media only screen and (max-width: 720px) {
	.tab {
		justify-content: flex-start;
		overflow: scroll;
	}
	
	.tab::-webkit-scrollbar {
		display: none;
	}
}

.tab button {
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	width: fit-content;
	padding: 8px 16px;
	margin-top: 24px;
	border-radius: 18px;
	background-color: #f5f5f5;
	color: #000;
	text-decoration: none;
	outline: none;
	border: none;
	border-radius: 24px;
	cursor: pointer;
	transition: all .25s ease;
}

.tab button:hover {
	background-color: #e6e6e6;
}

.tab button.active {
	background-color: #000;
	color: #fff;
}

.tabcontent {
	display: none;
}

/* Modals */

dialog {
	position: fixed;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: 800px;
	min-height: 640px;
	padding: 122px 80px 80px 80px;
	background-color: #fff;
	border: none;
	text-align: center;
	border-radius: 24px;
}

dialog::backdrop {
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: saturate(160%) blur(20px);
}

dialog form button.close {
	position: absolute;
	top: 24px;
	right: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	margin: 0;
	color: #666;
	background-color: rgba(0, 0, 0, 0.1)
}

dialog form button.close:hover {
	background-color: rgba(0, 0, 0, 0.2)
}

dialog h1, dialog h2, dialog h3, dialog h4, dialog h5, dialog h6 {
	width: 100%;
	padding-right: 80px;
	padding-left: 80px;
	font-family: 'Graphik Web Semibold', sans-serif !important;
	font-weight: 600;
	font-style: normal;
}

dialog p {
	width: 100%;
	padding-right: 80px;
	padding-left: 80px;
	margin-bottom: 48px;
}

dialog form {
	width: 100%;
	padding-right: 80px;
	padding-left: 80px;
}

/* Footer */

footer {
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer nav {
	display: grid;
	grid-auto-columns: minmax(0, 1fr);
	grid-auto-flow: column;
	gap: 24px;
	width: 960px;
	margin-bottom: 24px;
}

@media screen and (max-width: 720px) {
	footer nav {
		grid-auto-columns: 100%;
		grid-auto-flow: row;
		width: 85%;
	}
}

footer svg {
	width: 20px;
	height: 20px;
	fill: #888;
}

footer nav h3 {
	margin-bottom: 12px;
	font-family: 'Graphik Web Semibold', sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	color: #000;
}

footer nav ul {
	margin: 0;
}

footer nav ul:last-child {
	margin-bottom: 0;
}

footer nav ul li {
	display: block;
	margin-bottom: 8px;
	color: #888;
}

footer nav ul li:first-of-type {
	color: #888;
}

footer > div {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 48px;
	padding: 24px 0;
	border-top: solid 1px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 720px) {
	footer > div {
		flex-direction: column;
		gap: 24px;
	}
}

footer > div > div {
	display: flex;
	flex-direction: row;
	gap: 32px;
	width: 50%;
}

@media screen and (max-width: 720px) {
	footer > div > div {
		width: 100%;
	}
}

footer > div > div:last-of-type {
	justify-content: flex-end;
}

@media screen and (max-width: 720px) {
	footer > div > div:last-of-type {
		justify-content: flex-start;
	}
}

footer > div > div ul {
	margin: 0;
}

footer ul {
	display: flex;
	flex-direction: row;
	gap: 24px;
	font-family: 'Graphik Web Regular', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
	line-height: 16px;
}

footer ul li {
	display: inline-block;
	list-style: none;
	margin-top: 0;
	color: #888;
}

footer a {
	color: #666 !important;
}

footer a:hover {
	text-decoration: underline;
}


footer dt {
	margin-bottom: 8px;
	font-size: 12px;
	line-height: 16px;
	color: #666;
}

footer dd {
	margin-top: 8px;
	font-size: 12px;
	line-height: 16px;
	color: #666;
}

/* Utilities */

.hide {
	display: none !important;
}

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

/* Product Bezels */

.hardware-frame {
	display: block;
	margin-right: auto;
	margin-left: auto;
	background-repeat: no-repeat;
	background-size: contain;
}

.iphone-16-pro-max {
	width: 308.5px;
	height: 640px;
	background-image: url("../images/iphone_16_pro_max_black_titanium_portrait_2x.png");
}

@media screen and (max-width: 1200px) {
	.iphone-16-pro-max {
		width: 236px;
		height: 480px;
	}
}

.iphone-16-pro-max img, .iphone-16-pro-max video {
	display: block;
	width: 286px;
	height: 621px;
	transform: translate(11px, 9.5px);
	object-fit: cover;
	object-position: 0 0;
	-webkit-mask-image: url(../images/iphone_16_pro_max_mask_portrait_2x.png);
	mask-image: url(../images/iphone_16_pro_max_mask_portrait_2x.png);
	-webkit-mask-position: center center;
	mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-size: 100% 100%;
	mask-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
	.iphone-16-pro-max img, .iphone-16-pro-max video {
		width: 212px;
		height: 459px;
		transform: translate(12px, 11px);
	}
}

/* Slideshows */

.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

.slides {
	display: none;
	height: 640px;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.prev {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 24px;
	width: 48px;
	height: 48px;
	margin-top: -24px;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	border-radius: 50%;
	transition: 0.25s ease;
	user-select: none;
}

.next {
	display: flex;
	flex-direction: row;
	justify-items: center;
	align-items: center;
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 24px;
	width: 48px;
	height: 48px;
	margin-top: -24px;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	border-radius: 50%;
	transition: 0.25s ease;
	user-select: none;
}

.prev svg, .next svg {
	fill: #fff;
}

.prev:hover, .next:hover {
	background-color: rgba(255, 255, 255, 0.6);
	color: #000;
}

.prev:hover svg, .next:hover svg {
	fill: #000;
}

.dot-indicators {
	display: flex;
	flex-direction: row;
	gap: 12px;
	justify-content: center;
	padding-top: 24px;
	padding-bottom: 24px;
}

.dot {
  cursor: pointer;
  height: 8px;
  width: 8px;
  background-color: #d9d9d9;
  border-radius: 50%;
  display: block;
  transition: 0.25s ease-in-out;
}

.active, .dot:hover {
  background-color: #000;
  transition: 0.25s ease-in-out;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-timing-function: ease-in-out;
  animation-duration: 0.5s;
}

@keyframes fade {
  from {
		opacity: 1
	}
  to {
		opacity: 1
	}
}