/* Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400,500,700;800&family=Rammetto+One&display=swap'); */

/* poppins-300 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v24-latin-300.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-800 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v24-latin-800.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* rammetto-one-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rammetto One';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/rammetto-one-v21-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Variables */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5vmax;
}

:root {

    /* Primary Colours */
    --clr-beige: #f6f7f1;
    --clr-orange: #ff7340;
    --clr-drkorange: #fc5d24;
    --clr-drk-green: #324f22;
    --clr-lgt-green: #518438;
    --clr-brown: #561E0E;

    /* Utility Colours */
    --clr-white: #ffffff;
    --clr-grey-100: #F2F2F2;
    --clr-grey-200: #DDDDDD;
    --clr-grey-300: #ADADAD;
    --clr-grey-400: #464646;

    /* Fonts */
    --ff-primary: 'Poppins', sans-serif;
    --ff-secondary: 'Rammetto One', sans-serif;

    /* Animation */
    --transition-01: all 250ms ease-in;

    /* Box Shadow */
    --box-shadow: 3px 4px 20px -5px rgba(0, 0, 0, 0.12);
    /* Add box shadow versions! */

    /* Margin */
    --margin-sm: 75px;
    --margin-md: 120px;
    --margin-lg: 145px;

    /* Padding */
    --padding-sm: 75px;
    --Padding-md: 120px;
    --Padding-lg: 145px;

    /* Border Radius */
    --border-radius: 10px;

    /* Breakpoints */
    --tablet: 678px;
    --desktop: 0;
}

/* Resets */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: var(--ff-primary);
    font-size: 16px;
    font-weight: 300;
    color: var(--clr-grey-400);
}

.container {
    max-width: 1250px;
    padding: 0 25px;
    margin: 0 auto;
}

/* Fonts */
h1,
h3,
h4 {
    font-family: var(--ff-primary);
}

h2 {
    font-family: var(--ff-secondary);
}

h1 {
    font-size: 32px;
    line-height: 1.5;
    color: var(--clr-drk-green);
}

h2 {
    font-size: 35px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--clr-grey-400);
    text-transform: uppercase;
}

h3 {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 300;
    color: var(--clr-grey-400);
    margin-bottom: 50px;
}

h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--clr-grey-400);
    margin-bottom: 5px;
}

p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

input,
textarea,
select,
button {
    font-family: var(--ff-primary), sans-serif;
}

/* Fonts - Responsive */
@media only screen and (min-width: 768px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 44px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

    p {
        font-size: 18px;
    }
}



/* Links, Buttons, Images */
a {
    display: inline-block;
    font-family: var(--ff-primary);
    font-weight: 300;
    font-size: 16px;
    text-decoration: none;
    color: var(--clr-drk-green);
}

li {
    list-style: none;
}

button {
    background-color: var(--clr-orange);
    padding: 10px 60px;
    border-radius: 5px;
    font-family: var(--ff-primary);
    font-weight: 700;
    font-size: 20px;
    color: var(--clr-white);
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: var(--clr-drkorange);
    transition: var(--transition-01);
}


img {
    display: block;
    width: 100%;
    height: 100%;
}

/* Display */
.d-none {
    display: none;
}

/* Section - Header */
.header {
    background-color: var(--clr-white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--box-shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 70px;
}

.header-logo {
    display: flex;
}

.header-logo img {
    width: 80%;
}

.header-btn-open,
.header-btn-close {
    color: var(--clr-orange);
}

.nav {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: auto;
    top: 70px;
    margin-left: -25px;
    padding: 30px 15px;
    background-color: var(--clr-white);
    box-shadow: var(--box-shadow);
    /* box-shadow: 3px 4px 20px 0px rgba(0, 0, 0, 0.12) inset; */
}

.nav-items {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-item a {
    padding: 10px 20px;
    border-radius: 2px;
    margin: 10px 0;
}

.nav-item a:hover {
    transition: var(--transition-01);
    background-color: var(--clr-beige);
}

@media only screen and (min-width: 480px) {
    .nav {
        width: 300px;
        right: 0;
    }
}

/* Header - Responsive */
@media only screen and (min-width: 980px) {

    .header-btn-open,
    .header-btn-close {
        display: none;
    }

    .header-signup {
        margin-right: unset;
    }

    .nav {
        display: flex;
        position: relative;
        width: unset;
        left: unset;
        top: unset;
        margin-left: unset;
        padding: unset;
        background-color: unset;
        border-top: none;
        box-shadow: none;
        height: unset;
    }

    .nav-items {
        flex-direction: row;
        display: flex;
    }

    .nav-item {
        text-align: center;
    }


    .nav-item a {
        color: var(--clr-drk-green);
        margin-left: 20px;
    }

    .nav-item button {
        display: none;
    }
}

/* Section - Hero */
.hero {
    background-color: var(--clr-beige);
}


.hero-content {
    padding-top: var(--padding-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-header {
    margin-bottom: 50px;
    max-width: 20ch;
}

.hero-subhead-1 {
    padding-bottom: 5px;
    font-family: var(--ff-secondary);
    text-transform: uppercase;
    font-size: 24px;
    color: var(--clr-orange);
}

.hero-subhead-2 {
    padding-bottom: 10px;
    font-family: var(--ff-secondary);
    text-transform: uppercase;
    font-size: 20px;
    color: var(--clr-orange);
}

.hero-list {
    margin-bottom: 50px;
}

.hero-list li img {
    width: 30px;
    padding-left: 7px;
}

.hero-list li {
    font-weight: 700;
    font-size: 18px;
    line-height: 2.3;
    color: var(--clr-drk-green);
}

.hero-list img {
    display: inline;
    width: unset;
    height: unset;
}

.hero-image {
    text-align: center;
    margin-top: 0;
    width: 100%;
    max-width: 400px;
}

/* Contact Form */

.hero-form {
    width: 100%;
    max-width: 500px;
}

.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    border: 2px var(--clr-lgt-green) solid;
}

.form {
    border-radius: var(--border-radius);
    background-color: var(--clr-white);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-header {
    font-family: var(--ff-secondary);
    font-size: 26px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--clr-brown);
    margin-bottom: 5px;
}

.form-subhead {
    margin-bottom: 15px;
    max-width: 34ch;
    line-height: 1.6;
}

.form-name,
.form-email,
.form-phone,
.form-description {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

.form-name::placeholder,
.form-email::placeholder,
.form-phone::placeholder,
.form-description::placeholder {
    font-family: var(--ff-primary);
}

.form-btn {
    background-color: var(--clr-orange);
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.form-btn:hover {
    background-color: var(--clr-drkorange);
}

.form-btn[value] {
    font-family: var(--ff-primary);
    font-weight: 700;
    font-size: 16px;
}


/* Hero - Responsive(tablet) */
@media only screen and (min-width: 678px) {
    .hero {
        padding-top: var(--padding-sm);
    }

    .hero-subhead-1 {
        font-size: 22px;
        padding: 0;
    }

    .hero-header {
        font-size: 36px;
        margin-bottom: 45px;
    }

    .hero-subhead-2 {
        font-size: 20px;
        padding: 0;
    }

    .hero-list {
        display: flex;
        flex-direction: row;
        margin-bottom: 45px;
    }

    .hero-list li {
        font-weight: 700;
        line-height: 2.5;
        color: var(--clr-drk-green);
    }

    .hero-list li:not(:last-child) {
        padding-right: 22px;
    }

}

/* Hero - Responsive(desktop) */
@media only screen and (min-width: 980px) {

    .container {
        padding: 0 40px;
    }

    .hero {
        background-image: url("img/Grass-illustration-lg.svg");
        background-repeat: no-repeat;
        background-position-y: 101%;
        background-position-x: 33vw;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 60% 40%;
        justify-items: space-between;
        align-items: start;
    }

    .hero-text {
        align-items: flex-start;
        text-align: left;
    }

    .hero-image {
        display: none;
    }

    .hero-image-desktop {
        width: 400px;

    }

    .hero-image-desktop img {
        display: block;
        position: relative;
    }

}

/* Section - About */
.about {
    background-color: var(--clr-lgt-green);
    padding-top: var(--padding-sm);
    display: flex;
}

.about-col-1 {
    text-align: center;
    max-width: 500px;
}

.about-header {
    color: var(--clr-white);
}

.about-text {
    color: var(--clr-white);
    padding-bottom: 175px;
}

.about-tel,
.about-tel a {
    font-size: 20px;
}

.about-tel a {
    font-weight: 700;
    color: var(--clr-white);
}

.about-col-2 {
    position: relative;
}

.about-img {
    position: absolute;
    width: 70%;
    max-width: 275px;
    height: auto;
    border: var(--clr-drkorange) 10px solid;
    border-radius: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-img-2 {
    display: none;
}

.about small,
.about small a {
    color: var(--clr-white);
    font-size: 10px;
    margin-bottom: 25px;
}

.about small a {
    text-decoration: underline;
}

/* About - Responsive(tablet) */
@media only screen and (min-width: 678px) {
    .container {
        padding: 0 40px;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-tel,
    .about-tel a {
        font-size: 22px;
    }

    .about-col-2 {
        display: flex;
        justify-content: center;
    }

    .about-img {
        width: 250px;
        bottom: -120px;
        top: unset;
        right: 0px;
        transform: unset;
        box-shadow: var(--box-shadow);
    }

    .about-img-2 {
        display: block;
        border: var(--clr-white) 5px solid;
        border-radius: var(--border-radius);
        max-width: 430px;
        height: auto;
        margin-bottom: var(--margin-sm);
    }

    .about-text {
        padding-bottom: var(--padding-sm);
    }

}

/* About - Responsive(desktop) */
@media only screen and (min-width: 980px) {

    .about-content {
        display: grid;
        grid-template-columns: 60% 40%;
        width: 100%;
    }

    .about-col-1 {
        text-align: left;
        width: 100%;
    }

    .about-img {
        bottom: -100px;
        left: -125px;
        transform: unset;
    }

    .about-img-2 {
        display: block;
        width: 90%;
    }

}

/* Section - Services */
.services {
    background-color: var(--clr-beige);
    padding-top: 175px;
    padding-bottom: var(--padding-sm);

}

.services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services-header {
    color: var(--clr-drk-green);
}

.card {
    background-color: var(--clr-white);
    padding: 10px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    width: 100%;
    max-width: 430px;
}

.card:last-child {
    margin-bottom: 0px;
    ;
}

.card-row-2 {
    padding: 20px;
}

.card-subhead {
    color: var(--clr-brown);
}

/* Services - Responsive(tablet) */
@media only screen and (min-width: 678px) {
    .services {
        padding-top: 175px;
    }

    .services-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px;

    }

    .card {
        margin-bottom: unset;
    }

}

/* Services - Responsive(desktop) */
@media only screen and (min-width: 980px) {

    .services-cards {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 30px;

    }

}

/* Section - How It Works? */
.hiw {
    padding: var(--padding-sm) 0;
    text-align: center;
}

.hiw-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hiw-header {
    color: var(--clr-brown);
}

.hiw-item-row-1 {
    display: flex;
    justify-content: center;
}

.hiw-item-row-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hiw-item {
    padding: 40px 40px 20px 40px;
}

.hiw-item-image {
    margin-bottom: 20px;
    padding: 0 30px;
    max-width: 250px;
}

.hiw-item-subhead {
    color: var(--clr-drk-green);
}

.hiw-item-text {
    max-width: 30ch;
}

/* HIW - Responsive(tablet) */
@media only screen and (min-width: 678px) {

    .hiw-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px;

    }

    .hiw-item {
        margin-bottom: unset;
    }

}

/* HIW - Responsive(desktop) */
@media only screen and (min-width: 980px) {

    .hiw {
        background-image: url("img/hiw-dotted-line.svg");
        background-repeat: no-repeat;
        background-position-y: 350px;
        background-position-x: center;
    }

    .hiw-items {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .hiw-item {
        padding: 40px 0px 20px 0px;
    }

    .hiw-item-row-1 {
        display: flex;
        justify-content: center;
    }

    .hiw-item-row-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hiw-item-image {
        padding: 0px;
        max-width: 175px;
    }

    .hiw-item-text {
        max-width: 22ch;
    }

}

/* Section - Gallery */

.gallery {
    padding-top: var(--padding-sm);
    background-color: var(--clr-beige);
    text-align: center;
    position: relative;
    background-image: url("img/Grass-illustration-sm.svg");
    background-repeat: repeat-x;
    background-position-y: 101%;
}

.gallery-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-header {
    color: var(--clr-drk-green);
}

.gallery-subhead {
    max-width: 50ch;
}

.carousel {
    padding-bottom: 35px;
    width: 100%;
    max-width: 430px;
}


.gallery-btns {
    display: flex;
    justify-content: center;
    padding-bottom: 125px;
}

.gallery-btns .prev-arrow,
.gallery-btns .next-arrow {
    width: 35px;
    margin: 0 15px;
    cursor: pointer;
}

.gallery-image {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0px;
}

/* Gallery - Responsive(tablet) */
@media only screen and (min-width: 678px) {

    .gallery-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .carousel {
        width: 100%;
        max-width: 1000px;
    }

}

/* Gallery - Responsive(desktop) */
@media only screen and (min-width: 980px) {

    .carousel {
        width: 920px;
    }

    .carousel img {
        height: 550px;
        width: auto;
    }

}

/* Section - CTA */

.cta {
    background-color: var(--clr-lgt-green);
    padding: var(--padding-sm) 0;
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-header {
    color: var(--clr-white);
    max-width: 15ch;
    margin-bottom: 25px;
    font-size: 42px;
}

.cta-btn {
    background-color: var(--clr-orange);
    padding: 15px 75px;
    border-radius: 5px;
    font-family: var(--ff-primary);
    font-weight: 700;
    font-size: 20px;
    color: var(--clr-white);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: var(--clr-drkorange);
    transition: var(--transition-01);
}

/* CTA - Responsive(tablet) */
@media only screen and (min-width: 678px) {

    .cta-header {
        max-width: 100%;
    }

}

/* CTA - Responsive(desktop) */
@media only screen and (min-width: 980px) {

    .cta-header {
        font-size: 46px;
    }

}

/* Section - Areas */
.areas {
    padding: 35px 0;
    background-color: var(--clr-drk-green);
    text-align: center;
}

.areas-header {
    color: var(--clr-white);
    margin-bottom: 25px;
}

.ticker {
    overflow: hidden;
    background-color: var(--clr-drk-green);
    color: #fff;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.ticker-content {
    display: flex;
}

.ticker-content span {
    padding: 0 40px;
    white-space: nowrap;
    display: flex;
}

.ticker-content span img {
    height: 20px;
    margin-left: 10px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Section - Footer */
.footer {
    padding-top: var(--padding-sm);
}

.footer-map {
    width: 100%;
    height: 400px;
    margin-bottom: var(--margin-sm);
}

.footer-map iframe {
    border-radius: var(--border-radius);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-phone {
    margin-bottom: 15px;
}

.footer-email {
    margin-bottom: 50px;
}

.footer img {
    padding-right: 5px;
    display: inline;
    width: unset;
    height: unset;
}

.footer-logo {
    margin-bottom: var(--margin-sm);
}

.footer-links {
    background-color: var(--clr-beige);
    padding: 25px 0;
    text-align: center;
}

.footer-link-items {
    display: flex;
    flex-direction: column;
}

.footer-link-items small,
.footer-link-items small a {
    font-size: 11px;
    padding: 2px 0;
}

.footer-link-items small:first-child {
    font-size: 16px;
}

.footer-link-items small a {
    text-decoration: underline;
}


/* Footer - Responsive(tablet) */
@media only screen and (min-width: 768px) {

    .footer-contact {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-link-items {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-link-items small,
    .footer-link-items small a {
        padding: 0;
    }

}

/* Footer - Responsive(desktop) */
@media only screen and (min-width: 980px) {

    .footer-details {
        display: flex;
    }

    .footer-details h3 {
        margin-right: 25px;
        margin-bottom: -25px;
    }

    .footer-map {
        height: 500px;
    }

}