* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

:root {
	--green: #6ab42f;
	--form: #1a1e23;
}
.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}
.hidden {
	display: none;
}
.active {
	display: block;
}
a {
	color: var(--form);
	text-decoration: none;
}
a:hover {
	color: var(--green);
}
.wrapper {
	width: 100vw;
	min-height: 100vh;
	display: flex;
	justify-content: center;
}

/* home page styling  */

.home {
	width: 1100px;
	max-width: 1100px;
	flex-direction: column;
}
/* navigation bar styling */
.home_nav {
	position: relative;
	width: 100%;
	/* border: 2px solid black; */
	height: 70px;
	justify-content: space-evenly;
}
.home_nav_logo {
	height: 100%;
	justify-content: space-evenly;
	/* border: 2px solid black; */
	width: 150px;
}
.nav_logo {
	color: white;
	background-color: var(--green);
	height: 60px;
	width: 60px;
	font-size: xx-large;
	/* border: 2px solid black; */
	border-radius: 50%;
	font-weight: 700;
}
.nav_description {
	/* border: 2px solid black; */
	font-size: xx-large;
	font-weight: 700;
}
.home_nav_link {
	/* border: 2px solid black; */
	width: 60%;
	height: 100%;
	justify-content: space-evenly;
}
.home_nav_link div {
	font-size: large;
	/* font-weight: 550; */
}
.nav_bar_link {
	display: none;
}

/* hero section link  */
.home_hero_section {
	width: 100%;
	height: 600px;
	max-height: 600px;
	position: relative;
}
.home_hero_section img {
	position: absolute;
	width: 100%;
	height: 100%;
}
.home_hero_section .hero_description {
	flex-direction: column;
	justify-content: space-evenly;
	height: 100%;
	width: 100%;
	position: absolute;
	color: white;
}
.hero_heading1 {
	font-size: 24px;
	font-weight: 700;
	color: var(--green);
}
.hero_heading2 {
	font-size: 80px;
	text-align: center;
	width: 70%;
	/* color: var(--green); */
}
.hero_button {
	/* border: ; */
	background-color: var(--green);
	height: 70px;
	width: 200px;
	font-size: 22px;
	font-weight: 600;
}

/* Home Benfetits And Requests Section styling  */
.home_benefits_requests {
	/* border: 2px solid black; */
	min-height: 100vh;
	width: 100%;
	flex-wrap: wrap;
}
.benefits {
	padding: 20px;
	flex-direction: column;
	justify-content: space-evenly;
	align-content: center;
	width: 100%;
	max-width: 550px;
	min-height: 600px;
}
.benefits_header {
	color: #6ab42f;
	font-size: 20px;
	font-weight: 700;
}
.benefits_rectangle {
	margin-right: 0.5rem;
	height: 5px;
	width: 40px;
	border-radius: 20px;
	background-color: var(--green);
}
.benefits_main {
	text-align: center;
	font-weight: 700;
	font-size: 40px;
}
.benefits_para1,
.benefits_para2 {
	font-size: 18px;
	text-align: left;
}
.benefits_readMore button {
	padding: 10px;
	font-weight: 700;
	font-size: x-large;
	background-color: var(--green);
	color: white;
	cursor: pointer;
}
.request {
	background-color: var(--form);
	color: white;
	/* border: 2px solid red; */
	flex-direction: column;
	justify-content: space-evenly;
	padding-top: 10px;
	width: 100%;
	max-width: 500px;
	height: 600px;
	min-height: 500px;
	box-shadow: 10px 10px 30px var(--form);
}
.request_form {
	width: 100%;
	flex-direction: column;
	justify-content: space-around;
	/* border: 2px solid black; */
	/* min-height: 100vh; */
	min-height: 80%;
}
.request_form input:hover {
	box-shadow: 2px 2px 20px white;
	transition: 0.5s;
}
.form_pool {
	height: 40px;
	width: 80%;
}
.form_pool select {
	/* border-radius: 10px; */
	/* background-color: var(--green); */
	/* text-align: center; */
	width: 100%;
	height: 100%;
}
.form_info {
	justify-content: space-between;
	flex-wrap: wrap;
	min-height: 40px;
	width: 80%;
}
.form_info input {
	padding: 5px;
	/* border-radius: 10px; */
	/* background-color: var(--green); */
	height: 40px;
}
.form_addr {
	justify-content: space-between;
	flex-wrap: wrap;
	min-height: 40px;
	width: 80%;
}
.form_addr input {
	padding: 5px;
	/* border-radius: 10px; */
	/* background-color: #6ab42f; */
	height: 40px;
}
.form_message {
	width: 100%;
}
.form_message textarea {
	padding: 20px;
	height: 100px;
	width: 80%;
	/* background-color: ; */
}
.form_condition {
	width: 80%;
}
.request_form button {
	padding: 10px;
	font-weight: 700;
	font-size: x-large;
	background-color: var(--green);
	color: white;
	cursor: pointer;
}

/* services styling  */
.services {
	flex-wrap: wrap;
	/* border: 2px solid black; */
	min-height: 100vh;
	width: 100%;
}
.services_categories {
	width: 100%;
	/* width: 500px; */
	max-width: 400px;
	/* border: 2px solid black; */
	flex-direction: column;
	justify-content: space-evenly;
	/* height: 100%; */
	height: 400px;
	/* max-height: 500px; */
}
.categories_header {
	color: #6ab42f;
	font-size: 20px;
	font-weight: 700;
}
.categories_header_rectangle {
	margin-right: 0.5rem;
	height: 5px;
	width: 40px;
	border-radius: 20px;
	background-color: var(--green);
}
.categories_main {
	text-align: center;
	font-weight: 700;
	font-size: 40px;
}
.categories_description {
	font-size: 18px;
	text-align: left;
}
.services_categories button {
	padding: 10px;

	font-weight: 700;
	font-size: x-large;
	background-color: var(--green);
	color: white;
	cursor: pointer;
}
.services_details {
	padding: 10px;
	max-width: 650px;
	min-height: 600px;
	/* border: 2px solid black; */
	/* justify-content: center; */
	align-content: center;
	flex-wrap: wrap;
	gap: 10px;
}
.services_box {
	position: relative;
	width: 200px;
	height: 250px;
	color: white;
	background-color: var(--green);
	/* border: 2px solid red; */
}
.services_box .num {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 20px;
	font-weight: 700;
}
.service_box_content {
	height: 100%;
	width: 100%;
	flex-direction: column;
	justify-content: space-evenly;
}
.box_content_descrip {
	flex-direction: column;
}
.services_box:hover {
	box-shadow: 5px 5px 10px var(--form);
	box-shadow: 5px 5px 10px var(--green);
	transition: 0.5s;
}

/* Home Project Section Styling  */
.home_projects {
	/* padding: 40px; */
	min-height: 100vh;
	width: 100%;
	flex-direction: column;
	background-color: var(--form);
	color: white;
	/* justify-content: space-evenly; */
	/* border: 2px solid black; */
}
.home_projects h1 {
	margin: 20px;
	font-size: 40px;
}
.home_projects button {
	padding: 10px;
	font-weight: 700;
	font-size: x-large;
	background-color: var(--green);
	color: white;
	cursor: pointer;
	margin: 20px;
}
.projects_gallery {
	gap: 10px;
	min-height: 80%;
	width: 100%;
	align-content: center;
	flex-wrap: wrap;
	/* border: 2px solid red; */
}
.projects_gallery .gallary_card {
	min-height: 260px;
	max-width: 100%;
	width: 400px;
	/* border: 2px solid brown; */
	gap: 10px;
}

.gallary_card_full img {
	height: 260px;
	width: 100%;
}
.gallary_card_half {
	flex-wrap: wrap;
	align-content: center;
}
.gallary_card_half img {
	max-width: 100%;
	height: 260px;
	width: 193px;
}

/* Our team styling Starts  */
.home_team {
	/* border: 2px solid black; */
	min-height: 100vh;
	flex-direction: column;
	width: 100%;
}
.home_team h1 {
	margin: 20px;
	font-weight: 700;
	font-size: 3rem;
}
.team_cards {
	max-width: 1000px;
	width: 100%;
	flex-wrap: wrap;
	gap: 20px;
}
.team_card_info {
	max-width: 300px;
	width: 100%;
	height: 500px;
	box-shadow: 5px 5px 20px var(--form);
	/* border: 2px solid black; */
}
.team_card_info img {
	width: 100%;
	height: 300px;
}
.card_info h2 {
	font-size: 2rem;
}
.card_info span {
	font-size: 1.2rem;
}
.card_info {
	height: 200px;
	width: 100%;
	/* border: 2px solid red; */
	flex-direction: column;
	justify-content: space-evenly;
}
.card_info_links div {
	/* height: 50px;
	width: 50px; */
	background-color: var(--form);
	margin: 10px;
}
.card_info_links i {
	padding: 15px;
	font-size: 1.5rem;
}
.home_team button {
	padding: 10px;
	font-weight: 700;
	font-size: x-large;
	background-color: var(--green);
	color: white;
	cursor: pointer;
	margin: 20px;
}

/* Backyard Styling  */
.home_backyard {
	position: relative;
	min-height: 650px;
	width: 100%;
}
.home_backyard img {
	position: absolute;
	height: 100%;
	width: 100%;
	background-size: cover;
	z-index: -1;
}
.backyard_content {
	position: absolute;
	z-index: 1;
	height: 100%;
	max-height: 650px;
	width: 100%;
	max-width: 650px;
	flex-direction: column;
	justify-content: space-evenly;
	color: white;
}
.backyard_header {
	color: var(--green);
}
.backyard_header_rectangle {
	margin-right: 0.5rem;
	height: 5px;
	width: 40px;
	border-radius: 20px;
	background-color: var(--green);
}
.backyard_header_description {
	font-size: 1.4rem;
	font-weight: 700;
}
.backyard_main {
	text-align: center;
	font-size: 60px;
	font-weight: 700;
}
.backyard_para {
	/* font-weight: 700; */
	font-size: 1.1rem;
	text-align: center;
	width: 90%;
}
.home_backyard button {
	padding: 10px;
	font-weight: 700;
	font-size: x-large;
	background-color: var(--green);
	color: white;
	cursor: pointer;
	margin: 20px;
	border: none;
}

/* people reaction styling  */
.people_reaction {
	width: 100%;
	min-height: 500px;
	flex-direction: column;
	justify-content: space-evenly;
}
.people_reaction_header {
	font-size: 2.4rem;
	font-weight: 700;
}
.people_reaction_description {
	/* border: 2px solid red; */
	min-height: 200px;
	width: 100%;
	flex-direction: column;
	justify-content: space-evenly;
}
.people_reaction_description_icon i {
	font-size: 2rem;
}
.people_reaction_description_content {
	/* border: 2px solid green; */
	justify-content: space-evenly;
	min-height: 100px;
	width: 100%;
}
.people_reaction_description_content i {
	font-size: 1.3rem;
}

.people_reaction_description_content p {
	width: 80%;
	font-size: 1.2rem;
	max-width: 800px;
	/* border: 2px solid red; */
	text-align: center;
}
.people_reaction_author {
	flex-wrap: wrap;
}
.people_reaction_author span {
	font-weight: 700;
}

/* design guide styling */
.home_design_guide {
	background-color: var(--form);
	color: white;
	padding-top: 20px;
	flex-direction: column;
	justify-content: space-evenly;
	/* border: 2px solid black; */
	min-height: 900px;
	width: 100%;
}
.home_design_guide_header {
	width: 100%;
	flex-direction: column;
}
.home_design_guide_header_main {
	font-weight: 700;
	font-size: 3rem;
	margin: 20px;
	text-align: center;
}
.home_design_guide_header_video_rectangle {
	margin-right: 0.5rem;
	height: 5px;
	width: 40px;
	border-radius: 20px;
	background-color: var(--green);
}
.home_design_guide_header_video_description {
	color: var(--green);
	font-weight: 700;
	font-size: 1.2rem;
}
.home_design_guide_main {
	/* flex-wrap: wrap; */
	flex-direction: column;
	/* border: 2px solid green; */
	max-width: 1000px;
	width: 100%;
	gap: 10px;
	/* min-height: 350px; */
}
.home_design_guide_main_upper {
	/* border: 2px solid red; */
	max-width: 1050px;
	width: 100%;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.home_design_guide_main_upper_content {
	max-width: 450px;
	max-height: 330px;
	height: 100%;
	flex-direction: column;
	text-align: center;
	justify-content: space-evenly;
	gap: 10px;
}
.home_design_guide_main_upper_image {
	max-width: 450px;
	/* width: 600px; */
	width: 100%;
	/* height: 300px; */
}
.home_design_guide_main_upper_image img {
	border: 2px solid white;
	width: 100%;
	height: 100%;
}

.home_design_guide_main_lower {
	/* border: 2px solid red; */
	max-width: 1050px;
	width: 100%;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.home_design_guide_main_lower_content {
	max-width: 450px;
	max-height: 330px;
	height: 100%;
	flex-direction: column;
	text-align: center;
	justify-content: space-evenly;
	gap: 10px;
}
.home_design_guide_main_lower_image {
	max-width: 450px;
	width: 100%;
	/* height: 330px; */
}
.home_design_guide_main_lower_image img {
	border: 2px solid white;
	width: 100%;
	height: 100%;
}
.home_design_guide button {
	padding: 10px;
	font-weight: 700;
	font-size: x-large;
	background-color: var(--green);
	color: white;
	cursor: pointer;
	border: none;
	margin: 20px;
}
/* footer styling  */
.footer {
	color: white;
	position: relative;
	background-color: var(--green);
	min-height: 400px;
	width: 100%;
}
.footer_content {
	width: 100%;
	height: 100%;
	flex-wrap: wrap;
	gap: 10px;
}
.footer_about {
	padding: 10px;
	/* border: 2px solid white; */
	max-height: 380px;
	/* width: 90%; */
	width: fit-content;
	height: 380px;
	max-width: 330px;
	flex-direction: column;
	justify-content: space-evenly;
}
.footer_about_main {
	height: fit-content;
}
.footer_about p {
	text-align: center;
	/* line-height: 10px; */
	width: 100%;
	font-size: 1.2rem;
	/* margin-bottom: 10px; */
}
.footer_about_links div {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	background-color: white;
	margin: 10px;
}

.footer_about_main .nav_logo {
	border-radius: 50%;
	background-color: white;
	color: var(--green);
}
.footer_about_main .nav_description {
	color: white;
	font-weight: 700;
}
.footer_link {
	/* border: 2px solid white; */
	height: 380px;
	width: 100%;
	max-width: 150px;
	flex-direction: column;
	justify-content: center;
}
.footer_links {
	justify-content: space-evenly;
	/* border: 2px solid white; */
	height: 60%;
	flex-direction: column;
	font-size: 1.2rem;
}
.footer_hours {
	justify-content: space-evenly;
	flex-direction: column;
	height: 380px;
	/* border: 2px solid white; */
	max-width: 250px;
	width: 100%;
}
.footer_hours p,
.footer_hours span {
	text-align: center;
	font-size: 1.2rem;
}
.footer_contact {
	flex-direction: column;
	justify-content: space-evenly;
	max-width: 270px;
	width: 100%;
	height: 380px;
	/* border: 2px solid white; */
}
.footer_contact p,
.footer_contact span {
	font-size: 1.2rem;
	text-align: center;
}
.footer_copyright {
	height: 20px;
	position: absolute;
	bottom: 0;
	width: 100%;
	color: white;
	background-color: var(--form);
}

/* Service page styling  */
.service_page {
	width: 1100px;
	max-width: 1100px;
	flex-direction: column;
}
/* Blogs page styling  */
.blog_page {
	width: 1100px;
	max-width: 1100px;
	flex-direction: column;
}
.blog_page_main {
	/* border: 2px solid black; */
	max-width: 1000px;
	width: 100%;
	min-height: 1200px;
	flex-wrap: wrap;
	gap: 20px;
	margin: 20px;
}
.blog_page_card {
	/* border: 2px solid red; */
	padding: 10px;
	max-width: 310px;
	width: 100%;
	min-height: 410px;
}
.blog_page_card_image {
	height: 200px;
	width: 100%;
}
.blog_page_card_image img {
	width: 100%;
	height: 100%;
}
.blog_page_card_details {
	min-height: 200px;
	flex-direction: column;
	justify-content: space-evenly;
	/* border: 2px solid red; */
}
.blog_page_card_details h2 {
	text-align: center;
	font: 700;
	font-size: 28px;
	width: 100%;
}
.blog_page_card_details p {
	text-align: center;
	font-size: 16px;
}
.blog_page_card_icon {
	color: var(--green);
	width: 80%;
	font-weight: 900;
	font-size: 24px;
	justify-content: space-evenly;
	cursor: pointer;
}
/* About.html styling  */
.about_page {
	width: 1100px;
	max-width: 1100px;
	flex-direction: column;
}

.about_hero_section {
	width: 100%;
	/* height: 600px; */
	max-height: 300px;
	height: 100%;
	height: 300px;
	position: relative;
}
.about_hero_section img {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.about_hero_section .about_hero_description {
	z-index: 1;
	height: 100%;
	width: 100%;
	z-index: 1;
	color: white;
	font-size: 2rem;
	text-align: center;
}

.about_request_replacement {
	width: 100%;
	max-width: 500px;
	height: 600px;
	min-height: 500px;
}
.about_request_replacement img {
	height: 100%;
	width: 100%;
}

/* Blog detail page styling  */
.blog_detail_page {
	width: 1100px;
	max-width: 1100px;
	flex-direction: column;
}
.blog_detail_main {
	flex-direction: column;
	justify-content: space-evenly;
	padding: 10px;
	width: 100%;
	max-width: 1000px;
	min-height: 1000px;
	/* border: 2px solid red; */
}
.blog_detail_main_image {
	width: 100%;
	height: 350px;
	max-height: 350px;
	margin: 40px 0;
}
.blog_detail_main_image img {
	height: 100%;
	width: 100%;
}
.blog_detail_main_content {
	margin-bottom: 20px;
}
.blog_detail_main_content h1 {
	text-align: center;
	margin-bottom: 10px;
	font-weight: 900;
}
.blog_detail_main_content_para p {
	margin-bottom: 10px;
}
.blog_detail_main_form {
	max-width: 800px;
	width: 100%;
	padding: 10px;
	/* border: 2px solid red; */
}
.blog_detail_main_form h1 {
	text-align: center;
	margin: 10px 0;
}
.blog_detail_main_form form {
	/* border: 2px solid green; */
	flex-direction: column;
	max-width: 850px;
	width: 100%;
}
.blog_detail_main_form_content {
	width: 100%;
	flex-wrap: wrap;
	margin: 10px 0;
	gap: 10px;
}
.blog_detail_main_form_content input {
	height: 40px;
	text-align: center;
	max-width: 360px;
	width: 100%;
	font-size: 20px;
}
.blog_detail_main_form_content textarea {
	max-width: 730px;
	width: 100%;
	padding: 10px;
	font-size: 20px;
}
.blog_detail_main_form button {
	padding: 10px;
	font-weight: 700;
	font-size: x-large;
	background-color: var(--green);
	color: white;
	cursor: pointer;
}
/* Contact us page designing  */
.contact_us_page {
	width: 1100px;
	max-width: 1100px;
	flex-direction: column;
}
.contact_us_main {
	flex-direction: column;
	max-width: 1000px;
	width: 100%;
}
.contact_us_main_header {
	justify-content: space-evenly;
	text-align: center;
	/* border: 2px solid red; */
	flex-direction: column;
	max-width: 600px;
	font-size: 20px;
	width: 100%;
	min-height: 200px;
}
.contact_us_main_header span {
	color: var(--green);
}
.contact_details {
	/* margin: 10px 0; */
	gap: 10px;
	/* border: 2px solid red; */
	flex-wrap: wrap;
	width: 100%;
	min-height: 450px;
}
.contact_details_form {
	max-width: 600px;
	width: 100%;
	/* border: 2px solid green; */
}
.contact_details_form form {
	padding: 10px;
	min-height: 350px;
	flex-direction: column;
	justify-content: space-evenly;
}
.contact_us_form_details {
	gap: 10px;
	/* border: 2px solid black; */
	width: 100%;
	flex-wrap: wrap;
}
.contact_us_form_details input {
	padding: 10px;
	height: 30px;
	max-width: 250px;
	width: 100%;
}
.contact_us_form_message {
	width: 100%;
}
.contact_us_form_message textarea {
	padding: 10px;
	max-width: 510px;
	width: 100%;
}
.contact_details_form button {
	padding: 10px;
	font-weight: 700;
	font-size: x-large;
	background-color: var(--green);
	color: white;
	cursor: pointer;
	border: none;
	margin: 20px;
}

.contact_details_value {
	flex-direction: column;
	gap: 10px;
	padding: 10px;
	min-height: 350px;
	height: 100%;
	width: 100%;
	max-width: 300px;
}
.contact_details_box {
	color: white;
	background-color: var(--green);
	width: 100%;
	height: 100px;
	/* border: 2px solid red; */
	justify-content: space-evenly;
}
.contact_details_box_icon {
	font-size: 20px;
	height: 50px;
	width: 50px;
	background-color: white;
	border-radius: 50%;
}

.contact_details_location {
	margin: 10px 0;
	padding: 10px;
	width: 100%;
	max-width: 900px;
}
.contact_details_location img {
	/* height: 100%; */
	width: 100%;
}

/* pool page designing  */
.pools_page {
	width: 1100px;
	max-width: 1100px;
	flex-direction: column;
}
/* Custom designing  for navigation bar  */
.nav_bar_link_changer {
	z-index: 10;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100vh;
	min-height: 500px;
	/* border: 2px solid red; */
	max-width: 300px;
	width: 90%;
	color: white;
	background-color: var(--green);
}
.nav_bar_link_changer_icon {
	height: 100%;
	width: 100%;
	flex-direction: column;
	justify-content: space-evenly;
}
.cross {
	width: 70%;
	justify-content: flex-end;
}
.nav_bar_link_changer_icon i {
	font-size: x-large;
}
.nav_bar_link_changer_icon div a {
	color: white;
	font-size: x-large;
}

/* media queries  */
@media (max-width: 850px) {
	.blog_detail_main_form_content textarea,
	.blog_detail_main_form_content input,
	.contact_us_form_details input,
	.contact_us_form_message textarea {
		max-width: 400px;
	}

	.nav_bar_link {
		display: block;
		font-size: xx-large;
	}
	.home_nav_link {
		display: none;
	}
	.about_hero_description {
		font-size: 1rem;
	}
}
@media (max-width: 400px) {
	.backyard_main {
		font-size: 50px;
	}
	.backyard_para {
		font-size: 1rem;
	}
	.gallary_card {
		padding: 0 10px;
	}
	.projects_gallery .gallary_card {
		width: 100%;
	}
	.gallary_card_half img {
		width: 100%;
	}
}
@media (max-width: 300px) {
	.services_box {
		box-shadow: none;
		width: 100%;
	}
}
@media (max-width: 450px) {
	.categories_header {
		font-size: 16px;
	}
	.categories_main {
		font-size: 30px;
	}
	.categories_description {
		font-size: 16px;
		margin-bottom: 10px;
		text-align: center;
	}
	.home_benefits_requests {
		flex-direction: column;
	}
	.request {
		box-shadow: none;
	}
	.request_form input:hover {
		box-shadow: none;
	}
	.benefits_header {
		font-size: 16px;
	}
	.benefits_main {
		font-size: 30px;
	}
	.benefits_para1,
	.benefits_para2 {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.form_pool {
		margin-bottom: 10px;
	}
	.form_info input {
		width: 100%;
		margin-bottom: 10px;
	}
	.form_addr input {
		width: 100%;
		margin-bottom: 10px;
	}
}

@media (max-width: 550px) {
	.hero_heading2 {
		font-size: 60px;
		/* width: 100%; */
	}
	.hero_button {
		height: 60px;
	}
	.hero_button {
		height: 50px;
		width: 160px;
		font-size: 20px;
	}
}
@media (max-width: 350px) {
	.home_hero_section {
		height: 500px;
	}
	.hero_heading1 {
		font-size: 20px;
	}
	.hero_heading2 {
		width: 100%;
		font-size: 50px;
	}
}
