* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition-duration: 200ms;
}

:root {
	text-rendering: geometricPrecision;
	--global-border-rad: 8px;
}

.header {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-height: 60px;
	position: fixed;
	align-items: center;
	justify-content: space-between;
	padding: 0 50px;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(10px);
	background-color: #00000043;
}

.header-logo {
	max-height: inherit;
	padding: 8px;
}

.header-menu ul {
	display: flex;
	flex-direction: row;
	gap: 50px;
	align-items: center;
}

.header-menu > ul {
	list-style-type: none;
}

.header-menu a {
	text-decoration: none;
	color: white;
}

.home-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 100px;
	padding: 100px;
}

.home-hero {
	background: url(/web-content/img/hero.jpeg) rgba(0, 0, 0, 0.181);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	height: 80vh;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	gap: 50px;
	background-blend-mode: multiply;
}

.home-hero-logo {
	max-height: 300px;
}

.home-services {
	width: 70vw;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
}

.home-services > div {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	text-align: center;
	height: 45vh;
	border-radius: var(--global-border-rad);
	overflow: hidden;
}

.service-info {
	padding: 15px 0;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.service1,
.service2,
.service3 {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service1 {
	background-image: url(/web-content/img/res_4.jpeg);
}

.service2 {
	background-image: url(/web-content/img/ind_2.jpeg);
}

.service3 {
	background-image: url(/web-content/img/comm_1.jpeg);
}

.home-about {
	width: 70vw;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.home-about img {
	max-width: 100%;
	border-radius: var(--global-border-rad);
	height: 100%;
	object-fit: cover;
}

.home-our-services {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 50px;
	width: 70vw;
	text-align: center;
	padding: 25px 0;
}

.home-our-services ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	gap: 20px;
	align-items: center;
	justify-content: center;
}

.home-our-services ul li {
	list-style: none;
	display: flex;
	flex-direction: row;
	gap: 15px;
	align-items: center;
}

.home-our-services ul li::before {
	content: "✓";
}

.home-image-gallery {
	display: grid;
	width: 70vw;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--global-border-rad);
}

.home-image-gallery img {
	width: 100%;
	border-radius: var(--global-border-rad);
	max-height: 400px;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.contact-form {
	width: 70vw;
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
	justify-content: center;
}

input,
textarea {
	padding: 10px;
	border-radius: var(--global-border-rad);
	width: 100%;
	background-color: transparent;
	font-family: "Stack Sans Headline", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	line-height: 1.6;
	letter-spacing: 0.05rem;
	outline: none;
	border: 1px solid rgb(33, 33, 33);
}

input:focus,
textarea:focus {
	outline: none;
	border-color: rgb(46, 81, 196);
}

form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 650px;
	width: 100%;
}

.btn {
	padding: 10px 30px;
	border-radius: var(--global-border-rad);
	border: none;
	width: 100%;
	margin-left: auto;
}

.btn:hover {
	cursor: pointer;
}

footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 15px;
	border-top: 1px solid rgb(230, 230, 230);
	padding-top: 50px;
}

footer p {
	font-size: 14px;
}

footer a {
	text-decoration: none;
	color: black;
}

@media only screen and (max-width: 1500px) {
	.home-services {
		gap: 25px;
	}
	.home-about,
	.home-our-services,
	.home-services,
	.home-image-gallery,
	.home-form {
		width: 85vw;
	}
}

@media only screen and (max-width: 900px) {
	.home-services {
		gap: 25px;
	}
	.home-about,
	.home-our-services,
	.home-services,
	.home-image-gallery,
	.home-form {
		width: 85vw;
	}
	.home-image-gallery {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 768px) {
	.home-services {
		grid-template-columns: 1fr;
	}
	.home-hero {
		padding: 20px;
		height: 100vh;
	}
	.hero-copy {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
	.home-image-gallery {
		grid-template-columns: 1fr;
	}
	.home-hero-logo {
		width: 200px;
	}
	.home-about {
		grid-template-columns: 1fr;
	}
	.home-our-services ul {
		display: flex;
		flex-direction: column;
	}
}
