/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

:root {
	--lightgreen: 	#8DC442;
	--orange:		#FF7803;
	--green:		#008A10;
	--offwhite:     #F5F5F7;
	--black: 	 	#000000;
	--white: 	 	#FFFFFF;
	
	--vp-small: 	40px;
    --vp-medium: 	80px;
    --vp-large: 	120px;
	
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	
}

/* Poppins – self-hosted */

/* 400 – Regular */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: url("assets/fonts/Poppins-Regular.woff2") format("woff2"),
         url("assets/fonts/Poppins-Regular.ttf") format("truetype");
    font-display: swap;
}

/* 500 – Medium */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    src: url("assets/fonts/Poppins-Medium.woff2") format("woff2"),
         url("assets/fonts/Poppins-Medium.ttf") format("truetype");
    font-display: swap;
}

/* 600 – SemiBold */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    src: url("assets/fonts/Poppins-SemiBold.woff2") format("woff2"),
         url("assets/fonts/Poppins-SemiBold.ttf") format("truetype");
    font-display: swap;
}

/* 700 – Bold */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    src: url("assets/fonts/Poppins-Bold.woff2") format("woff2"),
         url("assets/fonts/Poppins-Bold.ttf") format("truetype");
    font-display: swap;
}

/* Inter – Variable font for body */

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    src: url("assets/fonts/Inter-Variable.woff2") format("woff2");
    font-display: swap;
}

/* ********** GENERAL ********** */

html {
	margin: 0 !important;
}

html,
body {
	font-family: var(--font-heading) !important;
}

h1, h2, h3, h4, h5, h6  {
  	font-family: var(--font-heading) !important;
	font-weight: 500 !important;
	text-transform: uppercase;
    font-weight: bold !important;
}

h1 {
    font-size: 50px !important;
}

h2 {
	font-size: 36px !important;
	font-weight: 600 !important;
}

h3 {
	font-size: 24px !important;
	font-weight: 600 !important;
}
	
p {
	font-family: var(--font-body) !important;
	font-size: 16px !important;
	font-weight: 400;
    line-height: 125%;
}

.p-large,
div.p-large,
div.p-large p {
	font-family: var(--font-body) !important;
	font-size: clamp(16px, 1.5vw, 20px) !important;
	font-weight: 500;
}

li {
	font-family: var(--font-heading) !important;
	font-size: 16px !important;
	font-weight: 400;
}


.btn-cta {
    display: inline-block;
    padding: 13px 30px;
	color: #fff;
	font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
	text-align: center;
	border: 1px solid transparent;
	min-width: 190px;
    transition: all .5s;
}

.filter-btn {
	display: inline-block;
    padding: 13px 30px;
	color: #black;
	font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
	text-align: center;
	border: 1px solid var(--black);
	min-width: 190px;
    transition: all .5s;
}

.filter-btn.active {
	background-color: var(--black);
	color: var(--white);
}

.btn-cta:hover {
    opacity: 0.95;
	transition: all .5s;
}

.btn-cta-green {
	background-color: var(--green);
	border-color: var(--green);
}

.btn-cta-green:hover {
	background-color: var(--white);
	color: var(--black);
	border-color: #e3e3e3;
}

.btn-cta-orange {
	background-color: var(--orange);
	border-color: var(--orange);
}

.btn-cta-orange:hover {
	background-color: var(--white);
	color: var(--black);
	border-color: var(--orange);
}

.btn-cta-outline-orange {
	background-color: transparent;
	border-color: var(--orange);
	color: var(--orange);
}

.btn-cta-outline-orange:hover {
	background-color: var(--white);
	color: var(--black);
	border-color: var(--orange);
}

.btn-cta-black {
    background-color: var(--black);
	color: var(--white);
	border-color: var(--black);
}

.btn-cta-black:hover {
	background-color: var(--white);
	color: var(--black);
}

.btn-cta-white {
    background-color: var(--white);
	color: var(--black);
}

.btn-cta-minimal {
    color: var(--orange);
	text-decoration: none;
	font-size: 20px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.btn-cta-minimal-white {
    color: var(--white);
	text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.btn-cta-minimal-green {
    color: var(--green);
	text-decoration: none;
	font-size: 20px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.btn-cta-minimal:hover
.btn-cta-minimal-white:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.text-black {
	color: var(--black);
}

.green,
.bg-green {
	background-color: var(--green) !important;
}

.bg-black {
	background-color: var(--black) !important;
}

.bg-transparent {
	background-color: transparent !important;
}


.white {
	background-color: var(--white) !important;
}

.bg-offwhite,
.offwhite {
	background-color: var(--offwhite) !important;
}

.black {
	background-color: var(--black) !important;
}

.text-green {
	color: var(--green) !important;
}

.text-orange {
	color: var(--orange) !important;
}

.text-black {
	color: var(--black) !important;
}

.vpt-small  {
	padding-top: var(--vp-small);
}

.vpt-medium {
	padding-top: var(--vp-medium);
}

.vpt-large  {
	padding-top: var(--vp-large);
}


.vpb-small  {
	padding-bottom: var(--vp-small);
}

.vpb-medium {
	padding-bottom: var(--vp-medium);
}

.vpb-large  {
	padding-bottom: var(--vp-large);
}

.vp-large {
    padding-top: var(--vp-large);
    padding-bottom: var(--vp-large);
}

.py-6 {
	padding-top: 7rem !important;
	padding-bottom: 7rem !important;
}

.pt-6 {
	padding-top: 7rem !important;
}

.pb-6 {
	padding-bottom: 7rem !important;
}

.py-10 {
	padding-top: 8rem !important;
	padding-bottom: 8rem !important;
}

.pt-10 {
	padding-top: 8rem !important;
}

.pb-10 {
	padding-bottom: 8rem !important;
}

.mw-375 {
	max-width: 375px;
}

.mw-425 {
	max-width: 425px;
}

.mw-475 {
	max-width: 475px;
}

.mw-525 {
	max-width: 525px;
}

.mw-650 {
	max-width: 650px;
}

.mw-725 {
	max-width: 725px;
}

.mw-750 {
	max-width: 750px;
}

.mw-850 {
	max-width: 850px;
}

.desktop {
	display: block !important;
}

.mobile {
	display: none !important;
}

/* ********** NAVIGATION ********** */

#wpadminbar {
	display: none !important;
}

header {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
}

.offcanvas-body {
	justify-content: center;
}

#bootscore-navbar.ms-auto {
	margin-left: initial !important;
}

.navbar-brand img {
	height: 40px;
	position: relative;
	top: -3px;
}

header .nav-link,
header .nav-link:hover {
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
	margin: 0 20px;
}

.site-header.is-scrolled {
    position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled #nav-main {
	background-color: var(--green) !important;
}

.site-header.is-scrolled #nav-main a {
	color: var(--white) !important;
}

.site-header.is-scrolled .navbar-brand img {
/* 	filter: invert(1); */
}

.btn-header-cta {
	min-width: initial !important;
}

.site-header.is-scrolled .btn-header-cta {
	background-color: var(--white);
	color: var(--black) !important;
	border-color: transparent;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--black) !important;
}

.home .navbar-nav .nav-link.active, .navbar-nav .nav-link.show,
.single-service .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
	color: var(--white) !important;
}

.site-header #nav-main .dropdown-menu a,
.site-header.is-scrolled #nav-main .dropdown-menu a {
	color: var(--black) !important;
}

.page-id-266 .navbar-nav .nav-link.active,
.page-id-266 .navbar-nav .nav-link.show,
.page-id-730 .navbar-nav .nav-link.active,
.page-id-730 .navbar-nav .nav-link.show {
    color: var(--white) !important;
}

.page-id-266 .navbar-nav .dropdown-menu .dropdown-item,
.page-id-266 .site-header.is-scrolled #nav-main .navbar-nav .dropdown-menu .dropdown-item,
.page-id-730 .navbar-nav .dropdown-menu .dropdown-item,
.page-id-730 .site-header.is-scrolled #nav-main .navbar-nav .dropdown-menu .dropdown-item {
    color: var(--black) !important;
}

.page-id-730 .site-header.is-scrolled #nav-main a.btn-header-cta {
	background-color: var(--orange) !important;
	color: var(--white) !important;
}

.dropdown-item.active, .dropdown-item:active {
	background-color: var(--white) !important;
}

.site-header.is-scrolled #nav-main a.btn-header-cta {
	color: var(--black) !important;
}

/* ********** SECTIONS ********** */

/* HERO PRIMARY */

.hero-primary {
	position: relative;
    padding-top: 200px;
    padding-bottom: 200px;
    color: #ffffff;
	background-size: cover;
}

.hero-primary .map-icon {
	display: none;
}

.hero-primary .subheading {
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    backdrop-filter: blur(2px);
	--webkit-backdrop-filter: blur(2px);
}

.hero-badges-wrap {
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
	background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-primary .hero-badge {
	max-width: 190px;
    width: auto;
    display: block;
    justify-self: center;
    opacity: 0.95;
}

/* FEATURE CARDS */

.feature-card {
    position: relative;
}

.feature-card-img {
    border-radius: 24px;
    height: auto;
    display: block;
}

.feature-card-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: clamp(24px, 1.5vw, 20px) !important;
    font-weight: 600;
    color: #ffffff;
}

/* IMAGE CONTENT HIGHLIGHTS */

.image-content-highlights {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	height: 800px;
}

.image-content-highlights::before {
    content: "";
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.image-content-highlights__text {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 10px;
    margin-left: 5px;
}

.image-content-highlights__icon img {
    width: 22px;
    height: 22px;
    display: block;
}

@media (max-width: 767px) {
    .image-content-highlights__icon img {
        width: 20px;
        height: 20px;
    }
}

/* RECENT PROJECTS */

.recent-projects .card {
	border: none !important;
}

.recent-projects-carousel .splide__slide {
    display: flex;
    justify-content: center;
}

.recent-projects-carousel .project-card {
    width: 100%;
    max-width: 100%;
	background-color: transparent;
}

.recent-projects-carousel .project-card {
    border-radius: 30px;
}

.recent-projects-carousel .splide__pagination {
    display: none;
}

.recent-projects .card-body {
	background-color: var(--white);
}

.recent-projects .badge,
#project-modal .project-area-pill {
	color: var(--green);
    font-size: 18px;
    font-weight: 500;
	padding: 0;
}

#project-modal .project-area-pill {
    padding: 10px 16px;
}

.project-area-pill {
	display: inline-flex;
    align-items: center;
    border-radius: 100px;
    background-color: #E5F3E7;
    padding: 10px 16px;
    align-self: flex-start;
}

.recent-projects .arrow-green {
	height: 18px;
    width: 18px;
    position: relative;
    top: -3px;
}

.project-card .d-flex .btn-cta-minimal {
	color: var(--black);
}

.project-card .icon-arrow {
	position: relative;
    top: -3px;
}

.recent-projects-col-left {
	padding-right: 3px;
}

.recent-projects-col-right {
	padding-left: 3px;
}

.project-img-one {
	border-top-left-radius: 20px;
}

.project-img-two {
	border-top-right-radius: 20px;
	padding-bottom: 3px;
}

.project-img-three {
	padding-top: 3px;
}

@media (max-width: 767px) {
	
	.recent-projects .project-card.p-4 {
		padding: 0 !important;
	}
	
	.recent-projects .splide__pagination {
		bottom: -2rem;
	}
	
	.recent-projects .project-area-pill img {
		height: 19px;
	}
	
	.recent-projects .project-area-pill span {
		font-size: 16px;
	}
	
	.recent-projects .card-body {
		padding-bottom: 1.5rem !important;
	}
	
	.recent-projects .d-flex {
		display: block !important;
	}
	
	.recent-projects .project-meta.mb-3 {
		margin-bottom: .5rem !important;
	}
	
	.recent-projects .btn-cta-minimal {
		width: 100% !important;
    	display: block;
	}
}

/* SERVICE AREAS */

.service-areas__chip {
	background-color: var(--black);
	color: var(--white);
	font-family: var(--font-body) !important;
	font-size: 14px;
	padding: 4px 8px;
	border-radius: 5px;
	margin-right: 5px;
	text-decoration: none;
}

.service-areas__stat {
    width: calc(33.333% - 10px);
    margin: 5px;
}

.area-testimonials .ti-widget.ti-goog .ti-review-item>.ti-inner, .ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button {
	background-color: var(--white) !important;
}

body.single-service .testimonials .ti-widget.ti-goog .ti-review-item>.ti-inner, .ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button {
	background-color: var(--white) !important;
}

.faq-page-testimonials .ti-widget.ti-goog .ti-review-item>.ti-inner, .ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button {
	background-color: var(--white) !important;
}

/* TURF PRODUCTS */
.splide__pagination {
	bottom: -1em;
}

.splide__pagination__page {
	height: 13px;
	width: 13px;
	background-color: var(--white);
}

.splide__pagination__page.is-active {
	background-color: var(--black);
	transform: initial;
}

.splide__pagination li {
	margin: 0 2px !important;
}

/* FAQ PREVIEW */

.faq-preview .col-md-5 {
	padding-top: 15px;
}

.accordion {
	--bs-accordion-border-color: transparent !important;
}

.faq-preview .accordion-button {
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: inherit;
    box-shadow: none;
	font-weight: 600;
	font-size: 22px;
}

section.offwhite .accordion-item,
section.offwhite .accordion-button {
	background-color: transparent;
}

/* SERVICE PROCESS */

.service-process-card {
    border-radius: 30px;
	border: 1px solid #f5f5f5;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}

.service-process-card__number-circle {
    width: 75px;
    height: 75px;
    background-color: var(--green);
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
}

.service-process h3 {
	font-size: 20px !important;
}

.service-process-card__time-pill {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    background-color: var(--offwhite);
}

/* PRICING PLANS */

.service-pricing .pricing-card {
    border: 1px solid #E2E2E2;
    border-radius: 30px;
}

.service-pricing .pricing-card--featured {
    border: 3px solid var(--orange);
}

.service-pricing .pricing-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}

.service-pricing h3 {
	font-size: 20px !important;
}

.service-pricing .pricing-card .btn-cta {
    margin-top: auto;
    width: 100%;
}

.starting-pricing {
	font-size: 16px;
	font-weight: 500;
}

.starting-pricing .text-green {
	font-size: 30px;
}

.pricing-features li {
	margin-bottom: 5px;
}

@media (max-width: 1099px) {
	
	.pricing-card.p-5 {
		padding: 2.5rem 1rem !important;	
	}
	
	.pricing-features li {
		font-size: 15px !important;
	}
	
}

/* CTA ROW */

body.single-service .cta-row.text-white {
	color: var(--black) !important;
}

body.single-service .cta-row .btn-cta- {
	color: var(--black) !important;
}

/* ********** SERVICES ********** */

/* SERVICE LISTING */
.service-mobile-item {
	color: var(--black)
}

.service-mobile-title {
	font-weight: 500;
}

/* Hero Service Mobile */

.hero-service-mini-golf {
	background-position: 75%;
}

.hero-service-dog-parks {
	background-position: 80%;
}

.hero-service-pet-turf {
	background-position: 60%;	
}

.hero-service-rooftop-residential {
	background-position: 100%;
}

@media (max-width: 767px) {
	
	.hero-service-architect {
		background-position: 65%;
	}
	
}

/* ********** SINGLE AREA PAGE ********** */

body.single-area .hero-primary .map-icon {
	display: inline-block;
	margin-right: 7px;
}

body.single-area .hero-primary .subheading{
	height: 38px;
    display: flex;
    align-items: center;
}

.area-services .btn-cta-minimal {
	color: var(--black);
	text-decoration: none;
}

.area-services .btn-cta-minimal img {
	position: relative;
    top: -2px;
}

.area-testimonials .ti-inner {
	background-color: var(--white) !important;
}

.no-overlay.story-banner {
	height: 800px;
	background-position: bottom;
}

.no-overlay.story-banner.bg-position-top {
	background-position: top;
}

.no-overlay.story-banner::before {
	background: initial !important;
}

@media (max-width: 767px) {
	
	.no-overlay.story-banner {
		height: 550px;
	}
	
}

/* ********** FAQ ********** */

/* HERO SECONDARY */
.hero-secondary {
	height: 550px;
}

.hero-secondary {
	padding: 0px !important;
}

.hero-secondary .col-12 {
	padding-top: 75px;
}

#faq-section a.nav-link {
	background-color: var(--white);
	color: var(--black);
}

#faq-section a.nav-link.active {
	background-color: var(--green);
	color: var(--white);
}

#faq-section h2 {
	font-size: 25px !important;
    font-weight: 600 !important;
}

#faq-section .accordion-button:not(.collapsed) {
	background-color: var(--green);
    color: var(--white);
}

mark, .mark {
	background-color: var(--white) !important;
}

/* ********** ABOUT ********** */

.hero-about h1 {
	font-size: 54px !important;
}

/* IMAGE OVERLAY TEXT */

.story-banner {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background-image: var(--story-banner-bg);
    background-size: cover;
    background-position: center;
	height: 750px;
}

.story-banner .container {
    position: relative;
    z-index: 1;
}

.story-banner__inner {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* ********** TEAM ********** */

.modal-team {
	max-width: 425px;
}

.row-careers a {
	color: var(--white);
}

.text-bio {
    max-height: 6.5em;
    overflow: hidden;
}

/* ********** GALLERY/PROJECTS ********** */

.project-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.project-modal.is-open {
	display: block;
}

.project-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
}

.project-modal__panel {
	position: relative;
	background: #fff;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

.project-modal__close {
	position: sticky;
	top: 0;
	background: none;
	border: none;
	font-size: 16px;
	padding: 20px;
	cursor: pointer;
}

.project-card {
	cursor: pointer;
}

.project-modal.is-open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}



.project-card * { pointer-events: none; }
.project-card { pointer-events: auto; cursor: pointer; }

.project-modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.project-modal.is-open { display: block; }
.project-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.project-modal__panel { background:#fff; width:100%; height:100%; overflow:auto; }
.project-modal__close { padding:20px; background:none; border:0; cursor:pointer; }

.project-modal__panel {
    width: 75%;
    margin: 0 auto;
}

.project-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    cursor: pointer;
}

.project-modal__panel {
    position: relative;
    z-index: 2;
    background: #ffffff;
    height: 100%;
    overflow-y: auto;
}

.project-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
}

.project-modal__panel {
    max-width: 1200px;
    margin: 0 auto;
}

.project-modal__panel {
    max-width: 1200px;
    margin: 0 auto;
}

.project-modal-inner {
    margin: 0 auto;
}

.project-modal-inner section {
	padding-left: 2rem;
	padding-right: 2rem;
}

.project-modal-inner section + section {
    margin-top: 3rem;
}

.see-all-images {
	bottom: 20px;
    right: 20px;
    z-index: 10;
	border-radius: 20px;
}

.project-bottom-cta {
    background: #FF6D0C;
    color: #FFFFFF;
	height: 500px;
}

.project-bottom-cta h2 {
    font-size: 28px;
    font-weight: 700;
}

.project-bottom-cta p {
    font-size: 15px;
}

.project-bottom-cta .btn-cta.btn-cta-white {
    background: #FFFFFF;
    color: #111827;
    border-radius: 999px;
}

.project-bottom-cta-phone {
    font-size: 14px;
    margin-top: 8px;
}

.project-bottom-cta-phone a {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: underline;
}

button.project-modal__close {
	display: none;
}

.project-meta-text {
	color: #626262;
	font-size: 18px;
}

/* Scrollable panel in the project modal */
.project-modal__panel {
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.project-modal__panel::-webkit-scrollbar {
    display: none;
}

.project-fact-card {
	padding: 20px;
    border: 1px solid #EBEBEB;
    border-radius: 20px;
}

.project-testimonial-name,
.project-related-label {
	font-size: 20px;
	font-weight: 600;
}

.project-testimonial-question-pill {
	color: var(--green);
    font-size: 18px;
    font-weight: 500;
	display: inline-flex;
    align-items: center;
    border-radius: 100px;
    background-color: #E5F3E7;
    padding: 10px 16px;
    align-self: flex-start;
}

span.project-chip {
    border: 1px solid #e8e8e8;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0px 2px;
	font-weight: 500;
}

/* ********** PRODUCT HUB ********** */

body.page-id-607 #nav-main {
	background-color: var(--white);
}

body.page-id-607 .navbar-brand img {
	filter: invert(1);
}

body.page-id-607 #bootscore-navbar a {
	color: var(--black);
}

body.page-id-607 .btn-header-cta {
	background-color: var(--green);
	color: var(--white);
}

.series-card {
	background-color: var(--white);
}

/* ********** SERIES PAGE ********** */

body.archive.tax-product_series #nav-main {
	background-color: var(--white);
}

body.archive.tax-product_series .navbar-brand img {
	filter: invert(1);
}

body.archive.tax-product_series #bootscore-navbar a {
	color: var(--black);
}

body.archive.tax-product_series .btn-header-cta {
	background-color: var(--orange);
	color: var(--white);
}

body.archive.tax-product_series header.is-scrolled #nav-main a.btn-header-cta {
	color: var(--white) !important;
}

body.archive.tax-product_series header.is-scrolled .navbar-brand img {
	filter: initial;
}

.series-hero {
	position: relative;
}

.series-hero__badges {
	width: 100%;
    padding: 0 5%;
	position: absolute;
    bottom: 5%;
}

.series-hero__badges img {
	max-width: 190px;
}
	
.secondary-badge {
	position: absolute;
    right: 5%;
    bottom: calc(5% - 14px);
}

@media (max-width: 991px) {
	
	.series-hero {
		padding-bottom: 0 !important;
	}
	
	.series-hero .col-12 {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
	.series-hero__badges,
	.secondary-badge {
		position: initial;
	}
	
	.series-badge-pill {
		width: calc(33.333% - 1rem);
		display: block !important;
        margin: 15px auto;
	}
	
	.series-hero__badges img {
		max-width: 100%;
	}
	
}

@media (max-width: 767px) {
	
	.tax-product_series .two-column-cta h2 {
		margin: 0 auto;
	}
	
}

/* ********** PRODUCT SINGLE ********** */

body.single-product #nav-main {
	background-color: var(--white);
}

body.single-product .navbar-brand img {
	filter: invert(1);
}

body.single-product header.is-scrolled .navbar-brand img {
	filter: initial;
}

body.single-product #nav-main .btn-header-cta,
body.single-product header.is-scrolled #nav-main .btn-header-cta {
	background-color: var(--orange) !important;
	color: var(--white) !important;
}

body.single-product #bootscore-navbar a {
	color: var(--black);
}

.product-specs table {
    table-layout: fixed;
    width: 100%;
}

.product-specs table th,
.product-specs table td {
	padding: 12px 20px !important;
}

/* Columns 1 & 3 (labels) – wider */
.product-specs tbody th:nth-of-type(1),
.product-specs tbody th:nth-of-type(2) {
    width: 30%;
}

/* Columns 2 & 4 (values) – narrower */
.product-specs tbody td:nth-of-type(1),
.product-specs tbody td:nth-of-type(2) {
    width: 20%;
}

/* Zebra striping for Product Specifications rows */
.product-specs table tbody tr:nth-child(odd) {
    --bs-table-bg: #ffffff;
}

.product-specs table tbody tr:nth-child(even) {
    --bs-table-bg: #f5f5f5;
}

.product-feature.card,
.related-product.card {
	border-color: transparent;
}

@media (max-width: 767px) {
	
	body.single-product .series-hero {
		padding-bottom: 120px !important;
	}
	
	body.single-product .series-hero .col-12 {
		height: initial !important;
	}
	
	body.single-product .series-badge-pill {
		display: none !important;
	}
	
	body.single-product .series-hero .row.align-items-center {
		flex-direction: column;
		justify-content: center;
	}
	
	body.single-product .series-hero .btn-cta {
		position: absolute;
		width: 90%;
		bottom: 10%;
		left: 0;
		margin-left: 5%;
		margin-right: 5%;
	}
	
	.product-specs tbody td:nth-of-type(1), .product-specs tbody td:nth-of-type(2) {
		white-space: break-spaces;
	}
	
}

/* ********** CONTACT ********** */

.page-id-891 .navbar-brand img {
	filter: invert(1);
}

.page-id-891  #bootscore-navbar a {
	color: var(--black);
}

.page-id-891 header.is-scrolled .navbar-brand img {
	filter: initial;
}

.page-id-891 #nav-main .btn-header-cta,
.page-id-891 header.is-scrolled #nav-main .btn-header-cta {
	background-color: var(--orange) !important;
	color: var(--white) !important;
}

.contact-page {
	padding-top: 10rem;
	padding-bottom: 10rem;
}

.contact-page .col-left {
	background-color: var(--white);
	border-radius: 20px;
}

.contact-page h1 {
	font-size: 37px !important;
}

@media (max-width: 991px) {
	.col-right {
		padding: 0 !important;
	}
}

/* GRAVITY FORM */

.hero-form {
	background-color: var(--white) !important;
    border-radius: 20px !important;
    border: 2px solid var(--orange) !important;
    padding: 30px 20px 10px 20px !important;
}

h2.gform_title {
	text-align: center;
    color: var(--orange);
    font-size: 20px !important;
    margin-bottom: 30px;
    font-weight: 700 !important;
}

.ginput_container input,
.ginput_container textarea {
	background-color: #F5F5F7 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
}

.gform_required_legend {
	display: none !important;
}

.gfield_label {
	font-weight: 500 !important;
    font-size: 14px !important;
    margin-top: 10px !important;
}

.charleft.ginput_counter.gfield_description.warningTextareaInfo {
	display: none !important;
}

.textarea {
	height: 100px !important;
}

.gform_button {
	background-color: var(--orange);
    border: none;
    border-radius: 100px;
    width: 100%;
    padding: 15px 30px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

/* ********** THANK YOU ********** */

.page-id-872 .navbar-brand img {
	filter: invert(1);
}

.page-id-872  #bootscore-navbar a {
	color: var(--black);
}

.page-id-872 header.is-scrolled .navbar-brand img {
	filter: initial;
}

.page-id-872 #nav-main .btn-header-cta,
.page-id-872 header.is-scrolled #nav-main .btn-header-cta {
	background-color: var(--orange) !important;
	color: var(--white) !important;
}

.thank-you-section {
	padding-top: 16rem;
	padding-bottom: 12rem;
}

@media (max-width: 991px) {
	
	.thank-you-section {
		padding-top: 10rem;
		padding-bottom: 7rem;
		height: initial !important;
	}
	
	.thank-you-section h1 {
		font-size: 37px !important;
	}
	
	.thank-you-section .thank-you-card.p-5 {
		padding-top: 1.5rem !important;
    	padding-bottom: 1.5rem !important;
	}
	
}

@media (max-width: 767px) {
	
	.thank-you-section {
		padding-top: 6rem;
		padding-bottom: 3rem;
	}
	
	.thank-you-section h1 {
		font-size: 28px !important;
	}
	
	.thank-you-section .btn-cta {
		min-width: 100%;
	}
	
}

/* ********** BLOG ********** */

/* Blog Listing Cards */

.blog-listing .blog-card {
    border-radius: 18px;
    background-color: #ffffff;
    overflow: hidden;
    border: 0;
}

.blog-listing .blog-card__image {
    display: block;
    background-color: #f3f2ee;
}

.blog-listing .blog-card__image img {
    object-fit: cover;
}

.blog-listing .blog-card__body {
    padding: 24px;
}

.blog-listing .blog-card__title {
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 600;
}

.blog-listing .blog-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #333;
}

/* Keep card heights visually consistent */
.blog-listing .blog-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile spacing tweak */
@media (max-width: 767.98px) {
    .blog-listing .blog-card__body {
        padding: 20px;
    }
}

/* ********** SINGLE BLOG ********** */

/* Single Blog Post */

.single-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.single-article-wrap {
    position: relative;
    margin-top: -100px;
    padding-bottom: 60px;
}

.single-article {
    max-width: 1140px;
    border-radius: 16px;
}

.single-article.card {
    box-shadow: none;
}

h1.entry-title {
    font-size: clamp(26px, 5vw, 44px) !important;
	text-align: center;
}

.single-article h2,
.single-article h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.single-article ul {
    margin-bottom: 20px;
}

.single-article li {
    margin-bottom: 10px;
}

.single-hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

.single-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.single-hero-content {
	max-width: 900px;
	padding-bottom: 15% !important;
}

.single-hero .entry-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

.single-article-wrap {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.single-article-wrap .entry-header.mb-4 {
	display: none;
}

.single-article .arrow-left {
	transform: scaleX(-1);
	position: relative;
	top: -1px;
}

@media (max-width: 767px) {

    .single-article-wrap {
        margin-top: 0;
        padding-top: 20px;
    }

    .single-article {
        border-radius: 0;
    }
}

/* ********** PRIVACY POLICY ********** */

.policy-content a {
	color: var(--black);
}

.policy-content h2 {
	font-size: 24px !important;
}

/* ********** FOOTER ********** */

footer ul.footer-menu li {
	margin-bottom: 5px;
}

footer ul.footer-menu li a {
	color: var(--black);
	text-decoration: none;
	margin-bottom: 5px;
}

.footer-bottom  a {
	color: var(--black);
	text-decoration: none;
}

/* ********** MEDIA QUERIES ********** */

@media (min-width: 1281px) {
	
	.container {
		max-width: 1280px !important;
	}
	
}

@media (max-width: 991px) {
	/* GENERAL */
	h1 {
		font-size: 43px !important;
	}
	
	h2 {
		font-size: 29px !important;
	}
	
	.series-hero .desktop {
		display: none !important;
	}
	
	.series-hero .mobile {
		display: block !important;
	}
	
	/* NAVIGATION */
	.announcement-link {
		font-size: 14px !important;	
	}
	
	.btn-header-cta {
		display: none;
	}
	
	.nav-toggler {
		border: none;
	}
	
	.nav-toggler img {
		filter: invert(1);
	}
	
	.is-scrolled .nav-toggler img {
		filter: initial;
	}
	
	header .nav-link, header .nav-link:hover {
		color: var(--black);
	}
	
	/* HERO PRIMARY */
	.hero-primary .hero-badge {
		max-width: 140px;
	}
	
	/* FEATURE CARDS */
	.feature-card-text {
		font-size: 17px !important;
	}
	
	/* WHAT WE INSTALL */
	.install-card {
		height: 400px !important;
	}
	
	/* IMAGE CONTENT HIGHLIGHTS */
	.image-content-highlights {
		height: 600px;
	}
	
	/* TURF PRODUCTS */
	.turf-products .row.g-4 {
		--bs-gutter-x: 1rem !important;
	}
	
	.turf-products .turf-product-card.p-5 {
		padding: 1.5rem 1rem !important;
	}
	
	.turf-product-card h3 {
		font-size: 16px !important;
	}
	
	/* AREA HIGHLIGHTS */
	.area-highlights h3 {
		font-size: 18px !important;
	}
	
	/* FAQ PREVIEW */
	h2.accordion-header button {
		font-size: 19px !important;
	}
	
	/* SERVICE BENEFITS */
	.service-benefit-card.p-5 {
		padding: 1.5rem 1rem !important;
	}
	
	.service-benefit-card h3 {
		font-size: 15px !important;
	}
	
	.service-benefit-card p {
		font-size: 15px !important;
	}
	
	/* SERVICE PROCESS */
	.service-process-card__number-circle {
		width: 50px;
		height: 50px;
	}
	
	/* SERVICE PRICING */
	.pricing-card.p-5 {
        padding: 2.5rem !important;
    }
	.pricing-card.text-center {
		text-align: left !important;
	}
	
	.starting-pricing {
		font-size: 15px;
	}
	
	.starting-pricing .text-green {
		font-size: 25px;
	}
	
	.service-pricing .row.g-4 {
		--bs-gutter-x: 0.75rem !important;
	}
	
	.pricing-features li {
		font-size: 14px !important;
	}
	
	/* ABOUT */
	.hero-about h1 {
		font-size: 43px !important;
	}
}

@media (min-width: 768px) and (max-width: 1280px) {
	
	/* GENERAL */
	.container {
		max-width: 95% !important;
	}
	
}

@media (max-width: 767px) {
	
	/* GENERAL */
	h1 {
		font-size: 26px !important;
	}
	
	h2 {
		font-size: 22px !important;
	}
	
	.container {
		padding-right: 20px;
    	padding-left: 20px;
	}
	
	/* NAVIGATION */
	.announcement-link span {
		display: block;
	}
	
	.announcement-bar {
		display: none;
	}
	
	/* PRIMARY HERO */
	.hero-badges-wrap,
	.hero-primary .subheading {
		display: none;
	}
	
	.hero-primary {
		padding: 0;
	}
	
	.hero-primary .col-lg-7.justify-content-center {
		height: 100%;
		justify-content: flex-end !important;
		padding-bottom: 25%;
	}
	
	.hero-primary .btn-group {
		width: 100%;
    	flex-direction: column-reverse;
	}
	
	.hero-primary .btn-cta-green {
		display: block;
    	margin-top: 15px;
	}
	
	.hero-primary .btn-cta-white {
		display: block;
		margin-left: 0 !important;
		max-width: 100%;
		width: 100% !important;
	}
	
	.hero-primary .btn-secondary.ms-3 {
		margin-left: 0 !important;
		margin-bottom: 15px;
	}
	
	/* FEATURE CARDS */
	.feature-cards h2.mb-5 {
		max-width: 370px;
		margin-bottom: 1.5rem !important;
	}
	
	.feature-cards .text-center.mt-5 {
		margin-top: 1.5rem !important;
	}
	
	/* IMAGE CONTENT/HIGHLIGHTS */
	.image-content-highlights {
		height: 600px;
	}
	
	.image-content-highlights .row.align-items-end {
		align-items: center !important;
	}
	
	.image-content-highlights .row.align-items-end li.mb-2 {
		margin-bottom: 1.5rem !important;
	}
	
	.image-content-highlights .col {
		padding: 7.5%;
	}
	
	.image-content-highlights .section-heading {
		text-align: center;
	}
	
	.image-content-highlights image-content-highlights_text {
		font-size: 18px !important;
	}
	
	.image-content-highlights__icon img {
        width: 24px;
        height: 24px;
    }
	
	/* WHAT WE INSTALL */
	.what-we-install__list {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.install-card-mobile {
		background-color: #f6f6f6;
		box-shadow: none;
		height: 150px;
	}

	.install-card-mobile .card-body {
		padding: 1.5rem;
	}

	.install-card-mobile__icon img {
		display: block;
	}

	.install-card-mobile__arrow {
		font-size: 1.25rem;
		line-height: 1;
		position: absolute;
		bottom: 20px;
		right: 20px;
	}
	
	.what-we-install .text-center.mt-5 {
		margin-top: 0.75rem !important;
	}
	
	/* RECENT PROJECTS */
	.project-card .col-12:first-of-type {
		margin-bottom: 15px;
	}
	
	.recent-projects-carousel .splide__pagination {
        display: flex;
        justify-content: center;
        margin-top: 1.25rem;
    }

    .recent-projects-carousel .splide__arrows {
        display: none;
    }
	
	.recent-projects .splide__pagination__page {
		background-color: #c5c5c5 !important
	}
	
	.recent-projects .splide__pagination__page.is-active {
		background-color: var(--black) !important;
	}
	
	/* SERVICE AREAS */
	.service-areas .row {
		flex-direction: column-reverse;
	}
	
	.service-areas h2 {
		text-align: center;
	}
	
	.service-areas h3 {
		font-size: 18px !important;
	}
	
	.service-areas__stats {
		background-color: var(--white);
		padding: 1rem;
		border-radius: 10px;
	}
	
	/* TURF PRODUCTS */
    .turf-products {
        overflow-x: hidden;
    }

    .turf-products .container {
        padding-left: 0;
        padding-right: 0;
    }

    .turf-products h2.mb-5 {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem !important;
    }

    .turf-products-carousel {
        padding-left: 0;
        padding-right: 0;
    }

    .turf-products-carousel .splide__track {
        overflow: hidden;
    }

    .turf-products-carousel .splide__slide {
        display: flex;
        justify-content: flex-start;
    }

    .turf-products-carousel .turf-product-card {
        max-width: 320px;
        width: 80vw;
        margin: 0 auto 1.5rem;
        border-radius: 30px !important;
    }

    .turf-products article.p-5 {
        padding: 1.5rem !important;
    }

    .turf-products-carousel .splide__pagination {
        margin-top: 0.75rem;
    }
	
	/* FAQ PREVIEW */
	.faq-preview .col-12.col-lg-8 {
		margin-top: 1.5rem;
	}
	
	.faq-preview h2.mb-0 {
		text-align: center;
		max-width: 275px;
		margin: 0 auto;
	}
	
	.faq-preview .accordion-button {
		font-size: 16px;
	}
	
	.faq-preview .btn-container {
		text-align: center;
	}
	
	/* TWO COLUMN CTA */
	.two-column-cta .row {
		flex-direction: column-reverse;
		text-align: center;
	}
	
	.two-column-cta .d-flex.flex-wrap {
		justify-content: center;
	}
	
	.two-column-cta .btn-cta-white {
		display: none;
	}
	
	/* AREA HIGHLIGHTS */
	.area-highlight-card {
		display: flex;
		flex-direction: row;
		align-items: center;
		text-align: left !important;
	}
	
	.area-highlight-card__icon-wrapper.mb-3 {
		margin-bottom: 0 !important;
	}
	
	.area-highlight-card__icon {
		margin-right: 2rem;
	}
	
	.area-highlights-container h3.h5 {
		font-size: 28px !important;
	}
	
	.area-highlights-container p {
		font-size: 20px !important;
	}
	
	/* ABOUT */
	.hero-secondary {
		height: 350px;
	}
	
	.hero-about h1 {
		font-size: 26px !important;
	}
	
	.hero-about .btn-secondary.ms-3 {
		margin-left: 0 !important;
		margin-bottom: 1rem;
	}
	
	/* VALUE HIGHLIGHTS */
	.value-highlights h3 {
		font-size: 16px !important;
	}
	
	/* MEET THE TEAM */
	.team-listing .bg-white.rounded-4.text-center.p-4 {
		padding: 1rem !important;
	}
	
	.team-item {
		padding: 0 5px;
	}
	
	.text-bio {
		display: none;
	}
	
	.team-img {
		width: 100px !important;
		height: 100px !important;
	}
	
	.team-item h4 {
		font-size: 17px !important;
	}
	
	.btn-cta.team-readmore {
		font-size: 14px;
		min-width: initial;
	}
	
	/* FOOTER */
	footer .col-6.col-lg-2.mb-4.mb-lg-0,
	footer .col-6.col-lg-3 {
		width: 100%;
	}
	
	.footer-highlight-item {
		width: 33.333%;
	}
	
	.footer-highlight-item .small {
		max-width: 100px !important;
	}
	
	.footer-bottom .divider {
		display: none;
	}
	
	.footer-bottom .subfooter-item {
		width: 100%;
		display: block;
	}
	
}



















