:root {
    --headingFont: "Lato", sans-serif;
    --normalFont: "Ubuntu", sans-serif;
}

body,
html {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    transition: 500ms all;
}

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: center;
    width: 100dvw;
    background-color: #4aff08a1;
    backdrop-filter: blur(10px);
    position: fixed;
    gap: 3rem;
    padding: 5px;
    z-index: 1;
    transition: 500ms all;
}

header>.fa-bars {
    display: none;
    transition: 300ms all;
}

.fa-moon {
    font-size: 1.4rem;
    color: #fff;
    cursor: pointer;
    transition: 300ms all;
}

.fa-sun {
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: 300ms all;
}

.fa-plus {
    font-size: 1.4rem;
    color: #fff;
    cursor: pointer;
    transition: 300ms all;
}

header .logoDiv {
    padding: 0;
    transition: 500ms all;
}

header .logo {
    margin: 0;
    padding: 0;
    width: 10%;
    border-radius: 25%;
    box-shadow: 0px 0px 20px #54c229;
    transition: 500ms all;
}

header>.lgdNav {
    margin-left: -50%;
    transition: 500ms all;
}

header>.lgdNav>ul {
    display: flex;
    flex-direction: row;
    gap: 30px;
    transition: 500ms all;
}

header>.lgdNav>ul>li {
    list-style: none;
    transition: 500ms all;
}

header>.lgdNav>ul>li>a {
    position: relative;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    font-family: var(--headingFont);
}

header>.lgdNav>ul>li>a:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 20px;
    width: 0%;
    height: 2px;
    background: #ffffff71;
    border-radius: 50px;
    transition: 200ms all;
}

header>.lgdNav>ul>li>a:hover::before {
    left: 0%;
    width: 100%;
    height: 2px;
}

header>a>input[type="button"] {
    padding: 10px;
    border-radius: 4px;
    background: white;
    color: #099409;
    border: none;
    margin: 0;
    margin-left: 2%;
    font-size: 0.9rem;
    font-family: var(--headingFont);
    cursor: pointer;
    box-shadow: 0px 0px 10px #036406;
    transition: 300ms all;
}

header>a>input[type="button"]:hover {
    padding: 10px;
    border-radius: 4px;
    color: white;
    background: #044304;
    border: none;
    font-size: 0.9rem;
    font-family: var(--headingFont);
}

.smdNav {
    display: none;
    transition: 500ms all;
}


/* ~~~~~~~~~~~~~First Section~~~~~~~~~~~~~~~~~~~~~ */

.hero {
    background-image: url("images/farm.jpg");
    display: flex;
    width: 100dvw;
    height: 100dvh;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px 0px 400px 10px #08000e;
    overflow-y: hidden;
}

.hero>div {
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    height: 100dvh;
    margin-left: 10%;
}

.hero>div>p:nth-child(1) {
    color: #cfcfcf;
    font-family: var(--normalFont);
    margin: 0;
    font-size: 0.8rem;
    cursor: default;
}

.hero>div>h3 {
    cursor: default;
    color: #ffffff;
    font-size: 3rem;
    width: 90%;
    font-family: var(--normalFont);
    margin: 0;
    margin-bottom: 2%;
}

.hero>div>p:nth-child(3) {
    background: #4aff0876;
    backdrop-filter: blur(10px);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 15px;
    text-align: center;
    width: fit-content;
    color: #fff;
    box-shadow: 0px 0px 10px #000;
    font-size: 0.8rem;
    font-family: var(--normalFont);
    margin: 0;
    cursor: default;
}

.hero>div> a {
    width: fit-content;
    height: fit-content;
}

.hero>div> a >input[type="button"] {
    background: #ececec;
    border: none;
    border-radius: 2px;
    padding: 13px 15px 13px 15px;
    text-align: center;
    width: fit-content;
    color: #099409;
    box-shadow: 0px 0px 10px #000;
    font-size: 0.9rem;
    font-family: var(--normalFont);
    margin: 0;
    margin-top: 10%;
    transition: 300ms all;
    cursor: pointer;
}

.hero>div> a>input[type="button"]:hover {
    color: #ececec;
    background: #416941;
}


/* ~~~~~~~~~~~~~~~~~End of First Section~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Second Section~~~~~~~~~~~~~~ */

.secondSection {
    background: #f5f5f5;
    width: 100dvw;
    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~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Third Section~~~~~~~~~~~~~~ */

.thirdSection {
    display: flex;
    width: 100dvw;
    height: 100dvh;
    padding: 5% 0% 5% 0%;
    background: white;
    flex-direction: column;
    justify-content: center;
    overflow-y: hidden;
    transition: 500ms all;
}

.thirdSection>div:nth-child(1) {
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.thirdSection>div:nth-child(1)>p {
    font-family: var(--normalFont);
    color: #000000af;
    font-weight: lighter;
    font-size: 1rem;
    margin: 0;
}

.thirdSection>div:nth-child(1)>h3 {
    font-family: var(--normalFont);
    font-size: 3rem;
    font-weight: lighter;
    color: black;
    margin: 0;
}

.thirdSection>div:nth-child(1)>h3>p {
    display: inline;
    color: #51a430;
}

.thirdSection>.mainServiceDiv {
    margin-top: 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    width: 100dvw;
    height: 100dvh;
}

.thirdSection>.mainServiceDiv>.servicesDiv {
    background: white;
    display: flex;
    align-items: left;
    flex-direction: column;
    padding: 2rem 4rem 3.5rem 4rem;
    width: 30%;
    height: fit-content;
    box-shadow: 0px 4px 5px #00000019;
    transition: 500ms all;
}

.thirdSection>.mainServiceDiv>.servicesDiv:nth-child(3) {
    background: white;
    display: flex;
    align-items: left;
    flex-direction: column;
    padding: 1.1rem 4rem 2.2rem 4rem;
    width: 30%;
    height: fit-content;
    box-shadow: 0px 4px 5px #00000019;
    transition: 500ms all;
}

.thirdSection>.mainServiceDiv>.servicesDiv:hover {
    box-shadow: 0px 15px 20px #00000019;
}

.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;
}

.thirdSection>.mainServiceDiv>.servicesDiv:hover>div:nth-child(1)>h3 {
    color: #862a1a;
}

.thirdSection>.mainServiceDiv>.servicesDiv>div:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.thirdSection>.mainServiceDiv>.servicesDiv>div:nth-child(1)>h3 {
    font-family: var(--normalFont);
    font-size: 1.5rem;
    transition: 500ms all;
}

.thirdSection>.mainServiceDiv>.servicesDiv>div:nth-child(2) {
    margin: 0;
    font-family: var(--normalFont);
}

.thirdSection>.mainServiceDiv>.servicesDiv>div:nth-child(2)>p {
    color: #646464;
    font-size: 0.9rem;
}

/* ~~~~~~~~~~~~~~~~~End of Third Section~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Fourth Section~~~~~~~~~~~~~~ */

.fourthSection {
    display: flex;
    background: #fafafa;
    height: 100dvh;
    width: 100dvw;
    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~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Fifth Section~~~~~~~~~~~~~~ */

.fifthSection {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    height: 100dvh;
    width: 100dvw;
    background: #FFFFFF;
    font-family: var(--normalFont);
    align-items: center;
    justify-content: center;
    transition: 500ms all;
}

.fa-door-open {
    color: #51a430;
    font-size: 3rem;
}

.fifthSection>div:nth-child(1)>h2 {
    font-size: 2.3rem;
    font-weight: lighter;
    color: black;
    margin: 0;
    margin-bottom: 1rem;
}

.fifthSection>div:nth-child(2)>p {
    margin-bottom: .9rem;
    font-size: 1rem;
    color: black;
}

.fa-location-dot {
    color: #ff3300de;
}

.fifthSection>div:nth-child(3)>p {
    font-size: 1.5rem;
    color: black;
    font-weight: lighter;
}

.fifthSection>div:nth-child(3)>p>span {
    padding: 10px;
    background: #099409;
    color: white;
    font-size: 1.5rem;
    font-weight: lighter;
}

.fifthSection>div:nth-child(4)>iframe {
    border-radius: 20px;
    box-shadow: 0px 0px 10px #00000037;
    transition: 500ms all;
}

.fifthSection>div:nth-child(4)>iframe:hover {
    box-shadow: 0px 0px 30px #00000037;
}


/* ~~~~~~~~~~~~~~~~~End of Fifth Section~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~Footer~~~~~~~~~~~~~~ */

.footer {
    display: flex;
    align-items: center;
    flex-direction:column ;
    justify-content: center;
    width: 100dvw;
    height: 10dvh;
    padding-top: 10%;
    padding-bottom: 10%;
    gap: 1rem;
    height: 25dvh;
    background: #b8b8b8;
}

.fa-globe {
    box-shadow: 0px 0px 25px #7f7d7d;
    border-radius: 50%;
    color: transparent;
    background: linear-gradient(to bottom right, green, darkgreen);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 3rem;
    
    
}

.footer>div:nth-child(2)>h2 {
    font-family: var(--normalFont);
    font-size: 1.5rem;
    color: black;
    font-weight: lighter;
}

.footer>div:nth-child(2)>h2>span {
    padding: .5rem .9rem .5rem .9rem;
    background: #099409;
    border-radius: .7rem .7rem .7rem 0rem;
    color: white;
    font-size: 1.5rem;
    font-weight: lighter;
}

.footer>div:nth-child(3) {
    display: grid;
    place-items: center;
    gap: .9rem;
    height: fit-content;
    width: 100%;
}

.footer>div:nth-child(3)>div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    gap: 10px;
    width: 100dvw;
}

.footer>div:nth-child(3)>a {
    font-size: 1rem;
    color: #2f9005;
    font-family: var(--normalFont);
    border-radius: 10px;
    text-decoration: none;
    font-variant: small-caps;
    transition: 300ms all;
}

.footer>div:nth-child(3)>a:hover {
    color: #113603;
}

.fa-whatsapp,
.fa-facebook,
.fa-envelope,
.fa-youtube {
    font-size: 1.1rem;
    padding: 1rem .99rem 1rem .99rem;
    color: white;
    border-radius: 10px;
    background: #51a430;
    transition: 300ms all;
}

.fa-whatsapp:hover,
.fa-facebook:hover,
.fa-envelope:hover,
.fa-youtube:hover {
    color: #cfcece;
    border-radius: 10px;
    background: #113603;
}

.footer>div:nth-child(3)>p {
    color: #ffffff4a;
    cursor: default;
    font-weight: lighter;
    font-size: .9rem;
    font-family: var(--normalFont);
}

.last {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--normalFont);
    color: #6a6565;
    background: black;
    height: 10dvh;
    text-align: center;
    font-size: .7rem;
}


/* ~~~~~~~~~~~~~~~~~End of Footer~~~~~~~~~~~~~~ */

@media (max-width: 1000px) {
    header {
        margin: 0;
        width: 100dvw;
        gap: 6rem;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    header>p {
        display: inline-block;
    }
    header>.fa-bars {
        margin-left: -3%;
        display: inline-block;
        font-size: 1.4rem;
        color: #fff;
        cursor: pointer;
    }
    .logoDiv {
        width: fit-content;
        height: 50px;
    }
    .logoDiv>.logo {
        width: 90px;
        border-radius: 50%;
    }
    header>.lgdNav {
        display: none;
    }
    header>a {
        margin: 0;
        display: none;
    }
    .smdNav {
        position: fixed;
        background: #0abf0096;
        box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.511);
        backdrop-filter: blur(15px);
        display: flex;
        top: 30%;
        left: -500px;
        padding: 2rem 4rem 2rem 0px;
        gap: 50px;
        width: fit-content;
        height: 300px;
        align-items: center;
        justify-content: center;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
        z-index: 1;
    }
    .smdNav>nav {
        list-style: none;
    }
    .smdNav>nav>ul {
        display: flex;
        flex-direction: column;
        align-items: left;
        height: fit-content;
        justify-content: center;
        gap: 30px;
    }
    .smdNav>nav>ul>li {
        list-style: none;
    }
    .smdNav>nav>ul>li>a {
        position: relative;
        font-size: 1rem;
        color: #fff;
        text-decoration: none;
        font-family: var(--headingFont);
    }
    .smdNav>nav>ul>li>a:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 22px;
        width: 0%;
        height: 2px;
        background: #ffffff71;
        border-radius: 50px;
        transition: 250ms all;
    }
    .smdNav>nav>ul>li>a:hover::before {
        left: 0%;
        width: 100%;
        height: 2px;
    }
    .smdNav>a>input[type="button"] {
        padding: 11px;
        border-radius: 4px;
        background: white;
        color: #099409;
        border: none;
        margin: 0;
        font-size: 0.8rem;
        font-family: var(--headingFont);
        cursor: pointer;
        box-shadow: 0px 0px 10px #036406;
        transition: 300ms all;
    }
    .smdNav>a>input[type="button"]:hover {
        padding: 11px;
        border-radius: 4px;
        color: white;
        background: #044304;
        border: none;
        font-size: 0.8rem;
        font-family: var(--headingFont);
    }
    .hero>div>h3 {
        cursor: default;
        color: #ffffff;
        font-size: 3rem;
        font-family: var(--normalFont);
        margin: 0;
        margin-bottom: 2%;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~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%;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~~Third Section ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
    .thirdSection {
        flex-wrap: wrap;
        justify-content: start;
        height: 180dvh;
        margin-top: 0%;
    }
    .thirdSection>div:nth-child(1) {
        padding: 0;
    }

    /* .thirdSection > .mainServiceDiv {
        display: flex;
        flex-wrap: wrap;
    } */

    .thirdSection>.mainServiceDiv>.servicesDiv {
        padding: 0;
        padding: 2rem 2rem 2rem 2rem;
        width: 70%;
        height: fit-content;
        box-shadow: 0px 4px 5px #00000019;
        transition: 500ms all;
    }

    .thirdSection>.mainServiceDiv>.servicesDiv:nth-child(3) {
        padding: 0;
        padding: 2rem 2rem 2rem 2rem;
        width: 70%;
        height: fit-content;
        box-shadow: 0px 4px 5px #00000019;
        transition: 500ms all;
    }

    /* ~~~~~~~~~~~~~~ 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;
    }
    /* ~~~~~~~~~~~~~~ Fifth Section ~~~~~~~~~~~~~~~~~~~~~*/
    .fifthSection {
        overflow: hidden;
        padding: 5px;
    }
    .fifthSection>div:nth-child(3)>p>span {
        padding: 5px;
    }
    .fifthSection>div:nth-child(3) {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 2rem;
        width: 100dvw;
    }
    .fifthSection>div:nth-child(3)>p {
        text-align: center;
        text-wrap: wrap;
        font-size: 1.2rem;
    }
}
