:root {
	--ald-blue: #06456f;
	--ald-blue-dark: #063a5e;
	--ald-gold: #a98b39;
	--ald-ink: #173248;
	--ald-text: #334657;
	--ald-muted: #f4f6f7;
	--ald-border: #dfe6eb;
	--ald-shadow: 0 14px 34px rgba(9, 38, 61, .14);
	--ald-serif: Georgia, "Times New Roman", serif;
	--ald-sans: Arial, Helvetica, sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	color: var(--ald-text);
	font-family: var(--ald-sans);
	font-size: 16px;
	line-height: 1.55;
	background: #fff;
}

a {
	color: var(--ald-blue);
}

a:hover {
	color: var(--ald-blue-dark);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4 {
	color: var(--ald-blue);
	font-family: var(--ald-serif);
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: 0;
}

h1,
.uk-h1 {
	font-size: clamp(2.55rem, 4.5vw, 4.50rem);
}

h2,
.uk-h2 {
	font-size: clamp(2rem, 3.5vw, 3.75rem);
}

h3,
.uk-h3 {
	font-size: 1.4rem;
}

.ald-site-header {
	position: relative;
	z-index: 20;
}

.ald-nav-shell {
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 2px 18px rgba(5, 36, 58, .12);
}

.ald-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 86px;
	gap: 28px;
}

.ald-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--ald-blue);
	text-transform: uppercase;
}

.ald-logo:hover {
	color: var(--ald-blue);
}

.ald-logo img {
	display: block;
	width: 205px;
	max-width: 42vw;
	height: auto;
}

.ald-logo-mark {
	position: relative;
	display: inline-block;
	width: 45px;
	height: 39px;
}

.ald-logo-mark::before,
.ald-logo-mark::after {
	position: absolute;
	content: "";
	inset: 0 auto auto 0;
	width: 13px;
	height: 39px;
	border: 5px solid var(--ald-blue);
	border-top: 0;
	border-right: 0;
	transform: skew(-28deg);
}

.ald-logo-mark::after {
	left: 17px;
	height: 31px;
	border-color: #2a6d9f;
}

.ald-logo-text {
	display: grid;
	gap: 0;
	line-height: 1;
}

.ald-logo-text strong {
	font-size: 15px;
	letter-spacing: .05em;
}

.ald-logo-text small {
	color: #526b80;
	font-size: 8px;
	letter-spacing: .28em;
}

.ald-menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 3vw, 44px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.ald-menu li {
	position: relative;
}

.ald-menu a {
	color: var(--ald-blue-dark);
	font-size: 13px;
	font-weight: 700;
}

.ald-menu > .menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.ald-menu > .menu-item-has-children > a::after {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: translateY(-2px) rotate(45deg);
}

.ald-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 40;
	display: grid;
	gap: 2px;
	min-width: 230px;
	margin: 0;
	padding: 22px 0 14px;
	list-style: none;
	background: linear-gradient(to bottom, transparent 0 8px, #fff 8px);
	box-shadow: 0 8px 0 transparent, var(--ald-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 0);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
	visibility: hidden;
}

.ald-menu li:hover > .sub-menu,
.ald-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}

.ald-menu .sub-menu .sub-menu {
	top: -22px;
	left: 100%;
	transform: translate(8px, 0);
}

.ald-menu .sub-menu li:hover > .sub-menu,
.ald-menu .sub-menu li:focus-within > .sub-menu {
	transform: translate(4px, 0);
}

.ald-menu .sub-menu a {
	display: block;
	padding: 10px 18px;
	white-space: nowrap;
}

.ald-menu .sub-menu a:hover,
.ald-menu .sub-menu a:focus {
	background: var(--ald-muted);
	color: var(--ald-blue);
}

.ald-button,
.ald-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 38px;
	border: 2px solid var(--ald-blue);
	border-radius: 999px;
	padding: 0 18px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transition: transform .2s ease, background .2s ease, color .2s ease;
}

.ald-button:hover,
.ald-icon-button:hover {
	transform: translateY(-1px);
}

.ald-button-primary {
	background: var(--ald-blue);
	color: #fff;
}

.ald-button-primary:hover {
	color: #fff;
	background: var(--ald-blue-dark);
}

.ald-button-outline {
	background: #fff;
	color: var(--ald-blue);
}

.ald-icon-button {
	width: 44px;
	padding: 0;
	background: #fff;
	color: var(--ald-blue);
}

.ald-mobile-panel {
	background: #fff;
	color: var(--ald-text);
}

.ald-mobile-menu {
	display: grid;
	gap: 16px;
	margin: 34px 0;
	padding: 0;
	list-style: none;
}

.ald-mobile-menu a {
	color: var(--ald-blue);
	font-size: 20px;
	font-weight: 700;
}

.ald-mobile-menu a:hover,
.ald-mobile-menu a:focus {
	color: var(--ald-blue-dark);
}

.ald-mobile-menu .sub-menu {
	display: grid;
	gap: 10px;
	margin: 12px 0 0;
	padding: 0 0 0 16px;
	list-style: none;
	border-left: 2px solid var(--ald-border);
}

.ald-mobile-menu .sub-menu a {
	font-size: 16px;
	font-weight: 700;
}

.ald-hero {
	position: relative;
	isolation: isolate;
	min-height: 720px;
	overflow: hidden;
	background: #edf2f5;
}

.ald-hero-media {
	position: absolute;
	z-index: 0;
	inset: 0 0 0 0%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.ald-hero-media::before {
	position: absolute;
	z-index: 2;
	content: "";
	inset: 0;
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, 0) 75%);
	pointer-events: none;
}

.ald-hero-slideshow,
.ald-hero-slideshow .uk-slideshow-items,
.ald-hero-slideshow .uk-slideshow-items > li {
	height: 100%;
	min-height: 720px;
}

.ald-hero-slideshow img,
.ald-hero-slideshow video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ald-hero-slider-nav {
	position: absolute;
	z-index: 4;
	right: 50%;
	bottom: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(17, 38, 54, .46);
	backdrop-filter: blur(6px);
	transform: translateX(50%);
}

.ald-hero-slider-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .58);
	border-radius: 50%;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.ald-hero-slider-arrow:hover,
.ald-hero-slider-arrow:focus {
	color: #fff;
	background: rgba(255, 255, 255, .18);
	border-color: rgba(255, 255, 255, .9);
}

.ald-hero-slider-dots {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
}

.ald-hero-slider-dots > * {
	padding-left: 0;
}

.ald-hero-slider-dots > * > * {
	width: 9px;
	height: 9px;
	border-color: rgba(255, 255, 255, .82);
}

.ald-hero-slider-dots > .uk-active > *,
.ald-hero-slider-dots > * > :hover,
.ald-hero-slider-dots > * > :focus {
	background: #fff;
	border-color: #fff;
}

.ald-hero-inner {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	min-height: 720px;
	padding-top: 36px;
	padding-bottom: 36px;
	pointer-events: none;
}

.ald-hero-copy {
	max-width: 825px;
	pointer-events: auto;
}

.ald-hero-copy h1,
.ald-hero-copy .uk-h1,
.ald-hero-copy p {
	margin: 0 0 22px;
}

.ald-hero-copy > p:not(.ald-eyebrow) {
	max-width: 625px;
	color: #21384a;
	font-size: 17px;
}

.ald-eyebrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 14px;
	color: var(--ald-gold);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ald-eyebrow::before {
	content: "";
	width: 45px;
	height: 4px;
	background: var(--ald-gold);
}

.ald-action-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.ald-stat-band {
	position: relative;
	z-index: 2;
	background: #fff;
	box-shadow: 0 -10px 28px rgba(10, 38, 60, .12), 0 12px 28px rgba(10, 38, 60, .11);
}

.ald-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	min-height: 175px;
}

.ald-stat {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 10px;
	padding: 24px;
	text-align: center;
	border-left: 1px solid var(--ald-border);
}

.ald-stat:first-child {
	border-left: 0;
}

.ald-stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border: 4px solid #fff;
	border-radius: 50%;
	background: var(--ald-blue);
	color: #fff;
	box-shadow: 0 10px 22px rgba(6, 69, 111, .32);
}

.ald-stat-icon img,
.ald-metric-icon img,
.ald-step-icon img,
.ald-inline-icon img {
	display: block;
	width: 58%;
	height: 58%;
	object-fit: contain;
}

.ald-stat-icon i,
.ald-metric-icon i,
.ald-step-icon i,
.ald-inline-icon i {
	display: block;
	line-height: 1;
}

.ald-stat-icon i {
	font-size: 28px;
}

.ald-metric-icon i,
.ald-step-icon i,
.ald-inline-icon i {
	font-size: 18px;
}

.ald-stat strong {
	color: var(--ald-blue);
	font-family: var(--ald-serif);
	font-size: clamp(2rem, 4vw, 3.55rem);
	line-height: .9;
}

.ald-stat strong.ald-stat-value-long {
	font-size: clamp(1.75rem, 3.35vw, 3.05rem);
}

.ald-stat small,
.ald-card p,
.ald-location,
.ald-metrics small {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ald-band {
	position: relative;
}

.ald-band.uk-section-muted {
	background: var(--ald-muted);
}

.ald-featured {
	padding-top: 36px;
	padding-bottom: 36px;
}

.ald-process-horizontal {
	box-shadow: inset 0 18px 26px -26px rgba(9, 38, 61, .55), inset 0 -18px 26px -26px rgba(9, 38, 61, .55);
}

.ald-featured-slideshow .uk-slideshow-items {
	min-height: 0;
	transition: height .25s ease;
}

.ald-featured-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 45%);
	align-items: center;
	gap: clamp(38px, 7vw, 100px);
	padding: 4px;
}

.ald-featured-grid h2,
.ald-featured-grid .uk-h2,
.ald-featured-grid p {
	margin-top: 0;
}

.ald-featured-image,
.ald-detail-hero img,
.ald-single-image {
	display: block;
	width: 100%;
	border: 10px solid #fff;
	box-shadow: var(--ald-shadow);
	object-fit: cover;
}

.ald-featured-image {
	aspect-ratio: 1.18;
}

.ald-location {
	color: var(--ald-blue-dark);
}

.ald-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 18px;
	margin: 34px 0;
}

.ald-metrics div {
	display: grid;
	justify-items: center;
	gap: 7px;
	text-align: center;
}

.ald-metrics span,
.ald-metric-icon,
.ald-step-icon,
.ald-inline-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--ald-blue);
	color: #fff;
	box-shadow: 0 5px 12px rgba(6, 69, 111, .32);
}

.ald-inline-icon {
	margin-right: 14px;
	vertical-align: middle;
}

.ald-metrics strong {
	color: var(--ald-blue);
	font-family: var(--ald-serif);
	font-size: 2rem;
	line-height: 1;
}

.ald-split-heading {
	display: grid;
	grid-template-columns: minmax(280px, 34%) minmax(0, 1fr);
	gap: clamp(40px, 7vw, 90px);
	align-items: start;
}

.ald-carousel {
	min-width: 0;
	overflow-x: hidden;
}

.ald-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.ald-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--ald-border);
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(13, 50, 77, .1);
}

.ald-card-image {
	display: block;
	background: var(--ald-muted);
}

.ald-card-image.ald-image-coming-soon {
	background: #eef1f3;
}

.ald-card-image canvas {
	display: block;
	width: 100%;
}

.ald-card-image > img:not(.ald-card-cover) {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ald-photo-coming-soon {
	width: 100%;
	padding: 0 18px;
	color: var(--ald-blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-align: center;
	text-transform: uppercase;
}

.ald-card > div {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 18px 20px;
}

.ald-card p {
	margin: 0 0 4px;
	color: #657484;
}

.ald-card h3,
.ald-card .uk-h3 {
	margin: 0 0 4px;
	font-family: var(--ald-sans);
	font-size: 20px;
	line-height: 1.1;
}

.ald-card span {
	display: block;
	min-height: 22px;
	margin-bottom: 12px;
	color: #4b5e6d;
	font-size: 13px;
	font-weight: 700;
}

.ald-text-link {
	margin-top: auto;
	font-size: 12px;
	font-weight: 800;
	text-decoration: underline;
}

.ald-slider-nav {
	display: inline-flex;
	float: right;
	gap: 18px;
	margin-top: 22px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--ald-blue);
}

.ald-slider-nav a {
	color: #fff;
}

.ald-centered-heading {
	max-width: 850px;
	margin: 0 auto 60px;
	text-align: center;
}

.ald-centered-heading .ald-eyebrow {
	justify-content: center;
}

.ald-partnership-lede {
	max-width: 940px;
	margin: 0 auto;
	text-align: center;
}

.ald-partnership-lede h2,
.ald-partnership-lede .uk-h2,
.ald-partnership-closing-panel h2,
.ald-partnership-closing-panel .uk-h2 {
	margin-top: 0;
}

.ald-partnership-lede p:not(.ald-eyebrow),
.ald-partnership-closing-panel p:not(.ald-eyebrow) {
	color: var(--ald-ink);
	font-size: 1.12rem;
	line-height: 1.7;
}

.ald-collaboration-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ald-collaboration-card {
	min-height: 100%;
	padding: 26px;
	border: 1px solid var(--ald-border);
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 12px 26px rgba(10, 38, 60, .08);
}

.ald-collaboration-card h3,
.ald-collaboration-card .uk-h3 {
	margin: 0 0 12px;
	color: var(--ald-blue);
	font-family: var(--ald-sans);
	font-size: 1.22rem;
}

.ald-collaboration-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
}

.ald-partnership-closing-panel {
	max-width: 900px;
	margin: 0 auto;
	padding: clamp(32px, 5vw, 54px);
	border-top: 4px solid var(--ald-gold);
	background: #fff;
	box-shadow: var(--ald-shadow);
	text-align: center;
}

.ald-partnership-closing-with-image {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
	gap: clamp(28px, 5vw, 56px);
	align-items: center;
	max-width: 1120px;
	text-align: left;
}

.ald-partnership-closing-image {
	display: block;
	width: 100%;
	aspect-ratio: 1.12;
	border: 10px solid #fff;
	box-shadow: var(--ald-shadow);
	object-fit: cover;
}

.ald-service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.ald-service {
	position: relative;
	display: grid;
	justify-items: center;
	align-content: start;
	gap: 14px;
	min-height: 255px;
	padding: 0 28px;
	text-align: center;
}

.ald-service::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 3px;
	content: "";
	background: linear-gradient(to bottom, rgba(223, 230, 235, 0), rgba(223, 230, 235, .95) 22%, rgba(223, 230, 235, .95) 78%, rgba(223, 230, 235, 0));
}

.ald-service:first-child::before {
	content: none;
}

.ald-service h3,
.ald-service .uk-h3 {
	margin: 0;
	font-family: var(--ald-sans);
	font-size: 20px;
	line-height: 1.05;
}

.ald-service p {
	margin: 0;
	font-size: 14px;
}

.ald-service a {
	font-size: 13px;
	font-weight: 800;
}

.ald-process-grid {
	display: grid;
	grid-template-columns: minmax(280px, 36%) minmax(0, 1fr);
	gap: clamp(40px, 6vw, 86px);
	align-items: center;
}

.ald-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.ald-step {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 10px;
	text-align: center;
}

.ald-process-horizontal .ald-step:not(:last-child)::after {
	position: absolute;
	top: 13px;
	left: calc(50% + 22px);
	width: calc(100% - 26px);
	height: 2px;
	content: "";
	background-image: repeating-linear-gradient(to right, rgba(169, 139, 57, .8) 0 8px, transparent 8px 18px);
}

.ald-process-horizontal .ald-step-icon {
	width: 64px;
	height: 64px;
	border-width: 4px;
	box-shadow: 0 14px 28px rgba(6, 69, 111, .28);
}

.ald-process-horizontal .ald-step-icon img {
	width: 56%;
	height: 56%;
}

.ald-process-horizontal .ald-step-icon i {
	font-size: 28px;
}

.ald-step-number {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--ald-gold);
	color: #fff;
	font-weight: 800;
}

.ald-step strong {
	color: var(--ald-blue);
	font-size: 17px;
}

.ald-step p {
	margin: 0;
	font-size: 12px;
	line-height: 1.35;
}

.ald-center-action {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}

.ald-cta {
	padding: 76px 0;
	background-color: var(--ald-blue);
	background-image: linear-gradient(90deg, rgba(6, 69, 111, .98), rgba(6, 69, 111, .88)), url("../images/temp/hero-home.jpg");
	background-position: center;
	background-size: cover;
	color: #fff;
}

.ald-cta .uk-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.ald-cta h2,
.ald-cta .uk-h2 {
	margin: 0 0 12px;
	color: #fff;
}

.ald-cta p:not(.ald-eyebrow) {
	max-width: 700px;
	margin: 0;
}

.ald-cta .ald-button-outline {
	border-color: #fff;
	background: #fff;
}

.ald-footer {
	padding: 72px 0 36px;
	background: #2f2f2f;
	color: rgba(255, 255, 255, .75);
}

.ald-footer .ald-logo,
.ald-footer a,
.ald-footer h2,
.ald-footer .uk-h2 {
	color: #fff;
}

.ald-footer .ald-logo img {
	filter: brightness(0) invert(1);
}

.ald-footer .ald-logo-mark::before,
.ald-footer .ald-logo-mark::after {
	border-color: #fff;
}

.ald-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(4, 1fr);
	gap: 42px;
}

.ald-footer h2,
.ald-footer .uk-h2 {
	margin: 0 0 18px;
	font-family: var(--ald-sans);
	font-size: 15px;
}

.ald-footer a {
	display: block;
	margin: 0 0 10px;
	font-size: 13px;
}

.ald-footer p {
	margin: 18px 0 0;
	font-size: 13px;
}

.ald-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 58px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, .18);
	font-size: 12px;
}

.ald-footer-bottom p {
	margin: 0;
}

.ald-footer-bottom div {
	display: flex;
	gap: 10px;
}

.ald-page-hero {
	background: var(--ald-muted);
}

.ald-page-title {
	position: relative;
	min-height: 390px;
	overflow: hidden;
	background: #eef3f6;
}

.ald-breadcrumb {
	background: var(--ald-blue);
	color: rgba(255, 255, 255, .85);
	font-size: 12px;
	font-weight: 700;
}

.ald-breadcrumb .uk-container {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 36px;
}

.ald-breadcrumb a {
	color: #fff;
}

.ald-page-title-media {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
}

.ald-page-title-media::before {
	position: absolute;
	content: "";
	inset: 0;
	width:80%;
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .95) 34%, rgba(255, 255, 255, .35) 70%, rgba(255, 255, 255, 0) 100%);
}

.ald-page-title .uk-container {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 390px;
}

.ald-page-title-copy {
	max-width: 820px;
}

.ald-page-title-copy h1,
.ald-page-title-copy .uk-h1 {
	margin: 0;
}

.ald-page-title-copy > p:not(.ald-eyebrow) {
	max-width: 660px;
	margin: 16px 0 0;
	color: var(--ald-ink);
	font-size: 18px;
	font-weight: 700;
}

.ald-page-hero h1,
.ald-page-hero .uk-h1 {
	max-width: 920px;
	margin: 0;
}

.ald-page-hero p:not(.ald-eyebrow) {
	max-width: 720px;
}

.ald-detail-hero,
.ald-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
	gap: clamp(34px, 5vw, 72px);
	align-items: center;
}

.ald-detail-grid {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
}

.ald-detail-hero img {
	aspect-ratio: 1.25;
}

.ald-detail-grid {
	align-items: start;
}

.ald-detail-grid-single {
	grid-template-columns: minmax(0, 920px);
}

.ald-content {
	font-size: 18px;
}

.ald-content img {
	max-width: 100%;
	height: auto;
}

.ald-project-intro {
	max-width: none;
}

.ald-project-top-grid {
	align-items: flex-start;
}

.ald-project-location {
	margin: 0 0 24px;
	color: var(--ald-ink);
	font-size: 18px;
	font-weight: 700;
}

.ald-project-intro-title {
	color: var(--ald-blue);
}

.ald-project-support-grid {
	margin-top: 30px;
}

.ald-project-featured-media .uk-cover-container {
	width: 100%;
	border: 10px solid #fff;
	box-shadow: var(--ald-shadow);
}

.ald-project-featured-media canvas {
	display: block;
	width: 100%;
}

.ald-property-types {
	background: #fff;
}

.ald-property-type-copy .ald-content {
	margin-bottom: 24px;
	font-size: 17px;
}

.ald-property-type-copy .ald-content > :last-child {
	margin-bottom: 0;
}

.ald-property-type-copy .ald-button {
	margin-top: 2px;
}

.ald-detail-panel {
	display: grid;
	gap: 18px;
	padding: 32px;
	border: 1px solid var(--ald-border);
	border-radius: 7px;
	background: #fff;
	box-shadow: var(--ald-shadow);
}

.ald-detail-panel h2,
.ald-detail-panel .uk-h2 {
	margin: 0 0 6px;
	font-family: var(--ald-sans);
	font-size: 24px;
}

.ald-detail-panel > div,
.ald-detail-stat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ald-border);
}

.ald-detail-stat .ald-inline-icon {
	flex: 0 0 auto;
	margin-right: 0;
}

.ald-detail-stat span:not(.ald-inline-icon) {
	margin-right: auto;
}

.ald-detail-stat-label {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin-right: auto;
	font-weight: 700;
}

.ald-detail-stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.1em;
	height: 1.1em;
	flex: 0 0 auto;
	color: var(--ald-gold);
}

.ald-detail-stat-icon img {
	display: block;
	width: 1.1em;
	height: 1.1em;
	object-fit: contain;
}

.ald-detail-stat-icon i {
	display: block;
	font-size: 1em;
	line-height: 1;
}

.ald-detail-panel strong {
	color: var(--ald-blue);
	text-align: right;
}

.ald-intro {
	padding-top: 0;
	padding-bottom: 0;
}

.ald-intro-image,
.ald-gallery-strip img,
.ald-site-plan img {
	display: block;
	width: 100%;
	object-fit: cover;
}

.ald-intro-image {
	aspect-ratio: 1.08;
}

.ald-intro-copy { padding-top:25px; padding-bottom:25px; }

.ald-intro-copy h2,
.ald-intro-copy .uk-h2 {
	margin: 0 0 22px;
}

.ald-intro-copy p:not(.ald-eyebrow) {
	margin: 0 0 28px;
}

.ald-why-list {
	display: grid;
	gap: 42px;
	margin: 0 auto;
}

.ald-why-image {
	width: 310px;
	height: 310px;
	border-left: 12px solid #697983;
	border-radius: 50%;
	object-fit: cover;
}

.ald-why-row:nth-child(even) .ald-why-image {
	border-right: 12px solid #697983;
	border-left: 0;
}

.ald-why-list h3,
.ald-why-list .uk-h3,
.ald-service-rows h2,
.ald-service-rows .uk-h2,
.ald-two-col h2,
.ald-two-col .uk-h2 {
	margin: 0 0 16px;
	font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.ald-why-copy {
	position: relative;
}

.ald-why-heading {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 16px;
}

.ald-why-heading h3,
.ald-why-heading .uk-h3 {
	margin-bottom: 0;
}

.ald-why-list .ald-stat-icon {
	flex: 0 0 auto;
	width: 58px;
	height: 58px;
}

.ald-why-row:nth-child(even) .ald-why-copy {
	text-align: right;
}

.ald-why-row:nth-child(even) .ald-why-heading {
	justify-content: flex-end;
}

.ald-filter-bar {
	border-top: 1px solid var(--ald-border);
	border-bottom: 1px solid var(--ald-border);
	background: #fff;
}

.ald-filter-bar .uk-container {
	min-height: 64px;
}

.ald-filter-bar ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 12px 0;
	list-style: none;
}

.ald-filter-bar li {
	flex: 0 0 auto;
	max-width: 100%;
}

.ald-filter-bar a {
	display: inline-flex;
	box-sizing: border-box;
	max-width: 100%;
	align-items: center;
	min-height: 38px;
	padding: 0 18px;
	border: 1px solid var(--ald-border);
	border-radius: 999px;
	background: #fff;
	color: var(--ald-text);
	font-size: 14px;
	font-weight: 800;
	white-space: normal;
	overflow-wrap: anywhere;
	text-align: center;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.ald-filter-bar li:first-child a {
	border-left: 1px solid var(--ald-border);
}

.ald-filter-bar a:hover,
.ald-filter-bar a:focus {
	border-color: rgba(26, 94, 143, .42);
	color: var(--ald-blue);
}

.ald-filter-bar .uk-active a {
	border-color: var(--ald-blue);
	background: var(--ald-blue);
	color: #fff;
}

.ald-project-filter-items,
.ald-leasing-filter-items {
	list-style: none;
}

.ald-card-grid-four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ald-related-project-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.ald-related-project-grid > .ald-card {
	flex: 0 1 calc((100% - 84px) / 4);
	min-width: 240px;
	max-width: 320px;
}

@media (max-width: 1199px) {
	.ald-related-project-grid > .ald-card {
		flex-basis: calc((100% - 56px) / 3);
	}
}

@media (max-width: 959px) {
	.ald-related-project-grid > .ald-card {
		flex-basis: calc((100% - 28px) / 2);
	}
}

@media (max-width: 639px) {
	.ald-eyebrow {
		font-size: 10px;
		letter-spacing: .02em;
	}

	.ald-eyebrow::before {
		width: 25px;
		height: 3px;
	}

	.ald-related-project-grid > .ald-card {
		flex-basis: 100%;
		max-width: 360px;
	}
}

@media (max-width: 639px) and (orientation: portrait) {
	.ald-button,
	.ald-contact-form-panel input[type="submit"],
	.ald-contact-form-panel button[type="submit"] {
		width: 100%;
	}

	.ald-action-row {
		width: 100%;
	}
}

.ald-card-grid-three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 980px;
	margin: 0 auto;
}

.ald-listing-card .ald-listing-meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
	padding: 0;
	background: #f3f5f7;
	text-align: center;
}

.ald-listing-card .ald-listing-meta small {
	padding: 7px 4px;
	font-size: 12px;
	font-weight: 700;
}

.ald-listing-card .ald-available {
	margin: 8px 0 10px;
	padding: 7px 6px;
	background: var(--ald-blue);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.ald-map-placeholder {
	position: relative;
	min-height: 420px;
	margin-bottom: 64px;
	overflow: hidden;
	background-color: #f6f3ed;
	background-position: center;
	background-size: cover;
	border: 1px solid var(--ald-border);
}

.ald-map-placeholder > span {
	position: absolute;
	color: var(--ald-blue);
}

.ald-map-placeholder > span:nth-child(1) { left: 15%; top: 54%; }
.ald-map-placeholder > span:nth-child(2) { left: 27%; top: 35%; }
.ald-map-placeholder > span:nth-child(3) { left: 38%; top: 50%; }
.ald-map-placeholder > span:nth-child(4) { left: 55%; top: 43%; }
.ald-map-placeholder > span:nth-child(5) { left: 66%; top: 28%; }
.ald-map-placeholder > span:nth-child(6) { left: 74%; top: 58%; }
.ald-map-placeholder > span:nth-child(7) { left: 86%; top: 34%; }
.ald-map-placeholder > span:nth-child(8) { left: 88%; top: 49%; }

.ald-google-map {
	position: relative;
	min-height: 420px;
	margin-bottom: 64px;
	overflow: hidden;
	background: var(--ald-muted);
	border: 1px solid var(--ald-border);
}

.ald-map-message {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	gap: 6px;
	width: min(90%, 430px);
	padding: 24px;
	background: rgba(255, 255, 255, .94);
	color: var(--ald-text);
	text-align: center;
	transform: translate(-50%, -50%);
	box-shadow: var(--ald-shadow);
}

.ald-map-message strong {
	color: var(--ald-blue);
	font-family: var(--ald-serif);
	font-size: 1.45rem;
	line-height: 1.1;
}

.ald-map-info {
	display: grid;
	gap: 4px;
	min-width: 190px;
	color: var(--ald-text);
	font-family: var(--ald-sans);
}

.ald-map-info small {
	color: var(--ald-gold);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.ald-map-info strong {
	color: var(--ald-blue);
	font-family: var(--ald-serif);
	font-size: 20px;
	line-height: 1.1;
}

.ald-map-info a {
	margin-top: 4px;
	color: var(--ald-blue);
	font-weight: 900;
	text-decoration: underline;
}

.ald-map-small {
	min-height: 310px;
	margin: 0;
}

.ald-map-placeholder.ald-map-small > span {
	left: 50% !important;
	top: 48% !important;
	transform: translate(-50%, -50%);
}

.ald-service-rows {
	display: grid;
	gap: 0;
	padding: 1px 0;
}

.ald-service-row {
	margin: 60px 0;
	padding: 58px 0;
	background: #f4f5f6;
	box-shadow: inset 0 18px 26px -26px rgba(9, 38, 61, .55), inset 0 -18px 26px -26px rgba(9, 38, 61, .55);
}

.ald-service-row:first-child {
	margin-top: 0;
}

.ald-service-row-copy {
	min-width: 0;
}

.ald-service-row-heading {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: 16px;
}

.ald-service-row-heading h2,
.ald-service-row-heading .uk-h2 {
	margin: 0;
}

.ald-service-row-media {
	display: flex;
}

.ald-service-row-image-frame {
	width: 100%;
	margin-top: -96px;
	border: 8px solid #fff;
	box-shadow: var(--ald-shadow);
}

.ald-service-row-image-frame canvas {
	display: block;
	width: 100%;
}

.ald-service-rows .ald-stat-icon {
	width: 58px;
	height: 58px;
	flex: 0 0 auto;
}

.ald-process-vertical {
	background: #fff !important;
}

.ald-timeline {
	display: grid;
	gap: 48px;
	max-width: 920px;
	margin: 0 auto;
}

.ald-timeline article {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	padding-bottom: 48px;
	border-bottom: 1px solid var(--ald-border);
}

.ald-timeline article:last-child {
	border-bottom: 0;
}

.ald-process-media {
	position: relative;
	width: 220px;
}

.ald-process-number {
	position: absolute;
	top: -4px;
	left: 18px;
	z-index: 2;
	transform: translateX(-50%);
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #687983;
	color: #fff;
	font-size: 22px;
	font-weight: 800;
}

.ald-process-photo {
	width: 220px;
	height: 220px;
	border-left: 12px solid #697983;
	border-radius: 50%;
	object-fit: cover;
}

.ald-timeline .ald-inline-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-right: 14px;
	border-radius: 50%;
	background: var(--ald-blue);
	color: #fff;
}

.ald-timeline h3,
.ald-timeline .uk-h3 {
	display: inline-block;
	margin: 0 0 12px;
	font-size: 2.1rem;
	vertical-align: middle;
}

.ald-bullet-list {
	display: grid;
	gap: 14px;
	margin: 24px 0 32px;
	padding: 0;
	list-style: none;
}

.ald-bullet-list li {
	position: relative;
	padding-left: 30px;
	color: var(--ald-blue);
	font-weight: 800;
}

.ald-bullet-list li::before {
	position: absolute;
	left: 0;
	top: .45em;
	width: 12px;
	height: 12px;
	content: "";
	background: var(--ald-blue);
}

.ald-gallery-strip {
	padding: 0 0 74px;
}

.ald-gallery-strip img {
	aspect-ratio: 1.55;
}

.ald-content-band {
	padding-top: 0;
}

.ald-mini-details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px 34px;
	margin: 12px 0 28px;
}

.ald-mini-details p {
	margin: 0;
	font-size: 14px;
}

.ald-leasing-overview-image {
	aspect-ratio: 1.28;
}

.ald-location-map-panel {
	padding: 0;
	border: 1px solid var(--ald-border);
	background: #fff;
	box-shadow: var(--ald-shadow);
}

.ald-leasing-lede {
	max-width: 780px;
	color: var(--ald-ink);
	font-size: 1.12rem;
	line-height: 1.65;
}

.ald-leasing-lede > :last-child {
	margin-bottom: 0;
}

.ald-source-note {
	margin: 12px 0 0;
	color: #637585;
	font-size: 13px;
}

.ald-leasing-disclaimer {
	padding: 24px 0;
	border-top: 1px solid var(--ald-border);
	background: #fff;
}

.ald-leasing-disclaimer p {
	max-width: 980px;
	margin: 0 auto;
	color: #637585;
	font-size: 13px;
	line-height: 1.6;
	text-align: center;
}

.ald-two-col {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(40px, 8vw, 120px);
	align-items: start;
}

.ald-stack {
	display: grid;
	gap: 34px;
}

.ald-market-stat-band {
	padding-top: 0;
}

.ald-market-stats,
.ald-audience-grid {
	display: grid;
	gap: 1px;
	background: var(--ald-border);
	border: 1px solid var(--ald-border);
}

.ald-market-stats {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ald-audience-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ald-audience-grid-count-1 {
	grid-template-columns: 1fr;
}

.ald-audience-grid-count-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ald-audience-grid-many {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ald-market-stat,
.ald-audience-grid > div {
	display: grid;
	align-content: center;
	min-height: 132px;
	padding: 24px;
	background: #fff;
}

.ald-market-stat strong,
.ald-audience-grid strong {
	color: var(--ald-blue);
	font-family: var(--ald-serif);
	font-size: clamp(1.65rem, 2.5vw, 2.7rem);
	line-height: 1;
}

.ald-market-stat span,
.ald-audience-grid span {
	display: block;
	margin-top: 8px;
	color: var(--ald-text);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.ald-chip-list,
.ald-use-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ald-chip-list span,
.ald-use-grid span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 12px;
	border: 1px solid var(--ald-border);
	background: #fff;
	color: var(--ald-blue);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.ald-use-grid span {
	background: var(--ald-muted);
}

.ald-location-map-panel img {
	width: 100%;
	aspect-ratio: 1.45;
	object-fit: cover;
}

.ald-origin-list {
	display: grid;
	gap: 16px;
}

.ald-origin-row {
	display: grid;
	grid-template-columns: minmax(150px, 1fr) minmax(120px, 1.2fr) minmax(84px, auto);
	gap: 16px;
	align-items: center;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--ald-border);
}

.ald-origin-row > div:first-child span,
.ald-origin-row > div:last-child span {
	display: block;
	color: #637585;
	font-size: 13px;
}

.ald-origin-row > div:nth-child(2) {
	height: 10px;
	background: var(--ald-muted);
}

.ald-origin-row i {
	display: block;
	height: 100%;
	background: var(--ald-gold);
}

.ald-demand-section {
	background: var(--ald-muted);
}

.ald-section-heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.ald-section-heading h2,
.ald-section-heading .uk-h2 {
	margin-top: 0;
}

.ald-report-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.ald-report-panel {
	padding: 30px;
	background: #fff;
	border: 1px solid var(--ald-border);
}

.ald-report-panel h3,
.ald-report-panel .uk-h3,
.ald-report-panel h4,
.ald-report-panel .uk-h4 {
	margin-top: 0;
}

.ald-journey-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.ald-journey-list {
	display: grid;
	gap: 10px;
}

.ald-journey-list > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 12px;
	background: var(--ald-muted);
	color: var(--ald-blue);
	font-size: 14px;
	font-weight: 800;
}

.ald-week-chart {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 12px;
	min-height: 166px;
	padding-top: 20px;
}

.ald-week-chart > div {
	display: grid;
	flex: 1;
	gap: 9px;
	justify-items: center;
}

.ald-week-chart span {
	display: block;
	width: 100%;
	max-width: 34px;
	background: var(--ald-blue);
}

.ald-week-chart strong {
	color: var(--ald-text);
	font-size: 12px;
	text-transform: uppercase;
}

.ald-report-story {
	background: var(--ald-blue);
	color: #fff;
}

.ald-report-story h3,
.ald-report-story .uk-h3,
.ald-report-story p {
	color: #fff;
}

.ald-demo-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.ald-demo-table th,
.ald-demo-table td {
	padding: 13px 16px;
	border-bottom: 1px solid var(--ald-border);
	text-align: left;
}

.ald-demo-table th {
	color: var(--ald-blue);
	font-weight: 900;
	text-transform: uppercase;
}

.ald-site-plan {
	padding: 0 0 90px;
	text-align: center;
}

.ald-site-plan img {
	max-width: 1060px;
	margin: 0 auto;
	object-fit: contain;
}

.navigation.pagination,
.ald-pagination-wrap {
	margin-top: 44px;
}

.ald-pagination {
	justify-content: center;
}

.ald-contact-section {
	background: #fff;
}

.ald-contact-details h2,
.ald-contact-details .uk-h2,
.ald-contact-form-panel h2,
.ald-contact-form-panel .uk-h2 {
	margin: 0 0 18px;
}

.ald-contact-details > p:not(.ald-eyebrow) {
	max-width: 560px;
	margin-bottom: 34px;
	color: var(--ald-text);
	font-size: 17px;
	line-height: 1.7;
}

.ald-contact-list {
	display: grid;
	gap: 26px;
}

.ald-contact-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.ald-contact-item .ald-inline-icon {
	flex: 0 0 auto;
	margin: 2px 0 0;
}

.ald-contact-item strong {
	display: block;
	margin-bottom: 4px;
	color: var(--ald-blue);
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
}

.ald-contact-item p,
.ald-contact-item a {
	margin: 0;
	color: var(--ald-text);
	font-weight: 700;
	line-height: 1.55;
}

.ald-contact-item a:hover {
	color: var(--ald-blue);
}

.ald-contact-form-panel {
	padding: clamp(30px, 4vw, 48px);
	background: var(--ald-muted);
	box-shadow: inset 0 18px 26px -26px rgba(9, 38, 61, .55), inset 0 -18px 26px -26px rgba(9, 38, 61, .55);
}

.ald-contact-modal .uk-modal-dialog {
	width: min(720px, calc(100vw - 32px));
	padding: 0;
	background: transparent;
}

.ald-contact-modal .ald-contact-form-panel {
	box-shadow: var(--ald-shadow);
}

.ald-contact-form,
.ald-contact-form-panel form {
	display: grid;
	gap: 18px;
}

.ald-contact-form label,
.ald-contact-form-panel label {
	display: block;
	margin-bottom: 7px;
	color: var(--ald-blue);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.ald-contact-form input,
.ald-contact-form textarea,
.ald-contact-form-panel input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.ald-contact-form-panel textarea,
.ald-contact-form-panel select {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid #d9e0e5;
	background: #fff;
	color: var(--ald-text);
	font: inherit;
}

.ald-contact-form textarea,
.ald-contact-form-panel textarea {
	min-height: 140px;
	resize: vertical;
}

.ald-contact-form input:focus,
.ald-contact-form textarea:focus,
.ald-contact-form-panel input:focus,
.ald-contact-form-panel textarea:focus,
.ald-contact-form-panel select:focus {
	outline: 2px solid rgba(0, 65, 111, .18);
	border-color: var(--ald-blue);
}

.ald-contact-form-panel input[type="submit"],
.ald-contact-form-panel button[type="submit"] {
	justify-self: start;
	min-height: 42px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: var(--ald-blue);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}

@media (max-width: 1199px) {
		.ald-stats,
		.ald-service-grid,
		.ald-collaboration-grid {
			grid-template-columns: repeat(2, 1fr);
		}

	.ald-card-grid-four {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ald-stat:nth-child(3) {
		border-left: 0;
	}

	.ald-service:nth-child(odd)::before {
		content: none;
	}
}

@media (max-width: 959px) {
	.ald-navbar {
		min-height: 74px;
	}

	.ald-hero,
	.ald-hero-inner,
	.ald-hero-slideshow,
	.ald-hero-slideshow .uk-slideshow-items,
	.ald-hero-slideshow .uk-slideshow-items > li {
		min-height: 640px;
	}

	.ald-hero-media {
		inset: 0;
		opacity: .55;
	}

	.ald-hero-media::before {
		background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .75) 75%);
	}

		.ald-featured-grid,
		.ald-split-heading,
		.ald-process-grid,
		.ald-detail-hero,
		.ald-detail-grid,
		.ald-two-col,
		.ald-report-grid {
			grid-template-columns: 1fr;
		}

		.ald-featured-slideshow .uk-slideshow-items {
			min-height: 0;
		}

		.ald-featured-image {
			order: -1;
		}

		.ald-market-stats,
		.ald-audience-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ald-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ald-card-grid-four,
	.ald-card-grid-three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ald-steps {
		grid-template-columns: repeat(3, 1fr);
	}

	.ald-process-horizontal .ald-step::after {
		content: none !important;
	}

	.ald-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ald-timeline article {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}
}

@media (max-width: 639px) {
	h1,
	.uk-h1 {
		font-size: 2.45rem;
	}

	h2,
	.uk-h2 {
		font-size: 2.05rem;
	}

	.ald-hero,
	.ald-hero-inner,
	.ald-hero-slideshow,
	.ald-hero-slideshow .uk-slideshow-items,
		.ald-hero-slideshow .uk-slideshow-items > li {
			min-height: 640px;
		}

		.ald-featured-slideshow .uk-slideshow-items {
			min-height: 0;
		}

	.ald-hero-inner {
		align-items: center;
		padding-top: 44px;
		padding-bottom: 112px;
	}

	.ald-hero-copy h1,
	.ald-hero-copy .uk-h1,
	.ald-hero-copy p {
		margin-bottom: 16px;
	}

	.ald-hero-copy > p:not(.ald-eyebrow) {
		font-size: 15px;
		line-height: 1.55;
	}

	.ald-hero-slider-nav {
		bottom: 20px;
		gap: 12px;
		padding: 8px 12px;
	}

	.ald-hero-slider-arrow {
		width: 32px;
		height: 32px;
	}

	.ald-why-row:nth-child(even) .ald-why-copy {
		text-align: left;
	}

	.ald-why-row:nth-child(even) .ald-why-heading {
		justify-content: flex-start;
	}

	.ald-service-row-image-frame {
		margin-top: 0 !important;
		margin-bottom: -96px !important;
	}

		.ald-stats,
	.ald-service-grid,
	.ald-card-grid,
	.ald-card-grid-four,
		.ald-card-grid-three,
		.ald-collaboration-grid,
		.ald-partnership-closing-with-image,
		.ald-metrics,
	.ald-steps,
	.ald-footer-grid,
	.ald-mini-details,
	.ald-market-stats,
	.ald-audience-grid,
	.ald-journey-grid {
		grid-template-columns: 1fr;
	}

	.ald-origin-row {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.ald-report-panel {
		padding: 22px;
	}

	.ald-page-title,
	.ald-page-title .uk-container {
		min-height: 330px;
	}

	.ald-map-placeholder,
	.ald-google-map {
		min-height: 300px;
	}

	.ald-process-media,
	.ald-why-image,
	.ald-process-photo {
		width: 220px;
		height: 220px;
	}

	.ald-stat {
		border-left: 0;
		border-top: 1px solid var(--ald-border);
	}

	.ald-stat:first-child {
		border-top: 0;
	}

	.ald-service {
		min-height: auto;
		padding: 28px 0;
	}

	.ald-service::before {
		top: 0;
		right: 0;
		bottom: auto;
		left: 0;
		width: auto;
		height: 3px;
		background: linear-gradient(to right, rgba(223, 230, 235, 0), rgba(223, 230, 235, .95) 22%, rgba(223, 230, 235, .95) 78%, rgba(223, 230, 235, 0));
	}

	.ald-service:first-child::before {
		content: none;
	}

	.ald-cta .uk-container,
	.ald-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.ald-logo-text strong {
		font-size: 13px;
	}
}
