.home {
	background-color: black;
}

.hero-section {
	height: calc(100vh + 5rem);
	width: 100vw;
	background-image: url('/res/roof1.png');
	position: fixed;
	background-size: cover;
	background-attachment: fixed;
	background-position: 50% 30%;
	top: -5rem;
}

.hero-container {
	background-color: rgb( 0 0 0 / 0.6);
	width: 100%;
	height: 100%;
	padding-top: calc(35vh + 5rem);
}

.hero-grid {
	display: grid;
	grid-template-rows: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	width: 50%;
	margin: 0 auto;
	gap: 5px;
}

.hero-grid h1, .hero-grid p, .hero-grid .hero-buttons {
	grid-column: span 2;
	text-align: center;
}

.button {
	border-radius: 20px;
	line-height: 2rem;
	padding: 0.75rem 1rem;
	background-color: var(--orange);
	text-align: center;
	width: fit-content;
	height: fit-content;
	display: block;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
}

.hero-buttons .button:last-child {
	background-color: transparent;
	color: var(--orange);

}

.button:hover, .button:last-child:hover {
	box-shadow: 0 0 10px var(--orange);
	background-color: orange;
	color: white;
}

.container {
	width: 100%;
	margin-top: 80vh;
	position: relative;


}

.about-section {
	width: 100%;
	filter: drop-shadow(0 0 10px var(--orange));
}

.about-container{
	background-color: black;
	clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
	width: 100%;
	padding-top: 20vh;
	padding-bottom: 20vh;
}

.about-grid {
	margin: 0 auto;
	width: 80%;
	max-width: 1000px;
	display: grid;
	grid-template-rows: repeat(4 auto);
	grid-template-columns: 1fr 1fr;
	column-gap: 2rem;
}

.about-grid img {
	grid-row: span 4;
	display: block;
	width: 100%;
	border-radius: 2rem;
}

h2 {
	font-size: 1rem;
	color: var(--orange);
	margin: 0;
}

.about-grid p {

}

.headline {
	margin: 0;
	font-size: 2rem;
}

.about-grid .button {
	margin: 0 auto;
}

.services-section {
	width: 100%;
	height: fit-content;
	background-image: url('/res/roof3.png');
	background-size: cover;
	background-attachment: fixed;
	margin-top: -30vh;
}

.services-container {
	display: grid;
	grid-template-rows: repeat(4 auto);
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 2rem;
	padding-top: 40vh;
	padding-bottom: 40vh;
	width: 80%;
	max-width: 1000px;
	text-align: center;
	margin: 0 auto;
	padding-bottom: 40vh;
	height: fit-content;
}

.services-container h2, .services-container p {
	grid-column: span 3;
	margin: 1rem 20%;
}

.card {
	display: flex;
	flex-direction: column;
	background-color: rgb( 0 0 0 / 0.4);
	border-radius: 2rem;
	position: relative;
	padding: 2rem;
	margin-top: 5rem;

}

.icon {
	position: absolute;
	display: flex;
	height: 5rem;
	width: 5rem;
	top: -2.5rem;
	left: 2rem;
	align-items: center;
	justify-content: center;	
	background-color: rgb( 0 0 0 / 0.4);
	box-sizing: border-box;
	border: 3px solid var(--orange);
	border-radius: 1rem;
}

.icon svg {
	height: 50%;
	width: 50%;
}

.card h3 {
	size: 2rem;
	margin-top: 4rem;

}

.card p {
	padding: 0;
	margin: 0;
	margin-bottom: 1rem;
}

.see-more {
	display: inline-block;
	text-decoration: underline solid 2px;
	text-underline-offset: 3px;
	border-radius: 10px;
	padding: 0.5rem 1rem;
	margin: auto auto 2rem auto;
}

.see-more:hover {
	color: white;
	background-color: var(--orange);
	text-decoration: none;
}

.card:hover {
	background-color: rgb( 255 140 0 / 0.4);
}

.card:hover .icon {
	background-color: var(--orange);
	border-color: white;
}

.card:hover .icon svg path {
	fill: white;
}

.review-section {
	width: 100%;
	filter: drop-shadow(0 0 10px var(--orange));
	margin-top: -30vh;
}

.review-container{
	background-color: black;
	clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 100%);
	width: 100%;
	padding-top: 30vh;
	padding-bottom: 20vh;
	text-align: center;
	display: grid;
	grid-template-rows: auto;
	row-gap: 2rem;
}

.review-grid {
	display: grid;
	width: 80%;
	max-width: 1000px;
	grid-template-columns: repeat(6, 1fr);
	gap: 2rem;
	margin: 0 auto;
}

.review-tile {
	padding: 2rem;
	min-height: 300px;
	grid-column: span 2;
	box-sizing: border-box;
	border: 2px solid var(--orange);
	border-radius: 20px;
}

.review-tile:hover {
	
}

.review-tile:nth-child(4) {
	grid-column: 2 / span 2;
}

.review-tile:last-child {
	grid-column: 4 / span 2;

}

/*
 *
.review-container, .about-container, .services-container {
	opacity: 0;
	transition: opacity 1s ease;
}

.review-container.section-active, .about-container.section-active, .services-container.section-active {
	opacity: 1;
}

*/





