@import url("columns.css");
/*
xs = 540px
sm = 670px
md = 992px
lg = 1200px 
*/
@font-face {
    font-family: 'Utendo';
    src: url('../font/Utendo-Bold.woff2') format('woff2'),
        url('../font/Utendo-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Utendo';
    src: url('../font/Utendo-Semibold.woff2') format('woff2'),
        url('../font/Utendo-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Utendo';
    src: url('../font/Utendo-Regular.woff2') format('woff2'),
        url('../font/Utendo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html {
	scroll-behavior: smooth;
}
:root {
	--primary-color: hsl(18, 100%, 52%);
	--primary-color-darker: hsl(18, 100%, 42%);
	--secondary-color: hsl(0, 0%, 10%);
	--secondary-color-darker: hsl(0, 0%, 0%);
	--hero-min-height: 600px;
	--hero-height: 80vh;
	--main-font: 'Utendo', sans-serif;
	--title-font: 'Utendo', sans-serif;
	--transition-all: all .3s ease-in-out;
	--header-height: 50vh;
	--header-min-height: 400px;
	--max-width: 1200px;
}
/* Resets */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup,
var, b, i, hr, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}
h1, h2, h3, h4 {
	line-height: 1.2;
	margin-bottom: 1rem;
}
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	zoom: 1;
}
.maxwidth {
	max-width: var(--max-width);
	margin: auto;
}
.maxwidth-960 {
	max-width: 960px;
	margin: auto;
}
.sticky {
	position: sticky;
	top: 5rem;
}
img {
	max-width: 100%;
}
hr {
	height: 1px;
	display: block;
	margin: 1rem 0;
	color: #333;
	background-color: currentColor;
	border: 0;
  }
.centered {
	text-align: center;
}
.text-mid {
	color: #666;
}
.text-light {
	color: #aaa;
}
.text-primary {
	color: var(--primary-color);
}
.text-white {
	color: #fff;
}
.text-secondary {
	color: var(--secondary-color);
}
.text-lg {
	font-size: 1.2rem;
}
.text-xl {
	font-size: 1.4rem;
}
.text-2xl {
	font-size: 1.6rem;
}
.text-3xl {
	font-size: 2rem;
}
.text-bold {
	font-weight: bold;
}
.text-300 {
	font-weight: 300;
}
.text-bolder {
	font-weight: 600;
}
.bg-primary {
	background-color: var(--primary-color);
}
.bg-secondary {
	background-color: var(--secondary-color);
}
.bg-secondary-darker {
	background-color: var(--secondary-color-darker);
}
.bg-light {
	background-color: #f6f6f6;
}
.bg-white {
	background-color: #fff;
}
.text-balance {
	text-wrap: balance;
}
.text-pretty {
	text-wrap: pretty;
}
.text-center {
	text-align: center;
}
.page-section {
	padding-block: 2rem;
}
.home-section {
	padding: 4em 1em;
}
article, aside, canvas, figure, figure img, figcaption, hgroup, footer, header, nav, section, audio, video {
	display: block;
}
main {
	position: relative;
}
label {
	display: block;
	/* text-transform: uppercase; */
	margin-top: 1em;
}
.list-none {
	list-style: none;
}
body, input, button,
textarea, select, option {
	font-family: var(--main-font);
	color: #222;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;       /* Remove default arrow */
	background: url(../img/arrow-down.svg) no-repeat calc(100% - 1em) 50%;   /* Add custom arrow */
}
select::-ms-expand {
    display: none; /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}
/* Target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
    select {
        background: none\9;
        padding: 5px\9;
    }
}
input,
textarea,
select {
	border-radius: 0px;
	border: none;
	background-color: var(--secondary-color);
	color: #fff;
	padding: .5em 1em;
	margin-bottom: 5px;
	margin-right: 5px;
	box-sizing: border-box;
	width: 100%;
	display: block;
}
textarea {
	height: 100px;
}
input[type=checkbox] {
	margin-right: 10px;
}
input[type=submit],
button[type=submit] {
	color: #fff;
	background: var(--primary-color);
	font-family: var(--title-font);
	padding: 10px 40px;
	cursor: pointer;
	border: none;
	box-sizing: border-box;
	transition: background-color .3s;
}
input[type=submit]:hover,
button[type=submit]:hover {
	background: var(--secondary-color);
}
.positioning-text ul {
	list-style: square;
	padding-left: 1.5em;
}
.positioning-text ul li::marker {
	color: var(--secondary-color);
}
.positioning-text ul li {
	margin-bottom: .5em;
}
body {
	background: #fff;
}
p {
	margin-bottom: 1em;
}
b {
	font-weight: 500;
}
a {
	color: var(--primary-color);
	text-decoration: none;
	
	-webkit-transition: var(--transition-all);
	-moz-transition: var(--transition-all);
	transition: var(--transition-all);
}
a:hover {
	color: var(--secondary-color);
}
.prose ul,
.prose ol {
	margin-left: 1.5rem;
	margin-bottom: 1.5rem;
}
.prose ul ul,
.prose ol ol,
.prose ol ul,
.prose ul ol {
	margin-left: 1.5rem;
	margin-bottom: .5rem;
}
.prose ul li::marker,
.prose ol li::marker {
	color: var(--primary-color);
}
header {
	padding: 20px;
	-webkit-transition: var(--transition-all);
	-moz-transition: var(--transition-all);
	transition: var(--transition-all);
}
header ul {
	list-style: none;
}
.header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* margin-bottom: 1em; */
}
header .logo {
	display: block;
	width: 150px;
}
header .logo img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: var(--transition-all);
	-moz-transition: var(--transition-all);
	transition: var(--transition-all);
}
header .logo img.logo-primary {
	display: none;
}
header nav a {
	color: var(--primary-color);
}
header nav a:hover {
	color: #fff;
}
.btn-featured {
	display: inline-flex;
	font-weight: bold;
	color: #fff;
	border: 2px solid currentColor;
	text-align: center;
	padding: .6em 1.5em .4em;
	place-content: center;
	text-transform: uppercase;
	font-size: .85em;
}
.btn-featured:hover {
	color: var(--primary-color);
}
/* cover-video */

.video-wrapper {
	position: absolute;
	width: 100%;
	margin: rem-calc(0 0 54.5);
	min-height: 31.25rem;
	overflow: hidden;
	height: 100%;
	background: url(../img/video-bg.webp) no-repeat center;
	background-size: 100%;
	animation: scalebg 5s ease-in-out alternate infinite;
}
@keyframes scalebg {
	to {
		background-size: 105%;
	}
}
.video-overlay {
	height: 100%;
	opacity: .3;
	background: #000;
	position: absolute;
	width: 100%;
	z-index: 2;
}
.video-expand:hover {
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}
.tv {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.tv .screen {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	margin: auto;
	opacity: 0;
	transition: opacity .5s;
}
.tv .screen.active {
	opacity: 1;
}
/* cover-video ends */
.hero {
	background-color: #000;
	min-height: var(--hero-min-height);
	height: var(--hero-height);
	position: relative;
	overflow: hidden;
}
.video-container{
	position: absolute;
	inset: 0;
	width: 100vw;
	height: 100%;
	opacity: .5;
}
.video-container iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 100vh;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
	.video-container iframe {
		height: 56.25vw;
	}
}
@media (max-aspect-ratio: 16/9) {
	.video-container iframe {
		width: 177.78vh;
	}
}
.headline {
	position:absolute;
	color: #fff;
	bottom: 1em;
	left: 0;
	right: 0;
	box-sizing: border-box;
	z-index: 2;
	padding-inline: 2em;
}
.headline h1 {
	max-width: 24ch;
	line-height: 1;
	font-size: 2rem;
	text-wrap: balance; 
}
.home-section {
	padding: 4em 1em;
}
.approach-menu {
	/* margin-top: min(-85vh, 600px); */
	/* height: 85vh; */
	/* min-height: 600px; */
	padding-block: 2em;
	display: grid;
	align-content: center;
	padding-left: 2rem;

	top: 10rem;
	position: sticky;
	z-index: 1;
}
.approach-list {
	display: flex;
	gap: 2rem;
	overflow: hidden;
	border-bottom: 1px solid white;
	margin-bottom: 2em;
}
.approach-list > * {
	margin-bottom: -1.4rem;
}
.approach-step {
	position: relative;
	display: grid;
	place-items: center;
	align-items: center;
	padding-left: 50%;
	/* background-color: var(--primary-color); */
}
.approach-step > img {
	transform: translateX(-50%);
	display: block;
	aspect-ratio: 1;
	object-fit: cover;
	width: 100vw;
	max-width: 99vw;
	height: 85vh;
	min-height: 600px;
	margin-right: auto;
	opacity: .5;
}
.approach-list .approach-content {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	display: grid;
	place-content: center;
}
.approach-list .approach-content img {
	width: 5em;
	filter: brightness(10);
}
.sequence-wrapper {
	display: grid;
	padding-inline: 1rem;
	gap: 4rem;
}
.sequence-steps {
	display: grid;
	counter-reset: steps;
	list-style: none;
}
.sequence-steps-item {
	padding-left: 4rem;
	position: relative;
	padding-top: 2rem;
}
.sequence-steps-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 200px;
	height: 1px;
	border-top: 4px solid #666;
}
.sequence-steps-item::after {
	position: absolute;
	left: 0;
	top: .5em;
	counter-increment: steps;
	content: counter(steps);
	font-size: 3rem;
	opacity: .3;
	font-weight: bold;
}
.approach-image {
	display: block;
	aspect-ratio: 1;
	height: auto;
	object-fit: cover;
	/* box-shadow: .5em .5em var(--primary-color); */
	margin-bottom: 2em;
	max-width: calc(100% - 2em);
}
.page-cta-ribbon {
	background-color: var(--secondary-color);
}
.page-cta-ribbon .maxwidth {
	position: relative;
	/* background-color: var(--secondary-color-darker); */
}
.cta-slider {
	mix-blend-mode: screen;
	opacity: .5;
}
.cta-slider li {
	background-color: var(--primary-color);
	position: relative;
	overflow: hidden;
}
.cta-slider img {
	display: block;
	width: 100%;
	min-height: 300px;
	object-fit: cover;
	transition: scale 8s ease-in-out;
	transition: opacity .3s linear;
}
.cta-slider li.flex-active-slide img {
	scale: 1.1;
}
.page-cta-ribbon:has(a:hover) .cta-slider img {
	opacity: .1;
}
.page-cta-ribbon a {
	display: flex;
	position: relative;
	inset: 0;
	align-items: center;
	justify-items: start;
	color: #fff;
	padding: 1em 2.5em 1em 1em;
	width: 100%;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 2em;
	line-height: 1;
	text-wrap: balance;
	z-index: 2;
}
.page-cta-ribbon a::after {
	position: absolute;
	top: 2rem;
	right: 1em;
	content: "";
	display: inline-block;
	width: .8em;
	height: .8em;
	margin-left: 1em;
	border-top: 15px solid var(--primary-color);
	border-right: 15px solid var(--primary-color);
	transition: right .3s ease-in-out, top .3s ease-in-out, border .3s ease-in-out;
}
.page-cta-ribbon a::before {
	position: absolute;
	top: 2em;
	right: 1.4em;
	content: "";
	width: 1.5em;
	height: 5px;
	transform: rotate(-45deg);
	background-color: #333;
	transition: width .3s ease-in-out, top .3s ease-in-out, right .3s ease-in-out, background-color .3s ease-in-out;
}
.page-cta-ribbon a:hover::before {
	right: 1em;
	width: 2.5em;
	background-color: var(--primary-color);
}
.page-cta-ribbon a:hover::after {
	right: 1.2em;
	border-color: var(--primary-color);
}
.page-cta-ribbon a:hover {
	background-color: #0002;
}
.capabilities-section {
	position: relative;
	overflow: hidden;
}
.capability-tile {
	background: var(--primary-color);
	margin-block: 1rem;
	position: relative;
	display: block;
	overflow: hidden;
	transition: scale .6s ease-in-out;
}
.capability-tile img {
	width: 100%;
	aspect-ratio: 3 / 2;
	display: block;
	object-fit: cover;
	transition: scale .6s ease-in-out;
}
.capability-tile:hover {
	scale: .95;
}
.capability-tile:hover img {
	opacity: .5;
	scale: 1.1;
}
.capability-caption {
	position: relative;
	isolation: isolate;
	padding: 1rem;
	font-size: 1.6em;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
}
.capability-caption h4 {
	margin-bottom: 0;
	color: #fff;
}
.capability-caption::before {
	content: "";
	position: absolute;
	inset: -2em 0 0 0;
	z-index: -1;
	background: linear-gradient(hsl(18, 100%, 52%, 0), hsl(18, 100%, 52%));
	opacity: .5;
}
.capability-column-image {
	width: 100%;
	height: auto;
	aspect-ratio: 2/1;
	object-fit: cover;
	margin-bottom: .5rem;
}
/* brands scroller */
@keyframes scroll {
    to {
        transform: translate(calc(-50% - 2rem));
    }
}
.section-brands {
    background-color: hsl(var(--clr-gray-50),.4);
}
.scroller {
    max-width: 960px;
	padding-block: 1em;
}
.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}
.scroller__inner img {
	width: 120px;
    height: 70px;
    object-fit: contain;
    filter: invert(1) grayscale(1);
}
.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
    mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}
.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 160s) var(--_animation-direction, forwards) linear infinite;
}
.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}
.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}
.scroller[data-speed="fast"] {
    --_animation-duration: 60s;
}
.scroller[data-speed="slow"] {
    --_animation-duration: 180s;
}
/* accordion */
.accordion-group {
	margin-block: 2rem;
}
.accordion-group .accordion-button {
	display: flex;
	text-align-last: left;
	width: 100%;
	margin-top: 1rem;
	border: none;
	background-color: var(--secondary-color);
	color: #fff;
	box-shadow: 2px 2px 5px #0001;
	padding: .8rem 1rem .5rem;
	font-weight: bold;
	font-size: 1rem;
	text-align: left;
	line-height: 1.2;
}
.accordion-group .accordion-button:not(.inert):hover {
	cursor: pointer;
}
.accordion-group .accordion-button:not(.inert):hover::after {
	color: var(--primary-color);
}
.accordion-group .accordion-button.active {
	color: var(--primary-color);
}
.accordion-group .accordion-button:not(.inert)::after {
	content: "+";
	margin-left: auto;
}
.accordion-group .accordion-button.active:not(.inert)::after {
	content: "-";
}
.accordion-group .accordion-content {
	display: none;
	padding: 1rem;
}
/*  */
footer {
	color: #666;
	background-color: #000;
	padding: 2em 1em;
	text-align: center;
	position: relative;
	font-size: .85rem;
}
footer .logo img {
	width: 150px;
	height: auto;
}
footer .footer-menu {
	padding-block: 1em;
}
footer .footer-menu a {
	color: inherit;
}
footer .footer-menu a:hover {
	color: var(--primary-color);
}
footer .footer-menu ul {
	list-style: none;
}
footer .footer-menu > ul > li {
	padding: .5em 0;
}
footer .footer-menu > ul > li > a {
	font-weight: bold;
	color: #666;
}
footer .socials {
	margin-block: 1em;
}
footer .socials a {
	color: #666;
	display: inline-block;
	padding-inline: .5em;
}
footer .socials a:hover {
	color: var(--primary-color);
}
footer .socials .fab {
	font-size: 1.5rem;
}
.copyright {
	padding-block: 2em;
}
.page-header {
	box-sizing: border-box;
	min-height: 50vh;
    height: 600px;
	background-color: var(--secondary-color);
	position: relative;
	color: #fff;
	overflow: hidden;
}
.page-header img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .5;
	animation: scale 10s ease-in-out alternate infinite;
}
.page-header a:hover {
	color: #fff;
}
@keyframes scale {
	100% { scale: 1.1}
}
.breadcrumbs {
	font-size: .8rem;
	text-transform: uppercase;
	padding: 1em .5em;
	position: relative;
	z-index: 1;
	display: none;
}
.breadcrumbs a {
	color: #fff;
}
.page-header-text {
	position: absolute;
	bottom: 50px;
	right: 0;
	left: 0;
	margin: auto;
	padding-inline: 2em;
}
.page-header h1 {
	text-transform: uppercase;
	font-weight: normal;
	font-size: 1rem;
	margin-bottom: 1rem;
}
.page-header h2 {
	font-size: 2.5rem;
	line-height: 1.2;
	text-wrap: balance;
}
.bg-texture {
	--texture-image: url('../img/texture-light.webp');
	--texture-opacity:.5;
	position: relative;
	isolation: isolate;
}
.bg-texture::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--texture-image) fixed center;
	background-size: cover;
	opacity: var(--texture-opacity);
	mix-blend-mode: screen;
	filter: invert(1);
}
.bg-dot-arc {
	--bg-graphic: url('../img/dot-arc.svg');
	--bg-filter1: grayscale(0);
	--bg-filter2: brightness(1);
	--bg-rotateX: 0deg;
	--bg-rotateZ: 0deg;
	--bg-opacity: 1;
	--bg-position: fixed 100% 50% no-repeat;
	--bg-size: 150px;
	position: relative;
	isolation: isolate;
}
.bg-dot-arc::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--bg-graphic) var(--bg-position);
	/* transform: rotate( var(--bg-rotateX) ) rotateZ( var(--bg-rotateZ) ); */
	background-size: var(--bg-size);
	opacity: var(--bg-opacity);

	filter: var(--bg-filter1) var(--bg-filter2);
}
.bg-dot-arc.bg-mod-180::before {
	--bg-rotateX: 180deg;
}
.bg-dot-arc.bg-mod-50::before {
	--bg-rotateX: .5;
}
.bg-dot-arc.bg-mod-flipx::before {
	--bg-rotateZ: 180deg;
}
.bg-dot-arc.bg-mod-gray::before {
	--bg-filter1: grayscale(1);
}
.bg-dot-arc.bg-mod-white::before {
	--bg-filter2: brightness(100);
}
.section-contact {
	padding-block: 4em;
}
/* services */
.services-wrapper {
	height: 75vh;
	min-height: 600px;
}
.service-menu {
	--service-item-size: 100px;
	--service-item-padding: .5em;
	--service-item-offset: 1em;
	--service-item-distance: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 240px;
	height: 240px;
	margin-top: -120px;
	margin-left: -120px;
}
.service-menu button {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 10px;
	background: linear-gradient(#fff, #ccc);
	border-radius: 50%;
	border: 0;
	font-size: 20px;
	font-weight: bold;
	text-wrap: balance;
	cursor: pointer;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
	transition: all .1s;
	line-height: 1;

	outline: 4px solid var(--primary-color);
	outline-offset: -8px;
}
.service-menu span {
	position: relative;
	z-index: 1;
}
.service-menu button::before {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	border: 4px solid #fff;
	background: url('../img/dot-arc.svg') center no-repeat;
	background-size: 60%;
}
.service-menu button::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: 50%;
	border: 1px solid var(--primary-color);
	transition: all .7s linear;
	opacity: 0;
}
.service-menu button:hover { 
	background: linear-gradient(#fff, hsl(18, 100%, 92%));
}
.service-menu button:hover::before {
	opacity: .1;
}
.service-menu button:focus { 
	outline: none;
}
.service-menu ul {
	position: absolute;
	list-style: none;
	padding: 0;
	margin: 0;
	top: -20px;
	right: -20px;
	bottom: -20px;
	left: -20px;
}
.service-menu li {
	position: absolute;
	width: 0;
	height: 100%;
	margin: 0 50%;
	transform: rotate(-360deg);
	transition: all 0.8s ease-in-out;
}
.service-menu li input {
	display: none; 
}
.service-menu li input + label {
	position: absolute;
	display: grid;
	place-content: center;
	line-height: 1.2;
	left: 50%;
	bottom: var(--service-item-distance);
	width: 0;
	height: 0;
	margin-left: 0;
	background: linear-gradient(#fff, #ccc);
	border-radius: 50%;
	text-align: center;
	font-size: 1px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: none;
	outline: #fff2 2px solid;
	outline-offset: 5px;
	transition: all 0.8s ease-in-out, color 0.1s, background-color 0.1s;
}
.service-menu li input + label:hover { 
	box-shadow: 0px 0px 0px 5px var(--primary-color) inset;
	background: linear-gradient(#fff, hsl(18, 100%, 92%));
	outline-color: var(--primary-color);
}
.service-menu li input:checked + label {
	background: var(--primary-color);
	color: white;
	line-height: 1.2;
}
.service-menu.open {
	--service-item-distance: 120%;
}
.service-menu li input:checked + label { 
	transition-duration: .3s; 
}
.service-menu.open li input + label {
	width: var(--service-item-size);
	height: var(--service-item-size);
	margin-left: calc( var(--service-item-size) * -1 );
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
	font-size: 14px;
	padding: var(--service-item-padding);
}
.service-menu.open button::after {
	inset: -8rem;
	opacity: .3;
}
.services-popup {
	display: none;
	place-content: center;
	position: fixed;
	inset: 0;
	background-color: #222d;
	height: auto;
	z-index: 9999;
	color: #fff;
	overflow-y: auto;
	padding: 1rem;
	box-sizing: border-box;
	overscroll-behavior: contain;

    transition: all ease-in-out .3s allow-discrete;
    opacity: 1;
    
    @starting-style {
		opacity: 0;
    }
}
.services-popup:not(.show) {
	opacity: 0;
}
.services-popup .close-popup {
	display: grid;
	align-items: center;
	line-height: 1;
	position: absolute;
	color: var(--primary-color);
	top: 1rem;
	right: 1rem;
	font-size: 2rem;
	z-index: 99999;
	cursor: pointer;
	width: 2rem;
	height: 2rem;
	box-sizing: border-box;
	border: none;
	background-color: transparent	;
}
.services-popup-content {
	background-color: #000;
	width: 500px;
	max-width: 90vw;
	
    transition: all ease-in-out .3s allow-discrete;
    opacity: 1;
    transform: scale(1);
    
    @starting-style {
        opacity: 0;
        transform: scale(.9);
    }
}
.services-popup-content > img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 1;
	object-fit: cover;
}
.services-popup:not(.show) .services-popup-content {
	opacity: 0;
	transform: scale(.9);
}
.services-popup-content .prose {
	padding: 2rem;
}
.services-popup.show {
	display: grid;
	opacity: 1;
}
/* services */
/* work */
.work-section {
	overflow: hidden;
}
.work-container {
    /* overflow: hidden; */
    width: 100%;
    margin-top: 20px;
    padding-bottom: 20px;
    position: relative;
}
.work-slider {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}
.work-slider li {
    list-style: none;
    opacity: .3;
    transform: scale(.95);
    transition: all .5s ease-in-out;
}
.work-slider li.flex-active-slide {
    opacity: 1;
    transform: scale(1.05);
}
.work-slider .flex-viewport {
    overflow: visible !important;
    margin: 0 80px;
    padding: 20px 0;
}
.work-slider .embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: auto;
    overflow: hidden;
    max-width: calc(100vw - 2em);
}
.work-slider .embed-container iframe, 
.work-slider .embed-container object,
.work-slider .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.work-captions {
    text-align: left;
    font-size: 1rem;
    margin: auto;
    max-width: 920px;
    padding-top: 30px;
    padding-right: 30px;
    padding-left: 30px;
	min-height: 90px;
}
.work-captions ul {
    list-style: none;
}
.vid-content {
    display: block;
    padding: 5px 40px;
}
ul.flex-direction-nav .flex-nav-next,
ul.flex-direction-nav .flex-nav-prev {
    position: absolute;
    opacity: 1;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    list-style: none;
    z-index: 5;
}
ul.flex-direction-nav .flex-nav-next {
    right: 20px;
}
ul.flex-direction-nav .flex-nav-prev {
    left: 20px;
}
ul.flex-direction-nav .flex-nav-next a,
ul.flex-direction-nav .flex-nav-prev a {
    display: block;
    text-align: left;
    text-indent: -1000px;
    overflow: hidden;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    position: absolute;
    top: 8px;
    left: 10px;
    opacity: .5;
    z-index: 9;
}
ul.flex-direction-nav .flex-nav-next a:hover,
ul.flex-direction-nav .flex-nav-prev a:hover {
    opacity: 1;
}
ul.flex-direction-nav .flex-nav-next a {
    border-right: 6px solid #fff;
    border-top: 6px solid #fff;
    border-bottom: none;
    border-left: none;
}
ul.flex-direction-nav .flex-nav-prev a {
    border-left: 6px solid #fff;
    border-bottom: 6px solid #fff;
    border-top: none;
    border-right: none;
}
.flex-control-nav {
    text-align: center;
}
.flex-control-nav li {
    display: inline-block;
    padding: 3px;
}
.flex-control-nav li a {
    display: block;
    text-align: left;
    text-indent: -1000px;
    overflow: hidden;
    height: 10px;
    width: 10px;
    background-color: #ccc;
    border-radius: 10px;
}
.flex-control-nav li a.flex-active {
    width: 20px;
}
.flex-control-nav li a.flex-active,
.flex-control-nav li a:hover {
    background-color: #333;
}
/* work */
.services-wheel {
	display: none;
}
@media only screen and (max-width: 1199px) {
	header {
		position: relative;
		z-index: 98;
		isolation: isolate;
		background-color: var(--secondary-color-darker);
	}
	header nav {
		position: fixed;
        inset: 0;
		margin-top: 80px;
        padding: 20px;
        background-color: var(--secondary-color);
        overflow: auto;
        transform: translateY(20px);
        opacity: 0;
        visibility: 0;
        pointer-events: none;
        z-index: -1;
        -webkit-transition: var(--transition-all);
        -moz-transition: var(--transition-all);
        transition: var(--transition-all);
	}
	.menu-active header {
		background-color: var(--secondary-color);
	}
	.menu-active header .logo img.logo-white {
		display: block;
	}
	.menu-active header .logo img.logo-primary {
		display: none;
	}
	.menu-active header nav {
		transform: translateY(0px);
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.nav-toggle {
		width: 45px;
		height: 45px;
		overflow: hidden;
		text-indent: -1000px;
		display: inline-block;
		position: relative;
	}
	.nav-toggle:before,
	.nav-toggle:after {
		content: "";
		position: absolute;
		display: block;
		height: 1px;
		left: 0;
		right: 0;
		margin: auto;
		transition: .3s all ease-in-out;
		width: 75%;
	}
	.nav-toggle:before {
		background-color: var(--primary-color);
		top: 50%;
		transform: translateY(-50%);
	}
	.nav-toggle:after {
		background-color: var(--primary-color);
		top: 25%;
		transform: translateY(-50%);
		box-shadow: 0 23px 0 var(--primary-color);
	}
	.menu-active .nav-toggle:before {
		background-color: #fff;
	}
	.menu-active .nav-toggle:after {
		background-color: #fff;
		top: 50%;
		transform: translateY(-50%);
		box-shadow: 0 0 0 #fff;
	}
	header nav a {
		display: block;
		padding: .2em 0;
	}
	header nav > ul > li {
		font-size: 1.2rem;
		margin-bottom: .5em;
		font-weight: bold;
		/* border-top: 1px solid var(--secondary-color); */
	}
	header nav > ul > li > ul {
		margin-left: .5em;
		font-size: 1rem;
		line-height: 1.8;
	}
	.search-toggle {
		display: none;
	}
	.menu-featured {
		display: none;
	}
}
@media only screen and (min-width: 670px) {
	.sequence-wrapper {
		grid-template-columns: 1fr 1fr;
		column-gap: 4rem;
	}
	.page-cta-ribbon .maxwidth {
		display: flex;
	}
	footer {
		padding-left: 1em;
		padding-right: 1em;
	}
	footer .footer-menu > ul {
		text-align: center;
		display: flex;
		gap: 1em;
		place-content: center;
	}
	.work-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (min-width: 992px) {
	.approach-image {
		aspect-ratio: 1;
	}
	.capability-tile img {
		aspect-ratio: unset;
		height: 400px;
	}
}
@media only screen and (min-width: 1200px) {
	:root {
		--hero-height: 90vh;
	} 
	header {
		position: absolute;
		z-index: 9;
		top: 0;
		left: 0;
		right: 0;
		isolation: isolate;
	}
	header::before {
		content: "";
		position: absolute;
		inset: 0;
		height: 150%;
		background: linear-gradient(#111, #1110);
		z-index: -1;
		opacity: .3;
		pointer-events: none;
		transition: opacity .2s ease-in-out;
	}
	header:hover::before,
	header:focus-within::before {
		opacity: .5;
	}
	header .logo {
		width: 150px;
	}
	header .logo img.logo-white {
		display: block;
	}
	header .logo img.logo-primary {
		display: none;
	}
	.nav-toggle {
		display: none;
	}
	header > .maxwidth {
		display: flex;
		align-items: center;
	} 
	header nav {
		display: flex;
		align-items: center;
		position: relative;
		/* font-size: 1.2rem; */
		flex: 1;
	}
	header nav > ul {
		margin-left: auto;
        margin-right: 2em;
	}
	header nav > ul > li  {
		display: inline-block;
		position: relative;
		isolation: isolate;
	}
	header nav > ul > li::before  {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: #000;
		height: 0;
		z-index: -1;
		transition: height .2s ease-in-out;
	}
	header nav > ul > li:hover::before,
	header nav > ul > li:focus-within::before  {
		height: 100%;
	}
	header nav > ul > li  a {
		display: block;
		padding: 1em;
		color: #fff;
		font-weight: bolder;
		white-space: nowrap;
	}
	header ul li:hover > a {
		color: var(--primary-color)!important;
	}
	header nav ul ul {
		/* background-color: #000; */
		isolation: isolate;
		visibility: hidden;
		pointer-events: none;
		opacity: 0;
		position: absolute;
		top: 80%;
		left: 0;
		font-size: .85rem;
		transition: var(--transition-all);
	}
	header nav > ul > li ul::before  {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		background-color: #000;
		width: 0;
		z-index: -1;
		transition: width .3s ease-in-out;
	}
	header nav ul li:hover ul,
	header nav ul li:focus-within ul {
		visibility: visible;
		pointer-events: all;
		top: 100%;
		opacity: 1;
		transform: translateY(0px);
		transition: var(--transition-all);
	}
	header nav ul li:hover ul::before,
	header nav ul li:focus-within ul::before {
		width: 100%;
	}
	header nav ul ul a {
		display: block;
		padding: .5em 1em;
	}
	.headline h1 {
		font-size: 3.5rem;
	}
	.sequence-wrapper {
		grid-template-columns: 1fr 2fr;
		column-gap: 4rem;
	}
	.approach-list h3 {
		font-size: 2rem;
	}
	footer .footer-info {
		display: flex;
		text-align: left;
		justify-content: space-between;
		align-items: center;
	}
	footer .logos {
        display: flex;
        gap: 3em;
        padding-block: 2em;
	}
	footer .footer-menu a {
		padding: .5em 1em;
	}
	footer .footer-menu {
		margin-left: auto;
	}
	.page-header {
		padding-top: 130px;
	}
	.nifc-narration .maxwidth {
		display: flex;
		gap: 2em;
		align-items: center;
		max-width: 1200px;
	}
	.nifc-narration .nifc-text {
		max-width: 600px;
	}
	.modal-box {
		flex-direction: row;
		top: 150px;
		bottom: 150px;
		min-height: 320px;
	}
	.modal-box .staff-narration,
	.modal-box .partner-narration {
		max-width: 50%;
	}
	a.close-modal {
		left: auto;
		bottom: auto;
		top: 100px;
		right: 40px;
	}
	.page-cta-ribbon a {
		padding: 2em 5.5em 2em 3em;
	}
	.page-cta-ribbon a::before {
		right: 4em;
		top: 2.3em;
		width: 2em;
	}
	.page-cta-ribbon a::after {
		width: 1.2em;
		height: 1.2em;
		right: 3.5em;
	}
	.page-cta-ribbon a:hover::before {
		right: 3.1em;
		top: 2em;
	}
	.page-cta-ribbon a:hover::after {
		top: 1.7rem;
		right: 3em;
	}
	.services-accordion {
		display: none;
	}
	.services-wheel {
		display: block;
	}
	
}
@media only screen and (min-width: 1600px) {
	:root {
		--max-width: 1600px;
	}
}