/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 16 2025 | 16:53:22 */
/* PRESETS */

html {
    scroll-behavior: smooth;
	font-size: 16px !important;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    line-height: 1 !important;
}

h1, h2, h3, p, a, ul, li {
    margin: 0;
    padding: 0;
	color: #000;
}

h1, h2, h3, h4 {
	line-height: 1.2 !important;
}

.col-sm-8 {
	padding: 0;
}

body.admin-bar .navbar {
	display: none !important;
}

.main {
	padding: 0 !important;
	margin: 0 !important;
}

.navbar-custom {
	display: none !important;
}

/* GLOBAL STYLES */

.cta__button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.25rem;
}

.green {
    background: linear-gradient(to bottom, #23B970, #04703B);
    color: #fff;
    transition: all ease-in-out .3s;
}

.green:hover {
    background: linear-gradient(to top, #23B970, #04703B);
}

.white {
    background: linear-gradient(to bottom, #fff, #ccc);
    color: #04703B;
}

.white:hover {
    background: linear-gradient(to top, #fff, #ddd);
}

/* HEADER SECTION*/
header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
}

.header__logo {
    max-width: 200px;
}

.header__logo-link {
	display: flex;
	align-items: center;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
	z-index: 1000;
}

.nav__list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav__item .nav__link {
    text-decoration: none;
    color: #fff;
}

.nav__cta {
    font-size: 1rem;
}

.header__nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 1320px;
	margin: 0 auto 0 auto;
	padding: 1.5rem 0;
}

.header__logo {
    max-width: 200px;
    object-fit: cover;
}

.nav-bar__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
}

.menu__item {
    list-style: none;
}

.item__link {
    text-decoration: none;
    color: #fff;
    transition: all ease-out .3s;
}

.item__link:hover {
    font-weight: 600;
    text-decoration: underline;
}

.nav-bar__button {
    display: block;
    transition: all ease-out .3s;
}

.nav-bar__toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    z-index: 101;
	line-height: .15;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* HERO SECTION */
#heroSection {
    position: relative;
}

#heroSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to left, rgba(0, 0, 0, 0.7) 15%, transparent 65%),
        url('https://verdicultura.com/wp-content/uploads/2025/05/skilful-male-landscaper-using-high-altitude-hedge-trimmer-topiary-park-side-view-focused-1-scaled.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: scaleX(-1);
    z-index: -1;
}

.hero__row {
    width: 95%;
    max-width: 1320px;
    margin: auto;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    width: 46%;
    height: 100vh;
    max-height: 62.5rem;
    min-height: 36.25rem;
}

h1 {
    color: #fff;
    font-weight: 800;
    font-size: 3rem;
    margin: 2.5rem 0 0;
}

.hero__subheading {
    color: #fff;
    font-size: 1.25rem;
    margin: 0 0 1rem;
    line-height: 1.5rem;
}

.hero__reviews {
    display: flex;
    align-items: baseline;
    gap: .05rem;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 3rem 0 0;
}

.hero__social-proff {
    font-size: .875rem;
    font-weight: 400;
}

.icon-star {
    object-fit: contain;
    width: 1rem;
    height: 1rem;
}

.fa-star:before {
	font-size: 1rem;
	color: #FABC04;
}

.hero__clients-logo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-height: 1rem;
}

.client__logo {
    object-fit: contain;
    height: 100%;
}

/* BENEFITS SECTION */
#benefitsSection {
    padding: 8rem 0;
}

.benefits__row {
    width: 95%;
    max-width: 1320px;
    margin: auto;
}

.benefits__row:first-child {
    padding: 0 0 5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section__subheading {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    text-align: center;
}

.benefits__row:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.benefit__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(33.33% - 1rem);
    min-width: 16.5625rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.benefit__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit__img {
    object-fit: cover;
    width: 100%;
    height: 19.5rem;
    border-radius: 10px 10px 0 0;
}

.benefit__title {
	font-weight: 800;
    font-size: 1.25rem;
    margin: 0 1.5rem;
}

.benefit__description {
	font-weight: 400;
    color: #666;
    margin: 0 1.5rem;
}

.benefit__cta {
	display: inline-block;
    text-decoration: none;
    color: #04703B;
    margin: 1.5rem;
    transition: all ease-in-out;
}

.benefit__cta:hover {
    text-decoration: underline;
}

/* FORWHOM SECTION */
#forwhomSection {
    padding: 0 0 8rem;
}

.forwhom__row {
    width: 95%;
    max-width: 1320px;
    margin: auto;
}

.forwhom__row:first-child {
    padding: 0 0 4rem;
}

.forwhom__row:nth-child(2) {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.forwhom__row:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 0;
}

.forwhom__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: calc(25% - 1rem);
    min-width: 16.5625rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.forwhom__img {
    object-fit: cover;
    width: 100%;
    height: 20rem;
    border-radius: 10px 10px 0 0;
}

.forwhom__title {
    font-size: 1rem;
    font-weight: 800;
	text-align: center;
    margin: 0 0 1.5rem;
}

/* OURWORK SECTION */
#ourworkSection {
    padding: 0 0 8rem;
}

.ourwork__row {
    width: 95%;
    max-width: 1320px;
    margin: auto;
}

.ourwork__row:first-child {
    padding: 0 0 4rem;
}

.ourwork__row:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.ourwork__img {
    object-fit: cover;
    width: calc(25% - 1rem);
    min-width: 16.5625rem;
    height: 20rem;
    border-radius: 10px;
}

/* HOWITWORKS SECTION */
#howitworksSection {
    background-color: #E8F3EE;
    padding: 4rem 0;
    margin-bottom: 8rem;
}

.howitworks__row {
    width: 95%;
    max-width: 1320px;
    margin: auto;
}

.howitworks__row:first-child {
    padding: 0 0 5rem;
}

.howitworks__question {
    font-size: .875rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 .5rem;
}

.howitworks__row:last-child {
    display: flex;
    justify-content: space-between;
}

.howitworks__img {
    object-fit: cover;
    width: 50.6%;
    border-radius: 10px;
    max-height: 26rem;
    aspect-ratio: 6.68/4.16;
}

.howitworks__column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 40.98%;
}

.step__number {
    font-size: 2.5rem;
}

.step__title {
    display: flex;
    justify-content: start;
    align-items: baseline;
    gap: .25rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.step__description {
    font-size: .9375rem;
    color: #666;
}

/* CTA SECTION */
#ctaSection {
    padding: 0 0 8rem;
}

.cta__row {
    display: flex;
    width: 95%;
    max-width: 1320px;
    margin: auto;
    padding: 4.445vw 0;
    background-color: #04703B;
    border-radius: 10px;
    justify-content: space-between;
}

.cta__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 44.46%;
    margin: 0 0 0 4.445vw;
}

.cta__question {
    font-size: .875rem;
    font-weight: 700;
    color: #fff;
}

#ctaSection h2 {
    text-align: left;
    color: #fff;
    margin: 0;
}

.cta__description {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 .5rem;
}

.form__container {
    width: 32.57%;
    margin: -9vw 4.445vw 0 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.cta-img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

@media screen and (max-width: 768px) {
    /* GLOBAL STYLES */
    .cta__button {
        font-size: 1.125rem;
    }

    h2 {
        font-size: 1.5625rem;
    }

    /* HEADER SECTION */
    .header__nav-bar {
        position: relative;
        padding: 1rem;
    }

    .header__nav-bar {
        width: auto;
    }
	
	.header__logo {
		max-width: 136px;
	}

    .nav-bar__menu {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        padding: 6rem 1rem 0 1rem;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        transition: left 0.4s ease-in-out;
        z-index: 100;
    }

    .nav-bar__menu.is-active {
        display: flex;
        left: 0;
        margin: 0;
    }

    .menu__item {
        width: 100%;
        padding: 1rem 0;
        border-bottom: #ddd 1px solid;
    }

    .item__link {
        color: #000;
        font-size: 1rem;
        padding: 0.8rem 0;
        width: 100%;
    }

    .menu__item--mobile-cta {
        display: flex;
        width: 100%;
        color: #000;
    }
    .nav-bar__button--mobile {
        width: auto;
        padding: 12px;
    }

    .nav-bar__button--desktop {
        display: none;
    }

    .nav-bar__toggle {
        display: block;
    }

    .nav-bar__toggle.is-active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-bar__toggle.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-bar__toggle.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }

    /* HERO SECTION */
    #heroSection::before {
        background-image: url("https://verdicultura.com/wp-content/uploads/2025/05/skilful-male-landscaper-using-high-altitude-hedge-trimmer-topiary-park-side-view-focused-1-scaled.jpg");
        background-position: left;
    }

    .hero__row {
        width: 92.1%;
    }

    .hero__content {
        width: auto;
        justify-content:start;
        align-items: center;
    }

    h1 {
        text-align: center;
        font-size: 1.875rem;
        margin: 8rem 0 0;
    }

    .hero__subheading {
        text-align: center;
        font-size: 1rem;
    }

    .hero__reviews {
        margin: 0;
    }

    /* BENEFITS SECTION */
    #benefitsSection {
        padding: 5.5rem 0;
    }

    .benefits__row {
        width: 92.1%;
    }

    .benefits__row:first-child {
        padding: 0 0 3.5rem;
    }

    .benefit__container {
        width: auto;
    }

    /* FOR WHOM SECTION */
    #forwhomSection {
        padding: 0 0 5.5rem;
    }

    .forwhom__row {
        width: 92.1%;
    }

    .forwhom__row:first-child {
        padding: 0 0 2.5rem;
    }

    .forwhom__container {
        width: 100%;
    }

    .forwhom__row:last-child {
        padding: 3rem 0 0;
    }

    /* OUR WORK */
    #ourworkSection {
        padding: 0 0 5.5rem;
    }

    .ourwork__row {
        width: 92.1%;
    }

    .ourwork__row:first-child {
        padding: 0 0 2.5rem;
    }

    .ourwork__img {
        width: auto;
    }

    /* HOW IT WORKS */
    #howitworksSection {
        margin: 0 0 5.5rem;
    }

    .howitworks__row {
        width: 92.1%;
    }

    .howitworks__row:last-child {
        flex-direction: column;
        gap: 1.5rem;
    }

    .howitworks__row:first-child {
        padding: 0 0 3.5rem;
    }

    .howitworks__img {
        width: 100%;
    }

    .howitworks__column {
        width: auto;
    }

    .step__number {
        font-size: 2rem;
    }

    .step__title {
        font-size: 1.125rem;
    }

    /* CTA ROW */
    .cta__row {
        width: 92.1%;
        flex-direction: column;
        gap: 2rem;
    }

    .cta__column {
        width: auto;
        margin: 0 4.445vw;
    }

    .form__container {
        margin: 0;
        width: auto;
        margin: 0 4.445vw;
    }
}