:root {
	/* Typography */
	--main: 700 17px/1 "Roboto Condensed", sans-serif;
	--subheading: 700 24px/1.4 "Roboto Condensed", sans-serif;
	--subtitle: 700 18px/1.7 "Roboto", sans-serif;
	--body-subheading: 700 40px/1 "Roboto Condensed", sans-serif;
	--body: 400 18px/1.7 "Roboto", sans-serif;

	/* Colors (Primary) */
	--white: 255 255 255;
	--black: 0 0 0;

	/* Colors (Secondary) */
	--light: 225 225 225;
	--dark: 50 50 50;

	/* Colors (Brand) */
	--primary: 65 70 80;
	--secondary: 35 40 45;
	--accent: 130 140 155;

	/* Effects */
	--z0: 0 2px 5px transparent;
	--z1: 0 2px 5px rgb(var(--black) / 25%);
	--z1-left: -2px 0 5px rgb(var(--black) / 25%);
	--z2: 0 4px 10px rgb(var(--black) / 25%);
	--text-shadow: 0 0 10px rgb(var(--black) / 25%);
	--blur: blur(10px);
}

* {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	box-sizing: content-box;
	font-size: 0;
	margin: 0;
	padding: 0;
}

*:focus-visible {
	box-shadow: 0 0 2px 2px rgb(var(--secondary)) !important;
	outline: 3px solid rgb(250 150 100);
	outline-offset: -3px;
}

html,
body {
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent;
	-webkit-user-select: none;
	user-select: none;
}

body {
	margin: 0 auto;
	max-width: 100%;
	overflow-x: hidden;
	animation: fade-in 0.5s ease;
}

@keyframes fade-in {
	from {
		opacity: 0%;
	}

	to {
		opacity: 100%;
	}
}

a,
span,
option {
	font-size: inherit;
}

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

button,
select {
	background-color: transparent;
	cursor: pointer;
}

.menu-overlay,
.navigation-overlay {
	-webkit-backdrop-filter: var(--blur);
	backdrop-filter: var(--blur);
	background-color: rgb(var(--black) / 50%);
	height: 100%;
	opacity: 0%;
	position: fixed;
		top: 0; left: 0;
	visibility: hidden;
	width: 100%;
	transition:
		opacity 0.35s ease,
		visibility 0s ease 0.35s;
}

.menu-overlay.visible,
.navigation-overlay.visible {
	opacity: 100%;
	visibility: visible;
	transition:
		opacity 0.35s ease,
		visibility 0s;
}

.menu-overlay {
	display: none;
	z-index: 98;
}

@media (max-width: 1024px) {
	.menu-overlay {
		display: block;
	}
}

.navigation-overlay {
	z-index: 96;
}

@media (max-width: 1024px) {
	.navigation-overlay {
		display: none;
	}
}

.menu {
	align-items: center;
	-webkit-backdrop-filter: var(--blur);
	backdrop-filter: var(--blur);
	background-color: rgb(var(--white) / 90%);
	box-shadow: var(--z1-left);
	display: none;
	flex-direction: column;
	height: 100%;
	justify-content: flex-start;
	max-width: 350px;
	opacity: 0%;
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
	position: fixed;
		top: 0; right: 0;
	transform: translate3d(100%, 0, 0);
	visibility: hidden;
	width: calc(100% - 96px);
	z-index: 99;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s ease 0.35s;
}

.menu.open {
	opacity: 100%;
	transform: translate3d(0, 0, 0);
	visibility: visible;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s;
}

@media (max-width: 1024px) {
	.menu {
		display: flex;
	}
}

.menu-close-button {
	align-items: center;
	align-self: flex-start;
	color: rgb(var(--black) / 50%);
	display: inline-flex;
	font: var(--main);
	gap: 6px;
	justify-content: space-between;
	margin: 32px 0 0 32px;
	opacity: 100%;
	text-transform: uppercase;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.35s ease;
}

.menu-close-button.interaction {
	opacity: 75%;
}

.menu-close-button svg {
	height: 20px;
	width: 20px;
}

.menu-logo {
	color: rgb(var(--primary));
	display: inline-block;
	margin: 32px auto;
	opacity: 100%;
	transform: translate3d(0, 0, 0);
	width: 128px;
	transition: opacity 0.35s ease;
}

.menu-logo.interaction {
	opacity: 75%;
}

.menu-logo svg {
	filter: drop-shadow(var(--text-shadow));
	height: auto;
	width: 100%;
}

.menu-accordion-button {
	align-items: center;
	box-sizing: border-box;
	color: rgb(var(--dark));
	display: flex;
	font: var(--main);
	font-size: 20px;
	justify-content: space-between;
	opacity: 100%;
	padding: 20px 32px;
	transform: translate3d(0, 0, 0);
	width: 100%;
	transition: opacity 0.35s ease;
}

.menu-accordion-button.interaction {
	opacity: 75%;
}

.menu-accordion-button svg {
	height: 18px;
	transform: rotateZ(90deg);
	width: 18px;
	transition: transform 0.35s ease;
}

.menu-accordion-button.open svg {
	transform: rotateZ(-90deg);
}

.menu-accordion {
	align-items: flex-start;
	background-color: rgb(var(--dark) / 5%);
	box-shadow: var(--z1) inset;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 12px;
	justify-content: flex-start;
	max-height: 0;
	overflow-y: hidden;
	padding: 0 32px;
	width: 100%;
	transition: max-height 0.5s ease;
}

.menu-accordion.open {
	max-height: 1000px;
	transition: max-height 1.5s ease;
}

.menu-accordion-link {
	color: rgb(var(--dark));
	font: var(--main);
	line-height: 1.7;
	opacity: 100%;
	padding: 8px;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.35s ease;
}

.menu-accordion-link.interaction {
	opacity: 75%;
}

.menu-accordion-link:first-child {
	margin-top: 24px;
}

.menu-accordion-link:last-child {
	margin-bottom: 24px;
}

.menu-accordion-divider {
	background-color: rgb(var(--dark) / 25%);
	flex-shrink: 0;
	height: 1px;
	margin: 0 auto;
	width: calc(100% - 16px);
}

.navigation-bar {
	-webkit-backdrop-filter: blur(0);
	backdrop-filter: blur(0);
	background-color: transparent;
	box-shadow: var(--z0);
	padding: 15px 0;
	position: fixed;
		top: 0; left: 0;
	width: 100%;
	z-index: 97;
	transition:
		-webkit-backdrop-filter 0.35s ease,
		backdrop-filter 0.35s ease,
		background-color 0.35s ease,
		box-shadow 0.35s ease;
}

.navigation-bar.initialized,
.navigation-bar.dropdown-open {
	-webkit-backdrop-filter: var(--blur);
	backdrop-filter: var(--blur);
	background-color: rgb(var(--primary) / 90%);
	box-shadow: var(--z1);
}

.header-navigation {
	align-items: stretch;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1400px;
	width: calc(100% - 96px);
}

@media (max-width: 1024px) {
	.header-navigation {
		align-items: center;
	}
}

@media (max-width: 425px) {
	.header-navigation {
		width: calc(100% - 64px);
	}
}

.menu-button {
	color: rgb(var(--white));
	display: none;
	height: 48px;
	transform: translate3d(0, 0, 0);
	width: 48px;
	transition: opacity 0.35s ease;
}

.menu-button.interaction {
	opacity: 75%;
}

@media (max-width: 1024px) {
	.menu-button {
		display: inline-block;
	}
}

.menu-button svg {
	height: 100%;
	width: 100%;
}

.logo {
	color: rgb(var(--white));
	display: inline-block;
	height: 48px;
	opacity: 100%;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.35s ease;
}

.logo.interaction {
	opacity: 75%;
}

.logo svg {
	height: 100%;
	width: auto;
}

.logo-secondary-white {
	color: rgb(var(--white) / 50%);
}

.logo-secondary {
	color: rgb(var(--accent));
}

.header-navigation-section {
	align-items: center;
	display: inline-flex;
	gap: 48px;
	justify-content: space-between;
}

@media (max-width: 1024px) {
	.header-navigation-section {
		display: none;
	}
}

.navigation-dropdown-buttons {
	align-items: center;
	display: inline-flex;
	gap: 32px;
	height: 100%;
	justify-content: space-between;
}

.navigation-dropdown-container {
	align-items: center;
	display: inline-flex;
	height: 100%;
	justify-content: center;
	position: relative;
}

.navigation-dropdown-button {
	align-items: center;
	color: rgb(var(--white));
	display: inline-flex;
	font: var(--main);
	gap: 8px;
	justify-content: space-between;
	opacity: 100%;
	padding: 16px 0;
	text-transform: uppercase;
	transition: opacity 0.35s ease;
}

.navigation-dropdown-button.interaction {
	opacity: 75%;
}

.navigation-bar.dropdown-open .navigation-dropdown-button {
	opacity: 50%;
}

.navigation-bar.dropdown-open .navigation-dropdown-button.interaction,
.navigation-bar.dropdown-open .navigation-dropdown-button.open {
	opacity: 100%;
}

.navigation-dropdown-button svg {
	height: 14px;
	transform: rotateZ(90deg);
	width: 14px;
	transition: transform 0.35s ease;
}

.navigation-dropdown-button.open svg {
	transform: rotateZ(-90deg);
}

.navigation-dropdown {
	align-items: flex-start;
	-webkit-backdrop-filter: var(--blur);
	backdrop-filter: var(--blur);
	background-color: rgb(var(--white) / 90%);
	border-radius: 8px;
	box-shadow: var(--z1);
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: flex-start;
	min-width: 176px;
	opacity: 0%;
	padding: 16px;
	position: absolute;
		top: calc(100% + 20px); left: -24px;
	transform: translate3d(0, -24px, 0);
	visibility: hidden;
	z-index: 98;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s ease 0.35s;
}

.navigation-dropdown.open {
	opacity: 100%;
	transform: translate3d(0, 0, 0);
	visibility: visible;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s;
}

.navigation-dropdown-link {
	color: rgb(var(--dark));
	font: var(--main);
	opacity: 100%;
	padding: 8px;
	transform: translate3d(0, 0, 0);
	white-space: nowrap;
	transition: opacity 0.35s ease;
}

.navigation-dropdown-link.interaction {
	opacity: 75%;
}

.navigation-dropdown-divider {
	background-color: rgb(var(--dark) / 25%);
	height: 1px;
	margin: 0 auto;
	width: calc(100% - 16px);
}

.navigation-actions {
	align-items: center;
	display: inline-flex;
	gap: 24px;
	justify-content: space-between;
}

.navigation-contact {
	-webkit-backdrop-filter: blur(0);
	backdrop-filter: blur(0);
	background-color: rgb(var(--white));
	border-radius: 8px;
	box-shadow: var(--z1);
	color: rgb(var(--primary));
	display: inline-block;
	font: var(--main);
	padding: 14px 20px;
	text-transform: uppercase;
	transform: translate3d(0, 0, 0);
	transition:
		-webkit-backdrop-filter 0.35s ease,
		backdrop-filter 0.35s ease,
		background-color 0.35s ease;
}

.navigation-contact.interaction {
	-webkit-backdrop-filter: var(--blur);
	backdrop-filter: var(--blur);
	background-color: rgb(var(--white) / 75%);
}

.navigation-phone {
	align-items: center;
	color: rgb(var(--white));
	display: inline-flex;
	font: var(--main);
	gap: 6px;
	justify-content: space-between;
	opacity: 100%;
	padding: 16px 0;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.35s ease;
}

.navigation-phone.interaction {
	opacity: 75%;
}

.navigation-phone svg {
	height: 18px;
	width: 18px;
}

.mobile-actions {
	align-items: center;
	-webkit-backdrop-filter: var(--blur);
	backdrop-filter: var(--blur);
	background-color: rgb(var(--primary) / 75%);
	box-shadow: var(--z1);
	box-sizing: border-box;
	display: none;
	justify-content: space-between;
	opacity: 0%;
	padding: 12px 48px;
	position: fixed;
		top: 78px; left: 0;
	transform: translate3d(0, -100%, 0);
	visibility: hidden;
	width: 100%;
	z-index: 96;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s ease 0.35s;
}

.mobile-actions.visible {
	opacity: 100%;
	transform: translate3d(0, 0, 0);
	visibility: visible;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s;
}

@media (max-width: 1024px) {
	.mobile-actions {
		display: flex;
	}
}

@media (max-width: 425px) {
	.mobile-actions {
		padding: 12px 32px;
	}
}

.mobile-action-contact {
	-webkit-backdrop-filter: blur(0);
	backdrop-filter: blur(0);
	background-color: rgb(var(--white));
	border-radius: 8px;
	box-shadow: var(--z1);
	color: rgb(var(--primary));
	display: inline-block;
	font: var(--main);
	font-size: 16px;
	padding: 12px 18px;
	text-transform: uppercase;
	transform: translate3d(0, 0, 0);
	transition:
		-webkit-backdrop-filter 0.35s ease,
		backdrop-filter 0.35s ease,
		background-color 0.35s ease;
}

.mobile-action-contact.interaction {
	-webkit-backdrop-filter: var(--blur);
	backdrop-filter: var(--blur);
	background-color: rgb(var(--white) / 75%);
}

.mobile-action-phone {
	align-items: center;
	color: rgb(var(--white));
	display: inline-flex;
	font: var(--main);
	font-size: 16px;
	gap: 6px;
	justify-content: space-between;
	opacity: 100%;
	padding: 12px 0;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.35s ease;
}

.mobile-action-phone.interaction {
	opacity: 75%;
}

.mobile-action-phone svg {
	height: 17px;
	width: 17px;
}

.hero {
	box-sizing: border-box;
	overflow-x: hidden;
	padding: 168px 64px 128px;
	position: relative;
	text-align: center;
	width: 100%;
}

.hero.secondary {
	padding: 136px 64px 96px;
}

@media (max-width: 825px) {
	.hero {
		padding: 135px 48px 96px;
	}

	.hero.secondary {
		padding: 111px 48px 64px;
	}
}

@media (max-width: 725px) {
	.hero {
		padding-top: 80px;
	}

	.hero.secondary {
		padding: 111px 40px 64px;
	}
}

.hero-background {
	background-color: rgb(var(--secondary));
	background-image: url("/images/bg-home.jpg");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	object-fit: cover;
	pointer-events: none;
	position: fixed;
		top: 0; left: 0;
	width: 100%;
	z-index: -2;
}

.hero-background.industrial {
	background-image: url("/images/bg-industrial.jpg");
	background-position: center;
}

.hero-background.commercial {
	background-image: url("/images/bg-commercial.jpg");
	background-position: center 70%;
}

.hero-background.residential {
	background-image: url("/images/bg-residential.jpg");
	background-position: center;
}

.hero-background.work-type-background {
	background-image: var(--image);
	background-position: center;
	height: 100%;
}

.hero-background.contact {
	background-image: url("/images/bg-contact.jpg");
	background-position: right 65%;
}

.hero-shadow {
	background-image: radial-gradient(rgb(var(--black) / 75%), rgb(var(--black) / 50%));
	box-shadow: 0 -10px 10px rgb(var(--white)) inset;
	height: 100%;
	position: absolute;
		bottom: 0; left: -16px;
	width: calc(100% + 32px);
	z-index: -1;
}

.content-section.secondary .hero-shadow {
	box-shadow:
		0 10px 10px rgb(var(--white)) inset,
		0 -10px 10px rgb(var(--white)) inset;
}

@media (max-width: 746px) {
	.content-section.secondary .hero-shadow {
		display: none;
	}
}

.hero-logo {
	color: rgb(var(--white));
	filter: drop-shadow(var(--text-shadow));
	height: 100px;
	width: auto;
}

@media (max-width: 825px) {
	.hero-logo {
		height: 88px;
	}
}

@media (max-width: 725px) {
	.hero-logo {
		display: none;
	}
}

.hero-heading {
	color: rgb(var(--white));
	font: 700 72px/1.2 "Roboto Condensed", sans-serif;
	margin: 32px auto 0;
	text-shadow: var(--text-shadow);
	text-transform: uppercase;
	text-wrap-style: balance;
}

.hero-heading.secondary {
	margin-top: 0;
}

.hero-heading.work-type-heading {
	font-size: 56px;
	text-transform: none;
}

@media (max-width: 825px) {
	.hero-heading {
		font-size: 64px;
		line-height: 1.3;
	}

	.hero-heading.secondary {
		font-size: 56px;
	}
}

@media (max-width: 725px) {
	.hero-heading:not(.secondary) {
		width: min-content;
	}
}

@media (max-width: 425px) {
	.hero-heading.work-type-heading {
		font-size: 48px;
	}
}

.hero-subheading {
	color: rgb(var(--white));
	font: 700 32px/1.4 "Roboto", sans-serif;
	margin: 16px auto 48px;
	text-shadow: var(--text-shadow);
}

@media (max-width: 825px) {
	.hero-subheading {
		font-size: 28px;
	}
}

@media (max-width: 725px) {
	.hero-subheading {
		font-size: 24px;
		line-height: 1.6;
		margin-top: 20px;
		max-width: 250px;
	}
}

.hero-text {
	color: rgb(var(--white));
	font: var(--subtitle);
	margin: 24px auto 0;
	max-width: 575px;
	text-align: left;
	text-shadow: var(--text-shadow);
}

.hero-heading-category {
	color: rgb(var(--white) / 75%);
	font: var(--subheading);
	line-height: 1;
	margin-bottom: 12px;
	text-shadow: var(--text-shadow);
	text-transform: uppercase;
}

.button {
	align-items: center;
	border-radius: 8px;
	box-shadow: var(--z1);
	display: inline-flex;
	font: var(--main);
	font-size: 18px;
	gap: 12px;
	justify-content: space-between;
	margin: 0 auto;
	overflow-x: hidden;
	padding: 16px 24px 16px 22px;
	text-transform: uppercase;
	transform: translate3d(0, 0, 0);
}

.button.light {
	-webkit-backdrop-filter: blur(0);
	backdrop-filter: blur(0);
	background-color: rgb(var(--white));
	color: rgb(var(--primary));
	transition:
		-webkit-backdrop-filter 0.35s ease,
		backdrop-filter 0.35s ease,
		background-color 0.35s ease;
}

.button.dark {
	background-color: rgb(var(--primary));
	color: rgb(var(--white));
	opacity: 100%;
	transition: opacity 0.35s ease;
}

.button.disabled {
	box-shadow: none;
	cursor: not-allowed;
	opacity: 50% !important;
}

.button.fade {
	box-shadow: none !important;
	cursor: wait;
	opacity: 0% !important;
	transition:
		box-shadow 0.35s ease 0.35s,
		opacity 0.35s ease 0.35s;
}

.button.done {
	background-color: rgb(50 175 50);
	box-shadow: none;
	cursor: default;
	opacity: 100% !important;
}

.form .button {
	margin-top: 8px;
	transition:
		box-shadow 0.35s ease,
		opacity 0.35s ease;
}

.button.light.interaction {
	-webkit-backdrop-filter: var(--blur);
	backdrop-filter: var(--blur);
	background-color: rgb(var(--white) / 75%);
}

.button.dark.interaction {
	opacity: 75%;
}

.button svg {
	height: 22px;
	opacity: 100%;
	transform: translate3d(0, 0, 0);
	width: 22px;
	transition:
		opacity 0.35s ease,
		transform 0s;
}

.button.fade svg {
	opacity: 0%;
	transform: translate3d(96px, 0, 0);
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}

.button span {
	opacity: 100%;
	transition: opacity 0.35s ease;
}

.button.fade span {
	opacity: 0%;
}

.content {
	overflow-x: hidden;
	width: 100%;
}

.content.secondary {
	background-color: rgb(var(--white));
	padding: 48px 0 96px;
}

@media (max-width: 725px) {
	.content.secondary {
		padding: 40px 0 72px;
	}
}

.content-section {
	align-items: center;
	background-color: rgb(var(--white));
	display: flex;
	flex-direction: column;
	gap: 48px;
	justify-content: flex-start;
	padding-top: 72px;
	position: relative;
	width: 100%;
}

.content-section.secondary {
	background-color: transparent;
	padding: 64px 0;
}

.content-section:first-of-type {
	padding-top: 48px;
}

.content.work-type-content .content-section:not(.secondary) {
	gap: 24px;
	padding: 48px 0;
}

.content.work-type-content .content-section:last-of-type {
	padding-bottom: 96px;
}

@media (max-width: 746px) {
	.content-section.secondary {
		padding: 0;
	}
}

@media (max-width: 725px) {
	.content-section {
		gap: 40px;
		padding-top: 64px;
	}

	.content-section:first-of-type {
		padding-top: 40px;
	}

	.content.work-type-content .content-section:not(.secondary) {
		padding: 40px 0;
	}

	.content.work-type-content .content-section:last-of-type {
		padding-bottom: 72px;
	}
}

.content-title {
	color: rgb(var(--primary));
	font: 700 48px/1 "Roboto Condensed", sans-serif;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 725px) {
	.content-title {
		font-size: 40px;
	}
}

.content-tiles {
	align-items: stretch;
	display: flex;
	gap: 48px;
	justify-content: center;
	margin: 0 auto;
	max-width: 1746px;
	width: calc(100% - 96px);
}

@media (max-width: 1391px) {
	.content-tiles {
		align-items: center;
		flex-direction: column;
		justify-content: flex-start;
		max-width: 550px;
	}
}

@media (max-width: 725px) {
	.content-tiles {
		gap: 40px;
		width: calc(100% - 80px);
	}
}

@media (max-width: 425px) {
	.content-tiles {
		width: calc(100% - 64px);
	}
}

.content-tile {
	align-items: center;
	background-image: radial-gradient(rgb(var(--black) / 75%), rgb(var(--black) / 50%)), var(--image);
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 8px;
	box-shadow: var(--z1);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: center;
	margin: 0 auto;
	opacity: 100%;
	padding: 96px 48px;
	position: relative;
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	width: 100%;
	z-index: 1;
	transition:
		box-shadow 0.35s ease,
		opacity 0.35s ease,
		transform 0.35s ease;
}

.content-tile.interaction {
	box-shadow: var(--z2);
	opacity: 75%;
	transform: translate3d(0, -1%, 0) scale3d(1.01, 1.01, 1);
}

.content-tile.industrial {
	background-position: center;
	--image: url("/images/home-industrial.jpg");
}

.content-tile.commercial {
	background-position: center;
	--image: url("/images/home-commercial.jpg");
}

.content-tile.residential {
	background-position: center;
	--image: url("/images/home-residential.jpg");
}

@media (max-width: 500px) {
	.content-tile {
		padding: 64px 40px 96px;
	}
}

.content-tile-title {
	color: rgb(var(--white));
	font: var(--body-subheading);
	text-align: center;
	text-shadow: var(--text-shadow);
}

@media (max-width: 1391px) {
	.content-tile-title {
		font-size: 32px;
	}
}

.content-tile-description {
	color: rgb(var(--white));
	font: var(--body);
	font-weight: 700;
	max-width: 500px;
	text-shadow: var(--text-shadow);
	width: 100%;
}

.content-tile-action {
	align-items: center;
	border-radius: 999px;
	color: rgb(var(--white));
	display: inline-flex;
	font: var(--main);
	gap: 8px;
	justify-content: space-between;
	position: absolute;
		right: 32px; bottom: 32px;
	text-shadow: var(--text-shadow);
	text-transform: uppercase;
}

.content-tile-action::after {
	content: "";
	background-color: rgb(var(--white));
	border-radius: 1px;
	height: 3px;
	opacity: 0%;
	position: absolute;
		bottom: -12px; left: 0;
	transform: translate3d(0, 8px, 0);
	width: 100%;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}

.content-tile.interaction .content-tile-action::after {
	opacity: 75%;
	transform: translate3d(0, 0, 0);
}

.content-tile-action svg {
	height: 22px;
	width: 22px;
}

.slideshow {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: flex-start;
	margin: 0 auto;
	max-width: 1000px;
	position: relative;
	width: calc(100% - 48px);
}

.slideshow.single {
	width: calc(100% - 96px);
}

.content.work-type-content .slideshow {
	margin-top: 24px;
}

@media (hover: none) {
	.slideshow {
		width: calc(100% - 96px);
	}
}

@media (max-width: 800px) and (hover: hover) {
	.slideshow {
		width: 100%;
	}
}

@media (max-width: 725px) {
	.slideshow.single {
		width: calc(100% - 80px);
	}

	.content.work-type-content .slideshow {
		margin-top: 16px;
	}
}

@media (max-width: 725px) and (hover: none) {
	.slideshow {
		width: calc(100% - 80px);
	}
}

@media (max-width: 425px) {
	.slideshow.single {
		width: calc(100% - 64px);
	}
}

@media (max-width: 425px) and (hover: none) {
	.slideshow {
		width: calc(100% - 64px);
	}
}

.slideshow-button {
	background-color: rgb(var(--primary));
	border-radius: 8px;
	box-shadow: var(--z1);
	color: rgb(var(--white));
	height: 24px;
	opacity: 100%;
	padding: 16px;
	position: absolute;
		top: calc(50% - 16px);
	transform: translate3d(0, -50%, 0);
	width: 24px;
	z-index: 2;
	transition: opacity 0.35s ease;
}

.slideshow-button.interaction {
	opacity: 75%;
}

.slideshow-button.previous {
	left: 0;
}

.slideshow-button.next {
	right: 0;
}

.slideshow.single .slideshow-button {
	display: none;
}

@media (max-width: 800px) {
	.slideshow-button {
		height: 40px;
	}

	.slideshow-button.previous {
		border-radius: 0 8px 8px 0;
		padding: 16px 12px 16px 8px;
	}

	.slideshow-button.next {
		border-radius: 8px 0 0 8px;
		padding: 16px 8px 16px 12px;
	}
}

@media (hover: none) {
	.slideshow-button {
		display: none;
	}
}

.slideshow-button svg {
	height: 100%;
	width: 100%;
}

.slideshow-button.previous svg {
	margin-left: -3px;
}

.slideshow-button.next svg {
	margin-right: -3px;
}

.slideshow-images {
	align-items: stretch;
	background-color: rgb(var(--primary));
	border: 3px solid rgb(var(--primary));
	border-radius: 8px;
	box-sizing: border-box;
	display: flex;
	gap: 3px;
	justify-content: flex-start;
	max-width: 824px;
	overflow: auto hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	width: calc(100% - 176px);
}

.slideshow.single .slideshow-images {
	width: 100%;
}

.slideshow-images::-webkit-scrollbar {
	display: none;
}

@media (max-width: 800px) {
	.slideshow-images {
		width: calc(100% - 136px);
	}
}

@media (hover: none) {
	.slideshow-images {
		width: 100%;
	}
}

.slideshow-image {
	height: 100%;
	object-fit: cover;
	scroll-snap-align: start;
	width: 100%;
}

.slideshow-dots {
	align-items: center;
	display: inline-flex;
	gap: 8px;
	justify-content: center;
}

.slideshow.single .slideshow-dots {
	display: none;
}

.slideshow-dot {
	background-color: rgb(var(--primary));
	border-radius: 100%;
	height: 8px;
	opacity: 25%;
	transform: translate3d(0, 0, 0);
	width: 8px;
	transition: opacity 0.35s ease;
}

.slideshow-dot.active {
	opacity: 100%;
}

.about {
	align-items: stretch;
	display: flex;
	justify-content: center;
	width: 100%;
}

@media (max-width: 1100px) {
	.about {
		background-image: radial-gradient(rgb(var(--white) / 95%), rgb(var(--white) / 85%)), url("/images/home-about.jpg");
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		flex-direction: column;
		gap: 40px;
		justify-content: flex-start;
	}

	.about.secondary {
		background-image: radial-gradient(rgb(var(--white) / 95%), rgb(var(--white) / 85%)), url("/images/home-about.jpg");
	}
}

@media (max-width: 725px) {
	.about {
		gap: 32px;
	}
}

.about-tile {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: flex-start;
	position: relative;
	width: 50%;
}

.about-tile.has-text {
	padding: 48px;
}

@media (max-width: 1100px) {
	.about-tile {
		width: 100%;
	}

	.about:not(.secondary) .about-tile.has-text {
		padding: 0 48px 72px;
	}

	.about.secondary .about-tile:not(.has-text) {
		display: none;
	}
}

@media (max-width: 725px) {
	.about:not(.secondary) .about-tile.has-text {
		padding: 0 40px 72px;
	}

	.about.secondary .about-tile.has-text {
		padding: 40px;
	}
}

@media (max-width: 425px) {
	.about:not(.secondary) .about-tile.has-text {
		padding: 0 32px 72px;
	}

	.about.secondary .about-tile.has-text {
		padding: 40px 32px;
	}
}

.about-tile-image {
	height: 100%;
	object-fit: cover;
	object-position: 45% center;
	position: absolute;
	width: 100%;
}

.about-tile-image.secondary {
	object-position: 10% center;
}

@media (max-width: 1100px) {
	.about-tile-image {
		display: none;
	}
}

.about-tile-logo {
	align-items: center;
	background-image: radial-gradient(transparent, rgb(var(--white) / 50%));
	display: flex;
	height: 100%;
	justify-content: center;
	position: absolute;
		top: 0; left: 0;
	width: 100%;
	z-index: 2;
}

@media (max-width: 1100px) {
	.about-tile-logo {
		background-image: none;
		margin-top: 48px;
		position: static;
	}
}

@media (max-width: 725px) {
	.about-tile-logo {
		margin-top: 40px;
	}
}

.about-tile-logo svg {
	color: rgb(var(--primary));
	display: none;
	filter: drop-shadow(var(--text-shadow));
	height: auto;
	max-width: 150px;
	width: calc(100% - 48px);
}

@media (max-width: 1100px) {
	.about-tile-logo svg {
		display: inline-block;
	}
}

.body-text {
	color: rgb(var(--dark));
	font: var(--body);
	margin: 0 auto;
	width: 100%;
}

.body-text.bold {
	font-size: 20px;
	font-weight: 700;
	margin-top: 8px;
}

.body-text.heading {
	color: rgb(var(--primary));
	font: var(--body-subheading);
	line-height: 1.3;
}

.body-text.about-text {
	max-width: 550px;
}

.body-text.content-text {
	max-width: 650px;
	width: calc(100% - 96px);
}

.about-tile p.body-text:last-of-type {
	margin-bottom: 16px;
}

.content-section-column .body-text {
	margin: 0;
}

@media (max-width: 825px) {
	.content-section-column .body-text {
		margin: 0 auto;
	}
}

@media (max-width: 725px) {
	.body-text.content-text {
		width: calc(100% - 80px);
	}
}

@media (max-width: 425px) {
	.body-text.content-text {
		width: calc(100% - 64px);
	}
}

.list {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: flex-start;
	list-style: none;
	margin: 0 auto 8px;
	width: 100%;
}

.list.about-list {
	max-width: 550px;
}

.list.content-list {
	max-width: 650px;
	width: calc(100% - 96px);
}

@media (max-width: 725px) {
	.list.content-list {
		width: calc(100% - 80px);
	}
}

@media (max-width: 425px) {
	.list.content-list {
		width: calc(100% - 64px);
	}
}

.list-heading {
	color: rgb(var(--accent));
	font: var(--subheading);
	margin-bottom: 4px;
}

.list-heading:not(:first-child) {
	margin-top: 12px;
}

.list-item {
	align-items: flex-start;
	display: inline-flex;
	justify-content: flex-start;
	margin-left: 24px;
}

.list.about-list .list-item {
	gap: 8px;
}

.list.content-list .list-item {
	gap: 12px;
}

@media (max-width: 725px) {
	.list-item {
		margin-left: 16px;
	}
}

.list-item svg {
	color: rgb(var(--primary));
	flex-shrink: 0;
	opacity: 50%;
}

.list.about-list .list-item svg {
	height: 18px;
	margin-top: 5px;
	width: 18px;
}

.list.content-list .list-item svg {
	height: 8px;
	margin-top: 11px;
	width: 8px;
}

.list-item-text {
	color: rgb(var(--dark));
	font: var(--body);
}

.list-item-text strong {
	color: rgb(var(--primary));
	font-size: inherit;
	font-weight: 700;
}

.list.content-list .list-item-text {
	font-weight: 700;
}

.work-types {
	align-items: flex-start;
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	justify-content: flex-start;
	max-width: 1296px;
	width: calc(100% - 96px);
}

@media (max-width: 725px) {
	.work-types {
		width: calc(100% - 80px);
	}
}

@media (max-width: 425px) {
	.work-types {
		width: calc(100% - 64px);
	}
}

.work-type {
	border-radius: 8px;
	box-shadow: var(--z1);
	height: 150px;
	margin: 0 auto;
	max-width: 450px;
	opacity: 100%;
	overflow: hidden;
	position: relative;
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	width: 100%;
	z-index: 1;
	transition:
		box-shadow 0.35s ease,
		opacity 0.35s ease,
		transform 0.35s ease;
}

.work-type.interaction {
	box-shadow: var(--z2);
	opacity: 75%;
	transform: translate3d(0, -1%, 0) scale3d(1.01, 1.01, 1);
}

.work-type-image {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.work-type-title {
	align-items: flex-end;
	background-image: linear-gradient(0deg, rgb(var(--black) / 80%), rgb(var(--black) / 25%));
	box-sizing: border-box;
	color: rgb(var(--white));
	display: flex;
	font: var(--subheading);
	height: 100%;
	justify-content: flex-start;
	padding: 24px;
	position: absolute;
		bottom: 0; left: 0;
	text-shadow: var(--text-shadow);
	text-wrap-style: balance;
	width: 100%;
	z-index: 2;
}

.testimonials {
	background-image: radial-gradient(rgb(var(--secondary) / 90%), rgb(var(--secondary) / 75%)), url("/images/bg-testimonials.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 64px 0;
	position: relative;
	width: 100%;
}

.testimonial-button {
	background-color: rgb(var(--light));
	box-shadow: var(--z1);
	color: rgb(var(--dark));
	height: 40px;
	opacity: 100%;
	position: absolute;
		top: 50%;
	transform: translate3d(0, -50%, 0);
	visibility: visible;
	width: 24px;
	z-index: 2;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s;
}

.testimonial-button.interaction {
	opacity: 75%;
}

.testimonial-button.previous {
	border-radius: 0 8px 8px 0;
	padding: 16px 12px 16px 8px;
		left: 0;
}

.testimonial-button.next {
	border-radius: 8px 0 0 8px;
	padding: 16px 8px 16px 12px;
		right: 0;
}

.testimonial-button.hidden {
	opacity: 0%;
	visibility: hidden;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s ease 0.35s;
}

.testimonial-button.hidden.previous {
	transform: translate3d(-100%, -50%, 0);
}

.testimonial-button.hidden.next {
	transform: translate3d(100%, -50%, 0);
}

.testimonial-button svg {
	height: 100%;
	width: 100%;
}

.testimonial-button.previous svg {
	margin-left: -3px;
}

.testimonial-button.next svg {
	margin-right: -3px;
}

.testimonial-container {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	width: 100%;
}

.testimonial-container::-webkit-scrollbar {
	display: none;
}

.testimonial {
	box-sizing: border-box;
	flex-shrink: 0;
	padding: 0 72px;
	scroll-snap-align: center;
	width: 100%;
}

.testimonial-text {
	color: rgb(var(--white));
	font: var(--subtitle);
	font-size: 24px;
	margin: 0 auto;
	max-width: 550px;
	width: 100%;
}

@media (max-width: 725px) {
	.testimonial-text {
		font-size: 20px;
		line-height: 1.6;
	}
}

.testimonial-author {
	box-sizing: border-box;
	color: rgb(var(--white) / 50%);
	font: var(--subtitle);
	font-size: 24px;
	margin: 16px auto 0;
	max-width: 550px;
	padding-right: 16px;
	text-align: right;
	width: 100%;
}

@media (max-width: 725px) {
	.testimonial-author {
		font-size: 20px;
	}
}

.content-section-card {
	align-items: center;
	-webkit-backdrop-filter: var(--blur);
	backdrop-filter: var(--blur);
	background-color: rgb(var(--white) / 95%);
	border-radius: 8px;
	box-shadow: var(--z1);
	box-sizing: border-box;
	display: inline-flex;
	flex-direction: column;
	gap: 24px;
	justify-content: flex-start;
	max-width: 746px;
	padding: 48px 0;
	width: 100%;
}

@media (max-width: 746px) {
	.content-section-card {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		background: radial-gradient(rgb(var(--white) / 95%), rgb(var(--white) / 85%));
		border-radius: 0;
		box-shadow: none;
		padding: 40px 0;
		width: 100%;
	}
}

.content-section-row {
	align-items: center;
	display: flex;
	gap: 96px;
	justify-content: center;
	width: 100%;
}

@media (max-width: 1024px) {
	.content-section-row {
		gap: 64px;
	}
}

@media (max-width: 825px) {
	.content-section-row {
		flex-direction: column;
		gap: 32px;
		justify-content: flex-start;
	}
}

.content-section-logo {
	color: rgb(var(--primary));
	filter: drop-shadow(var(--text-shadow));
	flex-shrink: 0;
	height: auto;
	margin-left: 96px;
	width: 256px;
}

@media (max-width: 1024px) {
	.content-section-logo {
		width: 200px;
	}
}

@media (max-width: 825px) {
	.content-section-logo {
		margin-left: 0;
	}
}

@media (max-width: 725px) {
	.content-section-logo {
		width: 168px;
	}
}

.content-section-column {
	align-items: flex-start;
	display: inline-flex;
	flex-direction: column;
	gap: 24px;
	justify-content: flex-start;
}

.form {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: flex-start;
	margin: 0 auto;
	max-width: 600px;
	width: calc(100% - 96px);
}

@media (max-width: 725px) {
	.form {
		width: calc(100% - 80px);
	}
}

@media (max-width: 425px) {
	.form {
		width: calc(100% - 64px);
	}
}

.textbox {
	border: 2px solid;
	border-color: rgb(200 200 200);
	border-radius: 8px;
	box-shadow: none !important;
	box-sizing: border-box;
	color: rgb(var(--dark));
	font: var(--body);
	line-height: normal;
	outline: 0;
	padding: 16px;
	width: 100%;
	transition: border-color 0.35s ease;
}

.textbox.message {
	height: 250px;
	line-height: 1.7;
	resize: none;
}

.textbox:focus {
	border-color: rgb(var(--primary)) !important;
}

@media (hover: hover) {
	.textbox.interaction {
		border-color: rgb(var(--accent));
	}
}

.g-recaptcha {
	margin: 24px auto 0;
	opacity: 75%;
	transform: scale3d(0.75, 0.75, 1);
}

.footer {
	align-items: center;
	background-color: rgb(var(--secondary));
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: flex-start;
	padding: 40px 24px 32px;
	width: 100%;
}

.footer-email {
	align-items: center;
	color: rgb(var(--white));
	display: inline-flex;
	font: var(--main);
	gap: 8px;
	justify-content: space-between;
	opacity: 100%;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.35s ease;
}

.footer-email.interaction {
	opacity: 75%;
}

.footer-email svg {
	height: 22px;
	width: 22px;
}

.social-links {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: center;
}

.social-link {
	background-color: rgb(var(--accent));
	border-radius: 8px;
	box-sizing: border-box;
	color: rgb(var(--secondary));
	height: 64px;
	padding: 12px;
	width: 64px;
	transition: background-color 0.35s ease;
}

.social-link.interaction {
	background-color: rgb(var(--white));
}

.social-link svg {
	height: 100%;
	width: 100%;
}

.copyright {
	color: rgb(var(--white));
	font: 400 14px/1.9 "Roboto", sans-serif;
	opacity: 50%;
	text-align: center;
}

.copyright br {
	display: none;
}

@media (max-width: 475px) {
	.copyright br {
		display: initial;
	}
}
