:root {
    --headingFont: "Lato", sans-serif;
    --normalFont: "Ubuntu", sans-serif;
    --brand-dark: #144901;
    --brand-dark-deep: #0d330d;
    --brand-green: #51a430;
    --brand-green-bright: #099409;
    --brand-accent: #7dd956;
    --header-text: #f0f0f0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
html {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    transition: 500ms all;
}

img {
    max-width: 100%;
    height: auto;
}

html::-webkit-scrollbar {
    background: white;
    border-radius: 50%;
    width: 5px;
}

html::-webkit-scrollbar-track {
    border-radius: 50%;
}

html::-webkit-scrollbar-thumb {
    background: #024702;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    background-color: var(--brand-dark);
    position: fixed;
    gap: clamp(0.5rem, 1.5vw, 1.5rem);
    padding: 8px clamp(0.75rem, 2vw, 2rem);
    z-index: 101;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 300ms ease, border-color 300ms ease;
}

header.is-scrolled {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(81, 164, 48, 0.35);
}

header>.fa-bars {
    display: none;
    transition: 300ms all;
}

.fa-moon,
.fa-sun,
.fa-plus {
    font-size: 1.4rem;
    color: var(--header-text);
    cursor: pointer;
    transition: color 300ms ease, filter 300ms ease;
}

header #moon:hover,
header .fa-moon:hover,
header .fa-sun:hover,
header>.fa-bars:hover,
header>.fa-plus:hover {
    color: var(--brand-accent);
    filter: drop-shadow(0 0 6px rgba(125, 217, 86, 0.55));
}

header .logoDiv {
    padding: 0;
    flex: 0 0 auto;
    transition: 500ms all;
}

header .logoDiv a {
    display: block;
    line-height: 0;
    position: relative;
}

header .logoDiv a::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 28%;
    background: radial-gradient(circle, rgba(125, 217, 86, 0.22) 0%, transparent 72%);
    z-index: 0;
    pointer-events: none;
}

header .logo {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    width: auto;
    max-width: 72px;
    height: auto;
    border-radius: 25%;
    border: 2px solid rgba(81, 164, 48, 0.55);
    box-shadow: 0 0 14px rgba(125, 217, 86, 0.35);
    transition: 500ms all;
}

header>.lgdNav {
    margin-left: 0;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
    transition: 500ms all;
}

header>.lgdNav>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(0.65rem, 1.1vw, 1.5rem);
    transition: 500ms all;
    padding: 0;
    margin: 0;
}

header>.lgdNav>ul>li {
    list-style: none;
    transition: 500ms all;
}

header>.lgdNav>ul>li>a {
    position: relative;
    font-size: clamp(0.76rem, 0.85vw, 0.95rem);
    color: var(--header-text);
    text-decoration: none;
    font-family: var(--headingFont);
    white-space: nowrap;
    padding: 0.2rem 0;
    transition: color 200ms ease;
}

header>.lgdNav>ul>li>a:hover {
    color: var(--brand-accent);
}

header>.lgdNav>ul>li>a:before {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 2px);
    width: 0%;
    height: 2px;
    background: var(--brand-accent);
    border-radius: 50px;
    transition: 200ms all;
}

header>.lgdNav>ul>li>a:hover::before {
    left: 0%;
    width: 100%;
    height: 2px;
}

header>a {
    flex-shrink: 0;
    text-decoration: none;
}

header>a>input[type="button"] {
    padding: 10px 14px;
    border-radius: 4px;
    background: var(--brand-green-bright);
    color: #fff;
    border: none;
    margin: 0;
    font-size: clamp(0.78rem, 0.85vw, 0.9rem);
    font-family: var(--headingFont);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: background 300ms ease, color 300ms ease;
    white-space: nowrap;
}

header>a>input[type="button"]:hover {
    background: var(--brand-accent);
    color: var(--brand-dark);
}

header #moon,
header .fa-moon,
header .fa-sun {
    flex-shrink: 0;
}

.smdNav {
    display: none;
    transition: 500ms all;
}


/* ~~~~~~~~~~~~~First Section~~~~~~~~~~~~~~~~~~~~~ */

.hero {
    position: relative;
    background-image: url("images/farm-hero.jpg");
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-y: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(20, 73, 1, 0.78) 0%,
        rgba(13, 51, 13, 0.58) 42%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 0;
}

.hero>div {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    height: 100dvh;
    margin-left: 10%;
}

.hero>div>h3 {
    cursor: default;
    color: #ffffff;
    font-size: 2.5rem;
    width: 90%;
    max-width: 900px;
    font-family: var(--normalFont);
    margin: 0;
    margin-bottom: 2%;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero>div>.hero-subheading {
    background: rgba(13, 51, 13, 0.72);
    border: 1px solid rgba(125, 217, 86, 0.45);
    backdrop-filter: blur(8px);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 15px;
    text-align: center;
    width: fit-content;
    max-width: 90%;
    color: #f0f0f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    font-size: 0.95rem;
    font-family: var(--normalFont);
    margin: 0;
    cursor: default;
}

.hero>div>.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 10%;
}

.hero>div>.hero-buttons a {
    width: fit-content;
    height: fit-content;
}

.hero>div>.hero-buttons a >input[type="button"] {
    border-radius: 4px;
    padding: 13px 18px;
    text-align: center;
    width: fit-content;
    font-size: 0.9rem;
    font-family: var(--normalFont);
    margin: 0;
    transition: background 300ms ease, color 300ms ease, border-color 300ms ease;
    cursor: pointer;
}

.hero>div>.hero-buttons a:first-child >input[type="button"] {
    background: transparent;
    color: #fff;
    border: 2px solid var(--brand-accent);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero>div>.hero-buttons a:first-child >input[type="button"]:hover {
    background: var(--brand-accent);
    color: var(--brand-dark);
    border-color: var(--brand-accent);
}

.hero>div>.hero-buttons a:last-child >input[type="button"] {
    background: var(--brand-green-bright);
    color: #fff;
    border: 2px solid var(--brand-green-bright);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero>div>.hero-buttons a:last-child >input[type="button"]:hover {
    background: var(--brand-accent);
    color: var(--brand-dark);
    border-color: var(--brand-accent);
}


/* ~~~~~~~~~~~~~~~~~End of First Section~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Impact Section~~~~~~~~~~~~~~ */

.impactSection {
    display: flex;
    width: 100%;
    max-width: 100%;
    padding: 4rem 2rem;
    background: var(--brand-dark);
    color: var(--header-text);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    border-top: 1px solid rgba(81, 164, 48, 0.25);
    transition: background 500ms ease, color 500ms ease;
}

.impactSection>div:nth-child(1) {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.impactSection>div:nth-child(1)>p:first-child {
    font-family: var(--normalFont);
    color: #a8bca0;
    font-weight: lighter;
    font-size: 1rem;
    margin: 0;
    letter-spacing: 0.04em;
}

.impactSection>div:nth-child(1)>h3 {
    font-family: var(--normalFont);
    font-size: 3rem;
    font-weight: lighter;
    color: #ffffff;
    margin: 0;
}

.impactSection>div:nth-child(1)>h3>p {
    display: inline;
    color: var(--brand-accent);
}

.impactSection .impactIntro {
    font-family: var(--normalFont);
    color: #c8dcc0;
    font-size: 1rem;
    max-width: 600px;
    margin: 1rem 0 0;
}

.impactSection>.mainImpactDiv {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    min-width: 0;
}

.impactSection>.mainImpactDiv>.impactCard {
    background: var(--brand-dark-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    width: calc(25% - 2rem);
    min-width: 200px;
    flex: 1 1 200px;
    max-width: 280px;
    height: fit-content;
    border: 1px solid rgba(81, 164, 48, 0.22);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: box-shadow 500ms ease, border-color 500ms ease;
}

.impactSection>.mainImpactDiv>.impactCard:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border-color: rgba(125, 217, 86, 0.4);
}

.impactSection>.mainImpactDiv>.impactCard>i {
    color: var(--brand-accent);
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.impactSection>.mainImpactDiv>.impactCard>h4 {
    font-family: var(--normalFont);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-green);
    margin: 0 0 0.5rem;
}

.impactSection>.mainImpactDiv>.impactCard>p {
    font-family: var(--normalFont);
    color: #c8dcc0;
    font-size: 0.9rem;
    margin: 0;
}

.impactSection>.mainImpactDiv>.impactCard:hover>h4 {
    color: var(--brand-accent);
}

/* ~~~~~~~~~~~~~~~~~End of Impact Section~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Second Section~~~~~~~~~~~~~~ */

.secondSection {
    background: #f5f5f5;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    padding: 20px;
    transition: 500ms all;
}

.secondSection>div:nth-child(1) {
    display: flex;
    align-items: center;
    height: 100%;
    width: fit-content;
    overflow-x: hidden;
}

.secondSection>div>img:nth-child(1) {
    border-radius: 20px;
    width: 80%;
}

.secondSection>div>img:nth-child(2) {
    border-radius: 20px;
    width: 50%;
    background: #f5f5f5;
    transition: 500ms all;
    position: relative;
    bottom: -100px;
    left: -200px;
    padding: 10px;
}

.secondSection>div:nth-child(2)>div {
    width: fit-content;
    display: flex;
    align-items: center;
}

.secondSection>div:nth-child(2)>div>h3,
h4 {
    font-family: var(--normalFont);
    font-size: 2rem;
    font-weight: lighter;
}

.secondSection>div:nth-child(2)>div>h4 {
    padding: 10px;
    font-weight: lighter;
    color: #fbfbfb;
    background: #51a430;
}

.secondSection>div:nth-child(2)>h3 {
    font-family: var(--normalFont);
    font-size: 3rem;
    width: 80%;
    font-weight: lighter;
    color: black;
    margin: 0;
    transition: 500ms all;
}

.secondSection>div:nth-child(2)>h3>p {
    display: inline;
    transition: 500ms all;
    color: #51a430;
}

.secondSection>div:nth-child(2)>p:nth-child(3) {
    font-family: var(--normalFont);
    font-size: 0.9rem;
    transition: 500ms all;
    width: 80%;
    color: black;
}

.secondSection>div:nth-child(2)>p:nth-child(4) {
    font-family: var(--normalFont);
    transition: 500ms all;
    font-size: 0.9rem;
    width: 80%;
    color: #646464;
}


/* ~~~~~~~~~~~~~~~~~End of Second Section~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Card Icons~~~~~~~~~~~~~~ */

.fa-egg {
    color: #862a1a;
    font-size: 2.3rem;
}

.fa-paw,
.fa-shop {
    color: #862a1a;
    font-size: 2.3rem;
}

.fa-drumstick-bite {
    color: #862a1a;
    font-size: 2.3rem;
}

/* ~~~~~~~~~~~~~~~~~Products Section~~~~~~~~~~~~~~ */

.productsSection {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 100dvh;
    padding: 5% 0%;
    background: #f5f5f5;
    flex-direction: column;
    justify-content: center;
    overflow-y: hidden;
    transition: 500ms all;
}

.productsSection>div:nth-child(1) {
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.productsSection>div:nth-child(1)>p:first-child {
    font-family: var(--normalFont);
    color: #000000af;
    font-weight: lighter;
    font-size: 1rem;
    margin: 0;
}

.productsSection>div:nth-child(1)>h3 {
    font-family: var(--normalFont);
    font-size: 3rem;
    font-weight: lighter;
    color: black;
    margin: 0;
}

.productsSection>div:nth-child(1)>h3>p {
    display: inline;
    color: #51a430;
}

.productsSection .productsIntro {
    font-family: var(--normalFont);
    color: #646464;
    font-size: 1rem;
    max-width: 650px;
    margin: 1rem 0 0;
}

.productsSection>.mainServiceDiv {
    margin-top: 3%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
}

.productsSection>.mainServiceDiv>.servicesDiv {
    background: white;
    display: flex;
    align-items: left;
    flex-direction: column;
    padding: 2rem 4rem 2.5rem 4rem;
    width: 30%;
    max-width: 100%;
    min-width: 0;
    height: fit-content;
    box-shadow: 0px 4px 5px #00000019;
    transition: 500ms all;
}

.productsSection>.mainServiceDiv>.servicesDiv:hover {
    box-shadow: 0px 15px 20px #00000019;
}

.productsSection>.mainServiceDiv>.servicesDiv:hover>div:nth-child(1)>h3 {
    color: #862a1a;
}

.productsSection>.mainServiceDiv>.servicesDiv>div:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.productsSection>.mainServiceDiv>.servicesDiv>div:nth-child(1)>h3 {
    font-family: var(--normalFont);
    font-size: 1.5rem;
    transition: 500ms all;
}

.productsSection>.mainServiceDiv>.servicesDiv>div:nth-child(2) {
    margin: 0;
    font-family: var(--normalFont);
}

.productsSection>.mainServiceDiv>.servicesDiv>div:nth-child(2)>p {
    color: #646464;
    font-size: 0.9rem;
}

.productsSection .productCta {
    display: inline-block;
    margin-top: 1rem;
}

.productsSection .productCta>input[type="button"] {
    padding: 10px 14px;
    border-radius: 4px;
    background: #099409;
    color: #fff;
    border: none;
    font-size: 0.85rem;
    font-family: var(--normalFont);
    cursor: pointer;
    box-shadow: 0px 0px 10px #036406;
    transition: 300ms all;
}

.productsSection .productCta>input[type="button"]:hover {
    background: #044304;
    color: #ececec;
}

.productsSection .productsTeaserCta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.productsSection .productsTeaserCta a>input[type="button"] {
    padding: 12px 24px;
    border-radius: 4px;
    background: #099409;
    color: #fff;
    border: none;
    font-size: 0.95rem;
    font-family: var(--normalFont);
    cursor: pointer;
    box-shadow: 0px 0px 10px #036406;
    transition: 300ms all;
}

.productsSection .productsTeaserCta a>input[type="button"]:hover {
    background: #044304;
    color: #ececec;
}

.productsSection--standalone {
    padding-top: 6rem;
}

/* ~~~~~~~~~~~~~~~~~End of Products Section~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Gallery Section~~~~~~~~~~~~~~ */

.gallerySection {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: fit-content;
    padding: 4rem 2rem;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: 500ms all;
}

.gallerySection--standalone {
    padding-top: 6rem;
    min-height: 100dvh;
}

.gallerySection>div:nth-child(1) {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.gallerySection>div:nth-child(1)>p:first-child {
    font-family: var(--normalFont);
    color: #000000af;
    font-weight: lighter;
    font-size: 1rem;
    margin: 0;
}

.gallerySection>div:nth-child(1)>h3 {
    font-family: var(--normalFont);
    font-size: 3rem;
    font-weight: lighter;
    color: black;
    margin: 0;
}

.gallerySection>div:nth-child(1)>h3>p {
    display: inline;
    color: #51a430;
}

.gallerySection .galleryIntro {
    font-family: var(--normalFont);
    color: #646464;
    font-size: 1rem;
    max-width: 650px;
    margin: 1rem 0 0;
}

.galleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    min-width: 0;
}

.galleryGrid--teaser {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.galleryItem {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 5px #00000019;
    transition: 500ms all;
    cursor: default;
}

button.galleryItem {
    cursor: pointer;
    width: 100%;
    text-align: left;
}

button.galleryItem:hover {
    box-shadow: 0px 15px 20px #00000019;
    transform: translateY(-4px);
}

.galleryItem img {
    width: 100%;
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallerySection .galleryTeaserCta {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
}

.gallerySection .galleryTeaserCta a>input[type="button"] {
    padding: 12px 24px;
    border-radius: 4px;
    background: #099409;
    color: #fff;
    border: none;
    font-size: 0.95rem;
    font-family: var(--normalFont);
    cursor: pointer;
    box-shadow: 0px 0px 10px #036406;
    transition: 300ms all;
}

.gallerySection .galleryTeaserCta a>input[type="button"]:hover {
    background: #044304;
    color: #ececec;
}

/* ~~~~~~~~~~~~~~~~~Lightbox~~~~~~~~~~~~~~ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightboxClose {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 300ms ease;
}

.lightboxClose:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightboxImage {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

/* ~~~~~~~~~~~~~~~~~End of Gallery Section~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Videos Section~~~~~~~~~~~~~~ */

.videosSection {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: fit-content;
    padding: 4rem 2rem;
    background: #f5f5f5;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: 500ms all;
}

.videosSection--standalone {
    padding-top: 6rem;
    min-height: 100dvh;
}

.videosSection>div:nth-child(1) {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.videosSection>div:nth-child(1)>p:first-child {
    font-family: var(--normalFont);
    color: #000000af;
    font-weight: lighter;
    font-size: 1rem;
    margin: 0;
}

.videosSection>div:nth-child(1)>h3 {
    font-family: var(--normalFont);
    font-size: 3rem;
    font-weight: lighter;
    color: black;
    margin: 0;
}

.videosSection>div:nth-child(1)>h3>p {
    display: inline;
    color: #51a430;
}

.videosSection .videosIntro {
    font-family: var(--normalFont);
    color: #646464;
    font-size: 1rem;
    max-width: 650px;
    margin: 1rem 0 0;
}

.videoGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    min-width: 0;
}

.videoGroupHeading {
    font-family: var(--normalFont);
    font-size: 1.5rem;
    font-weight: lighter;
    color: black;
    margin: 0;
    width: 100%;
    text-align: center;
}

.videoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    width: 100%;
    min-width: 0;
}

.videoGrid--teaser {
    grid-template-columns: minmax(0, min(720px, 100%));
    justify-content: center;
}

.videoGrid--shorts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.videoEmbed {
    position: relative;
    width: 100%;
    min-width: 0;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 5px #00000019;
    transition: 500ms all;
    background: #000;
}

.videoEmbed--short {
    width: 100%;
    max-width: min(315px, 100%);
    padding-bottom: 0;
    aspect-ratio: 9 / 16;
    flex-shrink: 1;
    min-width: 0;
}

.videoEmbed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.videosSection .videosTeaserCta,
.videosSection .youtubeBanner {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
}

.videosSection .videosTeaserCta a>input[type="button"],
.videosSection .youtubeBanner a>input[type="button"] {
    padding: 14px 28px;
    border-radius: 4px;
    background: #c4302b;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-family: var(--normalFont);
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    transition: 300ms all;
}

.videosSection .videosTeaserCta a>input[type="button"] {
    background: #099409;
    box-shadow: 0px 0px 10px #036406;
}

.videosSection .videosTeaserCta a>input[type="button"]:hover {
    background: #044304;
    color: #ececec;
}

.videosSection .youtubeBanner a>input[type="button"]:hover {
    background: #8b1f1b;
    color: #ececec;
}

.videosSection .youtubeBanner {
    margin-top: 2rem;
}

/* ~~~~~~~~~~~~~~~~~End of Videos Section~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Fourth Section~~~~~~~~~~~~~~ */

.fourthSection {
    display: flex;
    background: #fafafa;
    height: 100dvh;
    width: 100%;
    max-width: 100%;
    align-items: center;
    flex-direction: row;
    font-family: var(--normalFont);
    transition: 500ms all;
}

.fourthSection>.fourthSectionImageDiv {
    padding: 0px 0px 0px 3rem;
    width: 100%;
}

.fourthSection>.fourthSectionImageDiv>img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
}

.fourthSection>.aboutDiv {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.fourthSection>.aboutDiv>div:nth-child(1)>h3 {
    font-family: var(--normalFont);
    font-size: 3rem;
    font-weight: lighter;
    color: black;
    margin: 0;
}

.fourthSection>.aboutDiv>div:nth-child(1)>h3>p {
    display: inline;
    color: #51a430;
}

.fourthSection>.aboutDiv>.aboutSectionDiv {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.fourthSection>.aboutDiv>.aboutSectionDiv>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem;
    gap: 6rem;
}

.fourthSection>.aboutDiv>.aboutSectionDiv>div>div:nth-child(1)>div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fourthSection>.aboutDiv>.aboutSectionDiv>div>div:nth-child(1)>div>i {
    color: #099409;
    padding: 20px;
    background: #eef0ee;
    border-radius: 50px;
    text-align: center;
    font-size: 1.9rem;
}

.fourthSection>.aboutDiv>.aboutSectionDiv>div>div:nth-child(1)>div>h3 {
    color: black;
    font-size: 1.8rem;
}

.fourthSection>.aboutDiv>.aboutSectionDiv>div>div:nth-child(1)>p {
    color: #272727;
    text-align: left;
    width: 100%;
    font-size: .9rem;
}

.fourthSection>.aboutDiv>.aboutSectionDiv>div>div:nth-child(2)>div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fourthSection>.aboutDiv>.aboutSectionDiv>div>div:nth-child(2)>div>i {
    color: #099409;
    padding: 20px;
    background: #eef0ee;
    border-radius: 50px;
    text-align: center;
    font-size: 1.9rem;
}

.fourthSection>.aboutDiv>.aboutSectionDiv>div>div:nth-child(2)>div>h3 {
    color: black;
    font-size: 1.8rem;
}

.fourthSection>.aboutDiv>.aboutSectionDiv>div>div:nth-child(2)>p {
    color: #272727;
    text-align: left;
    width: 100%;
    font-size: .9rem;
}


/* ~~~~~~~~~~~~~~~~~End of Fourth Section~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Site Footer~~~~~~~~~~~~~~ */

.siteFooter {
    background: #144901;
    color: #f0f0f0;
    width: 100%;
    max-width: 100%;
    border-top: 4px solid #51a430;
    position: relative;
    z-index: 0;
    font-family: var(--normalFont);
}

.siteFooter__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.siteFooter__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem 2rem;
}

.siteFooter__col {
    min-width: 0;
}

.siteFooter__heading {
    font-family: var(--headingFont);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
}

.siteFooter__accent {
    color: #7dd956;
}

.siteFooter__logoLink {
    display: inline-block;
    line-height: 0;
    margin-bottom: 1rem;
}

.siteFooter__logo {
    width: 80px;
    max-width: 100%;
    height: auto;
    border-radius: 20%;
    box-shadow: 0 0 15px rgba(125, 217, 86, 0.35);
}

.siteFooter__tagline {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #c8dcc0;
    margin: 0;
}

.siteFooter__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.siteFooter__links li {
    margin: 0;
}

.siteFooter__links a {
    display: inline-block;
    color: #dce8d8;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 2;
    transition: color 200ms ease;
}

.siteFooter__links a:hover {
    color: #7dd956;
}

.siteFooter__email {
    display: block;
    color: #7dd956;
    font-size: 0.95rem;
    margin: 0 0 1rem;
    text-decoration: none;
    word-break: break-word;
    transition: color 200ms ease;
}

.siteFooter__email:hover {
    color: #fff;
}

.siteFooter__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.siteFooter__social a {
    text-decoration: none;
    line-height: 0;
}

.siteFooter .fa-whatsapp,
.siteFooter .fa-facebook,
.siteFooter .fa-envelope,
.siteFooter .fa-youtube {
    font-size: 1.1rem;
    padding: 1rem .99rem 1rem .99rem;
    color: white;
    border-radius: 10px;
    background: #51a430;
    transition: 300ms all;
}

.siteFooter .fa-whatsapp:hover,
.siteFooter .fa-facebook:hover,
.siteFooter .fa-envelope:hover,
.siteFooter .fa-youtube:hover {
    color: #cfcece;
    background: #113603;
}

.siteFooter__location {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    color: #dce8d8;
}

.siteFooter__location .fa-location-dot {
    color: #ff6633;
    margin-right: 0.35rem;
}

.siteFooter__hours {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: #dce8d8;
}

.siteFooter__badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: #099409;
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.siteFooter__map {
    margin-top: 2.5rem;
    width: 100%;
}

.siteFooter__map iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.siteFooter__copyright {
    background: #0d330d;
    text-align: center;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.siteFooter__copyright p {
    margin: 0;
    font-size: 0.8rem;
    color: #a8bca0;
}


/* ~~~~~~~~~~~~~~~~~End of Site Footer~~~~~~~~~~~~~~ */

@media (max-width: 1280px) {
    header>.lgdNav>ul {
        gap: 0.75rem;
    }

    header>.lgdNav>ul>li>a {
        font-size: 0.84rem;
    }

    header>a>input[type="button"] {
        font-size: 0.8rem;
        padding: 9px 11px;
    }
}

@media (max-width: 1150px) {
    header {
        gap: 0.5rem;
        padding: 8px 0.85rem;
    }

    header>.lgdNav>ul {
        gap: 0.55rem;
    }

    header>.lgdNav>ul>li>a {
        font-size: 0.78rem;
        letter-spacing: -0.02em;
    }

    header .logo {
        max-width: 60px;
    }
}

@media (max-width: 1050px) {
    header>.lgdNav>ul>li>a {
        font-size: 0.74rem;
    }

    header>a>input[type="button"] {
        font-size: 0.74rem;
        padding: 8px 9px;
    }
}

@media (max-width: 1000px) {
    header {
        margin: 0;
        width: 100%;
        max-width: 100%;
        gap: 0.5rem;
        align-items: center;
        justify-content: space-between;
        padding: 8px 12px;
    }
    header>p {
        display: inline-block;
    }
    header>.fa-bars {
        margin-left: 0;
        flex: 0 0 auto;
        order: 1;
        display: inline-block;
        font-size: 1.4rem;
        color: #fff;
        cursor: pointer;
    }
    header .logoDiv {
        order: 2;
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
        height: auto;
        display: flex;
        justify-content: center;
        padding: 0 0.25rem;
    }
    header .logoDiv a {
        max-width: 100%;
    }
    header .logoDiv .logo,
    .logoDiv>.logo {
        width: auto;
        max-width: min(72px, 32vw);
        max-height: 44px;
        height: auto;
        object-fit: contain;
        border-radius: 50%;
        border: 2px solid rgba(81, 164, 48, 0.55);
        box-shadow: 0 0 12px rgba(125, 217, 86, 0.35);
    }
    header #moon,
    header .fa-moon,
    header .fa-sun {
        order: 3;
        flex: 0 0 auto;
    }
    header>.lgdNav {
        display: none;
    }
    header>a {
        margin: 0;
        display: none;
    }
    .smdNav {
        position: fixed;
        top: 0;
        left: 0;
        width: min(320px, 88vw);
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 4.75rem 1.25rem 1.5rem;
        background: var(--brand-dark);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.4);
        border-right: 1px solid rgba(81, 164, 48, 0.25);
        z-index: 100;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-100%);
        transition: transform 300ms ease;
        border-radius: 0;
    }
    .smdNav.is-open {
        transform: translateX(0);
    }
    .smdNavCta {
        flex-shrink: 0;
        display: block;
        width: 100%;
        margin: 0 0 1.25rem;
        text-decoration: none;
    }
    .smdNavCta>input[type="button"] {
        width: 100%;
        padding: 12px;
        border-radius: 4px;
        background: var(--brand-green-bright);
        color: #fff;
        border: none;
        margin: 0;
        font-size: 0.9rem;
        font-family: var(--headingFont);
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
        transition: background 300ms ease, color 300ms ease;
    }
    .smdNavCta>input[type="button"]:hover {
        background: var(--brand-accent);
        color: var(--brand-dark);
    }
    .smdNav>nav {
        flex: 1 1 auto;
        min-height: 0;
        width: 100%;
        overflow-y: auto;
    }
    .smdNav>nav>ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1.25rem;
        height: auto;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .smdNav>nav>ul>li {
        list-style: none;
        width: 100%;
    }
    .smdNav>nav>ul>li>a {
        position: relative;
        display: block;
        font-size: 1rem;
        color: var(--header-text);
        text-decoration: none;
        font-family: var(--headingFont);
        padding: 0.15rem 0;
        transition: color 200ms ease;
    }

    .smdNav>nav>ul>li>a:hover {
        color: var(--brand-accent);
    }

    .smdNav>nav>ul>li>a:before {
        content: "";
        position: absolute;
        left: 0;
        top: calc(100% + 2px);
        width: 0%;
        height: 2px;
        background: var(--brand-accent);
        border-radius: 50px;
        transition: 250ms all;
    }
    .smdNav>nav>ul>li>a:hover::before {
        width: 100%;
    }
    .hero>div>h3 {
        cursor: default;
        color: #ffffff;
        font-size: 1.75rem;
        font-family: var(--normalFont);
        margin: 0;
        margin-bottom: 2%;
    }
    .hero>div>.hero-subheading {
        font-size: 0.85rem;
    }
    .hero>div>.hero-buttons {
        margin-top: 8%;
    }
    .hero>div>.hero-buttons a >input[type="button"] {
        font-size: 0.85rem;
        padding: 11px 13px;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~Impact Section */
    .impactSection {
        padding: 3rem 1rem;
    }
    .impactSection>div:nth-child(1)>h3 {
        font-size: 2.2rem;
    }
    .impactSection>.mainImpactDiv {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
    .impactSection>.mainImpactDiv>.impactCard {
        width: 100%;
        min-width: 0;
        max-width: none;
        flex: none;
        padding: 1.5rem 1rem;
    }
    .impactSection>.mainImpactDiv>.impactCard>h4 {
        font-size: 1.4rem;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~Products Section */
    .productsSection {
        padding: 3rem 0;
        min-height: auto;
    }
    .productsSection>div:nth-child(1) {
        padding: 0 1rem;
    }
    .productsSection>div:nth-child(1)>h3 {
        font-size: 2.2rem;
    }
    .productsSection>.mainServiceDiv {
        gap: 2rem;
        padding: 0 1rem;
    }
    .productsSection>.mainServiceDiv>.servicesDiv {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    .productsSection>.mainServiceDiv>.servicesDiv>div:nth-child(1) {
        flex-wrap: wrap;
    }
    .productsSection>.mainServiceDiv>.servicesDiv .productCta,
    .productsSection>.mainServiceDiv>.servicesDiv .productCta>input[type="button"] {
        max-width: 100%;
    }
    .productsSection .productsTeaserCta {
        padding: 0 1rem;
    }
    .productsSection .productsTeaserCta a,
    .productsSection .productsTeaserCta a>input[type="button"] {
        max-width: 100%;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~Gallery Section */
    .gallerySection {
        padding: 3rem 1rem;
    }
    .gallerySection>div:nth-child(1)>h3 {
        font-size: 2.2rem;
    }
    .galleryGrid,
    .galleryGrid--teaser {
        grid-template-columns: 1fr;
    }
    .galleryItem img {
        height: 200px;
    }
    .gallerySection .galleryTeaserCta {
        padding: 0 0.5rem;
    }
    .gallerySection .galleryTeaserCta a,
    .gallerySection .galleryTeaserCta a>input[type="button"] {
        max-width: 100%;
    }
    .lightbox {
        padding: 1rem;
    }
    .lightboxClose {
        top: 0.75rem;
        right: 0.75rem;
    }
    .lightboxImage {
        max-width: calc(100vw - 2rem);
        max-height: 80vh;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~Videos Section */
    .videosSection {
        padding: 3rem 1rem;
    }
    .videosSection>div:nth-child(1)>h3 {
        font-size: 2.2rem;
    }
    .videoGrid,
    .videoGrid--teaser {
        grid-template-columns: 1fr;
    }
    .videoGrid--shorts {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .videoEmbed--short {
        max-width: min(315px, 100%);
        width: 100%;
        margin: 0 auto;
        flex-shrink: 1;
        min-width: 0;
    }
    .videosSection .videosTeaserCta,
    .videosSection .youtubeBanner {
        padding: 0 0.5rem;
    }
    .videosSection .videosTeaserCta a,
    .videosSection .videosTeaserCta a>input[type="button"],
    .videosSection .youtubeBanner a,
    .videosSection .youtubeBanner a>input[type="button"] {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~Second Section */
    .secondSection {
        flex-direction: column-reverse;
        height: 120dvh;
    }
    .secondSection>div:nth-child(1) {
        
        flex-direction: row;
        height: 100%;
        overflow: hidden;
    }
    .secondSection>div:nth-child(1)>img:nth-child(1) {
        width: 60%;
    }
    .secondSection>div:nth-child(1)>img:nth-child(2) {
        padding: 5px;
        width: 50%;
        left: -120px;
        bottom: -45px;
    }
    .secondSection>div:nth-child(2)>p:nth-child(3) {
        width: 90%;
    }
    /* ~~~~~~~~~~~~~~ Fourth Section ~~~~~~~~~~~~~~~~~~~~~*/
    .fourthSection {
      padding-top: 30%;
      padding-bottom: 30%;
      flex-direction: row;
    }
    .fourthSection>.fourthSectionImageDiv {
        display: none;
    }
    .fourthSection>.aboutDiv {
        padding-top: 20%;
        padding-bottom: 20%;
        width: 100%;
    }
    .fourthSection>.aboutDiv>.aboutSectionDiv>div {
        gap: 1rem;
        flex-wrap: wrap;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~Site Footer */
    .siteFooter__inner {
        padding: 2.5rem 1.25rem 1.5rem;
    }
    .siteFooter__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .siteFooter__map {
        margin-top: 2rem;
    }
    .siteFooter__copyright {
        padding: 1rem 1.25rem;
    }
}
