/* Start Globel Role */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    background-color: #fff;
}
.wallpaper {
    /*max-width: 1349px;*/
    margin: auto;
    background-color: #fff;
    box-shadow: 1px 1px 5px black;
}
/* End Globel Role */
.wallpaper {
    height: 100%;
}
/* Start Top Header */
.top-head {
    height: 60px;
    background-color: rgb(0, 71, 12);
}
.top-head .container {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.top-head .social-text {
    display: flex;
}
.top-head .social-text p {
    padding-right: 25px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.4s;
}
.top-head .social-text p:nth-child(2), .top-head .social-text p:last-child {
    font-weight: 500;
}
.top-head .social-icon i {
    padding-right: 15px;
    color: white;
    font-size: 18px;
    transition: 0.4s;
    cursor: pointer;
}
.top-head .social-icon i:hover, .top-head .social-text p:hover {
    color: #f1cf69;
}
@media (max-width: 767px) {
    .top-head {display: none;}
}
@media (max-width: 992px) {
    .top-head .social-icon {display: none;}
}
/* End Top Header */
/* Start Head */
.head {
    height: 100px;
    background-color: #ffffff;
    position: sticky;
    width: 100%;
    top:0;
    box-shadow: 1px 1px 3px black;
    z-index: 10;
}
.head .container {
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.head .logo {
    display: flex;
}
.head .logo h2 {
    margin: 0;
    padding-left: 5px;
    color: black;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 1.2px;
    transition: 0.4s;
    cursor: pointer;
}
.head .logo h2:hover {
    color:rgb(0, 71, 12);
}
.head .logo i {
    font-size: 40px;
    color:rgb(0, 71, 12);
}
.head .services a {
    color: black;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    padding-right: 30px;
    transition: 0.4s;
}
.head .services a:hover {
    color:rgb(0, 71, 12);
    text-decoration: underline;
}
.head .icon-cart-burger {
    color: black;
    font-size: 30px;
    position: relative;
    display: flex;
    transition: 0.4s;
    cursor: pointer;
}
.head .cart:hover {
    color:rgb(0, 71, 12);
}

.head .icon-cart-burger::before {
    content: '3';
    position: absolute;
    top: -15px;
    left: 20px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: #f1cf69;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.head .icon-cart-burger .burger {
    height:50xp;
    width:40px;
    display: none;
    position: relative;
    margin-top: -5px;
    margin-left: 20px;
    transition: 0.4s;
}
.head .icon-cart-burger .burger:hover ul{
    display: block;
}
.head .icon-cart-burger .burger:hover ul::before{
    display: block;
}
.head .icon-cart-burger .burger span {
    position: absolute;
    height: 5px;
    width: 40px;
    top: 15px;
    left:0;
    background-color: black;
    border-radius: 15px;
    transition: 0.5s ease;
    z-index: 1;
}
.head .burger span:first-child {
    top: 5px;
}
.head .burger span:nth-child(3) {
    top: 25px;
    color: red;
}
.head .burger:hover span:first-child{
    top: 15px;
    transform: rotate(-45deg);
}
.head .burger:hover span:nth-child(2){
    opacity: 0;
}
.head .burger:hover span:nth-child(3){
    top: 15px;
    transform: rotate(45deg);
}
.head .burger ul {
    position: absolute;
    width: 240px;
    background-color: rgb(216, 216, 216);
    top: 50px;
    left: -180px;
    margin: 0;
    list-style-type: none;
    padding:0;
    opacity: .8;
    transition: 0.4s;
    display: none;
}
.head .icon-cart-burger .burger ul::before {
    content: '';
    position: absolute;
    opacity: 0.8;
    border: 15px solid;
    border-color: transparent;
    border-bottom-color: rgb(216, 216, 216);
    top: -30px;
    left: 185px;
    display: none;
}
.head .burger ul li:not(li:last-child) {
    height: 100%;
    width: 100%;
    border-bottom: 1px solid black;
}
.head .burger ul li a {
    color: rgb(0, 71, 12);
    font-size: 17px;
    height: 100%;
    padding: 20px 20px;
    display: block;
    text-decoration: none;
    font-weight: 800;
    transition: 0.4s;
}
.head .burger ul li a:hover {
    padding-left: 50px;
}
@media (max-width: 992px) {
    .head .container {justify-content: space-between; padding: 0 40px}
    .head .icon-cart-burger .burger {display: block;}
    .head .services {display: none;}
}
@media (max-width: 767px) {
    .head .icon-cart-burger .cart {
        font-size: 25px;
    }
    .head .logo h2 {
        font-size: 25px;
    }
    .head .logo i {
        font-size: 25px;
    }
    .head .icon-cart-burger .burger span {
        width: 30px;
        height: 3px;
    }
    .head .burger span:first-child {
        top: 7px;
    }
    .head .burger span:nth-child(3) {
        top: 23px;
    }
    .head .icon-cart-burger .burger {
        margin-left: 25px;
        margin-top: -3px;
    }
}
/* End Head */
/* Start Home */
.home {
    background-image: url(../images/farm.jpg);
    background-position: center;
    background-size: cover;
    height: calc(100vh - 60px);
    max-width: 100%;
}
.home .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 60px;
}
.home .container p {
    color: white;
    font-size: 35px;
    font-weight: 800;
    position: relative;
}
.home .container p::before {
    content: '';
    position: absolute;
    height: 5px;
    width: 310px;
    background-color: rgb(0, 71, 12);
    border-radius: 25px;
    top: 100%;
    transform: rotate(-8deg);
}
.home .container h1 {
    color: white;
    font-size: 100px;
    font-weight: 800;
    width: 80%;
    text-align: center;
    margin: 0;
    width: 100%;
    padding: 0 10px;
}

@media (max-width: 992px) {
    .home {
        height: calc(100vh)
    }
    .home .container p {
        font-size: 36px;
    }
    .home .container p::before {
        width: 315px;
    }
    .home .container h1 {
        font-size: 70px;
    }
}
@media (max-width: 767px) {
    .home .container p {
        font-size: 26px;
    }
    .home .container p::before {
        width: 240px;
    }
    .home .container h1 {
        font-size: 50px;
    }
}
/* End Home */
/* Start About */
.about {
    margin-top: 200px;
    height: 100vh;
}
.about .container {
    padding: 0 50px;
    position: relative;
    height: 100%;
}
.about .container .text-container {
    display: flex;
}
.about .about-text {
    padding: 50px 350px 0 50px;
    box-shadow: 0 0 5px rgb(133, 133, 133);
    height: 600px;
    width: 80%;
    position: relative;
}
.about .about-text h3 {
    font-size: 30px;
    font-weight: 800;
    color: rgb(0, 71, 12);
}
.about .about-text h2 {
    font-size: 38px;
    line-height: 1.3;
}
.about .about-text p {
    line-height: 1.6;
    color: #777;
}
.about .about-text .persent {
    display: flex;
    gap: 100px;
}
.about .about-text .persent .per-one h3 {
    font-size: 50px;
    margin: 0;
}
.about .about-text .persent .per-one p {
    line-height: 0;
    font-weight: 700;
    color: black;
}
.about .about-text .persent .per-two h3 {
    font-size: 50px;
    margin: 0;
}
.about .about-text .persent .per-two p {
    line-height: 0;
    font-weight: 700;
    color: black;
}
.about .about-image {
    margin-left: -200px;
    margin-top: 50px;
    z-index: 1;
    position: relative;
}
.about .about-image::before {
    content: '36+  Years of experience';
    position: absolute;
    height: 200px;
    width: 200px;
    border-bottom-right-radius: 50px;
    background-color: rgb(0, 71, 12);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
    text-align: center;
    line-height: 1.6;
    left: 150px;
    top: -100px;
    z-index: 2;
}
.about .container .about-image img {
    height: 500px;
    min-width: 100%;
    width: 500px;
}
@media (max-width: 1200px) {
    .about .about-text {
        padding-right: 250px;
    }
    .about .about-image img{
        max-width: 420px;
    }
}
@media (max-width: 992px) {
    .about .text-container {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .about .about-text {
        padding: 50px;
        text-align: center;
        width: 100%;
        height: 800px;
        line-height: 1;
    }
    .about .about-image {
        margin: -150px 0 0;
        padding: 0 100px;
    }
    .about .about-image::before {
        top: 0%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 175px;
        width: 175px;
        font-size: 23px;
    }
    .about .about-text .persent {
        align-items: center;
        margin: auto;
        width: fit-content;
        margin-top: 50px;
    }
    .about .about-image img {
        max-height: 400px
    }
}
@media (max-width: 767px) {
    .about .container{
        padding: 0 15px;
    }
    .about .text-container {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .about .about-text {
        padding: 50px;
        text-align: center;
        width: 100%;
        height: 800px;
        line-height: 1;
    }
    .about .about-image {
        margin: -150px 0 0;
        padding: 0 50px;
    }
    .about .about-image::before {
        top: 0%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 150px;
        width: 150px;
        font-size: 18px;
    }
    .about .about-text .persent {
        align-items: center;
        margin: auto;
        width: fit-content;
        margin-top: 50px;
    }
    .about .about-image img {
        max-height: 300px;
        max-width: 300px;
    }
    .about .about-text h3 {
        font-size: 25px;
        font-weight: 800;
        color: rgb(0, 71, 12);
    }
    .about .about-text h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    .about .about-text p {
        line-height: 1.6;
        color: #777;
    }
    .about .about-text .persent {
        display: flex;
        gap: 100px;
        height: 100px;
    }
    .about .about-text .persent .per-one {
        height: 100%;
    }
    .about .about-text .persent .per-two {
        height: 100%;
    }
    .about .about-text .persent .per-one h3 {
        font-size: 30px;
        margin: 0;
    }
    .about .about-text .persent .per-one p {
        line-height: 0;
        font-weight: 700;
        color: black;
        line-height: 1.6;
    }
    .about .about-text .persent .per-two h3 {
        font-size: 30px;
        margin: 0;
    }
    .about .about-text .persent .per-two p {
        line-height: 0;
        font-weight: 700;
        color: black;
        line-height: 1.6;
    }
}
@media (max-width: 500px) {
    .about .about-text {
        height: 800px;
    }
    .about .about-text .persent {
        display: flex;
        gap: 50px;
        height: 100px;
        justify-content: space-around;
    }
    .about .about-image {
        padding: 0 20px;
    }
    .about .about-image img{
        max-height: 220px;
        max-width: 220px;
    }
    .about .about-image::before {
        top: 0%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 100px;
        width: 100px;
        font-size: 14px;
    }
    .about .about-text .persent .per-one h3 {
        font-size: 23px;
        margin: 0;
    }
    .about .about-text .persent .per-one p {
        line-height: 0;
        font-weight: 700;
        color: black;
        line-height: 1.6;
        font-size: 14px;
    }
    .about .about-text .persent .per-two h3 {
        font-size: 23px;
        margin: 0;
    }
    .about .about-text .persent .per-two p {
        line-height: 0;
        font-weight: 700;
        color: black;
        line-height: 1.6;
        font-size: 14px;
    }
}
/* End About */
/* Start What */
.what {
    background: linear-gradient(97deg, rgba(1,125,63,1) 36%, rgba(252,197,27,1) 100%);
}
.what .container {
    padding: 100px;
}
.what .text-what {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}
.what .text-what .left-text h3 {
    color: #f1cf69;
    font-size: 30px;
    font-weight: 800;
}
.what .text-what .left-text h2 {
    color: white;
    font-size: 40px;
    font-weight: 800;
}
.what .right-text p {
    color: white;
    font-weight: 500;
    line-height: 1.6
}
.what .what-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.what .what-boxes .box {
    background-color: #ffffff;
    text-align: center;
    border-radius: 25px;
}
.what .what-boxes .box img {
    max-width: 100%;
    height: 300px;
}
.what .what-boxes .box h3 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.6;
}
.what .what-boxes .box p {
    font-size: 18px;
    line-height: 1.6;
    padding: 0 15px;
}
@media (max-width: 992px) {
    .what {
        margin-top: 500px
    }
    .what .container {
        padding: 30px;
    }
    .what .text-what {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .what .text-what .left-text h3 {
        color: #f1cf69;
        font-size: 25px;
        font-weight: 800;
    }
    .what .text-what .left-text h2 {
        color: white;
        font-size: 35px;
        font-weight: 800;
    }
    .what .right-text p {
        color: white;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.6
    }
    .what .what-boxes .box h3 {
        font-size: 20px;
        font-weight: 800;
        line-height: 1.6;
    }
    .what .what-boxes .box p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 15px;
    }
}
@media (max-width: 767px) {
    .what {
        margin-top: 300px;
    }
    .what .what-boxes .box {
        background-color: #ffffff;
        text-align: center;
        border-radius: 0;
        margin-top: 50px;
    }
    .what .what-boxes .box img {
        min-width: 100%;
        height: 300px;
    }
}
/* End What */
/* Start Our Product */
.our-product {
    margin-top: 100px;
}
.our-product .container {
    padding: 30px 200px;
}
.our-product .head-our {
    text-align: center;
}
.our-product .head-our h3 {
    font-size: 80px;
    font-weight: 500;
    color: #777;
    font-family:'Times New Roman', Times, serif;
    text-transform: uppercase;
}
.our-product .head-our h2 {
    font-size: 50px;
    font-weight: 800;
    color: rgb(0, 71, 12);
    margin-top: -90px;
    line-height: 0;
    text-transform: uppercase;
}
.our-product .boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 150px;
}
.our-product .boxes .box {
    background-color: #fff;
    text-align: center;
    box-shadow: 0 0 5px gray;
    border-radius: 5px;
    height: 500px;
}
.our-product .boxes .box img {
    width: 100%;
    height: 250px;
}
.our-product .boxes .box h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.6;
    margin-top: 50px;
}
.our-product .boxes .box p {
    font-size: 25px;
    line-height: 1.6;
    padding: 0 15px;
}
@media (max-width: 992px) {
    .our-product .container {
        padding: 30px 50px;
    }
    .our-product .head-our {
        text-align: center;
    }
    .our-product .head-our h3 {
        font-size: 60px;
        font-weight: 500;
        color: #777;
        font-family:'Times New Roman', Times, serif;
        text-transform: uppercase;
    }
    .our-product .head-our h2 {
        font-size: 30px;
        font-weight: 800;
        color: rgb(0, 71, 12);
        margin-top: -70px;
        line-height: 0;
        text-transform: uppercase;
    }
    .our-product .boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-top: 150px;
    }
    .our-product .boxes .box {
        background-color: #fff;
        text-align: center;
        box-shadow: 0 0 5px gray;
        border-radius: 5px;
        height: 500px;
    }
    .our-product .boxes .box img {
        width: 100%;
        height: 250px;
    }
    .our-product .boxes .box h3 {
        font-size: 30px;
        font-weight: 800;
        line-height: 1.6;
        margin-top: 50px;
    }
    .our-product .boxes .box p {
        font-size: 25px;
        line-height: 1.6;
        padding: 0 15px;
    }
}
@media (max-width: 767px) {
    .our-product .container {
        padding: 20px 100px;
    }
    .our-product .boxes {
        grid-template-columns: 1fr;
    }
    
}
@media (max-width: 500px) {
    .our-product .container {
        padding: 20px 50px;
    }
    .our-product .boxes {
        grid-template-columns: 1fr;
    }
    .our-product .head-our h3 {
        font-size: 45px;
    }
    .our-product .head-our h2 {
        font-size: 23px;
        margin-top: -55px;
    }
}
/* End Our Product */
/* Start Work Space */
.work {
    background: linear-gradient(to left, rgba(1,125,63,1) 36%, rgba(252,197,27,1) 100%);
    margin-top: 100px;
}
.work .container {
    padding: 50px 75px;
}
.work .work-head {
    text-align: center;
    color: white;
    font-size: 60px;
    margin-bottom: 50px;
    text-transform: capitalize;
}
.work .container .content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}
.work .container .image img {
    max-width: 100%;
    height: 500px;
}
.work .container .text {
    margin-left: 150px;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}
.work .container .text p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
}
.work .container .text hr {
    width: 70%;
    color: #fff;
    margin: 30px 0;
}
.work .container .work-footer {
    display: grid;
    justify-content: flex-end;
}
.work .container .work-footer .enroll {
    margin-top: 50px;
    
}
.work .container .work-footer .enroll a{
    text-align: center;
    color: #f1cf69;
    font-size: 60px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.8s;
}
.work .container .work-footer .enroll a:hover {
    color: white;
}
@media (max-width: 992px) {
    .work .container {
        padding: 50px 75px;
    }
    .work .work-head {
        text-align: center;
        color: white;
        font-size: 50px;
        margin-bottom: 50px;
    }
    .work .container .content{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
    }
    .work .container .text {
        margin-left: 0;
        display: flex;
        flex-direction: column;
    }
    .work .container .text p {
        font-size: 20px;
        line-height: 1.6;
        color: white;
    }
    .work .container .text p:first-child {
        margin-top: 100px;
    }
    .work .container .text hr {
        width: 70%;
        color: #fff;
        margin: 40px 0;
    }
    .work .container .work-footer .enroll a {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .work .container {
        padding: 50px 25px;
    }
    .work .work-head {
        font-size: 23px;
        margin-bottom: 50px;
    }
    .work .container .content{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
    }
    .work .container .text {
        margin-left: 0;
        display: flex;
        flex-direction: column;
    }
    .work .container .text p {
        font-size: 20px;
        line-height: 1.6;
        color: white;
    }
    .work .container .text p:first-child {
        margin-top: 100px;
    }
    .work .container .text hr {
        width: 70%;
        color: #fff;
        margin: 40px 0;
    }
    .work .container .work-footer .enroll a {
        font-size: 30px;
    }
}
/* End Work Space */
/* Start Gallary */
.gallary {
    margin-top: 100px;
}
.gallary .container {
    padding: 20px 100px;
}
.gallary .gallary-content .gallary-head h2 {
    font-size: 80px;
    text-align: center;
    color:rgb(133, 133, 133)
}
.gallary .gallary-head p {
    margin-top: -90px;
    text-align: center;
    font-size: 40px;
    color: rgb(0, 71, 12);
}
.gallary .gallary-content .images {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.gallary .gallary-content .images img {
    width: 100%;
    height: 300px;
}
@media (max-width: 767px) {
    .gallary .container {
        padding: 20px 20px;
    }
    .gallary .gallary-content .gallary-head h2 {
        font-size: 50px;
    }
    .gallary .gallary-head p {
        margin-top: -60px;
        font-size: 30px;
    }
}
/* End Gallary */
/* Start Footer */
.footer {
    background-color: rgb(0, 71, 12);
    margin-top: 100px;
}
.footer .container {
    text-align: center;
}
.footer .container p {
    padding: 30px 0;
    color: white;
    font-size: 40px;
    margin: 0;
}
@media (max-width: 767px) {
    .footer .container p {
        font-size: 25px;
    }
}
/* End Footer */