main {
	flex-direction: column;
	gap:0px;
	overflow-x: hidden;
}

/* header */
#header {
	border: none;
	text-align: left;
	color:white;
	background-image: url('../images/header.jpg');
	background-size: cover;
	background-position: center;
	height: 100vh;
	text-transform:uppercase;
	position:relative;
	width:100vw;
}


#header .parallax {
	background-image: url('../images/header.jpg');
	/* Full height */
	height: 100vh;
	/* Create the parallax scrolling effect */
	background-attachment:fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#overlay {
	position:absolute;
	height: 100vh;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2;
	max-width: 100vw;
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
	align-items: center;
}

#overlay h2 {
	font-size:4rem;
}

#header .text-container {
	display:flex;
	flex-direction:column;
	gap:0.5rem;
	z-index:9;
	width:700px;
	max-width: 100%;
	padding: 10px;
}

#header .text-container h1 {
	font-size: 3rem;
	line-height: 1.2;
}

#header .text-container p {
	font-size: 1.5rem;
}

.links {
	display:flex;
	justify-content:flex-start;
	align-items:center;
	gap:0.5rem;
}

.links a {
	background:#97cf56fd;
	padding:0.5rem;
	font-weight: bold;
	border-radius: 0.5rem;
	color:black;
	box-shadow: 0px 2px 2px #30303078;
	text-transform: uppercase;
}

#header .text-container img {
	max-width: 100%;
}

@media only screen and (max-width: 800px){
	#header .parallax {
		display: none;
	}
}

#why {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background:#97cf56fd;
	overflow: hidden;
	min-height: 100vh;
	width:100vw;
	padding: 0.5rem;
}

#why .container {
	display:flex;
	flex-direction:column;
	gap:1rem;
	padding:2rem;
	box-shadow: 0px 5px 10px #0000006d;
	background:#ffffff;
	color:#345c07fd;
	border-radius: 5px;
	width:600px;
	max-width: 100%;
}

#why .container h3,
#services h3 {
	font-size: 2rem;
}

#services {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background:#1f1f20;
	border-bottom: 4px solid #0d0d0e57;
	overflow: hidden;
	min-height: 100vh;
	width: 100vw;
}

#services svg {
	width:100px;
	height:100px;
	display: inline-block;
	margin: 0px auto;
	padding: 10px;
}

#services h2 {
	font-size: 2.5rem;
	padding:10px;
	color: white;
	text-align: center;
	text-shadow: 0px 2px 3px #0d0d0e57;
}

#services h3 {
	font-size: 2rem;
	text-align: center;
}

#services .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
	gap: 1rem;
}

#services .service {
	width: 350px;
	max-width:100%;
	box-shadow: 0px 5px 10px #000000;
	padding:1.5rem;
	vertical-align: top;
	border-radius: 5px;
	background: #f7f5f5;
	color:#1f1f20;
	text-align: center;
	display:flex;
	flex-direction:column;
	gap:0.5rem;
}

#services .service p {
	padding:1rem;
	text-align: left;
	font-size:1.2rem;
}

#cost {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	min-height: 100vh;
	padding: 0.5rem;
}

#cost .container {
	padding:2rem;
	display: flex;
	flex-direction: column;
	gap:1rem;
	max-width: 800px;
	background: #f7f5f5;
	color:#1f1f20;
	border-radius: 5px;
	box-shadow: 0px 5px 10px #0000006d;
}

#contact {
    background:#0d0d0e57;
}

#contact .flex-container {
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    align-items: center;
}

#contact .contact-info {
    vertical-align: top;
}