h4 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.grid.columns-3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.section.hero-home {
	min-height: 100svh;
}

.section.overflow-none {
	overflow: visible;
}

.section.min-height-50svh {
	min-height: 50svh;
}

.section.min-height-100svh {
	min-height: 100svh;
}

.section.contact-section {
	background-color: var(--header-black);
	color: var(--white);
	min-height: 50svh;
	padding-top: 9.75rem;
}

.section-wrapper.left-align.relative-wrapper {
	overflow: hidden;
}

.horizontal-line {
	background-color: var(--gainsboro);
	width: 100%;
	height: 1px;
}

.horizontal-line.green {
	background-color: var(--accent-green);
	opacity: .3;
	margin-bottom: 2rem;
}

.horizontal-line.green.margin-around-48 {
	transform-origin: 0%;
	margin-bottom: var(--margin-48);
	margin-top: var(--margin-48);
}

.form-block {
	z-index: 1;
	max-width: 380px;
	margin-bottom: 0;
	position: relative;
}

.text-field {
	background-color: var(--header-black);
	color: var(--white);
	-webkit-appearance: none;
	appearance: none;
	border-radius: .25rem;
	height: auto;
	margin-bottom: 2rem;
	padding: .75rem;
	font-size: 1rem;
}

.text-field.margin-bottom-24 {
	margin-bottom: 1.5rem;
}

.link-block.auto {
	margin-top: auto;
}

.link-block.text-dark-green:active {
	text-decoration: none;
}

.link-block.text-dark-green.w--current {
	display: none;
}

.scale-up {
	animation-name: scaleup;
	animation-duration: .5s;
	animation-timing-function: ease-out;
	animation-delay: calc(var(--i) * .2s);
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-play-state: running;
	animation-fill-mode: both;
}

.list-item.grid {
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
	grid-template-rows: auto;
	grid-template-columns: 1fr .75fr;
	grid-auto-columns: 1fr;
	place-items: center stretch;
	display: grid;
}

.bg-wrapper {
	z-index: -1;
	position: absolute;
	inset: 0%;
	overflow: hidden;
}

.bg-overlay {
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
	inset: 0%;
}

.bg-overlay.linear {
	background-color: var(--transparent);
	background-image: linear-gradient(0deg, var(--header-black) 3%, var(--transparent) 63%);
}

.stats {
	grid-column-gap: 4rem;
	grid-row-gap: 4rem;
	margin-bottom: var(--margin-48);
	flex-flow: row;
	grid-template-rows: auto;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-columns: 1fr;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	display: flex;
}

.xlarge-text {
	font-weight: 800;
	line-height: 1;
	font-size: var(--xlarge--text);
	margin-bottom: var(--margin-24);
}

.tag.industry {
	border-left: 1px solid var(--black);
	background-color: var(--transparent);
	color: var(--black);
	text-align: left;
	border-radius: 0;
	padding-right: 0;
	font-size: 1rem;
	font-weight: 700;
}

.absolute-image.grayscale {
	filter: grayscale(25%);
}

.absolute-image.black-and-white-treatment {
	opacity: .5;
	filter: grayscale(80%);
}

.field-label {
	margin-bottom: .75rem;
	font-size: 1rem;
	font-weight: 400;
}

.submit-button {
	grid-column-gap: .5rem;
	grid-row-gap: .5rem;
	background-color: var(--brand-green);
	color: var(--white);
	border-radius: 1rem;
	justify-content: flex-start;
	align-items: center;
	margin-top: 2rem;
	padding: .75rem 2rem;
	font-weight: 500;
	text-decoration: none;
	transition: all .3s cubic-bezier(.55, .085, .68, .53);
	display: flex;
}

.submit-button:hover {
	background-color: var(--white);
	color: var(--black);
}

.submit-button.no-margin-top {
	margin-top: 0;
}

.dropdown-link.w--current {
	background-color: var(--brand-green);
	color: var(--white);
}

.timeline {
	z-index: 1;
	grid-column-gap: 6rem;
	grid-row-gap: 6rem;
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
	display: flex;
	position: relative;
}

.large-text {
	font-weight: 700;
	line-height: 1;
	font-size: var(--large--text);
	margin-bottom: 1rem;
}

.timeline-line {
	z-index: -1;
	background-color: var(--brand-green);
	transform-origin: 50% 0;
	width: 1px;
	height: 84%;
	margin-top: .5rem;
	position: absolute;
	left: -1.75rem;
}

.timeline-bullet {
	z-index: 1;
	color: var(--brand-green);
	justify-content: center;
	align-items: center;
	width: 1.5rem;
	height: 1.5rem;
	display: flex;
	position: absolute;
	top: 0;
	left: -2.45rem;
}

.image-wrapper {
	width: 100%;
	padding-top: 100%;
	position: relative;
	overflow: hidden;
}

.topic-header-large {
	font-size: var(--h3-large);
}

.contact-details-wrapper {
	grid-column-gap: 2rem;
	grid-row-gap: 2rem;
	flex-flow: row;
	grid-template-rows: auto;
	grid-template-columns: 1fr .5fr .5fr;
	grid-auto-columns: 1fr;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 2rem;
	display: grid;
}

.map {
	height: 500px;
}

.text-dark-green {
	color: var(--brand-green);
}

.capabilities-content {
	flex-flow: column;
	justify-content: center;
	align-items: center;
	display: flex;
	position: relative;
}

.hero-bg-image {
	object-fit: cover;
	width: 100%;
	height: 130%;
}

.bg-overlay-hero {
	opacity: .1;
	mix-blend-mode: normal;
	background-color: #000;
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0%;
}

.bg-overlay-hero.z-index-2 {
	z-index: 2;
	opacity: .45;
	display: flex;
}

.bg-overlay-hero.z-index-2.darkest {
	opacity: .6;
}

.hero-video-wrapper {
	z-index: -1;
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
}

.hero-video-wrapper.vimeo {
	width: 1000%;
	padding-bottom: 56.25%;
}

.hero-video-wrapper.vimeo.top {
	z-index: 1;
}

.hero-parallax-wrapper {
	position: relative;
	overflow: hidden;
}

.background-video {
	z-index: 1;
	width: 100%;
	height: 100%;
}

.background-video.hero-video {
	position: absolute;
	inset: 0%;
}

.hero-trigger {
	pointer-events: none;
	height: 100vh;
	position: absolute;
	inset: 0% 0% auto;
}

.image-inner-wrapper {
	background-color: var(--white);
	width: 100%;
	height: 0%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.image-inner-wrapper.dark {
	background-color: var(--header-black);
}

.font-weight-500 {
	font-weight: 500;
}

.text-dark {
	color: var(--black);
}

.text-green {
	color: var(--accent-green-2);
}

.align-self-bottom {
	align-self: flex-end;
}

.features-grid {
	grid-template-rows: auto;
	grid-template-columns: 1fr 1fr;
	grid-auto-columns: 1fr;
	width: 100%;
	display: grid;
}

.feature-content {
	grid-column-gap: 2rem;
	grid-row-gap: 2rem;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: var(--gray);
	padding-left: 2rem;
	padding-top: var(--margin-48);
	padding-bottom: var(--margin-48);
	flex-flow: column;
	justify-content: space-between;
	align-items: flex-start;
	min-height: 460px;
	display: flex;
}

.feature-image.bottom {
	justify-content: flex-end;
	align-items: flex-start;
}

.feature-image.top-right {
	justify-content: flex-start;
	align-items: flex-start;
}

.number-bullet {
	margin-bottom: 1.5rem;
}

.point-wrapper {
	grid-column-gap: 1.5rem;
	grid-row-gap: 1.5rem;
	padding-bottom: var(--margin-64);
	padding-top: var(--margin-64);
	border-bottom: 1px solid rgba(199, 211, 182, .3);
	flex-flow: column;
	justify-content: space-between;
	display: flex;
}

.point-wrapper.first {
	padding-top: 0;
}

.bg-grey {
	background-color: var(--gray);
}

.sticky {
	position: sticky;
	top: 5rem;
}

.approach-image {
	border-radius: 1rem;
	width: 100%;
	padding-top: 80%;
	position: sticky;
	top: 5rem;
	overflow: hidden;
}

.flex-start {
	justify-content: flex-start;
	align-items: center;
	display: flex;
}

.flex-start.gap-8 {
	grid-column-gap: 8px;
	grid-row-gap: 8px;
}

.margin-left-1-5rem {
	margin-left: 1.5rem;
}

.utility-page-wrap {
	justify-content: center;
	align-items: center;
	width: 100vw;
	max-width: 100%;
	height: 100vh;
	max-height: 100%;
	display: flex;
}

.utility-page-content {
	text-align: center;
	flex-direction: column;
	width: 260px;
	display: flex;
}

.utility-page-form {
	flex-direction: column;
	align-items: stretch;
	display: flex;
}

.logo-image {
	margin-bottom: 2rem;
}

.inline-link {
	color: var(--brand-green);
	text-underline-offset: .25rem;
	text-decoration: underline;
}

.tree-svg._2 {
	transform: translate(-31px, -10px) rotate(45deg);
}

.tree-svg._3 {
	width: 700px;
	transform: translate(11px, 2px);
}

.tree-svg._4 {
	opacity: .25;
	mix-blend-mode: difference;
	width: 440px;
	left: -230px;
	transform: translate(0, 16px) rotate(90deg);
}

.chip {
	aspect-ratio: 1;
	opacity: .2;
	width: 440px;
	position: absolute;
	transform: rotate(-135deg) translate(-60px, 10px);
}

.chip._2 {
	transform: rotate(45deg);
}

.chip._3 {
	width: 460px;
	transform: rotate(-45deg);
}

.scroller-wrapper {
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
	max-width: 100%;
	display: flex;
	overflow: hidden;
}

.scroller-camera {
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	display: flex;
	overflow: hidden;
}

.scroller-track-brands {
	flex: 0 auto;
	display: flex;
}

.track-wrapper {
	grid-column-gap: 4rem;
	justify-content: flex-start;
	align-items: center;
	margin-right: 4rem;
	display: flex;
}

.brand-logo {
	min-width: 100px;
	max-height: 32px;
}

.brand-logo.transcelestial {
	min-width: 230px;
}

.brand-logo.intricon {
	min-width: 66px;
}

.brand-logo.besi-global {
	min-width: 150px;
}

.overflow-hidden {
	overflow: hidden;
}

.video-external-wrapper {
	margin-bottom: var(--margin-48);
	border-radius: 1rem;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 500px;
	display: flex;
	position: relative;
	overflow: hidden;
}

@media screen and (max-width: 991px) {
	.grid.columns-3.tablet-columns-2 {
		grid-template-columns: 1fr 1fr;
	}
	
	.stats {
		grid-column-gap: 7rem;
		flex-flow: wrap;
		display: flex;
	}
	
	.timeline-line {
		height: 86%;
	}
	
	.contact-details-wrapper {
		grid-template-columns: 1fr .75fr .75fr;
	}
	
	.map {
		height: 400px;
	}
	
	.features-grid {
		grid-template-columns: .5fr 1fr;
	}
	
	.feature-content {
		padding-left: 1rem;
	}
	
	.sticky.max-width-440 {
		position: static;
	}
	
	.approach-image {
		padding-top: 140%;
	}
	
	.tablet-spacer {
		display: none;
	}
	
	.tree-svg._4 {
		transform: translate(0, 24px) rotate(90deg);
	}
	
	.video-external-wrapper {
		height: 400px;
	}
}

@media screen and (max-width: 767px) {
	.grid.columns-3.tablet-columns-2 {
		grid-column-gap: 2.5rem;
		grid-row-gap: 2.5rem;
		grid-template-columns: 1fr;
	}
	
	.grid.landcape-flex {
		flex-flow: column;
		display: flex;
	}
	
	.margin-top-8.margin-bottom-32.landscape-top--1-5rem {
		margin-top: -1.5rem;
	}
	
	.max-width-315.landscape-width-100 {
		max-width: none;
	}
	
	.stats {
		grid-column-gap: 1.5rem;
		grid-row-gap: 1.5rem;
		flex-flow: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	
	.timeline {
		grid-column-gap: 4rem;
		grid-row-gap: 4rem;
		margin-left: 2.5rem;
	}
	
	.timeline-line {
		height: 82%;
	}
	
	.contact-details-wrapper {
		grid-column-gap: 1.5rem;
		grid-row-gap: 1.5rem;
		grid-template-columns: 1fr;
	}
	
	.map {
		height: 300px;
	}
	
	.capabilities-content {
		padding: 3rem 1.5rem;
	}
	
	.features-grid {
		grid-template-columns: 1fr 2fr;
	}
	
	.feature-content {
		min-height: 300px;
	}
	
	.feature-image.bottom {
		justify-content: flex-start;
		align-items: center;
	}
	
	.feature-image.top-right {
		justify-content: center;
		align-items: center;
	}
	
	.hide-landscape {
		display: none;
	}
	
	.tree-svg._4 {
		opacity: .15;
		transform: translate(0, 64px) rotate(90deg);
	}
	
	.brand-logo {
		min-height: auto;
	}
}

@media screen and (max-width: 479px) {
	.section-wrapper.mobile-left {
		justify-content: center;
		align-items: flex-start;
	}
	
	.text-center.mobile-left, .text-center.text-white.max-width-600 {
		text-align: left;
	}
	
	.list-item.grid {
		grid-column-gap: .75rem;
		grid-row-gap: .75rem;
	}
	
	.stats {
		grid-column-gap: 2rem;
		grid-row-gap: 2rem;
		flex-flow: column;
	}
	
	.tag.industry {
		padding-left: .75rem;
	}
	
	.timeline {
		grid-column-gap: 3rem;
		grid-row-gap: 3rem;
	}
	
	.capabilities-content {
		justify-content: center;
		align-items: flex-start;
		width: 100%;
		padding: 0;
	}
	
	.text-dark.text-center {
		text-align: left;
	}
	
	.features-grid {
		grid-template-columns: auto 1fr;
	}
	
	.approach-image {
		border-radius: 0;
		flex: none;
		width: 8vw;
		position: relative;
		top: 0;
	}
	
	.tree-svg._4 {
		opacity: .1;
	}
	
	.chip {
		opacity: .33;
	}
	
	.scroller-wrapper {
		margin-top: 2rem;
	}
	
	.video-external-wrapper {
		height: 300px;
	}
}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 479px) {}