:root {
	--noa-navy: #172852;
	--noa-brand: #242b59;
	--noa-blue: #2d4faf;
	--noa-ink: #303030;
	--noa-copy: #858585;
	--noa-soft: #f5f5f5;
	--noa-border: #e8e8e8;
	--noa-white: #ffffff;
	--noa-heading: "Montserrat", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
	--noa-body: "Open Sans", "Helvetica Neue", Arial, sans-serif;
	--noa-container: 1110px;
	--noa-wide: 1320px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--noa-white);
	color: var(--noa-copy);
	font-family: var(--noa-body);
	font-size: 15px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.noa-menu-open {
	overflow: hidden;
}

img,
video {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--noa-ink);
	font-family: var(--noa-heading);
	line-height: 1.2;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
	z-index: 10000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	margin: 0;
	clip: auto;
	background: #fff;
	color: #111;
}

.noa-container {
	width: min(calc(100% - 48px), var(--noa-container));
	margin-inline: auto;
}

.noa-container--wide {
	width: min(calc(100% - 48px), var(--noa-wide));
}

.noa-container--narrow {
	max-width: 760px;
}

.noa-container--model {
	max-width: 1270px;
}

.noa-container--form {
	max-width: 760px;
}

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

.noa-copy > :last-child {
	margin-bottom: 0;
}

.noa-rule {
	display: block;
	width: 49px;
	height: 3px;
	margin-bottom: 27px;
	background: var(--noa-blue);
}

.noa-rule--dark {
	width: 39px;
	height: 2px;
	margin: 32px auto 0;
	background: var(--noa-ink);
}

/* Header */
.noa-site-header {
	position: relative;
	z-index: 100;
	width: 100%;
	height: 86px;
	font-family: var(--noa-heading);
}

.noa-site-header--overlay {
	position: absolute;
	inset: 0 0 auto;
	color: #fff;
}

.noa-site-header--light {
	background: #fff;
	color: var(--noa-ink);
	border-top: 1px solid #d8d8d8;
}

.noa-header-inner {
	display: flex;
	width: min(calc(100% - 48px), 1260px);
	height: 86px;
	margin-inline: auto;
	align-items: flex-start;
	justify-content: space-between;
}

.noa-brand,
.custom-logo-link,
.noa-logo-link {
	display: block;
	width: 86px;
	height: 86px;
}

.custom-logo,
.noa-logo {
	width: 86px;
	height: 86px;
	object-fit: contain;
}

.noa-primary-navigation {
	align-self: stretch;
}

.noa-menu {
	display: flex;
	height: 100%;
	padding: 0;
	margin: 0;
	align-items: center;
	gap: 35px;
	list-style: none;
}

.noa-menu li {
	position: relative;
	height: 100%;
}

.noa-menu a {
	display: flex;
	height: 100%;
	align-items: center;
	color: currentColor;
	font-size: 14px;
	font-weight: 600;
}

.noa-menu li::after {
	position: absolute;
	right: 0;
	bottom: 18px;
	left: 0;
	height: 2px;
	content: "";
	background: #456bc6;
	opacity: 0;
	transform: scaleX(0.35);
	transition: opacity 160ms ease, transform 160ms ease;
}

.noa-menu li:hover::after,
.noa-menu li:focus-within::after,
.noa-menu .current-menu-item::after,
.noa-menu .current_page_item::after,
.noa-menu .noa-about-active::after {
	opacity: 1;
	transform: scaleX(1);
}

.noa-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 10px;
	margin-top: 20px;
	background: transparent;
	border: 1px solid currentColor;
	color: inherit;
	cursor: pointer;
}

.noa-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
}

/* Home */
.noa-hero {
	position: relative;
	height: min(56.25vw, 900px);
	min-height: 640px;
	overflow: hidden;
	background: var(--noa-navy);
}

.noa-hero__media,
.noa-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.noa-hero__media {
	object-fit: cover;
	object-position: center;
}

.noa-hero__shade {
	background: rgba(10, 22, 50, 0.12);
	pointer-events: none;
}

.noa-hero__poster {
	display: none;
}

.noa-growth {
	display: flex;
	min-height: 314px;
	align-items: center;
	background: linear-gradient(180deg, #00020b 0%, var(--noa-brand) 100%);
	color: #fff;
}

.noa-growth h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(28px, 2.35vw, 42px);
	font-weight: 600;
	text-align: center;
}

.noa-section {
	padding: 60px 0 50px;
}

.noa-about {
	display: flex;
	min-height: 583px;
	align-items: center;
}

.noa-about h2 {
	margin-bottom: 25px;
	font-size: 35px;
	font-weight: 600;
}

.noa-about .noa-copy {
	color: #8a8a8a;
	font-size: 16px;
	line-height: 1.85;
}

.noa-about .noa-copy p {
	margin-bottom: 15px;
}

.noa-split {
	display: grid;
	align-items: center;
}

.noa-network {
	display: flex;
	min-height: 583px;
	align-items: center;
	background: var(--noa-brand);
	color: #fff;
}

.noa-split--network {
	grid-template-columns: 1fr 1fr;
	gap: 72px;
}

.noa-network__copy {
	padding-left: 18px;
}

.noa-network h2 {
	margin-bottom: 27px;
	color: #fff;
	font-size: 30px;
	font-weight: 600;
}

.noa-network .noa-copy {
	max-width: 500px;
	color: rgba(255,255,255,.78);
}

.noa-media-frame {
	overflow: hidden;
}

.noa-split--network .noa-media-frame {
	aspect-ratio: 1.28 / 1;
}

.noa-media-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.noa-what {
	display: flex;
	min-height: 529px;
	padding-top: 30px;
	align-items: center;
}

.noa-split--what {
	grid-template-columns: 1fr 1fr;
	gap: 52px;
}

.noa-split--what .noa-media-frame {
	aspect-ratio: 1.28 / 1;
}

.noa-what h2,
.noa-portfolio-preview h2,
.noa-home-contact h2 {
	margin-bottom: 20px;
	font-size: 31px;
	font-weight: 600;
}

.noa-what .noa-copy {
	font-size: 15px;
	line-height: 1.85;
}

.noa-portfolio-preview {
	display: flex;
	min-height: 538px;
	padding-top: 90px;
	padding-bottom: 20px;
	align-items: flex-start;
	border-top: 1px solid var(--noa-border);
}

.noa-split--portfolio {
	grid-template-columns: .92fr 1.08fr;
	gap: 72px;
	align-items: start;
}

.noa-portfolio-preview h2 {
	margin-bottom: 5px;
}

.noa-kicker {
	margin-bottom: 23px;
	color: #585858;
	font-family: Georgia, serif;
	font-size: 14px;
}

.noa-portfolio-preview .noa-copy {
	max-width: 480px;
}

.noa-button-row {
	display: flex;
	margin-top: 30px;
	gap: 10px;
	flex-wrap: wrap;
}

.noa-button {
	display: inline-flex;
	min-height: 44px;
	padding: 11px 26px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid #4562a7;
	color: #25437f;
	font-family: var(--noa-heading);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease;
}

.noa-button:hover,
.noa-button:focus-visible {
	background: var(--noa-blue);
	color: #fff;
}

.noa-partner-grid {
	display: grid;
}

.noa-partner-grid--featured {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 45px;
}

.noa-partner-card {
	display: flex;
	min-width: 0;
	min-height: 74px;
	padding: 8px;
	align-items: center;
	justify-content: center;
	color: #7a7a7a;
	font-family: var(--noa-heading);
	font-size: 22px;
	font-weight: 600;
	text-align: center;
}

.noa-partner-card img {
	width: 100%;
	max-width: 190px;
	max-height: 62px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .68;
	transition: filter 160ms ease, opacity 160ms ease;
}

a.noa-partner-card:hover img,
a.noa-partner-card:focus-visible img {
	filter: grayscale(0);
	opacity: 1;
}

.noa-featured-logos-fallback {
	grid-column: 1 / -1;
	width: 100%;
	max-width: 610px;
	margin-inline: auto;
}

.noa-home-contact {
	display: flex;
	min-height: 583px;
	padding-top: 90px;
	padding-bottom: 60px;
	align-items: flex-start;
	border-top: 1px solid var(--noa-border);
}

.noa-split--contact {
	grid-template-columns: .9fr 1.1fr;
	gap: 72px;
	align-items: start;
}

/* Forms and Contact Form 7 */
.noa-form,
.wpcf7-form {
	display: grid;
	gap: 15px;
}

.noa-form__row,
.wpcf7-form .noa-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px;
}

.wpcf7-form > p {
	display: grid;
	margin: 0;
	gap: 15px;
}

.wpcf7-form .noa-form__row > p {
	display: contents;
}

.wpcf7-form br {
	display: none;
}

.wpcf7-form-control-wrap {
	display: block;
}

.noa-form label,
.wpcf7-form label {
	display: block;
	margin: 0;
}

.noa-form input,
.noa-form textarea,
.wpcf7-form input:not([type="submit"]),
.wpcf7-form textarea {
	width: 100%;
	padding: 16px 20px;
	background: var(--noa-soft);
	border: 1px solid transparent;
	border-radius: 0;
	color: #4b4b4b;
	font-size: 12px;
	outline: 0;
}

.noa-form input,
.wpcf7-form input:not([type="submit"]) {
	height: 56px;
}

.noa-form textarea,
.wpcf7-form textarea {
	min-height: 145px;
	resize: vertical;
}

.noa-form input:focus,
.noa-form textarea:focus,
.wpcf7-form input:not([type="submit"]):focus,
.wpcf7-form textarea:focus {
	border-color: var(--noa-blue);
	background: #fff;
}

.noa-form__submit,
.wpcf7-form input[type="submit"] {
	justify-self: start;
}

.noa-form__fallback-note {
	margin: 0;
	color: #777;
	font-size: 11px;
}

.noa-form__fallback-note a {
	text-decoration: underline;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
	font-size: 12px;
}

/* Inner pages */
.noa-site-header--light + .noa-main {
	min-height: calc(100vh - 86px);
}

.noa-inner-intro {
	padding: 360px 0 100px;
	background: #fff;
}

.noa-inner-intro__copy {
	max-width: 1240px;
	color: #111;
	font-family: var(--noa-heading);
	font-size: clamp(24px, 2.05vw, 36px);
	font-weight: 600;
	line-height: 1.55;
}

.noa-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 34px;
}

.noa-model-cards {
	padding: 0 0 90px;
}

.noa-model-card {
	display: flex;
	min-height: 700px;
	padding: 72px 74px 62px;
	flex-direction: column;
	background: #294a80;
	color: rgba(255,255,255,.86);
}

.noa-model-card__logo {
	display: flex;
	min-height: 42px;
	margin-bottom: 38px;
	align-items: center;
	color: #fff;
	font-family: var(--noa-heading);
	font-size: 20px;
	font-weight: 600;
}

.noa-model-card__logo img {
	max-width: 155px;
	max-height: 45px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.noa-model-card h2 {
	margin-bottom: 38px;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.55;
}

.noa-model-card .noa-copy {
	margin-bottom: 30px;
	font-size: 15px;
	line-height: 1.75;
}

.noa-model-card .noa-copy p {
	margin-bottom: 22px;
}

.noa-button--light {
	margin-top: auto;
	align-self: flex-start;
	border-color: rgba(255,255,255,.88);
	color: #fff;
}

.noa-testimonials {
	padding: 0 0 150px;
}

.noa-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 110px;
}

.noa-testimonial {
	display: grid;
	grid-template-columns: 58px 1fr;
	margin: 0;
}

.noa-testimonial::before {
	content: "“";
	color: #111;
	font-family: Georgia, serif;
	font-size: 54px;
	font-weight: 700;
	line-height: 1;
}

.noa-testimonial blockquote {
	margin: 0 0 34px;
	color: #929292;
	font-size: 16px;
	font-style: italic;
	line-height: 1.65;
}

.noa-testimonial figcaption {
	grid-column: 2;
	display: flex;
	flex-direction: column;
	color: #333;
	font-family: var(--noa-heading);
}

.noa-testimonial figcaption strong {
	font-size: 15px;
	letter-spacing: .08em;
}

.noa-testimonial figcaption span {
	margin-top: 4px;
	font-size: 11px;
	letter-spacing: .12em;
}

.noa-page-hero {
	display: flex;
	min-height: 390px;
	padding: 90px 0;
	align-items: center;
}

.noa-page-hero--navy {
	background: var(--noa-navy);
	color: #fff;
}

.noa-page-hero h1 {
	margin-bottom: 24px;
	color: #fff;
	font-size: 58px;
	font-weight: 600;
}

.noa-page-hero__copy {
	max-width: 760px;
	margin-inline: auto;
	color: rgba(255,255,255,.8);
	font-size: 17px;
}

.noa-portfolio-list {
	padding: 100px 0 120px;
}

.noa-partner-grid--archive {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2px;
	background: var(--noa-border);
	border: 1px solid var(--noa-border);
}

.noa-partner-grid--archive .noa-partner-card {
	min-height: 185px;
	padding: 28px;
	background: #fff;
}

.noa-partner-grid--archive .noa-partner-card img {
	max-width: 180px;
	max-height: 78px;
}

/* Contact */
.noa-contact-hero {
	position: relative;
	display: flex;
	min-height: 412px;
	padding-top: 86px;
	align-items: center;
	overflow: hidden;
	background-color: var(--noa-navy);
	background-image: var(--noa-contact-image);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.noa-contact-hero__shade {
	position: absolute;
	inset: 0;
	background: rgba(20, 27, 60, .45);
}

.noa-contact-hero .noa-container {
	position: relative;
	z-index: 1;
}

.noa-contact-hero h1 {
	margin-bottom: 18px;
	color: #fff;
	font-size: clamp(52px, 5vw, 76px);
	font-weight: 600;
}

.noa-contact-hero p {
	margin: 0;
	font-size: 24px;
	font-style: italic;
}

.noa-contact-details {
	display: flex;
	min-height: 432px;
	padding: 80px 0;
	align-items: center;
	background: var(--noa-brand);
	color: rgba(255,255,255,.8);
}

.noa-contact-details__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 70px;
}

.noa-contact-details h2 {
	margin-bottom: 27px;
	color: #fff;
	font-size: 28px;
	font-weight: 500;
}

.noa-contact-details address {
	font-style: normal;
}

.noa-contact-details a:hover,
.noa-contact-details a:focus-visible {
	text-decoration: underline;
}

.noa-contact-form-section {
	min-height: 760px;
	padding: 94px 0 120px;
	background: #f7f7f7;
}

.noa-contact-form-section__header {
	margin-bottom: 45px;
}

.noa-contact-form-section__header h2 {
	margin-bottom: 12px;
	font-size: 39px;
	font-weight: 600;
}

.noa-contact-form-section__header p {
	margin: 0;
	font-size: 18px;
}

.noa-contact-form-section .noa-form input,
.noa-contact-form-section .noa-form textarea,
.noa-contact-form-section .wpcf7-form input:not([type="submit"]),
.noa-contact-form-section .wpcf7-form textarea {
	background: #fff;
}

.noa-contact-form-section .noa-form__submit,
.noa-contact-form-section .wpcf7-form input[type="submit"] {
	width: 100%;
	min-height: 58px;
	background: var(--noa-blue);
	color: #fff;
}

/* Footer and fallback pages */
.noa-site-footer {
	display: flex;
	min-height: 112px;
	align-items: center;
	background: #f1f1f1;
	color: #929292;
	font-size: 12px;
}

.noa-site-footer p {
	margin: 0;
}

.noa-generic-page {
	min-height: 70vh;
	padding: 100px 0;
}

.noa-prose {
	max-width: 820px;
}

.noa-prose h1 {
	font-size: 48px;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.noa-hero__video {
		display: none;
	}

	.noa-hero__video + .noa-hero__poster {
		display: block;
	}

	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (max-width: 1024px) {
	.noa-header-inner {
		width: min(calc(100% - 36px), 1260px);
	}

	.noa-menu {
		gap: 24px;
	}

	.noa-hero {
		min-height: 600px;
	}

	.noa-split--network,
	.noa-split--what,
	.noa-split--portfolio,
	.noa-split--contact {
		gap: 42px;
	}

	.noa-inner-intro {
		padding-top: 240px;
	}

	.noa-model-card {
		padding: 54px 44px;
	}

	.noa-partner-grid--archive {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.noa-container,
	.noa-container--wide {
		width: min(calc(100% - 36px), var(--noa-container));
	}

	.noa-site-header,
	.noa-header-inner {
		height: 76px;
	}

	.noa-brand,
	.noa-logo-link,
	.custom-logo-link,
	.noa-logo,
	.custom-logo {
		width: 76px;
		height: 76px;
	}

	.noa-menu-toggle {
		display: block;
		margin-top: 15px;
	}

	.noa-primary-navigation {
		position: fixed;
		inset: 76px 0 0;
		display: none;
		padding: 22px;
		background: var(--noa-brand);
		color: #fff;
	}

	.noa-primary-navigation.is-open {
		display: block;
	}

	.noa-menu {
		display: block;
		height: auto;
	}

	.noa-menu li {
		height: auto;
		border-bottom: 1px solid rgba(255,255,255,.16);
	}

	.noa-menu a {
		height: auto;
		padding: 17px 3px;
		font-size: 17px;
	}

	.noa-menu li::after {
		right: auto;
		bottom: 0;
		width: 44px;
	}

	.noa-hero {
		height: 72vh;
		min-height: 520px;
	}

	.noa-growth {
		min-height: 220px;
	}

	.noa-growth h1 {
		font-size: 27px;
	}

	.noa-section {
		padding: 70px 0;
	}

	.noa-about,
	.noa-network,
	.noa-what,
	.noa-portfolio-preview,
	.noa-home-contact {
		min-height: 0;
	}

	.noa-about h2 {
		font-size: 30px;
	}

	.noa-split--network,
	.noa-split--what,
	.noa-split--portfolio,
	.noa-split--contact,
	.noa-card-grid,
	.noa-testimonial-grid,
	.noa-contact-details__grid {
		grid-template-columns: 1fr;
	}

	.noa-split--network,
	.noa-split--what {
		gap: 42px;
	}

	.noa-network__copy {
		padding-left: 0;
	}

	.noa-network .noa-media-frame,
	.noa-what .noa-media-frame {
		order: 2;
	}

	.noa-what__copy {
		order: 1;
	}

	.noa-portfolio-preview,
	.noa-home-contact {
		padding-top: 70px;
	}

	.noa-split--portfolio,
	.noa-split--contact {
		gap: 54px;
	}

	.noa-partner-grid--featured {
		gap: 18px;
	}

	.noa-form__row,
	.wpcf7-form .noa-form__row {
		grid-template-columns: 1fr;
	}

	.noa-inner-intro {
		padding: 150px 0 70px;
	}

	.noa-inner-intro__copy {
		font-size: 24px;
	}

	.noa-model-card {
		min-height: 0;
		padding: 45px 28px;
	}

	.noa-model-card h2 {
		font-size: 20px;
	}

	.noa-testimonial-grid {
		gap: 70px;
	}

	.noa-testimonials {
		padding-bottom: 90px;
	}

	.noa-page-hero {
		min-height: 340px;
	}

	.noa-page-hero h1 {
		font-size: 44px;
	}

	.noa-partner-grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.noa-partner-grid--archive .noa-partner-card {
		min-height: 130px;
		padding: 18px;
	}

	.noa-contact-hero {
		min-height: 420px;
		padding-top: 76px;
	}

	.noa-contact-hero h1 {
		font-size: 48px;
	}

	.noa-contact-details {
		padding: 70px 0;
	}

	.noa-contact-details__grid {
		gap: 42px;
	}

	.noa-contact-form-section {
		padding: 70px 0 90px;
	}

	.noa-contact-form-section__header h2 {
		font-size: 32px;
	}
}

@media (max-width: 420px) {
	.noa-partner-grid--archive {
		grid-template-columns: 1fr;
	}

	.noa-partner-grid--featured {
		grid-template-columns: 1fr 1fr;
	}

	.noa-button-row {
		flex-direction: column;
		align-items: flex-start;
	}
}
