/* ========================================== */
/* === CSS Table of Contents ================ */
/* === 2023 © Guardian Sages ================ */ 
/* ========================================== */

/* ========================================== */
/* === 1. Top Header Section ================ */
/* === 2. Navigation Section ================ */
/* === 3. Website Pages Section ============= */
/* ===    a. Home Section =================== */
/* ===    b. About Section ================== */
/* ===    c. Services Section =============== */
/* ===    d. Gallery Section ================ */
/* ===    e. Areas We Service Section ======= */
/* ===    f. Testimonials Section =========== */
/* ===    g. Contact Section ================ */
/* ===    h. Sections On Every Page ========= */
/* === 4. Misc. Section ===================== */
/* ===    a. Referrals Owl Carousel ========= */
/* ===    b. Default Classes ================ */
/* ===    c. Gallery Function Section ======= */
/* ===    d. Reviews Function Section ======= */
/* === 5. Footer Section ==================== */
/* === 6. Lg. Laptop CSS Section ============ */
/* === 7. Sm. Laptop CSS Section ============ */
/* === 8. Tablet CSS Section ================ */
/* === 9. Mobile CSS Section ================ */
/* === 10. Sm. Mobile CSS Section =========== */
/* ========================================== */

@import url('https://fonts.googleapis.com/css?family=Staatliches');
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,700,900');

@font-face {
	font-family: 'font';
	src:url('../fonts/arvo.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'font2';
	src:url('../fonts/poppins.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'font3';
	src:url('../fonts/Monoton-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'feathericons';
	src:url('../fonts/feathericons/feathericons.eot?-8is7zf');
	src:url('../fonts/feathericons/feathericons.eot?#iefix-8is7zf') format('embedded-opentype'),
		url('../fonts/feathericons/feathericons.woff?-8is7zf') format('woff'),
		url('../fonts/feathericons/feathericons.ttf?-8is7zf') format('truetype'),
		url('../fonts/feathericons/feathericons.svg?-8is7zf#feathericons') format('svg');
}

.vertically-centered{
	display: flex;
	flex-direction: column;
	justify-content: center; 
}
.gutterless{
	--bs-gutter-x: 0;
}


.home-faqs {
	padding: 100px 0px 100px 0px;
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-repeat: repeat;
	}
	
.home-faqs img {
	border-radius: 15px;
}
	/* ============================
   DD Yard Care FAQ Styles
   Namespace: .ddfaq
   ============================ */

.ddfaq {
  --dd-bg: #ffffff;
  --dd-surface: #f7f7f8;
  --dd-text: #1f2937;
  --dd-muted: #6b7280;
  --dd-brand: #0ea5e9;     /* cyan-500 vibe */
  --dd-brand-strong: #0284c7;
  --dd-border: #e5e7eb;
  --dd-shadow: 0 6px 20px rgba(0,0,0,.06);
font-family: font2;
margin-top: 100px;
  background: var(--dd-bg);
  color: var(--dd-text);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 12px;
  border: 1px solid var(--dd-border);
  box-shadow: var(--dd-shadow);
}


@media (prefers-color-scheme: dark) {
  .ddfaq {
    --dd-bg: #0b0f14;
    --dd-surface: #0f1720;
    --dd-text: #e5eef7;
    --dd-muted: #a7b2bf;
    --dd-brand: #38bdf8;
    --dd-brand-strong: #0ea5e9;
    --dd-border: #1f2937;
    --dd-shadow: 0 8px 28px rgba(0,0,0,.35);
  }
}

.ddfaq__title {
  font-size: 40px;
  line-height: 1.2; color: #0E4F31; text-align: center;
  margin: 0 0 .75rem 0;
  letter-spacing: .2px;
  font-weight: 800;
}

.ddfaq__accordion {
  border-top: 1px solid var(--dd-border);
}

/* Each FAQ item */
.ddfaq__item {
  border-bottom: 1px solid var(--dd-border);
  background: transparent;
}

/* Trigger (button) */
.ddfaq__trigger {
  all: unset;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding: 1rem .25rem;
  gap: .75rem;
  font-size: clamp(1rem, 2.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
}

.ddfaq__trigger::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--dd-muted);
  border-bottom: 2px solid var(--dd-muted);
  transform: rotate(-45deg) translateY(-1px);
  transition: transform .25s ease;
}

.ddfaq__trigger[aria-expanded="true"]::after {
  transform: rotate(45deg) translateY(1px);
  border-color: var(--dd-brand);
}

/* Focus-visible ring */
.ddfaq__trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--dd-brand) 35%, transparent);
  border-radius: 8px;
}

/* Panel */
.ddfaq__panel {
  padding: 0 0 1rem 0;
  margin: 0 0 .25rem 0;
  background: var(--dd-surface);
  border-radius: 10px;
  border: 1px solid var(--dd-border);
}

.ddfaq__panel p {
  margin: .9rem 1rem .25rem 1rem;
  color: var(--dd-text);
}

.ddfaq__panel ul {
  margin: .25rem 1rem 1rem 1.25rem;
  padding-left: 1rem;
  display: grid;
  gap: .4rem;
}

.ddfaq__panel li {
  color: var(--dd-text);
}

.ddfaq__panel a {
  color: #118652; font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in oklab, var(--dd-brand) 45%, transparent);
  text-underline-offset: 2px;
}

.ddfaq__panel a:hover,
.ddfaq__panel a:focus-visible {
  color: #118652;
  text-decoration-thickness: 2px;
}

/* Reduce motion where requested */
@media (prefers-reduced-motion: reduce) {
  .ddfaq__trigger::after {
    transition: none;
  }
}

/* Print-friendly */
@media print {
  .ddfaq {
    box-shadow: none;
    border-color: #ddd;
  }
  .ddfaq__panel[hidden] {
    display: block !important;  /* expose all answers for print */
  }
}

/* Optional: subtle hover for triggers */
.ddfaq__trigger:hover {
  color: #118652;
}


/* Namespace: ddr- (DD Reviews) */
.ddr-reviews {
	padding: 100px;     background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/ddl-001.jpg);
    background-size: cover; background-attachment: fixed;
    background-repeat: repeat;
}
.ddr-reviews__title{font-size:45px;margin-bottom: 50px; font-weight:800; color: #fff; text-align: center; text-shadow: 2px 2px 1px #000;}
.ddr-rail{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
@media (max-width: 900px){.ddr-rail{grid-template-columns:1fr}}
.ddr-card{border:1px solid #e5e7eb;background:#fff;border-radius:12px;padding:1rem;box-shadow:0 6px 20px rgba(0,0,0,.06); margin: 15px 0px 15px 0px;}
.ddr-card__header{display:flex;align-items:center;gap:.75rem;margin-bottom:.5rem}
.ddr-card__avatar{width:40px;height:40px;border-radius:50%;display:grid;place-items:center;font-weight:700;background:#118652;color:#fff}
.ddr-card__author{display:block;font-weight:800}
.ddr-card__meta{display:block;color:#6b7280;font-size:.9rem}
.ddr-card__stars{letter-spacing:.15em;color:#f59e0b;margin:.25rem 0 .5rem}
.ddr-card__text{margin:.25rem 0 .5rem}
.ddr-card__link a{color:#118652;text-decoration:underline;text-underline-offset:2px}
.ddr-card__link a:hover{color:#0E4F31}
.ddr-controls{display:grid;place-items:center;margin-top:1rem}
.ddr-btn{appearance:none;border:1px solid #fff;background:#118652;color:#fff;border-radius:999px;padding:.6rem 1rem;font-weight:700}
.ddr-btn:hover{background:#0B492D;border-color:#000}
.visually-hidden{position:absolute!important;clip:rect(1px,1px,1px,1px);padding:0;border:0;height:1px;width:1px;overflow:hidden;white-space:nowrap}
@media (prefers-color-scheme: dark){
  .ddr-card{background:#0f1720;border-color:#1f2937;color:#e5eef7}
  .ddr-card__meta{color:#a7b2bf}
}



/* ======================================== */
/* === Top Header Section ================= */
/* ======================================== */
.top-header {
	position: fixed; width: 100%; z-index: 1; padding: 10px 0 10px 0; background: rgb(255,255,255);	z-index: 100; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease; border-right: 30px solid #000; border-top: 15px solid #000;
}
.top-header div[class*='col-']:first-child {
	display: flex; justify-content: flex-end; align-items: center;
}
.top-header div[class*='col-']:first-child a {
	padding: 0; font-size: 15px; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.top-header div[class*='col-']:first-child a:hover {
	background-color: transparent;
}
.top-header div[class*='col-']:nth-child(2) {
	display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(3) {
	display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(3) a {
	padding: 9px 15px 9px 15px; background: transparent; font-weight: 600; font-family: 'font2'; color: rgb(120,120,120); border-radius: 1.6rem; border: 1px double rgb(120,120,120);
}
.top-header div[class*='col-']:nth-child(3) a:hover {
	background: transparent;
}
.top-header div[class*='col-']:nth-child(4) {
	display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(4) a {
	padding: 9px 15px 9px 15px; background: transparent; font-weight: 600; font-family: 'font2'; color: rgb(120,120,120); border-radius: 1.6rem; border: 1px double rgb(120,120,120);
}
.top-header div[class*='col-']:nth-child(4) a:hover {
	color: rgb(120,120,120);
}
.top-header div[class*='col-']:nth-child(5) {
	display: flex; justify-content: flex-start; align-items: center;
}
.top-header div[class*='col-']:nth-child(5) a {
	display: flex; justify-content: center; align-items: center; border: 1px solid rgb(255,255,255); color: rgb(255,255,255); background: #0a472c; border-radius:100px;	height: 34px; width: 34px; margin: 0 4px;
}
.top-header div[class*='col-']:nth-child(5) a:hover {
	background: #fff;	text-decoration:none !important; color: #0a472c; border: 1px solid #0a472c;
}
.top-header .dropdown-menu {
	background: whitesmoke; border-radius: 0;
}
.top-header .dropdown-menu a {
	color: #222; padding: 3px 20px !important;
}
.top-header .dropdown-toggle {
	background: #21212100; padding: 6px 25px; outline: none !important; border-color: #f3f3f3b5;
}
.top-header .dropdown-toggle:hover {
	background-color: white !important; color: #000 !important;
}
.btn-secondary:not([disabled]):not(.disabled).active, .btn-secondary:not([disabled]):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
	color: #000; background-color: rgb(255, 255, 255); border-color: #666e76; box-shadow:none !important;
}
.top-header .btn-secondary.focus,
.btn-secondary:focus {
	outline: none !important; box-shadow: none !important;
}

/* ======================================== */
/* === Navigvation Section ================ */
/* ======================================== */
.navbar-inverse .navbar-inner {
	display:none;
}






.navbar-sidebar {
	display: none; 
}

.navbar-sidebar.open {
    transform: translateX(0%);
}




.dropdown-menu {
	position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 200px; padding: .5rem 0; margin: .125rem 0 0; font-size: 18px; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(255,255,255); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-menu.columns-3 {
	min-width: 600px;
}
.dropdown-menu li a {
	padding: 5px 15px; font-weight: 300;
}
.dropdown-item {
	display: block; width: 100%; font-weight: 600; font-family: 'font2'; padding: .25rem 1.5rem; clear: both; color: rgb(12,12,12); text-align: inherit; white-space: nowrap; background: 0 0;border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255,255,255); text-decoration: none; background-color: rgb(22,22,22) !important;
}
.dropdown {
	float: left; position: relative;
}
.dropdown .dropbtn {
	font-size: 18px; border: none; outline: none; color: white; padding: 14px 16px; background-color: inherit;font-family: inherit; margin: 0;
	font-family: font2; font-weight: 600;
}
.navbar a:hover, .dropdown:hover .dropbtn {
	background-color: #118652;
}
.dropdown-one {
	cursor: pointer; display: none; position: absolute; background-color: #118652; min-width: 250px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); border: 2px solid #000; border-top: none; margin-left: -50px;
}
.dropdown-two {
	cursor: pointer; display: none; position: absolute; left: 160px; top: 0px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-three {
	cursor: pointer; display: none; position: absolute; left: 160px; top: 48px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown:hover .dropdown-one, #link1:hover > .dropdown-two {
	display: block;
}
.dropdown:hover .dropdown-one, #link2:hover > .dropdown-three {
	display: block;
}
.dropdown-one .dItem {
	color: #fff; padding: 12px 16px; display: block; text-align: center; font-family: font2;
}
.dropdown-one .dItem:hover, .dropdown-two a:hover {
	background-color: #fff; color: #118652;
}
/* Wider, controlled dropdown for long menus */

.dropdown-one--wide {
	width: min(720px, 92vw);
	min-width: 620px;
	max-height: calc(100vh - 150px);
	overflow-y: auto;
	overflow-x: hidden;
	padding: 14px 18px 18px;
	margin-left: -180px;
}

.dropdown-one--wide .row {
	display: grid;
	grid-template-columns: repeat(2, minmax(240px, 1fr));
	gap: 0 18px;
	margin: 0;
}

.dropdown-one--wide .col-lg {
	width: 100%;
	max-width: none;
	padding: 0;
	flex: none;
}

.dropdown-one--wide .dItem {
	text-align: left;
	padding: 10px 14px;
	border-radius: 4px;
	line-height: 1.25;
	white-space: normal;
}

.dropdown-one--wide hr {
	margin: 10px 0 14px;
	border-color: rgba(255,255,255,.45);
}

.dropdown-one--wide::-webkit-scrollbar {
	width: 8px;
}

.dropdown-one--wide::-webkit-scrollbar-track {
	background: rgba(0,0,0,.15);
}

.dropdown-one--wide::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,.55);
	border-radius: 999px;
}

@media (max-width: 1199px) {
	.dropdown-one--wide {
		width: min(620px, 94vw);
		min-width: 540px;
		margin-left: -140px;
	}

	.dropdown-one--wide .row {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
	}
}

@media (max-width: 991px) {
	.dropdown-one--wide {
		position: static;
		width: 100%;
		min-width: 0;
		max-height: none;
		overflow: visible;
		margin-left: 0;
	}

	.dropdown-one--wide .row {
		grid-template-columns: 1fr;
	}
}


.my-pad {
	padding: 0 0 0 15px;
}
.my-pad h5 {
	color: rgb(255,255,255); font-size: 18px; text-transform: uppercase; padding-top: 20px;	line-height: 5px; font-weight: 600;
}
.multi-column-dropdown {
	list-style: none; margin: 0px; padding: 0px;
}
ul.multi-column-dropdown {
	padding: 0 0 0;
}
.multi-column-dropdown li a {
	display: block;	clear: both; line-height: 1.428571429; color: #333; white-space: normal;
}
.multi-column-dropdown li a:hover {
	text-decoration: none; color: #262626; background-color: #999;
}
.tab {
	overflow: hidden; border: 1px solid #ccc; background-color: #f1f1f1; font-family: 'font2';
}
.tab button {
	background-color: inherit; float: left; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px;
}
.tab button:hover {
	background-color: #ddd;
}
.tab button.active {
	background-color: #ccc;
}
.tabcontent {
	display: none; padding: 6px 12px; border: 1px solid #ccc; border-top: none;
}
.tabcontent h3 {
	padding-top: 40px; padding-bottom: 40px; font-family: 'font'; text-align: center; font-size: 2rem; color: rgb(246,177,24);
}
.top-header-animate {
	background: rgb(255,255,255);
}
.top-header-animate .dropdown-toggle {
	color:#0a0a0a; font-size: 16px;
}
.top-header-animate .navbar-brand {
	font-size: 1.5em;
}
body {
	padding: 0; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out; overflow-x: hidden; border-left: 15px solid #000; border-right: 15px solid #000;
}
.navbar-scroll {
	padding: 145px 0 0; position: fixed; background: #118652; width: 100%; z-index: 99;	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease; border-bottom: 2px solid #000; border-right: 30px solid #000;
}
.navbar-scroll .container {
	background: rgb(60,36,17,0); border-bottom-left-radius: 1.5rem;	border-bottom-right-radius: 1.5rem;
}
#projects .navbar-scroll {
	background: #fdfdfd; position:relative !important;
}
#projects .navbar-scroll li a {
	color:#333;
}
#projects .navbar-scroll .navbar-brand {
	color:#252525;
}
#projects .navbar-light .lnr {
	color:#222;
}
.navbar-light .lnr {
	color: #fdfdfd;	font-size: 1.5em; position: absolute; top: 6px; right: 10px;
}
.navbar-light .navbar-brand {
	color: #e8e8e8; font-size: 20px; font-family: 'Montserrat', sans-serif;
}
.navbar-brand {
	font-size:2.5em; font-weight:700; text-transform:uppercase;
}
.navbar-brand:focus, .navbar-brand:hover {
	color:#f3f3f3 !important;
}
.navbar-light .navbar-nav .nav-link {
	margin: 0 28px; padding: 6px 0px; font-weight: 900; font-size: 18px; color: rgb(255,255,255); font-family: 'font2';
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav
.nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light
.navbar-nav .show>.nav-link {
	color: rgb(255,255,255);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: #B5B6B7;
}
.navbar-light .navbar-nav li a {
	position: relative;
}
.navbar-collapse {
	height: 100%;
}
.mobile-top-header {
	display: none !important;
}

/* ========================================== */
/* === Website Pages Section ================ */
/* ========================================== */

/**** Home Section ****/
.bg-primary {
	background: rgb(83,82,82) !important;
}
.home-header-section {
	padding-top: 125px;
}
.home-header-section .slider-logo span {
	font-family: 'font'; color: rgb(196,41,56);
}
.video {
	overflow: hidden; position: relative; z-index: 2; display: block;
}
.video .pad {
	padding: 350px 0px 0px 300px; position: absolute;
}
.video .pad h5 {
	font-weight: 500; color: rgb(255,255,255); font-size: 50px; text-shadow: 0px 0px 5px #000; font-family: 'Arial'; text-align: left;
}
.video .pad p {
	margin-top: 0% !important; color: rgb(255,255,255); text-shadow: 0px 0px 5px #000; font-size: 25px; font-family: 'Arial'; text-align: left;
}
.video .pad a {
	font-size: 16px; color: rgb(255,255,255); font-family: 'Arial'; font-weight: 600; border: 1px solid rgb(12,32,63); padding: 15px 30px; border-radius: 1.6rem; background: rgb(12,32,63);
}
.video .pad a:hover {
	color: rgb(255,255,255); border: 1px solid rgb(255,255,255); background: transparent;
}
.home1 {
    padding: 175px 0 175px 75px;
        background: linear-gradient(0deg, #000000d9 25%, #000000d9 90%), url(/img/homepage/landscaping-4.jpg) top right no-repeat;
    background-size: cover;
    background-position: center;
}
.home1 .pad {
	padding-top: 85px;
}
.home1 h1 {
    font-family: 'font2';
    font-size: 65px;
    font-weight: 800;
    color: #fff;
	padding-bottom: 75px;
    margin-left: -50px;
}
.home1 h2 {
	font-family: 'font2'; font-size: 45px; text-align: center; font-weight: 800; color: #fff; letter-spacing: 3px;
}
.home1 h3 {
	font-family: 'font2'; font-size: 20px; text-align: left; font-weight: 500; color: #fff;
}
.home1 h4 {
	text-align: center; font-size: 20px; background: #fff9; text-transform: uppercase;
	color: #0b7043; padding: 15px 0px 15px 0px; border-radius: 25px; font-weight: 600; 
}
.home1 h6 {
	font-family: 'font2'; font-size: 30px; text-align: center; font-weight: 800; color: #fff; letter-spacing: 3px;
}
.home1 h5 {
	text-align: center; font-size: 20px; background: #118652ad; text-transform: uppercase;
	color: #fff; padding: 15px 0px 15px 0px; border-radius: 25px; font-weight: 600; 
}
.home1 i {
	font-size: 25px; margin-left: -20px; position: relative;
}
.home1 u {
	text-decoration: none; font-size: 20px;
}
.home1 p {
	font-size: 17px; font-family: 'font2'; font-weight: 600; text-align: center; color: #f5f5f5;
}
.home1 h2 strong {
	font-size: 35px;
}
.home1 h2 span {
    display: inline-block;
    animation: rotateD 2s ease-out forwards;
    color: #fff; /* Adjust color if needed */
}

@keyframes rotateD {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
    }
}
.home1 hr {
	background: #fff; opacity: 75%;
}
.home2 {
	padding: 100px 150px 150px 150px; background: #f5f5f5;
}
.home2 h2 {
    font-family: font2;
    font-size: 50px;
    text-align: center;
    color: #118652;
	padding-bottom: 100px;
}

.home2 i:first-of-type {
    position: relative;
    transform: rotate(270deg); /* Rotate the left icon to face the opposite direction */
}

.home2 i:last-of-type {
    position: relative;
    transform: rotate(90deg); /* Ensure the right icon faces its default direction */
}
.home2 h3 {
	font-family: font2; font-weight: 600; font-size: 25px; text-align: center; color: #fff; margin-top: 50px; margin-bottom: -25px;
	text-shadow: 1px 1px 1px #000;
}
.home2 p {
	font-size: 15px;
    font-family: 'font2';
    font-weight: 600;
    text-align: center;
    line-height: 30px;
    padding-top: 35px;
    color: transparent;
    margin: 0px 10px 0px 10px;
}
.home2 mark {
	padding: 15px; background: transparent; color: transparent; font-weight: 600; border-radius: 15px;
}
.home2 .card1 {
	width: 375px; height: 375px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/lawn-care.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/services/mowing-4.jpg) no-repeat;
	
	padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card1:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/lawn-care.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card1:hover p {
	color: #fff;
}
.home2 .card1:hover mark {
	background: #fff; color: #118652;
}
.home2 .card2 {
	width: 375px; height: 375px; background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/fertilization.jpg) no-repeat; padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card2:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/fertilization.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card2:hover p {
	color: #fff;
}
.home2 .card2:hover mark {
	background: #fff; color: #118652;
}
.home2 .card3 {
	width: 375px; height: 375px; background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/weed-control.jpg) no-repeat; padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card3:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/weed-control.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card3:hover p {
	color: #fff;
}
.home2 .card3:hover mark {
	background: #fff; color: #118652;
}
.home2 .card4 {
	width: 375px; height: 375px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/aeration.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/aeration-grass.jpg) no-repeat;
	padding-top: 40px;
    background-size: cover;
    /*background-position: center;*/
    background-position: 100% -10%;
	
	
	border-radius: 100%;
}
.home2 .card4:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/aeration.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card4:hover p {
	color: #fff;
}
.home2 .card4:hover mark {
	background: #fff; color: #118652;
}
.home2 .card5 {
	width: 375px; height: 375px; background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/yard-cleanup.jpg) no-repeat; padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card5:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/yard-cleanup.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card5:hover p {
	color: #fff;
}
.home2 .card5:hover mark {
	background: #fff; color: #118652;
}
.home2 .card6 {
	width: 375px; height: 375px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/decorative-rock.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/dec-rock-card.jpg) no-repeat;
	padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card6:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/decorative-rock.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card6:hover p {
	color: #fff;
}
.home2 .card6:hover mark {
	background: #fff; color: #118652;
}
.home2 .card7 {
	width: 375px; height: 375px; background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/rock-wall.jpg) no-repeat; padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card7:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/rock-wall.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card7:hover p {
	color: #fff;
}
.home2 .card7:hover mark {
	background: #fff; color: #118652;
}
.home2 .card8 {
	width: 375px; height: 375px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/tree-trimming.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/tree-bush-trimming.jpg) no-repeat;
	padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card8:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/tree-trimming.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card8:hover p {
	color: #fff;
}
.home2 .card8:hover mark {
	background: #fff; color: #118652;
}
.home3 {
	background: #e4f5c5;
}
.home3 .container-fluid {
	padding: 0px;
}
.home3 h2 {
	font-family: font2; font-weight: 600; text-align: center; color: #0D5937;
}
.home3 p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center;
}
.home3 .sign {
	padding: 100px 25px 100px 50px;
}
.home3 .dd {
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/landscaping-5.jpg) top right no-repeat;
    background-size: cover; height: 100%;
    background-position: center;
}
.home4 {
	padding: 100px 0px 135px 0px;
	
}
.home4 .tree {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/tree.png) top right no-repeat;
    background-size: cover; height: 115%;
    background-position: center;
}
.home4 .reason1 {
	position: relative;margin-left: -100px;
    margin-right: 100px;
}
.home4 .reason1 hr {
	margin-left: -100px; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason2 {
	position: relative;margin-left: -75px;
    margin-right: 75px;
}
.home4 .reason2 hr {
	margin-left: -75px; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason3 {
	position: relative;margin-left: -50px;
    margin-right: 50px;
}
.home4 .reason3 hr {
	margin-left: -63px; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason4 {
	position: relative;margin-left: -75px;
    margin-right: 75px;
}
.home4 .reason4 hr {
	margin-left: -75px; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason5 {
	position: relative;margin-left: -100px;
    margin-right: 100px;
}
.home4 .reason5 hr {
	margin-left: -100px; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 h2 {
	font-family: font2; font-size: 45px; font-weight: 600; color: #118652; text-shadow: 0px 0px 1px #118652; text-align: center;
}
.home4 h3 {
	font-family: font2; font-weight: 600; font-size: 20px;
}
.home4 h3 span {
	color: #0D5937; text-decoration: underline; letter-spacing: 1px; font-size: 22px;
}
.home4 p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.home4 mark {
	padding: 25px; background: #118652; color: #fff; font-size: 20px; border-radius: 15px;
}
.home5 {
	padding: 100px 375px 100px 375px;
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%; background-repeat: repeat;
	
}
.home5 h2 {
	font-family: font2; font-size: 45px; font-weight: 600; 
}
.home5 span {
	 color: #118652;
}
.home5 h3 {
	font-family: font2; font-size: 25px;    
}
.home5 p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.home5 mark {
	padding: 25px;
    border-radius: 15px;
    font-size: 20px;
    font-family: font2;
    letter-spacing: 2px;
    color: #fff;
    background: #2d3a2f;
}
.home5 .option1 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%; background: #f4e2b5;
}
.home5 .option2 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%;background: #f4e2b5;
}
.home5 .option3 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%;background: #f4e2b5;
}
.home5 .option4 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%;background: #f4e2b5;
}
.home5 .option5 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%;background: #f4e2b5;
}
.home5 .option6 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%;background: #f4e2b5;
}
.home-sprinkler-systems {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/ss-4.jpg);
	background-position: center center;
	background-attachment: fixed; padding-right: 25px;
    background-size: cover;
}
.home-sprinkler-systems .container-fluid {
	padding: 0px;
}
.home-sprinkler-systems .sq1 {
	background: #0000008a; padding: 200px 20px 200px 20px; height: 100%; border-top-right-radius: 100px; border-bottom-right-radius: 100px; color: #fff;
}
.home-sprinkler-systems .sq2 {
	padding: 35px 15px 35px 15px; background: #0000008a; border-radius: 25px; margin-top: 350px;
}
.home-sprinkler-systems h3 {
	font-family: font2; font-size: 45px; font-weight: 600; line-height: 75px; text-align: center;
}
.home-sprinkler-systems h4 {
	font-family: font2; text-align: center; font-weight: 600; font-size: 20px; color: #fff;
}
.home-sprinkler-systems p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center;
}
.home-sprinkler-systems mark {
	padding: 25px; background: #22B14C; text-align: center; font-size: 20px; border-radius: 25px; color: #fff;
	box-shadow: 1px 1px 10px 1px #000;
}
.home-sprinkler-systems .sq2 img {
	max-width: 25%;
}
.home-split {
	padding: 50px 0px 100px 0px; background: #118652; text-align: center; color: #fff;
}
.home-split h3 {
font-family: font2; font-weight: 600; font-size: 35px;	
}
.home-split h4 {
font-family: font2; font-weight: 500; font-size: 20px;	
}
.home-split  img {
	max-width: 63%; border-radius: 100%;
}
.home-split .splitter {
	position: relative;
}
/*.home-split .splitter:hover {*/
/*	transform: rotateZ(360deg);  transition: 2s;*/
/*}*/

.home-split .splitter:hover {
  animation: shake 0.5s;
  animation-iteration-count: 1;
}

@keyframes shake {
  0% { transform: translate(1px, -2px) rotate(0deg); }

  50% { transform: translate(2px, -3px) rotate(10deg); }

  
  75% { transform: translate(1px, -2px) rotate(0deg); }
  
  100% { transform: translate(0px, 0px) rotate(0deg); }
}

/**** About Section ****/
.about-intro {
	padding: 130px 0px 100px 0px; 
}
.about-intro h1 {
	font-family: font2; font-size: 45px; font-weight: 600;
}
.about-intro h2 {
	font-family: font2; font-size: 25px; font-weight: 600;
}
.about-intro h3 {
	font-family: font2; font-size: 20px; font-weight: 600; text-decoration: underline;
}
.about-intro h6 {
	font-family: font2; line-height: 25px;
}
.about-intro h6 span {
	font-size: 25px; font-weight: 600;
}
.about-intro p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.about-intro span {
	color: #118652;
}
.about-intro hr {
	background:  #118652; height: 2px;
}
.about-intro img {
	box-shadow: 1px 1px 10px 1px #000;
}

/**** Process Page ****/ 
.process {
	padding: 150px 25px;
		background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/services/ms-1.jpg);
	background-position: center center;
	background-attachment: fixed; color: #fff;
    background-size: cover;
}
.sprinkler-bg-steps{
		background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/services/garden-sprinkler-bg.jpg);
	background-attachment: fixed; color: #fff;
    background-size: cover;
}
.weed-bg-steps{
		background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/services/weed-control.jpg);
	background-attachment: fixed; color: #fff;
    background-size: cover;
}

.landscape-install-bg-steps{
		background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/services/landscape-install-bg.jpg);
	background-attachment: fixed; color: #fff;
    background-size: cover;
		background-position;50% 50%;
}

.process .process-card{
	
    max-height: 100%;
    height: 100%;
    color: #fff;
    margin: 0 0 0px;
    border-radius: 5px;
    padding: 7px;
    background: #1186526e;
    visibility: visible;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
	
}
.process .process-card *{
	
	color:white;
	
}
.process h1 {
    font-family: font2;
    font-size: 45px;
    font-weight: 600;
    text-align: center;
}
.process h2 {
	font-family: 'font';
	font-size: 25px;
	text-align: center;
	font-weight: 900;
	padding-bottom: 30px;
	color: rgb(110,110,110);
}
.process h3.card-title {
    font-family: font2;
	font-size: 1.3rem;;
	text-align: center;
	font-weight: 900;
	padding-bottom: 10px;
	color: white;

}
.process h5 {
	font-family: 'font';
	font-size: 25px;
	text-align: center;
	font-weight: 900;
	padding-bottom: 30px;
	color: rgb(110,110,110);
}
.process p {
	font-size: 19px;
	text-align: justify;
	font-family: font2;
	color: white;
}
.process a.process-cta{
    font-family: font2;
	font-size: 19px;
	display: inline-flex;
	background: #1186526e;
	color:white;
	padding:10px;
	margin-top:30px;

}
.process a.process-cta:hover{
	background:white;
	color:#000;

}
.process li {
	font-size: 19px;
	font-family: 'font';
	color: rgb(110,110,110);
}
.process strong {
	color: rgb(194,3,16);
	font-family: 'font';
}

/**** Services Section ****/
.main-services-intro {
	padding: 100px;
		background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/services/ms-1.jpg);
	background-position: center center;
	background-attachment: fixed; color: #fff;
    background-size: cover;
}

.main-services-intro .surrounder{
	border-radius: 20px;
	background:	rgba(0,0,0,0.75);
        background: #0000008a;
        padding: 200px 20px 200px 20px;
        height: 100%;
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        color: #fff;
}
.main-services-intro .link-list{
		box-shadow: 2px 2px 10px black;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 15px;
		text-align:center;
}
.main-services-intro .link-list a{
		color: black;
		font-weight: 700;
		background: black;
		padding: 15px;
		width: 100%;
		background: #118652;
        font-family: font2;
		text-transform: uppercase;
		font-size:1.35rem;
}


.main-services-intro .bawks1 {
	padding: 50px;
}
.main-services-intro .bawks2 {
 padding: 10px;
}
.main-services-intro .bawks2:hover {
	background: #0009; box-shadow: -1px 0px 0px 0px #118652;
}
.main-services-intro .bawks2:hover h2 {
	color: #118652; font-weight: 600;
}
.main-services-intro .bawks3 {
}
.main-services-intro .bawks4 {
}
.main-services-intro .bawks5 {
}
.main-services-intro .bawks6 {
}
.main-services-intro .bawks7 {
}
.main-services-intro .bawks8 {
}
.main-services-intro .bawks9 {
}
.main-services-intro .bawks10 {
}
.main-services-intro h1 {
	font-family: font2; font-size: 45px; font-weight: 600; text-align: center;
}
.main-services-intro h2 {
	padding: 15px 0px 15px 15px; border-radius: 15px; font-family: font2; font-size: 20px; letter-spacing: 2px;
}
.main-services-intro p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center;
}
.main-services-intro hr {
	background: #118652; height: 2px;
}
.main-services-intro img {
	height: 100px; width: 100px;border-radius: 100%;
}
.main-services-intro a {
	color: inherit;
}
.main-services-body {
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%; background-attachment: fixed;
    background-repeat: repeat;
}
.main-services-body .container-fluid {
	padding: 0px;
}
.main-services-body .row {
	    --bs-gutter-x: 0;
}
.main-services-body mark {
	padding: 25px; border-radius: 15px; background: #118652; font-family: font2; font-size: 20px; color: #fff;
}
.main-services-body .lawn-care {
}
.main-services-body .lawn-care .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .lawn-care .scene {
	/*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/yard-care-1.jpg);*/
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/mowing-4.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .lawn-care h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .lawn-care p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .lawn-care img {
	border-bottom: 25px solid #fff;
}
.main-services-body .fertilization {
}
.main-services-body .fertilization .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: 150px; margin-left: -150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .fertilization .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/fertilize-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .fertilization h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .fertilization p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .fertilization img {
	border-bottom: 25px solid #fff;
}
.main-services-body .aeration {
}
.main-services-body .aeration .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .aeration .scene {
	/*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/aerate-1.jpg);*/
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/aerate-service-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .aeration h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .aeration p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .aeration img {
	border-bottom: 25px solid #fff;
}
.main-services-body .weed-control {
}
.main-services-body .weed-control .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: 150px; margin-left: -150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .weed-control .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/design-install-service-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .weed-control h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .weed-control p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .weed-control img {
	border-bottom: 25px solid #fff;
}
.main-services-body .clean-up {
}
.main-services-body .clean-up .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .clean-up .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/clean-up-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .clean-up h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .clean-up p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .clean-up img {
	border-bottom: 25px solid #fff;
}
.main-services-body .decorative {
}
.main-services-body .decorative .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: 150px; margin-left: -150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .decorative .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/decorative-rock-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .decorative h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .decorative p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .decorative img {
	border-bottom: 25px solid #fff;
}
.main-services-body .boulders-rock-walls {
}
.main-services-body .boulders-rock-walls .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .boulders-rock-walls .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/rock-wall-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .boulders-rock-walls h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .boulders-rock-walls p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .boulders-rock-walls img {
	border-bottom: 25px solid #fff;
}
.main-services-body .trimming {
}
.main-services-body .trimming .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .trimming .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/bush-trimming-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .trimming h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .trimming p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .trimming img {
	border-bottom: 25px solid #fff;
}
.main-services-body .sprinkler-systems {
}
.main-services-body .sprinkler-systems .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: 150px; margin-left: -150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .sprinkler-systems .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/ss-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .sprinkler-systems h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .sprinkler-systems p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .sprinkler-systems img {
	border-bottom: 25px solid #fff;
}






/*Blog Page Start*/
.blog1 {
	padding: 215px 0 75px 0;
	background: rgb(255,255,255);
}
.blog1 h1 {
	text-align: center;
	font-weight: 600;
	font-family: 'font2';
	padding-bottom: 25px;
	color: rgb(70,110,145);
	font-size: 45px;
}
.blog1 h3 {
	font-family: 'font2';
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 0.04rem;
	text-align: center;
	padding-bottom: 10px;
	color: rgb(0,0,0);
}
.blog1 h2 {
	font-weight: 600;
	font-family: 'font2';
	font-size: 21px;
	color: rgb(30,30,30);
}
.blog1 h4 {
	font-weight: 600;
	font-family: 'font2';
	font-size: 21px;
	color: rgb(30,30,30);
}
.blog1 h3 {
	font-family: 'Arial';
	color: rgb(20,20,20);
	font-size: 15px;
	text-align:left; 
}
.blog1 h5 {
	font-family: 'font';
	color: rgb(20,20,20);
	font-size: 15px;
}
.blog1 hr {
	border: 0.15rem solid rgb(21,135,198);
  max-width: 110px;
  opacity: 1;
  color: rgb(21,135,198);
  margin: auto;
}
.blog1 img {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
.blog1 .img-fluid.box-image{
    width: 100%;
    height: 200px; /* Adjust the height as needed */
    object-fit: cover;
}
.blog1 .box {
	padding: 0px 0px 20px 0px;
	border-radius: 15px;
	background: rgb(255,255,255);
	box-shadow: 0 0 15px #00000029;
	/*height:680px;*/
	margin-bottom: 25px; 
}
.blog1 .pad {
	padding: 15px 10px 0px 10px;
}
.blog1 span {
	color: #118652;
}
.blog1 p {
	/*font-family: 'font';*/
	color: rgb(20,20,20);
	font-size: 1.15rem;
	font-family: 'font2';
}
.blog1 a {
	color: rgb(226,64,0);
	font-size: 15px;
	font-family: 'font2';
	font-weight: 600;
}
.blog1 a:hover {
	color: rgb(226,64,0,0.8);
}




.blog-top {
	background: #118652b5;
	padding: 180px 0 50px 0;
}
.blog-top .box {
	padding: 110px 45px 0px 50px;
}
.blog-top h1 {
	color: white;
	font-family: 'font2';
	letter-spacing: 0.04rem;
	font-weight: 600;
	font-size: 35px;
	text-align: center;
}
.blog-top h5 {
	color: rgb(255,255,255);
	font-family: 'font';
	text-align: left;
	font-size: 20px;
}
.blog-top p {
	color: rgb(255,255,255);
	font-family: 'font';
	font-size: 17px;
	text-align: left;
}
.blog-top a {
	color: rgb(255,255,255);
	padding: 10px 60px;
	text-transform: uppercase;
	letter-spacing: 0.04rem;
	font-weight: 600;
	font-size: 15px;
	font-family: 'font2';
	background: rgb(226,64,0);
	border-radius: 5px;
}
.blog-top a:hover {
	color: rgb(255,255,255);
	background: rgb(68,68,68);
}
.blog-top iframe {
	border: 15px solid rgb(255,255,255);
	border-radius: 10px;
}

.blog-top1 {
	background: rgb(21,135,198);
	padding: 60px 0 50px 0;
}
.blog-top1 .box {
	padding: 110px 45px 0px 50px;
}
.blog-top1 h1 {
	color: rgb(255,255,255);
	font-family: 'font2';
	letter-spacing: 0.04rem;
	font-weight: 600;
	font-size: 35px;
	text-align: left;
}
.blog-top1 h5 {
	color: rgb(255,255,255);
	font-family: 'font';
	text-align: left;
	font-size: 20px;
}
.blog-top1 p {
	color: rgb(255,255,255);
	font-family: 'font';
	font-size: 17px;
	text-align: left;
}
.blog-top1 a {
	color: rgb(255,255,255);
	padding: 10px 60px;
	text-transform: uppercase;
	letter-spacing: 0.04rem;
	font-weight: 600;
	font-size: 15px;
	font-family: 'font2';
	text-shadow: 1px 1px 1px #000;
/*	box-shadow: 1px 1px 2px 1px #000;*/
	background: rgb(68,68,68);
	border-radius: 5px;
}
.blog-top1 a:hover {
	color: rgb(255,255,255);
	
	background: rgb(226,64,0);
}
/*.blog-top1 span strong {
	 transform: rotate(90deg);
	 position: fixed;
}*/
.blog-top1 iframe {
	border: 15px solid rgb(255,255,255);
	border-radius: 10px;
}


.blog-template {
	background: rgb(255,255,255);
	padding: 75px 0 75px 0;
}
.blog-template i {
	color: rgb(7, 155, 196);
}
.blog-template a {
	font-family: 'font';
	color: rgb(7, 155, 196);
}
.blog-template h1 {
	color: rgb(20,20,20);
	text-align: left;
	font-weight: 600;
	font-family: 'font2';
	font-size: 35px;
}
.blog-template h2 {
	font-family: 'font2';
	color: rgb(20,20,20);
	font-size: 33px;
	font-weight:900;
}
.blog-template h3 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(21,135,198);
	font-size: 25px;
}
.blog-template h4 {
	color: rgb(20,20,20);
	text-align: left;
	font-weight: 400;
	font-family: 'font';
	font-size: 23px;
}
.blog-template h5 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(20,20,20);
	font-size: 25px;
}
.blog-template h6 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(0,0,0);
	font-size: 23px;
}
.blog-template p {
	color: rgb(20,20,20);
	font-size: 1.1rem;
	/*font-family: 'font2';*/
	font-family: 'Arial';
	font-weight: 500;
}
.blog-template li {
	color: rgb(20,20,20);
	font-size: 17px;
	font-family: 'font';
}
.blog-template span{

	font-weight: 900;
	text-shadow: 0 0 black;
	/*text-decoration: underline;*/
}
.blog-template span.transformer {

	font-weight: 900;
	text-shadow: 0 0 black;
	text-decoration: underline;
}
.blog-template li p span{
	color: black;
	font-size: 19px;
	font-family: 'font';
	text-decoration:underline;
	font-weight:300;
}
.blog-template a.contact-today {
	padding: 10px; background: rgb(226,64,0); border: 1px solid rgb(12,12,12); border-radius: 10px;
	font-size: 24px; font-family: font2; font-weight: 600; text-align: center; text-shadow: 2px 2px 1px rgb(0,0,0); text-transform: uppercase; color: rgb(255,255,255);
}
.blog-template a.services {
	padding: 10px; background: rgb(21,135,198); border: 1px solid rgb(12,12,12); border-radius: 10px;
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; text-shadow: 2px 2px 1px rgb(0,0,0); text-transform: uppercase; color: rgb(255,255,255);
}

.blog-template1 {
	background: rgb(255,255,255);
	padding: 75px 0 75px 0;
}
.blog-template1 i {
	color: rgb(7, 155, 196);
}
.blog-template1 a {
	font-family: 'font';
	color: rgb(7, 155, 196);
}
.blog-template1 h1 {
	color: rgb(20,20,20);
	text-align: left;
	font-weight: 600;
	font-family: 'font2';
	font-size: 35px;
}
.blog-template1 h2 {
	font-family: 'font';
	font-weight: 600;
	color: rgb(20,20,20);
	font-size: 33px;
}
.blog-template1 h3 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(21,135,198);
	font-size: 29px;
}
.blog-template1 h4 {
	color: rgb(20,20,20);
	text-align: left;
	font-weight: 600;
	font-family: 'font2';
	font-size: 35px;
}
.blog-template1 h5 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(21,135,198);
	font-size: 25px;
	padding: 7px;
}
.blog-template1 h6 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(0,0,0);
	font-size: 21px;
}
.blog-template11 p {
	color: rgb(20,20,20);
	font-size: 17px;
	font-family: 'font';
}
.blog-template li {
	color: rgb(20,20,20);
	font-size: 17px;
	font-family: 'Arial';
}
.blog-template .img-fluid.box-image{
	
	border-radius: 20px;<div id="scroll-progress-bar"></div>
 
	box-shadow: 1px 1px 10px 3px rgb(12,12,12);
}


.numbered{
	list-style-type: decimal;
}


/*.blog-template {
  position: relative;
  overflow: auto;
}

.blog-scroll-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background: rgb(226,64,0);
  z-index: 10;
}
*/

.page-scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background-color: rgb(81 77 63);
  z-index: 9999;
}

/*Blog Page End*/




/**** Design/Installation Section ****/
.design-installation-intro {
	padding: 100px;
		/*background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/services/ms-1.jpg);*/
			background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/decorative-rock-bark/bark/dec-rock-bark-001.jpg);
	background-position: center center;
	background-attachment: fixed; color: #fff;
    background-size: cover;
}

.design-installation-intro .surrounder{
	border-radius: 20px;
	background:	rgba(0,0,0,0.75);
        background: #0000008a;
        padding: 200px 20px 200px 20px;
        height: 100%;
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        color: #fff;
}
.design-installation-intro .link-list{
		box-shadow: 2px 2px 10px black;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 15px;
		text-align:center;
		background: black; 
}
.design-installation-intro .link-list a{
		color: black;
		font-weight: 700;
		background: black;
		padding: 15px;
		width: 100%;
		background: #118652;
        font-family: font2;
		text-transform: uppercase;
		font-size:1.35rem;
		transition: transform 0.5s, background-color 0.5s, color 0.5s;
		box-shadow: 2px 2px 15px black; 
}
.design-installation-intro .link-list a:hover{
		transform: scale(1.1);
		background-color: white;
		color: #118652;
		
}


.design-installation-intro .bawks1 {
	padding: 50px;
}
.design-installation-intro .bawks2 {
 padding: 10px;
}
.design-installation-intro .bawks2:hover {
	background: #0009; box-shadow: -1px 0px 0px 0px #118652;
}
.design-installation-intro .bawks2:hover h2 {
	color: #118652; font-weight: 600;
}

.design-installation-intro h1 {
	font-family: font2; font-size: 45px; font-weight: 600; text-align: center;
}
.design-installation-intro h2 {
	padding: 15px 0px 15px 15px; border-radius: 15px; font-family: font2; font-size: 20px; letter-spacing: 2px;
}
.design-installation-intro p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center;
}
.design-installation-intro hr {
	background: #118652; height: 2px;
}
.design-installation-intro img {
	height: 100px; width: 100px;border-radius: 100%;
}
.design-installation-intro a {
	color: inherit;
}
.design-installation-body {
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%; background-attachment: fixed;
    background-repeat: repeat;
    padding: 50px;
}
.design-installation-body .container-fluid {
	padding: 0px;
}
.design-installation-body .row {
	    --bs-gutter-x: 0;
}
.design-installation-body mark {
	padding: 25px; border-radius: 15px; background: #118652; font-family: font2; font-size: 20px; color: #fff;
}
.design-installation-body .design-process {
}
.design-installation-body .design-process .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.design-installation-body .design-process .scene {
	/*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/yard-care-1.jpg);*/
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/before-after/cooley/before/002.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
	border-radius: 50%;
	position: relative; 
}

.design-process .scene .floating-btn{
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	transition:  opacity 0.5s; ; 
	opacity: 0;
}

.floating-btn a{
	padding: 10px;
	background:  #118652;
	color: white;
	font-size:1.65rem;
	display: inline-flex;
	font-family: font2;
	border-radius: 15px;
	font-weight: 700;
	text-align:center;
	box-shadow:4px 4px 10px black; 
}
.design-process .scene:hover .floating-btn{
	opacity: 1;

	visibility: visible;

	
}



.design-installation-body .design-process h3 {
    font-family: font2;
    font-size: 35px;
    color: #118652;
    font-weight: 700;
}
.design-installation-body .design-process p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.design-installation-body .design-process img {
	border-bottom: 25px solid #fff;
}


.design-process .scene.why-our-company{
	
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/before-after/cooley/after/Cooley%201.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
    margin: 15px;
	
}

.middler{
	
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/decorative-rock-bark/bark/dec-rock-bark-003.jpg);
	background-position:fixed;
	background-size: cover;
	height:auto;
	text-align:center;
}
.middler .service-box{
    border-radius: 20px;
    background: rgba(0,0,0,0.75);
    background: #0000008a;
    padding: 100px 40px 100px 40px;
    height: 100%;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    color: #fff;
	
}

.middler h3{
	font-size: 3.3rem;
	text-align:center;
	font-family: font2;
	font-weight: 900;
}

.middler p{
	font-family: font2;
}
.middler i{
	font-size: 2rem;
}
.middler ul{
	list-style-type:none;
	padding:0;
}
.middler p span{
	font-weight: 700;
	font-size: 1.4rem;
	text-decoration: underline;
}

.middler .option{
	padding:15px; 
	background: transparent;
	transition: background 0.3s;
	border-radius: 20px; 
}
.middler .option:hover{
	background: #118652;
}

/**** Gallery Section ****/
.gallery-top{
    background: linear-gradient(0deg, #000000bd 25%, #00000080 90%), url(/img/homepage/ss-4.jpg);
    background-position: center center;
    background-attachment: fixed;
    /*padding-right: 25px;*/
    background-size: cover;
	padding:45px;
}
.gallery-top h1{
	font-size: 2.2rem; font-weight: 600; font-family: 'font2'; padding-bottom: 10px; text-align: center; color: rgb(256, 256, 256);

}
.gallery-top h2{
	font-size: 2.4rem; font-weight: 600; font-family: 'font2'; padding-bottom: 10px; text-align: center; color: rgb(256, 256, 256);

}
.gallery-top a{
	
	padding: 11px;
	background: black;
	color: white;
	border-radius: 20px;
	width: auto;
	margin: 0 auto;
	font-weight: 700;
}
.gallery-top a:hover{
	
	/*padding: 11px;*/
	background: #118652;
	color: black;
}
.gallery-top .row{
	
	justify-content: center; 
}

.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}
.gallery-page h2 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}
.subdivision{
	background: #118652;
	padding:45px;
}
.subdivision h2{
	font-size: 2.2rem; font-weight: 600; font-family: 'font2'; padding-bottom: 10px; text-align: center; color: white; 

}
/***** LAWN CARE NORTHERN UTAH START *****/

.lawn-care-northern-utah-intro {
	padding: 175px 0px 175px 0px;
	background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/lawn-care/lawn-care-01.jpg);
	background-position: center center; 
    background-size: cover;
}
.lawn-care-northern-utah-intro h1 {
	font-family: font2; font-size: 50px; font-weight: 600; letter-spacing: 3px;
}
.lawn-care-northern-utah-intro h1 span {
	font-size: 20px; font-weight: 500;
}
.lawn-care-northern-utah-intro h1 span u {
	font-size: 25px; font-weight: 600; letter-spacing: 3px;color: #23da89;
}
.lawn-care-northern-utah-intro h2 {
	font-family: font2; font-size: 25px; font-weight: 600; text-shadow: 1px 1px 1px #000; letter-spacing: 2px;
}
.lawn-care-northern-utah-intro h3 {
	font-size: 20px; padding: 15px; width: fit-content; border-radius: 15px;
	    background: #118652;font-family: font2; letter-spacing: 2px;
    color: #fff;
}
.lawn-care-northern-utah-intro h4 {
	font-size: 20px; padding: 15px; width: fit-content; border-radius: 15px;
	    background: #fff;font-family: font2; letter-spacing: 2px;
    color: #118652;
}
.lawn-care-northern-utah-intro  a {
	color: inherit;
}
.lawn-care-northern-utah-intro  a:hover {
	color: inherit;
}
.lawn-care-northern-utah-intro .cliq1 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/lawn-care/trimming-01.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq1:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}
.lawn-care-northern-utah-intro .cliq2 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/lawn-care/cleaning-upkeep-2.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq2:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}
.lawn-care-northern-utah-intro .cliq3 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/lawn-care/disposal-22.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq3:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}
.lawn-care-northern-utah-intro .cliq4 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/lawn-care/routine-maintenance-2.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq4:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}


.lawn-care-northern-utah-intro .cliq5 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/aeration/aeration-01.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq5:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}

.lawn-care-northern-utah-intro .cliq6 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/aeration/fertilization-02.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq6:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}


.lawn-care-northern-utah-intro .cliq7 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/aeration/weed-control-02.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq7:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}

.lawn-care-northern-utah-intro .direct {
	text-align: center; color: #fff;
}
.lawn-care-northern-utah-body {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}



.lawn-care-northern-utah-body .container-fluid {
	padding: 0px;
}
.lawn-care-northern-utah-body .trim-clip {
	transition: 2s;
}


.lawn-care-northern-utah-body .trim-clip:hover {
	background: #118652a3; 
}
.lawn-care-northern-utah-body .trim-clip:hover h3 {
	display: block; background: #ffffff54;
}
.lawn-care-northern-utah-body .trim-clip:hover .know {
	margin-left: 750px;  transform: rotateZ(360deg); 
}
.lawn-care-northern-utah-body .trim-clip .know {
	    background: #fff;
    padding: 115px 25px 25px 25px;
    height: 575px;
    width: 575px;
    border-radius: 100%;
    position: relative;
    margin-left: 175px;
    margin-right: -150px;
    margin-top: 75px;
    border-left: 3px solid #064127;
    border-top: 1px solid #064127;
    border-bottom: 1px solid #064127;
	
	transition: 3s;
}
.lawn-care-northern-utah-body .trim-clip .present {
	/*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/trimming-01.jpg);*/
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/lawn-trimming.jpg);
    background-size: cover; height: 100%; background-position: bottom left;
    background-repeat: repeat; background-attachment: fixed;height: 750px;
}
.lawn-care-northern-utah-body .trim-clip  .deets {
	    padding: 15px 45px 15px 30px;
    position: relative; color: #fff;
    top: -50%; display: none;transition: 3s; 
}
.lawn-care-northern-utah-body .trim-clip:hover .deets {
	display: block;    margin-bottom: -430px;
    top: -80%;
}
.lawn-care-northern-utah-body .trim-clip h2 {
	font-family: font2; font-size: 35px; text-align: center; color: #118652; font-weight: 600;
}
.lawn-care-northern-utah-body .trim-clip h3 {
    font-family: font2;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 25px;
	width: 100%;
	color: #118652;
    margin-left: 100px;
	 margin-right: -100px;
    display: none;
	position: relative;
	margin-top: 35px;
}
.lawn-care-northern-utah-body .trim-clip h3:hover {
	background: #fff; box-shadow: 0px 0px 0px 2px #118652; border-radius: 50px; transition: 2s;
}
.lawn-care-northern-utah-body .trim-clip h4 {
	font-family: font2; font-weight: 600;
}
.lawn-care-northern-utah-body .trim-clip h5 {
	font-family: font2; text-decoration: underline; font-weight: 600; letter-spacing: 1px; font-size: 17px;
}
.lawn-care-northern-utah-body .trim-clip li {
	font-family: font2; font-size: 15px;
}
.lawn-care-northern-utah-body .trim-clip p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; margin: 0px 25px 0px 25px;
}












.lawn-care-northern-utah-body .upkeep {
transition: 2s;
}
.lawn-care-northern-utah-body .upkeep:hover {
	background: #118652a3; 

}
.lawn-care-northern-utah-body .upkeep:hover h3 {
	display: block; background: #ffffff54;
}

.lawn-care-northern-utah-body .upkeep:hover .know {
	margin-left: -750px;  transform: rotateZ(-360deg);
}
.lawn-care-northern-utah-body .upkeep .know {
	background: #fff;
    padding: 115px 25px 25px 25px;
    height: 575px;
    width: 575px;
    border-radius: 100%;
    position: relative;
    margin-left: -325px;
    margin-right: 150px;
    margin-top: 75px;
    border-right: 3px solid #064127;
	border-top:  1px solid #064127;
	border-bottom:  1px solid #064127;
transition: 3s;
}
.lawn-care-northern-utah-body .upkeep .present {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/cleaning-upkeep.jpg);
    background-size: cover; height: 100%; background-position: center center;
    background-repeat: repeat; background-attachment: fixed;height: 750px;
}
.lawn-care-northern-utah-body .upkeep  .deets {
	    padding: 15px 45px 15px 30px;
    position: relative; color: #fff;
    top: -50%; display: none;
transition: 3s;	
}
.lawn-care-northern-utah-body .upkeep:hover .deets {
	display: block;     margin-bottom: -430px;
    top: -80%;
}
.lawn-care-northern-utah-body .upkeep h2 {
	font-family: font2; font-size: 35px; text-align: center; color: #118652; font-weight: 600;
}
.lawn-care-northern-utah-body .upkeep h3 {
    font-family: font2;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 25px;
	width: 100%;
	color: #118652;
    margin-left: -100px;
	 margin-right: 100px;
    display: none;
	position: relative;
	margin-top: 35px;
}
.lawn-care-northern-utah-body .upkeep h3:hover {
	background: #fff; box-shadow: 0px 0px 0px 2px #118652; border-radius: 50px; transition: 2s;
}
.lawn-care-northern-utah-body .upkeep h4 {
	font-family: font2; font-weight: 600;
}
.lawn-care-northern-utah-body .upkeep h5 {
	font-family: font2; text-decoration: underline; font-weight: 600; letter-spacing: 1px; font-size: 17px;
}
.lawn-care-northern-utah-body .upkeep li {
	font-family: font2; font-size: 15px;
}
.lawn-care-northern-utah-body .upkeep p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; margin: 0px 25px 0px 25px;
}








.lawn-care-northern-utah-body .disposal {
transition: 2s;
	
}
.lawn-care-northern-utah-body .disposal:hover {
	background: #11865261;
}
.lawn-care-northern-utah-body .disposal:hover h3 {
	display: block; background: #ffffff54; transition: 3s;
}
.lawn-care-northern-utah-body .disposal:hover .know {
	margin-left: 750px;  transform: rotateZ(360deg);
}
.lawn-care-northern-utah-body .disposal .know {
	    background: #fff;
    padding: 115px 25px 25px 25px;
    height: 575px;
    width: 575px;
    border-radius: 100%;
    position: relative;
    margin-left: 175px;
    margin-right: -150px;
    margin-top: 75px;
    border-left: 3px solid #064127;
    border-top: 1px solid #064127;
    border-bottom: 1px solid #064127;
}
.lawn-care-northern-utah-body .disposal .present {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/disposal-2.jpg);
    background-size: cover; height: 100%; background-position: center center;
    background-repeat: repeat; background-attachment: fixed; height: 750px;
}
.lawn-care-northern-utah-body .disposal  .deets {
	    padding: 15px 45px 15px 30px;
    position: relative; color: #fff;
    top: -50%; display: none;
	transition: 3s;
}
.lawn-care-northern-utah-body .disposal:hover .deets {
	display: block;     margin-bottom: -430px;
    top: -80%;
}
.lawn-care-northern-utah-body .disposal h2 {
	font-family: font2; font-size: 35px; text-align: center; color: #118652; font-weight: 600;
}
.lawn-care-northern-utah-body .disposal h3 {
    font-family: font2;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 25px;
	width: 100%;
	color: #118652;
    margin-left: 100px;
	 margin-right: -100px;
    display: none;
	position: relative;
	margin-top: 35px;
}
.lawn-care-northern-utah-body .disposal h3:hover {
	background: #fff; box-shadow: 0px 0px 0px 2px #118652; border-radius: 50px; transition: 2s;
}
.lawn-care-northern-utah-body .disposal h4 {
	font-family: font2; font-weight: 600;
}
.lawn-care-northern-utah-body .disposal h5 {
	font-family: font2; text-decoration: underline; font-weight: 600; letter-spacing: 1px; font-size: 17px;
}
.lawn-care-northern-utah-body .disposal li {
	font-family: font2; font-size: 15px;
}
.lawn-care-northern-utah-body .disposal p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; margin: 0px 25px 0px 25px;
}






.lawn-care-northern-utah-body .maintenance {
transition: 2s;
}
.lawn-care-northern-utah-body .maintenance:hover {
	background: #118652bf;
}
.lawn-care-northern-utah-body .maintenance:hover h3 {
	display: block; background: #ffffff54;
}
.lawn-care-northern-utah-body .maintenance:hover .know {
	margin-left: -750px;  transform: rotateZ(-360deg);
}
.lawn-care-northern-utah-body .maintenance .know {
	background: #fff;
    padding: 115px 25px 25px 25px;
    height: 575px;
    width: 575px;
    border-radius: 100%;
    position: relative;
    margin-left: -325px;
    margin-right: 150px;
    margin-top: 75px;
    border-right: 3px solid #064127;
	border-top:  1px solid #064127;
	border-bottom:  1px solid #064127;
	transition: 3s;
}
.lawn-care-northern-utah-body .maintenance .present {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/routine-maintenance.jpg);
    background-size: cover; height: 100%; background-position: center center;
    background-repeat: repeat; background-attachment: fixed; height: 750px;
}
.lawn-care-northern-utah-body .maintenance  .deets {
	    padding: 15px 45px 15px 30px;
    position: relative; color: #fff;
    top: -50%; display: none;
transition: 3s;
}
.lawn-care-northern-utah-body .maintenance:hover .deets {
	display: block;     margin-bottom: -430px;
    top: -80%;
}
.lawn-care-northern-utah-body .maintenance h2 {
	font-family: font2; font-size: 35px; text-align: center; color: #118652; font-weight: 600;
}
.lawn-care-northern-utah-body .maintenance h3 {
    font-family: font2;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 25px;
	width: 100%;
	color: #118652;
    margin-left: -100px;
	 margin-right: 100px;
    display: none;
	position: relative;
	margin-top: 35px;
}
.lawn-care-northern-utah-body .maintenance h3:hover {
	background: #fff; box-shadow: 0px 0px 0px 2px #118652; border-radius: 50px; transition: 2s;
}
.lawn-care-northern-utah-body .maintenance h4 {
	font-family: font2; font-weight: 600;
}
.lawn-care-northern-utah-body .maintenance h5 {
	font-family: font2; text-decoration: underline; font-weight: 600; letter-spacing: 1px; font-size: 17px;
}
.lawn-care-northern-utah-body .maintenance li {
	font-family: font2; font-size: 15px;
}
.lawn-care-northern-utah-body .maintenance p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; margin: 0px 25px 0px 25px;
}
/***** LAWN CARE NORTHERN UTAH END *****/


/***** SPRINKLER SYSTEMS START *****/

.sprinkler-systems-northern-utah-intro {
padding: 175px 0px 175px 0px;
	background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/ss-3.jpg);
	background-position: center center; 
    background-size: cover;
}
.sprinkler-systems-northern-utah-intro .bawks1 {
	background: #fff; padding: 30px 0px 30px 0px; border-radius: 100%;
}
.sprinkler-systems-northern-utah-intro h1 {
	font-family: font2; font-weight: 600; font-size: 40px; color: #fff; letter-spacing: 3px; text-align: center;
}
.sprinkler-systems-northern-utah-intro h2 {
	font-weight: 500; font-size: 25px; letter-spacing: 2px; text-align: center; color: #118652; font-family: font2;
}
.sprinkler-systems-northern-utah-intro p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; color: #fff;
}
.sprinkler-systems-northern-utah-intro hr {
	height: 2px; background: #118652;
}
.sprinkler-system-split {
	padding: 50px 150px 50px 150px; background: #118652; color: #fff;
}
.sprinkler-system-split h2 {
	font-family: font2; font-size: 35px; font-weight: 600; text-shadow: 1px 1px 1px #000; line-height: 65px;
}
.sprinkler-system-split h3 {
	font-family: font2; font-size: 25px; line-height: 50px;
}
.sprinkler-system-split h3 u {
 font-size: 40px; text-decoration: none;
}
.sprinkler-system-split h3 i {
	font-size: 20px;
}
.sprinkler-system-split p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.sprinkler-system-services {
	padding: 100px 0px 100px 0px; color: #fff;
}
.sprinkler-system-services h3 {
	font-family: font2; font-size: 30px; text-align: center;
}
.sprinkler-system-services h3 span {
	font-weight: 600; color: #118652;
}
.sprinkler-system-services p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center;
}
.sprinkler-system-services .service-card-1 {
	padding: 50px; background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/sss-7.jpg);
	background-position: center center; height: 100%;
    background-size: cover; background-repeat: no-repeat;
}
.sprinkler-system-services .service-card-2 {
	padding: 50px; background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/sss-1.jpg);
	background-position: center center;  height: 100%;
    background-size: cover; background-repeat: no-repeat;
}
.sprinkler-system-services .service-card-3 {
	padding: 50px; background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/sss-5.jpg);
	background-position: center center;  height: 100%;
    background-size: cover; background-repeat: no-repeat;
}
.sprinkler-system-services .service-card-4 {
	padding: 50px; background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/sss-6.jpg);
	background-position: center center;  height: 100%;
    background-size: cover; background-repeat: no-repeat;
}
.sprinkler-system-services .service-card-5 {
	padding: 50px; background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/sss-3.jpg);
	background-position: center center;  height: 100%;
    background-size: cover; background-repeat: no-repeat;
}

.sprinkler-system-services .service-card-general {
	padding: 50px; background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%);
	background-position: center center; height: 100%;
    background-size: cover; background-repeat: no-repeat;
}


.sprinkler-system-services .service-card-2 {
	padding: 50px;
}
.sprinkler-system-services .service-card-3 {
	padding: 50px;
}
.sprinkler-system-services .service-card-4 {
	padding: 50px;
}
.sprinkler-system-services .service-card-5 {
	padding: 50px;
}

.sprinkler-modal-overlay {
    display: none;
    position: fixed;
    z-index: 998;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.7);
}
.show-modal-overlay {
    display: block;
}

.modal-phase {
    display: none;
    position: fixed;
    z-index: 999;
    top: 50%;
    left: 50%;
    width: 80%;
    max-width: 1000px;
    transform: translate(-50%, -50%);
    background: white;
    box-shadow: 0 0 40px rgba(0,0,0,0.3);
    border-radius: 12px;
    overflow: hidden;
}
.show-modal-phase {
    display: flex;
}

.modal-content {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.modal-image {
    width: 50%;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.modal-text {
    padding: 30px;
    width: 50%;
}
.modal-text h3 {
    font-size: 28px;
    color: #118652;
    font-family: font2;
    margin-bottom: 20px;
}
.modal-text p {
    font-size: 16px;
    line-height: 1.6;
    font-family: font2;
}
.modal-text ul {
    padding-left: 20px;
    margin-top: 15px;
}
.modal-text li {
    font-size: 15px;
    line-height: 1.6;
    font-family: font2;
}


.sprinkler-system-design-install {
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.sprinkler-system-design-install .container-fluid {
	padding: 0px;
}
.sprinkler-system-design-install .row {
	    --bs-gutter-x: 0;
}
.sprinkler-system-design-install h2 {
	font-family: font2; font-weight: 600; font-size: 3.8rem;
	text-align: center; cursor: pointer;
}
.sprinkler-system-design-install h2 span {
	color: #118652;
}
.sprinkler-system-design-install h3 {
	font-family: font2; font-size: 18px; text-decoration: underline;color: #118652;
}
.sprinkler-system-design-install h4 {
	font-family: font2; font-size: 23px;
}
.sprinkler-system-design-install p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.sprinkler-system-design-install li {
	font-family: font2; font-size: 15px; line-height: 30px;
}
.sprinkler-system-design-install .phase1 {
	
}
.sprinkler-system-design-install .phase1 hr {
	width: 65%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase1 .info {
	padding: 50px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; 
    background-size: cover; height: 600px;

}
.sprinkler-system-design-install .phase1 .imagery {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-01.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-001.jpg);
    background-size: cover; height: 600px;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase2 {
	
}
.sprinkler-system-design-install .phase2 hr {
	width: 65%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase2 .info {
	padding: 50px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    background-size: cover; height: 600px;
	
}
.sprinkler-system-design-install .phase2 .imagery {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-002.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-002-measure.jpg);
    background-size: cover; height: 600px;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase3 {
	
}
.sprinkler-system-design-install .phase3 hr {
	width: 65%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase3 .info {
	padding: 50px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    background-size: cover; height: 600px;

}
.sprinkler-system-design-install .phase3 .imagery {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-003.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-003-updated.JPG);
	 background-position: bottom center;
    background-size: cover; height: 600px;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase4 {
	
}
.sprinkler-system-design-install .phase4 hr {
	width: 65%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase4 .info {
	padding: 50px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    background-size: cover; height: 600px;
	
}
.sprinkler-system-design-install .phase4 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-04.jpg);
    background-size: cover; height: 600px;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase5 {
	
}
.sprinkler-system-design-install .phase5 hr {
	width: 65%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase5 .info {
	padding: 50px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    background-size: cover; height: 600px;
	
}
.sprinkler-system-design-install .phase5 .imagery {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-05.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-005-adjust.jpg);
    background-size: cover; height: 600px;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase6 {
	
}
.sprinkler-system-design-install .phase6 hr {
	width: 65%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase6 .info {
	padding: 50px;
}
.sprinkler-system-design-install .phase6 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-06.jpg);
    background-size: cover; height: 100%;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase7 {
	
}
.sprinkler-system-design-install .phase7 hr {
	width: 65%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase7 .info {
	padding: 50px;
}
.sprinkler-system-design-install .phase7 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-07.jpeg);
    background-size: cover; height: 100%;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase8 {
	
}
.sprinkler-system-design-install .phase8 hr {
	width: 65%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase8 .info {
	padding: 50px;
}
.sprinkler-system-design-install .phase8 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-08.jpg);
    background-size: cover; height: 100%;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase9 {
	
}
.sprinkler-system-design-install .phase9 hr {
	width: 65%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase9 .info {
	padding: 50px;
}
.sprinkler-system-design-install .phase9 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-09.jpg);
    background-size: cover; height: 100%;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase10 {
	
}
.sprinkler-system-design-install .phase10 hr {
	width: 65%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase10 .info {
	padding: 50px;
}
.sprinkler-system-design-install .phase10 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-10.jpg);
    background-size: cover; height: 100%;
    background-repeat: no-repeat;
}
/***** SPRINKLER SYSTEMS END *****/

/***** AERATION START *****/

.aeration-fertilization-intro {
	 background: linear-gradient(0deg, #000000ba 25%, #000000ba 90%), url(/img/aeration/aeration-02.jpg);
    background-size: cover; height: 100%;padding: 100px 75px 300px 75px; 
    background-repeat: no-repeat; margin-top: 65px;
}
.aeration-fertilization-intro  .sq1 {
	background: #0009; padding: 50px 100px 150px 100px; border-top-right-radius: 150px; border-top-left-radius: 150px; border: 1px solid #118652
}
.aeration-fertilization-intro .box1 {  background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/aeration-01.jpeg);
    background-size: cover; background-position: center; border-bottom-left-radius: 50px;
    background-repeat: no-repeat; height: 250px; width: 100%; 
}
.aeration-fertilization-intro .box1:hover {
	background: linear-gradient(0deg, #000000f2 25%, #000000f2 90%), url(/img/aeration/aeration-01.jpeg);
    background-size: cover; background-position:
}
.aeration-fertilization-intro .box1:hover .subserv {
	display: block;
}
.aeration-fertilization-intro .box2 {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/fertilization-02.jpg);
    background-size: cover; height: 250px; width: 100%; background-position: center; border-left: 1px solid #118652; border-right: 1px solid #118652;
    background-repeat: no-repeat; 
}
.aeration-fertilization-intro .box2:hover {
	background: linear-gradient(0deg, #000000f2 25%, #000000f2 90%), url(/img/aeration/fertilization-01.jpg);
    background-size: cover; background-position:
}
.aeration-fertilization-intro .box2:hover .subserv {
	display: block;
}
.aeration-fertilization-intro .box3 {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/weed-control-02.jpg);
    background-size: cover;  height: 250px; width: 100%; background-position: center; border-bottom-right-radius: 50px;
    background-repeat: no-repeat; 
}
.aeration-fertilization-intro .box3:hover {
	background: linear-gradient(0deg, #000000f2 25%, #000000f2 90%), url(/img/aeration/weed-contro-02.jpg);
    background-size: cover; background-position:
}
.aeration-fertilization-intro .box3:hover .subserv {
	display: block;
}
.aeration-fertilization-intro .care {
	position: relative; 
}
.aeration-fertilization-intro .subserv {
	position: relative; left: 35%; display: none; color: #118652;
}
.aeration-fertilization-intro .container-fluid {
	padding: 0px;
}
.aeration-fertilization-intro .care .row {
	    --bs-gutter-x: 0;
}
.aeration-fertilization-intro h1 {
	font-family: font2; font-size: 40px; text-align: center; color: #118652; font-weight: 600; letter-spacing: 2px;
}
.aeration-fertilization-intro h2 {
	    padding: 30px;
    background: #000000f2;
    width: 100%;
	text-shadow: 1px 1px 1px #000;
	font-weight: 600;
    font-size: 20px;
	text-align: center;
    letter-spacing: 2px;
    font-family: font2;
    /*border-bottom-right-radius: 100px;
	border-bottom-left-radius: 100px;*/
    color: rgba(17, 134, 82, 1);

}
.aeration-fertilization-intro  p {
	font-size: 17px; text-align: center; color: #fff; font-family: font2; line-height: 35px; margin: 0px 75px 0px 75px;
}
.aeration-fertilization-intro hr {
    height: 3px;
    background: #118652;
    width: 25%;
    position: relative;
    left: 35%;
    margin: 25px 0px 25px 0px;
}
.aeration-split {
	padding: 50px 0px 50px 0px; background: #9c9ea1; color: #fff;
}
.aeration-split .spot1 {
	padding: 10px; text-align: center;
}
.aeration-split h2 {
	font-family: font2; font-weight: 600; text-align: center; font-size: 40px; letter-spacing: 3px;
}
.aeration-split h3 {
	font-size: 65px; text-align: center; font-family: font2;
}
.aeration-split h4 {
	font-family: font2; font-size: 20px; text-decoration: underline;
}
.aeration-split h5 {
	font-size: 15px;
}
.aeration-services {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.aeration-services .container-fluid {
	padding: 0px;
}
.aeration-services .rec1 {
	padding: 100px 25px 100px 50px;
}
.aeration-services .visual {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/aeration-01.jpeg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; 
}
.aeration-services h2 {
	font-family: font2; font-weight: 600; letter-spacing: 2px; font-size: 30px;
}
.aeration-services h3 {
	font-family: font2; font-size: 20px; text-decoration: underline; color: #118652;
}
.aeration-services p {
	font-family: font2; font-size: 17px; line-height: 30px;
}
.aeration-services p span {
	font-size: 15px; 
}
.aeration-services img {
	background: #118652a1;
    max-width: 200%;
    border-radius: 100%;
    padding: 15px;
}
.fertilization-services {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.fertilization-services .container-fluid {
	padding: 0px;
}
.fertilization-services .rec1 {
	padding: 100px 25px 100px 50px;
}
.fertilization-services .visual {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/fertilization-02.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; 
}
.fertilization-services h2 {
	font-family: font2; font-weight: 600; letter-spacing: 2px; font-size: 30px;
}
.fertilization-services h3 {
	font-family: font2; font-size: 20px; text-decoration: underline; color: #118652;
}
.fertilization-services p {
	font-family: font2; font-size: 17px; line-height: 30px;
}
.fertilization-services p span {
	font-size: 15px; 
}
.fertilization-services img {
	background: #118652a1;
    max-width: 200%;
    border-radius: 100%;
    padding: 15px;
}

.weed-control-services {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.weed-control-services .container-fluid {
	padding: 0px;
}
.weed-control-services .rec1 {
	padding: 100px 25px 100px 50px;
}
.weed-control-services .visual {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/weed-control-02.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; 
}
.weed-control-services h2 {
	font-family: font2; font-weight: 600; letter-spacing: 2px; font-size: 30px;
}
.weed-control-services h3 {
	font-family: font2; font-size: 20px; text-decoration: underline; color: #118652;
}
.weed-control-services p {
	font-family: font2; font-size: 17px; line-height: 30px;
}
.weed-control-services p span {
	font-size: 15px; 
}
.weed-control-services img {
	background: #118652a1;
    max-width: 200%;
    border-radius: 100%;
    padding: 15px;
}
/***** AERATION END *****/

/***** DECORATIVE END *****/
.decorative-intro {
	padding: 150px 100px 250px 100px;
	 background: linear-gradient(0deg, #000000c7 25%, #000000c7 90%), url(/img/rock-bark/bark-5.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; color: #fff;
}
.decorative-intro .rock {
	/*background: linear-gradient(180deg, #000000e3 35%, rgba(255,255,255,0) 35%), url(/img/rock-bark/rock-2.jpg);*/
	background: linear-gradient(180deg, #000000e3 35%, rgba(255,255,255,0) 35%), url(/img/rock-bark/pisgah-cropped.jpg);
	
	
	
    background-size: cover; background-position: top top; height: 325px; padding: 25px; width: 325px;
    background-repeat: no-repeat; margin: 10px 0px 10px 0px; border-radius: 100%;
}
.decorative-intro .bark {
	/*background: linear-gradient(180deg, #000000e3 35%, rgba(255,255,255,0) 35%), url(/img/rock-bark/bark-3.jpg);*/
	background: linear-gradient(180deg, #000000e3 35%, rgba(255,255,255,0) 35%), url(/img/rock-bark/dec-bark.jpg);
    background-size: cover;
	background-position: revert-layer;
	height: 325px; padding: 25px; width: 325px;
    background-repeat: no-repeat;  margin: 10px 0px 10px 0px; border-radius: 100%;
}
.decorative-intro h1 {
	font-family: font2; font-size: 45px; font-weight: 600; line-height: 75px; text-align: center;
}
.decorative-intro h2 {
	font-family: font2; font-size: 25px; text-align: center;
}
.decorative-intro h2 span {
	font-size: 50px; font-weight: 600; color: #118652;
}
.decorative-intro h3 {
	font-family: font2; text-align: center; font-size: 20px;
}
.decorative-intro p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; margin: 0px 75px 0px 75px;
}
.decorative-intro a {
	color: inherit;
}
.decorative-intro a:hover {
	color: inherit;
}
.decorative-rock {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.decorative-rock .container-fluid {
	padding: 0px;
}
.decorative-rock .row {
	    --bs-gutter-x: 0;
}
.decorative-rock .read {
	padding: 75px 25px 75px 75px;
}
.decorative-rock .see {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/rock-bark/rock-2.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/rock-bark/pisgah-cropped.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat;
}
.decorative-rock h2 {
	font-family: font2; font-weight: 600; font-size: 35px; letter-spacing: 1px;
}
.decorative-rock h2 span {
	color: #118652; font-size: 40px; text-transform: uppercase;
}
.decorative-rock h3 {
	font-family: font2; font-weight: 500; font-size: 20px; letter-spacing: 2px; text-decoration: underline; color: #118652; 
}
.decorative-rock p {
	font-family: font2; font-size: 17px; line-height: 35px; color: #000;
}
.decorative-rock li {
	font-family: font2; font-size: 15px; line-height: 30px; color: #000; margin-right: 150px;
}
.decorative-rock h5 {
    padding: 10px;
    text-align: center;
    font-size: 1.1rem;
    background: #118652ad;
    text-transform: uppercase;
    color: #fff;
    padding: 15px 5px 15px 5px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    width: max-content;
}
.decorative-bark {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.decorative-bark .container-fluid {
	padding: 0px;
}
.decorative-bark .row {
	    --bs-gutter-x: 0;
}
.decorative-bark .read {
	padding: 75px 25px 75px 75px;
}
.decorative-bark .see {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/rock-bark/bark-3.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/rock-bark/dec-bark.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat;
}
.decorative-bark h2 {
	font-family: font2; font-weight: 600; font-size: 35px; letter-spacing: 1px;
}
.decorative-bark h2 span {
	color: #118652; font-size: 40px; text-transform: uppercase;
}
.decorative-bark h3 {
	font-family: font2; font-weight: 500; font-size: 20px; letter-spacing: 2px; text-decoration: underline; color: #118652; 
}
.decorative-bark p {
	font-family: font2; font-size: 17px; line-height: 35px; color: #000;
}
.decorative-bark li {
	font-family: font2; font-size: 15px; line-height: 30px; color: #000; margin-right: 150px;
}
.decorative-bark h5 {
    padding: 10px;
    text-align: center;
    font-size: 1.1rem;
    background: #118652ad;
    text-transform: uppercase;
    color: #fff;
    padding: 15px 5px 15px 5px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    width: max-content;
}


/***** DECORATIVE END *****/
.seasonal-intro {
		padding: 150px 100px 150px 100px;
	 background: linear-gradient(0deg, #000000c7 25%, #000000c7 90%), url(/img/seasonal/season-3.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; color: #fff;
}
.seasonal-intro .spring {
	
}
.seasonal-intro .fall {
	
}
.seasonal-intro h1 {
	font-family: font2; font-size: 40px; text-align: center; letter-spacing: 2px; font-weight: 600;
}
.seasonal-intro h2 {
	font-family: font2; font-size: 25px; letter-spacing: 2px; font-weight:600; color: #118652; text-decoration: underline;
}
.seasonal-intro h3 {
	font-family: font2; font-size: 20px; letter-spacing: 2px; font-weight: 500;
}
.seasonal-intro p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; margin: 0px 100px 0px 100px;
}
.seasonal-intro img {
	height: 300px; width: 300px; border-radius: 100%;
}
.seasonal-intro a {
	color: inherit;
}
.seasonal-intro a:hover {
	color: inherit;
}
.seasonal-intro-cta {
  text-align: center;
  margin-top: 35px;
}

.seasonal-intro-cta a {
  display: inline-flex;
  padding: 13px 26px;
  background: #118652;
  color: #fff;
  font-family: font2;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  transition: .25s ease;
}

.seasonal-intro-cta a:hover {
  background: #fff;
  color: #118652;
  transform: translateY(-2px);
}

/* Separate seasonal process section */

.seasonal-process {
  position: relative;
  padding: 95px 20px;
  background:
    linear-gradient(0deg, rgba(255,255,255,.94), rgba(255,255,255,.94)),
    url(/img/homepage/pattern10.png);
  background-size: 45%;
  background-attachment: fixed;
  overflow: hidden;
}

.seasonal-process::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 240px;
  height: 240px;
  background: rgba(17,134,82,.12);
  border-radius: 100%;
}

.seasonal-process::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 300px;
  height: 300px;
  border: 28px solid rgba(17,134,82,.10);
  border-radius: 100%;
}

.seasonal-process .container {
  position: relative;
  z-index: 2;
}

.seasonal-process-head {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.seasonal-process-head span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  background: #118652;
  color: #fff;
  border-radius: 999px;
  font-family: font2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.seasonal-process-head h2 {
  margin-bottom: 18px;
  font-family: font2;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  color: #118652;
  text-transform: uppercase;
}

.seasonal-process-head p {
  margin: 0 auto;
  max-width: 780px;
  font-family: font2;
  font-size: 17px;
  line-height: 32px;
  color: #222;
  text-align: center;
}

.seasonal-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1450px;
  margin: 0 auto;
}

.seasonal-step-card {
  position: relative;
  padding: 34px 22px 28px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(17,134,82,.18);
  border-bottom: 6px solid #118652;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  text-align: center;
  transition: .25s ease;
}

.seasonal-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.seasonal-step-number {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #118652;
  color: #fff;
  border-radius: 100%;
  font-family: font2;
  font-weight: 800;
  font-size: 19px;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}

.seasonal-step-card .step {
  margin: 0 0 14px 0;
  font-family: font2;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 1px;
  font-weight: 700;
  color: #118652;
  text-align: center;
}

.seasonal-step-card p {
  margin: 0;
  font-family: font2;
  font-size: 14px;
  line-height: 27px;
  color: #222;
  text-align: center;
}

@media (max-width: 1199px) {
  .seasonal-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .seasonal-intro {
    padding: 115px 18px 90px;
  }

  .seasonal-intro p {
    margin-left: auto;
    margin-right: auto;
  }

  .seasonal-process {
    padding: 75px 16px;
  }

  .seasonal-process-head h2 {
    font-size: 28px;
  }

  .seasonal-steps-grid {
    grid-template-columns: 1fr;
  }
}
.seasonal-closing {
		padding: 150px 100px 250px 100px;
	 background: linear-gradient(0deg, #000000c7 25%, #000000c7 90%), url(/img/seasonal/season-3.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; color: #fff;
}
.seasonal-closing .spring {
	
}
.seasonal-closing .fall {
	
}
.seasonal-closing h1 {
	font-family: font2; font-size: 40px; text-align: center; letter-spacing: 2px; font-weight: 600;
}
.seasonal-closing h2 {
	font-family: font2; font-size: 25px; letter-spacing: 2px; font-weight:600; color: #118652; text-decoration: underline;
}
.seasonal-closing h3 {
	font-family: font2; font-size: 20px; letter-spacing: 2px; font-weight: 500;
}
.seasonal-closing p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; margin: 0px 100px 0px 100px;
}
.seasonal-closing img {
	height: 300px; width: 300px; border-radius: 100%;
}
.seasonal-closing a {
	color: inherit;
	padding: 10px;
	display:inline-flex;
	color: white;
	font-family: font2;
	font-weight: 600;
	
	background: #118652;
}
.seasonal-closing a:hover {
	color: inherit;
}
.seasonal-closing .closing-container {
	padding: 50px 20px;
	border-radius: 20px;
	background: black;
	border: 3px solid #118652;
	
}

.spring {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.spring .container-fluid {
	padding: 0px;
}
.spring .row {
	    --bs-gutter-x: 0;
}
.spring .read {
	padding: 75px 25px 75px 75px;
}

.spring .read mark {
    padding: 25px;
    background: #22B14C;
    text-align: center;
    font-size: 20px;
    border-radius: 25px;
    color: #fff;
    box-shadow: 1px 1px 10px 1px #000;
    display: inline-flex;
	
	transition: 0.4s;
}
.spring .read mark:hover {
    background: #fff;
    color: #22B14C;
}

.spring .see {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/seasonal/season-1.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat;
}
.spring .see-foliage {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/dead-foliage.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat;
}
.spring .see-landscape {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/landscape-prep.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat;
}
.spring .see-grass {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/seasonal/season-2.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/refreshing-grass.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat;
}
.spring h2 {
	font-family: font2; font-weight: 600; font-size: 35px; letter-spacing: 1px;
}
.spring h2 span {
	color: #118652; font-size: 40px; text-transform: uppercase;
}
.spring h3 {
	font-family: font2; font-weight: 500; font-size: 20px; letter-spacing: 2px; text-decoration: underline; color: #118652; 
}
.spring p {
	font-family: font2; font-size: 17px; line-height: 35px; color: #000;
}
.spring li {
	font-family: font2; font-size: 15px; line-height: 30px; color: #000; margin-right: 150px;
}

.fall {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.fall .container-fluid {
	padding: 0px;
}
.fall .row {
	    --bs-gutter-x: 0;
}
.fall .read {
	padding: 75px 25px 75px 75px;
}


.fall .read mark {
    padding: 25px;
    background: #22B14C;
    text-align: center;
    font-size: 20px;
    border-radius: 25px;
    color: #fff;
    box-shadow: 1px 1px 10px 1px #000;
    display: inline-flex;
    transition: 0.4s;
}
.fall .read mark:hover {
    background: #fff;
    color: #22B14C;
}


.fall .see {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/seasonal/season-2.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/seasonal/fall-cleanup-3.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat;
}
.fall .see-twigs {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/seasonal/season-2.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/dead-twigs.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat;
}

.fall .see-foliage {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/dead-foliage.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat;
}

.fall h2 {
	font-family: font2; font-weight: 600; font-size: 35px; letter-spacing: 1px;
}
.fall h2 span {
	color: #118652; font-size: 40px; text-transform: uppercase;
}
.fall h3 {
	font-family: font2; font-weight: 500; font-size: 20px; letter-spacing: 2px; text-decoration: underline; color: #118652; 
}
.fall p {
	font-family: font2; font-size: 17px; line-height: 35px; color: #000;
}
.fall li {
	font-family: font2; font-size: 15px; line-height: 30px; color: #000; margin-right: 150px;
}

.fall .fall-clean-01{background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/dd-fall-01.jpg);     background-size: cover;
    background-position: center;
    height: 500px;
    background-repeat: no-repeat;}
.fall .fall-clean-02{background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/dd-fall-02.jpg);     background-size: cover;
    background-position: center;
    height:500px;
    background-repeat: no-repeat;}
.fall .fall-clean-03{background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/dd-fall-03.jpg);     background-size: cover;
    background-position: center;
    height: 500px;
    background-repeat: no-repeat;}

/***** CLEAN-UP START *****/



/*Careers Page*/

.careers {
	padding: 130px 10px 130px 10px;
	 background: linear-gradient(0deg, #000000c7 25%, #000000c7 90%), url(/img/landscape-maintenance/fall-cleanup/fall-cleanup-004.jpeg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; color: #fff;
}

.careers h1 {
	font-family: font2; font-size: 2.3rem; font-weight: 600; line-height: 45px; text-align: center;
}

.careers h2 {
	font-family: font2; font-size: 2rem; text-align: center; text-decoration: underline;
}
.careers h2 span {
	font-size: 50px; font-weight: 600; color: #118652;
}
.careers h3 {
	font-family: font2; text-align: center; font-size: 2rem;
}
.careers p {
	font-family: font2; font-size: 1rem; line-height: 35px; text-align: center; margin: 0px 5px 0px 5px;
}
.careers p i{
	color: #118652;
	font-weight: 800;
	font-size: 1.2rem;
}
.careers a {
	color: inherit;
}
.careers a:hover {
	color: inherit;
}


.careers .requirements {
    background: #0000008a;
    padding: 25px;
}

.careers .requirements h2 {
	font-family: font2; font-size: 3rem; text-align: center; text-decoration: underline;
}

.careers .requirements ul {
	list-style-type: none;  
}
.careers .requirements li p {
	font-size: 1.3rem; 
}
/*Careers Page*/



/***** CLEAN-UP END *****/
/**** Areas We Service Section ****/
.area:nth-child(odd) {
	padding: 125px 0 125px 0; background: rgb(255,255,255);
}
.area:nth-child(even) {
	padding: 125px 0 125px 0; background: rgb(245,245,245);
}
.area h2 {
	font-size: 2.5rem; font-family: 'font2'; font-weight: 800; color: #118652;
}

.area h3 {
	font-family: font2; font-size: 20px;color: #0E492F; font-weight: 600; line-height: 40px;
}

.area a {
	font-size: 18px; color: #000; font-weight: 500;
}
.area a.service {
	background: #0E492F; color:white;
	padding: 5px;
	border-radius: 4px;
	width:max-content;
	
}
.area h4 {
	font-size: 1.5rem; font-family: 'font2'; color: #118652;
}
.area p {
	font-size: 17px; text-align: justify; color: rgb(12,12,12);
}
.area iframe {
	width: 100%; height: 450px; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px rgb(0,0,0);
}



.service-area-page{
	padding: 125px 0 125px 0; background: rgb(245,245,245);

}
.service-area-page h1 {
	font-size: 3rem; font-family: 'font2'; font-weight: 800; color: #118652;
}
.service-area-page h2 {
	font-size: 2.5rem; font-family: 'font2'; font-weight: 800; color: #118652;
}

.service-area-page h3 {
	font-family: font2; font-size: 20px;color: #0E492F; font-weight: 600; line-height: 40px;
}
.service-area-page iframe {
	width: 100%; height: 450px; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px rgb(0,0,0);
}

.service-area-page a {
	font-size: 18px; color: #000; font-weight: 500;
}
.service-area-page p {
	font-size: 17px; text-align: justify; color: rgb(12,12,12);
}



.service-provider{
    padding: 100px 10px;
    background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/services/ms-1.jpg);
    background-position: center center;
    background-attachment: fixed;
    color: #fff;
    background-size: cover;
}
.service-provider h2 {
	font-size: 2.5rem; font-family: 'font2'; font-weight: 800; color: #118652;
	text-align:center;
}

.service-provider h3 {
	font-family: font2; font-size: 2rem;font-weight: 800; color: white;/*line-height: 40px;*/
	text-align:center;

}

.service-provider .service-offer{
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; 
	padding: 25px;
	margin: 15px;
	background: rgba(17,134,82,0.78);
	height: 100%; 
	
}

.service-offer.liquid {
  position: relative;
  padding: 1rem 2rem;
  color: white;
  background: none;
  border: 2px solid #118652;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-offer.liquid {
  background: black linear-gradient(#118652 0 0) no-repeat calc(200% - var(--p, 0%)) 100% / 200% var(--p, 0.2em);
  transition: 0.3s var(--t, 0s), background-position 0.3s calc(0.3s - var(--t, 0s));
}

.service-offer.liquid:hover {
  --p: 100%;
  --t: 0.3s;
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0px 1px 5px black;
}


/**** Contact Section ****/


/**** Testimonials Section ****/
.testimonials {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}


/**** Sections On Every Page ****/
.contact-section {
	padding: 50px 0 50px 50px; background: #1186526e; color: #000;
}
.contact-section h2 {
	font-family: font2; font-size: 35px;
}
.contact-section h2 strong {
	font-family: font2; font-size: 45px; color: #118652;
}
.contact-section h1 {
	font-size: 2rem; font-family: font2; font-weight: 800; text-align: center; 
}
.contact-section h3 {
	font-size: 2rem; font-family: font2; font-weight: 800; text-align: center; 
}
.contact-section h4 {
	font-family: font2; font-size: 20px; line-height: 40px;
}
.contact-section a {
	color: inherit;
}


 





/*FAQ Page*/
.faq {
	padding: 120px 0 75px 0;
	background: white;
}
.faq h1 {
	font-size: 2.7rem;
	font-weight: 800;
	padding-bottom: 15px;
	color: #118652;
	text-align: center;
	
	
}
.faq h2 {
	font-size: 1.3rem;
	font-weight: 800;
	padding-bottom: 5px;
	color: black; 
	text-align: center;
}
.faq .box{
  width: auto;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.faq span{
  transition: 200ms;
  font-weight: 600;
  font-size: 1.1rem;
}
.faq .bg-dark {
  background-color: #118652!important;
}
.faq .bg-dark:hover {
  background-color:#118652!important;
}
.faq .content, .faq .content_2, .faq .content_3, .faq .content_4, .faq .content_5,
.faq .content_6, .faq .content_7, .faq .content_8, .faq .content_9, .faq .content_10, .faq .content_11, .faq .content_12 {
  overflow: hidden;
  max-height: 0px;
  transition: 300ms ease-in;
	background: rgb(255,255,255);
	border: 0px solid black !important;
}
.faq .header, .faq .header_2, .faq .header_3, .faq .header_4, .faq .header_5,
.faq .header_6, .faq .header_7, .faq .header_8, .faq .header_9, .faq .header_10, .faq .header_11, .faq .header_12 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize;
    margin: 20px 0 0;
	border-radius:10px; 
}
/*FAQ Page END*/	



/* ========================================== */
/* === Misc. Section ======================== */
/* ========================================== */

/****  Referrals Owl Carousel ****/
.owl-carousel .owl-stage-outer {
	padding: 0;
}
.owl-nav {
	position:absolute; width: 100%;	top:10%; display: none;
}
.owl-carousel .item {
	display:block; height:100%;
}
.owl-carousel .owl-item span {
	font-size: 20px; font-weight: 500;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
	position:absolute;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
	background:transparent !important; color:#212121 !important; opacity:.5 !important;
}
.owl-nav .owl-next {
	left:100%;
}
.owl-nav .owl-prev {
	right: 100%;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
	font-size:3em; display: block;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
	outline:none;
}

/**** Default Classes ****/
body {
	font-family: 'Montserrat', sans-serif;
}
body#barbajs {
	visibility: visible;
}
a, button, .btn {
	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
a {
	cursor:pointer;	text-decoration: none !important;
}
a:hover {
	color: #252525; text-decoration: underline;
}
.btn {
	cursor: pointer; border-radius: 0;
}
.btn.alert-trigger {
	color: #fdfdfd; background-color:#333;
}
.btn:hover {
	opacity: 0.9;
}
.inner-content-section .btn {
	background:rgba(135,170,188);	border-color: #949494; color: rgba(255,255,255,1);
}
.inner-content-section .btn:hover {
	background-color: rgba(135,170,188,0.4); color: #fff;
}
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {outline: none;box-shadow: none;background-color: #444;border-color: #949494;color: #fff;}
.btn-primary:hover {
	border-color: #949494;
}
.btn.focus, .btn:focus {
	outline:none; box-shadow: none;
}
.section-divider {
	position: relative; padding: 50px 0;
}
.estimate-section-divider .alert, .estimate-section-divider .alert p {
    text-align: left; font-size: inherit;
}
.block-overlay {
	position: absolute; display: inline-block; background:rgba(0, 0, 0, 0.6); width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; z-index: 0;
}
.fadeDiv {
	position: fixed; display: inline-block; z-index: 1050; color: #fff; background: #300e87; padding: 50px; top: 150px; bottom: 150px; left: 300px; right: 300px; transform:scale(0,0); box-shadow: 0px 0px 20px -1px #000; transition: all .20s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.menu-scaler {
	position: fixed; display: inline-block; padding: 50px; z-index: 1050; top: 150px; bottom: 150px; left: 300px; right: 300px; transform: scale(1,1);
}
.fadeDiv .fadeDiv-close {
	position: absolute; right: 20px; top: 10px; font-weight: 900; font-size: 2em; font-family: 'Lato'; cursor: pointer;
}
.navbar-collapse ul {
	width: 100%; justify-content: center; align-items: center;
}
.overlay {
	height: 100%; width: 100%; background: #ffffffbf;
}
#myBtn {
	display: block; width: 50px; height: 50px; position: fixed; top: 100%; right: 30px; z-index: 99; border: none; outline: none; background-color: #000000; color: #ffffff; cursor: pointer; font-size: 14px; padding-top: 0; border-radius: 0px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease;
}
#myBtn i {
	color: white;
}
#myBtn:hover {
	background-color: #424242; color: #fff;
}

/**** Gallery Function Section ****/
/**** Gallery Function Section ****/
[id^="portfolio"] input {
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    position: absolute; 
    margin: 0; 
    top: 0; 
    left: -60px; 
    z-index: 2; 
    width: 60px; 
    height: 60px; 
    -webkit-appearance: none; 
    background-image: url(/img/icons/close-btn-icon-red.png); 
    background-repeat: no-repeat; 
    background-color: transparent; 
    background-size: contain; 
    color: #ffffff; 
    border: none; 
    cursor: pointer; 
    outline: none !important; 
    -webkit-transition: all 0.30s ease; 
    -moz-transition: all 0.30s ease; 
    -o-transition: all 0.30s ease; 
    transition: all 0.30s ease;
}

[id^="portfolio"] input:hover {
    background-color: #fff;
    opacity: 1; /* Adjusted to ensure hover effect is visible */
}

button.mfp-close, button.mfp-arrow {
    outline: none !important;
}

[id^="portfolio"] {
    display: flex; 
    padding: 0; 
    overflow: hidden; 
    flex-wrap: wrap; 
    justify-content: center;
}

[id^="portfolio"] li {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    float: left; 
    position: relative; 
    overflow: hidden; 
    margin: 0 10px 20px;
}

[id^="portfolio"] li a {
    transform: scale(1,1); 
    display: block; 
    width: 100%; 
    height: 295px; 
    width: 490px; 
    overflow: hidden; 
    -o-transition: all 0.30s ease; 
    -moz-transition: all 0.30s ease; 
    -webkit-transition: all 0.30s ease; 
    transition: all 0.30s ease;
}

[id^="portfolio"] li a:hover {
    transform: scale(1.1,1.1) !important;
}

[id^="portfolio"] li a img {
    display: block; 
    position: absolute; 
    top: 0%; 
    bottom: 0%; 
    left: 0%; 
    right: 0%; 
    margin: auto; 
    width: 100%; 
    height: auto; 
    transform: scale(1,1);
}

[id^="portfolio"] li:hover .block-overlay {
    background-color: #000000cc;
}

[id^="portfolio"] li:hover input {
    left: 0;
}

[id^="portfolio"] .block-overlay {
    background: rgba(0,0,0,0.1); 
    z-index: 1; 
    -webkit-transition: all 0.30s ease; 
    -moz-transition: all 0.30s ease; 
    -o-transition: all 0.30s ease; 
    transition: all 0.30s ease;
}
.mfp-ready .mfp-figure {
	opacity: 0; margin-left: -100px;
}
.mfp-zoom-in .mfp-figure, .mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
	opacity: 0; margin-left: -100px; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; -webkit-transform: scale(0.95); -ms-transform: scale(0.95); transform: scale(0.95);
}
.mfp-zoom-in.mfp-bg,
.mfp-zoom-in .mfp-preloader {
	opacity: 0; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-image-loaded .mfp-figure, .mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler {
	opacity: 1; margin-left: 0; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg,
.mfp-zoom-in.mfp-ready .mfp-preloader {
	opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-figure, .mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler {
	-webkit-transform: scale(0.95);	-ms-transform: scale(0.95); transform: scale(0.95); opacity: 0; margin-left: -100px;
}
.mfp-zoom-in.mfp-removing.mfp-bg,
.mfp-zoom-in.mfp-removing .mfp-preloader {
	opacity: 0; margin-left: -20px;
}
.mfp-iframe-scaler {
	overflow: visible; /*so the close button is shown*/
}
.mfp-zoom-out-cur {
	cursor: auto;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: pointer;
}

/**** Reviews Function ****/
.carousel-indicators li {
	position: relative; top: 51px; -ms-flex: 0 1 auto; flex: 0 1 auto; width: 30px;	height: 3px; margin-right: 3px;	margin-left: 3px; text-indent: -999px; background-color: rgb(191, 190, 190);
}
.carousel-indicators .active {
	background-color: #0f8029;
}

/* ========================================== */
/* === Footer Section ======================= */
/* ========================================== */
.footer-section .vms-link-wrapper img {
	width: 50%;
}
.footer-section .vms-link-wrapper a {
	width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.footer-section {
	padding: 0 0 10px; background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/utah-map.jpg);
    background-size: cover;  font-size: 18px; font-weight: 400;
}
.footer-section h3 {
	font-size: 1.3rem; color: rgb(30,30,30); font-weight: bold;
}
.footer-section p {
	 font-size: 15px; font-family: 'font2';
}
.footer-section a {
	 font-size: 16px; color: inherit;
}
.footer-section .h-card {
	text-align: center;
}
.footer-section .service-cities p {
	margin: 0 0 3px;
}
.service-cities {
	margin-bottom: 1em;
}
.service-cities img {
	padding-bottom: 20px;
}
.service-cities h5 {
	line-height: 8px;
}
.service-cities h4 {
	font-size: 20px; font-family: 'font2'; font-weight: 600; 
}
.service-cities h3 {
	font-size: 30px; font-family: 'font2'; font-weight: 600;
}
.service-cities h3 span {
	font-size: 15px; font-weight: 500;
}
.service-cities h3 a {
	color: #118652;
}
.bottom-footer {
	background: #118652b5; padding: 25px 0px 15px 0px;
}
.bottom-footer .vms-link-wrapper {
	position: relative; top: -10px;
}
.bottom-footer div[class*='col-']:nth-child(2) {
	display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.bottom-footer div[class*='col-']:nth-child(3) {
	display: flex; justify-content: flex-end; font-size: 14px;
}
.bottom-footer div[class*='col-']:nth-child(3) a {
	display: flex; justify-content: center;	align-items: center; border: 1px solid #fff; border-radius: 100px; height: 28px; width: 28px; margin: 0 4px;
}
.bottom-footer div[class*='col-']:nth-child(3) a:hover {
	background: #0a0a0a; text-decoration: none !important; color: #929292;
}
.trademark-disclaimer {
	padding: 10px 0; background: #000; margin-bottom: -10px;
}
.trademark-disclaimer p {
	font-size: 8px; text-align: center; color: rgb(255,255,255);
}





/* === Lg. Laptop CSS Section ================= */
@media screen and (max-width : 1440px) {
	/*** Don't place anything here, unless absolutely necessary ***/
}
/* === Sm. Laptop CSS Section ================= */
@media screen and (max-width: 1600px) {
.top-header div[class*='col-']:nth-child(4) a {
    padding: 9px 15px 9px 15px;
    background: transparent;
    font-weight: 600;
    font-family: 'font2';
    color: rgb(120,120,120);
    border-radius: 1.6rem;
    border: 1px double rgb(120,120,120);
	font-size: 1rem;
	display: inline-flex; 
}
.navbar-light .navbar-nav .nav-link {
    margin: 0 20px;
    padding: 6px 0px;
    font-weight: 900;
    font-size: 1rem;
    color: rgb(255,255,255);
    font-family: 'font2';
}


.home1 {
    padding: 175px 0 175px 5px;
        background: linear-gradient(0deg, #000000d9 25%, #000000d9 90%), url(/img/homepage/landscaping-4.jpg) top right no-repeat;
    background-size: cover;
    background-position: center;
}
.home1 .pad {
	padding-top: 85px;
}
.home1 h1 {
    font-family: 'font2';
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
	padding-bottom: 75px;
    margin-left: -0;
}
.home1 h2 {
	font-family: 'font2'; font-size: 45px; text-align: center; font-weight: 800; color: #fff; letter-spacing: 3px;
}
.home1 h3 {
	font-family: 'font2'; font-size: 1.1rem; text-align: left; font-weight: 500; color: #fff;
}
.home1 h4 {
	text-align: center; font-size: 20px; background: #fff9; text-transform: uppercase;
	color: #0b7043; padding: 15px 0px 15px 0px; border-radius: 25px; font-weight: 600; 
}
.home1 h6 {
	font-family: 'font2'; font-size: 30px; text-align: center; font-weight: 800; color: #fff; letter-spacing: 3px;
}
.home1 h5 {
	text-align: center; font-size: 20px; background: #118652ad; text-transform: uppercase;
	color: #fff; padding: 15px 0px 15px 0px; border-radius: 25px; font-weight: 600; 
}
.home1 i {
	font-size: 25px; margin-left: -20px; position: relative;
}
.home1 u {
	text-decoration: none; font-size: 20px;
}
.home1 p {
	font-size: 17px; font-family: 'font2'; font-weight: 600; text-align: center; color: #f5f5f5;
}
.home1 h2 strong {
	font-size: 35px;
}
.home1 h2 span {
    display: inline-block;
    animation: rotateD 2s ease-out forwards;
    color: #fff; /* Adjust color if needed */
}

@keyframes rotateD {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
    }
}
.home1 hr {
	background: #fff; opacity: 75%;
}
	
	
.home2 {
	padding: 100px 15px 150px 15px; background: #f5f5f5;
}
.home2 h2 {
    font-family: font2;
    font-size: 50px;
    text-align: center;
    color: #118652;
	padding-bottom: 100px;
}

.home2 i:first-of-type {
    position: relative;
    transform: rotate(270deg); /* Rotate the left icon to face the opposite direction */
}

.home2 i:last-of-type {
    position: relative;
    transform: rotate(90deg); /* Ensure the right icon faces its default direction */
}
.home2 h3 {
	font-family: font2; font-weight: 600; font-size: 1.3rem; text-align: center; color: #fff; margin-top: 50px; margin-bottom: -25px;
	text-shadow: 1px 1px 1px #000;
}
.home2 p {
	font-size: 15px;
    font-family: 'font2';
    font-weight: 600;
    text-align: center;
    line-height: 30px;
    padding-top: 35px;
    color: transparent;
    margin: 0px 10px 0px 10px;
}
.home2 mark {
	padding: 15px; background: transparent; color: transparent; font-weight: 600; border-radius: 15px;
}
.home2 .card1 {
	width: auto; height: 425px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/lawn-care.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/services/mowing-4.jpg) no-repeat;
	
	padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card1:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/lawn-care.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card1:hover p {
	color: #fff;
}
.home2 .card1:hover mark {
	background: #fff; color: #118652;
}
.home2 .card2 {
	width: auto; height: 425px; background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/fertilization.jpg) no-repeat; padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card2:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/fertilization.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card2:hover p {
	color: #fff;
}
.home2 .card2:hover mark {
	background: #fff; color: #118652;
}
.home2 .card3 {
	width: auto; height: 425px; background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/weed-control.jpg) no-repeat; padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card3:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/weed-control.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card3:hover p {
	color: #fff;
}
.home2 .card3:hover mark {
	background: #fff; color: #118652;
}
.home2 .card4 {
	width: auto; height: 425px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/aeration.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/aeration-grass.jpg) no-repeat;
	padding-top: 40px;
    background-size: cover;
    /*background-position: center;*/
    background-position: 100% -10%;
	
	
	border-radius: 100%;
}
.home2 .card4:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/aeration.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card4:hover p {
	color: #fff;
}
.home2 .card4:hover mark {
	background: #fff; color: #118652;
}
.home2 .card5 {
	width: auto; height: 425px; background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/yard-cleanup.jpg) no-repeat; padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card5:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/yard-cleanup.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card5:hover p {
	color: #fff;
}
.home2 .card5:hover mark {
	background: #fff; color: #118652;
}
.home2 .card6 {
	width: auto; height: 425px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/decorative-rock.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/dec-rock-card.jpg) no-repeat;
	padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card6:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/decorative-rock.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card6:hover p {
	color: #fff;
}
.home2 .card6:hover mark {
	background: #fff; color: #118652;
}
.home2 .card7 {
	width: auto; height: 425px; background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/rock-wall.jpg) no-repeat; padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card7:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/rock-wall.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card7:hover p {
	color: #fff;
}
.home2 .card7:hover mark {
	background: #fff; color: #118652;
}
.home2 .card8 {
	width: auto; height: 425px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/tree-trimming.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/tree-bush-trimming.jpg) no-repeat;
	padding-top: 40px;
    background-size: cover;
    background-position: center; border-radius: 100%;
}
.home2 .card8:hover {
	background: linear-gradient(180deg, rgba(17,134,82,1) 20%, rgba(17,134,82,1) 20%),url(/img/homepage/tree-trimming.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
}
.home2 .card8:hover p {
	color: #fff;
}
.home2 .card8:hover mark {
	background: #fff; color: #118652;
}
.home3 {
	background: #e4f5c5;
}
.home3 .container-fluid {
	padding: 0px;
}
.home3 h2 {
	font-family: font2; font-weight: 600; text-align: center; color: #0D5937;
}
.home3 p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center;
}
.home3 .sign {
	padding: 100px 25px 100px 50px;
}
.home3 .dd {
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/landscaping-5.jpg) top right no-repeat;
    background-size: cover; height: 100%;
    background-position: center;
}
.home4 {
	padding: 100px 0px 135px 0px;
	
}
.home4 .tree {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/tree.png) top right no-repeat;
    background-size: cover; height: 115%;
    background-position: center;
}
.home4 .reason1 {
	position: relative;margin-left: -100px;
    margin-right: 100px;
}
.home4 .reason1 hr {
	margin-left: -100px; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason2 {
	position: relative;margin-left: -75px;
    margin-right: 75px;
}
.home4 .reason2 hr {
	margin-left: -75px; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason3 {
	position: relative;margin-left: -50px;
    margin-right: 50px;
}
.home4 .reason3 hr {
	margin-left: -63px; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason4 {
	position: relative;margin-left: -75px;
    margin-right: 75px;
}
.home4 .reason4 hr {
	margin-left: -75px; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason5 {
	position: relative;margin-left: -100px;
    margin-right: 100px;
}
.home4 .reason5 hr {
	margin-left: -100px; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 h2 {
	font-family: font2; font-size: 45px; font-weight: 600; color: #118652; text-shadow: 0px 0px 1px #118652; text-align: center;
}
.home4 h3 {
	font-family: font2; font-weight: 600; font-size: 20px;
}
.home4 h3 span {
	color: #0D5937; text-decoration: underline; letter-spacing: 1px; font-size: 22px;
}
.home4 p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.home4 mark {
	padding: 25px; background: #118652; color: #fff; font-size: 20px; border-radius: 15px;
}
.home5 {
	padding: 100px 15px 100px 15px;
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%; background-repeat: repeat;
	
}
.home5 h2 {
	font-family: font2; font-size: 45px; font-weight: 600; 
}
.home5 span {
	 color: #118652;
}
.home5 h3 {
	font-family: font2; font-size: 25px;    
}
.home5 p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.home5 mark {
	padding: 25px;
    border-radius: 15px;
    font-size: 20px;
    font-family: font2;
    letter-spacing: 2px;
    color: #fff;
    background: #2d3a2f;
}
.home5 .option1 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%; background: #f4e2b5;
}
.home5 .option2 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%;background: #f4e2b5;
}
.home5 .option3 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%;background: #f4e2b5;
}
.home5 .option4 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%;background: #f4e2b5;
}
.home5 .option5 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%;background: #f4e2b5;
}
.home5 .option6 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: 50%;background: #f4e2b5;
}
.home-sprinkler-systems {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/ss-4.jpg);
	background-position: center center;
	background-attachment: fixed; padding-right: 25px;
    background-size: cover;
}
.home-sprinkler-systems .container-fluid {
	padding: 0px;
}
.home-sprinkler-systems .sq1 {
	background: #0000008a; padding: 200px 20px 200px 20px; height: 100%; border-top-right-radius: 100px; border-bottom-right-radius: 100px; color: #fff;
}
.home-sprinkler-systems .sq2 {
	padding: 35px 15px 35px 15px; background: #0000008a; border-radius: 25px; margin-top: 350px;
}
.home-sprinkler-systems h3 {
	font-family: font2; font-size: 45px; font-weight: 600; line-height: 75px; text-align: center;
}
.home-sprinkler-systems h4 {
	font-family: font2; text-align: center; font-weight: 600; font-size: 20px; color: #fff;
}
.home-sprinkler-systems p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center;
}
.home-sprinkler-systems mark {
	padding: 25px; background: #22B14C; text-align: center; font-size: 20px; border-radius: 25px; color: #fff;
	box-shadow: 1px 1px 10px 1px #000;
}
.home-sprinkler-systems .sq2 img {
	max-width: 25%;
}
.home-split {
	padding: 50px 0px 100px 0px; background: #118652; text-align: center; color: #fff;
}
.home-split h3 {
font-family: font2; font-weight: 600; font-size: 35px;	
}
.home-split h4 {
font-family: font2; font-weight: 500; font-size: 20px;	
}
.home-split  img {
	max-width: 63%; border-radius: 100%;
}
.home-split .splitter {
	position: relative;
}
/*.home-split .splitter:hover {*/
/*	transform: rotateZ(360deg);  transition: 2s;*/
/*}*/

.home-split .splitter:hover {
  animation: shake 0.5s;
  animation-iteration-count: 1;
}

@keyframes shake {
  0% { transform: translate(1px, -2px) rotate(0deg); }

  50% { transform: translate(2px, -3px) rotate(10deg); }

  
  75% { transform: translate(1px, -2px) rotate(0deg); }
  
  100% { transform: translate(0px, 0px) rotate(0deg); }
}

	
/**** Gallery Section ****/
.gallery-top{
    background: linear-gradient(0deg, #000000bd 25%, #00000080 90%), url(/img/homepage/ss-4.jpg);
    background-position: center center;
    background-attachment: fixed;
    /*padding-right: 25px;*/
    background-size: cover;
	padding:45px 10px;
}
.gallery-top h2{
	font-size: 2.2rem; font-weight: 600; font-family: 'font2'; padding-bottom: 10px; text-align: center; color: rgb(256, 256, 256);

}
.gallery-top a{
	
	padding: 11px;
	background: black;
	color: white;
	border-radius: 20px;
	width: auto;
	margin: 10px;
	font-weight: 700;
}
.gallery-top a:hover{
	
	/*padding: 11px;*/
	background: #118652;
	color: black;
}
.gallery-top .row{
	
	justify-content: center; 
}

.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}
.subdivision{
	background: #118652;
	padding:45px;
}
.subdivision h2{
	font-size: 2.2rem; font-weight: 600; font-family: 'font2'; padding-bottom: 10px; text-align: center; color: white; 

}
/**** Services Section ****/
.main-services-intro {
	padding: 100px 10px;
		background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/services/ms-1.jpg);
	background-position: center center;
	background-attachment: fixed; color: #fff;
    background-size: cover;
}
.main-services-intro .bawks1 {
	padding: 50px;
}
.main-services-intro .bawks2 {
 padding: 10px;
}
.main-services-intro .bawks2:hover {
	background: #0009; box-shadow: -1px 0px 0px 0px #118652;
}
.main-services-intro .bawks2:hover h2 {
	color: #118652; font-weight: 600;
}
.main-services-intro .bawks3 {
}
.main-services-intro .bawks4 {
}
.main-services-intro .bawks5 {
}
.main-services-intro .bawks6 {
}
.main-services-intro .bawks7 {
}
.main-services-intro .bawks8 {
}
.main-services-intro .bawks9 {
}
.main-services-intro .bawks10 {
}
.main-services-intro h1 {
	font-family: font2; font-size: 45px; font-weight: 600; text-align: center;
}
.main-services-intro h2 {
	padding: 15px 0px 15px 15px; border-radius: 15px; font-family: font2; font-size: 20px; letter-spacing: 2px;
}
.main-services-intro p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center;
}
.main-services-intro hr {
	background: #118652; height: 2px;
}
.main-services-intro img {
	height: 100px; width: 100px;border-radius: 100%;
}
.main-services-intro a {
	color: inherit;
}
.main-services-body {
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%; background-attachment: fixed;
    background-repeat: repeat;
}
.main-services-body .container-fluid {
	padding: 0px;
}
.main-services-body .row {
	    --bs-gutter-x: 0;
}
.main-services-body mark {
	padding: 25px; border-radius: 15px; background: #118652; font-family: font2; font-size: 20px; color: #fff;
}
.main-services-body .lawn-care {
}
.main-services-body .lawn-care .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .lawn-care .scene {
	/*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/yard-care-1.jpg);*/
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/mowing-4.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .lawn-care h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .lawn-care p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .lawn-care img {
	border-bottom: 25px solid #fff;
}
.main-services-body .fertilization {
}
.main-services-body .fertilization .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: 150px; margin-left: -150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .fertilization .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/fertilize-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .fertilization h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .fertilization p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .fertilization img {
	border-bottom: 25px solid #fff;
}
.main-services-body .aeration {
}
.main-services-body .aeration .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .aeration .scene {
	/*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/aerate-1.jpg);*/
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/aerate-service-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .aeration h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .aeration p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .aeration img {
	border-bottom: 25px solid #fff;
}
.main-services-body .weed-control {
}
.main-services-body .weed-control .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: 150px; margin-left: -150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .weed-control .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/design-install-service-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .weed-control h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .weed-control p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .weed-control img {
	border-bottom: 25px solid #fff;
}
.main-services-body .clean-up {
}
.main-services-body .clean-up .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .clean-up .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/clean-up-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .clean-up h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .clean-up p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .clean-up img {
	border-bottom: 25px solid #fff;
}
.main-services-body .decorative {
}
.main-services-body .decorative .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: 150px; margin-left: -150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .decorative .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/decorative-rock-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .decorative h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .decorative p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .decorative img {
	border-bottom: 25px solid #fff;
}
.main-services-body .boulders-rock-walls {
}
.main-services-body .boulders-rock-walls .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .boulders-rock-walls .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/rock-wall-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .boulders-rock-walls h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .boulders-rock-walls p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .boulders-rock-walls img {
	border-bottom: 25px solid #fff;
}
.main-services-body .trimming {
}
.main-services-body .trimming .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .trimming .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/bush-trimming-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .trimming h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .trimming p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .trimming img {
	border-bottom: 25px solid #fff;
}
.main-services-body .sprinkler-systems {
}
.main-services-body .sprinkler-systems .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: 150px; margin-left: -150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .sprinkler-systems .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/ss-1.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
}
.main-services-body .sprinkler-systems h3 {
	font-family: font2; font-size: 35px;
}
.main-services-body .sprinkler-systems p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .sprinkler-systems img {
	border-bottom: 25px solid #fff;
}
	
	
	
.lawn-care-northern-utah-body .upkeep .present {
    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/cleaning-upkeep.jpg);
    background-size: cover;
    height: 100%;
    background-position: center center;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 1000px;
}
.lawn-care-northern-utah-body .upkeep:hover .deets {
    display: block;
    margin-bottom: -430px;
    top: -50%;
}
.lawn-care-northern-utah-body .upkeep:hover .know {
    margin-left: -650px;
    transform: rotateZ(-360deg);
}
.lawn-care-northern-utah-body .trim-clip .present {
    /* background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/trimming-01.jpg); */
    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/lawn-trimming.jpg);
    background-size: cover;
    height: 100%;
    background-position: bottom left;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 1000px;
}
.lawn-care-northern-utah-body .trim-clip:hover .deets {
    display: block;
    margin-bottom: -430px;
    top: -50%;
}
.lawn-care-northern-utah-body .trim-clip:hover .know {
    margin-left: 350px;
    transform: rotateZ(360deg);
}
.lawn-care-northern-utah-body .maintenance .present {
    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/routine-maintenance.jpg);
    background-size: cover;
    height: 100%;
    background-position: center center;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 1000px;
}
.lawn-care-northern-utah-body .maintenance:hover .deets {
    display: block;
    margin-bottom: -430px;
    top: -50%;
}
.lawn-care-northern-utah-body .maintenance:hover .know {
    margin-left: -650px;
    transform: rotateZ(-360deg);
}





/***** AERATION START *****/

.aeration-fertilization-intro {
	 background: linear-gradient(0deg, #000000ba 25%, #000000ba 90%), url(/img/aeration/aeration-02.jpg);
    background-size: cover; height: 100%;padding: 100px 75px 300px 75px; 
    background-repeat: no-repeat; margin-top: 65px;
}
.aeration-fertilization-intro  .sq1 {
	background: #0009; padding: 50px 100px 150px 100px; border-top-right-radius: 150px; border-top-left-radius: 150px; border: 1px solid #118652
}
.aeration-fertilization-intro .box1 {  background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/aeration-01.jpeg);
    background-size: cover; background-position: center; border-bottom-left-radius: 50px;
    background-repeat: no-repeat; height: 250px; width: 100%; 
}
.aeration-fertilization-intro .box1:hover {
	background: linear-gradient(0deg, #000000f2 25%, #000000f2 90%), url(/img/aeration/aeration-01.jpeg);
    background-size: cover; background-position:
}
.aeration-fertilization-intro .box1:hover .subserv {
	display: block;
}
.aeration-fertilization-intro .box2 {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/fertilization-02.jpg);
    background-size: cover; height: 250px; width: 100%; background-position: center; border-left: 1px solid #118652; border-right: 1px solid #118652;
    background-repeat: no-repeat; 
}
.aeration-fertilization-intro .box2:hover {
	background: linear-gradient(0deg, #000000f2 25%, #000000f2 90%), url(/img/aeration/fertilization-01.jpg);
    background-size: cover; background-position:
}
.aeration-fertilization-intro .box2:hover .subserv {
	display: block;
}
.aeration-fertilization-intro .box3 {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/weed-control-02.jpg);
    background-size: cover;  height: 250px; width: 100%; background-position: center; border-bottom-right-radius: 50px;
    background-repeat: no-repeat; 
}
.aeration-fertilization-intro .box3:hover {
	background: linear-gradient(0deg, #000000f2 25%, #000000f2 90%), url(/img/aeration/weed-contro-02.jpg);
    background-size: cover; background-position:
}
.aeration-fertilization-intro .box3:hover .subserv {
	display: block;
}
.aeration-fertilization-intro .care {
	position: relative; 
}
.aeration-fertilization-intro .subserv {
	position: relative; left: 0%; display: none; color: #118652;
}
.aeration-fertilization-intro .container-fluid {
	padding: 0px;
}
.aeration-fertilization-intro .care .row {
	    --bs-gutter-x: 0;
}
.aeration-fertilization-intro h1 {
	font-family: font2; font-size: 40px; text-align: center; color: #118652; font-weight: 600; letter-spacing: 2px;
}
.aeration-fertilization-intro h2 {
	    padding: 30px;
    background: #000000f2;
    width: 100%;
	text-shadow: 1px 1px 1px #000;
	font-weight: 600;
    font-size: 20px;
	text-align: center;
    letter-spacing: 2px;
    font-family: font2;
    /*border-bottom-right-radius: 100px;
	border-bottom-left-radius: 100px;*/
    color: rgba(17, 134, 82, 1);

}
.aeration-fertilization-intro  p {
	font-size: 17px; text-align: center; color: #fff; font-family: font2; line-height: 35px; margin: 0px 75px 0px 75px;
}
.aeration-fertilization-intro hr {
    height: 3px;
    background: #118652;
    width: 25%;
    position: relative;
    left: 35%;
    margin: 25px 0px 25px 0px;
}
.aeration-split {
	padding: 50px 0px 50px 0px; background: #9c9ea1; color: #fff;
}
.aeration-split .spot1 {
	padding: 10px; text-align: center;
}
.aeration-split h2 {
	font-family: font2; font-weight: 600; text-align: center; font-size: 40px; letter-spacing: 3px;
}
.aeration-split h3 {
	font-size: 65px; text-align: center; font-family: font2;
}
.aeration-split h4 {
	font-family: font2; font-size: 20px; text-decoration: underline;
}
.aeration-split h5 {
	font-size: 15px;
}
.aeration-services {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.aeration-services .container-fluid {
	padding: 0px;
}
.aeration-services .rec1 {
	padding: 100px 25px 100px 50px;
}
.aeration-services .visual {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/aeration-01.jpeg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; 
}
.aeration-services h2 {
	font-family: font2; font-weight: 600; letter-spacing: 2px; font-size: 30px;
}
.aeration-services h3 {
	font-family: font2; font-size: 20px; text-decoration: underline; color: #118652;
}
.aeration-services p {
	font-family: font2; font-size: 17px; line-height: 30px;
}
.aeration-services p span {
	font-size: 15px; 
}
.aeration-services img {
	background: #118652a1;
    max-width: 200%;
    border-radius: 100%;
    padding: 15px;
}
.fertilization-services {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.fertilization-services .container-fluid {
	padding: 0px;
}
.fertilization-services .rec1 {
	padding: 100px 25px 100px 50px;
}
.fertilization-services .visual {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/fertilization-02.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; 
}
.fertilization-services h2 {
	font-family: font2; font-weight: 600; letter-spacing: 2px; font-size: 30px;
}
.fertilization-services h3 {
	font-family: font2; font-size: 20px; text-decoration: underline; color: #118652;
}
.fertilization-services p {
	font-family: font2; font-size: 17px; line-height: 30px;
}
.fertilization-services p span {
	font-size: 15px; 
}
.fertilization-services img {
	background: #118652a1;
    max-width: 200%;
    border-radius: 100%;
    padding: 15px;
}

.weed-control-services {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.weed-control-services .container-fluid {
	padding: 0px;
}
.weed-control-services .rec1 {
	padding: 100px 25px 100px 50px;
}
.weed-control-services .visual {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/weed-control-02.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; 
}
.weed-control-services h2 {
	font-family: font2; font-weight: 600; letter-spacing: 2px; font-size: 30px;
}
.weed-control-services h3 {
	font-family: font2; font-size: 20px; text-decoration: underline; color: #118652;
}
.weed-control-services p {
	font-family: font2; font-size: 17px; line-height: 30px;
}
.weed-control-services p span {
	font-size: 15px; 
}
.weed-control-services img {
	background: #118652a1;
    max-width: 200%;
    border-radius: 100%;
    padding: 15px;
}
/***** AERATION END *****/




}





/* === Tablet CSS Section ===================== */
@media screen and (max-width: 991px) {
body {
    padding: 0;
    -webkit-transition-property: all;
    -webkit-transition-duration: .30s;
    -webkit-transition-timing-function: ease-in-out;
    transition-property: all;
    transition-duration: .30s;
    transition-timing-function: ease-in-out;
    overflow-x: hidden;
    border-left: 0 solid #000;
    border-right: 0 solid #000;
}
.gutterless{
	--bs-gutter-x: 1.5rem;
}
.top-header {
    position: fixed;
    width: 100%;
    z-index: 1;
    padding: 10px 0 10px 0;
    background: rgb(255,255,255);
    z-index: 3;
    -webkit-transition: all .30s ease;
    -moz-transition: all .30s ease;
    -o-transition: all .30s ease;
    transition: all .30s ease;
    border-right: 0 solid #000;
    border-top: 0 solid #000;
}
/**** Top Header Section ****/
.mobile-top-header {
	display:block !important; padding: 0 30px 0; background: rgb(135,170,188); z-index: 4; overflow: visible;
	height: 110px;
}

.mobile-top-header img{
	width: 200px !important; 
}
.mobile-menu {
	text-align: center; position: fixed; height: 100%; width: 100%;	display: block;	padding-top: 6em; top: 100%; border: 0;	background: #232323; border-radius: 0; z-index: 1100; overflow: auto; -webkit-transition-property: all;	-webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.mobile-menu .nav-link {
	font-size: 2em;	color: #c5c5c5 !important;
}
.mobile-menu-custom-show {
	top: 0%;
}
.mobile-menu-top-hero {
	background-size: cover;	padding: 40px 0 0; top:0; left:0; width: 100%; text-align: center;
}
.mobile-menu-top-hero h2 {
	padding: 0 25px;
}
#mobile-menu-header {
	margin-top: 0; background: #ffffff00; box-shadow: none;
}
#mobile-menu-header ul {
	list-style: none; padding: 0 20px; margin-top: 8em; position: relative; width: inherit;
}
#mobile-menu-header ul li a {
	color:#ffffff; padding: 20px 20px;
}
.header-contact_info a {
	color: rgb(255,255,255); margin: 0;
}
.top-header a, .top-header i, .top-header p {
	color: rgb(0,0,0);
}
.top-header-animate a, .top-header-animate i, .top-header-animate p {
	color: rgb(0,0,0);
}
.top-header {
	background: white; display: none;
}

.header-contact_info {
	font-size: 1.5em;
}
.navbar-scroll {
	display: none;
}
.header-contact_info .navbar-brand {
	font-size: 1.3em;
}
.top-header div[class*='col-']:first-child {
	justify-content: flex-start;
}
.top-header div[class*='col-'] {
	display: flex; justify-content: left; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(3) {
	display: flex; justify-content: flex-end; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(2) {
	background: none; margin: 0; display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(1) a {
	font-size: 1.5em;
}
.top-header div[class*='col-']:nth-child(2) p {
	font-size: inherit; line-height: inherit;
}

/**** Navigation Section ****/
.dropdown-wrapper {
	margin: 0; padding: 0;
}
.navbar-sidebar .dropdown-menu-mobile,
.navbar-sidebar .dropdown-menu-mobile-2,
.navbar-sidebar .dropdown-menu-mobile-3,
.navbar-sidebar .dropdown-menu-mobile-4 {
  position: relative; display: none; top: 0; left: 0; z-index: 1000; float: left; height: 0px; margin: 0; width: 100%; padding: 0; font-size: 1rem; color: black !important; text-align: left; list-style: none; background-color: #118652ad; border: 0; visibility: hidden; border-radius: 0; transform: scale(1,0); -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
  font-family: 'font2';
}

.dropdown-menu-animate,
.dropdown-menu-animate-2,
.dropdown-menu-animate-3,
.dropdown-menu-animate-4 {
  display: inline-block !important; transform: scale(1,1) !important; padding: 25px 0 !important; height: auto !important; visibility: visible !important;
}

.navbar-sidebar .dropdown-menu-mobile a,
.navbar-sidebar .dropdown-menu-mobile-2 a,
.navbar-sidebar .dropdown-menu-mobile-3 a,
.navbar-sidebar .dropdown-menu-mobile-4 a {
  font-weight:600 !important; font-size: 1rem; font-family: 'font2'; text-align: left;
  color: black;
}

.navbar-sidebar {
	padding-top: 110px; height: 100%; width: 200px; background-color: rgb(250,250,250); position: fixed !important; z-index: 1; overflow: auto;
}







.navbar-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: rgb(250,250,250);
    z-index: 3;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    padding-top: 110px;
		display: block; 

}

.navbar-sidebar.open {
    transform: translateX(0%);
}





.bar-block .dropdown-hover, .bar-block .dropdown-click {
	width: 100%;
}
.bar-block .dropdown-hover .dropdown-content, .bar-block .dropdown-click .dropdown-content {
	min-width: 100%;
}
.bar-block .dropdown-hover .button, .bar-block .dropdown-click .button {
	width: 100%; text-align: left; padding: 8px 16px;
}
.main, #main {
	transition: margin-left .4s;
}
.modal {
	display: none; padding-top: 100px; position: fixed; left: 0; top: 0; width: 100%; height: 100%;	overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4);
}
.modal-content {
	margin: auto; background-color: #fff; position: relative; padding: 0; outline: 0; width: 1200px;
}
.bar {
	width: 100%; overflow: hidden;
}
.center .bar {
	display: inline-block; width: auto;
}
.bar .bar-item {
	padding: 8px 16px; float: left; width: auto; border: none; display: block; outline: 0;
}
.bar .dropdown-hover, .bar .dropdown-click {
	position: static; float: left;
}
.bar .button {
	white-space: normal;
}
.bar-block .bar-item {
	width: 100%; display: block; padding: 8px 16px; text-align: left; border: none; white-space: normal; float: none; outline: 0;
	
	        font-family: 'font2';
			font-weight: 800;
			color: black; 
}
.nav-link{
	        font-family: 'font2';
			font-weight: 800;
			color: black; 
}
.bar-block.center .bar-item {
	text-align: center;
}
.block {
	display: block; width: 100%;
}

/**** Home Section ****/
.home-header-section {
	padding-top: 125px;
}
.dropdown-menu {
	position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 10rem; padding: .5rem 0; margin: .125rem 0 0; font-size: 1rem; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(87, 86, 87); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-item {
	display: block;	width: 100%; padding: .25rem 1.5rem; clear: both; color: rgb(255,255,255); text-align: inherit;	white-space: nowrap; background: 0 0; border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255, 255, 255); text-decoration: none; background-color: rgb(22,22,22) !important;
}
.video {
	overflow: hidden; position: relative; z-index: 2; display: block;
}
.video .pad {
	padding: 350px 0px 0px 300px; position: absolute;
}
.video .pad h5 {
	font-weight: 500; color: rgb(255,255,255); font-size: 50px; text-shadow: 0px 0px 5px #000; font-family: 'Arial'; text-align: left;
}
.video .pad p {
	margin-top: 0% !important; color: rgb(255,255,255); text-shadow: 0px 0px 5px #000; font-size: 25px; font-family: 'Arial'; text-align: left;
}
.video .pad a {
	font-size: 16px; color: rgb(255,255,255); font-family: 'Arial'; font-weight: 600; border: 1px solid rgb(12,32,63); padding: 15px 30px; border-radius: 1.6rem; background: rgb(12,32,63);
}
.video .pad a:hover {
	color: rgb(255,255,255); border: 1px solid rgb(255,255,255); background: transparent;
}
.home1 {
    padding: 175px 10px 75px 10px;
        background: linear-gradient(0deg, #000000d9 25%, #000000d9 90%), url(/img/homepage/landscaping-4.jpg) top right no-repeat;
    background-size: cover;
    background-position: center;
}
.home1 .pad {
	padding-top: 85px;
}
.home1 h1 {
    font-family: 'font2';
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
	padding-bottom: 15px;
    margin-left: -0;
	text-align: center; 
}
.home1 h2 {
	font-family: 'font2'; font-size: 2rem; text-align: center; font-weight: 800; color: #fff; letter-spacing: 3px;
}
.home1 h3 {
	font-family: 'font2'; font-size: 1.1rem; text-align: left; font-weight: 500; color: #fff;
}
.home1 h4 {
	text-align: center; font-size: 1.15rem; background: #fff9; text-transform: uppercase;
	color: #0b7043; padding: 15px 0px 15px 0px; border-radius: 25px; font-weight: 600; 
}
.home1 h6 {
	font-family: 'font2'; font-size: 1.5rem; text-align: center; font-weight: 800; color: #fff; letter-spacing: 3px;
}
.home1 h5 {
	text-align: center; font-size: 1.25rem; background: #118652ad; text-transform: uppercase;
	color: #fff; padding: 15px 0px 15px 0px; border-radius: 25px; font-weight: 600; 
}
.home1 i {
	font-size: 1.5rem; margin-left: -20px; position: relative;
}
.home1 u {
	text-decoration: none; font-size: 20px;
}
.home1 p {
	font-size: 1rem; font-family: 'font2'; font-weight: 600; text-align: center; color: #f5f5f5;
}
.home1 h2 strong {
	font-size: 2.15rem;
}
.home1 h2 span {
    display: inline-block;
    animation: rotateD 2s ease-out forwards;
    color: #fff; /* Adjust color if needed */
}

@keyframes rotateD {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
    }
}
.home1 hr {
	background: #fff; opacity: 75%;
}
.home2 {
	padding: 70px 15px 70px 15px; background: #f5f5f5;
}
.home2 h2 {
    font-family: font2;
    font-size: 2.5rem;
    text-align: center;
    color: #118652;
	padding-bottom: 20px;
}

.home2 i:first-of-type {
    position: relative;
    transform: rotate(270deg); /* Rotate the left icon to face the opposite direction */
}

.home2 i:last-of-type {
    position: relative;
    transform: rotate(90deg); /* Ensure the right icon faces its default direction */
}
.home2 h3 {
	font-family: font2; font-weight: 600; font-size: 1.3rem; text-align: center; color: #fff; margin-top: 10px; margin-bottom: -0;
	text-shadow: 1px 1px 1px #000;
}
.home2 p {
	font-size: 1rem;
    font-family: 'font2';
    font-weight: 600;
    text-align: center;
    line-height: 30px;
    padding-top: 15px;
    color: white;
    margin: 0px 10px 0px 10px;
}


.home2 mark {
	padding: 15px; background: transparent; color: transparent; font-weight: 600; border-radius: 15px;
}
.home2 .card1 {
	width: auto; height: 375px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/lawn-care.jpg) no-repeat;*/
	
	
	padding-top: 10px;
    background-position: center; border-radius: 35px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
    background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%), url(/img/homepage/lawn-care.jpg) no-repeat;
    box-shadow: 1px 1px 10px 3px #000;
    background-size: cover;
	
	
}
.home2 .card1:hover {
	width: auto; height: 375px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/lawn-care.jpg) no-repeat;*/
	
	
	padding-top: 10px;
    background-position: center; border-radius: 35px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
    background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%), url(/img/homepage/lawn-care.jpg) no-repeat;
    box-shadow: 1px 1px 10px 3px #000;
    background-size: cover;
}
.home2 .card1:hover p {
	color: #fff;
}
.home2 .card1:hover mark {
	background: #fff; color: #118652;
}
.home2 .card2 {
	width: auto; height: 375px;  padding-top: 10px;
    background-position: center; border-radius: 35px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/fertilization.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
    background-size: cover;

}

.home2 .card2:hover {
	width: auto; height: 375px;  padding-top: 10px;
    background-position: center; border-radius: 35px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/fertilization.jpg) no-repeat;
	box-shadow: 1px 1px 10px 3px #000;
    background-size: cover;
}
.home2 .card2:hover p {
	color: #fff;
}
.home2 .card2:hover mark {
	background: #fff; color: #118652;
}
.home2 .card3 {
	width: auto; height: 375px;
	padding-top: 10px;
    background-position: center; border-radius: 35px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/weed-control.jpg) no-repeat;
	background-size: cover; 
	
}
.home2 .card3:hover {
	width: auto; height: 375px;
	padding-top: 10px;
    background-position: center; border-radius: 35px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/weed-control.jpg) no-repeat;
	background-size: cover; 
}
.home2 .card3:hover p {
	color: #fff;
}
.home2 .card3:hover mark {
	background: #fff; color: #118652;
}
.home2 .card4 {
	width: auto; height: 375px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/aeration.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/aeration-grass.jpg) no-repeat;
	padding-top: 10px;
    background-size: cover;
    /*background-position: center;*/
    background-position: 100% -10%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center; 
	background-size: cover; 
	border-radius: 35px;
}
.home2 .card4:hover {
	width: auto; height: 375px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/aeration.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/aeration-grass.jpg) no-repeat;
	padding-top: 10px;
    background-size: cover;
    /*background-position: center;*/
    background-position: 100% -10%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center; 
	background-size: cover; 
	border-radius: 35px;
}
.home2 .card4:hover p {
	color: #fff;
}
.home2 .card4:hover mark {
	background: #fff; color: #118652;
}
.home2 .card5 {
	width: auto; height: 375px; background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/yard-cleanup.jpg) no-repeat; padding-top: 10px;
    background-size: cover;
    background-position: center; border-radius: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	background-size: cover; 
}
.home2 .card5:hover {
	width: auto; height: 375px; background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/yard-cleanup.jpg) no-repeat; padding-top: 10px;
    background-size: cover;
    background-position: center; border-radius: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	background-size: cover; 
}
.home2 .card5:hover p {
	color: #fff;
}
.home2 .card5:hover mark {
	background: #fff; color: #118652;
}
.home2 .card6 {
	width: auto; height: 375px;
	background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/dec-rock-card.jpg) no-repeat;
	padding-top: 10px;
    background-size: cover;
    background-position: center; border-radius: 35px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-size: cover; 
}
.home2 .card6:hover {
	width: auto; height: 375px;
	background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/dec-rock-card.jpg) no-repeat;
	padding-top: 10px;
    background-size: cover;
    background-position: center; border-radius: 35px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-size: cover; 
}
.home2 .card6:hover p {
	color: #fff;
}
.home2 .card6:hover mark {
	background: #fff; color: #118652;
}
.home2 .card7 {
	width: auto; height: 375px; background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/rock-wall.jpg) no-repeat; padding-top: 10px;
    background-size: cover;
    background-position: center; border-radius: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-size: cover; 

}
.home2 .card7:hover {
	width: auto; height: 375px; background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/rock-wall.jpg) no-repeat; padding-top: 10px;
    background-size: cover;
    background-position: center; border-radius: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-size: cover; 
}
.home2 .card7:hover p {
	color: #fff;
}
.home2 .card7:hover mark {
	background: #fff; color: #118652;
}
.home2 .card8 {
	width: auto; height: 375px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/tree-trimming.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/tree-bush-trimming.jpg) no-repeat;
	padding-top:10px;
    background-size: cover;
    background-position: center; border-radius: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center; 
	background-size: cover; 

}
.home2 .card8:hover {
	width: auto; height: 375px;
	/*background: linear-gradient(180deg, rgba(17,134,82,1) 0%, rgba(0,0,0,0.12498410008534666) 0%),url(/img/homepage/tree-trimming.jpg) no-repeat;*/
	background: linear-gradient(180deg, rgb(17 134 82 / 65%) 20%, rgb(17 134 82 / 65%) 20%),url(/img/homepage/tree-bush-trimming.jpg) no-repeat;
	padding-top:10px;
    background-size: cover;
    background-position: center; border-radius: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center; 
	background-size: cover; 
}
.home2 .card8:hover p {
	color: #fff;
}
.home2 .card8:hover mark {
	background: #fff; color: #118652;
}
.home3 {
	background: #e4f5c5;
}
.home3 .container-fluid {
	padding: 0px;
}
.home3 h2 {
	font-family: font2; font-weight: 600; text-align: center; color: #0D5937;
}
.home3 p {
	font-family: font2; font-size: 1rem; line-height: 35px; text-align: center;
}
.home3 .sign {
	padding: 70px 10px 70px 10px;
}
.home3 .dd {
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/landscaping-5.jpg) top right no-repeat;
    background-size: cover; height: 100%;
    background-position: center;
}
.home4 {
	padding: 100px 0px 135px 0px;
	
}
.home4 .tree {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/tree.png) top right no-repeat;
    background-size: cover; height: 115%;
    background-position: center;
}
.home4 .reason1 {
	position: relative;margin-left: 0px;
    margin-right: 0px;
	text-align:center;
}
.home4 .reason1 hr {
	margin-left: 0px; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason2 {
	position: relative;margin-left: -0;
    margin-right: 0px;
	text-align:center;
}
.home4 .reason2 hr {
	margin-left: -0; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason3 {
	position: relative;margin-left: -0;
    margin-right: 0px;
	text-align:center;
}
.home4 .reason3 hr {
	margin-left: -0; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason4 {
	position: relative;margin-left: -0;
    margin-right: 0px;
	text-align:center;
}
.home4 .reason4 hr {
	margin-left: -0; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 .reason5 {
	position: relative;margin-left: -0;
    margin-right: 0px;
	text-align:center;
}
.home4 .reason5 hr {
	margin-left: -0; background: #118652; height: 2px;border-bottom: 1px solid #444;
}
.home4 h2 {
	font-family: font2; font-size: 2.5rem; font-weight: 600; color: #118652; text-shadow: 0px 0px 1px #118652; text-align: center;
}
.home4 h3 {
	font-family: font2; font-weight: 600; font-size: 1.25rem; 
}
.home4 h3 span {
	color: #0D5937; text-decoration: underline; letter-spacing: 1px; font-size: 1.1rem;
}
.home4 p {
	font-family: font2; font-size: 1rem; line-height: 35px;
}
.home4 mark {
	padding: 25px 5px; background: #118652; color: #fff; font-size: 20px; border-radius: 15px;
}
.centered-button{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; 
}

.home5 {
	padding: 100px 15px 100px 15px;
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: cover; background-repeat: repeat;
	
}
.home5 h2 {
	font-family: font2; font-size: 2.5rem; font-weight: 600; 
}
.home5 span {
	 color: #118652;
}
.home5 h3 {
	font-family: font2; font-size: 1.5rem;    
}
.home5 p {
	font-family: font2; font-size: 1rem; line-height: 35px;
}
.home5 mark {
	padding: 25px 5px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-family: font2;
    letter-spacing: 2px;
    color: #fff;
    background: #2d3a2f;
}
.home5 .option1 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: auto; background: #f4e2b5;
}
.home5 .option2 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: auto;background: #f4e2b5;
}
.home5 .option3 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: auto;background: #f4e2b5;
}
.home5 .option4 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: auto;background: #f4e2b5;
}
.home5 .option5 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: auto;background: #f4e2b5;
}
.home5 .option6 {
	padding: 25px;     border: 2px dashed #4b4238;
    border-radius: 15px;
    width: auto;background: #f4e2b5;
}

.home-sprinkler-systems {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/ss-4.jpg);
	background-position: center center;
	background-attachment: fixed; padding-right: 0;
    background-size: cover;
}
.home-sprinkler-systems .container-fluid {
	padding: 0px;
}
.home-sprinkler-systems .sq1 {
	background: #0000008a; padding: 100px 20px 100px 20px; height: 100%; border-top-right-radius: 0; border-bottom-right-radius: 0; color: #fff;
}
.home-sprinkler-systems .sq2 {
	padding: 35px 15px 35px 15px; background: #0000008a; border-radius: 25px; margin-top: 35px;
}
.home-sprinkler-systems h3 {
	font-family: font2; font-size: 2.3rem; font-weight: 600; line-height: 50px; text-align: center;
}
.home-sprinkler-systems h4 {
	font-family: font2; text-align: center; font-weight: 600; font-size: 1.3rem; color: #fff;
}
.home-sprinkler-systems p {
	font-family: font2; font-size: 1rem; line-height: 35px; text-align: center;
}
.home-sprinkler-systems mark {
	padding: 25px 5px; background: #22B14C; text-align: center; font-size: 20px; border-radius: 25px; color: #fff;
	box-shadow: 1px 1px 10px 1px #000;
}
.home-sprinkler-systems .sq2 img {
	max-width: auto;
}
.home-split {
	padding: 50px 0px 50px 0px; background: #118652; text-align: center; color: #fff;
}
.home-split h3 {
font-family: font2; font-weight: 600; font-size: 2rem;	
}
.home-split h4 {
font-family: font2; font-weight: 500; font-size: 1.25rem;	
}
.home-split  img {
	max-width: auto; border-radius: 100%;
}
.home-split .splitter {
	position: relative;
}
/*.home-split .splitter:hover {*/
/*	transform: rotateZ(360deg);  transition: 2s;*/
/*}*/

.home-split .splitter:hover {
  animation: shake 0.5s;
  animation-iteration-count: 1;
}

@keyframes shake {
  0% { transform: translate(1px, -2px) rotate(0deg); }

  50% { transform: translate(2px, -3px) rotate(10deg); }

  
  75% { transform: translate(1px, -2px) rotate(0deg); }
  
  100% { transform: translate(0px, 0px) rotate(0deg); }
}

/**** About Section ****/
.about-intro {
	padding: 130px 0px 100px 0px; 
}
.about-intro h1 {
	font-family: font2; font-size: 2.5rem; font-weight: 600;
}
.about-intro h2 {
	font-family: font2; font-size: 1.5rem; font-weight: 600;
}
.about-intro h3 {
	font-family: font2; font-size: 1.2rem; font-weight: 600; text-decoration: underline;
}
.about-intro h6 {
	font-family: font2; line-height: 25px;
}
.about-intro h6 span {
	font-size: 1.2rem; font-weight: 600;
}
.about-intro p {
	font-family: font2; font-size: 1rem; line-height: 35px;
}
.about-intro span {
	color: #118652;
}
.about-intro hr {
	background:  #118652; height: 2px;
}
.about-intro img {
	box-shadow: 1px 1px 10px 1px #000;
}


/**** Gallery Section ****/
.gallery-top{
    background: linear-gradient(0deg, #000000bd 25%, #00000080 90%), url(/img/homepage/ss-4.jpg);
    background-position: center center;
    background-attachment: fixed;
    /*padding-right: 25px;*/
    background-size: cover;
	padding:45px;
}
.gallery-top h2{
	font-size: 1.6rem; font-weight: 600; font-family: 'font2'; padding-bottom: 10px; text-align: center; color: rgb(256, 256, 256);

}
.gallery-top a{
	
	padding: 11px;
	background: black;
	color: white;
	border-radius: 20px;
	width: auto;
	margin: 10px auto;
	font-weight: 700;
}
.gallery-top a:hover{
	
	/*padding: 11px;*/
	background: #118652;
	color: black;
}
.gallery-top .row{
	
	justify-content: center; 
}

.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}
.subdivision{
	background: #118652;
	padding:45px;
}
.subdivision h2{
	font-size: 2.2rem; font-weight: 600; font-family: 'font2'; padding-bottom: 10px; text-align: center; color: white; 

}


/**** Services Section ****/
/**** Services Section ****/
.main-services-intro {
	padding: 100px 10px;
		background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/services/ms-1.jpg);
	background-position: center center;
	background-attachment: fixed; color: #fff;
    background-size: cover;
}
.main-services-intro .bawks1 {
	padding: 50px 10px;
}
.main-services-intro .bawks2 {
 padding: 10px;
}
.main-services-intro .bawks2:hover {
	background: #0009; box-shadow: -1px 0px 0px 0px #118652;
}
.main-services-intro .bawks2:hover h2 {
	color: #118652; font-weight: 600;
}
.main-services-intro .bawks3 {
}
.main-services-intro .bawks4 {
}
.main-services-intro .bawks5 {
}
.main-services-intro .bawks6 {
}
.main-services-intro .bawks7 {
}
.main-services-intro .bawks8 {
}
.main-services-intro .bawks9 {
}
.main-services-intro .bawks10 {
}
.main-services-intro h1 {
	font-family: font2; font-size: 2rem; font-weight: 600; text-align: center;
}
.main-services-intro h2 {
	padding: 15px 0px 15px 0px; border-radius: 15px; font-family: font2; font-size: 1.25rem; letter-spacing: 2px;
	text-align: center;
}
.main-services-intro p {
	font-family: font2; font-size: 1rem; line-height: 35px; text-align: center;
}
.main-services-intro hr {
	background: #118652; height: 2px;
}
.main-services-intro img {
	height: auto; width: auto;border-radius: 100%;
}
.main-services-intro a {
	color: inherit;
}
.main-services-body {
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: cover; background-attachment: fixed;
    background-repeat: repeat;
}
.main-services-body .container-fluid {
	padding: 0px;
}
.main-services-body .row {
	    --bs-gutter-x: 0;
}
.main-services-body mark {
	padding: 25px 5px; border-radius: 15px; background: #118652; font-family: font2; font-size: 1.2rem;; color: #fff;
}
.main-services-body p{
	text-align: center;
}
.main-services-body .lawn-care {
}
.main-services-body .lawn-care .legend {
	padding: 75px 10px 75px 10px;  background: #252323; margin-right: 0px; margin-left: -0px; margin-top: 25px;
    background-size: cover; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .lawn-care .scene {
	/*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/yard-care-1.jpg);*/
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/mowing-4.jpg);
	background-position: center center;  height: 500px;
    background-size: cover;
}
.main-services-body .lawn-care h3 {
	font-family: font2; font-size: 35px; text-align:center;
}
.main-services-body .lawn-care p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .lawn-care img {
	border-bottom: 25px solid #fff;
}
.main-services-body .fertilization {
}
.main-services-body .fertilization .legend {
	padding: 75px 10px 75px 10px;  background: #252323; margin-right: 0px; margin-left: -0px; margin-top: 25px;
    background-size: cover; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .fertilization .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/fertilize-1.jpg);
	background-position: center center;  height: 500px;
    background-size: cover;
}
.main-services-body .fertilization h3 { 
	font-family: font2; font-size: 35px; text-align:center;
}
.main-services-body .fertilization p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .fertilization img {
	border-bottom: 25px solid #fff;
}
.main-services-body .aeration {
}
.main-services-body .aeration .legend {
	padding: 75px 10px 75px 10px;  background: #252323; margin-right: 0px; margin-left: -0px; margin-top: 25px;
    background-size: cover; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .aeration .scene {
	/*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/aerate-1.jpg);*/
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/aerate-service-1.jpg);
	background-position: center center;  height: 500px;
    background-size: cover;
}
.main-services-body .aeration h3 {
	font-family: font2; font-size: 35px; text-align:center;
}
.main-services-body .aeration p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .aeration img {
	border-bottom: 25px solid #fff;
}
.main-services-body .weed-control {
}
.main-services-body .weed-control .legend {
	padding: 75px 10px 75px 10px;  background: #252323; margin-right: 0px; margin-left: -0px; margin-top: 25px;
    background-size: cover; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .weed-control .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/design-install-service-1.jpg);
	background-position: center center;  height: 500px;
    background-size: cover;
}
.main-services-body .weed-control h3 {
	font-family: font2; font-size: 35px; text-align:center;
}
.main-services-body .weed-control p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .weed-control img {
	border-bottom: 25px solid #fff;
}
.main-services-body .clean-up {
}
.main-services-body .clean-up .legend {
	padding: 75px 10px 75px 10px;  background: #252323; margin-right: 0px; margin-left: -0px; margin-top: 25px;
    background-size: cover; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .clean-up .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/clean-up-1.jpg);
	background-position: center center;  height: 500px;
    background-size: cover;
}
.main-services-body .clean-up h3 {
	font-family: font2; font-size: 35px; text-align:center;
}
.main-services-body .clean-up p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .clean-up img {
	border-bottom: 25px solid #fff;
}
.main-services-body .decorative {
}
.main-services-body .decorative .legend {
	padding: 75px 10px 75px 10px;  background: #252323; margin-right: 0px; margin-left: -0px; margin-top: 25px;
    background-size: cover; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .decorative .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/decorative-rock-1.jpg);
	background-position: center center;  height: 500px;
    background-size: cover;
}
.main-services-body .decorative h3 {
	font-family: font2; font-size: 35px; text-align:center;
}
.main-services-body .decorative p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .decorative img {
	border-bottom: 25px solid #fff;
}
.main-services-body .boulders-rock-walls {
}
.main-services-body .boulders-rock-walls .legend {
	padding: 75px 10px 75px 10px;  background: #252323; margin-right: 0px; margin-left: -0px; margin-top: 25px;
    background-size: cover; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .boulders-rock-walls .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/rock-wall-1.jpg);
	background-position: center center;  height: 500px;
    background-size: cover;
}
.main-services-body .boulders-rock-walls h3 {
	font-family: font2; font-size: 35px; text-align:center;
}
.main-services-body .boulders-rock-walls p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .boulders-rock-walls img {
	border-bottom: 25px solid #fff;
}
.main-services-body .trimming {
}
.main-services-body .trimming .legend {
	padding: 75px 10px 75px 10px;  background: #252323; margin-right: 0px; margin-left: -0px; margin-top: 25px;
    background-size: cover; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.main-services-body .trimming .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/bush-trimming-1.jpg);
	background-position: center center;  height: 500px;
    background-size: cover;
}
.main-services-body .trimming h3 {
	font-family: font2; font-size: 35px; text-align:center;
}
.main-services-body .trimming p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .trimming img {
	border-bottom: 25px solid #fff;
}
.main-services-body .sprinkler-systems {
}
.main-services-body .sprinkler-systems .legend {
	padding: 75px 10px 75px 10px;  background: #252323; margin-right: 0px; margin-left: -0px; margin-top: 25px;
    background-size: cover; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-left-width: 10px;
}
.main-services-body .sprinkler-systems .scene {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/ss-1.jpg);
	background-position: center center;  height: 500px;
    background-size: cover;
}
.main-services-body .sprinkler-systems h3 {
	font-family: font2; font-size: 35px; text-align:center;
}
.main-services-body .sprinkler-systems p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.main-services-body .sprinkler-systems img {
	border-bottom: 25px solid #fff;
}



/**** Design/Installation Page****/
.design-installation-intro {
	padding: 100px 10px;
		/*background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/services/ms-1.jpg);*/
		background: linear-gradient(0deg, #000000e0 25%, #000000e0 90%), url(/img/decorative-rock-bark/bark/dec-rock-bark-001.jpg);
	background-position: center center;
	background-attachment: fixed; color: #fff;
    background-size: cover;
	text-align:center;
}

.design-installation-intro .surrounder{
	border-radius: 20px;
	background:	rgba(0,0,0,0.75);
        background: #0000008a;
        padding: 70px 20px 70px 20px;
        height: 100%;
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        color: #fff;
	text-align:center;

}
.design-installation-intro .link-list{
		box-shadow: 2px 2px 10px black;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 15px;
		text-align:center;
		background: black; 
}
.design-installation-intro .link-list a{
		color: black;
		font-weight: 700;
		background: black;
		padding: 15px;
		width: 100%;
		background: #118652;
        font-family: font2;
		text-transform: uppercase;
		font-size:1.35rem;
		transition: transform 0.5s, background-color 0.5s, color 0.5s;
		box-shadow: 2px 2px 15px black; 
}
.design-installation-intro .link-list a:hover{
		transform: scale(1.1);
		background-color: white;
		color: #118652;
		
}


.design-installation-intro .bawks1 {
	padding: 50px;
}
.design-installation-intro .bawks2 {
 padding: 10px;
}
.design-installation-intro .bawks2:hover {
	background: #0009; box-shadow: -1px 0px 0px 0px #118652;
}
.design-installation-intro .bawks2:hover h2 {
	color: #118652; font-weight: 600;
}

.design-installation-intro h1 {
	font-family: font2; font-size: 45px; font-weight: 600; text-align: center;
}
.design-installation-intro h2 {
	padding: 15px 0px 15px 15px; border-radius: 15px; font-family: font2; font-size: 20px; letter-spacing: 2px;
}
.design-installation-intro p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center;
}
.design-installation-intro hr {
	background: #118652; height: 2px;
}
.design-installation-intro img {
	height: 100px; width: 100px;border-radius: 100%;
}
.design-installation-intro a {
	color: inherit;
}
.design-installation-body {
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%; background-attachment: fixed;
    background-repeat: repeat;
    padding: 50px 10px;
}
.design-installation-body .container-fluid {
	padding: 0px;
	text-align:center;
	
}
.design-installation-body .row {
	    --bs-gutter-x: 0;
}
.design-installation-body mark {
	padding: 25px; border-radius: 15px; background: #118652; font-family: font2; font-size: 20px; color: #fff;
}
.design-installation-body .design-process {
}
.design-installation-body .design-process .legend {
	padding: 75px 25px 75px 50px;  background: #252323; margin-right: -150px; margin-left: 150px; margin-top: 125px;
    background-size: 50%; background-attachment: fixed; position: relative; color: #fff;
    background-repeat: repeat; border: 1px solid #118652; border-right-width: 10px;
}
.design-installation-body .design-process .scene {
	/*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/yard-care-1.jpg);*/
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/before-after/cooley/before/002.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
	border-radius: 50%;
	position: relative; 
}

.design-process .scene .floating-btn{
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	transition:  opacity 0.5s; ; 
	opacity: 0;
}

.floating-btn a{
	padding: 10px;
	background:  #118652;
	color: white;
	font-size:1.65rem;
	display: inline-flex;
	font-family: font2;
	border-radius: 15px;
	font-weight: 700;
	text-align:center;
	box-shadow:4px 4px 10px black; 
}
.design-process .scene:hover .floating-btn{
	opacity: 1;

	visibility: visible;

	
}



.design-installation-body .design-process h3 {
    font-family: font2;
    font-size: 35px;
    color: #118652;
    font-weight: 700;
}
.design-installation-body .design-process p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.design-installation-body .design-process img {
	border-bottom: 25px solid #fff;
}


.design-process .scene.why-our-company{
	
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/before-after/cooley/after/Cooley%201.jpg);
	background-position: center center;  height: 750px;
    background-size: cover;
    margin: 15px;
	
}

.middler{
	
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/decorative-rock-bark/bark/dec-rock-bark-003.jpg);
	background-position:fixed;
	background-size: cover;
	height:auto;
	text-align:center;
}
.middler .service-box{
    border-radius: 20px;
    background: rgba(0,0,0,0.75);
    background: #0000008a;
    padding: 100px 10px 100px 10px;
    height: 100%;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    color: #fff;
	
}

.middler h3{
	font-size: 2rem;
	text-align:center;
	font-family: font2;
}

.middler p{
	font-family: font2;
}
.middler i{
	font-size: 2rem;
}
.middler ul{
	list-style-type:none;
	padding:0;
}
.middler p span{
	font-weight: 700;
	font-size: 1.4rem;
	text-decoration: underline;
}

.middler .option{
	padding:15px; 
	background: transparent;
	transition: background 0.3s;
	border-radius: 20px; 
}
.middler .option:hover{
	background: #118652;
}



/*Careers Page*/

.careers {
	padding: 130px 10px 130px 10px;
	 background: linear-gradient(0deg, #000000c7 25%, #000000c7 90%), url(/img/landscape-maintenance/fall-cleanup/fall-cleanup-004.jpeg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; color: #fff;
}

.careers h1 {
	font-family: font2; font-size: 2.1rem; font-weight: 600; line-height: 45px; text-align: center;
}

.careers h2 {
	font-family: font2; font-size: 2rem; text-align: center; text-decoration: underline;
}
.careers h2 span {
	font-size: 2.5rem; font-weight: 600; color: #118652;
}
.careers h3 {
	font-family: font2; text-align: center; font-size: 1.7rem;
}
.careers p {
	font-family: font2; font-size: 1rem; line-height: 35px; text-align: center; margin: 0px 5px 0px 5px;
}
.careers p i{
	color: #118652;
	font-weight: 800;
	font-size: 1.2rem;
}
.careers a {
	color: inherit;
}
.careers a:hover {
	color: inherit;
}


.careers .requirements {
    background: #0000008a;
    padding: 15px;
}

.careers .requirements h2 {
	font-family: font2; font-size: 2rem; text-align: center; text-decoration: underline;
}

.careers .requirements ul {
	list-style-type: decimal;
	list-style-position: inside; 
	padding: 10px; 
}
.careers .requirements ul li{
	padding: 10px;
	font-size: 1.5rem;
}
.careers .requirements li p {
	font-size: 1.3rem; 
}
/*Careers Page*/

/***** LAWN CARE NORTHERN UTAH START *****/

.lawn-care-northern-utah-intro {
	padding: 175px 0px 175px 0px;
	background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/lawn-care/lawn-care-01.jpg);
	background-position: center center; 
    background-size: cover;
}
.lawn-care-northern-utah-intro h1 {
	font-family: font2; font-size: 2.5rem; font-weight: 600; letter-spacing: 3px;
}
.lawn-care-northern-utah-intro h1 span {
	font-size: 20px; font-weight: 500;
}
.lawn-care-northern-utah-intro h1 span u {
	font-size: 25px; font-weight: 600; letter-spacing: 3px;color: #23da89;
}
.lawn-care-northern-utah-intro h2 {
	font-family: font2; font-size: 25px; font-weight: 600; text-shadow: 1px 1px 1px #000; letter-spacing: 2px;
}
.lawn-care-northern-utah-intro h3 {
	font-size: 20px; padding: 15px; width: fit-content; border-radius: 15px;
	    background: #118652;font-family: font2; letter-spacing: 2px;
    color: #fff;
}
.lawn-care-northern-utah-intro h4 {
	font-size: 20px; padding: 15px; width: fit-content; border-radius: 15px;
	    background: #fff;font-family: font2; letter-spacing: 2px;
    color: #118652;
}
.lawn-care-northern-utah-intro  a {
	color: inherit;
}
.lawn-care-northern-utah-intro  a:hover {
	color: inherit;
}
.lawn-care-northern-utah-intro .cliq1 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/lawn-care/trimming-01.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq1:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}
.lawn-care-northern-utah-intro .cliq2 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/lawn-care/cleaning-upkeep-2.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq2:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}
.lawn-care-northern-utah-intro .cliq3 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/lawn-care/disposal-22.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq3:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}
.lawn-care-northern-utah-intro .cliq4 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/lawn-care/routine-maintenance-2.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq4:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}


.lawn-care-northern-utah-intro .cliq5 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/aeration/aeration-01.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq5:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}

.lawn-care-northern-utah-intro .cliq6 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/aeration/fertilization-02.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq6:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}


.lawn-care-northern-utah-intro .cliq7 {
	background: linear-gradient(0deg, #1186528c 25%, #1186528c 90%), url(/img/aeration/weed-control-02.jpg);
    background-size: cover; height: 225px; width: 225px; background-position: center center; border-radius: 100%;
    background-repeat: repeat; padding-top: 90px;
}
.lawn-care-northern-utah-intro .cliq7:hover {
	box-shadow: 1px 1px 10px 3px #fff; color: #fff;
}

.lawn-care-northern-utah-intro .direct {
	text-align: center; color: #fff;
}
.lawn-care-northern-utah-body {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}



.lawn-care-northern-utah-body .container-fluid {
	padding: 0px;
}
.lawn-care-northern-utah-body .trim-clip {
	transition: 2s;
}

.lawn-care-northern-utah-body .trim-clip .deets {
	display: block!important;
	background: #118652a3; 
}

.lawn-care-northern-utah-body .trim-clip:hover {

}
.lawn-care-northern-utah-body .trim-clip:hover h3 {
	display: block; background: #ffffff54;
}
.lawn-care-northern-utah-body .trim-clip:hover .know {
	margin-left: 0;  transform: none;
}
.lawn-care-northern-utah-body .trim-clip .know {
	    background: #fff;
    padding: 65px 15px 65px 15px;
    height: auto;
    width: auto;
    border-radius: 20px;
    position: relative;
    margin-left: 0;
    margin-right: -0;
    margin-top: 0;
    border-left: 3px solid #064127;
    border-top: 1px solid #064127;
    border-bottom: 1px solid #064127;
	
	transition: 2s;
}
.lawn-care-northern-utah-body .trim-clip .present {
	/*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/trimming-01.jpg);*/
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/lawn-trimming.jpg);
    background-size: cover; height: 100%; background-position: bottom left;
    background-repeat: repeat; background-attachment: fixed;height: 400px;
}
.lawn-care-northern-utah-body .trim-clip  .deets {
	    padding: 15px 45px 15px 30px;
    position: relative; color: #fff;
    top: -0%; display: none;transition: 3s; 
}
.lawn-care-northern-utah-body .trim-clip:hover .deets {
    display: block;
    margin-bottom: 0;
    top: 0;
}
.lawn-care-northern-utah-body .trim-clip h2 {
	font-family: font2; font-size: 35px; text-align: center; color: #118652; font-weight: 600;
}
.lawn-care-northern-utah-body .trim-clip h3 {
    font-family: font2;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 25px;
	width: 100%;
	color: #118652;
    margin-left: 100px;
	 margin-right: -100px;
    display: none;
	position: relative;
	margin-top: 35px;
}
.lawn-care-northern-utah-body .trim-clip h3:hover {
	background: #fff; box-shadow: 0px 0px 0px 2px #118652; border-radius: 50px; transition: 2s;
}
.lawn-care-northern-utah-body .trim-clip h4 {
	font-family: font2; font-weight: 600;
}
.lawn-care-northern-utah-body .trim-clip h5 {
	font-family: font2; text-decoration: underline; font-weight: 600; letter-spacing: 1px; font-size: 17px;
}
.lawn-care-northern-utah-body .trim-clip li {
	font-family: font2; font-size: 15px;
}
.lawn-care-northern-utah-body .trim-clip p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; margin: 0px 25px 0px 25px;
}












.lawn-care-northern-utah-body .upkeep {
transition: 2s;
background: #118652a3;

display: flex;
flex-direction: column;
justify-content: center;
align-items: center; 
}
.lawn-care-northern-utah-body .upkeep:hover {
	background: #118652a3; 

}
.lawn-care-northern-utah-body .upkeep .deets {
	display: block !important;

}

.lawn-care-northern-utah-body .upkeep:hover h3 {
	display: block; background: #ffffff54;
}

.lawn-care-northern-utah-body .upkeep:hover .know {
    margin-left: -0;
    transform: none;
}
.lawn-care-northern-utah-body .upkeep .know {
	background: #fff;
    padding: 50px 25px 50px 25px;
    height: auto;
    width: auto;
    border-radius: 20px;
    position: relative;
    margin-left: -0;
    margin-right: 0;
    margin-top: 15px;
    border-right: 3px solid #064127;
	border-top:  1px solid #064127;
	border-bottom:  1px solid #064127;
transition: 3s;
}
.lawn-care-northern-utah-body .upkeep .present {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/cleaning-upkeep.jpg);
    background-size: cover; height: 100%; background-position: center center;
    background-repeat: repeat; background-attachment: fixed;height: 400px;
}
.lawn-care-northern-utah-body .upkeep  .deets {
	    padding: 15px 45px 15px 30px;
    position: relative; color: #fff;
    top: 0%; display: none;
transition: 3s;	
}
.lawn-care-northern-utah-body .upkeep:hover .deets {
    display: block;
    margin-bottom: 0;
    top: 0;
}
.lawn-care-northern-utah-body .upkeep h2 {
	font-family: font2; font-size: 35px; text-align: center; color: #118652; font-weight: 600;
}
.lawn-care-northern-utah-body .upkeep h3 {
    font-family: font2;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 25px;
	width: 100%;
	color: #118652;
    margin-left: -0;
	 margin-right: 0;
    display: none;
	position: relative;
	margin-top: 35px;
}
.lawn-care-northern-utah-body .upkeep h3:hover {
	background: #fff; box-shadow: 0px 0px 0px 2px #118652; border-radius: 50px; transition: 2s;
}
.lawn-care-northern-utah-body .upkeep h4 {
	font-family: font2; font-weight: 600;
}
.lawn-care-northern-utah-body .upkeep h5 {
	font-family: font2; text-decoration: underline; font-weight: 600; letter-spacing: 1px; font-size: 17px;
}
.lawn-care-northern-utah-body .upkeep li {
	font-family: font2; font-size: 15px;
}
.lawn-care-northern-utah-body .upkeep p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; margin: 0px 25px 0px 25px;
}








.lawn-care-northern-utah-body .disposal {
transition: 2s;
	
}
.lawn-care-northern-utah-body .disposal:hover {
	background: #11865261;
}
.lawn-care-northern-utah-body .disposal:hover h3 {
	display: block; background: #ffffff54; transition: 3s;
}
.lawn-care-northern-utah-body .disposal:hover .know {
	margin-left: 750px;  transform: rotateZ(360deg);
}
.lawn-care-northern-utah-body .disposal .know {
	    background: #fff;
    padding: 115px 25px 25px 25px;
    height: auto;
    width: 575px;
    border-radius: 100%;
    position: relative;
    margin-left: 0;
    margin-right: -0;
    margin-top: 75px;
    border-left: 3px solid #064127;
    border-top: 1px solid #064127;
    border-bottom: 1px solid #064127;
}
.lawn-care-northern-utah-body .disposal .present {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/disposal-2.jpg);
    background-size: cover; height: 100%; background-position: center center;
    background-repeat: repeat; background-attachment: fixed; height: 400px;
}
.lawn-care-northern-utah-body .disposal  .deets {
	    padding: 15px 15px 15px 15px;
    position: relative; color: #fff;
    top: -50%; display: none;
	transition: 3s;
}
.lawn-care-northern-utah-body .disposal:hover .deets {
	display: block;     margin-bottom: -430px;
    top: -80%;
}
.lawn-care-northern-utah-body .disposal h2 {
	font-family: font2; font-size: 35px; text-align: center; color: #118652; font-weight: 600;
}
.lawn-care-northern-utah-body .disposal h3 {
    font-family: font2;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 25px;
	width: 100%;
	color: #118652;
    margin-left: 100px;
	 margin-right: -100px;
    display: none;
	position: relative;
	margin-top: 35px;
}
.lawn-care-northern-utah-body .disposal h3:hover {
	background: #fff; box-shadow: 0px 0px 0px 2px #118652; border-radius: 50px; transition: 2s;
}
.lawn-care-northern-utah-body .disposal h4 {
	font-family: font2; font-weight: 600;
}
.lawn-care-northern-utah-body .disposal h5 {
	font-family: font2; text-decoration: underline; font-weight: 600; letter-spacing: 1px; font-size: 17px;
}
.lawn-care-northern-utah-body .disposal li {
	font-family: font2; font-size: 15px;
}
.lawn-care-northern-utah-body .disposal p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; margin: 0px 25px 0px 25px;
}






.lawn-care-northern-utah-body .maintenance {
transition: 2s;
	background: #118652bf;
}
.lawn-care-northern-utah-body .maintenance:hover {
	background: #118652bf;
}
.lawn-care-northern-utah-body .maintenance:hover h3 {
	display: block; background: #ffffff54;
}
.lawn-care-northern-utah-body .maintenance:hover .know {
	margin-left: -0;  transform: none;
}
.lawn-care-northern-utah-body .maintenance .know {
	background: #fff;
    padding: 60px 15px 60px 15px;
    height: auto;
    width: auto;
    border-radius: 20px;
    position: relative;
    margin-left: -0;
    margin-right: 0;
    margin-top: 0;
    border-right: 3px solid #064127;
	border-top:  1px solid #064127;
	border-bottom:  1px solid #064127;
	transition: 3s;
}
.lawn-care-northern-utah-body .maintenance .present {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/lawn-care/routine-maintenance.jpg);
    background-size: cover; height: 100%; background-position: center center;
    background-repeat: repeat; background-attachment: fixed; height: 400px;
}
.lawn-care-northern-utah-body .maintenance  .deets {
	    padding: 15px 15px 15px 15px;
    position: relative; color: #fff;
    top: -0%; display: block;
transition: 2s;
}

.lawn-care-northern-utah-body .maintenance:hover .deets {
	display: block;     margin-bottom: -0;
    top: -0%;
}
.lawn-care-northern-utah-body .maintenance h2 {
	font-family: font2; font-size: 35px; text-align: center; color: #118652; font-weight: 600;
}
.lawn-care-northern-utah-body .maintenance h3 {
    font-family: font2;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 25px;
	width: 100%;
	color: #118652;
    margin-left: -0;
	 margin-right: 0;
    display: none;
	position: relative;
	margin-top: 35px;
}
.lawn-care-northern-utah-body .maintenance h3:hover {
	background: #fff; box-shadow: 0px 0px 0px 2px #118652; border-radius: 50px; transition: 2s;
}
.lawn-care-northern-utah-body .maintenance h4 {
	font-family: font2; font-weight: 600;
}
.lawn-care-northern-utah-body .maintenance h5 {
	font-family: font2; text-decoration: underline; font-weight: 600; letter-spacing: 1px; font-size: 17px;
}
.lawn-care-northern-utah-body .maintenance li {
	font-family: font2; font-size: 15px;
}
.lawn-care-northern-utah-body .maintenance p {
	font-family: font2; font-size: 1rem; line-height: 35px; text-align: center; margin: 0px 25px 0px 25px;
}
/***** LAWN CARE NORTHERN UTAH END *****/


/***** SPRINKLER SYSTEMS START *****/

.sprinkler-systems-northern-utah-intro {
padding: 175px 0px 175px 0px;
	background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/ss-3.jpg);
	background-position: center center; 
    background-size: cover;
}
.sprinkler-systems-northern-utah-intro .bawks1 {
	background: #fff; padding: 30px 0px 30px 0px; border-radius: 100%;
}
.sprinkler-systems-northern-utah-intro h1 {
	font-family: font2; font-weight: 600; font-size: 2rem; color: #fff; letter-spacing: 3px; text-align: center;
}
.sprinkler-systems-northern-utah-intro h2 {
	font-weight: 500; font-size: 25px; letter-spacing: 2px; text-align: center; color: #118652; font-family: font2;
}
.sprinkler-systems-northern-utah-intro p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center; color: #fff;
}
.sprinkler-systems-northern-utah-intro hr {
	height: 2px; background: #118652;
}
.sprinkler-system-split {
	padding: 50px 15px 50px 15px; background: #118652; color: #fff;
}
.sprinkler-system-split h2 {
	font-family: font2; font-size: 35px; font-weight: 600; text-shadow: 1px 1px 1px #000; line-height: 65px;
}
.sprinkler-system-split h3 {
	font-family: font2; font-size: 25px; line-height: 50px;
}
.sprinkler-system-split h3 u {
 font-size: 40px; text-decoration: none;
}
.sprinkler-system-split h3 i {
	font-size: 20px;
}
.sprinkler-system-split p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.sprinkler-system-services {
	padding: 100px 0px 100px 0px; color: #fff;
}
.sprinkler-system-services h3 {
	font-family: font2; font-size: 30px; text-align: center;
}
.sprinkler-system-services h3 span {
	font-weight: 600; color: #118652;
}
.sprinkler-system-services p {
	font-family: font2; font-size: 17px; line-height: 35px; text-align: center;
}
.sprinkler-system-services .service-card-1 {
	padding: 50px 10px; background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/sss-7.jpg);
	background-position: center center; height: 100%;
    background-size: cover; background-repeat: no-repeat;
}
.sprinkler-system-services .service-card-2 {
	padding: 50px 10px; background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/sss-1.jpg);
	background-position: center center;  height: 100%;
    background-size: cover; background-repeat: no-repeat;
}
.sprinkler-system-services .service-card-3 {
	padding: 50px 10px; background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/sss-5.jpg);
	background-position: center center;  height: 100%;
    background-size: cover; background-repeat: no-repeat;
}
.sprinkler-system-services .service-card-4 {
	padding: 50px 10px; background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/sss-6.jpg);
	background-position: center center;  height: 100%;
    background-size: cover; background-repeat: no-repeat;
}
.sprinkler-system-services .service-card-5 {
	padding: 50px 10px; background: linear-gradient(0deg, #000000d6 25%, #000000d6 90%), url(/img/sprinkler-systems/sss-3.jpg);
	background-position: center center;  height: 100%;
    background-size: cover; background-repeat: no-repeat;
}
.sprinkler-system-services .service-card-2 {
	padding: 50px 10px;
}
.sprinkler-system-services .service-card-3 {
	padding: 50px 10px;
}
.sprinkler-system-services .service-card-4 {
	padding: 50px 10px;
}
.sprinkler-system-services .service-card-5 {
	padding: 50px 10px;
}
.sprinkler-system-design-install {
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.sprinkler-system-design-install .container-fluid {
	padding: 0px;
}
.sprinkler-system-design-install .row {
	    --bs-gutter-x: 0;
}
.sprinkler-system-design-install h2 {
	font-family: font2; font-weight: 600; font-size: 2.3rem;
	text-align: center; 
}
.sprinkler-system-design-install h2 span {
	color: #118652;
}
.sprinkler-system-design-install h3 {
	font-family: font2; font-size: 18px; text-decoration: underline;color: #118652;
}
.sprinkler-system-design-install h4 {
	font-family: font2; font-size: 23px;
}
.sprinkler-system-design-install p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.sprinkler-system-design-install li {
	font-family: font2; font-size: 15px; line-height: 30px;
}
.sprinkler-system-design-install .phase1 {
	
}
.sprinkler-system-design-install .phase1 hr {
	width: 100%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase1 .info {
	padding: 50px 10px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; 
    background-size: cover; height: 400px;

}
.sprinkler-system-design-install .phase1 .imagery {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-01.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-001.jpg);
    background-size: cover; height: 400px;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase2 {
	
}
.sprinkler-system-design-install .phase2 hr {
	width: 100%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase2 .info {
	padding: 50px 10px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    background-size: cover; height: 400px;
	
}
.sprinkler-system-design-install .phase2 .imagery {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-002.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-002-measure.jpg);
    background-size: cover; height: 400px;
    background-repeat: no-repeat;
	background-position: 50%;
}
.sprinkler-system-design-install .phase3 {
	
}
.sprinkler-system-design-install .phase3 hr {
	width: 100%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase3 .info {
	padding: 50px 10px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    background-size: cover; height: 400px;

}
.sprinkler-system-design-install .phase3 .imagery {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-003.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-003-updated.JPG);
	 background-position: bottom center;
    background-size: cover; height: 400px;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase4 {
	
}
.sprinkler-system-design-install .phase4 hr {
	width: 100%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase4 .info {
	padding: 50px 10px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    background-size: cover; height: 400px;
	
}
.sprinkler-system-design-install .phase4 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-04.jpg);
    background-size: cover; height: 400px;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase5 {
	
}
.sprinkler-system-design-install .phase5 hr {
	width: 100%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase5 .info {
	padding: 50px 10px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    background-size: cover; height: 400px;
	
}
.sprinkler-system-design-install .phase5 .imagery {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-05.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-005-adjust.jpg);
    background-size: cover; height: 400px;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase6 {
	
}
.sprinkler-system-design-install .phase6 hr {
	width: 100%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase6 .info {
	padding: 50px 10px;
}
.sprinkler-system-design-install .phase6 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-06.jpg);
    background-size: cover; height: 100%;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase7 {
	
}
.sprinkler-system-design-install .phase7 hr {
	width: 100%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase7 .info {
	padding: 50px 10px;
}
.sprinkler-system-design-install .phase7 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-07.jpeg);
    background-size: cover; height: 100%;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase8 {
	
}
.sprinkler-system-design-install .phase8 hr {
	width: 100%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase8 .info {
	padding: 50px 10px;
}
.sprinkler-system-design-install .phase8 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-08.jpg);
    background-size: cover; height: 100%;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase9 {
	
}
.sprinkler-system-design-install .phase9 hr {
	width: 100%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase9 .info {
	padding: 50px 10px;
}
.sprinkler-system-design-install .phase9 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-09.jpg);
    background-size: cover; height: 100%;
    background-repeat: no-repeat;
}
.sprinkler-system-design-install .phase10 {
	
}
.sprinkler-system-design-install .phase10 hr {
	width: 100%; height: 2px; background: #118652;
}
.sprinkler-system-design-install .phase10 .info {
	padding: 50px 10px;
}
.sprinkler-system-design-install .phase10 .imagery {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-10.jpg);
    background-size: cover; height: 100%;
    background-repeat: no-repeat;
}
/***** SPRINKLER SYSTEMS END *****/


/***** AERATION START *****/

.aeration-fertilization-intro {
	 background: linear-gradient(0deg, #000000ba 25%, #000000ba 90%), url(/img/aeration/aeration-02.jpg);
    background-size: cover; height: 100%;padding: 100px 15px 100px 15px; 
    background-repeat: no-repeat; margin-top: 65px;
}
.aeration-fertilization-intro  .sq1 {
	background: #0009; padding: 50px 10px 50px 10px; border-top-right-radius: 15px; border-top-left-radius: 15px; border: 1px solid #118652
}
.aeration-fertilization-intro .box1 {  background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/aeration-01.jpeg);
    background-size: cover; background-position: center; border-bottom-left-radius: 0;
    background-repeat: no-repeat; height: 250px; width: 100%; 
}
.aeration-fertilization-intro .box1:hover {
	background: linear-gradient(0deg, #000000f2 25%, #000000f2 90%), url(/img/aeration/aeration-01.jpeg);
    background-size: cover; background-position:
}
.aeration-fertilization-intro .box1:hover .subserv {
	display: block;
}
.aeration-fertilization-intro .box2 {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/fertilization-02.jpg);
    background-size: cover; height: 250px; width: 100%; background-position: center; border-left: 1px solid #118652; border-right: 1px solid #118652;
    background-repeat: no-repeat; 
}
.aeration-fertilization-intro .box2:hover {
	background: linear-gradient(0deg, #000000f2 25%, #000000f2 90%), url(/img/aeration/fertilization-01.jpg);
    background-size: cover; background-position:
}
.aeration-fertilization-intro .box2:hover .subserv {
	display: block;
}
.aeration-fertilization-intro .box3 {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/weed-control-02.jpg);
    background-size: cover;  height: 250px; width: 100%; background-position: center; border-bottom-right-radius: 0;
    background-repeat: no-repeat; 
}
.aeration-fertilization-intro .box3:hover {
	background: linear-gradient(0deg, #000000f2 25%, #000000f2 90%), url(/img/aeration/weed-contro-02.jpg);
    background-size: cover; background-position:
}
.aeration-fertilization-intro .box3:hover .subserv {
	display: block;
}
.aeration-fertilization-intro .care {
	position: relative; 
}
.aeration-fertilization-intro .subserv {
	position: relative; left: 0; display: none; color: #118652;
}
.aeration-fertilization-intro .container-fluid {
	padding: 0px;
}
.aeration-fertilization-intro .care .row {
	    --bs-gutter-x: 0;
}
.aeration-fertilization-intro h1 {
	font-family: font2; font-size: 2rem; text-align: center; color: #118652; font-weight: 600; letter-spacing: 2px;
}
.aeration-fertilization-intro h2 {
	    padding: 30px;
    background: #000000f2;
    width: 100%;
	text-shadow: 1px 1px 1px #000;
	font-weight: 600;
    font-size: 20px;
	text-align: center;
    letter-spacing: 2px;
    font-family: font2;
    /*border-bottom-right-radius: 100px;
	border-bottom-left-radius: 100px;*/
    color: rgba(17, 134, 82, 1);

}
.aeration-fertilization-intro  p {
	font-size: 17px; text-align: center; color: #fff; font-family: font2; line-height: 35px; margin: 0px 5px 0px 5px;
}
.aeration-fertilization-intro hr {
    height: 3px;
    background: #118652;
    width: 100%;
    position: relative;
    left: 0%;
    margin: 25px 0px 25px 0px;
}
.aeration-split {
	padding: 50px 0px 50px 0px; background: #9c9ea1; color: #fff;
}
.aeration-split .spot1 {
	padding: 10px; text-align: center;
}
.aeration-split h2 {
	font-family: font2; font-weight: 600; text-align: center; font-size: 40px; letter-spacing: 3px;
}
.aeration-split h3 {
	font-size: 65px; text-align: center; font-family: font2;
}
.aeration-split h4 {
	font-family: font2; font-size: 20px; text-decoration: underline;
}
.aeration-split h5 {
	font-size: 15px;
}
.aeration-services {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat;
}
.aeration-services .container-fluid {
	padding: 0px;
}
.aeration-services .rec1 {
	padding: 100px 10px 100px 10px;
}
.aeration-services .visual {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/aeration-01.jpeg);
    background-size: cover; background-position: center; height: 430px;
    background-repeat: no-repeat; 
}
.aeration-services h2 {
	font-family: font2; font-weight: 600; letter-spacing: 2px; font-size: 30px; text-align:center;
}
.aeration-services h3 {
	font-family: font2; font-size: 20px; text-decoration: underline; color: #118652; text-align:center; 
}
.aeration-services p {
	font-family: font2; font-size: 17px; line-height: 30px; text-align:center;
}
.aeration-services p span {
	font-size: 15px; 
}
.aeration-services img {
	background: #118652a1;
    max-width: 100%;
    border-radius: 100%;
    padding: 15px;
}
.fertilization-services {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat;
}
.fertilization-services .container-fluid {
	padding: 0px;
}
.fertilization-services .rec1 {
	padding: 100px 10px 100px 10px;
}
.fertilization-services .visual {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/fertilization-02.jpg);
    background-size: cover; background-position: center; height: 430px;
    background-repeat: no-repeat; 
}
.fertilization-services h2 {
	font-family: font2; font-weight: 600; letter-spacing: 2px; font-size: 30px; text-align:center;
}
.fertilization-services h3 {
	font-family: font2; font-size: 20px; text-decoration: underline; color: #118652; text-align:center;
}
.fertilization-services p {
	font-family: font2; font-size: 17px; line-height: 30px; text-align:center;
}
.fertilization-services p span {
	font-size: 15px; 
}
.fertilization-services img {
	background: #118652a1;
    max-width: 100%;
    border-radius: 100%;
    padding: 15px;
}

.weed-control-services {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat; text-align:center;
}
.weed-control-services .container-fluid {
	padding: 0px;
}
.weed-control-services .rec1 {
	padding: 100px 10px 100px 10px;
}
.weed-control-services .visual {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/aeration/weed-control-02.jpg);
    background-size: cover; background-position: center; height: 430px;
    background-repeat: no-repeat; 
}
.weed-control-services h2 {
	font-family: font2; font-weight: 600; letter-spacing: 2px; font-size: 30px;
}
.weed-control-services h3 {
	font-family: font2; font-size: 20px; text-decoration: underline; color: #118652; 
}
.weed-control-services p {
	font-family: font2; font-size: 1rem; line-height: 30px;
}
.weed-control-services p span {
	font-size: 15px; 
}
.weed-control-services img {
	background: #118652a1;
    max-width: 100%;
    border-radius: 100%;
    padding: 15px;
}
/***** AERATION END *****/

/***** DECORATIVE END *****/
.decorative-intro {
	padding: 80px 10px 80px 10px;
	 background: linear-gradient(0deg, #000000c7 25%, #000000c7 90%), url(/img/rock-bark/bark-5.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; color: #fff;
}
.decorative-intro .rock {
	/*background: linear-gradient(180deg, #000000e3 35%, rgba(255,255,255,0) 35%), url(/img/rock-bark/rock-2.jpg);*/
	background: linear-gradient(180deg, #000000e3 35%, rgba(255,255,255,0) 35%), url(/img/rock-bark/pisgah-cropped.jpg);
	
	
	
    background-size: cover; background-position: top top; height: 325px; padding: 25px; width: auto;
    background-repeat: no-repeat; margin: 10px 0px 10px 0px; border-radius: 100%;
}
.decorative-intro .bark {
	/*background: linear-gradient(180deg, #000000e3 35%, rgba(255,255,255,0) 35%), url(/img/rock-bark/bark-3.jpg);*/
	background: linear-gradient(180deg, #000000e3 35%, rgba(255,255,255,0) 35%), url(/img/rock-bark/dec-bark.jpg);
    background-size: cover;
	background-position: revert-layer;
	height: 325px; padding: 25px; width: auto;
    background-repeat: no-repeat;  margin: 10px 0px 10px 0px; border-radius: 100%;
}
.decorative-intro h1 {
	font-family: font2; font-size: 2.3rem; font-weight: 600; line-height: 45px; text-align: center;
}
.decorative-intro h2 {
	font-family: font2; font-size: 1.3rem; text-align: center;
}
.decorative-intro h2 span {
	font-size: 50px; font-weight: 600; color: #118652;
}
.decorative-intro h3 {
	font-family: font2; text-align: center; font-size: 20px;
}
.decorative-intro p {
	font-family: font2; font-size: 1rem; line-height: 35px; text-align: center; margin: 0px 5px 0px 5px;
}
.decorative-intro a {
	color: inherit;
}
.decorative-intro a:hover {
	color: inherit;
}
.decorative-rock {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat;
	text-align:center; 
}
.decorative-rock .container-fluid {
	padding: 0px;
}
.decorative-rock .row {
	    --bs-gutter-x: 0;
}
.decorative-rock .read {
	padding: 75px 10px 75px 10px;
}
.decorative-rock .see {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/rock-bark/rock-2.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/rock-bark/pisgah-cropped.jpg);
    background-size: cover; background-position: center; height: 400px;
    background-repeat: no-repeat;
}
.decorative-rock h2 {
	font-family: font2; font-weight: 600; font-size: 35px; letter-spacing: 1px;
}
.decorative-rock h2 span {
	color: #118652; font-size: 40px; text-transform: uppercase;
}
.decorative-rock h3 {
	font-family: font2; font-weight: 500; font-size: 20px; letter-spacing: 2px; text-decoration: underline; color: #118652; 
}
.decorative-rock p {
	font-family: font2; font-size: 17px; line-height: 35px; color: #000;
}
.decorative-rock ul {
	padding: 0; 
}

.decorative-rock li {
	font-family: font2; font-size: 15px; line-height: 30px; color: #000; margin-right: 0;
}

.decorative-bark {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat;
	text-align: center; 
}
.decorative-bark .container-fluid {
	padding: 0px;
}
.decorative-bark .row {
	    --bs-gutter-x: 0;
}
.decorative-bark .read {
	padding: 75px 5px 75px 5px;
}
.decorative-bark .see {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/rock-bark/bark-3.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/rock-bark/dec-bark.jpg);
    background-size: cover; background-position: center; height: 400px;
    background-repeat: no-repeat;
}
.decorative-bark h2 {
	font-family: font2; font-weight: 600; font-size: 35px; letter-spacing: 1px;
}
.decorative-bark h2 span {
	color: #118652; font-size: 40px; text-transform: uppercase;
}
.decorative-bark h3 {
	font-family: font2; font-weight: 500; font-size: 20px; letter-spacing: 2px; text-decoration: underline; color: #118652; 
}
.decorative-bark p {
	font-family: font2; font-size: 17px; line-height: 35px; color: #000;
}
.decorative-bark ul {
	padding: 0; 
}
.decorative-bark li {
	font-family: font2; font-size: 15px; line-height: 30px; color: #000; margin-right: 0px;
}
/***** DECORATIVE END *****/
.seasonal-intro {
		padding: 80px 10px 80px 10px;
	 background: linear-gradient(0deg, #000000c7 25%, #000000c7 90%), url(/img/seasonal/season-3.jpg);
    background-size: cover; background-position: center; height: 100%;
    background-repeat: no-repeat; color: #fff;
}
.seasonal-intro .spring {
	
}
.seasonal-intro .fall {
	
}
.seasonal-intro h1 {
	font-family: font2; font-size: 2rem; text-align: center; letter-spacing: 2px; font-weight: 600;
}
.seasonal-intro h2 {
	font-family: font2; font-size: 1.5rem; letter-spacing: 2px; font-weight:600; color: #118652; text-decoration: underline;
	
	text-align:center;
}
.seasonal-intro h3 {
	font-family: font2; font-size: 1.1rem; letter-spacing: 2px; font-weight: 500;
	
	text-align:center;
	
}
.seasonal-intro p {
	font-family: font2; font-size: 1rem; line-height: 35px; text-align: center; margin: 0px 10px 0px 10px;
}
.seasonal-intro img {
	height: 300px; width: 300px; border-radius: 100%;
}
.seasonal-intro a {
	color: inherit;
}
.seasonal-intro a:hover {
	color: inherit;
}

.spring {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat;
	text-align: center; 
}

.spring .container-fluid {
	padding: 0px;
}
.spring .row {
	    --bs-gutter-x: 0;
}
.spring .read {
	padding: 75px 10px 75px 10px;
}
.spring ul{
	list-style-type: none;
	padding: 0; 
}
.spring .see {
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/seasonal/season-1.jpg);
    background-size: cover; background-position: center; height: 400px;
    background-repeat: no-repeat;
}
.spring h2 {
	font-family: font2; font-weight: 600; font-size: 35px; letter-spacing: 1px;
}
.spring h2 span {
	color: #118652; font-size: 2rem; text-transform: uppercase;
}
.spring h3 {
	font-family: font2; font-weight: 500; font-size: 20px; letter-spacing: 2px; text-decoration: underline; color: #118652; 
}
.spring p {
	font-family: font2; font-size: 1rem; line-height: 35px; color: #000;
}
.spring li {
	font-family: font2; font-size: 15px; line-height: 30px; color: #000; margin-right: 0px;
}

.fall {
	background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: cover; 
    background-attachment: fixed;
    background-repeat: repeat;
	text-align: center; 

}
.fall .container-fluid {
	padding: 0px;
}
.fall .row {
	    --bs-gutter-x: 0;
}
.fall ul{
	list-style-type: none;
	padding: 0; 
}
.fall .read {
	padding: 75px 10px 75px 10px;
}
.fall .see {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/seasonal/season-2.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/seasonal/fall-cleanup-3.jpg);
    background-size: cover; background-position: center; height: 400px;;
    background-repeat: no-repeat;
}



.fall h2 {
	font-family: font2; font-weight: 600; font-size: 35px; letter-spacing: 1px;
}
.fall h2 span {
	color: #118652; font-size: 40px; text-transform: uppercase;
}
.fall h3 {
	font-family: font2; font-weight: 500; font-size: 20px; letter-spacing: 2px; text-decoration: underline; color: #118652; 
}
.fall p {
	font-family: font2; font-size: 1rem; line-height: 35px; color: #000;
}
.fall li {
	font-family: font2; font-size: 15px; line-height: 30px; color: #000; margin-right: 0;
}

.fall .fall-clean-01{background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/dd-fall-01.jpg);     background-size: cover;
    background-position: center;
    height: 500px;
    background-repeat: no-repeat;}
.fall .fall-clean-02{background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/dd-fall-02.jpg);     background-size: cover;
    background-position: center;
    height:500px;
    background-repeat: no-repeat;}
.fall .fall-clean-03{background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/dd-fall-03.jpg);     background-size: cover;
    background-position: center;
    height: 500px;
    background-repeat: no-repeat;}
.seasonal-closing p {
    font-family: font2;
    font-size: 17px;
    line-height: 35px;
    text-align: center;
    margin: 0px 20px 0px 20px;
}
/***** CLEAN-UP START *****/

/***** CLEAN-UP END *****/




/**** Gallery Section ****/
.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}

/**** Areas We Service Section ****/
/*.area:nth-child(odd) {*/
/*	padding: 75px 0 75px 0; background: rgb(255,255,255);*/
/*}*/
/*.area:nth-child(even) {*/
/*	padding: 75px 0 75px 0; background: rgb(245,245,245);*/
/*}*/
/*.area h2 {*/
/*	font-size: 2.5rem; font-family: font2; font-weight: 800; color: rgb(196,41,56);*/
/*}*/
/*.area h4 {*/
/*	font-size: 1.5rem; font-family: font2; color: rgb(75,75,75);*/
/*}*/
/*.area p {*/
/*	font-size: 17px; text-align: justify; color: rgb(12,12,12);*/
/*}*/
/*.area iframe {*/
/*	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px rgb(0,0,0);*/
/*}*/

/**** Testimonials Section ****/
.testimonials {
	padding: 30px 0 30px 0; background: rgb(255,255,255);
}

/**** Contact Section ****/


/**** Sections On Every Page ****/
.contact-section {
	padding: 50px 0 50px 0;
	text-align: center; 
}
.contact-section h3 {
	font-size: 2rem; font-family: font2; font-weight: 800; text-align: center; color: rgb(12,12,12);
}

/**** Footer Section ****/
.footer-section {
	padding-top: 30px; text-align: center;
}
.footer-section img {
	max-width: 210px; padding-bottom: 25px;
}
.service-cities h4 {
	font-size: 24px; font-weight: 600; color: black;
}
.service-cities a {
	font-size: 18px; line-height: 10px; color: black; 
}

/**** Misc. Section ****/
.btn {
	background: rgb(249,78,1); width: 50%; padding: 10px 0px; color: #ffffff; cursor: pointer; outline: none; border: none;
}
.alert h1,
.alert p {
	top: 2em; opacity: 0; position:relative;
}
.alert h1 {
	margin-top: 0; color: #2b1663;
}
.custom-show {
	position: fixed; transform: scale(1,1); border: 0; background: white; border-radius: 0; z-index: 1100; overflow: inherit; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.alert-dismissible .close {
	position: absolute; top: 0; right: 0; background: transparent; border: none; padding: 0.75rem 1.25rem; color: rgb(80,80,80); font-family: 'font2'; outline: none; z-index: 3;
}
.alert-dismissible .close span {
	font-size: 35px;
}
.lnr {
	display: inline-block; fill: currentColor; width: 1em; height: 1em; vertical-align: -0.2em; cursor: pointer;
}
.bottom-footer div[class*='col-']:nth-child(3) {
    display: flex;
    justify-content: center;
    font-size: 14px;
}
}
/* === Mobile CSS Section ===================== */
@media screen and (max-width: 690px) {

/**** Top Header Section ****/
/*.mobile-top-header {
	display:block !important; padding: 0 30px 0; background: rgb(135,170,188); z-index: 4; overflow: visible;
}
.mobile-menu {
	text-align: center; position: fixed; height: 100%; width: 100%;	display: block;	padding-top: 6em; top: 100%; border: 0;	background: #232323; border-radius: 0; z-index: 1100; overflow: auto; -webkit-transition-property: all;	-webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.mobile-menu .nav-link {
	font-size: 2em;	color: #c5c5c5 !important;
}
.mobile-menu-custom-show {
	top: 0%;
}
.mobile-menu-top-hero {
	background-size: cover;	padding: 40px 0 0; top:0; left:0; width: 100%; text-align: center;
}
.mobile-menu-top-hero h2 {
	padding: 0 25px;
}
#mobile-menu-header {
	margin-top: 0; background: #ffffff00; box-shadow: none;
}
#mobile-menu-header ul {
	list-style: none; padding: 0 20px; margin-top: 8em; position: relative; width: inherit;
}
#mobile-menu-header ul li a {
	color:#ffffff; padding: 20px 20px;
}
.header-contact_info a {
	color: rgb(255,255,255); margin: 0;
}
.top-header a, .top-header i, .top-header p {
	color: rgb(0,0,0);
}
.top-header-animate a, .top-header-animate i, .top-header-animate p {
	color: rgb(0,0,0);
}
.top-header {
	background: white; display: none;
}
.header-contact_info {
	font-size: 1.5em;
}
.navbar-scroll {
	display: none;
}
.header-contact_info .navbar-brand {
	font-size: 1.3em;
}
.top-header div[class*='col-']:first-child {
	justify-content: flex-start;
}
.top-header div[class*='col-'] {
	display: flex; justify-content: left; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(3) {
	display: flex; justify-content: flex-end; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(2) {
	background: none; margin: 0; display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(1) a {
	font-size: 1.5em;
}
.top-header div[class*='col-']:nth-child(2) p {
	font-size: inherit; line-height: inherit;
}
*/
/**** Navigation Section ****/
.dropdown-wrapper {
	margin: 0; padding: 0;
}
/*
.navbar-sidebar .dropdown-menu-mobile {
	position: relative; display: none; top: 0; left: 0; z-index: 1000; float: left; height: 0px; margin: 0; width: 100%; padding: 0; font-size: 18px; color: #e6e6e6 !important; text-align: left; list-style: none; background-color: rgb(200,200,200); border: 0; visibility: hidden; border-radius: 0; transform: scale(1,0); -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.dropdown-menu-animate {
	display: inline-block !important; transform: scale(1,1) !important; padding: 25px 0 !important; height: auto !important; visibility: visible !important;
}
.navbar-sidebar .dropdown-menu-mobile a {
	color: rgb(75,75,75); font-weight:600 !important; font-size: 1.3em; font-family: 'Raleway'; text-align: center;
}
.navbar-sidebar {
	padding-top: 84px; height: 100%; width: 200px; background-color: rgb(250,250,250); position: fixed !important; z-index: 1; overflow: auto;
}
*/
.bar-block .dropdown-hover, .bar-block .dropdown-click {
	width: 100%;
}
.bar-block .dropdown-hover .dropdown-content, .bar-block .dropdown-click .dropdown-content {
	min-width: 100%;
}
.bar-block .dropdown-hover .button, .bar-block .dropdown-click .button {
	width: 100%; text-align: left; padding: 8px 16px;
}
.main, #main {
	transition: margin-left .4s;
}
.modal {
	display: none; padding-top: 100px; position: fixed; left: 0; top: 0; width: 100%; height: 100%;	overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4);
}
.modal-content {
	margin: auto; background-color: #fff; position: relative; padding: 0; outline: 0; width: 1200px;
}
.bar {
	width: 100%; overflow: hidden;
}
.center .bar {
	display: inline-block; width: auto;
}
.bar .bar-item {
	padding: 8px 16px; float: left; width: auto; border: none; display: block; outline: 0;
}
.bar .dropdown-hover, .bar .dropdown-click {
	position: static; float: left;
}
.bar .button {
	white-space: normal;
}
.bar-block .bar-item {
	width: 100%; display: block; padding: 8px 16px; text-align: left; border: none; white-space: normal; float: none; outline: 0;
}
.bar-block.center .bar-item {
	text-align: center;
}
.block {
	display: block; width: 100%;
}

/**** Home Section ****/
.home-header-section {
	padding-top: 125px;
}
.dropdown-menu {
	position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 10rem; padding: .5rem 0; margin: .125rem 0 0; font-size: 1rem; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(87, 86, 87); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-item {
	display: block;	width: 100%; padding: .25rem 1.5rem; clear: both; color: rgb(255,255,255); text-align: inherit;	white-space: nowrap; background: 0 0; border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255, 255, 255); text-decoration: none; background-color: rgb(22,22,22) !important;
}


/**** Misc. Section ****/
.btn {
	background: rgb(249,78,1); width: 50%; padding: 10px 0px; color: #ffffff; cursor: pointer; outline: none; border: none;
}
.alert h1,
.alert p {
	top: 2em; opacity: 0; position:relative;
}
.alert h1 {
	margin-top: 0; color: #2b1663;
}
.custom-show {
	position: fixed; transform: scale(1,1); border: 0; background: white; border-radius: 0; z-index: 1100; overflow: inherit; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.alert-dismissible .close {
	position: absolute; top: 0; right: 0; background: transparent; border: none; padding: 0.75rem 1.25rem; color: rgb(80,80,80); font-family: 'font2'; outline: none; z-index: 3;
}
.alert-dismissible .close span {
	font-size: 35px;
}
.lnr {
	display: inline-block; fill: currentColor; width: 1em; height: 1em; vertical-align: -0.2em; cursor: pointer;
}

}
/* === Sm. Mobile CSS Section ================= */
@media screen and (max-width: 375px) {

}