*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

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

a {
    text-decoration: none;
}

.container-main {
    max-width: 1320px;
    margin: 0 auto;
}

html {
    overflow-x: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* .preloader-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 8px solid rgba(0,0,0,0.1);
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
} */
.preloader-leaf {
    width: 50%;
    height: 50%;
    object-fit: scale-down;
    z-index: 10000;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

body {
    font-family: "Mulish", sans-serif;
    overflow-x: hidden;
}

.top-bar-main {
    padding: 6px 0px;
    background-color: #009a4e;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left ul,
.top-bar-right ul {
    display: flex;
    gap: 20px;
}

.top-bar-left ul li,
.top-bar-right ul li {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
    list-style-type: none;
}

.top-bar-left ul li a,
.top-bar-right ul li a {
    color: #fff;
    transition: .3s;
}

.top-bar-left ul li i {
    margin-right: 7px;
    transition: .3s;
}

.top-bar-right i {
    transition: .3s;
}

.main-header {
    padding: 10px 0px;
    width: 100%;
    z-index: 10;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background-color: #fff;
}

.mob-header {
    display: none;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    max-width: 250px;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-links ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-links ul li {
    font-size: 15px;
    display: block;
    font-weight: 800;
    color: #20252d;
    text-transform: uppercase;
}

.header-links ul li a {
    color: #20252d;
}

.header-links ul li:hover a {
    color: #009a4e;
}

.header-links ul li.active a {
    color: #009a4e;
}

.dropdown-link {
    position: relative;
    padding-right: 15px;
}

.dropdown-link::before {
    position: absolute;
    content: "";
    background-image: url(../images/down_arrow.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 12px;
    height: 8px;
    right: 0px;
    top: 7px;
    filter: invert(1);
    pointer-events: none;
}

.dropdown-content,
.dropdown-content-inner {
    display: none;
    flex-flow: column;
    position: absolute;
    background-color: #009a4e;
    width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;

}

.dropdown-content ul,
.dropdown-content-inner ul {
    flex-flow: column;
    align-items: unset;
    gap: 10px;
    padding: 15px 0px;

}

.dropdown-content-inner ul {
    min-width: 200px;
}

.dropdown-content li a {
    color: #fff !important;
}

.dropdown-content li,
.dropdown-content-inner li {
    padding: 0px 15px;
}

.dropdown-content li a:hover {
    color: #000 !important;
}

.dropdown-link:hover .dropdown-content {
    display: block;
}

.dropdown-content.inner {
    display: none;
}

.dropdown-content li:hover .dropdown-content-inner {
    display: block !important;
    left: 99%;
    top: 0px;
}

.dropdown-content li:nth-child(2):hover .dropdown-content-inner {
    top: 35px;
}

.dropdown-content li:nth-child(3):hover .dropdown-content-inner {
    top: 65px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    font-size: 17px;
    color: #20252d;
}

.search-icon:hover {
    color: #20252d;
}

.inquire-btn {
    background-color: #009a4e;
    width: max-content;
    height: 45px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    font-size: 16px;
    font-weight: 800;
    transition: .3s;
    text-transform: uppercase;
}

.inquire-btn:hover {
    background-color: #20252d;
    color: #fff;
}

.home-banner-main,
.home-banner-bg,
.home-certificate-main {
    position: relative;
}

.home-banner-bg {
    height: 70vh;
}

.home-certificate-bg {
    position: relative;
}

.home-banner-bg::before,
.home-certificate-bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.3;
}

.home-banner-bg img,
.home-certificate-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner-info,
.home-certificate-info,
.breadcrumbs-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.home-banner-info .container-main,
.home-certificate-info .container-main,
.breadcrumbs-info .container-main {
    height: 100%;
}

.home-banner-content,
.home-certificate-content,
.breadcrumbs-content {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.home-banner-content {
    justify-content: flex-end;
    padding-bottom: 80px;
}

.home-banner-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
	max-width:900px;
}

.home-banner-content h1 span {
    color: #d7c12f;
}

.home-banner-content p {
    font-size: 20px;
    font-weight: 300;
    color: #ccccd5;
    text-align: center;
    margin-bottom: 15px;
}

.home-banner-content a {
    background-color: #009a4e;
    width: max-content;
    height: 56px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    font-size: 16px;
    font-weight: 800;
    transition: .3s;
    text-transform: uppercase;
}

.home-arrow-flex {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0px 80px;
}

.home-arrow-flex button {
    border: unset;
    background-color: unset;
    margin: 20px 0px;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all .3s ease;
}

button.prev-btn img {
    transform: rotate(-90deg);
}

button.next-btn img {
    transform: rotate(-90deg);
}

.home-arrow-flex button:hover {
    background-color: #009a4e;
    border: 2px solid #009a4e;
}

.home-arrow-flex button img {
    filter: invert(1);
}

.counter-area-main {
    margin-top: -70px;
    position: relative;
    z-index: 1;
}

.counter-area-flex {
    display: flex;
}

.counter-area-block {
    width: 33.33%;
}

.counter-area-block-inner {
    padding: 30px;
    /* border: 1px solid #dddddd; */
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.counter-area-block:nth-child(1) .counter-area-block-inner {
    background-color: #009a4e;
}

.counter-area-block:nth-child(2) .counter-area-block-inner {
    background-color: #f2e971;
}

.counter-area-block:nth-child(2) h2,
.counter-area-block:nth-child(2) p,
.counter-area-block:last-child h2,
.counter-area-block:last-child p {
    color: #1c2436;
}

.counter-area-block:nth-child(2) img,
.counter-area-block:last-child img{
    filter: invert(0);
}

.counter-area-block:nth-child(3) .counter-area-block-inner {
    background-color: #0201fd;
}

.counter-area-block h2 {
    font-size: 42px;
    line-height: 1.16;
    font-weight: 700;
    /* color: #1c2436; */
    color: #fff;
    position:relative;
}

.nbspl-block h4{
    position:relative !important;
}

.nbspl-block:nth-child(4) h4{
    width: max-content;
}

.nbspl-block:nth-child(4) h4 .odometer-inside {
    margin-left: -40px;
}

.counter-area-block:nth-child(4) h2::before,
.nbspl-block:nth-child(4) h4::before{
    position: absolute;
    content: 'cr+';
    font-size: 36px;
    line-height: 1.16;
    font-weight: 700;
    color: #fff;
    right: -60px;
    top: 5px;
}

.nbspl-block:nth-child(4) h4::before{
    color: #20252d;
}

.counter-flex {
    display: flex;
    align-items: center;
}

.counter-area-block span img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    margin-top: -10px;
    filter: invert(1);
}

.counter-area-block p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.33;
    color: #fff;
    margin-top: 15px;
}

.home-about-main,
.home-products-main,
.home-client-review-main,
.contact-us-main,
.products-main,
.product-detail-main,
.our-team-main {
    padding-top: 100px;
    padding-bottom: 100px;
}

.home-about-flex,
.about-client-flex,
.product-detail-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-about-left,
.home-about-right,
.home-certificate-left,
.home-certificate-right {
    width: 50%;
}

.home-about-left {
    height: 700px;
}

.home-about-left img,
.nexus-block-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-about-right {
    padding-left: 70px;
}

.home-about-right span,
.home-nexus-goal span,
.home-client-review span {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: #009a4e;
    display: block;
    margin-bottom: 10px;
}

.home-about-right h2,
.nexus-one-liner h2,
.home-nexus-goal h2,
.home-certificate-left h2,
.home-client-review h2,
.related-products h2,
.about-nexus h3 {
    font-size: 40px;
    font-weight: 800;
    font-family: 'Mulish', sans-serif;
    color: #20252d;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.home-about-right p,
.nexus-block-content p,
.home-certificate-left p,
.contact-us-left.career p,
.about-nexus p,
.about-naresh p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #20252d;
    margin-bottom: 15px;
}

.home-about-right a {
    background-color: #f2e971;
    width: max-content;
    height: 56px;
    color: #20252d;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    font-size: 16px;
    font-weight: 800;
    transition: .3s;
    text-transform: uppercase;
}

.about-call-flex {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}

.about-call-right {
    margin-left: 10px;
}

.about-call-right h4 {
    font-size: 16px;
    font-weight: 800;
    color: #20252d;
    letter-spacing: -0.02em;
    margin-bottom: 7px;
}

.about-call-right h5 {
    font-size: 20px;
    font-weight: 800;
    color: #20252d;
    letter-spacing: -0.02em;
}

.about-client-flex {
    padding-top: 30px;
}

.about-client-left {
    width: 60%;
    padding-right: 20px;
}

.about-client-right {
    width: 40%;
    background-color: #009a4e;
    padding: 40px 30px;
}

.about-client-right h3 {
    font-size: 26px;
    line-height: 38px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.home-nexus-goal-main {
    position: relative;
}

.home-nexus-goal-main::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 125px;
    background-color: #000;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.home-nexus-goal-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -15px;
}

.home-nexus-goal-block {
    width: 33.33%;
    padding: 0px 15px;
    position: relative;
}

.nexus-block-bg {
    height: 425px;
}

.home-nexus-goal-block-inner {
    position: relative;
    height: 100%;
}

.home-nexus-goal-block-inner:before {
    background-color: #009a4e;
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    transition: all 0.5s ease 0s;
    left: 0;
    top: 0;
    opacity: .8;
}

.home-nexus-goal-block:nth-child(2) .home-nexus-goal-block-inner:before {
    background-color: #f2e971;
}

.nexus-block-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
}

.content-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 40px;
}

.content-flex h3 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 800;
    color: #fff;
}

.content-flex span {
    font-size: 90px;
    transform: rotate(272deg);
    color: #fff;
    font-weight: 800;
}

.nexus-block-content p {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}

.home-nexus-goal-block:nth-child(2) h3,
.home-nexus-goal-block:nth-child(2) span,
.home-nexus-goal-block:nth-child(2) p {
    color: #20252d;
}

.read-btn {
    display: flex;
    background-color: #f2e971;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.read-btn img {
    transform: rotate(-90deg);
}

.home-nexus-goal-block:nth-child(2) .read-btn img {
    filter: invert(1);
}

.home-nexus-goal-block:nth-child(2) .read-btn {
    background-color: #009a4e;
}

.nexus-one-liner-main {
    background-color: #000;
    padding-top: 50px;
    padding-bottom: 70px;
}

.nexus-one-liner h2,
.about-nexus h3,
.about-nexus p {
    color: #fff;
    text-align: center;
}

.nexus-one-liner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-products-main {
    position: relative;
}

.home-products-main::before {
    position: absolute;
    content: "";
    background-image: url(../images/golden-wheat-farm-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: -1;
}

.home-nexus-goal span,
.home-nexus-goal h2,
.home-client-review span,
.home-client-review h2,
.related-products h2 {
    text-align: center;
}

.home-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -17px;
    padding-top: 20px;
}

.home-products-block {
    width: 33.33%;
    padding: 17px;
    position: relative;
}

.products-bg {
    height: 450px;
    position: relative;
    background-color: #f8f8f8;
}

.products-bg img,
.certificate-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-bg::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(34, 159, 114, 0) 70.14%, rgba(34, 159, 114, 0.8) 100%);
    pointer-events: none;
}

.products-bg img{
    background-color: #f5f5f5;
    padding:10px;
}

.products-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    width: 100%;
}

.products-content h4 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

.products-content h4 a {
    color: #fff;
}

.home-certificate-bg {
    height: 700px;
}

.home-certificate-content {
    flex-flow: unset;
    z-index: 1;
}

.home-certificate-bg::before {
    background-color: #009a4e;
    opacity: 0.8;
}

.home-certificate-left h2,
.home-certificate-left p {
    color: #fff;
}

.home-certificate-left {
    padding-right: 70px;
}

.certificate-item img {
    object-fit: scale-down;
}

.certificate-item {
    height: 500px;
}

.home-client-review-main {
    position: relative;
}

.home-client-slider {
    padding-top: 20px;
}

.home-client-item {
    padding: 3px;
    position: relative;
}

.home-client-item-inner {
    padding: 40px;
    border: 2px solid #fff;
    background-color: rgb(248, 249, 250);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    position: relative;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.home-client-slider .owl-item:nth-of-type(odd) .home-client-item-inner {
    background-color: #009a4e;
}

.home-client-slider .owl-item:nth-of-type(odd) p,
.home-client-slider .owl-item:nth-of-type(odd) h6 {
    color: #fff;
}

.home-client-slider .owl-carousel .owl-stage {
    display: flex;
}

.home-client-slider .owl-carousel .owl-item {
    display: flex;
}

.client-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #20252d;
    margin-bottom: 30px;
    margin-top: 10px;
}

.client-profile-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.client-profile-left img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #dee2e6;
}

.client-profile-right {
    padding-left: 20px;
}

.client-profile-right span {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    color: #d7c12f;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.client-profile-right h6 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #20252d;
}

.qoute {
    position: absolute;
    top: -5%;
    bottom: inherit;
    z-index: 1;
}

.qoute img {
    width: 55px !important;
    height: 44px !important;
    object-fit: cover;
}

.map {
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: inherit;
    left: 50%;
    top: 50%;
    right: inherit;
    z-index: -1;
}

.map img {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.footer-main {
    padding-top: 70px;
    /* padding-bottom: 70px; */
    background: #009a4e;
    position: relative;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}

.footer-logo {
    max-width: 250px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-block p {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-top: 25px;
    max-width: 320px;
    font-weight: 600;
}

.footer-block h6 {
    font-weight: 700;
    font-size: 25px;
    color: #F2E971;
    padding-bottom: 15px;
}

.footer-block ul li {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: #ffffff;
    transition: all 0.35s;
    padding-top: 13px;
}

.footer-block.add ul li {
    padding-left: 0;
}

.footer-block ul li a {
    color: #ffffff;
}

.footer-block.add ul li {
    display: flex;
    align-items: baseline;
}

.footer-block.add ul li i {
    margin-right: 10px;
}

.footer-copyright-main {
    /* background: #050505; */
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-copyright{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer-copyright p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

.footer-copyright p a{
    color:#f2e971;
}

.breadcrumbs-bg-main {
    position: relative;
}

.breadcrumbs-bg {
    height: 300px;
    position: relative;
}

.breadcrumbs-bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.3;
}

.breadcrumbs-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumbs-content h1 {
    font-weight: 800;
    font-size: 64px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.contact-us-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-us-left {
    width: 40%;
}

.contact-us-right {
    width: 60%;
}

.contact-us-left {
    padding-right: 50px;
}

.contact-us-block {
    background-color: #009a4e;
    padding: 20px 20px;
    margin-bottom: 20px;
}

.contact-us-block:last-child {
    margin-bottom: 0;
}

.contact-info-flex {
    display: flex;
}

.contact-info-left img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.contact-info-right {
    padding-left: 15px;
}

.contact-info-right h5 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.33;
    color: #fff;
    margin-bottom: 7px;
}

.contact-info-right p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.contact-info-right p a {
    color: #fff;
}

.contact-us-right h4,
.contact-us-left.career h3 {
    font-size: 32px;
    line-height: 1.16;
    font-weight: 800;
    color: #1c2436;
    margin-bottom: 20px;
}

.contact-form-flex {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.contact-form-field {
    width: 50%;
    padding: 10px;
}

.contact-form-field.full {
    width: 100%;
}

.contact-form-field input,
.contact-form-field textarea {
    font-size: 16px;
    color: #20252d;
    width: 100%;
    height: 56px;
    padding: 0px 15px;
    border: 1px solid #dee2e6;
    outline: none;
}

.contact-form-field textarea {
    padding: 15px;
    height: 146px;
}

.submit-btn {
    margin-top: 12px;
}

.submit-btn input {
    background-color: #f2e971;
    width: max-content;
    height: 45px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    font-size: 16px;
    font-weight: 800;
    transition: .3s;
    text-transform: uppercase;
    border: unset;
}

.contact-map {
    height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
}

.home-about-flex.about-page.reverse {
    flex-flow: row-reverse;
}

.home-about-flex.about-page.reverse .home-about-right {
    padding-left: 0;
    padding-right: 70px;
}

.home-about-flex.about-page .home-about-left.about-page {
    height: unset;
}

.home-about-flex.about-page.reverse .home-about-left.about-page {
    height: 600px;
}

.home-about-flex.about-page.np {
    flex-flow: row-reverse;
}

.home-about-right.about-page.np {
    padding-left: 0;
    padding-right: 70px;
}

.nbspl-exp-main {
    /*background-color: #009a4e;*/
    background-color: #e0e0e0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.nbspl-exp-flex {
    display: flex;
    flex-wrap: wrap;
}

.nbspl-block {
    width: 33.33%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.nbspl-block img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    filter: invert(1);
}

.nbspl-block h4 {
    font-size: 46px;
    line-height: 1.16;
    font-weight: 700;
    color: #20252d;
    text-align: center;
    margin-top: 15px;
}

.nbspl-block p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.33;
    color: #20252d;
    margin-top: 15px;
    text-align: center;
}

.home-about-main.about-page.naresh {
    display: none;
}

.contact-us-left.career,
.contact-us-right.career {
    width: 50%;
}

.contact-form-field.file {
    overflow: hidden;
    position: relative;
    resize: none;

}

.contact-form-field.file {
    border: 1px solid #dee2e6;
    height: 100px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.contact-form-field.file {
    [type="file"] {
        cursor: pointer !important;
        display: block;
        min-height: 100%;
        min-width: 100%;
        opacity: 0;
        position: absolute;
        right: 0px;
        text-align: right;
        top: 0px;
        z-index: 1;
    }
}

.contact-form-field.file span {
    font-size: 16px;
    font-weight: 300;
    color: #1C1B1F;
    text-align: center;
    display: block;
}

.contact-form-field.file p {
    font-size: 12px;
    line-height: 26px;
    font-weight: 400;
    color: #1C1B1F;
    text-align: center;
}

.contact-form-flex.career {
    margin: 0;
}

.contact-form-flex.career .contact-form-field {
    padding: 0;
    margin-bottom: 15px;
}

.products-main {
    position: relative;
}

.products-main::before {
    position: absolute;
    content: "";
    background-image: url(../images/golden-wheat-farm-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 80%;
    bottom: 0;
    left: 0;
    opacity: 0.1;
    z-index: -1;
}

.products-tab ul {
    margin-bottom: 250px !important;
    gap: 10px;
}

.products-tab .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: unset;
    border: 2px solid #009a4e;
}

.products-tab .nav-link:hover {
    border: 2px solid #009a4e;
}

.products-tab .nav-item .nav-link.active img {
    filter: grayscale(0);
}

.products-tab .nav-link {
    height: 133px;
    margin: 0 auto;
    padding: 10px;
}

.products-tab .nav-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.products-tab .nav-item img:hover {
    filter: grayscale(0);
}

.products-tab .nav-item p {
    font-size: 18px;
    font-weight: 600;
    color: #20252d;
    text-align: center;
    margin-top: 20px;
}

.products-tab .nav-item .nav-link.active p {
    font-weight: 800;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -90px -25px;
}

.products-block {
    width: 25%;
    padding: 90px 25px;
}

.products-block-inner {
    border: 1px solid rgba(0, 0, 0, 0.085);
    background: #fff;
    box-shadow: 0 3px 40.5px rgba(0, 0, 0, 0.16);
    height: 100%;
}

.product-bg {
    height: 300px;
    padding: 10px;
    overflow: hidden;
    transition: all .3s;
    margin-top: -170px;
}

.products-block:hover .product-bg img {
    transform: scale(1.1);
}

.product-bg img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    transition: all .3s;
}

.product-content {
    margin-top: 15px;
}

.product-content h4,
.product-modal .modal-header h5 {
    font-size: 24px;
    font-weight: 800;
    color: #20252d;
    margin-bottom: 15px;
    text-align: center;
}

.product-content h4 a {
    color: #20252d;
}

.product-content p {
    font-size: 17px;
    font-weight: 800;
    background-color: #009a4e;
    color: #fff;
    text-align: center;
    padding: 12px;
}

.product-content p a {
    color: #fff;
}

.nav-link.dropdown-toggle.show-more {
    display: block;
}

.product-detail-left,
.product-detail-right {
    width: 50%;
}

.product-detail-left {
    height: 300px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    background-color: #fff;
}

.product-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.product-detail-right {
    padding-left: 70px;
}

.product-detail-right h2 {
    font-size: 40px;
    font-weight: 800;
    font-family: 'Mulish', sans-serif;
    color: #20252d;
    letter-spacing: -0.02em;
    margin-bottom: 7px;
}

.product-detail-right span {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
    color: #009a4e;
    display: block;
    margin-bottom: 15px;
}

.product-detail-right ul li,
.product-info p,
.table-content-block ul li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #20252d;
    margin-bottom: 10px;
}

.product-detail-right ul li a {
    color: #009a4e;
}

.product-detail-main .container-main {

    max-width: 970px;
    margin: 0 auto;
}

.product-info {
    padding-top: 50px;
}

.product-info h4 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 800;
    color: #20252d;
    margin-bottom: 10px;
}

.product-detail-right button {
    background-color: #009a4e;
    width: max-content;
    height: 45px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    font-size: 16px;
    font-weight: 800;
    transition: .3s;
    text-transform: uppercase;
    margin-top: 20px;
}

.product-detail-right button:hover {
    color: #fff;
}

.btn-check:focus+.btn,
.btn:focus,
.btn-close:focus {
    box-shadow: unset;
}

.product-modal .modal-header {
    border-bottom: 0;
    padding-bottom: 0;
}

.product-modal .submit-btn input {
    background-color: #009a4e;
    color: #fff;
}

.product-modal .modal-header h5 {
    margin-bottom: 0;
}

.product-modal .btn-close {
    opacity: 1;
}

.related-products-main {
    padding-top: 90px;
    padding-bottom: 100px;
    position: relative;
    background-color: #f8f9fa;
}

.related-product-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-grid.related-product {
    margin: -20px -25px;
    padding-top: 160px;
}

.products-block.related-product {
    padding: 20px 25px;
}

.product-info ul {
    margin-bottom: 30px !important;
    gap: 15px;
}

.product-info .tab-content {
    border: 1px solid #f1f1f1;
    padding: 20px;
    background-color: #fff;
}

.product-info .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #f2e971;
    font-weight: 800;
    font-size: 20px;
    color: #000;
    /* border-bottom: 2px solid #009a4e; */
}

/* .product-info .nav-link:first-child{
    padding-left: 0;
} */

.product-info .nav-link {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: #20252d;
    padding: 7px 20px;
    border-radius: unset;
}

.product-info p {
    font-size: 16px;
}

.table-content-flex {
    display: flex;
    gap: 60px;
}

.table-content-block h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #20252d;
    margin-bottom: 15px;
}

.table-content-block ul li {
    font-size: 16px;
    margin-bottom: 5px;
}

.home-overview-grid {
    background-color: #f7f3e8;
    overflow: hidden;
}

.home-overview-img img {
    width: 50%;
    height: auto;
    object-fit: contain;

}

.home-overview-part {
    position: relative;
}

.home-overview-flex {
    display: flex;
    justify-content: end;
}

.home-overview-img {
    width: 50%;
    position: relative;
    z-index: 1;
}

.home-overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-overview-info {
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    background-color: #f7f3e8;
}

.home-overview-info .container-main {
    height: 100%;
    display: flex;
    justify-content: flex-start
}

.home-overview-content {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 50%;
    padding-left: 115px;
}

.home-overview-title h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 25px;
}

.home-about-main.about-main .home-about-left.about-page {
    height: 700px;
}

.about-nexus-main {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #009a4e;
}

.our-team-flex {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.our-team-block {
    width: 33.33%;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.our-team-block button.btn {
    width: 100%;
    height: 400px;
}

.our-team-block button {
    padding: 0;
}

.our-team-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-team-block h5,
.team-modal-right h5 {
    font-size: 24px;
    line-height: 40px;
    color: #000000;
    font-weight: bold;
}

.our-team-block p,
.team-modal-right span,
.team-modal-right p {
    font-size: 20px;
    line-height: 26px;
    color: #3a3a3a;
    font-weight: 400;
}

.team-modal-right span {
    padding-bottom: 15px;
    display: block;
    font-weight: 700;
}

.team-modal .modal-header {
    padding: 50px 50px 0px 0px;
    border-bottom: unset;
}

.team-modal .modal-dialog {
    max-width: 1050px;
}

.team-modal .modal-body {
    padding: 60px;
}

.team-modal-flex {
    display: flex;
}

.team-modal-left {
    width: 30%;
}

.team-modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-modal-right {
    width: 70%;
    padding-left: 50px;
}

.team-modal .modal {
    padding: 0px 15px;
}

.home-about-right.about-page.np p:last-child {
    margin-bottom: 0;
}

.about-naresh {
    margin-top: 20px;
}

.about-naresh p {
    margin-bottom: 0px;
}

.our-team-block h5 {
    margin-top: 7px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    overflow: hidden;
    width: 100%;
    color: #fff;
}

.our-team-block-inner {
    overflow: hidden;
    position: relative;
}

.our-team-block-inner::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, transparent 0, transparent 50%, #000);
    opacity: 0.8;
    pointer-events: none;
}

.lg-icon {
    background-color: unset;
    color: #fff !important;
}

.home-about-right.about-page h2 strong{
    color: #009a4e;
}

.home-about-right.about-page h2 {
    max-width: 490px;
}