/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/
/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/
/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/
@import url(animate.min.css);
@import url(normalize.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(slick.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/* ----------------------------------new styles -------------------------------- */

/* .header-top{
    background: transparent;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
 } */

 #openModal {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 26px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

#openModal:hover {
    background-color: green;
    box-shadow: 0 8px 16px rgba(0, 255, 0, 0.4); /* Green shadow on hover */
    transform: translateY(-3px); /* Slight lift on hover */
}

/* Modal styles */
#pdfModal {
    display: none;
    position: fixed;
    z-index: 1000; /* Higher z-index to stay above other content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

#pdfModal .modal-content {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    max-width: 50%;
    height: 90%;
    position: relative;
}

#pdfModal .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
}

/* Targeting only the iframe inside the modal */
#pdfModal iframe {
    width: 100%;
    height: 100%;
    border: none;
}


@keyframes imageScale {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animated-img {
    animation: imageScale 2s ease-in-out;
}


/* Ensure the dropdown menu is hidden by default */
.dropdown-menu {
    display: none;
    /* position: absolute; */
    top: 100%;
    /* Position directly below the parent item */
    left: 0;
    /* Align the dropdown to the left edge of the parent item */
    z-index: 1000;
    min-width: 130px;
    padding: 5px 0;
    margin: 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid #9c9b9b;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 1.175);
}

/* Display the dropdown menu when hovering over the parent item */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Ensure the dropdown menu is aligned properly */
.main-menu .dropdown {
    position: relative;
}

.dropdown-menu li {
    padding: 4px 8px;
}

.dropdown-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}




/* product card */
.products {
    /* background-color: #ffffff; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background-image: url('../images/product-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
    margin: 25px;
}


#product1 {
    background-image: url('../images/green-bg.jpg');

}

#equipments {
    background-image: url('../images/equ-bg.jpg');
    position: relative;
    background-size: cover; /* Ensure the background image covers the entire element */
    background-position: center; /* Center the background image */
}

#equipments::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 128, 0, 0.449); /* Green color with 30% opacity */
    pointer-events: none; /* Ensure that the overlay doesn’t interfere with interactions */
}

.products .tittle {
    font-weight: bold;
    color: #fff;
    line-height: 40px;
    font-size: 45px;
    text-transform: uppercase;
    background: #547d13;
    display: inline-block;
    padding: 20px 30px;
    margin-bottom: 5px;
    border-radius: 20px;
    text-align: center;

}

.container-fluid .row {
    padding-left: 30px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

figure {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.card {
    /* justify-content: center; */
    align-items: start;
    display: flex;
    min-height: 500px;
    /* width: 500px; */
    padding: 30px;
    margin-bottom: 25px;
    background-color: #547d13;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    color: #e8e8e8;

}

.card h1 {
    color: #e8e8e8;
    font-size: 30px;
}

.card h2 {
    color: #e8e8e8;
    font-size: 20px;
}

.demo-product {
    display: flex;
    align-items: center;
}

.demo-product img {
    cursor: grab;
    border-radius: 20px;
    border-color: #ffffff;
    border-style: solid;
    border-width: 3px;
    margin: 16px;
    max-width: 50px;
}

.image-display img {
    display: none;
    max-width: 75%;
    border-radius: 15px; /* Rounds the edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), /* Basic shadow */
                0 6px 20px rgba(0, 0, 0, 0.19); /* Deeper shadow */
}

/* Display the active image */
.image-display img.active {
    display: block;
}


/* Nutritional Blog Card Styles */

.nutrition {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /* Space between cards */
}

.blog-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    /* Adjust the width of cards and allow them to grow and shrink */
    margin: 0;
    box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.856);
    background: #e4e4e4;
    line-height: 1.4;
    font-family: sans-serif;
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
}

.blog-card a {
    color: inherit;
}

.blog-card a:hover {
    color: #001038d7;
}

.blog-card:hover .photo {
    transform: scale(1.3) rotate(3deg);
}

.blog-card .meta {
    position: relative;
    z-index: 0;
    height: 200px;
}

.blog-card .photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.2s;
}

.blog-card .details,
.blog-card .details ul {
    margin: auto;
    padding: 0;
    list-style: none;
}

.blog-card .details {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    margin: auto;
    transition: left 0.2s;
    background: rgba(57, 139, 79, 0.6);
    color: #ededed;
    padding: 10px;
    width: 100%;
    font-size: 1.5rem;
}

.blog-card .details a {
    text-decoration: dotted underline;
}

.blog-card .details ul li {
    display: inline-block;
}

.blog-card .details .tags li {
    margin-right: 2px;
}

.blog-card .details .tags li:first-child {
    margin-left: -4px;
}

.blog-card .description {
    padding: 1rem;
    background: #e4e4e4;
    position: relative;
    z-index: 1;
    text-align: left;
}

.blog-card .description h1,
.blog-card .description h2 {
    font-family: Poppins, sans-serif;
}

.blog-card .description h1 {
    color: #1d4006;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    font-size: 1.7rem;
    text-transform: uppercase;

}

.blog-card .description h2 {
    font-size: 1.1rem;
    font-weight: 500;
    /* text-transform: uppercase; */
    color: #430d0d;
    margin-top: 5px;
}

.blog-card .description p {
    font-size: 1rem;
    font-weight: 400;
    color: #252525;
    margin-top: 5px;
}

.blog-card .description .read-more {
    text-align: right;
}

.blog-card .description .read-more a {
    color: #dd5353;
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.blog-card p {
    position: relative;
    margin: 1rem 0 0;
}

.blog-card:hover .details {
    left: 0%;
}

@media (min-width: 640px) {
    .blog-card {
        flex-direction: column;
        /* Stack meta and description vertically */
        flex: 1 1 calc(50% - 1rem);
        /* Two cards per row with gap */
        max-width: calc(50% - 1rem);
        /* Ensures cards are responsive */
    }

    .blog-card.alt {
        flex-direction: column-reverse;
        /* Reverse the order for alternate cards */
    }

    .blog-card.alt .details {
        padding-left: 25px;
    }
}




/* nuturision */

/* table */


.table-container {

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background-image: url('../images/Fertiliser2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    padding: 35px;
    margin: 25px;

    /* max-width: 1200px; */
}

.table-container .section-heading h2 {
    font-size: 2em;
    color: #333;
    font-weight: 800;
    text-transform: capitalize;

    /* margin-bottom: 10px; */
}

.table-container .table {
    width: 100%;
    /* margin-bottom: 1rem; */
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.table-container .table th,
.table-container .table td {
    /* padding: 12px; */
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

.table-container .table thead th {
    background-color: #007bff;
    color: #2d2d2d;
    font-weight: bold;
    font-size: 16px;
}

.table-container .table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-container .table tbody tr:hover {
    background-color: #e2e1e1;
}

.table-container img {
    width: 20px;
    height: 20px;
}

.table-container .btn-primary {
    background-color: #007bff;
    border: none;
    /* padding: 10px 20px; */
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.table-container .btn-primary:hover {
    background-color: #0056b3;
}

.table-container img.img-fluid {
    max-width: 100%;
    height: auto;
}

.table-container p {
    color: #242424;
    font-size: 14px;
}

.table-container .tablebgorange {
    background-color: #ff8800;
    color: #191818;
}

.table-container .tablecontent {
    color: #191818;
}

.tablecontent td {
    padding: 0% 0% 0% 0%;
}

.tbhead {
    color: #191818;
    font-weight: bold;
    font-size: 16px;
}

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


/* footer */

ul {
    margin: 0px;
    padding: 0px;
}

.footer-section {
    /* background-color: #dfdfdf; */
/* background-image: linear-gradient(180deg, #d4d4d400 5%, #151414 26%); */

    background: #151414;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.footer-cta .row {
    display: flex;
    flex-direction: column;
    /* Arrange items vertically */
}

.single-cta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    min-width: 300px;
}

.single-cta i {
    color: #46b349;
    font-size: 30px;
    margin-right: 15px;
    /* Space between icon and text */
}

.cta-text {
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}


.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 300px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.footer-social-icon {
align-items: end;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    /* margin-right: 15px; */
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #eb7712;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
  }
  
  .footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #46b349;
  }
  
  .footer-widget ul {
    padding: 0;
    list-style: none; /* Remove default list styling */
  }
  
  .footer-widget ul li {
    margin-bottom: 12px;
  }
  
  .footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
    text-decoration: none; /* Optional: Remove underline */
    display: block; /* Makes the entire link area clickable */
  }
  
  .footer-widget ul li a:hover {
    color: #46b349;
  }

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #46b349;
    padding: 13px 20px;
    border: 1px solid #46b349;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #46b349;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #46b349;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}


/* whatsapp */


.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.my-float {
    
    margin-top: 16px;
}

.fab {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


#scrollUp {
    right: 36px;
    bottom: 42px;
    width: 42px;
    height: 42px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    z-index: 99;
    font-size: 22px;
    cursor: pointer;
    background-color: #ED5C41;
    -webkit-animation: white-shadow .8s infinite, red-shadow .8s infinite;
    animation: white-shadow .8s infinite, red-shadow .8s infinite;
    -webkit-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
    -khtml-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
}


/* vegitable */




/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/
* {
    box-sizing: border-box !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #e4e4e4;
    color: #e4e4e4;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden;
}

a {
    color: #1f1f1f;
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    font-weight: normal;
    line-height: normal;
    color: #111111;
    margin: 0
}

h1 {
    font-size: 24px
}

h2 {
    font-size: 22px
}

h3 {
    font-size: 18px
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 14px
}

h6 {
    font-size: 13px
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #212121;
    text-decoration: none !important;
    opacity: 1
}

button:focus {
    outline: none;
}

ul,
li,
ol {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

p {
    margin: 0px;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
}

a {
    color: #222222;
    text-decoration: none;
    outline: none !important;
}

a,
.btn {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
}

:focus {
    outline: 0;
}

.btn-custom {
    margin-top: 20px;
    background-color: transparent !important;
    border: 2px solid #ddd;
    padding: 12px 40px;
    font-size: 16px;
}

.lead {
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    margin: 0;
    padding: 0;
}

.form-control:focus {
    border-color: #ffffff !important;
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.navbar-form input {
    border: none !important;
}

.badge {
    font-weight: 500;
}

blockquote {
    margin: 20px 0 20px;
    padding: 30px;
}

button {
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.full {
    float: left;
    width: 100%;
}

.layout_padding {
    padding-top: 90px;
    padding-bottom: 90px;
}

.layout_padding_2 {
    padding-top: 75px;
    padding-bottom: 75px;
}

.light_silver {
    background: #f9f9f9;
}

.theme_bg {
    background: #38c8a8;
}

.margin_top_30 {
    margin-top: 30px !important;
}

.full {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
     /* position: fixed;  */
     z-index: 50;

}

/**-- heading section --**/
.main_heading {
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
}

.main_heading h2 {
    padding: 0;
    font-size: 48px;
    line-height: 60px;
    font-weight: 400;
    position: relative;
    letter-spacing: -0.5px;
    color: #114c7d;
    border-left: solid #38c8a8 10px;
    padding-left: 15px;
}

.main_heading h2 strong {
    background: #38c8a8;
    color: #fff;
    font-weight: 600;
    padding: 0 15px;
    line-height: 68px;
}

.white_heading_main h2 {
    color: #fff;
}

.small_main_heading {
    margin-top: 25px;
    float: left;
    width: 100%;
    border-bottom: solid rgba(0, 0, 0, 0.07) 1px;
    margin-bottom: 25px;
}

.small_main_heading h2 {
    padding: 2px 0 20px 0;
    color: #114c7d;
    font-weight: 400;
    font-size: 28px;
    background-image: url('../images/fevicon.png');
    background-repeat: no-repeat;
    padding-left: 55px;
    letter-spacing: -0.5px;
}

.small_main_heading h2 strong {
    color: #38c8a8;
    font-weight: 600;
}

.main_bt {
    background: #000;
    color: #fff;
    padding: 10px 60px 10px 60px;
    float: left;
    font-size: 15px;
    font-weight: 400;
    border: solid #000 5px;
    border-radius: 0;
    margin-right: 30px;
}

a.readmore_bt {
    color: #fff;
    font-weight: 300;
    text-decoration: underline !important;
}

.main_bt:hover,
.main_bt:focus {
    background: #ad2101;
    border: solid #ad2101 5px;
    color: #fff;
}

/**-- list icon --**/
.ul_list_info_icon ul {
    list-style: none;
}

.ul_list_info_icon ul li {
    display: inline;
    float: left;
    width: 100%;
}

.ul_list_info_icon ul li img {
    width: 75px;
}


/* header */


.custom-limit-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
  }
  
  .custom-main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .custom-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
  }
  
  .custom-menu-item {
    margin: 0 15px;
  }
  
  .custom-menu-item a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  .custom-dropdown-toggle {
    position: relative;
  }
  
  .custom-caret {
    margin-left: 5px;
  }
  
  .custom-dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    padding: 10px;
    list-style: none;
  }
  
  .custom-dropdown-item {
    margin: 0;
  }
  
  .custom-dropdown-item a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 5px 10px;
  }
  
  .custom-menu-item.dropdown:hover .custom-dropdown-menu {
    display: block;
  }
  
  @media (max-width: 768px) {
    .custom-menu-list {
      flex-direction: column;
      align-items: center;
    }
  
    .custom-menu-item {
      margin: 10px 0;
    }
  
    .custom-dropdown-menu {
      position: static;
      box-shadow: none;
      padding: 0;
    }
  
    .custom-dropdown-item a {
      padding: 10px;
    }
  }





/*---------------------------- preloader area ----------------------------*/
.loader_bg {
    position: fixed;
    z-index: 9999999;
    background: #fff;
    width: 100%;
    height: 100%;
}

.loader {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader img {
    width: 280px;
}

/*---------------------------- scroll to top area ----------------------------*/
.scrollup {
    float: right;
    position: absolute;
    color: #fff;
    right: 20px;
    padding: 0px 5px;
    text-transform: uppercase;
    font-weight: 600;
    background: #38c8a8;
    position: fixed;
    bottom: 20px;
    z-index: 99;
    text-align: center;
    color: #fff;
    cursor: pointer;
    border-radius: 0px;
    opacity: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transition: .2s all ease;
    -moz-transition: .2s all ease;
    -o-transition: .2s all ease;
    -webkit-transition: .2s all ease;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    line-height: 48px;
    font-size: 16px;
}

.scrollup.b-show_scrollBut {
    opacity: 1;
    visibility: visible;
}

.top_awro {
    background: #ee4a79 none repeat scroll 0 0;
    cursor: pointer;
    padding: 6px 8px;
    position: fixed;
    bottom: 59px;
    right: 20px;
    display: none;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    transition: all 0.5s ease;
}

.sale_pro {
    background: #f25252 !important;
}

.margin_top_50 {
    margin-top: 50px;
}

.margin_bottom_30_all {
    margin-bottom: 30px;
}

.text_align_center {
    text-align: center;
}

/*--------------------------------------------------------------------- header area ---------------------------------------------------------------------*/
.logo_section {
    text-align: center;
}

.nav_section {
    text-align: center;
    justify-items: center;
    padding-top: 20px;
}

.logo {
    
    float: left;

    padding-bottom: 6px;
}

.logo img {
    padding-top: 10px;
    max-width: 450px; /* Set a maximum width for the logo image */
}

@media only screen and (max-width: 768px) {

    .logo {
        width: 100px; /* Adjust the width as needed for mobile */
    }

    .logo a {
        font-size: 30px; /* Smaller font size for mobile */
        line-height: 30px; /* Adjust line-height for proper alignment */
    }

    .logo img {
        max-width:350px; /* Set a maximum width for the logo image */
    }

    .carousel-caption {
    padding-top: 100px;
    }

    
    

}


nav.main-menu {
    float: left;
    margin-left: 0;
    margin-left: 0;
    position: relative; /* or absolute, fixed, or sticky */
    z-index: 100;
}


.right_cart_section {
    float: right;
    width: auto;
}

.right_cart_section ul {
    float: left;
    min-height: auto;
    margin: 0;
    padding: 12px 0 0;
}

.right_cart_section .cart_icons {
    padding: 18px 0 0;
}

.main-menu ul>li nth:child(5) a {
    padding-right: 0px;
}

.right_cart_section ul li {
    float: left;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin-right: 30px;
}

.right_cart_section ul.cart_update li {
    font-size: 13px;
    color: #ccc;
    line-height: normal;
    margin: 0;
    font-weight: 300;
}

.right_cart_section ul.cart_update li span {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 21px;
}

.right_cart_section ul li i {
    margin-right: 10px;
    margin-top: 5px;
    float: left;
    color: #fff;
    font-size: 21px;
}

.right_cart_section ul li a {
    color: #fff;
}

/*-- end header middle --*/
.top-bar-info {
    background: #111111;
    padding: 5px 0px;
}

.top-menu-left {
    float: left;
}

.top-menu-left li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
    padding-right: 12px;
}

.top-menu-left li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 9px;
    height: 10px;
    border-right: 1px dotted #999;
}

.top-menu-left li:last-child::before {
    display: none;
}

.top-menu-left li:last-child {
    padding: 0px;
    margin: 0px;
}

.top-menu-left li a {
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
}

.top-menu-left li a:hover {
    color: #38c8a8;
}

.right-dropdown-language {
    float: right;
    margin-left: 12px;
}

.dropdown-bar .dropdown-link {
    position: absolute;
    z-index: 1009;
    top: 40px;
    left: 0;
    right: auto;
    min-width: 50px;
    padding: 15px;
    background: #ffffff;
    list-style: none;
    border: 2px solid #38c8a8;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: opacity 0.2s ease 0s, visibility 0.2s linear 0s;
    -o-transition: opacity 0.2s ease 0s, visibility 0.2s linear 0s;
    transition: opacity 0.2s ease 0s, visibility 0.2s linear 0s;
    text-align: left;
}

.dropdown-bar:hover .dropdown-link {
    opacity: 1;
    visibility: visible;
    top: 25px;
}

.dropdown-bar.right-dropdown-language>a::after {
    font-family: 'FontAwesome';
    content: "\f107";
    text-decoration: none;
    padding-left: 4px;
    color: #ffffff;
}

.right-dropdown-language>a {
    line-height: 10px;
    padding: 5px 5px;
    cursor: pointer;
}

.dropdown-bar .dropdown-link li a {
    color: #111111;
    display: block;
    font-size: 12px;
    line-height: 15px;
    padding: 5px 0;
}

.dropdown-bar .dropdown-link li a:hover {
    color: #38c8a8;
}

.dropdown-bar .dropdown-link li a img {
    margin-right: 7px;
}

.dropdown-bar .dropdown-link li.active {
    font-weight: bold;
}

.right-dropdown-language .dropdown-link {
    min-width: 100px;
    padding: 7px 10px;
    color: #111111;
}

.dropdown-bar {
    position: relative;
    padding: 0 5px;
    font-size: 13px;
}

.dropdown-bar .dropdown-link.right-sd {
    left: auto;
    right: 0;
}

.right-dropdown-currency {
    float: right;
    margin-left: 12px;
}

.dropdown-bar.right-dropdown-currency>a::after {
    font-family: 'FontAwesome';
    content: "\f107";
    text-decoration: none;
    padding-left: 4px;
    color: #ffffff;
}

.right-dropdown-currency>a {
    line-height: 10px;
    padding: 5px 5px;
    cursor: pointer;
    color: #ffffff;
}

.right-dropdown-currency .dropdown-link {
    min-width: 100px;
    padding: 7px 10px;
    color: #111111;
}

.right-dropdown-currency .dropdown-link {
    min-width: 55px;
    padding: 7px 10px;
}

.right-dropdown-currency .dropdown-link li a span.symbol {
    margin-right: 7px;
}

#login-modal .modal-content {
    border-radius: 0px;
}

#login-modal .modal-content .modal-header {
    background: #38c8a8;
    border-radius: 0;
}

#login-modal .modal-content .modal-body .form-group input {
    background: #ffffff;
    border: 1px solid #c8c8c8;
    border-radius: 0px;
}

#login-modal .modal-content .modal-body .form-group input:focus {
    border: 1px solid #c8c8c8 !important;
}

#login-modal .modal-content form {
    margin-bottom: 10px;
}

.modal-title {
    padding: 0px;
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
}

.btn-template-outlined {
    background: #111111;
    color: #ffffff;
    border: none;
    border-radius: 0px;
}

.btn-template-outlined i {
    padding-right: 10px;
}

.text-muted {
    padding: 10px 0px;
}

.slogan-line {
    float: right;
    color: #ffffff;
    font-size: 13px;
}

.middle-area {
    padding: 30px 0px;
}

.header-search {
    padding: 3px 0px;
}

.header-search form {
    position: relative;
    -webkit-box-shadow: 0px 1px 10px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 10px -1px rgba(0, 0, 0, 0.2);
}

.header-search .btn-group.bootstrap-select {
    position: absolute;
    left: 0px;
    top: 0px;
}

.header-search input {
    width: 100%;
    min-height: 45px;
    border-radius: 0px;
    border: none;
    padding-left: 15px;
    border: 1px solid #e0e7ed;
}

.header-search form .search-btn {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    color: #fff;
    font-size: 20px;
    padding: 4px 15px;
    border-radius: 0px;
    background-color: #38c8a8;
    cursor: pointer;
}

.header-search form .search-btn:hover {
    background: #111111;
}

.cart-box {
    float: right;
    margin-left: 10px;
    position: relative;
}

.cart-content-box {
    position: absolute;
    z-index: 1009;
    top: 40px;
    left: auto;
    right: 0;
    min-width: 250px;
    max-width: 250px;
    padding: 15px;
    background: #ffffff;
    list-style: none;
    border: 2px solid #38c8a8;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.cart-box:hover .cart-content-box {
    opacity: 1;
    visibility: visible;
    top: 100%;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.inner-cart {
    background: #38c8a8;
    border-radius: 2px;
    padding: 0px;
    color: #ffffff;
    position: relative;
    width: 40px;
    height: 40px;
    text-align: center;
}

.cart-box .inner-cart:hover {
    color: #ffffff;
}

.line-cart {
    float: left;
    line-height: 40px;
    margin-right: 9px;
}

.cart-box a {
    display: inline-block;
}

.cart-box a:hover {
    color: #38c8a8;
}

.cart-box a span.icon {
    background: #38c8a8;
    width: 30px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    color: #ffffff;
    position: relative;
    border-radius: 2px;
}

.cart-box a .p-up {
    position: absolute;
    right: -8px;
    top: -8px;
    line-height: initial;
    background: #38c8a8;
    padding: 3px;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    font-size: 12px;
    text-align: center;
    line-height: 10px;
}

.wish-box {
    float: right;
}

.wish-box a {
    display: inline-block;
}

.wish-box a:hover {
    color: #38c8a8;
}

.wish-box a span.icon {
    background: #38c8a8;
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    color: #ffffff;
    position: relative;
    border-radius: 2px;
}

.wish-box a span.icon:hover {
    background: #111111;
}

.cart-content-right {
    padding: 5px 0px;
}

.cart-content-box .items {
    text-align: center;
}

.product-media {
    width: 60px;
    float: left;
    position: relative;
}

.cart-content-box .items:hover .product-media::before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.product-media::before {
    position: absolute;
    content: '';
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #38c8a8;
    opacity: 0.4;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.cart-content-box .items .item .remove {
    position: absolute;
    right: 0px;
    top: 0px;
    background: #38c8a8;
    color: #ffffff;
    width: 20px;
    height: 20px;
    line-height: 18px;
    border-radius: 2px;
}

.cart-content-box .items .item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e7ed;
    position: relative;
}

.cart-content-box .items .item .product-info {
    padding-top: 10px;
    padding-left: 71px;
    text-align: left;
}

.cart-content-box .items .item .remove:hover {
    background: #111111;
}

.subtotal {
    text-align: left;
    text-transform: capitalize;
    color: #38c8a8;
    font-weight: 500;
    margin-bottom: 15px;
}

.subtotal span {
    font-weight: bold;
    color: #111111;
    padding-left: 15px;
    float: right;
}

.actions .btn-process {
    padding: 5px 16px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    border-radius: 2px;
    overflow: hidden;
}

.actions .btn-process:hover {
    color: #ffffff;
}

.line-cart {
    position: relative;
}

.wish-box a span.icon span {
    position: absolute;
    right: -8px;
    top: -8px;
    line-height: initial;
    background: #38c8a8;
    padding: 3px;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    font-size: 12px;
}



.menu-area-main li.active a {
    color: #538d2e;
}

.main-menu {
    padding-top: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.main-menu ul {
    margin: 0;
    list-style-type: none;
}

.main-menu ul>li {
    display: inline-block;
    position: relative;
}

.main-menu ul>li a {
    padding: 11px 15px;
    text-align: center;
    line-height: 20px;
    font-size: 22px;
    display: block;
    font-weight: 500;
    color: #000;

}

.main-menu ul>li a:hover {
    color: #538d2e;
}

.main-menu ul li:last-child a {
    padding-right: 0;
}

.sub-down li {
    background: #ffffff;
}

.main-menu ul>li .sub-down li a {
    color: #114c7d;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 300;
    padding: 12px 5px;
    position: relative;
    border-bottom: solid #eee 1px;
}

.main-menu ul>li .sub-down li a::before {}

.main-menu ul>li .sub-down li a:hover {
    color: #111111;
}

.main-menu ul>li .sub-down li a:hover::before {}

.main-menu ul li:first-child {
    margin-left: 0;

}

.main-menu ul>li>ul {
    opacity: 0;
    position: absolute;
    text-align: left;
    top: 100%;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 240px;
    z-index: 999;
    background: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.main-menu>ul>li:hover>ul {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}

.main-menu ul>li>ul>li {
    margin: 0px;
    position: relative;
    display: block;
}

.main-menu ul>li>ul>li:hover>ul {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
    left: 100%;
    top: 10px;
}

.main-menu ul>li>ul>li>a {
    background: none !important;
}

.mean-container .mean-nav {
    margin-top: 0px;
    position: absolute;
    top: 100%;
}

.main-menu ul>li {
    position: inherit;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.main-menu ul>li:nth-child (6) {
    padding-right: 0px;
}

.nav>li {
    position: inherit;
    display: inline-block;
    vertical-align: middle;
}

.megamenu .sub-down {
    max-width: 1140px;
    width: 100%;
    left: 0;
    margin: 0 auto;
    right: 0;
    padding: 15px 0px;
}

/*--------------------------------------------------------------------- top banner area ---------------------------------------------------------------------*/
/*--------------------------------------------------------------------- layout new css ---------------------------------------------------------------------*/
.menu-area {
    float: right;
    margin-right: 30px;
}



.mean-last {
    display: inline-block !important;
    background: #0f052f;
    margin: 0 !important;
    padding: 30px 36px 30px 16px;
    float: right;
    margin-right: 110px !important;
    width: 24%;
}


.mean-last a {
    padding: 0px 20px;
    color: #fff;
    font-size: 16px;
}



.slider_section {
    min-height: 70vh;
    padding-top: 20px;
    justify-content: center;
    align-items: center;
    /* display: flex; */
    background: #e4e4e4;
}


.padding_left0 {
    padding-left: 0px;
}

.header {
    display: flex;
    /* Add this line */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    /* position: fixed; */
    z-index: 999;
    width: 100%;
    background: transparent;
}

.logo a {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    line-height: 40px;
}

.banner_Client {
    position: relative;
}

.text-bg {
    text-align: left;
}

.text-bg span {
    font-size: 30px;
    line-height: 30px;
    color: #020500
}

.text-bg h1 {
    color: #43960f;
    padding-top: 30px;
    font-size: 40px;
    line-height: 45px;
    padding-bottom: 10px;
    font-weight: bold;
}

.text-bg p {
    font-size: 16px;
    display: block;
    color: #020500;
    line-height: 30px;
    padding-bottom: 20px;
    font-weight: 500;
}

/* .Vegetable {
    padding-bottom: 50px;
} */

.Vegetable .Vegetable_fom {
    padding: 15px 30px;
    box-shadow: inherit;
    border: inherit;
    width: 60%;
    font-size: 19px;
    box-shadow: #b0b0b0 0px -2px 9px 0px;


}

.Search_btn {
    padding: 15px 0px;
    border: #1a1b19 solid 1px;
    background: #1a1b19;
    color: #fff;
    margin-left: -5px;
    font-weight: 500;
    font-size: 18px;
    max-width: 194px;
    width: 100%;

    box-shadow: #b0b0b0 0px -2px 9px 0px;
    transition: all 0.3s ease-in;
}

.Search_btn:hover {
    background: #428713;
    border: #428713 solid 1px;
    color: #fff;
    transition: all 0.3s ease-in;

}



.text-bg a {

    background-color: black;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* margin-top: 20px; */
    /* font-size: 16px;
    border: #1a1b19 solid 1px;
    background-color: #1a1b19;
    color: #fff;
    padding: 9px 0px;
    max-width: 171px;
    width: 100%;
    display: inline-block;
    text-align: center;

    ;
    margin-right: 10px; */
}

.text-bg a:hover {

    background-color: green;
    box-shadow: 0 8px 16px rgba(0, 255, 0, 0.4); /* Green shadow on hover */
    transform: translateY(-3px); /* Slight lift on hover */
    
    /* background-color: #428713;
    border: #428713 solid 1px;
    color: #fff; */
}

.text {
    position: inherit;
    text-align: left;
    background: #0fbbad;
    width: 100%;
    bottom: auto;
    padding: 0;
    margin-top: 90px
}

.img_bg {
    text-align: center;
    margin: 0 auto;
    align-items: center;
    width: 100%;
    display: flex;
    height: 100%;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.images_box {}

.images_box figure {
    margin: 0px;
}

.images_box figure img {
    border-radius: 20%;
    /* Makes the image round */
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    /* Adds a shadow to create a pop-up effect */
    transition: transform 0.3s ease-in-out;
    /* Smooth transition for scaling */
}

.images_box figure img:hover {
    transform: scale(1.05);
    /* Slightly enlarge the image on hover to enhance the pop-up effect */
}

.img_bg h3 {
    text-align: center;
    font-size: 50px;
    line-height: 58px;
    color: #fff;
}

.black_nolmal {
    font-weight: normal;
    color: #000;
}

.carousel-caption {
    position: inherit;
}

.carousel-indicators .active {
    background-color: #1a1b19;
}

.carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 10px;
    background: #428713;
}

.padding_dd {
    padding: 0px 50px;
}

.carousel-control-next {
    display: none;
}

.carousel-control-prev {
    display: none;
}

/** about section **/
.about {
    background-color: #ffffff;
    background-image: url('../images/about-bg.png');
    box-shadow: #ddd 0px 0px 13px 5px;
    margin: 90px 30px 20px 30px;
    background-size: cover;
    /* Ensures the background image covers the entire area */
    background-position: center;
    min-height: 100vh;
    /* Centers the background image */
}

.about .about-box {
    text-align: center;
    float: left;
    width: 100%;
    max-width: 1000px;
    padding: 40px 0 40px 0;

}



.about .about-box::after {
    position: absolute;
    content: "";
    background: url(../images/crros.png);
    height: 244px;
    width: 187px;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
}

.about .about-box h2 {
    font-weight: bold;
    color: #fff;
    line-height: 40px;
    font-size: 40px;
    text-transform: uppercase;
    background: #547d13;
    display: inline-block;
    padding: 20px 30px;
    border-radius: 20px;
}

.about .about-box p {
    font-size: 22px;
    line-height: 32px;
    color: #000;
    padding: 40px 0px;
}

.about .about-box a {
    font-size: 16px;
    border: #070905 solid 1px;
    background-color: #070905;
    color: #fff;
    padding: 9px 0px;
    max-width: 171px;
    width: 100%;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    border-radius: 30px;
}


.about .about-box a:hover {
    background-color: #428713;
    border: #428713 solid 1px;
    color: #fff;
}

.about .about-box_img figure {
    margin: 0;
}

.about .about-box_img figure img {
    width: 100%;
}

.padding_rl {
    padding: 0;
}

/** end about section **/


/** vegetable section **/
.vegetable {
    /* background-color: #fff; */
    /* margin-top: 70px; */

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background-image: url('../images/product-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
    margin: 25px;
    
}

.vegetable_shop h3 {
    font-size: 31px;
    line-height: 35px;
    color: #000;
    font-weight: 500;
    padding-bottom: 17px;
    display: block;
}


.vegetable_shop p {

    font-size: 17px;
    line-height: 28px;
    color: #000;
}


.vegetable_img span {
    z-index: 999;
    display: flex;
    align-content: center;
    align-items: center;
    right: 0;
    top: 44%;
    background: #428713;
    padding: 19px 27px;
    border-radius: 88px;
    margin-right: -20px;
    position: absolute;
    color: #fff;
    font-size: 19px;
}

.margin_top span {
    z-index: 999;
    display: flex;
    align-content: center;
    align-items: center;
    right: 0;
    top: 27%;
    background: #428713;
    padding: 19px 25px;
    border-radius: 88px;
    margin-right: -20px;
    position: absolute;
    color: #fff;
    font-size: 19px;
}

.vegetable_img figure {
    margin: 0;
}

.vegetable_img figure img {
    width: 100%
}

.margin_top {
    margin-top: -90px;
}



/** end vegetable section **/






.titlepage {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.titlepage span {
    padding-top: 30px;
    display: inline-block;
    font-size: 17px;
    color: #000;
}

.llow {
    color: #488d1c;
    font-weight: bold;
}

.titlepage h2 {
    text-transform: uppercase;
    padding: 0;
    font-weight: bold;
    color: #000;
    line-height: 55px;
    font-size: 50px;
}


/** testomonial **/
.clients {
    background: #fff;
    margin-top: 90px;

}

.clients .titlepage {
    padding-bottom: 0px;
}

.clients .titlepage h2 {
    color: #000;
    margin-bottom: -77px;
    text-align: right;
}

.clients_red {
    background: #fff;
    padding-bottom: 50px;
    background: url(../images/test.png);
    min-height: 978px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cross_inner h3 {
    text-align: left;
    padding-left: 60px;
    padding-top: 58px;
    font-size: 30px;
    line-height: 25px;
    padding-bottom: 58px;
    color: #fff;

}

.testomonial_img {
    padding: 15px;
    background: #fff;
}

.testomonial_img figure {
    margin: 0;
}

.testomonial_img figure img {
    width: 100%;
}

.testomonial_img i {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 10px;
}


.testimonial_cont p {
    color: #fff;
    padding-left: 50px;
    font-size: 19px;
    line-height: 30px;
    font-weight: 400;

}

#testimonial_slider .carousel-indicators {
    bottom: -50px;
}

#testimonial_slider .carousel-indicators li {
    width: 25px;
    height: 25px;
    background-color: #052501;
    border-radius: 50px;
}

#testimonial_slider .carousel-indicators li.active {
    background-color: #4bc714;
}


.testimonial_cont {
    background: #428713cc;
    min-height: 295px;
    padding: 60px 40px;
}

.text_align_center {
    text-align: center;
    background: #428713;
}

.ornage_color {
    font-size: 19px;
    line-height: 10px;
    font-weight: normal;
}







/** contact section **/
.contact {

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background: url(../images/banner2.png);
    /* background: url(../images/world-bg.png); */

    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
    margin: 25px;

    /* padding-bottom: 90px;
    background-size: cover;

    background-size: cover;
    background-repeat: no-repeat;
    background-size: 100%; */

}

.contact_bg .titlepage {
    padding-bottom: 20px;
    text-align: right !important;
    padding-right: 10px;
}

#map {
    height: 100%;
    min-height: 470px;
}

.white_color {

    /* background-image: url('/images/contect-bg.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    /* opacity: 0.8; */
    /* background: #b1afaf; */
    box-shadow: 0px 0px 11px 0px;
}

.map figure {
    margin: 0px;
}

.map figure img {
    width: 100%;
}

.white_bg {
    background-color: #fff;
    padding: 40px 30px 30px 30px
}

.contact .titlepage {
    text-align: center;
}

.contact .titlepage h3 {
    padding: 0px 0px 6px 0px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    line-height: 46px;
    border-bottom: #fff solid 1px;
    font-size: 40px;
    width: 367px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.contact .contact_bg {
    max-width: 541px;

    padding: 0;
    padding: 60px 0px;
}

.contact .contact_bg .contactus,
textarea {
    border: #e8e8e8 solid 1px;
    padding: 12px 19px;
    margin-bottom: 26px;
    border-radius: 5px;
    /* Increase the border radius slightly for a smoother edge */
    color: #000;
    width: 100%;
    background: transparent;
    box-shadow: 0 20px 10px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Add shadow to create the pop-up effect */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    /* Smooth transition for hover effect */
}

.contact .contact_bg .contactus:hover,
textarea:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Increase shadow on hover for a stronger pop-up effect */
    transform: translateY(-3px);
    /* Slightly move the input field upwards on hover */
}

.contact .contact_bg .textarea {
    margin-bottom: 25px;
    padding: 29px 19px;
    color: #000 !important;
    width: 100%;
    border: #e8e8e8 solid 1px;
    border-radius: 1px;
    padding-top: 50px;
    background: transparent;
}

.contact .contact_bg .send {
    font-size: 16px;
    border: none;
    /* Remove border */
    background: linear-gradient(135deg, #428713, #66b81f);
    /* Gradient background for a dynamic look */
    color: #fff;
    padding: 12px 70px;
    /* Adjust padding for better spacing */
    border-radius: 30px;
    /* Rounded corners for a sleek appearance */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Add shadow for a 3D effect */
    cursor: pointer;
    /* Change cursor to pointer to indicate it's clickable */
    transition: all 0.3s ease-in-out;
    /* Smooth transition for all changes */
}

.contact .contact_bg .send:hover {
    background: linear-gradient(135deg, #ff7e1d, #ff9447);
    /* Change gradient color on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    /* Enhance shadow on hover for a deeper effect */
    transform: translateY(-3px);
    /* Slightly lift the button on hover */
    transition: all 0.3s ease-in-out;
}

/** end contact section **/


/** footer **/
.footer {
    background: #3b3b3b;

    padding-top: 60px;
}

.logo_footer {
    border: #ddd solid 2px;
    padding: 11px 50px;
    display: inline-block;
    margin-bottom: 30px;
}

.footer .address h3 {
    color: #fff;
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    padding-bottom: 20px;
}

.location_section {
    background-color: #fff;
    margin-bottom: 40px;
    border-radius: 10px;
    padding: 20px 35px;
}

.news .newslatter {
    padding: 7px 23px;
    box-shadow: inherit;
    border: inherit;
    width: 100%;
    font-size: 19px;

    margin-bottom: 20px;
}

.submit {
    padding: 9px 0;

    background: #428713;
    color: #fff;
    margin-left: -5px;
    font-weight: 500;
    font-size: 18px;
    max-width: 170px;
    width: 100%;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease-in;
}

.submit:hover {
    background: #ff7e1d;

    color: #fff;
    transition: all 0.3s ease-in;

}

ul.social_link {
    padding-bottom: 35px;
    padding-top: 7px;
    display: block;
}

ul.social_link li {
    display: inline-block;
    padding-right: 4px;

}

ul.social_link li a img {
    width: 30px;
    height: 30px;
}

ul.social_link li a img:hover {
    background-color: #f4b328;
    border-radius: 20px;
}

ul.Menu_footer li {

    display: block;
    color: #3e7f21;

}



ul.Menu_footer li a {
    display: block;
    color: #fcfbfb;
    font-size: 17px;


}

ul.Menu_footer li a:hover {
    color: #f4b328;
}


ul.loca li {
    color: #fcfbfb;
    display: flex;
    font-size: 16px;
    flex-wrap: wrap;
}

ul.loca li a {
    color: #fcfbfb;
    margin-top: 4px;
}

.copyright {
    padding: 20px 0px;
    margin-top: 55px;
    background-color: #428713;
}

.copyright p {
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    text-align: center;

}

.copyright a {
    color: #fff;
}

.copyright a:hover {
    color: #ff7e1d;
}

/** end footer **/
/*--------------------------------------------------------------------- ener page css ---------------------------------------------------------------------*/