* {
    margin: 0px;
    box-sizing: border-box;
    font-family: "Jost", serif;
}   

img {
    display: block;
    width: 100%;
    height: auto;
}

.container {
    display: block;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #000;
}

ul {
    list-style: none;
    padding: 0;
}

.heading-text-block {
    display: block;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 25px;
}


.heading-text-block strong {
    display: block;
    font-size: 47px;
    font-weight: 700;
    text-transform: uppercase;
    color: #8EB486;
}

.line-1 {
    display: block;
    width: 30%;
    border: 2px solid rgb(222, 222, 222);
    margin: 7px 0;
}

.line-2 {
    display: block;
    width: 35%;
    border: 2px solid rgb(222, 222, 222);
    margin: 7px 0;
}

@media (max-width: 1199px) {

    .container {
        display: block;
        width: 100%;
        max-width: 850px;
        padding: 0 15px;
        margin: 0 auto;
    }

    .heading-text-block strong {
        display: block;
        font-size: 37px;
        font-weight: 700;
        text-transform: uppercase;
        color: #8EB486;
    }

}

/* Header Block Start */

.header-outter {
    display: block;
    z-index: 999;
    background: #fff;
}

.header-logo {
    width: 10%;
    display: inline-block;
}

.header-inner {
    display: flex;
    margin: 0 -15px;
    padding: 15px 0;
    justify-content: space-between;
}

.header-menu ul {
    display: flex;
}

.header-menu {
    display: flex;
    align-items: center;
}

.header-menu li {
    position: relative;
    padding-left: 35px;
    font-size: 20px;
    text-transform: capitalize;

}

.header-menu li a {
    position: relative;
}

.header-menu ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background-color: #000000;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.header-menu ul li a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

@media (max-width: 1199px) {
    .header-menu li {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .header-menu li {
        font-size: 20px;
    }

}

/* Header Block End */

/* Banner Block Start */

.banner-outter {
    display: block;
    position: relative;
    margin-bottom: 45px;
}

.banner-inner {
    display: flex;
    margin: 0 -15px;
}

.banner-text-block {
    position: absolute;
    z-index: 99;
    text-align: center;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.banner-text-block span {
    display: block;
    font-size: 30px;
    color: #fff;
    font-weight: 200;
}

.banner-text-block h1 {
    display: block;
    font-size: 60px;
    color: #8DC63F;
    font-weight: 700;
}

.banner-text-block p {
    display: block;
    font-size: 22px;
    color: #fff;
    font-weight: 200;
}

.banner-outter::before {
    content: '';
    position: absolute;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    height: 100%;
    display: block;
}

@media (max-width: 1199px) {
    .banner-text-block span {
        display: block;
        font-size: 20px;
        color: #fff;
        font-weight: 200;
    }

    .banner-text-block h1 {
        display: block;
        font-size: 50px;
        color: #8DC63F;
        font-weight: 700;
    }

    .banner-text-block p {
        display: block;
        font-size: 15px;
        color: #fff;
        font-weight: 200;
    }
}

/* Banner Block End */

/* Static Text Block Start */

.static-text-block-outter {
    display: block;
    clear: both;
    margin-top: 45px;
}

.static-text-block-inner {
    display: block;
    margin: 0 -15px;
}

.static-text-block {
    display: block;
    padding-top: 30px;
    text-align: center;

}

.static-text-block p {
    display: block;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.static-text-block a {
    text-align: center;
    font-size: 20px;
    text-transform: capitalize;
    color: #8EB486;
    position: relative;
}

.static-text-block a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background-color: #8DC63F;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.static-text-block a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.static-text-block a::after {
    padding-left: 20px;
    content: "\f178";
    font-family: "Font Awesome 6 free";
    font-weight: 700
}

@media (max-width: 1199px) {
    .static-text-block p {
        display: block;
        margin-bottom: 16px;
        font-size: 16px;

    }

    .static-text-block a {
        text-align: center;
        font-size: 16px;
        text-transform: capitalize;
        color: #8EB486;
        position: relative;
    }

}

/* Static Text Block  End */

/* About-Us Block Start */

.about-us-outer {
    display: flex;
    clear: both;
    margin-top: 45px;
}

.about-us-inner {
    display: flex;
    margin: 0 -15px;
}

.about-img {
    width: 670px;
    height: 350px;
}

.about-us-text {
    display: block;
    width: 100%;
    padding-right: 25px;
    margin: auto 0;
}

.about-us-text h2 {
    display: block;
    font-size: 45px;
    margin-bottom: 20px;
    color: #8EB486;
}

.about-us-text-content p {
    display: block;
    color: #000000;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-getmore {
    display: block;
    font-weight: 600;
    border: 2px solid #6A9C89;
    background-color: #fff;
    font-size: 20px;
    height: 65px;
    width: 200px;
    transition: .4s;
}

.btn-getmore a {
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.btn-getmore:hover {
    border-top-right-radius: 50px;
}

@media (max-width: 1199px) {

    .about-us-text h2 {
        display: block;
        font-size: 35px;
        margin-bottom: 20px;
        color: #8EB486;
    }

    .about-us-text-content p {
        display: block;
        color: #000000;
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .about-img {
        width: 670px;
        height: 290px;
    }

    .btn-getmore {
        display: block;
        font-weight: 600;
        border: 2px solid #6A9C89;
        background-color: #ffffff;
        font-size: 18px;
        height: 55px;
        width: 200px;
        transition: .4s;
    }
}


/* About-us Block End */

/* Our Process Block Start */

.our-process-block-outter {
    display: block;
    clear: both;
    margin-bottom: 45px;
}

.our-process-block-inner {
    display: block;
    margin: 0 -15px;
}

.our-process-text-block {
    display: block;
    font-size: 35px;
    font-weight: 500;
}

.our-process-block-row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.our-process-block-item {
    display: block;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 60px 80px;
    transition: 0.3s;
    color: #000000;
}

.our-process-block-item:hover {
    border-color: #000;
}

.our-process-block-item:hover span {
    color: #6A9C89;
}

.our-process-block-item span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s;
}

@media (max-width: 1199px) {
    .our-process-text-block {
        display: block;
        font-size: 25px;
        font-weight: 500;
    }

    .our-process-block-item {
        display: block;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        padding: 50px 50px;
        transition: 0.3s;
        color: #000000;
    }

    .our-process-block-item span {
        display: block;
        font-size: 16px;
        font-weight: 700;
        transition: 0.3s;
    }
}


/* Our Process Block End */

/* Core Values Block Start */

.cover-value-block-outer {
    display: block;
    clear: both;
    margin-bottom: 45px;
}

.core-value-block-inner {
    display: block;
    margin: 0 -15px;
}

.core-value-items-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.core-value-item {
    width: 24%;
    display: block;
    padding: 50px 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.core-value-item:hover span {
    color: #000;
}

.core-value-item span {
    display: block;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: gray;
    transition: 0.4s;
}

.core-value-item p {
    display: block;
    font-size: 16px;
    letter-spacing: .2px;
}

@media (max-width: 1199px) {
    .core-value-item {
        padding: 40px 15px;
        width: 49%;
        margin-bottom: 20px;
    }

    .core-value-item span {
        font-size: 22px;
    }

    .core-value-item p {
        font-size: 18px;
    }
}

/* Core Values Block End */

/* Testimonial Block Start */

.testimonial-block-outer {
    display: block;
    clear: both;
    position: relative;
    margin-bottom: 45px;
}

.testimonial-block-inner {
    display: block;
    margin: 0 -15px;
}

.testimonial-block-outer img {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.testimonial-block-outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.testimonial-block-content hr {
    margin: 0 auto;
}

.testimonial-block-content {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    text-align: center;
}

.testimonial-block-content strong {
    display: block;
    z-index: 99;
    font-size: 40px;
    margin: 0px 0px 10px 0px;
    color: #fff;
    text-transform: uppercase;
}

.testimonial-block-content span {
    display: block;
    font-size: 35PX;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

hr {
    display: block;
    border: 1px solid #8DC63F;
    width: 300px;
    margin: 0px 0px 45px 245px;
}

.testimonial-block-content p.amount {
    display: block;
    text-align: center;
    margin: 10px 0;
    color: #8DC63F;
    font-size: 45px;
    margin-bottom: 25px;
    font-weight: 800;
}

.testimonial-block-content p {
    display: block;
    text-align: center;
    margin: 10px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 100;
}

@media (max-width: 1199px) {
    .testimonial-block-content strong {
        font-size: 30px;
    }

    hr {
        width: 200px;
    }

    .testimonial-block-content span {
        font-size: 30PX;
    }

    .testimonial-block-content p.amount {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .testimonial-block-content p {
        font-size: 20px;
    }
}

/*  Testimonial Block End */

/*  Delivery Block Start */

.delivery-block-outer {
    display: block;
    clear: both;
    margin-bottom: 45px;
}

.delivery-block-inner {
    display: block;
    margin: 0 -15px;
}

.delivery-block-items-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.delivery-block-item {
    display: block;
    width: 24%;
    padding: 25px 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.delivery-block-item:hover strong {
    color: #000;
}

.delivery-block-item strong {
    display: block;
    font-size: 21px;
    margin-bottom: 20px;
    color: gray;
    text-transform: uppercase;
    transition: .4s;
}

.delivery-block-item span {
    display: block;
    font-size: 18px;
    letter-spacing: .2px;
}

@media (max-width: 1199px) {
    .delivery-block-item {
        padding: 20px 20px;
        width: 49%;
        margin-bottom: 20px;
    }

    .delivery-block-item strong {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .delivery-block-item span {
        font-size: 18px;
    }
}

/*  Delivery Block End  */

/*  Map Block Start  */

.map-block-outer {
    display: block;
}

.map-block-outer .map {
    height: 400px;
    width: 100%;
}

/*  Map Block End  */

/*  Footer Block start  */

.footer-block-outer {
    display: block;
    background: #000;
}

.footer-block-inner {
    display: block;
    margin: 0 -15px;
}

.footer-content-items-row {
    display: flex;
    padding: 50px 0;
    justify-content: space-between;
}

.footer-content-item {
    display: block;
    width: 20%;
}

.footer-hadding-text {
    display: block;
    font-size: 30px;
    color: #8EB486;
}

.footer-text-content {
    display: block;
    color: #fff;
    margin-top: 15px;
    font-size: 20px;
}

.footer-text-content ul li {
    display: block;
    margin-bottom: 15px;
    transition: .4s;
}

.footer-text-content ul li:hover {
    margin-left: 15px;
}

.name {
    height: 40px;
    margin-bottom: 10px;
}

.email-type {
    height: 40px;
    margin-bottom: 10px;
}

.Subscribe-btn {
    height: 40px;
    width: 100px;
    background-color: #8DC63F;
    font-size: 15px;
    color: #fff;
    align-content: center;
}

.social-icons {
    display: flex;
    justify-content: center;

}

.social-icons img {
    width: 45px;
    margin: 0px 5px 15px 15px;
}

.footer-bottam-text {
    display: block;
    text-align: center;
    color: #fff;
    padding-bottom: 25px;
}

@media (max-width: 1199px) {
    .footer-hadding-text {
        font-size: 25px;
    }

    .footer-text-content {
        font-size: 15px;
    }

    .footer-bottam-text {
        padding-bottom: 20px;
    }

    .social-icons img {
        width: 37px;
    }
}

/*  Footer Block End  */

/*  About-Us Page start  */

.about-us-content-block-outer {
    display: block;
}

.about-us-content-block-inner {
    display: flex;
    margin: 0 -15px;
    padding: 20px 0;
}

.about-us-content {
    display: block;
    width: 50%;
    align-content: center;
    margin-right: 20px;
}

.about-us-content span {
    display: block;
    font-size: 19px;
    margin-bottom: 20px;
}

.about-us-content strong {
    display: block;
    font-size: 40px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #8EB486;
}

/*  About-Us Page End  */

/*  Features Page Start  */

.features-section {
    width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.features-section h1 {
    text-align: center;
    color: #8EB486;
    font-size: 45px;
    margin-bottom: 45px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-item {
    width: 350px;
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    display: flex;
    margin-left: 137px;
}

.feature-icon img {
    align-content: center;
    height: 40px;
    width: 40px;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 1.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

/*  Features Page  End  */

/*  Contact Us Page Start  */

.contact-us-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    width: 50%;
}

.contact-us-inner {
    display: flex;
    margin: 0 -15px;
}

.contact-us-img {
    display: block;
    width: 50%;
}

.contact-us-content h2 {
    font-size: 45px;
    color: #8EB486;
}

.contact-us-content p {
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
}

.contact-us-content form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group button {
    background-color: #8EB486;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 4px;
    font-size: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-group button:hover {
    background-color: #000;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info strong {
    color: #8EB486;
}

/*  Contact Us Page End  */