@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:opsz,wght@8..144,400;8..144,500;8..144,600;8..144,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('./variables.css');


body {
    width: 100%;
    height: auto;
    font-family: 'Roboto', sans-serif !important;
}

img {
    max-width: 100%;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.btn {
    min-height: 40px;
    border-radius: 7px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme-color);
    font-size: 14px !important;
    line-height: 24px !important;
    background-color: var(--theme-color);
    padding: 5px 30px !important;
    column-gap: 5px;
}

.btn-theme-light {
    color: var(--theme-color) !important;
    background-color: var(--theme-light-color) !important;
}

.btn-theme-dark {
    color: var(--white) !important;
    background-color: var(--theme-color) !important;
}

.btn-theme-light:hover {
    color: var(--white);
    background-color: var(--theme-color);
}

.btn-theme-dark:hover {
    color: var(--theme-color);
    background-color: var(--theme-light-color);
}

.btn-link {
    color: var(--theme-color);
    font-size: 14px;
    line-height: 24px;
}

.section-pd {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-green {
    color: var(--theme-color);
}

section {
    width: 100%;
    height: auto;
    overflow: hidden;
}


a {
    text-decoration: none !important;
    color: var(--theme-color);
}


/*============ HEADER CSS STARTS HERE ==========*/

.web-header {
    width: 100%;
    height: auto;
    /* padding: 23px 0; */
    background-color: var(--white);
}

.web-header .web-logo {
    width: 99px;
    height: 43px;
}

.web-header .dropup,
.web-header .dropend,
.web-header .dropdown,
.web-header .dropstart,
.web-header .dropup-center,
.web-header .dropdown-center {
    position: static !important;
}

.web-header .dropdown-menu[data-bs-popper] {
    left: auto !important;
}

.web-header .web-logo img {
    width: 100%;
    height: 100%;
}

.web-header .navbar-nav .nav-link {
    padding: 0;
    color: var(--text-gray-1);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.web-header .navbar-nav li {
    margin-right: 35px;
}

.web-header .navbar-nav li:last-child {
    margin-right: 0;
}

.web-header .navbar-nav li:first-child {
    margin-left: 35px;
}

.web-header .navbar-toggler {
    background-color: #fff;
    border: 1px solid var(--theme-color);
}

.web-header .navbar-toggler-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-header .navbar-toggler-icon::before {
    content: '\f0c9';
    position: absolute;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    font-size: 22px;
    line-height: 22px;
    color: var(--theme-color);
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
}

.web-header ul.dropdown-menu {
    padding: 0;
    border: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.web-header .dropdown li {
    margin: 0 !important;
}

.web-header .dropdown li .dropdown-item {
    color: var(--text-gray-1);
    font-size: 13px;
    line-height: 24px;
    font-weight: 400;
    padding: 5px 15px;
    border-bottom: 1px solid #ebebeb;
}

.web-header .dropdown li:last-child .dropdown-item {
    border: 0;
}

/*============ HEADER CSS ENDS HERE ==========*/


/*============ BANNER CSS STARTS HERE ==========*/

.banner-area {
    width: 100%;
    height: auto;
    min-height:auto;
    display: flex;
    align-items: top;
    justify-content: center;
    background-image: linear-gradient(to bottom, #F1F9E9, rgba(255, 255, 255, 100%));
    padding:140px 0 210px 0;
}

.main-title h1 {
    font-size: 64px;
    line-height: 75px;
    color: var(--dark-1);
    font-weight: 600;
    font-family: 'Roboto Serif', serif !important;
}

.main-title p {
    font-size: 20px;
    line-height: 30px;
    color: var(--text-gray-1);
    font-weight: 400;
    margin-bottom: 0;
}

.banner-area .banner-img {
    position: relative;
}

.banner-area .banner-img::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -70px;
    background-image: url('../images/index-images/banner-layer1.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 254px;
    height: 119px;
}

.banner-area .banner-img::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 0;
    background-image: url('../images/index-images/banner-layer2.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 228px;
    height: 91px;
}

.banner-area .banner-img .layer-three {
    content: '';
    position: absolute;
    top: -35px;
    left: 0;
    border: 5px solid var(--theme-color);
    width: 25px;
    height: 25px;
    border-radius: 100%;
}

.banner-area .images-slider {
    width: 100%;
    overflow: hidden;
    padding: 150px 0 50px;
    position: relative;
}

.banner-area .images-slider .slide_img {
    text-align: center;
    width: 280px;
    height: 210px;
}

.banner-area .images-slider .slide_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.title-box {
    margin-bottom: 50px;
}

.title-box h3 {
    font-size: 32px;
    line-height: 42px;
    color: var(--dark-1);
    font-weight: 600;
    font-family: 'Roboto Serif', serif !important;
}

.title-box p {
    font-size: 20px;
    line-height: 30px;
    color: var(--text-gray-1);
    font-weight: 400;
    margin: 0;
}

/* 
.banner-area {
    padding-top: 100px;
} */

/*============ BANNER CSS ENDS HERE ==========*/


/*============ HOW IT WORKS CSS STARTS HERE ==========*/

.timeline {
    position: relative;
    z-index: 1;
}

.timeline .timeline-box {
    position: relative;
    width: 100%;
    text-align: right;
    margin-bottom: 0px;
    padding-right: 0;
    margin-bottom: 50px;
}

.timeline .timeline-box.four {
    margin-bottom: 0;
}

.timeline .timeline-box .counter {
    position: static;
    font-size: 24px;
    font-weight: 600;
    width: 66px;
    height: 66px;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.timeline .timeline-content {
    text-align: left;
    padding: 50px;
}

.timeline .timeline-box h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-1);
    font-family: 'Roboto Serif', serif !important;
}

.timeline .timeline-box p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0px;
    font-weight: 400;
    color: var(--text-gray-1);
}

.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 110px;
    bottom: 110px;
    width: 1px;
    border-left: 2px dashed var(--theme-color);
    z-index: -1;
}


/*============ HOW IT WORKS CSS ENDS HERE ==========*/

/*============ DELIVERY AREA CSS STARTS HERE ==========*/

.delivery-area {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: var(--theme-light-color1);
    padding: 80px;
    border-radius: 50px;
}

.delivery-area .title-box p {
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 60px;
    color: var(--dark-2);
}

.delivery-area .delivery-img-box {
    text-align: center;
}

/*============ DELIVERY AREA CSS ENDS HERE ==========*/




/*============ APPLICATION AREA CSS START HERE ==========*/

.aplication-area .title-box {
    margin-bottom: 25px;
}

.aplication-area .title-box p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 15px;
    margin-bottom: 0px;
    color: var(--text-gray-2);
}

.aplication-area .app-list li {
    display: flex;
    align-items: center;
    column-gap: 15px;
    list-style: none;
    margin-bottom: 15px;
}

.aplication-area .app-list li:last-child {
    margin-bottom: 0;
}

.aplication-area .app-list li span {
    width: 56px;
    height: 56px;
    border: 8px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 22px;
}

.aplication-area .app-list li p {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-2);
    font-weight: 600;
    margin: 0;
}

.aplication-area .app-img {
    text-align: end;
}

/*============ APPLICATION AREA CSS ENDS HERE ==========*/


/*============ SERVICES AREA CSS ENDS HERE ==========*/

.services-area {
    padding: 60px 0;
    background-color: var(--theme-light-color2);
}

.services-area .service-img {
    text-align: left;
}

.services-area .service-cont .card {
    border: 0;
    padding: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 16px;
    margin-bottom: 15px;
}

.icon-box {
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.services-area .service-cont .card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 5px solid var(--theme-color);
    border-radius: 100%;
	overflow:hidden;
}

.services-area .service-cont .card .icon img {
  width:100%;
  height:100%;
	object-fit:cover;
}
.services-area .service-cont .card h4 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    color: var(--dark-1);
    margin: 0;
}

.services-area .service-cont .card p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-gray-1);
    margin: 0;
    margin-top: 10px;
}

/*============ SERVICES AREA CSS ENDS HERE ==========*/

/*============ BLOG AREA CSS START HERE ==========*/

.blog-area .card {
    border: 0;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}


.blog-area .card .card-title {
	font-size: 20px;
	line-height: 30px;
	color: var(--dark-4);
	font-weight: 700;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.blog-area .card .card-sub-title {
    font-size: 15px;
    line-height: 15px;
    color: var(--text-gray-3);
    font-weight: 500;
}

.blog-area .card .card-text {
    font-size: 15px;
    line-height: 25px;
    color: var(--text-gray-2);
    font-weight: 400;
}

.blog-area .card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0 0;
    border-top: 1px solid #ebebeb;
    font-weight: 500;
    column-gap: 8px;
}

/*============ BLOG AREA CSS ENDS HERE ==========*/


/*============ TESTIMONIALS AREA CSS STARTS HERE ==========*/

.testimonial {
    padding: 80px 0;
    background-color: var(--theme-light-color2);
    position: relative;
}

#testimonials {
    overflow: hidden;
}

.testimonial .card {
    border: 0;
    margin: 0 10px;
    margin-bottom: 50px;
}

.testimonial .card .card-body {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background: #fff !important;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
    border-radius: 19px;
    padding: 50px 20px 60px;
    text-align: center;
}


.testimonial .profile-pic {
    width: 120px;
    margin: 0 auto 20px;
    background: #FFFFFF;
    box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.25);
    border-radius: 100%;
    padding: 15px;
}


.testimonial .swiper-container .swiper-pagination {
    bottom: 0px !important;
}

.testimonial .swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 5px;
    margin-left: 5px;
    cursor: pointer;
    border: 1px solid var(--theme-color);
    background: transparent;
    border-radius: 100%;
}

.swiper-pagination-bullet-active {
    border: 1px solid var(--theme-color);
    background: var(--theme-color) !important;
    border-radius: 100%;
}


/*============ TESTIMONIALS AREA CSS ENDS HERE ==========*/

/*============ FAQ AREA CSS STARTS HERE ==========*/


.faq-area .accordion-button {
    background-color: #fff !important;
    box-shadow: none !important;
    border: 0;
    font-size: 20px;
    line-height: 30px;
    color: var(--dark-1);
    font-weight: 700;
    box-shadow: none;
    flex-flow: row-reverse;
    text-align: left;
    width: auto;
    column-gap: 15px;
    padding-bottom: 0;
}

.faq-area .accordion-item {
    border: 0;
}

.faq-area .accordion-button::after {
    width: 30px;
    height: 30px;
    margin-top: 4px;
}

.faq-area .accordion-button::after {
    background-image: url('../images/index-images/plus.svg') !important;
}

.faq-area .accordion-button:not(.collapsed)::after {
    background-image: url('../images/index-images/minus.svg') !important;
    transform: none;
}


.faq-area .accordion-body p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-gray-1);
    font-weight: 400;
    margin-bottom: 0;
}

/*============ FAQ AREA CSS ENDS HERE ==========*/

/*============ CTA AREA CSS STARTS HERE ==========*/

.cta-area {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: var(--theme-light-color1);
    padding: 80px;
    border-radius: 50px 50px 0 0;
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.search-form .form-control {
    height: 40px;
    border-radius: 7px 0 0px 7px;
    border: 1px solid var(--theme-color);
}

.search-form .btn {
    border-radius: 0 7px 7px 0;
    min-height: 50px;
    line-height: 36px;
}

.cta-img {
    border-radius: 0 0 50px 50px;
}

.cta-img img {
    border-radius: 0 0 50px 50px;
    width: 100%;
}

/*============ CTA AREA CSS ENDS HERE ==========*/



/* SWIPER BUTTONS */

.slider-btns {
    margin-top: 90px;
}

.swiper-button-next::after,
.swiper-button-prev::after,
.cultivation-prev::after,
.cultivation-next::after,
.next::after,
.prev::after {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.swiper-button-prev,
.swiper-button-next,
.prev,
.next {
    background: var(--theme-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

#customer-otp-verify .field-user-otp {
    text-align: center;
}

#customer-profile-update-form .field-user-contact_no .invalid-feedback {
    display: inline-block;
}

#customer-profile-update-form .field-user-contact_no .iti--allow-dropdown {
    width: 100%;
}

/* scroll image after banner */
.image-scroll {
    margin-top: 0px;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.image-scroll .scroll-bar {
    --image-size: 100px;
    padding: 20px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
}

.image-scroll .scroll-bar:hover div {
    animation-play-state: paused;
}

.image-scroll .scroll-bar div {
    display: flex;
    position: relative;
    animation: marquee 20s linear infinite;
    justify-content: space-around;
}

.image-scroll .scroll-bar img {
    display: block;
    min-width: 200px;
    height: 200px;
    margin: 0 1vw;
}

.image-scroll .scroll-bar:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0) 80px, rgba(255, 255, 255, 0) calc(100% - 80px), white);
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.thankyou-area {
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
}

.thankyou-area .thanks-text {
    font-size: 54px;
    line-height: 70px;
    font-weight: 700;
}

.thankyou-area p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin: 20px 0;
    color: #474747;
}


.blog-area .card-img-top {
	width: 100%;
	height: 246px;
	object-fit: cover;
}

.see-all-btn{
	text-decoration:underline;
	color:#38943F;
	font-size:15px;
}


.accordion-button:not(.collapsed){
	color: #242a38 !important;
}

p {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.timeline-content > img {
    display: inline-block;
    height: 30px;
    margin-right: 5px;
}

.timeline-content > h3 {
    display: inline-block;
    vertical-align: text-top;
}