/* ----- SWITCH THEORIES AND AWARDS OFF/ON (none/block) ----*/
html, body {
  overflow-x: hidden;
}
.writings-hide {
	display: none !important;
}
.recognition-hide {
	display: none !important;
}
/* ----- DO NOT TOUCH BELOW HERE ----*/

/* Black overlay for slide transition */

.desktop-twa {
	display: block;
}
.mobile-twa {
	display: none;
	margin: 0px auto;
	max-width: 500px;
}
.mobile-twa path {
	stroke-width: 10px;
}
.mobile-twa rect {
	stroke-width: 10px;
}
video[autoplay]::-webkit-media-controls-start-playback-button {
	display: none !important;
	-webkit-appearance: none;
}
.awards-row.jobs-section>div {
	border-top: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
	background: none !important;
}
.people-row .slick-list {
	height: 0px !important;
	padding-bottom: 66%;
}
.people-row .slick-list video {
	width: 100% !important;
}
#page-transition-overlay {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 100%;
	background: black;
	z-index: 9999;
	transition: top 0.5s ease;
	pointer-events: none;
	/* Start fully visible (covering page) */
}
@keyframes dots {
	0%, 20% {
		content: "loading";
	}
	40% {
		content: "loading.  ";
	}
	60% {
		content: "loading .. ";
	}
	80%, 100% {
		content: "loading ...";
	}
}
#page-transition-overlay:before {
	display: flex;
	animation: dots 1.5s steps(3, end) infinite;
	color: white;
	font-size: 13rem;
	text-transform: uppercase;
	justify-content: center;
	margin: auto;
	font-weight: 600;
	align-items: center;
	content: "loading";
}
#page-transition-overlay.active {
	top: -100%;
	/* Slide up to hide */
	pointer-events: none;
}
#page-transition-overlay.inactive {
	top: 0;
	/* Slide down to cover */
	pointer-events: auto;
}
/* 外层导航容器 */

.quotes-row {
	padding-top: 0px !important;
	margin: 0px auto !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
	position: relative;
	left: 0rem;
	width: calc(100% - 0rem);
}
.quotes-row>div {
	padding-right: 0px !important;
	padding-left: 0px !important;
}
.work-nav {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	/* 居中 */
	align-items: center;
}
.office-nav {
	position: relative;
	width: 100%;
	margin-top: 2.5rem;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	/* 居中 */
	align-items: center;
}
.filter-open .sub-nav {
	transform: translate(0px);
	transition: 0.5s ease all;
}
.filter-open .office-nav-alt {
	transform: translate(0px);
	transition: 0.5s ease all;
}
.filter-link {
	display: none;
}
/* 内层导航：横排，居中，保持间距，字体丝滑缩放 */

.work-nav-inner, .sub-nav-inner, .office-nav-inner {
	display: flex;
	justify-content: center;
	font-size: clamp(10px, calc(10px + 0.5vw), 31px) !important;
	white-space: nowrap;
	/* 每个index不换行 */
}
.work-nav-inner a, .sub-nav-inner a {
	text-decoration: none;
	color: #000;
	transition: color 0.3s;
	white-space: nowrap;
	/* 确保每个 index 自己不换行 */
}
.sub-nav-inner a:hover {
	-webkit-text-stroke: 1px #fff;
	/* 2px thick black outline */
	text-stroke: 1px #fff;
	transition: 0.5s ease all;
}
.office-nav-inner-alt a {
	text-decoration: none;
	color: #000;
	transition: color 0.3s;
	white-space: nowrap;
}
.office-nav-inner-alt a:hover {
	-webkit-text-stroke: 1px #fff;
	/* 2px thick black outline */
	text-stroke: 1px #fff;
	color: black !Important;
	transition: 0.5s ease all;
}
.office-nav-inner-alt a:hover, .work-nav-inner a:hover, .sub-nav-inner a:hover {
	color: #000;
}
/* 菜单按钮（大屏隐藏，小屏显示） */

.work-nav .menu-toggle, .sub-nav .menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #000;
	position: absolute;
	right: 20px;
	top: 15px;
	z-index: 2001;
}
.thumbnail {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1s ease-out, transform 1s ease-out;
}
.thumbnail.visible {
	opacity: 1;
	transform: translateY(0);
}
/**
 * Content
 */

@keyframes jiggle {
	0%, 100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(1deg);
	}
	75% {
		transform: rotate(-1deg);
	}
}
@keyframes floaty {
	0% {
		transform: translate(0, 0);
	}
	25% {
		transform: translate(10px, -10px);
	}
	50% {
		transform: translate(0, -20px);
	}
	75% {
		transform: translate(-10px, -10px);
	}
	100% {
		transform: translate(0, 0);
	}
}
@keyframes floatUpDown {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}
@keyframes circularFloat {
	0% {
		transform: translate(0, 0);
	}
	25% {
		transform: translate(10px, -10px);
	}
	50% {
		transform: translate(20px, 0);
	}
	75% {
		transform: translate(10px, 10px);
	}
	100% {
		transform: translate(0, 0);
	}
}
@keyframes zigzagFloat {
	0% {
		transform: translate(0, 0);
	}
	20% {
		transform: translate(10px, -5px);
	}
	40% {
		transform: translate(-10px, -10px);
	}
	60% {
		transform: translate(10px, -15px);
	}
	80% {
		transform: translate(-10px, -20px);
	}
	100% {
		transform: translate(0, -0px);
	}
}
@keyframes randomSway {
	0% {
		transform: translate(0px, 0px);
	}
	20% {
		transform: translate(5px, -8px);
	}
	40% {
		transform: translate(-6px, 6px);
	}
	60% {
		transform: translate(7px, -5px);
	}
	80% {
		transform: translate(-4px, 10px);
	}
	100% {
		transform: translate(0px, 0px);
	}
}
@keyframes floatScaleUpDown {
	0%, 100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-15px) scale(1.05);
	}
}
@keyframes floatScaleOrbit {
	0% {
		transform: translate(0, 0) scale(1);
	}
	25% {
		transform: translate(10px, -10px) scale(1.03);
	}
	50% {
		transform: translate(20px, 0) scale(1.05);
	}
	75% {
		transform: translate(10px, 10px) scale(1.03);
	}
	100% {
		transform: translate(0, 0) scale(1);
	}
}
@keyframes floatScaleSway {
	0% {
		transform: translate(0px, 0px) scale(1);
	}
	20% {
		transform: translate(5px, -8px) scale(1.02);
	}
	40% {
		transform: translate(-6px, 6px) scale(1.03);
	}
	60% {
		transform: translate(7px, -5px) scale(1.04);
	}
	80% {
		transform: translate(-4px, 10px) scale(1.02);
	}
	100% {
		transform: translate(0px, 0px) scale(1);
	}
}
[data-set-id="37727013"] [data-view="pinned_bottom"] {
	display: none !important;
}
[data-set-id="37727013"] [data-view="pinned_top"] {
	display: none !important;
}
[data-set-id="37727013"] .close-pdf {
	display: block;
	position: fixed;
	right: 30px;
	top: 30px;
	;
	;
}
.close-pdf {
	display: none;
}
.close-pdf a {
	font-family: "owners", sans-serif !important;
	color: black;
	font-weight: 600;
	font-size: 20px;
}
[data-set-id="37727013"] small {
	color: black !important;
	font-weight: 400 !important;
	font-size: 20px !important;
	font-family: "owners", sans-serif !important;
}
[data-set-id="37727013"] .content_container .page_container {
	padding: 100px 0px;
	max-width: 1000px;
	margin: 0px auto;
	width: calc(100% - 100px);
}
[thumbnails="grid"] {
	visibility: visible !important;
	opacity: 1 !important;
}
.close-text {
	display: none;
}
.open .close-text {
	display: inline-block;
}
.open .open-text {
	display: none;
}
.works img {
	display: inline-block;
	/* important for transform to work */
	will-change: transform;
}
/* Classes for each animation */

.floatScaleUpDown {
	animation: floatScaleUpDown 4s ease-in-out infinite;
}
.floatScaleSway {
	animation: floatScaleSway 10s ease-in-out infinite;
}
.jiggle {
	animation: jiggle 1s ease-in-out infinite;
}
.circularFloat {
	animation: circularFloat 8s ease-in-out infinite;
}
.floatScaleOrbit {
	animation: floatScaleOrbit 8s ease-in-out infinite;
}
.works a:nth-child(10) img {
	animation: floatScaleOrbit 8s ease-in-out infinite;
}
.works a:nth-child(15) img {
	animation: circularFloat 8s ease-in-out infinite;
}
.works a:nth-child(12) img {
	animation: jiggle 1s ease-in-out infinite;
}
.works a:nth-child(5) img {
	animation: floatScaleSway 10s ease-in-out infinite;
}
.works a:nth-child(4) img {
	animation: floatScaleUpDown 4s ease-in-out infinite;
}
.works a:nth-child(14) img {
	animation: jiggle 1s ease-in-out infinite;
}
.t-projects {
	padding-top: 5rem !important;
	padding-bottom: 0px !important;
}
.thumb_image video {
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
}
/*project template */

[data-set-id="37645584"] .content_container .page_container {
	max-width: 1200px;
}
[data-set-id="37645584"] .content_container .page_container:first-child {
	max-width: 100%;
}
[data-set-id="37645584"] [local-style="37648800"] {
	display: none;
}
[data-set-id="37645584"] [local-style="37662009"] {
	display: block;
}
[local-style="37662009"] {
	display: none;
}
.table.expand .more {
	margin-top: 0px !Important;
}
.arrow {
	transition: 0.5s ease all;
	transform: rotate(0deg);
	position: absolute;
	right: 0px;
	transform-origin: center;
	top: 17px;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(https://files.cargocollective.com/c3016122/arrow.svg);
}
.table.expand {
	padding: 0px 0rem !Important;
	border: 0px !important;
}
.expanded .arrow {
	transition: 0.5s ease all;
	transform: rotate(180deg);
}
.table-row.first {
	position: relative;
	border-top: 2px solid black;
}
.table-row.last {
	margin-bottom: 5rem !important;
}
.table-row {
	position: relative;
	border-bottom: 2px solid black;
	width: calc(100% - 10rem);
	max-width: 1350px !important;
	margin: 0px auto !Important;
	padding: 0px 0px !important;
}
[data-set-id="37645584"] .content_container [grid-row].table-row {
	max-width: 1220px !important;
	left: calc(-1 * (100vw - 100%) / 2 + 50px);
	/* center and offset 1rem */
	width: calc(100vw - 100px);
}
.table-row>div {
	margin: 0px !important;
	padding: 10px 0px !important;
}
.table-row>div:first-child {
	width: 33%;
}
.table-row>div:last-child {
	width: 66%;
}
/* WORK NAV */

[data-set-id="37645672"].filter-open [local-style="37659873"] {
	visibility: visible;
	z-index: 999;
}
[local-style="37660196"] {
	z-index: 999;
	visibility: hidden;
}
[data-set-id="37645516"].filter-open [local-style="37660196"] {
	visibility: visible;
	z-index: 999;
}
.sub-nav {
	background: rgba(0, 0, 0, 1);
	position: fixed;
	transform: translate(-500px);
	padding-left: 50px;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 400px;
	text-align: center;
	transition: 0.5s ease all;
	margin-top: 0px;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	/* 居中 */
	align-items: center;
}
.sub-nav-inner {
	display: flex;
	flex-direction: column;
	margin: 0px;
	width: auto;
	text-align: left;
	padding: 0px 0px 0px 0px;
}
.sub-nav-inner a {
	font-weight: 600 !important;
	font-size: 32px !important;
	color: white !important;
	transition: 0.5s ease all;
	display: inline-block;
	-webkit-text-stroke: 0px #000;
	/* 2px thick black outline */
	text-stroke: 0px #000;
	margin: 0px 0px;
}
.sub-nav-inner .close-filter a {
	font-size: 20px !important;
	color: black;
	font-weight: 600;
	position: absolute;
	top: 30px;
}
.sub-nav-inner .close-filter a:hover {
	color: black !important;
}
/**
 * writings hide
 */

.writings .hideme {
	opacity: 1 !important;
	visibility: visible !important;
	transition: 0.5s ease all;
	transform: translateY(0px) !important;
}
[local-style="37645741"] {
	display: none;
}
.writings [local-style="37645741"] {
	display: block;
}
[local-style="37645736"] {
	display: none;
}
.writings [local-style="37645736"] {
	display: block;
}
.writings .writings-hide {
	display: block !important;
}
.writings .writings-link {
	display: none !important;
}
.row-standard.text-left {
	height: 0px !important;
	overflow: hidden;
}
.writings .row-standard.text-left {
	height: auto !important;
	overflow: visible;
}
.row-standard.text-right {
	height: 0px !important;
	overflow: hidden;
}
.writings .row-standard.text-right {
	height: auto !important;
	overflow: visible;
}
.full-width-theory {
	display: none !important;
}
.writings .full-width-theory {
	display: flex !important;
}
/**
 * recognition hide
 */

.recognition .hideme {
	visibility: visible !important;
	opacity: 1 !important;
	transition: 0.5s ease all;
	transform: translateY(0px) !important;
}
[local-style="37645704"] {
	display: none;
}
.recognition [local-style="37645704"] {
	display: block;
}
.recognition .recognition-hide {
	display: block !important;
}
.recognition .recognition-link {
	display: none !Important;
}
a.middle-link {
	display: block;
	text-align: center;
	margin: 5rem auto !important;
	text-decoration: underline !important;
	font-size: clamp(20px, 2.0vw, 25px) !important;
	color: black !important;
}
/**
 * Homepage
 */

[data-container="set"][data-id="37645494"] .page_container {
	margin: 0px auto !important;
	width: calc(100% - 100px);
}
[data-container="set"][data-id="37645494"] .page_container:first-child {
	width: calc(100% - 0px);
}
.news-home {
	display: flex;
	text-align: left;
	font-weight: 400;
	padding: 0px !important;
	width: calc(100% - 100px);
	margin: 0px auto !important;
	color: white;
}
.news-home b {
	font-size: clamp(30px, 2vw, 50px);
	line-height: 1;
	text-transform: uppercase;
}
[local-style="37645503"].page_container {
	width: 100% !important;
}
.center-link {
	font-weight: 600 !important;
	border-bottom: 2px solid white !important;
	display: inline-block;
	padding-bottom: 0px !important;
	margin: 0px auto !important;
	color: white !important;
}
.align-bottom {
	font-weight: 500;
	position: relative;
	font-size: clamp(20px, 2.1vw, 40px);
	margin: 0px !important;
	position: relative;
	padding: 0;
	margin: 0;
	left: calc(-1 * (100vw - 100%) / 2 + 0.0rem);
	/* center and offset 1rem */
	width: calc(100vw - 0.0rem);
	/* full viewport minus child padding (1rem each side) */
	box-sizing: border-box;
	padding: 0px !important;
	align-items: flex-end !important;
}
.align-bottom>div:first-child {
	padding-left: 50px !important;
}
.align-top>div:last-child {
	padding-right: 50px !important;
}
.align-top>div:first-child {
	padding-left: 50px !important;
}
.align-bottom>div:last-child {
	padding-right: 50px !important;
}
.expanded.align-bottom>div:first-child {
	width: 50% !important;
	transition: 0.5s ease all;
}
.expanded.align-bottom>div:first-child img {
	transition: 0.5s ease all;
	width: 100% !important;
	height: auto !important;
}
.expanded.align-bottom>div:last-child {
	width: 50% !important;
	transition: 0.5s ease all;
}
.expanded.align-bottom>div:last-child img {
	transition: 0.5s ease all;
	width: 100% !important;
	height: auto !important;
}
.align-bottom .more {
	overflow: hidden;
	display: block;
	height: 0px;
}
.expanded.align-bottom .more {
	display: block;
	height: auto;
	margin-top: 0px;
	overflow: hidden;
}
.expanded.align-bottom .left {
	font-weight: 600;
	display: none;
}
.accordion .more {
	display: none;
	font-weight: 500;
}
.accordion.expanded .more {
	display: block;
	height: auto;
	margin-top: 2.5rem;
	overflow: hidden;
}
.accordion.expanded>a {
	display: none;
}
a.center {
	margin: 2.5rem auto 0px auto;
	width: 100%;
	display: inline-block;
	text-align: center;
	font-size: clamp(30px, 3vw, 50px);
	text-decoration: underline !Important;
}
.accordion .more {
	overflow: hidden;
	display: block;
	height: 0px;
}
/**
 * NEWS
 */

.news-accordion .more {
	overflow: hidden;
	display: block;
	height: 0px;
}
.news-accordion.expanded .more {
	display: block;
	height: auto;
	margin-top: 2.5rem;
	overflow: hidden;
}
.see-cols {
	align-items: flex-end;
	padding: 50px;
	display: flex;
}
.see-cols h1 {
	line-height: 1 !important;
	position: relative;
	display: block;
	margin-bottom: -1.5rem !Important;
	font-weight: 700 !important;
	font-size: clamp(100px, 13vw, 320px) !important;
	font-family: "owners", sans-serif !important;
}
.see-cols h1 a {
	font-weight: 700 !important;
	padding-bottom: 0px !important;
}
[data-set-id="37645527"] .see-cols h1 {
	line-height: 0.7 !important;
	font-size: 10vw !important;
}
.see-cols>div:first-child {
	width: 83% !important;
	padding: 0px;
	display: flex;
}
.see-cols>div:last-child {
	width: 17% !important;
	display: flex;
}
.see-cols img {
	width: 100% !important;
	height: auto !important;
}
.video-random a {
	display: flex;
	justify-content: flex-end;
	align-content: flex-end;
	align-items: flex-end;
}
.see-cols video {
	width: 100% !important;
	height: auto !important;
}
/* SERVICES */

[data-set-id="37651139"] .content_container [data-container="set"] {
	width: 100%;
	margin: 120px auto 0px auto;
}
[data-set-id="37651139"] .content_container [data-container="set"] .page_container {
	width: calc(100% - 100px);
	margin: 0px auto;
}
.service-links {
	font-size: clamp(30px, 3vw, 50px);
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.service-links a {
	text-decoration: underline !important;
}
.service-links a:hover {
	text-decoration: none !important;
}
.news-slider-outer {
	padding: 0rem 0px;
	width: 100%;
	overflow: hidden;
	position: relative;
}
.news-slider-outer .slick-list {
	overflow: visible;
}
.news-slider h2 {
	font-size: clamp(30px, 2.5vw, 50px) !important;
	line-height: 1 !important;
}
.news-module {
	color: #000 !important;
	font-size: clamp(20px, 1.5vw, 25px) !important;
	padding: 50px;
	opacity: 0.5;
	margin: 0px auto;
	line-height: 1;
	width: 70vw !important;
	text-align: left;
}
.news-module .expanded a.left {
	display: none
}
.news-module a.left {
	font-size: clamp(20px, 2.0vw, 25px) !important;
	text-align: center;
	position: relative;
	text-decoration: underline;
	display: block;
	margin: 0px auto;
	margin-top: 30px !important;
	margin-bottom: 20px;
	font-weight: 500 !important;
	border-bottom: 0px solid black !important;
}
.slick-active.news-module {
	opacity: 1;
}
.align-top {
	font-weight: 500;
	position: relative;
	margin: 0px !important;
	left: calc(-1 * (100vw - 100%) / 2 + 0.0rem);
	/* center and offset 1rem */
	width: calc(100vw - 0.0rem);
	/* full viewport minus child padding (1rem each side) */
	box-sizing: border-box;
	padding: 0px !important;
	align-items: flex-start !important;
}
.expanded.align-top>div:first-child {
	width: 50% !important;
	transition: 0.5s ease all;
}
.align-top.expanded .accordion a.left {
	display: none !important;
}
.align-top h2 {
	font-size: clamp(20px, calc(20px + 4.5vw), 50px) !important;
	font-weight: 600 !important;
}
.align-top [image-gallery-vertical-align=middle] {
	align-items: flex-start;
}
.align-top.expanded .more {
	font-weight: 500;
	height: auto;
	overflow: auto;
}
.expanded.align-top>div img {
	transition: 0.5s ease all;
	width: 100% !important;
	height: auto !important;
}
.align-top>div .image-gallery {
	transition: 0.5s ease all;
	width: 100% !important;
	height: auto !important;
}
.align-top>div .slick-list {
	transition: 0.5s ease all;
	width: 100% !important;
	height: auto !important;
}
.expanded.align-top>div .gallery_card {
	transition: 0.5s ease all;
	width: 100% !important;
}
.align-top>div .gallery_card {
	transition: 0.5s ease all;
	width: 100% !important;
}
.expanded.align-top>div .slick-track {
	transition: 0.5s ease all;
	width: 100% !important;
}
.align-top>div .slick-track {
	transition: 0.5s ease all;
	width: 100% !important;
}
.expanded.align-top>div .slick-list {
	transition: 0.5s ease all;
	width: 100% !important;
	height: auto !important;
}
.expanded.align-top>div .image-gallery {
	transition: 0.5s ease all;
	width: 100% !important;
	height: auto !important;
}
.expanded.align-top>div:last-child {
	width: 50% !important;
	transition: 0.5s ease all;
}
a.left {
	font-weight: 500 !important;
	border-bottom: 3px solid black!important;
}
a.left:hover {
	font-weight: 600 !important;
	border-bottom: 0px solid black!important;
}
/* OFFICE */

[data-set-id="37645672"] [data-view="pinned_top"] {
	margin: 120px auto 0px auto;
	width: 100%;
}
[data-set-id="37645672"] [data-view="pinned_top"] .page_container {
	width: calc( 100% - 100px);
	margin: 0px auto;
}
[data-set-id="37645672"] [local-style="37659326"] {
	margin: 0px auto 0px auto !important;
}
[local-style="37651299"] {
	width: 100% !important;
}
[local-style="37645705"] {
	width: 100% !important;
}
.office-nav-alt {
	background: rgba(0, 0, 0, 1);
	position: fixed;
	transform: translate(-500px);
	padding-left: 50px;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 400px;
	text-align: left;
	transition: 0.5s ease all;
	margin-top: 0px;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	/* 居中 */
	align-items: center;
}
.office-nav-inner {
	display: flex;
	margin: 0px;
	width: auto;
	text-align: left;
	padding: 0px 0px 0px 0px;
}
.office-nav-inner-alt {
	display: flex;
	flex-direction: column;
	margin: 0px;
	width: auto;
	text-align: left;
	padding: 0px 0px 0px 0px;
}
.office-nav-alt a {
	font-weight: 600 !important;
	font-size: 32px !important;
	color: white !important;
	transition: 0.5s ease all;
	display: inline-block;
	-webkit-text-stroke: 0px #000;
	/* 2px thick black outline */
	text-stroke: 0px #000;
	margin: 0px 0px;
}
.office-nav-alt .close-filter a {
	font-size: 20px !important;
	color: black;
	font-weight: 600;
	position: absolute;
	top: 30px;
}
[local-style="37659327"].page_container {
	width: 100% !important;
}
[local-style="37659327"].page_container video {
	margin: 0px auto !important;
	width: calc(100% - 100px) !important;
}
:root {
	overscroll-behavior: none;
}
[data-set-id="37645672"].scrolled-alt [local-style="37659873"] {
	visibility: visible;
	z-index: 9999;
}
[local-style="37659873"] {
	z-index: 999;
	visibility: hidden;
}
.office-nav.fixed {
	position: fixed;
	width: 100%;
	background: #fff;
	display: BLOCK;
	top: 0px;
	left: 0px;
	margin-top: 0px;
	padding: 25px;
	width: 100%;
	text-align: center;
}
/* fixed nav*/

[local-style="37659846"] {
	z-index: 9999999 !important;
	width: 100%;
	left: 0px;
	top: 95px !important;
	position: fixed !important;
}
.office-links {
	margin: 0px 10px;
	font-size: clamp(20px, 3.0vw, 31px) !important;
	letter-spacing: 2px;
	color: transparent !Important;
	-webkit-text-stroke: 1px #000;
	/* 2px thick black outline */
	text-stroke: 1px #000;
	text-transform: uppercase;
}
.awards-row>div {
	margin: 0px auto;
	width: 100% !important;
	padding: 20px 0rem !important;
	border-bottom: 2px solid black;
}
.awards-row h1 {
	margin-bottom: 0px !important;
	position: relative !important;
	display: block !important;
	font-weight: 500 !important;
	font-size: 25px !important;
	line-height: 25px !important;
}
.awards-row h2 {
	display: inline;
	text-transform: uppercase;
	font-weight: 600 !important;
	font-size: 40px !important;
	line-height: 32px !important;
}
/* --- */

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1
	}
}
.pub-row a.no-border {
	border: 0px !important;
}
.pub-row a.no-border:hover {
	background: transparent;
}
[local-style="37645510"] {
	position: relative !important;
}
[local-style="37645510"] .overlay {
	opacity: 0;
	top: 0px;
	left: 0px;
	position: absolute;
	z-index: -1 !important;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
}
.full-width-theory b {
	font-size: 20px !important;
}
.trans {
	opacity: 0;
}
.full-width-theory.hider>div:nth-child(1) {
	padding-bottom: 30px;
}
.full-width-theory.hider>div:nth-child(1) h1 {
	margin-bottom: 15px !important;
	position: relative !important;
	display: block !important;
	font-size: 32px !important;
	line-height: 32px !important;
}
[data-set-id="37645516"] [aspect-ratio="4x3"].thumb_image {
	padding-bottom: 54% !important;
}
[aspect-ratio="4x3"].thumb_image {
	transform: translateY(0px) !important;
}
[data-set-id="37645516"] .thumbnails .thumb_image img {
	left: 50%;
	width: 100% !important;
	margin: 0px !important;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50% !important;
}
.open .sub-nav {
	display: none !important;
}
.text-template {
	max-width: 1000px;
	width: 100% !important;
	margin: 60px auto 0px auto !important;
	padding: 80px 30px !important;
}
.text-template>div {
	padding: 0px !important;
}
/* PUBLICATIONS TEMPLATE */

[data-set-id="37645760"] .content_container [data-container="set"] {
	width: calc(100% - 100px);
	margin: 20px auto 0px auto;
}
[data-set-id="37645760"] .content_container .page_container [grid-row] {
	padding-top: 0px;
	padding-left: 0px !important;
	padding-right: 0px !important;
	max-width: 2000px;
}
[data-set-id="37645760"] .content_container .page_container [grid-row]:first-child {
	margin: 40px auto 0px auto !important;
}
[data-set-id="37645760"] .content_container .tags {
	font-size: 15px;
}
[data-set-id="37645760"] .content_container .page_container [grid-row]>div:first-child {
	padding-left: 0px !important;
}
[data-set-id="37645760"] .content_container .page_container [grid-row]>div:nth-child(2) {
	padding-right: 0px !important;
}
[data-set-id="37645760"] .content_container .thumbnails {
	padding: 0px 30px;
}
.gap {
	display: inline-block;
	position: relative;
	top: -1rem;
	height: 2px !important;
	width: 3rem !important;
	background: #000;
	margin: 0px 20px;
	padding: 0px 30px;
}
[data-page-id="37645778"] .footer-inner {
	flex-wrap: wrap;
	padding: 0px 0px 10px 0px;
}
.office-nav .office-links.active {
	opacity: 1;
}
.office-nav .office-links:hover {
	color: black !important;
}
.office-nav .office-links:active {
	opacity: 0.5;
}
.office-nav::-webkit-scrollbar {
	display: none;
}
.standard video {
	pointer-events: none !important;
}
/* This used to work for the parent element of button divs */

/* But it does not work with newer browsers, the below doesn't hide the play button parent div */

[data-set-id="37645494"] *::-webkit-media-controls-panel {
	display: none!important;
	-webkit-appearance: none;
}
/* Old shadow dom for play button */

[data-set-id="37645494"] *::-webkit-media-controls-play-button {
	display: none!important;
	-webkit-appearance: none;
}
/* New shadow dom for play button */

/* This one works! */

[data-set-id="37645494"] *::-webkit-media-controls-start-playback-button {
	display: none!important;
	-webkit-appearance: none;
}
.menu-navigation {
	top: 0px;
	display: block;
	position: relative;
	transition: all 0.3s;
	z-index: 999999999;
}
.open .menu {
	left: 0px;
}
.menu-inner {
	position: absolute;
	bottom: 0px;
	left: 0px;
	display: contents;
}
.menu {
	visibility: visible;
	box-sizing: border-box;
	left: 100%;
	z-index: 99;
	right: 0px;
	top: 0px;
	padding: 50px;
	transition: all 0.3s;
	background: #fff;
	position: fixed;
	width: 100%;
	justify-content: flex-end;
	flex-direction: column;
	align-items: flex-start;
	display: flex;
	height: calc(var(--vh, 1vh) * 100);
}
.menu a {
	text-transform: uppercase;
	font-size: 13rem;
	text-align: left;
	line-height: 0.8;
	color: transparent !Important;
	-webkit-text-stroke: 2px #000;
	/* 2px thick black outline */
	text-stroke: 2px #000;
	font-weight: 700 !important;
}
.menu a:hover {
	color: #000 !Important;
}
[data-set-id="37645494"] .new-header {
	animation: fadeIn .5s 2s forwards ease;
	opacity: 0;
}
.video-slider .slick-dots {
	padding: 0px !important;
	animation: fadeIn .5s 2s forwards ease;
	opacity: 0;
}
#cursor.small:before {
	width: 50px;
}
.more a i {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, 'Sans Serif', Icons;
	color: #bdbdbd;
	margin-left: 5px;
}
body.civic[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container.civic {
	display: block;
}
body.culture[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container.culture {
	display: block;
}
body.entertainment[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container.entertainment {
	display: block;
}
body.landscape[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container.landscape {
	display: block;
}
body.living[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container.living {
	display: block;
}
body.objects[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container.objects {
	display: block;
}
body.sports[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container.sports {
	display: block;
}
body.working[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container.working {
	display: block;
}
body.civic .sub-nav .civic {
	opacity: 0.5;
}
body.culture .sub-nav .culture {
	opacity: 0.5;
}
body.entertainment .sub-nav .entertainment {
	opacity: 0.5;
}
body.landscape .sub-nav .landscape {
	opacity: 0.5;
}
body.living .sub-nav .living {
	opacity: 0.5;
}
body.objects .sub-nav .objects {
	opacity: 0.5;
}
body.sports .sub-nav .sports {
	opacity: 0.5;
}
body.working .sub-nav .working {
	opacity: 0.5;
}
body.hide-thumbs-civic[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container {
	display: none;
}
body.hide-thumbs-culture[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container {
	display: none;
}
body.hide-thumbs-entertainment[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container {
	display: none;
}
body.hide-thumbs-landscape[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container {
	display: none;
}
body.hide-thumbs-living[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container {
	display: none;
}
body.hide-thumbs-objects[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container {
	display: none;
}
body.hide-thumbs-sports[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container {
	display: none;
}
body.hide-thumbs-working[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container {
	display: none;
}
body[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container {
	display: block;
}
#toolset {
	display: none;
}
.thumb {
	overflow: hidden;
	position: relative;
	padding-bottom: 55% !important;
	width: 100%;
	margin-bottom: 0px;
	padding-left: 0% !important;
	display: block;
	height: 100%;
}
.thumb a {
	opacity: 1;
	height: 100%;
	display: block;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: absolute;
	width: 100%;
	transition: 0.5s all ease;
	background: rgba(0, 0, 0, 0.41);
}
.thumb:hover a {
	transition: 0.5s all ease;
	opacity: 1
}
.thumb h1 {
	padding-top: 30px !important;
	text-transform: uppercase;
	padding-left: 30px !important;
	font-size: 28px !important;
	color: white !important;
}
.thumb h2 {
	position: absolute;
	bottom: 30px;
	text-transform: uppercase;
	font-weight: 400 !important;
	left: 30px;
	letter-spacing: 0.5px;
	padding-top: 0px !important;
	padding-left: 0px !important;
	font-size: 16px !important;
	color: white !important;
}
[data-set-id="37645778"] .work-links {
	display: inline-block;
	margin-left: 20px;
	margin-right: 20px;
}
[data-set-id="37645778"] [data-view="pinned_bottom"] {
	margin: 0px auto 0px auto;
	display: flex;
	opacity: 0;
	animation: fadeIn 0.5s 2s forwards ease;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-flow: row wrap;
	width: calc(100% - 0px) !important;
	padding: 115px 50px 0px 50px !important;
}
[data-set-id="37645778"] [data-view="pinned_bottom"]::after {
	content: "";
	flex-basis: calc( 33.33% - 30px);
}
[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container {
	width: calc(50% - 12.5px);
	margin: 0px 0px 25px 0px;
	overflow: hidden;
	padding: 0px;
}
[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container[local-style="37645758"] {
	width: 100% !important;
	order: 400;
}
[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container[local-style="37645757"] {
	order: 399;
	width: 100% !important;
}
/* [data-set-id="37645778"] [data-view="pinned_bottom"] .page_container:nth-child(1) {
  width: calc( 66.66% - 15px);
}
[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container:nth-child(1) .thumb h1 {
  font-size: 40px !important;
}
[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container:nth-child(7) .thumb h1 {
  font-size: 40px !important;
}
/*[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container:nth-child(7) {
  width: calc( 66.66% - 15px);
}
[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container:nth-child(10n + 1) {
  width: calc( 66.66% - 15px);
}
[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container:nth-child(10n + 1) .thumb h1 {
  font-size: 40px !important;
}
[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container:nth-child(10n + 7) {
  width: calc( 66.66% - 15px);
}
[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container:nth-child(10n + 7) .thumb h1 {
  font-size: 40px !important;
}*/

[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container .container {
	height: 100% !important;
	display: block;
}
[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container .container .bodycopy {
	height: 100% !important;
	display: block;
}
[data-set-id="37645778"] [data-view="pinned_bottom"] .page_container .container .page_content {
	height: 100% !important;
	display: block;
}
.caps {
	margin-bottom: 1rem !important;
	display: block;
	text-transform: capitalize !important;
}
a:hover {
	cursor: pointer;
}
.single-col {
	max-width: 1200px;
	font-size: 30px;
	width: calc(100% - 100px);
	margin: 100px auto 0px auto;
}
.current-marquee a {
	transition: 0.5s ease all;
	margin: 0px 40px;
	padding-bottom: 30px !important;
	position: relative;
	display: inline-block;
}
.current-marquee img {
	transition: 0.5s ease all;
	object-fit: contain;
	max-height: 500px;
	max-width: 30vw;
	height: auto !important;
}
.current-marquee small {
	position: absolute;
	bottom: -0px;
	font-size: 16px !important;
	text-align: center;
	font-family: "owners", sans-serif;
	left: 0px;
	letter-spacing: 1px;
	color: black !important;
	right: 0px;
	margin: auto;
	;
	display: inline-block;
}
.current-marquee video {
	object-fit: contain;
	max-height: 500px;
	max-width: 30vw;
	height: auto !important;
}
.current-marquee .marquee_inner a:hover {
	transition: 0.5s ease all;
	transform: translateY(-30px) !important;
}
/* NEWS LINKS */

.work-nav {
	width: 100%;
	margin-top: 2.5rem;
	text-transform: uppercase;
	text-align: center;
}
.work-nav-inner {
	margin: 0px auto;
	text-align: center;
	width: 1500px;
}
.work-nav::-webkit-scrollbar {
	display: none !important;
}
.work-links {
	margin: 0px 10px;
	display: none !important;
	font-size: clamp(20px, 3.0vw, 31px) !important;
	letter-spacing: 2px;
	color: transparent !Important;
	-webkit-text-stroke: 1px #000;
	/* 2px thick black outline */
	text-stroke: 1px #000;
	text-transform: uppercase;
}
.work-links:hover {
	color: black !important;
}
.work-old-links:hover {
	color: black !important;
}
.work-old-links {
	margin: 0px 10px;
	font-size: clamp(10px, calc(10px + 0.8vw), 31px) !important;
	letter-spacing: 2px;
	color: transparent !Important;
	-webkit-text-stroke: 1px #000;
	/* 2px thick black outline */
	text-stroke: 1px #000;
	text-transform: uppercase;
	display: inline- !important;
}
.anchor {
	height: 0px;
	top: -140px;
	position: relative;
	pointer-events: none;
}
.works {
	margin: 0px auto;
	max-width: 94%;
}
.main_container {
	overflow: initial !important;
}
.text-left>div:last-child {
	position: sticky;
	justify-content: center;
	align-content: center;
	align-items: center;
	top: 120px;
}
.text-left>div:first-child {
	position: relative;
	z-index: 1;
	padding-left: 0px !important;
}
.text-right>div:first-child {
	position: sticky;
	justify-content: center;
	align-content: center;
	align-items: center;
	top: 120px;
}
.gallery_card {}
.slick-arrow.slick-prev {
	font-size: 0px;
	width: 25px;
	background: transparent;
	top: 0%;
	opacity: 1;
	left: 30px;
	background-position: center;
	mix-blend-mode: difference;
	border: 0px;
	padding: 0px !important;
	z-index: 99999999999;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-image: url("https://files.cargocollective.com/c1671735/left-white.svg") !important;
	height: 100% !important;
}
.slick-arrow svg {
	display: none;
}
.slick-arrow.slick-next {
	font-size: 0px;
	width: 25px;
	background: transparent;
	top: 0%;
	opacity: 1;
	mix-blend-mode: difference;
	right: 30px !important;
	background-position: center;
	border: 0px;
	padding: 0px !important;
	z-index: 99999999999;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-image: url("https://files.cargocollective.com/c1671735/right-white.svg") !important;
	height: 100% !important;
}
[data-set-id="37645516"] .thumbnail {
	width: 50%;
	margin-bottom: 50px;
}
[data-set-id="37645516"] .content_container {
	width: calc(100% - 100px);
	margin: 80px auto 0px auto;
}
[data-set-id="37645516"] .content_container .thumbnails {
	padding: 0px !important;
	display: block !important;
	margin: 0px -20px;
}
/* OFFICE */

.pinned {
	height: auto !important;
}
.expand img {
	max-width: 100% !important;
	height: auto !important;
}
.expand {
	margin: 0px auto;
	width: 100% !important;
	max-width: 1350px;
	padding: 20px 0rem !Important;
	border-bottom: 2px solid black;
}
.people-row.expand {
	border-bottom: 0px;
}
.people-row h2 {
	width: 100%;
}
.people-row.expand h2 {
	width: 100%;
	font-weight: 500 !important;
	font-size: clamp(20px, 1.5vw, 25px) !important;
}
.expand h2 {
	display: inline-block;
	width: 100%;
	font-weight: 600 !important;
	font-size: clamp(30px, 3vw, 50px) !important;
}
.expand h2.full-width {
	color: grey;
	width: 100%;
}
.expand .more h2 {
	width: 100%;
}
.expand>i {
	font-style: normal;
}
.expand>a i {
	font-style: normal;
}
.expand i:first-child {
	width: 50%;
}
.conversation.expand i {
	float: none;
}
.read-more {
	display: block;
	text-transform: uppercase;
	font-size: 1.3rem;
	position: relative;
	margin: -10px auto 0px auto !important;
	text-align: center;
}
.read-more {
	text-align: left;
}
.read-less {
	display: none;
}
.full-width-theory {
	max-width: 1450px;
	width: calc(100% - -4rem);
	left: -4rem;
	position: relative;
	margin: -4rem auto !important;
	padding: 0px 50px !important
}
.expand.expanded .read {
	display: none;
}
.expand.expanded .more {
	height: auto;
	margin-top: 20px;
	overflow: hidden;
}
.expand.expanded .read-less {
	display: block;
}
.read-more span {
	display: none
}
.expand h1 {
	cursor: pointer;
}
.more {
	overflow: hidden;
	display: block;
	height: 0px;
}
[data-set-id="37645527"] .more a img {
	pointer-events: none;
}
.mobile-show {
	display: none;
}
.mobile-hide {
	display: none;
}
.row-standard h1.large {
	text-align: left;
	font-weight: 500;
	text-transform: uppercase;
	font-size: clamp(20px, 1.5vw, 25px) !important;
	line-height: 1 !important;
	letter-spacing: 1px;
}
[data-container="set"][data-id="37645672"] {
	margin-top: 0px !important;
}
.four-col a {
	text-transform: uppercase;
	font-size: 16px;
	display: inline-block;
	margin-top: 6px;
	padding: 0px 10px !important;
	font-weight: 600;
	border: 1px solid black !important;
}
.four-col a:hover {
	color: white;
	background: black;
}
.row-people small {
	margin-top: 10px;
	;
	font-size: 15px !important;
	letter-spacing: 0.5px;
	color: black !important;
	text-transform: uppercase;
}
.row-pub a {}
.row-pub a.border {
	text-transform: uppercase;
	font-size: clamp(20px, 1.5vw, 25px);
	display: inline-block;
	margin-top: 0px;
	text-decoration: underline;
	padding: 0px 0px !important;
	font-weight: 500;
}
.pub-row a {
	text-transform: uppercase;
	font-size: 16px;
	display: inline-block;
	margin-top: 6px;
	padding: 0px 10px !important;
	font-weight: 600;
	border: 1px solid black !important;
}
.pub-row a:hover {
	color: white;
	background: black;
}
.row-pub a.border:hover {
	color: white;
	background: black;
}
.row-accolades .mark {
	width: 40px;
}
.row-accolades {
	max-width: 1450px;
	width: calc(100% - -4rem);
	left: -4rem;
	position: relative;
	margin: 0px auto !important;
	padding: 0px 50px !important
}
.pub-row {
	padding: 0px !important;
	max-width: 100%;
	margin: 0px auto !important;
}
.long-row {
	padding: 0px !important;
	max-width: 100%;
	align-items: flex-end !important;
	width: calc(100% - 100px);
	margin: 0px auto !important;
}
.long-row>div {
	padding: 50px 0px 80px 0px
}
.four-col a.image-link {
	display: inline-block;
	margin-top: 0px;
	background: transparent;
	line-height: 0px !important;
	padding: 0px !important;
	border: 0px solid black !important;
}
.four-col a.image-link:hover {
	border: 0px solid black !important;
}
.row-people {
	max-width: 1450px;
	width: calc(100% - -4rem);
	left: -4rem;
	position: relative;
	margin: 0px auto !important;
	padding: 0px 50px !important
}
.row-people img {
	margin-bottom: 10px !important;
}
.row-title {
	text-transform: uppercase;
	letter-spacing: 1px;
	;
	max-width: 1350px;
	width: 100%;
	left: -2rem;
	position: relative;
	margin: 0px auto !important;
	padding: 0px 0px !important
}
.row-text {
	text-transform: uppercase;
	letter-spacing: 1px;
	;
	max-width: 1350px;
	width: 100%;
	font-weight: 500 !important;
	left: -2rem;
	position: relative;
	margin: 0px auto !important;
	padding: 0px 0px !important
}
.thin {
	letter-spacing: 1px;
	;
	font-weight: 400;
}
.row-standard {
	max-width: 1350px;
	width: 100%;
	left: 0px;
	position: relative;
	margin: 0px auto !important;
	padding: 0px 0px !important
}
.row-standard.text-left {
	max-width: 1350px;
	width: 100%;
	left: 0rem;
	position: relative;
	margin: 0px auto !important;
	padding: 0px 0px !important
}
.row-standard.text-right {
	max-width: 1450px;
	width: calc(100% - -4rem);
	left: -4rem;
	position: relative;
	margin: 0px auto !important;
	padding: 0px 50px !important
}
.row-standard.full-width {
	max-width: 1450px;
	width: calc(100% - -2rem);
	left: -2rem;
	position: relative;
	margin: 0px auto !important;
	padding: 0px 50px !important
}
.row-standard.full-width>div {
	padding: 2rem !important;
}
.row-people a {
	text-transform: uppercase;
	font-size: 16px;
	display: inline-block;
	margin-top: 6px;
	padding: 0px 10px !important;
	font-weight: 600;
	border: 1px solid black !important;
}
.row-alt {
	max-width: 1700px;
	margin: 0px auto !important;
	padding: 0px 0px !important;
	width: calc(100% - 100px);
}
.row-alt>div:nth-child(2) {
	display: block;
	position: relative !important;
	flex-wrap: wrap;
}
.row-alt.grid-section>div:nth-child(2) {
	display: flex;
}
.four-col img {
	height: auto !important;
	width: 100% !important
}
.four-col {
	padding: 0px 20px 30px 20px;
	width: 50% !important
}
[data-container="set"][data-id="37645672"] h2 {
	font-weight: 600;
	font-size: 25px !important;
}
#profile {
	margin-top: 0px;
}
.row {
	align-items: center !important;
	max-width: 1450px;
	margin: 0px auto !important;
	padding: 0px 0px !important;
	width: calc(100% - 100px);
}
.row h2 {
	font-size: 25px !important;
	line-height: 32px !important;
}
.row-alt h2 {
	font-size: 25px !important;
	line-height: 32px !important;
}
.work-thumb {
	text-align: center;
	width: 33.33%;
	padding: 30px;
}
.work-thumb video {
	height: auto !important;
	width: 100% !important
}
[data-page-id="28901709"] .content_container .page_container {
	margin-top: 126px !important;
}
[data-page-id="28901709"] .content_container .page_content {
	display: flex;
	flex-wrap: wrap;
}
/* WORK CODE */

[data-set-id="37645516"] .thumbnail {
	overflow: hidden;
	position: relative;
}
[data-set-id="37645516"] .thumbnail:hover .title {
	transition: 0.5s ease all;
	opacity: 1;
}
[data-set-id="37645516"] .thumbnail:hover .tags {
	transition: 0.5s ease all;
	opacity: 1;
}
[data-set-id="37645516"] .thumbnail .title {
	position: relative;
	transition: 0.5s ease all;
	opacity: 1;
	color: #000;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	line-height: 1 !important;
	letter-spacing: 1px;
	text-transform: capitalize;
	font-size: clamp(20px, 2vw, 40px);
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	padding: 0px;
	z-index: 99999;
	top: 0px;
}
[data-set-id="37645516"] .thumbnail .title span {
	max-width: 100%;
	text-transform: uppercase;
}
[data-set-id="37645516"] .thumbnail .tags {
	position: relative;
	opacity: 1;
	right: 0px;
	transition: 0.5s ease all;
	color: #000;
	margin: 0px !important;
	z-index: 99999;
	bottom: 0px;
}
[data-set-id="37645516"] .thumbnail .tags a {
	color: #000;
	text-transform: uppercase;
}
#bigSlider {
	left: calc(-1 * (100vw - 100%)/2);
	width: 100vw !important;
	position: relative;
	height: 100vh !important;
	margin: 0px auto;
}
#bigSlider:after {
	content: "";
	height: 100vh;
	width: 100%;
	position: absolute;
	background: rgba(0, 0, 0, 0.10);
	left: 0px;
	top: 0px;
}
#bigSlider img {
	object-fit: cover;
	position: absolute;
	top: 0px !important;
	right: 0px;
	left: 0px;
	max-width: 100%;
	width: 100% !important;
	height: 100% !important;
}
#bigSlider iframe {
	position: absolute;
	top: 0;
	left: -10%;
	width: 120% !important;
	height: 100% !important;
	border: none;
}
#bigSlider video {
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	height: 100vh !important;
}
/* END OF MIN WIDTH 768PX */

[data-set-id="37645584"] .filter-nav {
	margin: 50px auto 50px auto;
}
[data-set-id="37645584"] .new-header {
	background: transparent;
}
[data-set-id="37645584"] .new-header .logo {
	color: white !important;
}
[data-set-id="37645584"] .right a {
	color: white !important;
}
[data-set-id="37645584"].scrolled .right a {
	color: white !important;
}
[data-set-id="37645584"].scrolled-alt .new-header .logo {
	color: #fff !important;
}
[data-set-id="37645584"].scrolled-alt .right a {
	color: #fff !important;
}
[data-set-id="37645584"].scrolled-alt.scrolled .new-header .logo {
	color: #000 !important;
}
[data-set-id="37645584"].scrolled-alt.scrolled .right a {
	color: #000 !important;
}
[data-set-id="37645584"].open .new-header .logo {
	color: #000 !important;
}
[data-set-id="37645584"].open .right a {
	color: #000 !important;
}
[data-set-id="37645584"].open.scrolled .right a {
	color: #000 !important;
}
[data-set-id="37645584"] [data-container="set"]>.page_container {
	margin: 0px auto;
	width: calc(100% - 100px);
}
[data-set-id="37645584"] .content_container [grid-row] {
	position: relative;
	padding: 0;
	margin: 0;
	left: -1rem;
	width: calc(100% - -2rem);
	box-sizing: border-box;
}
[data-set-id="37645584"] .content_container [grid-row]>div {
	padding-top: 1rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-bottom: 1rem;
}
.first-row {
	align-content: center;
	height: auto;
	width: 100% !important;
	left: 0px !important;
	padding: 5rem 0rem !important;
	margin: 0px auto !important;
}
.first-row>div {
	padding: 0px !important;
}
[data-set-id="37645584"] .content_container [grid-row] img {
	width: 100% !important;
	height: auto !important;
}
[data-set-id="37645584"] .content_container [grid-row] iframe {
	width: 100% !important;
}
[data-set-id="37645584"] .content_container [grid-row] video {
	width: 100% !important;
	height: auto !important;
}
[data-set-id="37645584"] .text-right {
	margin: 0px auto !important;
	width: calc(100% - 100px) !important;
	padding: 0px 0px !important;
}
[data-set-id="37645584"] .content_container h1 {
	font-size: 20px !important;
	line-height: 30px;
	text-transform: none;
}
[data-set-id="37645584"] .content_container .first-row h1 {
	font-size: clamp(40px, calc(40px + 3.2vw), 86px) !important;
	margin-bottom: 5rem;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}
[data-set-id="37645584"] .content_container small {
	font-size: clamp(20px, calc(20px + 2vw), 60px);
	color: black;
	font-weight: 600;
}
.filter-nav {
	margin: 80px auto 50px auto;
}
.filter-nav-inner {
	padding: 0px 50px;
	line-height: 0.7 !important;
	font-size: 9vw !important;
	font-weight: 600 !important;
	letter-spacing: 1px;
	text-transform: uppercase;
	justify-content: space-between;
	display: flex;
	align-content: center;
	align-items: center;
	width: 100%;
}
.filter-nav a {
	font-weight: 600 !important;
}
.prev-nav {
	width: 33%;
}
.next-nav {
	text-align: right;
	width: 33%;
}
.content_container.full_height {
	min-height: 0px !important;
}
.index {
	text-align: center;
	width: 33%;
}
.filter-nav {
	width: 100%;
}
.next-nav small {
	margin-left: 10px;
}
.prev-nav small {
	margin-right: 10px;
}
/* NEWS TEMPLATE */

[data-set-id="37645527"] .content_container [data-container="set"] [grid-row] img {
	height: auto !important;
	width: 100% !important
}
[data-set-id="37645527"] .single img {
	margin: 0px !important;
	height: auto !important;
	width: 100% !important;
	object-fit: contain;
	max-height: 100% !important;
}
[data-set-id="37645527"] .content_container [data-container="set"] {
	width: calc(100% - 100px);
	margin: 120px auto 0px auto;
}
[data-set-id="37645527"] .content_container [data-container="set"] [grid-row] a.link {
	text-transform: uppercase;
	font-size: 16px;
	padding: 5px 10px;
	font-weight: 600;
	border: 1px solid black;
}
[data-set-id="37645527"] .content_container [data-container="set"] [grid-row] a.link:hover {
	background: black;
	color: white
}
[data-set-id="37645527"] h1.large-title {
	padding-top: 5rem;
	padding-bottom: 5rem;
	font-size: 10vw !important;
}
[data-set-id="37645527"] h1 {
	text-transform: uppercase;
	margin-bottom: 4px !important;
	font-size: clamp(25px, 2vw, 50px) !Important;
	line-height: 1 !important;
}
[data-set-id="37645527"] h2 {
	font-weight: 500 !important;
	font-size: clamp(20px, 1.5vw, 36px) !Important;
	line-height: 1 !important;
}
[data-set-id="37645527"] small {
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 10px !Important;
	font-weight: 400 !important;
	font-size: 14px !important;
	line-height: 25px !important;
}
[data-set-id="37645527"] .content_container .page_content img {
	max-width: 50% !important;
}
/* NEWS */

[data-page-id="37645493"] .content_container {
	width: 100%;
	margin: 0px auto;
}
[data-page-id="37645493"] .content_container .thumbnails {
	padding: 0px !important;
	margin: 80px 30px 0px 30px;
}
.thumbnails .has_title .tags a {
	display: none;
}
.thumbnails .has_title .tags a:first-child {
	display: block;
	pointer-events: none;
	letter-spacing: 1px;
}
/* projects */

[data-set-id="projects"] .content_container .thumbnails {
	padding: 0px !important;
	margin: 80px 30px 0px 30px;
}
[data-set-id="projects"] .sub-nav {
	display: block !important;
}
[data-set-id="projects"] .news-links {
	display: inline-block !important;
}
[data-set-id="awards"] .content_container .thumbnails {
	padding: 0px !important;
	margin: 80px 30px 0px 30px;
}
[data-set-id="awards"] .sub-nav {
	display: block !important;
}
[data-set-id="awards"] .news-links {
	display: inline-block !important;
}
[data-set-id="lectures"] .content_container .thumbnails {
	padding: 0px !important;
	margin: 80px 30px 0px 30px;
}
[data-set-id="lectures"] .sub-nav {
	display: block !important;
}
[data-set-id="lectures"] .news-links {
	display: inline-block !important;
}
[data-set-id="publications"] .content_container .thumbnails {
	padding: 0px !important;
	margin: 80px 30px 0px 30px;
}
[data-set-id="publications"] .sub-nav {
	display: block !important;
}
[data-set-id="publications"] .news-links {
	display: inline-block !important;
}
[data-set-id="media"] .content_container .thumbnails {
	padding: 0px !important;
	margin: 80px 30px 0px 30px;
}
[data-set-id="media"] .sub-nav {
	display: block !important;
}
[data-set-id="media"] .news-links {
	display: inline-block !important;
}
.news-filter {
	position: fixed;
	top: 100px;
	width: 100%;
	z-index: 9999;
	left: 0px;
	right: 0px;
	;
}
[data-id="37645510"] .page_content {
	padding: 0px 50px;
	display: flex;
	flex-wrap: wrap;
}
.hidden {
	color: white;
}
.large-quote .name {
	width: 25%;
	font-weight: 500;
	margin-top: 20px;
	font-size: 2rem !important;
	display: block;
}
.header-inner .name {
	padding-bottom: 0px;
	z-index: 999;
}
.large-quote {
	width: 90%;
	padding: 0px 0px !important;
	line-height: 1 !important;
	font-size: 5rem !important;
}
[data-id="37645506"] .page_content {
	padding: 0px 50px;
	display: flex;
	margin: 0px;
	max-width: 1500px;
}
.mark.white {
	width: 100px !important;
	background-image: url("https://files.cargocollective.com/c1671735/WHITE-MARK.svg");
}
.mark {
	background-image: url(https://files.cargocollective.com/c1671735/mark.svg);
	width: 80px;
	background-repeat: no-repeat;
	background-size: contain;
	height: 54px;
}
.accolades {
	max-height: 82vh !important;
	overflow: hidden;
	padding: 0px 50px;
	max-width: 1450px;
	margin: 0px auto !important;
	width: calc(100% - 100px);
}
.accolades .slick-dots {
	bottom: 0px;
	left: 0px;
	position: relative !important;
	justify-content: flex-start;
	margin-top: 40px;
	padding: 0px 0px;
	right: initial;
}
.accolade {
	width: 100%;
	flex-wrap: wrap;
	margin: 0px auto;
	display: flex !important;
}
.accolade small {
	font-size: 20px !important;
	font-weight: 600 !important;
	color: black !important;
}
.accolade blockquote {
	width: 25%;
	padding: 0px;
}
.accolade .role {
	margin-top: 5px;
	font-size: 14px !important;
	font-weight: 400 !important;
}
.accolade h2 {
	width: 75%;
	padding-right: 30px !Important;
	line-height: 32px !important;
	font-weight: 700 !important;
	font-size: 30px !important;
}
.row-pub {
	padding: 0px !important;
	max-width: 1350px;
	text-align: left;
	margin: 0px auto !important;
}
.row-pub>div {
	text-align: left !important;
	width: 33.33%;
	padding: 0px 2.5rem 2.5rem 0px;
}
.row-pub>div div {
	text-align: left !important;
}
.row-pub h2 {
	font-size: clamp(30px, 2vw, 50px) !important;
	display: block;
	font-weight: 600 !Important;
	padding-bottom: 10px !important;
}
body.scrolled .new-header {
	background: #fff;
}
body.scrolled[data-set-id="37645494"] .logo {
	color: black !important;
}
body.scrolled[data-set-id="37645494"] .new-header .right a {
	color: #000;
}
body.scrolled[data-set-id="37645494"] [data-view="pinned_top"] {
	z-index: 999999;
	mix-blend-mode: normal;
}
[data-set-id="37645494"] .new-header {
	background: transparent;
}
.new-header.nav-up {
	transform: translateY(-160px);
	transition: 0.5s 0s all ease;
}
.new-header.nav-down {
	transform: translateY(-0px);
	transition: 0.5s 0s all ease;
}
.open .new-header.nav-down {
	transform: translateY(-0px) !important;
	transition: 0.5s 0s all ease;
}
.open .new-header.nav-up {
	transform: translateY(-0px) !important;
	transition: 0.5s 0s all ease;
}
[data-set-id="37645494"] [data-view="pinned_top"] {
	z-index: 999999;
}
[data-set-id="37645494"] .new-header .logo {
	color: white;
}
[data-set-id="37645494"].open .new-header .logo {
	color: #000;
}
[data-set-id="37645494"] .new-header .right a {
	color: white;
}
[data-set-id="37645494"].open .new-header .right a {
	color: #000;
}
.open .logo {
	color: black !important;
}
.slick-dots {
	display: flex !important;
	position: absolute !important;
	bottom: 0px;
	justify-content: center;
	left: 0px;
	right: 0px;
	width: 100%;
	margin: 0px auto;
}
.new-menu {
	font-weight: 600 !Important;
}
.video-slider .slick-dots {
	bottom: 50px;
	left: 50px;
	right: 0px;
	justify-content: flex-start;
}
.slick-dots li {
	list-style: none;
	line-height: 0px;
	font-size: 0px;
	margin: 0px 20px 0px 0px;
}
.video-slider {
	top: 0px;
	overflow: hidden;
	position: relative;
}
.video-slider .slick-dots li.slick-active button {
	background: #fff;
}
.slick-dots li.slick-active button {
	background: #000;
	width: 40px;
	transition: 0.3s all ease;
}
.video-slider .slick-dots button {
	background: none;
	border: 1px solid #fff;
}
.slick-dots button {
	background: none;
	border: 1px solid #000;
	font-size: 0px;
	width: 20px;
	transition: 0.3s all ease;
	height: 10px;
}
.back-to-top {
	background-repeat: no-repeat;
	background-position: center;
	margin: 80px auto;
	background-image: url(https://files.cargocollective.com/c243933/SCROLL-ICONS.svg);
	height: 133px;
	width: 400px;
}
.ribbon small {
	font-size: 26px !important;
	color: black !important;
}
.ribbon {
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.ribbon span {
	margin: 0px 18px;
}
.standard {
	align-items: center !important;
	font-weight: 500;
	font-size: 25px;
	letter-spacing: 0px;
	line-height: 1.2;
	max-width: 1450px;
	padding: 0px 0px !important;
	margin: 0px auto !important;
	width: calc(100% - 100px);
}
.standard>div {
	display: flex;
	align-content: center;
	justify-content: center;
}
.footer-inner {
	text-transform: uppercase;
	flex-wrap: wrap;
	font-size: clamp(14px, 1.0vw, 16px) !important;
	padding: 30px 50px 20px 50px;
	display: flex;
}
.footer-bottom {
	margin: 40px auto;
	width: 100%;
}
.footer-inner b {
	font-weight: 500;
	text-transform: uppercase;
}
.col-one {
	width: 25%;
	padding-right: 20px;
}
.col-two {
	padding-right: 20px;
	width: 25%;
}
.col-three {
	width: 25%;
	padding-right: 20px;
}
.col-four {
	width: 25%;
	padding-right: 20px;
}
.marquee {
	padding: 0px !important;
}
.large {
	margin-bottom: 0px !important;
	letter-spacing: 2px;
	text-align: center;
	line-height: 1 !important;
	padding: 0px 0px !Important;
	font-size: 11vw !important;
}
.video-slider .slick-arrow.slick-prev {
	height: 25px !important;
	top: 48%;
	font-size: 0px;
	left: 40px;
	background-color: transparent;
	border: 0px;
	background-image: url(https://files.cargocollective.com/c243933/LEFT-ARROW.svg);
	width: 25px;
	background-repeat: no-repeat;
	background-position: center;
}
.video-slider .slick-arrow.slick-next {
	height: 25px !important;
	top: 48%;
	font-size: 0px;
	right: 40px;
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent;
	border: 0px;
	background-image: url(https://files.cargocollective.com/c243933/RIGHT-ARROW.svg);
	width: 25px;
}
.video-slider {
	height: calc(100vh - 0px) !important;
	width: 100% !important;
}
.carousel-cell {
	height: calc(100vh - 0px) !important;
}
.slick-active.carousel-cell:after {
	content: "";
	height: 100vh;
	position: absolute;
	width: 100%;
	left: 0px;
	z-index: 9;
	top: 0px;
	background: rgba(0, 0, 0, 0.4);
	;
}
.home-overlay {
	height: 100vh;
	position: absolute;
	width: 100%;
	left: 0px;
	z-index: 9;
	top: 0px;
	background: rgba(0, 0, 0, 0.24);
	;
}
.home-title svg {
	height: auto;
	width: 100% !important;
}
.home-title {
	animation: fadeIn .5s 2s forwards ease;
	opacity: 0;
	color: rgba(255, 255, 255, 0) !important;
	z-index: 99999;
	margin: 0px auto !important;
	width: calc(100% - 100px);
	text-shadow: #fff 0px 0px 1px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: left;
	top: 110px;
	width: calc(100% - 100px) !important;
	right: 0px;
	left: 0px;
	;
	line-height: 1 !Important;
	position: absolute;
}
.video-slider video {
	left: 0;
	object-fit: cover;
	padding-bottom: 0px;
	margin: auto;
	position: absolute;
	right: 0;
	width: 100% !important;
	height: 100% !important;
	bottom: 0px;
	top: 0;
	max-width: 100%;
}
.new-header {
	position: fixed;
	top: 0px;
	z-index: 9999;
	background: white;
	width: 100%;
	transform: translateY(-0px);
	display: block;
	transition: 0.5s 0s all ease;
}
.logo {
	cursor: pointer;
	letter-spacing: 0.5px;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
}
.right {
	text-align: right;
	width: 30%;
}
.right a {
	letter-spacing: 0.5px;
	margin-left: 0%;
	font-size: 20px;
	font-weight: 600;
}
.header-inner {
	display: flex;
	z-index: 9999;
	position: relative;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	padding: 30px 50px;
}
#mobile-slide {
	display: none;
}
body {
	-webkit-font-smoothing: antialiased;
	font-family: "owners", sans-serif;
	background-color: #fff;
	color: #000;
}
a:active {
	opacity: 0.7;
}
.page a.active {
	opacity: 1;
}
i, em {
	font-style: italic;
}
b {
	font-weight: 600;
}
sub, sup {
	position: relative;
	vertical-align: baseline;
}
sub {
	top: 0.3em;
}
sup {
	top: -0.4em;
}
s {
	text-decoration: line-through;
}
img {
	border: 0;
	padding: 0;
}
ul, ol {
	margin: 0;
	padding: 0 0 0 1em;
}
blockquote {
	margin: 0;
	padding: 0 0 0 2em;
}
hr {
	background: rgba(127, 127, 127, 0.2);
	border: 0;
	height: 1px;
	display: block;
}
.content img {
	float: none;
	margin-bottom: 0px;
}
.gallery_image_caption {
	margin-top: 0rem;
	position: absolute;
	bottom: 0px;
	right: 0px;
	display: none;
	width: 100%;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: -37px !important;
	font-size: 1rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 1);
	font-family: "owners", sans-serif;
	font-style: normal;
	line-height: 1.3;
}
.works .image-gallery .gallery_card_image:hover {
	transition: 0.5s ease all !important;
	transform: translateY(-10px) !important;
}
.works .gallery_card_image {
	transition: 0.5s ease all;
}
.works {
	padding-bottom: 50px;
	;
}
/**
 * Loading Animation
 */

.loading[data-loading] {
	position: fixed;
	bottom: 8px;
	left: 8px;
}
/**
 * Editor styles
 */

.people-row.expand {
	font-size: clamp(18px, 1.5vw, 30px);
}
[data-predefined-style="true"] bodycopy {
	font-size: clamp(20px, 1.5vw, 40px);
	font-weight: 500;
	color: rgba(0, 0, 0, 1);
	font-family: "owners", sans-serif;
	font-style: normal;
	line-height: 1.3;
	letter-spacing: 0.3px;
}
[data-predefined-style="true"] bodycopy a {
	color: rgb(0, 0, 0);
	font-weight: 500;
	padding-bottom: 0.1em;
	border-bottom: 0.0em solid rgba(127, 127, 127, 0.2);
	text-decoration: none;
}
[data-predefined-style="true"] bodycopy a:hover {
	cursor: pointer !important;
}
bodycopy a.image-link, bodycopy a.icon-link, bodycopy a.image-link:hover, bodycopy a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;
}
[data-predefined-style="true"] h1 {
	font-family: "owners", sans-serif;
	font-style: normal;
	font-weight: 700;
	padding: 0;
	margin: 0;
	font-size: 40px;
	line-height: 1.1;
	color: rgba(0, 0, 0, 1);
}
iframe {
	border: 0px;
}
[data-predefined-style="true"] h1 a {
	color: rgba(0, 0, 0, 1);
}
[data-predefined-style="true"] h2 {
	font-family: "owners", sans-serif;
	font-style: normal;
	margin: 0px auto !important;
	font-weight: 500;
	padding: 0;
	margin: 0;
	color: rgba(0, 0, 0, 1);
	font-size: clamp(40px, calc(40px + 4.5vw), 70px);
	text-align: left;
	line-height: 1.1;
}
[data-predefined-style="true"] h2 a {
	color: rgba(0, 0, 0, 0.85);
}
.pub-row h2 {
	margin-bottom: 10px;
}
[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 1.6rem;
	line-height: 1.3;
	font-family: "owners", sans-serif;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.35);
}
[data-predefined-style="true"] small a {
	color: rgba(0, 0, 0, 1);
	border-bottom-width: 0em;
}
.col-one small {
	font-size: 20px;
	position: relative;
	top: 3px !important;
}
.more i {
	font-style: normal;
}
/**
 * Breakpoints
 */

[data-css-preset] .page {
	background-color: initial/*!page_bgcolor*/
	;
}
.mobile .page, [data-css-preset].mobile .page {
	position: relative;
	min-height: 0px;
	max-width: 100%;
	width: 100%;
	background-color: transparent/*!page_bgcolor*/
	;
}
[data-css-preset] .container {
	margin-left: 0/*!content_left*/
	;
	margin-right: auto/*!content_left*/
	;
	text-align: left/*!text_left*/
	;
}
[data-css-preset] body {
	background-color: rgb(255, 255, 255)/*!body_bgcolor*/
	;
}
[data-css-preset] .container_width {
	width: 100%/*!content_left*/
	;
}
[data-css-preset] .content_padding {
	padding-top: 0rem/*!main_margin*/
	;
	padding-bottom: 0rem/*!main_margin*/
	;
	padding-left: 0rem/*!main_margin*/
	;
	padding-right: 0rem/*!main_margin*/
	;
}
[data-css-preset] text-limit {
	display: inline-block/*!text_width*/
	;
	max-width: 66rem/*!text_width*/
	;
}
/**
 * Thumbnails
 */

div[thumbnails] {
	transform: translateY(0px) !important;
	margin-top: 2rem !Important;
	display: flex !important;
	justify-content: flex-start;
}
[data-css-preset] .thumbnails {
	opacity: 0;
	animation: fadeIn .5s 1s forwards ease;
	background-color: rgba(0, 0, 0, 0)/*!thumbnails_bgcolor*/
	;
}
[data-css-preset] .thumbnails_width {
	width: 100%/*!thumbnails_width*/
	;
}
[data-css-preset] [thumbnails-pad] {
	padding: 15px/*!thumbnails_padding*/
}
[data-css-preset] [thumbnails-gutter] {
	margin: -10px/*!thumbnails_padding*/
	;
}
.thumbnail:hover {
	transition: all .3s ease-out !important;
}
.thumbnail {
	transition: all .3s ease-out !important;
}
.thumbnails .thumb_image {
	transition: all .3s ease-out;
	outline: 0px solid rgba(0, 0, 0, .12);
	outline-offset: -1px;
}
.thumbnails .title {
	margin-top: 15px;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 20px !important;
	font-weight: 600 !important;
	color: rgba(0, 0, 0, 01);
	font-family: "owners", sans-serif;
	font-style: normal;
	line-height: 1.1;
}
.thumbnails .tags {
	margin-top: 1.2rem;
	margin-bottom: 0.5rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: rgba(0, 0, 0, 1);
	font-family: "owners", sans-serif;
	font-style: normal;
	line-height: 1.2;
}
.thumbnails .tags a {
	border-bottom: 0;
	color: rgba(0, 0, 0, 1);
	text-decoration: none;
}
.thumbnails .has_title .tags {
	margin-top: 10px;
	margin-bottom: 15px;
	font-size: 0px;
}
.thumbnails .has_title .tags a {
	font-size: 18px;
}
/**
 * Site Menu
 */

[data-css-preset] #site_menu_button {
	color: rgba(0, 0, 0, 0.75);
	line-height: 1;
	font-size: 28px/*!site_menu_button*/
	;
	padding: 6px;
	line-height: 1;
	background: rgba(33, 32, 46, 0);
	position: fixed;
	top: 2rem/*!site_menu_button*/
	;
	right: 2rem/*!site_menu_button*/
	;
}
body.mobile #site_menu_button {
	margin: -6px;
	font-size: 34px;
}
#site_menu_button.custom_icon {
	width: 40px;
	height: auto;
}
#site_menu_button.active {
	display: none;
}
/**
 * Site Menu
 */

#site_menu {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	background: rgba(20, 20, 20, 0.95);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	padding: 20px 30px 90px 30px;
	max-width: 400px;
	min-width: 300px;
	text-align: left;
	display: flex;
	justify-content: flex-start;
}
body.mobile #site_menu {
	width: 100%;
}
#site_menu .page-link a {
	color: rgba(255, 255, 255, 0.75);
}
#site_menu .set-link>a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: bold;
}
#site_menu a:active {
	opacity: .7;
}
#site_menu a.active {
	opacity: .4;
}
#site_menu .close {
	display: none;
	color: rgba(255, 255, 255, 0.4);
	line-height: .85em;
	font-size: 45px;
}
body.mobile #site_menu .close {
	display: block;
	font-size: 50px;
	line-height: 1em;
}
#site_menu .break {
	height: 28px;
}
#site_menu .indent {
	margin-left: 28px;
}
/*
 * Shop Button
 */

[data-css-preset] #shop_button {
	color: rgba(0, 0, 0, 0.85);
	background: transparent;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	position: fixed;
	padding: 6px;
	top: 2rem/*!shop_button*/
	;
	right: 2rem/*!shop_button*/
	;
}
#shop_button.text {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	font-size: 2rem;
	padding: 0;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
}
#shop_button.custom_icon {
	width: 40px;
	height: auto;
}
body.mobile #shop_button:not(.text) {
	margin: -6px;
	font-size: 36px;
}
/*
 * Shop Product Widget
 */

.shop_product {
	width: 100%;
	max-width: 22rem;
	position: relative;
	display: block;
}
.shop_product .price {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	font-size: 2rem;
	line-height: 1;
	color: rgba(0, 0, 0, 0.85);
	display: block;
	margin-bottom: 1rem;
}
.shop_product .dropdown {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	font-size: 1.4rem;
	display: inline-block;
	width: 100%;
	border: 1px solid rgba(0, 0, 0, .2);
	background: white url(https://static.cargo.site/assets/images/select-arrows.svg) no-repeat right;
	margin-bottom: 1rem;
	line-height: 1.2;
	padding: .7rem 2.5rem .7rem 1rem;
}
.shop_product .button {
	font-family: "owners", sans-serif;
	font-size: 16px;
	background: rgba(0, 0, 0, 0.7);
	color: rgba(255, 255, 255, 1);
	flex: 0 0 50%;
	text-align: left;
	display: inline-block;
	line-height: 1;
	padding: .8rem 1rem .9rem;
}
/*
 * Image Zoom
 */

.content img.image-zoom:active {
	opacity: .7;
}
/**
 * Quick View
 */

[data-css-preset] .quick-view {
	padding-top: 2.5rem/*!quick_view_padding*/
	;
	padding-bottom: 2.5rem/*!quick_view_padding*/
	;
	padding-left: 2.5rem/*!quick_view_padding*/
	;
	padding-right: 2.5rem/*!quick_view_padding*/
	;
	height: 100%/*!quick_view_height*/
	;
	width: 100%/*!quick_view_width*/
	;
}
body.mobile .quick-view {
	width: 100%;
	height: 100%;
	margin: 0;
}
[data-css-preset] .quick-view-background {
	background: rgba(0, 0, 0, 0.85)/*!quick_view_bgcolor*/
	;
}
.quick-view-caption {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	font-weight: 400;
	transition: 100ms opacity ease-in-out;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 3.5rem 0;
	text-align: center;
	font-size: 1.5rem;
}
.quick-view-caption span {
	padding: 0.5rem 1rem;
	display: inline-block;
	background: rgba(0, 0, 0, .5);
	color: white;
}
/**
 * Quick View Navigation 
 */

.quick-view-navigation .left-arrow {
	left: 10px;
}
.quick-view-navigation .right-arrow {
	right: 10px;
}
.quick-view-navigation .left-arrow, .quick-view-navigation .right-arrow {
	/* Change height/width together to scale */
	height: 36px;
	width: 36px;
}
.quick-view-navigation .left-arrow .inner-color, .quick-view-navigation .right-arrow .inner-color {
	stroke: #fff;
	stroke-width: 1.5px;
}
.quick-view-navigation .left-arrow .outer-color, .quick-view-navigation .right-arrow .outer-color {
	stroke: rgba(0, 0, 0, 0.6);
	stroke-width: 2.5px;
}
.quick-view-navigation .close-button {
	top: 10px;
	right: 10px;
	/* Change height/width together to scale */
	width: 36px;
	height: 36px;
}
.quick-view-navigation .close-button .inner-color {
	stroke: #fff;
	stroke-width: 1.5px;
}
.quick-view-navigation .close-button .outer-color {
	stroke: #000;
	stroke-width: 2.5px;
	opacity: 0.6;
}
/** 
 * Image Gallery Navigation Arrows 
 */

.image-gallery-navigation .left-arrow, .image-gallery-navigation .right-arrow {
	/* Change height/width together to scale */
	height: 36px;
	width: 36px;
}
.image-gallery-navigation .left-arrow .inner-color, .image-gallery-navigation .right-arrow .inner-color {
	stroke: #fff;
	stroke-width: 1.5px;
}
.image-gallery-navigation .left-arrow .outer-color, .image-gallery-navigation .right-arrow .outer-color {
	stroke: rgba(0, 0, 0, 0.6);
	stroke-width: 2.5px;
}
/**
 * Wallpaper Backdrop Navigation Arrows 
 */

.wallpaper-navigation .left-arrow, .wallpaper-navigation .right-arrow {
	/* Change height/width together to scale */
	width: 36px;
	height: 36px;
}
.wallpaper-navigation .left-arrow .inner-color, .wallpaper-navigation .right-arrow .inner-color {
	stroke: #fff;
	stroke-width: 1.5px;
}
.wallpaper-navigation .left-arrow .outer-color, .wallpaper-navigation .right-arrow .outer-color {
	stroke: rgba(0, 0, 0, 0.6);
	stroke-width: 2.5px;
}
/**
 * Feed
 */

.feed .content_container .page {
	border-top: 0px dashed rgba(0, 0, 0, 0.2);
}
.feed .content_container .page_container:first-child .page {
	border-top: 0;
}
/*
 * Audio Player
 */

.audio-player {
	max-width: 36rem;
	height: 3.3rem;
	outline: 1px solid rgba(0, 0, 0, 0.15);
	color: rgba(0, 0, 0, 0.6);
	background: #fff;
	font-size: 1.2rem;
	line-height: 1.3;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	font-style: normal;
	font-weight: 400;
	text-align: left;
	margin: 1px 1px 1em 1px;
}
body.mobile .audio-player {
	max-width: 100%;
}
.audio-player .separator {
	width: 1px;
	background-color: rgba(0, 0, 0, 0.15);
}
.audio-player .button {
	background: transparent;
	cursor: pointer;
	fill: rgba(0, 0, 0, 0.85);
}
.audio-player .icon {
	fill: rgba(0, 0, 0, 0.85);
	padding: 30%;
	width: 100%;
	margin: auto;
}
.audio-player .buffer {
	background: rgba(0, 0, 0, 0.03);
}
.audio-player .progress {
	background: rgba(0, 0, 0, 0.1);
}
.audio-player .progress-indicator {
	border: 1px solid rgba(0, 0, 0, 0.7);
	width: 1px;
	height: 100%;
	right: 0;
	position: absolute;
	cursor: ew-resize;
}
.audio-player .note-icon {
	height: 100%;
	width: 3.8rem;
	padding: 1rem;
	fill: rgba(0, 0, 0, 0.5);
}
.audio-player .current-time {
	padding-left: 1rem;
}
.audio-player .total-time {
	padding-right: 1rem;
}
@media only screen and (max-width: 1280px) {
	.work-old-links {
		margin: 0px 5px;
		font-size: 16px !important;
		-webkit-text-stroke: 0.5px #000;
		/* 2px thick black outline */
		text-stroke: 0.5px #000;
	}
}
@media only screen and (max-width: 1120px) {
	.work-old-links {
		display: none;
	}
	.filter-link {
		font-size: 30px;
		font-weight: 600 !important;
		display: block;
	}
	.filter-link a {
		font-weight: 600 !important;
		-webkit-text-stroke: 1px #000;
		/* 2px thick black outline */
		text-stroke: 1px #000;
		letter-spacing: 2px;
		color: white !Important;
	}
	.office-links {
		display: none;
	}
}
@media only screen and (max-width: 1080px) {
	[data-container="set"][data-id="37645494"] .page_container {
		margin: 0px auto !important;
		width: calc(100% - 60px);
	}
	.header-inner {
		padding: 30px 30px;
	}
	.home-title {
		width: calc(100% - 60px) !important;
	}
	.news-home {
		width: calc(100% - 60px) !important;
	}
	.footer-inner {
		padding: 30px 30px 20px 30px;
	}
	.see-cols {
		padding: 30px;
	}
	.menu {
		padding: 30px;
	}
	[data-set-id="37651139"] .content_container [data-container="set"] .page_container {
		width: calc(100% - 60px);
		margin: 0px auto;
	}
	.news-module {
		width: 80vw !important;
	}
	[data-set-id="37645527"] .content_container [data-container="set"] {
		width: calc(100% - 60px);
		margin: 100px auto 0px auto;
	}
	[data-set-id="37645516"] .content_container {
		width: calc(100% - 60px);
		margin: 100px auto 0px auto;
	}
	.thumbnails .has_title .tags a {
		font-size: 16px;
	}
	[data-set-id="37645516"] .thumbnail {
		width: 100%;
		margin-bottom: 30px;
	}
	[data-set-id="37645584"] .content_container [grid-row] {
		position: relative;
		padding: 0;
		margin: 0;
		/* full viewport minus child padding (1rem each side) */
		box-sizing: border-box;
	}
	.first-row {
		width: calc(100% - 0px) !important;
	}
	[data-set-id="37645584"] [data-container="set"]>.page_container {
		margin: 0px auto;
		width: calc(100% - 60px);
	}
	[data-set-id="37645584"] .content_container [grid-row].table-row {
		max-width: 1220px !important;
		left: 0px;
		/* center and offset 1rem */
		width: calc(100vw - 60px);
	}
	.align-bottom>div:first-child {
		padding-left: 30px !important;
	}
	.align-top>div:last-child {
		padding-right: 30px !important;
	}
	.align-top>div:first-child {
		padding-left: 30px !important;
	}
	.align-bottom>div:last-child {
		padding-right: 30px !important;
	}
}
@media only screen and (max-width: 980px) {
	.desktop-twa {
		display: none;
	}
	.mobile-twa {
		display: block;
	}
	[data-predefined-style="true"] h2 {
		font-size: 40px;
		line-height: 1.2;
	}
	.align-top h2 {
		font-size: 26px !important;
		font-weight: 500 !important;
	}
	a.center {
		margin: 2.5rem auto 0px auto;
		width: 100%;
		display: inline-block;
		text-align: center;
		font-size: 26px;
		text-decoration: underline !Important;
	}
	.large {
		font-size: 70px !important;
	}
	[data-set-id="37645527"] h1.large-title {
		padding-top: 0rem;
		padding-bottom: 5rem;
		font-size: 70px !important;
	}
	.align-top>div:last-child {
		width: 100% !important;
		padding-left: 30px !important;
		order: 1;
		padding-right: 30px !important;
	}
	.expanded.align-top>div:last-child {
		width: 100% !important;
		transition: 0.5s ease all;
	}
	.align-top>div:first-child {
		width: 100% !important;
		padding-right: 30px !important;
		order: 2;
		padding-left: 30px !important;
	}
	.align-top.alt>div:first-child {
		order: 1;
	}
	.align-top.alt>div:last-child {
		order: 2;
		padding-top: 40px;
	}
	[data-set-id="37651139"] .align-top>div:first-child {
		padding-top: 40px;
}
	[data-set-id="37651139"] .align-top.alt>div:first-child {
		padding-top: 0px;
	}
	.align-bottom.alt>div:first-child {
		order: 1;
	}
	.align-bottom>div:first-child {
		width: 100% !important;
		padding-right: 30px !important;
		padding-left: 30px !important;
	}
	.expanded.align-bottom>div:first-child {
		width: 100% !important;
		transition: 0.5s ease all;
	}
	.expanded.align-top>div:first-child {
		width: 100% !important;
		transition: 0.5s ease all;
	}
	.align-bottom>div:last-child {
		width: 100% !important;
		padding-left: 30px !important;
		padding-right: 30px !important;
	}
	.expanded.align-bottom>div:last-child {
		width: 100% !important;
		transition: 0.5s ease all;
	}
	.news-module {
		color: #000 !important;
		font-size: 18px;
		padding: 30px;
		opacity: 0.5;
		margin: 0px auto;
		line-height: 1;
		width: 80vw !important;
		text-align: left;
	}
	[data-predefined-style="true"] bodycopy {
		font-size: 18px;
		font-weight: 500;
		color: rgba(0, 0, 0, 1);
		font-family: "owners", sans-serif;
		font-style: normal;
		line-height: 1.3;
		letter-spacing: 0.3px;
	}
	.office-nav-inner {
		width: 100%;
		margin: 0px auto;
		text-align: center;
	}
	.col-one {
		margin-bottom: 40px;
		width: 50%;
	}
	.col-two {
		margin-bottom: 40px;
		width: 50%;
	}
	.col-three {
		width: 50%;
	}
	.col-four {
		width: 50%;
	}
	.see-cols h1 {
		margin-bottom: -1.5rem !Important;
		font-size: 103px !important;
	}
	.news-home b {
		font-size: 25px;
		line-height: 1;
		text-transform: uppercase;
	}
	.service-links {
		font-size: 25px;
	}
	.news-slider h2 {
		font-size: 25px;
		line-height: 1 !important;
	}
	[data-set-id="37645527"] h1 {
		margin-bottom: 8px !important;
		font-size: 25px;
		line-height: 1 !important;
	}
	[data-set-id="37645527"] h2 {
		font-weight: 500 !important;
		font-size: 18px !Important;
		line-height: 1 !important;
	}
	.work-nav-inner {
		margin: 0px auto;
		text-align: left;
		width: 1070px;
	}
	.office-nav-inner {
		width: 100%;
		padding: 0px 25px;
		margin: 0px auto;
		text-align: center;
	}
	[data-set-id="37645516"] .thumbnail .title {
		font-size: 25px;
	}
	.work-old-links {
		margin: 0px 10px;
		-webkit-text-stroke: 0.5px #000;
		/* 2px thick black outline */
		text-stroke: 0.5px #000;
		font-size: 20px !important;
	}
	.office-links {
		margin: 0px 10px;
		-webkit-text-stroke: 0.5px #000;
		/* 2px thick black outline */
		text-stroke: 0.5px #000;
		font-size: 20px !important;
	}
	[data-set-id="37645584"] .content_container .first-row h1 {
		font-size: 50px !important;
		margin-bottom: 5rem;
		margin-top: 20px;
		line-height: 1;
		text-align: center;
		text-transform: uppercase;
	}
	[data-set-id="37645584"] .content_container small {
		font-size: 32px;
		margin: 20px 0px;
		color: black;
		font-weight: 600;
	}
	[data-set-id="37645584"] .content_container [grid-row] {
		position: relative;
		padding: 0;
		margin: 0;
		left: -1rem;
		width: calc(100% - -2rem);
		box-sizing: border-box;
	}
	[data-predefined-style="true"] h1 {
		font-family: "owners", sans-serif;
		font-style: normal;
		font-weight: 700;
		padding: 0;
		margin: 0;
		font-size: 30px;
		line-height: 1.1;
		color: rgba(0, 0, 0, 1);
	}
	.awards-row h2 {
		display: inline;
		text-transform: uppercase;
		font-weight: 600 !important;
		font-size: 25px !important;
		line-height: 32px !important;
	}
	.row-pub h2 {
		font-size: 25px !important;
		display: block;
		font-weight: 600 !Important;
		padding-bottom: 10px !important;
	}
	.expand h2 {
		display: inline-block;
		width: 100%;
		font-weight: 600 !important;
		font-size: 25px !important;
	}
	.filter-nav-inner {
		padding: 0px 30px;
	}
	[data-set-id="37645672"] [data-view="pinned_top"] .page_container {
		width: calc( 100% - 60px);
		margin: 0px auto;
	}
	[data-set-id="37727013"] .content_container .page_container {
		padding: 60px 0px;
		max-width: 1000px;
		margin: 0px auto;
		width: calc(100% - 60px);
	}
	[data-set-id="37645760"] .content_container [data-container="set"] {
		width: calc(100% - 60px);
	}
}
@media only screen and (max-width: 780px) {
    
    .align-top {
padding-top: 10px !important;
    }
    
    [data-set-id="37651139"] .align-top>div:first-child {
		padding-top: 30px;
}
	.video-slider .slick-dots {
		left: 30px;
	}
	.close-pdf a {
		font-family: "owners", sans-serif !important;
		color: black;
		font-weight: 600;
		font-size: 15px;
	}
	[data-set-id="37645760"] .content_container [data-container="set"] {
		width: calc(100% - 60px);
		margin: 20px auto 0px auto;
	}
	.expand h2 {
		display: inline-block;
		width: 100%;
		font-weight: 600 !important;
		font-size: 20px !important;
	}
	.see-cols h1 {
		margin-bottom: 0px !Important;
		font-size: 50px !important;
	}
	[data-set-id="37645527"] h1.large-title {
		padding-top: 0rem;
		padding-bottom: 5rem;
		font-size: 50px !important;
	}
	[data-set-id="37645516"] .thumbnail .title {
		font-size: 20px;
		margin-top: 10px;
		margin-bottom: 5px;
	}
	.logo {
		font-size: 15px;
	}
	.right a {
		letter-spacing: 0.5px;
		margin-left: 0%;
		font-size: 15px;
		font-weight: 600;
	}
	.menu a {
		text-transform: uppercase;
		font-size: 90px;
		text-align: left;
		line-height: 0.8;
		color: transparent !Important;
		-webkit-text-stroke: 2px #000;
		/* 2px thick black outline */
		text-stroke: 2px #000;
		font-weight: 700 !important;
	}
	.right {
		line-height: 1.2;
		top: -0.5px;
		position: relative;
		width: 60px;
	}
	.see-cols>div:first-child {
		width: 50% !important;
		padding: 0px;
		display: flex;
	}
	.see-cols>div:last-child {
		width: 50% !important;
		display: flex;
	}
	[data-set-id="37645527"] .content_container .page_content img {
		max-width: 100% !important;
	}
	.thumbnails .has_title .tags a {
		font-size: 14px;
		letter-spacing: 0px;
	}
	[data-set-id="37645516"] .thumbnail {
		width: 100%;
		margin-bottom: 10px;
	}
	#bigSlider {
		left: calc(-1 * (100vw - 100%)/2);
		width: 100vw !important;
		position: relative;
		height: 50vh !important;
		margin: 0px auto;
	}
	#bigSlider:after {
		height: 50vh;
	}
	#bigSlider iframe {
		position: absolute;
		top: 0;
		left: -10%;
		width: 120% !important;
		height: 100% !important;
		border: none;
	}
	#bigSlider video {
		object-fit: cover;
		object-position: center;
		width: 100% !important;
		height: 50vh !important;
	}
	.table-row>div:first-child {
		padding-bottom: 0px !Important;
		margin-bottom: -5px !important;
		width: 100%;
	}
	.expand {
		padding: 15px 0rem !Important;
	}
	.arrow {
		transition: 0.5s ease all;
		transform: rotate(0deg);
		position: absolute;
		right: 0px;
		transform-origin: center;
		top: 17px;
		width: 20px;
		height: 14px;
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url(https://files.cargocollective.com/c3016122/arrow.svg);
	}
	[data-set-id="37645672"] [data-view="pinned_top"] {
		width: 100%;
		margin: 100px auto 0px auto;
	}
	.works {
		margin: 0px auto;
		max-width: 100%;
	}
	[local-style="37659327"].page_container video {
		margin: 0px auto !important;
		width: calc(100% - 60px) !important;
	}
	.sub-nav-inner a {
		font-weight: 600 !important;
		font-size: 18px !important;
	}
	.sub-nav {
		padding-left: 30px;
		width: 300px;
	}
	.sub-nav-inner .close-filter a {
		font-size: 15px !important;
	}
	.office-nav-alt .close-filter a {
		font-size: 15px !important;
	}
	.office-nav-alt a {
		font-weight: 600 !important;
		font-size: 18px !important;
	}
	.office-nav-alt {
		padding-left: 30px;
		width: 300px;
	}
	.filter-link {
		font-size: 25px;
		-webkit-text-stroke: 0.5px #000;
		text-stroke: 1px #000;
		letter-spacing: 2px;
		font-weight: 600 !important;
		display: block;
	}
	.align-bottom {
		font-size: 26px;
	}
	.carousel-cell {
		height: calc(var(--vh, 1vh) * 100) !important;
	}
	.video-slider {
		height: calc(var(--vh, 1vh) * 100) !important;
	}
	[data-set-id="37645672"] [data-view="pinned_top"] .page_container {
		width: calc( 100% - 60px);
		margin: 0px auto;
	}
	.align-top>div:first-child {
		padding-bottom: 30px;
	}
	.align-top.alt>div:last-child {
		padding-bottom: 0px;
	}
	.align-top>div:last-child {
		padding-bottom:30px;
	}
    .downshift.align-top>div:last-child {
		padding-bottom:5px;
	}
	.align-top.alt>div:last-child {
		order: 2;
		padding-top: 30px;
	}
	.align-top.alt>div:first-child {
		padding-top: 0px;
        padding-bottom: 30px;
	}
}
@media only screen and (max-width: 500px) {
	.sub-nav {
		padding-left: 25px;
		width: 275px;
	}
	[data-set-id="37645760"] .content_container [data-container="set"] {
		width: calc(100% - 50px);
		margin: 20px auto 0px auto;
	}
	.align-bottom {
		font-size: 18px;
	}
	.office-nav-alt {
		padding-left: 25px;
		width: 275px;
	}
	.col-one {
		margin-bottom: 20px;
		width: 100%;
	}
	.col-two {
		margin-bottom: 20px;
		width: 100%;
	}
	.col-three {
		margin-bottom: 20px;
		width: 100%;
	}
	.menu a {
		text-transform: uppercase;
		font-size: 50px;
		text-align: left;
		line-height: 0.8;
		letter-spacing: 2px;
		color: transparent !Important;
		-webkit-text-stroke: 1px #000;
		/* 2px thick black outline */
		text-stroke: 1px #000;
		font-weight: 700 !important;
	}
	.filter-nav-inner {
		padding: 0px 25px;
	}
	[data-set-id="37645584"] .content_container [grid-row] {
		position: relative;
		padding: 0;
		margin: 0;
		box-sizing: border-box;
	}
	.home-title {
		width: calc(100% - 50px) !important;
	}
	.header-inner {
		padding: 25px;
	}
	.large {
		font-size: 40px !important;
	}
	.large.smaller {
		padding-bottom: 15px !important;
		font-size: 32px !important;
	}
	.back-to-top {
		margin: 50px auto;
		height: 83px;
		width: 300px;
	}
	[local-style="37645498"].page_container {
		padding-bottom: 25px;
		padding-top: 25px;
		width: 100% !important;
	}
	.align-top [image-gallery-vertical-align=middle] {
		align-items: center;
	}
	.news-module {
		color: #000 !important;
		font-size: 18px;
		padding: 25px;
		opacity: 0.5;
		margin: 0px auto;
		line-height: 1;
		width: 95vw !important;
		text-align: left;
	}
	.footer-inner {
		padding: 25px 25px 20px 25px;
	}
	.see-cols {
		padding: 25px;
	}
	[data-set-id="37651139"] .content_container [data-container="set"] .page_container {
		width: calc(100% - 50px);
		margin: 0px auto;
	}
	[data-set-id="37651139"] .content_container [data-container="set"] {
		width: 100%;
		margin: 90px auto 0px auto;
	}
	[data-set-id="37645527"] .content_container [data-container="set"] {
		width: calc(100% - 50px);
		margin: 90px auto 0px auto;
	}
	[data-set-id="37645516"] .content_container {
		width: calc(100% - 50px);
		margin: 90px auto 0px auto;
	}
	[data-set-id="37645516"] .thumbnail {
		width: 100%;
		margin-bottom: 10px;
	}
	[data-set-id="37645584"] [data-container="set"]>.page_container {
		margin: 0px auto;
		width: calc(100% - 50px);
	}
	[data-set-id="37645584"] .content_container [grid-row].table-row {
		max-width: 1220px !important;
		left: 0px;
		/* center and offset 1rem */
		width: calc(100vw - 50px);
	}
	.news-home {
		left: -2.5rem;
		margin: 0px auto;
		position: relative;
		width: calc(100% - 50px) !important;
	}
	[data-set-id="37645672"] [data-view="pinned_top"] {
		width: 100%;
		margin: 90px auto 0px auto;
	}
	[data-set-id="37645672"] [data-view="pinned_top"] .page_container {
		width: calc(100% - 50px);
		margin: 0px auto;
	}
	[data-predefined-style="true"] h1 {
		font-family: "owners", sans-serif;
		font-style: normal;
		font-weight: 700;
		padding: 0;
		margin: 0;
		font-size: 25px;
		line-height: 1.1;
		color: rgba(0, 0, 0, 1);
	}
	.filter-link {
		font-size: 20px;
		-webkit-text-stroke: 0.5px #000;
		text-stroke: 1px #000;
		letter-spacing: 2px;
		font-weight: 600 !important;
		display: block;
	}
	[data-predefined-style="true"] h2 {
		font-size: 35px;
		line-height: 1.2;
	}
	[data-predefined-style="true"] bodycopy {
		font-size: 15px;
	}
	a.center {
		font-size: 15px;
	}
	[data-set-id="37645584"] .content_container small {
		font-size: 25px;
		margin: 20px 0px;
		color: black;
		font-weight: 600;
	}
	[data-container="set"][data-id="37645494"] .page_container {
		margin: 0px auto !important;
		width: calc(100% - 50px);
	}
	.service-links {
		margin: 0px auto !important;
		padding-left: 0px !important;
		padding-right: 0px !important;
		width: 100% !important;
		font-size: 20px;
	}
	.service-links>div {
		padding-right: 0px !important;
		padding-left: 0px !important;
	}
	.video-slider .slick-dots {
		left: 25px;
	}
	.text-template {
		max-width: 1000px;
		width: 100% !important;
		margin: 50px auto 0px auto !important;
		padding: 40px 25px !important;
	}
	[data-set-id="37727013"] .content_container .page_container {
		padding: 50px 0px;
		max-width: 1000px;
		margin: 0px auto;
		width: calc(100% - 50px);
	}
	.align-top>div:first-child {
		padding-right: 25px !important;
		padding-left: 25px !important;
	}
	.align-top>div:last-child {
		width: 100% !important;
		padding-left: 25px !important;
		order: 1;
		padding-right: 25px !important;
	}
	.align-top.alt>div:last-child {
		order: 2;
		padding-bottom: 0px !important;
		padding-top: 0px;
	}
	[data-set-id="37651139"] .align-top>div:first-child {
		padding-top: 0px;
	}
}
/* ===== 小屏幕 ===== */

@media (max-width: 768px) {
	/* 全屏覆盖菜单 */
	.nav-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #fff;
		z-index: 2000;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.nav-overlay.active {
		display: flex;
	}
	.nav-overlay a {
		font-size: clamp(18px, calc(16px + 0.6vw), 28px) !important;
		margin: 15px 0;
		text-decoration: none;
		color: #000;
		transition: color 0.3s;
		white-space: nowrap;
		/* 保持不换行 */
	}
	.nav-overlay a:hover {
		color: #000;
	}
	[local-style="37645501"] bodycopy {
		padding: 0px 0px !important;
	}
	[local-style="37645498"] bodycopy {
		padding: 0px 0px !important;
	}
	[local-style="37648707"] bodycopy {
		padding-bottom: 0px !important;
	}
	[local-style="37659274"] bodycopy {
		padding-bottom: 30px !important;
	}
	[local-style="37651148"] video {
		object-fit: cover;
		position: relative;
		width: 100vw !important;
		left: calc(-1 * (100vw - 100%)/2);
		height: 400px !important;
	}
	[local-style="37659327"].page_container video {
		object-fit: cover;
		position: relative;
		width: 100vw !important;
		left: calc(-1 * (100vw - 100%)/2);
		height: 400px !important;
	}
}
@media only screen and (max-height: 600px) {
	.menu a {
		text-transform: uppercase;
		font-size: 6rem;
		-webkit-text-stroke: 1px #000;
		text-stroke: 1px #000;
		letter-spacing: 4px;
	}
}