/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

:root {
    /* Colors */
    --primary-color: #ffbc01;
    --primary-focu-color: #dea403;
    --red-color: #ff0606;
    --success-color: #4cbb17;
    --black-color: #000000;
    --white-color: #ffffff;
    --gray-900: #1e1e1e;
    --gray-800: #1a1919;
    --gray-700: #494949;
    --gray-600: #5c5c5c;
    --gray-500: #a4a4a4;
    --gray-400: #d9d9d9;
    --gray-300: #ebebeb;
    --gray-200: #eeeeee;
    --gray-100: #f6f6f6;

    /* Samll Buttons */
    --small-btn-height: 34px;
    --small-btn-line-height: 32px;
    --small-btn-font-size: 15px;
    --small-btn-font-weight: 400;

    /* Normal Buttons */
    --normal-btn-height: 44px;
    --normal-btn-height-responsive: 40px;
    --normal-btn-line-height: 42px;
    --normal-btn-line-height-responsive: 38px;
    --normal-btn-font-size: 18px;
    --normal-btn-font-weight: 500;

    /* Button Common */
    --primary-btn-border: 1px solid #000000;
    --secondary-btn-border: 1px solid #1e1e1e;

    /* Font Common */
    --font-inter: "Inter", sans-serif;
    --body-line-height: 1.4;
    --body-font-size: 16px;
    --font-size-15: 15px;
    --lead-font-size: 18px;
    --card-title-size: 20px;
    --small-font-size: 14px;
    --title-tag-font-size: 12px;
    --article-title-font-size: 24px;
    --medium-title-font-size: 30px;
    --large-title-font-size: 40px;
    --font-weight-700: 700;
    --font-weight-600: 600;
    --font-weight-500: 500;
    --font-weight-400: 400;
}
/* Root Variable End */
html {
    scroll-behavior: smooth;
}
/* Common Style Start */
body {
    font-family: var(--font-inter);
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    color: var(--gray-600);
}
a,
a:hover {
    color: inherit;
    text-decoration: none;
}
.scroll-margin {
    scroll-margin-top: 80px;
}
.woodpecker-btns {
    gap: 15px;
}
.btn {
    padding: 0 24px;
    border-radius: 30px;
    text-transform: capitalize;
}
.btn-small {
    height: var(--small-btn-height);
    font-size: var(--small-btn-font-size);
    font-weight: var(--small-btn-font-weight);
    line-height: var(--small-btn-line-height);
}
.btn-normal {
    height: var(--normal-btn-height-responsive);
    font-size: var(--small-font-size);
    font-weight: var(--normal-btn-font-weight);
    line-height: var(--normal-btn-line-height-responsive);
}
.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible {
    color: var(--gray-900) !important;
    background: var(--primary-color) !important;
    border: var(--primary-btn-border);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.btn-primary:hover {
    background: var(--primary-focu-color) !important;
}
.btn-secondary {
    color: var(--gray-900) !important;
    background: var(--white-color) !important;
    border: var(--secondary-btn-border) !important;
}
.btn-secondary:hover {
    color: var(--gray-900) !important;
    background: #e6e6e6 !important;
    border: var(--secondary-btn-border) !important;
}
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:focus-visible {
    color: var(--gray-900) !important;
    background: #d9d9d9 !important;
    border: var(--secondary-btn-border) !important;
}
.woodpecker-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.gray-bg {
    background-color: var(--gray-100);
}
.section-height {
    padding: 80px 0;
}
.primary-title,
.secondary-title {
    font-size: var(--article-title-font-size);
    font-weight: var(--font-weight-700);
    color: var(--black-color);
    margin: 0;
}
.section-title-tag {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: var(--font-weight-500);
    font-size: var(--title-tag-font-size);
    text-transform: uppercase;
    color: var(--gray-600);
    padding: 4px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
}
.section-title-tag-white {
    background-color: var(--white-color);
}
.section-title-tag-gray {
    background: var(--gray-100);
}
.title-lead {
    font-size: var(--small-font-size);
}
.tiny-title {
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-600);
    color: var(--gray-900);
}
.tiny-subtitle {
    font-size: var(--title-tag-font-size);
}
.tiny-separator {
    width: 56px;
    height: 1px;
    opacity: 0.1;
    background-color: var(--black-color);
}
.large-separator {
    width: 100%;
    height: 1px;
    opacity: 0.1;
    background-color: var(--black-color);
}
.square-box-white {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    width: calc(50% - 16px);
    min-height: 180px;
    padding: 16px;
    border-radius: 12px;
    background-color: white;
}
.square-box-white img {
    max-width: 120px;
    max-height: 120px;
}
.woodpecker-tabs {
    padding: 4px;
    background-color: var(--white-color);
    -webkit-box-shadow: 0px 1px 1px rgb(0 0 0 / 5%);
    box-shadow: 0px 1px 1px rgb(0 0 0 / 5%);
    border-radius: 100px;
    overflow: hidden;
}
.woodpecker-tabs .nav-link {
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-600);
    padding: 10px 20px;
    color: var(--gray-500);
    background-color: transparent;
    border-radius: 100px;
    border: none;
    white-space: nowrap;
}
.woodpecker-tabs .nav-link.active {
    color: var(--gray-900);
    background-color: var(--primary-color);
}
.swiper-pagination {
    position: static;
}
.swiper-pagination .swiper-pagination-bullet-active {
    width: 50px;
}
.swiper-pagination .swiper-pagination-bullet {
    background: #1a1919;
    border-radius: 4px;
    opacity: 1;
    -webkit-transition: width ease-in-out 0.2s;
    -o-transition: width ease-in-out 0.2s;
    transition: width ease-in-out 0.2s;
}
.card-img-title-container .card-title {
    font-weight: var(--font-weight-600);
    font-size: var(--small-font-size);
    color: var(--black-color);
}
.card-img-title-container .card-container {
    border-radius: 8px;
    padding: 24px;
    min-height: 280px;
}
.card-img-title-container .card-subtitle {
    font-weight: var(--font-weight-400);
    color: var(--black-color);
    font-size: 15px;
    margin-top: 20px;
}
.img-title-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.img-box {
    border-radius: 8px 0 0 8px;
    padding: 0;
    min-width: 58px;
    height: 58px;
}
.title-box {
    border-radius: 0 8px 8px 0;
    height: 58px;
    padding: 0 16px;
}
.title-box > p {
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-600);
    white-space: nowrap;
}
.issued-date {
    font-size: var(--small-font-size);
    color: var(--gray-500);
}
@media screen and (max-width: 767px) {
    .woodpecker-btns .btn {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .square-box-white > p {
        font-size: var(--title-tag-font-size);
    }
    .img-box {
        border-radius: 8px 0 0 8px;
        padding: 0;
        min-width: 48px;
    }
    .title-box {
        padding: 0 8px;
    }
}
@media screen and (max-width: 1199px) {
    .woodpecker-section,
    .section-height {
        padding: 64px 0;
    }
}
@media screen and (min-width: 992px) {
    .btn-normal {
        height: var(--normal-btn-height);
        font-size: var(--normal-btn-font-size);
        line-height: 42px;
    }
    .primary-title {
        font-size: var(--large-title-font-size);
    }
    .secondary-title {
        font-size: var(--medium-title-font-size);
    }
    .title-lead {
        font-size: var(--lead-font-size);
    }
    .section-paras {
        font-size: var(--normal-btn-font-size);
    }
    .woodpecker-tabs {
        gap: 16px;
    }
    .woodpecker-tabs .nav-link {
        font-size: var(--lead-font-size);
        padding: 10px 20px;
    }
    .large-separator {
        width: 300px;
    }
    .greenhouse-nursery-monitoring .square-box-white .tiny-title {
        max-width: 120px;
    }
    .title-box {
        padding: 0 24px;
    }
}
@media screen and (min-width: 1200px) {
    .square-box-white {
        width: 220px;
        min-height: 220px;
    }
    .woodpecker-section {
        padding: 48px 0;
        min-height: 800px;
    }
}
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1360px;
    }
}
/* Common Style End */

/* Header Style Start */
.header {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 999;
}
.header .navbar {
    padding: 0;
    -webkit-box-shadow: 0px 4px 10px rgb(0 0 0 / 5%);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 5%);
}
.logo {
    /* max-height: 46px;*/
    max-height: 65px;
}
.navbar-toggler span {
    width: 30px;
    height: 3px;
    background-color: #000;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.navbar-toggler {
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    position: relative;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}
.navbar-toggler:focus,
.navbar-toggler:focus-visible {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    outline: none;
}
.header .navbar-nav .nav-link {
    font-size: var(--card-title-size);
    letter-spacing: -0.24px;
    color: var(--gray-800);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 48px;
    position: relative;
}
.header .navbar-nav .dropdown-toggle::after {
    display: block;
    margin-left: 10px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid var(--primary-color);
    -webkit-transition: -webkit-transform ease-in-out 0.1s;
    transition: -webkit-transform ease-in-out 0.1s;
    -o-transition: transform ease-in-out 0.1s;
    transition: transform ease-in-out 0.1s;
    transition: transform ease-in-out 0.1s, -webkit-transform ease-in-out 0.1s;
}
.header .navbar-nav .nav-link:hover::after,
.header .navbar-nav .nav-link.show::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
/* .dropdown:hover > .dropdown-menu {
    display: block;
} */
.header .dropdown-mega > .dropdown-menu {
    padding: 16px 0;
    background: transparent;
    border: none;
    border-radius: 0;
}
.menu-title {
    font-size: 12px;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    color: var(--black-color);
    opacity: 0.7;
}
.nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}
.nav-menu .menu-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: var(--font-weight-600);
    letter-spacing: -0.24px;
    color: var(--black-color);
}
.nav-menu p {
    font-size: 15px;
    letter-spacing: -0.24px;
    color: #000000;
}
@media screen and (max-width: 767px) {
    .header .navbar {
        padding: 16px 0;
    }
}
@media screen and (max-width: 991px) {
    .navbar-expand-lg .navbar-collapse {
        position: absolute;
        left: 0;
        top: 78px;
        width: 100%;
        min-height: calc(100vh - 78px);
        z-index: 999;
        padding: 48px 24px;
        background: rgba(244, 244, 244, 0.9);
        -webkit-backdrop-filter: blur(36px);
        backdrop-filter: blur(36px);
    }
    .navbar-collapse .navbar-nav .nav-item:not(:last-child) .nav-link {
        border-bottom: 1px solid #dedede;
    }
    .header .navbar-nav .nav-link {
        line-height: 64px;
    }
}
@media screen and (min-width: 992px) {
    .header .dropdown-mega > .dropdown-menu {
        -webkit-backdrop-filter: blur(14.5px);
        backdrop-filter: blur(14.5px);
        background: rgba(244, 244, 244, 0.9);
    }
    .header .navbar-nav {
        gap: 36px;
    }
    .nav-menu {
        gap: 48px;
    }
    .header .navbar-nav .nav-link {
        font-weight: var(--font-weight-500);
        /* font-size: var(--title-tag-font-size); */
        font-size: var(--lead-font-size);
        line-height: 80px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .header .navbar-nav .nav-link::before {
        content: "";
        position: absolute;
        left: 0;
        top: -5px;
        width: 100%;
        height: 5px;
        background-color: #000;
        -webkit-transition: all ease-in-out 0.1s;
        -o-transition: all ease-in-out 0.1s;
        transition: all ease-in-out 0.1s;
    }
    .header .navbar-nav .nav-link:hover::before,
    .header .navbar-nav .nav-link.active::before,
    .header .navbar-nav .nav-link.show::before {
        top: 0;
    }
    .header .dropdown-mega > .dropdown-menu {
        position: fixed !important;
        width: 100%;
        left: 0;
        top: 80px;
        margin: 0;
        padding: 75px 0;
    }
    .sub-dropdown .dropdown-menu {
        list-style: disc;
        padding-left: 20px;
    }
    .sub-dropdown .dropdown-menu.show {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .header .navbar-nav .sub-dropdown .dropdown-toggle::after {
        border: 0;
        /* width: 10px;
        height: 15px;
        background: url("../img/dropdown-arrow.svg") no-repeat; */
    }
    .header .navbar-nav .sub-dropdown .dropdown-toggle.show::after {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .sub-dropdown .dropdown-item,
    .sub-dropdown .dropdown-item.active,
    .sub-dropdown .dropdown-item:active {
        padding: 0;
        color: inherit;
        background-color: transparent;
    }
    .nav-menu .menu-link {
        font-size: var(--card-title-size);
    }
    .header .dropdown-mega > .dropdown-menu .row .col-12:not(:last-child) {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }
}
@media screen and (min-width: 1200px) {
    .header .navbar-nav {
        gap: 48px;
    }
}
/* Header Style End */

/* Banner Style Start */
.woodpecker-banner-slider {
    height: 100%;
    /* padding: 80px 0; */
}
.banner .primary-title,
.banner .secondary-title {
    font-size: 32px;
}
.banner .secondary-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: var(--font-weight-500);
    /* border-bottom: 1px solid var(--black-color); */
    max-width: 260px;
}
.banner-heading {
    /* min-height: 75px; */
    font-weight: var(--font-weight-700);
    font-size: 50px;
    text-transform: uppercase;
    color: var(--primary-color);
}
.animeslide-slide {
    background-position: center;
    background-size: cover;
}
.animeslide-slide.swiper-slide-active [data-animate] {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.animeslide-slide.swiper-slide-active .banner-heading {
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
.animeslide-slide.swiper-slide-active .banner-desc {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.banner-heading {
    font-family: "Barlow", sans-serif;
    text-shadow: -1px 1px 0 var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* -webkit-text-stroke: 1px var(--gray-800); */
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}
.banner-desc {
    opacity: 0.9;
}

[data-animate] {
    opacity: 0;
    -webkit-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

[data-animate="bottom"] {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
}
/* .text {
    text-shadow: -4px 4px 0px var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px var(--gray-800);
} */
/* .banner-heading img {
    position: absolute;
} */
/* .banner-heading img.sun {
    left: 70px;
    top: 45px;
}
.banner-heading img.cloud {
    right: 24px;
    bottom: 45px;
} */
/* .clients {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
} */
.client-box {
    /*width: 100%;*/
    width: 100px;
    padding-top: 100px;
    max-width: 210px;
    position: relative;
}
.client-box-content{
    gap:16px;
}
.client-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 100%;
}
/* Fix Slider in Mobile */
/* .woodpecker-banner-slider .swiper-wrapper,
.woodpecker-banner-slider .swiper-wrapper .swiper-slide {
    position: static;
} */
/* @media screen and (max-width: 991px) {
    .woodpecker-banner-slider .swiper-pagination {
        position: absolute;
        bottom: 0px;
    }
} */
@media screen and (min-width: 992px) {
    .banner,
    .woodpecker-section.banner {
        /* height: 720px;
        min-height: 720px; */
        height: 577px;
        min-height: 577px;
    }

    /* .woodpecker-banner-slider {
        padding: 48px 0;
    } */
    .banner .secondary-title {
        font-size: var(--medium-title-font-size);
        max-width: none;
    }
    .banner-heading {
        font-size: 100px;
        text-shadow: -4px 1px 0 var(--primary-color);
        /* -webkit-text-stroke: 2px var(--gray-800); */
    }

    /* .banner-heading img.sun {
        left: 140px;
        top: -34px;
    }
    .banner-heading img.cloud {
        right: 450px;
        bottom: -30px;
    } */
}
/* Banner Style End */

/* What We Offer Start */
.custome-what-we-offer-section{
    min-height: unset;
}
/* What We Offer End */

/* Precision Irrigation Start */
@media screen and (max-width: 991px) {
    .precision-irrigation-slider .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
/* Precision Irrigation End */

/* Orchard & Vineyard Monitoring Style Start */
.orchard-vineyard-monitoring-card {
    padding: 20px 24px;
    background: var(--gray-100);
    border-radius: 12px;
}
.orchard-vineyard-monitoring-card img {
    max-height: 132px;
}
@media screen and (min-width: 992px) {
    .orchard-vineyard-monitoring-card {
        min-height: 256px;
    }
}
/* Orchard & Vineyard Monitoring Style End */

/* Greenhouse & Nursery Monitoring Style Start */
/* Greenhouse & Nursery Monitoring Style End */

/* Orchard & Vineyard Monitoring Style Start */
.farm-automation-box p {
    font-size: var(--body-font-size);
    color: #5c5c5c;
}
/* Orchard & Vineyard Monitoring Style End */

/* Farm & Ranch Automation Style Start */
@media screen and (max-width: 767px) {
    .farm-automation-box img {
        max-width: 100px;
    }
}
/* Farm & Ranch Automation Style End*/

/* Rain and wind Style Start */
.rain-wind-card {
    gap: 16px;
    padding: 36px;
    background: #f6f6f6;
    border-radius: 12px;
}
@media screen and (min-width: 992px) {
    .rain-wind-card {
        height: 100%;
    }
}
/* Rain and wind Style End */

/* Precision Irrigation page styling Start */
.plant-water-status .img-title-box {
    height: 36px;
}
.plant-water-status .title-box {
    min-width: 215px;
}
/* Precision Irrigation page styling End */

/* Farm and Ranch Automation page styling Start */
.point-list {
    font-size: var(--small-font-size);
    letter-spacing: -0.24px;
}
@media screen and (min-width: 992px) {
    .point-list {
        font-size: var(--lead-font-size);
        letter-spacing: -0.24px;
    }
}
/* Farm and Ranch Automation page styling End */

/* About Us page styling Start */
.we-do-matters p {
    font-size: var(--body-font-size);
    font-weight: var(--font-weight-600);
    color: var(--gray-800);
}
.core-value-card-title {
    font-size: var(--card-title-size);
    font-weight: var(--font-weight-500);
    letter-spacing: -0.15128px;
    color: var(--black-color);
}
.investors {
    height: 100px;
    width: 260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.trust-radius-title {
    font-weight: var(--font-weight-500);
    font-size: var(--article-title-font-size);
    color: var(--black-color);
}
.trust-radius-subtitle {
    font-size: var(--card-title-size);
    color: var(--black-color);
    letter-spacing: -0.24px;
}
/* About Us page styling End */

/* Contact Us Page Style Start */
.contact-us-lead {
    font-size: 16px;
}
.contact-us-needs {
    padding-left: 20px;
    /*max-width: 360px;*/
}
.fade-out {
    animation: fadeOut 25s linear forwards;
  }

  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}
.contact-us-needs li::marker {
    width: 12px;
    height: 12px;
    font-size: var(--article-title-font-size);
    color: var(--primary-color);
}
.contact-us-page-form {
    border-top: 1px solid var(--gray-400);
}
.contact-us-page-form p {
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-400);
}
.contact-us-page-form .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
}
.contact-us-page-form .form-check-input {
    min-width: 24px;
    min-height: 24px;
    background-color: #d9d9d9;
    border-radius: 8px;
    margin: 0 12px 0 0;
}
.contact-us-page-form .form-check-input:checked {
    border-color: #000;
    background-color: #000;
}
.contact-us-page-form .form-check-input:focus {
    border-color: #000;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
.contact-field p,
.input-field p {
    display: none;
    visibility: hidden;
}
.error p {
    display: block;
    visibility: visible;
    color: red;
}
@media screen and (max-width: 1199px) {
    .contactus-page .secondary-title {
        font-size: var(--card-title-size);
    }
    .contact-us-needs {
        font-size: var(--small-font-size);
    }
}
@media screen and (min-width: 992px) {
    .contact-us-lead {
        font-size: 20px;
        /*max-width: 280px;*/
    }
    .contact-us-page-form {
        padding-left: 100px;
        border-left: 1px solid var(--gray-400);
        border-top: none;
    }
}
/* Contact Us Page Style End */

/* Products Style Start */
.product-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 310px;
    height: 100%;
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    position: relative;
}
.product-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}
.product-img img {
    max-width: 160px;
    max-height: 160px;
    margin: auto;
}
.popular-item {
    font-size: 8px;
    font-weight: var(--font-weight-500);
    letter-spacing: -0.24px;
    padding: 4px 0 4px 12px;
    color: var(--gray-800);
    background-color: var(--primary-color);
    position: absolute;
    left: -4px;
    top: 12px;
    z-index: 1;
}
.popular-item::before,
.popular-item::after {
    content: "";
    position: absolute;
    right: -16px;
    border-width: 8px;
    border-style: solid;
}
.popular-item::before {
    top: 0;
    border-color: var(--primary-color) transparent transparent var(--primary-color);
}
.popular-item::after {
    bottom: 0;
    border-color: transparent transparent var(--primary-color) var(--primary-color);
}
@media screen and (min-width: 992px) {
    .product-card {
        height: 310px;
        padding: 32px 46px;
    }
}
/* Products Style End */

/* Testimonial Style Start */
.testimonial {
    background-color: #ffbc01;
}
.customer-thumbnail {
    max-width: 425px;
    position: relative;
}
.customer-thumbnail .customer-thumbnail-img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.customer-thumbnail .testimonial-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 100px;
    max-height: 100px;
}
.customer-content {
    padding: 48px 24px 24px;
}
.customer-content p {
    color: #1a1919;
    position: relative;
}
.customer-content p .quote {
    position: absolute;
    left: 0;
    top: -24px;
    max-width: 18px;
}
.customer-content p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #888888;
}
.about-cusomer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}
.cusomer-profile-pic {
    max-width: 70px;
    max-height: 70px;
}
.cusomer-name {
    font-size: var(--lead-font-size);
    font-weight: var(--font-weight-700);
    color: var(--gray-900);
}
.cusomer-designation {
    color: #888888;
}
@media screen and (min-width: 992px) {
    .testimonials-slider .swiper-slide:not(.swiper-slide-active) {
        opacity: 0.5;
    }
    .customer-thumbnail .customer-thumbnail-img {
        height: 100%;
    }
    .customer-content {
        max-width: 50%;
        padding: 36px 48px;
    }
    .customer-content p {
        font-size: var(--article-title-font-size);
        color: #1a1919;
        position: relative;
    }
    .customer-content p .quote {
        position: absolute;
        left: -30px;
        top: -10px;
        max-width: none;
    }
    .customer-content p::after {
        width: 200px;
    }
    .about-cusomer {
        gap: 24px;
    }
}
/* Testimonial Style End */

/* Trusted by businesses Loved by people Style Start */
.trusted-business {
    gap: 16px;
}
.technology-partner{
    max-width: 88%;
    height: auto;
}
.technology-partner-second-box{
    width: 100%;
    max-width: 115px;
    position: relative;
    padding-top: 30px;
}
.technology-partner-second{
    max-width: 126%;
    height: auto;
}
.technology-partner-box{
    width: 100%;
    max-width: 210px;
    position: relative;
    padding-top: 68px;
}
.trusted-business-img {
    width: calc(50% - 16px);
    height: 100px;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 4px;
}
.trusted-business-img img {
    max-width: 136px;
    max-height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media screen and (min-width: 992px) {
    .trusted-business-img {
        width: 208px;
        height: 208px;
    }
    .trusted-business-img img {
        max-width: 200px;
        max-height: 80px;
    }
}
/* @media screen and (min-width: 1440px) {
    .trusted-business .trusted-business-img:nth-child(2),
    .trusted-business .trusted-business-img:nth-child(4),
    .trusted-business .trusted-business-img:nth-child(7),
    .trusted-business .trusted-business-img:nth-child(9) {
        -webkit-transform: translateY(36px);
        -ms-transform: translateY(36px);
        transform: translateY(36px);
    }
} */
/* Trusted by businesses Loved by people Style End */

/* Latest Article Style Start */
.article {
    padding: 24px 48px;
    background-color: var(--white-color);
    border-radius: 12px;
}
.article-title {
    font-weight: var(--font-weight-600);
    font-size: var(--article-title-font-size);
    letter-spacing: -0.24px;
    color: var(--gray-900);
}
.article-date {
    display: block;
    font-size: var(--small-font-size);
    color: var(--gray-900);
}
.article-description {
    font-size: var(--small-font-size);
    color: var(--gray-700);
}
.article-read-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.24px;
    color: var(--gray-900);
    text-decoration: none;
}
/* Latest Article Style End */

/* .Contact Us Style Start */
.contact-us {
    color: var(--black-color);
}
.contact-form .form-label {
    letter-spacing: -0.24px;
    color: var(--black-color);
    opacity: 1;
}
.contact-form .form-control,
.search-sensor {
    min-height: 60px;
    padding: 16px;
    background-color: #f6f6f6;
    border-radius: 4px;
    border: 2px solid transparent;
}
.contact-form .form-select {
    background-image: url("../img/dropdown-arrow-yellow.svg");
}
.contact-form .error .form-control {
    border-color: var(--red-color);
}
.contact-form .form-control:focus,
.contact-form .error .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--primary-color);
}
.contact-form textarea.form-control {
    resize: none;
}
.contact-form #formMsg {
    color: var(--success-color);
    font-weight: var(--font-weight-500);
}
@media screen and (max-width: 767px) {
    .contact-form .btn {
        width: 100%;
    }
}
@media screen and (min-width: 992px) {
    .contact-us .secondary-title {
        max-width: 250px;
    }
    .contact-us p {
        max-width: 220px;
    }
}
/* .Contact Us Style End  */

/* Products Sensors Style Start */
.search-box {
    border-radius: 8px;
}
.search-sensor::-webkit-input-placeholder {
    font-weight: var(--font-weight-600);
    color: var(--gray-500);
    outline: none;
}
.search-sensor::-moz-placeholder {
    font-weight: var(--font-weight-600);
    color: var(--gray-500);
    outline: none;
}
.search-sensor:-ms-input-placeholder {
    font-weight: var(--font-weight-600);
    color: var(--gray-500);
    outline: none;
}
.search-sensor::-ms-input-placeholder {
    font-weight: var(--font-weight-600);
    color: var(--gray-500);
    outline: none;
}
.search-sensor,
.search-sensor::placeholder {
    font-weight: var(--font-weight-600);
    color: var(--gray-500);
    outline: none;
}
/* Products Sensors Style End */

/* Product Details Style Start */
.product-detail-img {
    border: 1px solid var(--gray-400);
    border-radius: 12px;
    margin-right: 1px;
}
.product-sample-box {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gray-400);
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.product-detail-img img {
    max-width: 300px;
}
.product-code {
    font-size: var(--font-size-15);
    color: var(--red-color);
    font-weight: var(--font-weight-500);
    border-bottom: 2px solid var(--gray-700);
}
/* Product Details Style End */

/* Current Agricultural Dev Style Start */
.current-agricultural-developments .secondary-title {
    max-width: 500px;
    color: var(--white-color);
}
/* Current Agricultural Dev Style End */

/* Articles/Blog Style Start */
.subscribe-btn-box {
    padding: 8px 24px;
    border-radius: 24px;
    height: 44px;
    width: 400px;
}
.subscribe-btn-box:focus {
    outline: none;
}
.article-blog-search-box {
    max-width: 325px;
    max-height: 44px;
}
.article-blog-search-box > input {
    min-height: 44px;
    font-size: 15px;
    font-weight: var(--font-weight-500);
    color: var(--black-color);
}
.article-blog-search-box > input::-webkit-input-placeholder {
    font-weight: var(--font-weight-500);
}
.article-blog-search-box > input::-moz-placeholder {
    font-weight: var(--font-weight-500);
}
.article-blog-search-box > input:-ms-input-placeholder {
    font-weight: var(--font-weight-500);
}
.article-blog-search-box > input::-ms-input-placeholder {
    font-weight: var(--font-weight-500);
}
.article-blog-search-box > input::placeholder {
    font-weight: var(--font-weight-500);
}
.article-blog-cards {
    background-color: #ffffff;
    min-height: 220px;
}
.article-blog-container .section-paras {
    font-size: 20px !important;
    font-weight: var(--font-weight-600);
}
.popular-picks-card {
    background-color: #ffffff;
}
.popular-picks-card .section-paras {
    font-size: 14px !important;
}
.article-blog-subtitle {
    font-size: 12px;
    color: var(--black-color);
}
.check-other-tweets,
.check-other-tweets:hover {
    color: #20a2f3;
}
.tweet-slider .swiper-button-next,
.tweet-slider .swiper-button-prev,
.linkedin-slider .swiper-button-next,
.linkedin-slider .swiper-button-prev {
    top: -36px;
    width: 38px;
    height: 38px;
}
.tweet-slider .swiper-button-next,
.linkedin-slider .swiper-button-next {
    right: 0;
}
.tweet-slider .swiper-button-prev,
.linkedin-slider .swiper-button-prev {
    right: 62px;
    left: auto;
}
.tweet-slider .swiper-button-next::after,
.tweet-slider .swiper-button-prev::after,
.linkedin-slider .swiper-button-next::after,
.linkedin-slider .swiper-button-prev::after {
    display: none;
}
@media screen and (min-width: 992px) {
    .popular-picks-card .section-paras {
        font-size: 20px !important;
    }
    .tweet-slider,
    .linkedin-slider {
        overflow: visible;
    }
}
/* Articles/Blog Style End*/

/* Case Study Style Start */
.rectangular-btn {
    border-radius: 4px;
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-400);
    border: none;
}
.tranparent-btn {
    color: var(--gray-600) !important;
    background: var(--white-color) !important;
    border: 1px solid var(--gray-600);
}
.woodpecker-people p {
    font-size: 36px;
    font-weight: var(--font-weight-400);
    color: var(--black-color);
}
.woodpecker-people > p:nth-of-type(2) {
    font-size: 20px;
}
@media screen and (min-width: 992px) {
    .rectangular-btn {
        padding-inline: 45px;
    }
    .resources-enterprise .title-lead {
        font-size: 24px;
    }
    .woodpecker-people p {
        font-size: 60px;
    }
    .woodpecker-people > p:nth-of-type(2) {
        font-size: 25px;
    }
}
/* Case Study Style End */

/* Case Study Base Style Start */
.products-used .product-card {
    background-color: var(--gray-100);
}
@media screen and (min-width: 992px) {
    .product-card {
        height: 100%;
        padding: 20px;
    }
}
/* Case Study Base Style End */

/* Resources News Publications Style Start */
.news-pills .nav-link {
    width: 100%;
    font-size: 14px;
    color: #5c5c5c;
    background: #ffffff;
    border: 1px solid #5c5c5c;
    border-radius: 4px;
}
.news-pills {
    width: 100%;
    gap: 24px;
}
.news-pills li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.news-pills .nav-link.active {
    color: #1e1e1e;
    background: #ffbc01;
    border-color: #ffbc01;
}
.news-pills-content .title-lead {
    font-size: var(--card-title-size);
}
.news-room-section .search-sensor {
    padding-right: 148px;
}
@media screen and (min-width: 992px) {
    .news-pills-content .title-lead,
    .news-room-section .title-lead {
        font-size: var(--article-title-font-size);
    }
}
/* Resources News Publications Style End */

/* FAQ Style Start */
.how-can-we-help-section .article-blog-search-box {
    max-width: 400px !important;
    max-height: 64px;
}
.how-can-we-help-section .article-blog-search-box .search-sensor {
    width: 100%;
    height: 60px;
}
.accordion-button {
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-500);
}
.accordion-number {
    min-width: 30px;
    margin-right: 10px;
    font-size: var(--card-title-size);
}
.accordion-button:focus,
.accordion-button:not(.collapsed) {
    color: inherit;
    border-color: inherit;
    background-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.accordion-button::after {
    border-radius: 50%;
    background: #606060;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    padding-left: 10px;
}
.accordion-body {
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-400);
    padding-left: 60px;
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    background-image: url("../img/accordion-arrow.webp");
}
@media screen and (min-width: 992px) {
    .accordion-button {
        font-size: var(--article-title-font-size);
    }
    .accordion-button::after {
        width: 40px;
        height: 40px;
    }
    .accordion-number {
        width: 40px;
        font-size: var(--medium-title-font-size);
        margin-right: 16px;
    }
    .accordion-body {
        font-size: var(--card-title-size);
        padding-left: 75px;
    }
    .accordion-flush .accordion-item {
        padding: 14px;
    }
}
/* FAQ Style End */

/* Iris Central Page Style Start --------------------------------------------------*/
/* Algriculture Environment Section Start -------from iris central page*/
.algriculture-environment-list {
    height: 120px;
}

.algriculture-environment-container > div {
    max-width: 580px;
}

@media screen and (min-width: 768px) {
    .algriculture-environment-list {
        height: 150px;
    }
}
/* Algriculture Environment Section End -------from iris central page */
/* Iris Central Page Style End ------------------------------------------------------*/

/* Groundwater Levels and Use Section Style Start */
.groundwater-levels-section .primary-title {
    max-width: 250px;
}

.image-box {
    max-width: 300px;
}

.image-box .tiny-title {
    height: 25px;
}

.target-clients-section .image-box {
    max-width: 320px;
}

@media screen and (min-width: 768px) {
    .target-clients-section .secondary-title {
        min-height: 40px;
        font-size: var(--body-font-size);
    }
}

@media screen and (min-width: 992px) {
    .target-clients-section .secondary-title {
        min-height: 84px;
        font-size: var(--medium-title-font-size);
    }
}
/* Groundwater Levels and Use Section Style End */

/* Field-Tested Communication Systems Start from Connectivity page */
@media screen and (min-width: 992px) {
    .field-tested-communication-systems-img {
        max-width: 550px;
    }
}
/* Field-Tested Communication Systems End from Connectivity page */

/* Footer Style Start */
.footer {
    padding: 64px 0;
    color: var(--white-color);
    background-color: var(--black-color);
}
.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}
.footer-nav-link {
    letter-spacing: -0.24px;
}
.language,
.language:focus-visible {
    color: var(--white-color);
    background-color: transparent;
    border: none;
    outline: none;
}
.language option {
    color: var(--black-color);
}
.follow-us ul {
    gap: 20px;
}
.copyright {
    font-size: var(--title-tag-font-size);
    text-align: center;
    letter-spacing: -0.24px;
    max-width: 500px;
    margin: auto;
}
@media screen and (max-width: 767px) {
    .footer-logo {
        max-width: 175px;
    }
}
@media screen and (min-width: 992px) {
    .footer {
        padding: 100px 0;
    }
    .copyright {
        font-size: var(--small-font-size);
    }
}
/* Footer Style End */

/* Starterkit slider Start */
.starter-kit-slider .swiper-button-next,
.starter-kit-slider .swiper-button-prev
{
    top: -36px;
    width: 38px;
    height: 38px;
}
.starter-kit-slider .swiper-button-next,
.starter-kit-slider .swiper-button-next {
    right: 0;
}

.starter-kit-slider .swiper-button-prev,
.starter-kit-slider .swiper-button-prev {
    right: 62px;
    left: auto;
}

    .starter-kit-slider .swiper-button-next::after,
    .starter-kit-slider .swiper-button-prev::after
     {
        display: none;
    }

@media screen and (min-width: 992px) {

    .starter-kit-slider {
        overflow: visible;
    }
}

/* Starterkit slider End */

/* Client slider Start */
.client-slider .swiper-button-next,
.client-slider .swiper-button-prev {
    top: -36px;
    width: 38px;
    height: 38px;
}

.client-slider .swiper-button-next,
.client-slider .swiper-button-next {
    right: 0;
}

.client-slider .swiper-button-prev,
.client-slider .swiper-button-prev {
    right: 62px;
    left: auto;
}

    .client-slider .swiper-button-next::after,
    .client-slider .swiper-button-prev::after {
        display: none;
    }

@media screen and (min-width: 992px) {

    .client-slider {
        overflow: visible;
    }
}

/* Client slider End */