@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
:root {
  --theme-font: "Source Sans 3", serif;
  --primary-color: #acdf87;
  --primary-color2: #16416e;
  --secondary-color: #8bd158;
  --secondary-color2: #fec937;
  --black-color: #000000;
  --nude-black: #272727;
  --nude-black2: #2e2e2e;
  --white-color: #ffffff;
  --light-grey: #d4d4d4;
  --green-color: #09ad74;
  --fs-11: 11px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-17: 17px;
  --fs-18: 18px;
  --fs-19: 19px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-26: 26px;
  --fs-28: 28px;
  --fs-30: 30px;
  --fs-32: 32px;
  --fs-34: 34px;
  --fs-36: 36px;
  --fs-38: 38px;
  --fs-40: 40px;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extra-bold: 800;
}
/* reset css start */
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: var(--theme-font); /* 2 */
  -webkit-text-size-adjust: 100%; /* 4 */
  -ms-text-size-adjust: 100%; /* 4 */
  -ms-overflow-style: scrollbar; /* 5 */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent; /* 6 */
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
/* Neutralize inline font styles */
[style*="font-family"] {
  font-family: var(--theme-font) !important;
}

/* IE10+ doesn't honor `<meta name="viewport">` in some cases. */
@-ms-viewport {
  width: device-width;
}
/* stylelint-disable selector-list-comma-newline-after
Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers) */
article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
/* 2. Remove default margin */
* {
  margin: 0;
}
body {
  background-color: #fcfff9;
  font-family: var(--theme-font) !important;
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}
/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}
/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  overflow-wrap: break-word;
}
/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
/* 9. Create a root stacking context */
#root,
#__next {
  isolation: isolate;
}
ol,
ul,
dl {
  margin: 0;
}
a {
  cursor: pointer;
  color: var(--coral-color);
  text-decoration: none;
  background-color: transparent; /* Remove the gray background on active links in IE 10. */
  -webkit-text-decoration-skip: objects; /* Remove gaps in links underline in iOS 8+ and Safari 8+. */
  transition: 0.3s ease all;
}
a:hover {
  text-decoration: none;
}
tbody, td, tfoot, th, thead, tr{border-width: 0;}
/* reset css end */
/* common css start */
input[type="radio"] {position: relative;}
input[type="radio"]:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  background-color: #fcfff9;
  top: -2px;
  left: -2px;
  border: 2px solid var(--primary-color);
}

input[type="radio"]:checked:after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  background-color: #90cb65;
  top: 2px;
  left: 2px;
}
.primary-heading {
  position: relative;
  color: #058d43;
  font-size: clamp(24px, 5vw, 48px);
  text-transform: uppercase;
  line-height: 60px;
  font-weight: 600;
  margin-bottom: 30px;
}
.primary-heading:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 134px;
  height: 30px;
  background: url("../images/bottom-line.png");
  background-repeat: no-repeat;
}
.txt-center.primary-heading { text-align: center; }
.txt-center.primary-heading:after { margin: auto; }
.btn {
  padding: 10px 15px;
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  border: 1px solid var(--nude-black);
  border-radius: 0;
  color: var(--nude-black);
}
.btn:hover,
.btn:focus-within,
.btn:focus-visible {
  box-shadow: none;
}
.theme-primary-btn {
  position: relative;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: var(--primary-color);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.theme-primary-btn:hover {
  background: var(--primary-color);
  color: var( --nude-black);
  border-color: var( --primary-color);
}
.theme-primary-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fcfff9;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.news-section .card .caption .theme-primary-btn:before {
  background-color: var(--secondary-color);
}
.post-card .theme-primary-btn:before {
  background: var(--secondary-color);
}
.theme-primary-btn.active:before,
.theme-primary-btn:hover:before,
.theme-primary-btn:focus:before,
.theme-primary-btn:active:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pop:hover,
.hvr-pop:focus,
.hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.1) rotate(1deg);
    transform: scale(1.1) rotate(1deg);
  }
}
.bg-sides {
  position: absolute;
  z-index: -1;
  display: inline-block;
}
.bg-before {
  top: -70px;
  width: 25%;
  left: -6%;
  transform: rotate(60deg);
  opacity: 0.3;
}
.bg-after {
  top: -70px;
  width: 25%;
  right: -6%;
  transform: rotate(-60deg);
  opacity: 0.25;
}
/* common css end */
/* inner page breadcrumb banner start */
.inner-page-banner {
  position: relative;
}
.inner-page-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100% );
  z-index: 1;
  pointer-events: none;
}
.breadcrumb-area {
  /* position: relative; */
  height: 100%;
}
.breadcrumb-container {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  left: 0;
  bottom: 50px;
  z-index: 2;
}
.breadcrumb-container .breadcrumb-nav nav {
  padding: 6px 16px;
  background-color: rgba(255 255 255 / 0.8);
}
.breadcrumb-container .breadcrumb-nav ol {
  margin: 0px;
  width: max-content;
}
.page-heading .page-title {
  font-size: clamp(var(--fs-24), 4vw, 50px);
  color: rgba(255 255 255 / 0.7);
  letter-spacing: 0.03em;
  text-align: left;
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: var(--theme-font);
}
.breadcrumb-item.active {
  color: var(--black-color);
  font-weight: var(--fw-medium);
}
.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50px);
  width: 100%;
  z-index: -1;
  display: flex;
  justify-content: space-between;
}
.owl-nav button span {
  font-size: 50px;
}
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: -2%;
}
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -2%;
}
/* inner page breadcrumb banner end */
/* switch toggle css start */
.switch {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}
.switch > span {
  position: absolute;
  top: 8px;
  pointer-events: none;
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  width: 50%;
  text-align: center;
}
input.check-toggle-round-flat:checked ~ .off {
  color: var(--nude-black);
}
input.check-toggle-round-flat:checked ~ .on {
  color: var(--nude-color);
}
.switch > span.on {
  left: 0;
  padding-left: 6px;
  color: var(--nude-black);
}
.switch > span.off {
  right: 0;
  padding-right: 4px;
  color: var(--nude-black);
}
.check-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}
.check-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input.check-toggle-round-flat + label {
  padding: 2px;
  width: 97px;
  height: 35px;
  background-color: var(--primary-color);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
input.check-toggle-round-flat + label:before,
input.check-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}
input.check-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: var(--primary-color);
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
input.check-toggle-round-flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 48px;
  background-color: #fff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: margin 0.2s;
  -moz-transition: margin 0.2s;
  -o-transition: margin 0.2s;
  transition: margin 0.2s;
}
input.check-toggle-round-flat:checked + label:after {
  margin-left: 41px;
}
/* toggle switch css end */
/* header css start */
.datepicker-days table{ border-color: white; }
.top-navigation-bar .navigation .navbar-nav .nav-item .nav-link{padding-top: 0; padding-bottom: 0;}
.site-logo .navbar-brand img{height: 50px; object-fit: contain;}
.site-header {
  background-color: var(--white-color);
  position: sticky;
  top: 0;
  z-index: 6;
  box-shadow: 0 5px 20px 4px rgba(20 20 20 / 0.3);
}
.site-header .top-navigation-bar { background: #90cb65; }
.site-header .logo-title h1 {
  margin-bottom: 0;
  font-size: var(--fs-16);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  letter-spacing: 0.01em;
}
.site-header .logo-title p {
  margin-bottom: 0;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  color: var(--secondary-color);
}
.site-logo {
  padding-top: 6px;
  max-width: 100px;
}
.site-logo .navbar-brand {
  padding: 0px;
  position: relative;
}
.site-logo .navbar-brand img{height: 50px; object-fit: contain;}
/* header css end */
/* navigation css start */
.navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  width: max-content;
  max-width: 100%;
  padding-right: 15px;
}
.navigation .navbar-nav { align-items: center; }
.navigation .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 20px 15px;
  color: var(--nude-black);
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.navigation .navbar-nav .nav-item .nav-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 94%;
  width: 0;
  height: 0;
  left: auto;
  right: auto;
  background: var(--primary-color);
  transition: ease-in 0.3s height, ease-in 0.3s width;
}
.site-header.sticky .navigation .navbar-nav .nav-item .nav-link { color: var(--nude-black); }
.navigation .navbar-nav .nav-item .nav-link:hover:after,
.navigation .navbar-nav .nav-item .nav-link.active:after {
  width: 40%;
  height: 3px;
}
.parent-menu { position: relative; }
.parent-menu > .submenu {
  z-index: 9999;
  padding-left: 0px;
  box-shadow: 0px 10px 10px rgba(0 0 0 / 10%);
  background-color: #fcfff9;
  height: auto;
  text-align: left;
}
.parent-menu > .submenu ul li { list-style: none; }
.parent-menu:hover > .submenu,
.parent-menu > .submenu .parent-submenu > .parent-menu:hover > .submenu {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
}
.parent-menu > .submenu ul li a {
  padding: 10px;
  display: block;
  font-size: var(--fs-15);
  color: var(--nude-black);
  border-bottom: 1px dashed var(--white-color);
  transition: ease 0.3s all;
}
.parent-menu:hover > .submenu ul li a { padding: 10px 14px; }
.parent-menu:hover > .submenu ul li a:hover {
  padding-left: 15px;
  background-color: var(--primary-color);
  color: var(--nude-black);
}
.parent-menu > .submenu .parent-submenu > li .sub-submenu {
  display: none;
  background-color: #e4f2cc;
  padding: 0;
  transition: ease .3s all;
}
html body .parent-menu > .submenu .parent-submenu > .parent-menu> .submenu { left: 100%; top: 0; }
/* navigation css end */
.hero-banner { position: relative; }
.hero-banner:before {
  position: absolute;
  top: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    70.45% 90.4% at 50% 51.67%,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.25) 59.21%
  );
  z-index: 1;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.page-video img, 
.page-video video,
.hero-banner img,
.hero-banner video {
  position: absolute;
  top: 0;
  right: 0;
  margin-left: auto;
  margin-top: 0;
  margin-right: auto;
}
.carousel-item.active img {
  animation: burns 20s ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@-webkit-keyframes burns {
  0% {
    transform: scale(1);
    transform-origin: bottom left;
  }
  50% {
    transform: scale(1.3) rotate(-2deg);
    transform-origin: center center;
  }
  100% {
    transform: scale(1);
    transform-origin: top right;
  }
}
.carousel-caption {
  bottom: 8%;
  left: 5%;
  right: unset;
  text-align: left;
  z-index: 2;
}
.carousel-caption .banner-heading {
  position: relative;
  font-size: clamp(24px, 3.5vw ,46px);
  color: var(--secondary-color2);
  font-weight: var(--fw-bold);
  margin-bottom: 24px;
}
.carousel-caption p {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--white-color);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.carousel-caption .banner-heading:after {
  position: absolute;
  content: "";
  display: block;
  width: 40%;
  height: 8px;
  background-color: var(--secondary-color2);
}
.carousel-caption .banner-subheading {
  font-size: 40px;
}

.carousel-control-next,
.carousel-control-prev {
  width: 30%;
  z-index: 3;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 8rem;
  height: 8rem;
  opacity: 0;
  transition: ease 0.3s all;
}
.carousel-control-next:hover .carousel-control-next-icon,
.carousel-control-prev:hover .carousel-control-prev-icon {
  opacity: 1;
}
.carousel-indicators {
  margin-bottom: 2rem;
}
/* .carousel-indicators [data-bs-target] {
  width: 30px;
  height: 5px;
  margin-right: 6px;
  margin-left: 6px;
} */
/* Progress bar inside the indicators */
.carousel-indicators button {
  position: relative;
  flex-grow: 1;
  height: 4px !important;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 2px;
  overflow: hidden;
}
.carousel-indicators button .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary-color);
  transition: width 0.5s ease;
}
/* solar */
.solar-energy-section {
  padding: 15px 0;
  overflow-x: hidden;
  background: linear-gradient(45deg, #bbe19f 50%, var(--primary-color) 10%);
}
.solar-energy-section .content-box h3 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 0px;
  font-weight: var(--fw-extra-bold);
  color: #687c5a;
}
.solar-energy-section .content-box span {
  font-size: clamp(var(--fs-18), 3vw, var(--fs-24));
  font-weight: var(--fw-semibold);
  color: var(--nude-black);
}
/* about section css start */
.about-section {
  padding: 0px;
  overflow-x: hidden;
}
.about-section p {
  font-size: var(--fs-18);
  text-align: justify;
  line-height: 32px;
}
/* about section css end */
/* vission section css start */
.tab-section {
  padding: 40px 0 0px;
  background-color: #f2fbeb;
  overflow-x: hidden;
}
.tab-area .nav-tabs .nav-item {
  flex: 1;
}
.tab-area .nav-tabs .nav-item .nav-link {
  padding: 1rem 0.875rem;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  border-bottom: 3px solid var(--primary-color);
  font-size: var(--fs-22);
  font-weight: var(--fw-medium);
  color: var(--nude-black);
  transition: ease-in-out 0.3s all;
}
.tab-area .nav-tabs .nav-item .nav-link:hover {
  background-color: var(--primary-color);
}
.tab-area .nav-tabs .nav-item .nav-link.active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.tab-area .tab-content .tab-pane {
  padding: 30px;
}
.tab-section .content-area li,
.tab-section .content-area p {
  color: var(--nude-black);
  font-size: var(--fs-18);
  text-align: justify;
  line-height: 32px;
  letter-spacing: 0.02em;
}
.tab-area .tab-content .content-area .card {
  background-color: #e8f3e0;
  border-radius: 0;
}
/* comments */
.vission-flex {
  display: flex;
  height: 100%;
}
.vission-flex .vission {
  flex: 1;
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: var(--white-color);
  transition: flex 0.4s ease;
  position: relative;
  height: 100%;
  min-height: 512px;
}
.vission-flex .vission .overlay {
  background-color: rgb(20 20 20 / 60%);
  width: 100%;
  height: 100%;
  position: absolute;
  transition: background-color 0.8s ease;
}
.vission-flex .vission .primary-heading {
  color: var(--white-color);
}
.whatdo-section .card .card-body h4 .vission:hover .icon img {
  transform: scale(1.5) translateY(-20px);
  transition: ease 0.3s all;
}
.vission .content {
  padding: 30px;
  z-index: 2;
}
.vission:hover {
  flex: 2;
}
.vission:hover .overlay {
  background-color: rgba(147, 194, 125, 0.9);
}
.vission .hover-content {
  display: none;
}
.vission:hover .hover-content {
  display: block;
}
#vission {
  background-image: url("../images/mission.jpg");
}
#mission {
  background-image: url("../images/vission.jpg");
}
#corevalues {
  background-image: url("../images/corevalues.jpg");
}
/* vission section css end */
/* who we are css start */
.whowe-section {
  padding: 0px 0 40px;
  overflow-x: hidden;
}
.whowe-section .content-area p {
  padding-top: 15px;
  color: var(--nude-black);
  font-size: var(--fs-18);
  text-align: justify;
  line-height: 32px;
  letter-spacing: 0.03em;
}
#what-we-do .img-area {
  box-shadow: 0px 10px 30px 5px rgba(0 0 0 / 0.07);
  overflow: hidden;
  border-radius: 6px;
}
/* who we are css end */
/* what do css start */
#whatdo-section .primary-heading::after {
  margin: auto;
  overflow-x: hidden;
}
.whatdo-section .heading p {
  font-size: var(--fs-18);
  color: var(--nude-black);
  line-height: 32px;
}
.whatdo-section .owl-carousel .owl-stage-outer {
  padding: 30px 0px;
}
.post-card {
  height: 100%;
  min-height: 360px;
  /* background: linear-gradient( 120deg, var(--primary-color) 40%, var(--secondary-color) ); */
  background-color: rgb(252, 255, 249);
  border-color: #e1e1e1;
  border-radius: 0px;
  box-shadow: -5px 0px 10px 0px rgba(12, 1, 71, 0.12);
  transition: ease 0.3s all;
}
html body .post-card img {
  padding: 15px;
  height: 130px;
  width: auto !important;
  display: block;
  margin: 0 auto;
}
.post-card:hover {
  transform: scale(1.03);
}
.post-card .card-body h4 {
  margin-bottom: 15px;
  color: var(--nude-black);
  font-size: clamp(16px, 3vw, 24px);
  font-weight: var(--fw-semibold);
}
.post-card .card-body p {
  font-size: var(--fs-16);
  line-height: 26px;
  text-align: left;
}
.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50px);
  width: 100%;
  z-index: -1;
  display: flex;
  justify-content: space-between;
}
#whatdo-section {
  position: relative;
  overflow-x: hidden;
}
.owl-nav button span {
  font-size: 50px;
}
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: -2%;
}
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -2%;
}
.post-card:hover {
  transform: scale(0.02em);
}
.post-card .card-body {
  overflow: hidden;
  position: relative;
  padding: 0;
}
.post-card .card-body .caption {
  position: absolute;
  left: 0;
  padding: 20px 20px 0;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  );
  bottom: 0%;
  height: 100%;
  max-height: 120px;
  z-index: 5;
}
.post-card .card-body .caption:before {
  content: "";
  width: 100%;
  border-bottom: solid 30px var(--primary-color);
  border-left: solid 400px transparent;
  border-top: solid 30px transparent;
  display: block;
  position: absolute;
  top: -60px;
  z-index: 1;
  right: 0;
}
.post-card .card-body .caption h4 {
  color: var(--nude-black);
  font-size: var(--fs-20);
  line-height: 26px;
}
.post-card .card-body .caption p {
  opacity: 0;
  color: var(--nude-black);
  font-size: var(--fs-14);
  line-height: 26px;
}
.post-card .card-body .caption .btn {
  opacity: 0;
  border-color: var(--nude-black);
  color: var(--nude-black);
}
.post-card .card-body:hover .caption {
  position: static;
  background: var(--secondary-color);
  max-height: 100%;
}
.post-card .card-body:hover .caption p { opacity: 1; }
.post-card .card-body .caption .btn:hover {
  border-color: var(--nude-black);
  background: var(--nude-black);
  color: var(--white-color);
}
/* what do css end */

/* news section css start */
.news-section {
  padding: 40px 0px;
  overflow-x: hidden;
}
.post-card:hover {
  transform: scale(0.02em);
}
.post-card .card-body {
  overflow: hidden;
  position: relative;
  padding: 0;
}
.post-card .card-body .caption {
  position: absolute;
  left: 0;
  padding: 20px 20px 0;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  );
  bottom: 0%;
  width: 100%;
  height: 100%;
  max-height: 205px;
  transition: ease 0.1s all;
}
.post-card .card-body h4 {
  font-size: var(--fs-20);
  line-height: 26px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 48px;
}
.post-card .card-body .caption .post-info {
  margin-bottom: 8px;
}
.post-card .card-body .caption .post-info span {
  font-size: var(--fs-16);
}
.post-card .card-body .caption:before {
  content: "";
  width: 100%;
  border-bottom: solid 30px var(--primary-color);
  border-left: solid 400px transparent;
  border-top: solid 30px transparent;
  display: block;
  position: absolute;
  top: -60px;
  z-index: 1;
  right: 0;
}
.post-card .card-body .caption h4 {
  color: var(--nude-black);
  font-size: var(--fs-20);
  line-height: 26px;
}
.post-card .card-body .caption p {
  opacity: 1;
  color: var(--nude-black);
  font-size: var(--fs-16);
  line-height: 26px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.post-card .card-body:hover .caption {
  position: absolute;
  background: var(--secondary-color);
  bottom: 0;
  max-height: 100%;
}
.post-card .card-body:hover .caption .btn{opacity: 1;}
.post-card .card-body:hover .caption p {
  opacity: 1;
}
.post-card .card-body .caption .btn:hover {
  border-color: var(--nude-black);
  background: var(--nude-black);
  color: var(--white-color);
}
/* impact css start */
.impact-section {
  overflow-x: hidden;
  position: relative;
  padding: 80px 0;
  background: url("../images/count-section.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.impact-section .heading {
  padding-bottom: 50px;
  text-align: center;
  position: relative;
  z-index: 5;
}
.impact-section .heading .primary-heading:after {
  margin-left: auto;
  margin-right: auto;
}
.impact-section::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(8, 39, 3, 0.6);
}
.impact-section .count-icon span {
  width: 85px;
  height: 85px;
  line-height: 85px;
  display: inline-block;
  background: var(--primary-color);
  border-radius: 50%;
}
.impact-section #counter {
  position: relative;
  z-index: 5;
}
.impact-section #counter h5 {
  font-size: var(--fs-18);
  color: var(--white-color);
}
.impact-section #counter span {
  color: var(--white-color);
  font-size: var(--fs-20);
  font-weight: var(--fw-semibold);
}
/* impact css end */

/* inner page content css start */
/* board of director css start */
.post-content-section {
  padding: 60px 0px;
}
.innerpage-content-section {
  padding: 60px 0;
  overflow-x: hidden;
}
.contentMainBlock {
  background-color: var(--white-color);
  padding: 15px;
  min-height: auto;
  box-shadow: 5px 0px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  z-index: 1;
  margin: 15px 0 15px 0;
  position: relative;
  min-height: 390px;
  text-align: center;
}
.contentMainBlock:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0;
  transform: translate(10px);
  width: calc(100% - 20px);
  border-left: 5px solid var(--primary-color);
  z-index: -1;
  border-right: 5px solid var(--primary-color);
  transition-duration: 0.4s;
}
.contentMainBlock::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0px;
  bottom: 0px;
  height: calc(100% - 20px);
  transform: translateY(-10px);
  width: 0;
  border-top: 5px solid var(--primary-color);
  border-bottom: 5px solid var(--primary-color);
  transition-duration: 0.5s;
}
.contentMainBlock:hover:before {
  height: calc(100% - 20px);
  transform: translate(10px, -10px);
}
.contentMainBlock:hover:after {
  width: calc(100% - 20px);
  transform: translate(10px, -10px);
}
.teamImage {
  background: lightgrey;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 100%;
  width: 100%;
}
.contentMainBlock .teamImage img {
  box-shadow: none;
  position: absolute;
  height: 100%;
  min-height: 340px;
  width: 100%;
  top: 0;
  right: 0;
  margin-left: auto;
  margin-top: 0;
  margin-right: auto;
  object-fit: cover;
}
.contentMainBlock .teamImage img {
  box-shadow: none;
}
.team-caption {
  height: 85px;
}
.innerPageContent p {
  color: var(--nude-black);
}
.teamName {
  text-align: center;
  color: var(--primary-color2);
  font-size: 1.1em;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  margin: 10px 0 0 0;
  white-space: wrap;
  cursor: pointer;
  transition: ease 0.3s all;
}
.teamName a:hover {
  color: var(--primary-color);
}
.teamDes {
  font-size: 0.995em;
  text-align: center;
  margin: 0 0;
}
/* board of directores css end */

/* about us page css start */
.whowe-section {
  padding: 40px 0;
  overflow-x: hidden;
}
.page-content p {
  font-size: var(--fs-16);
  color: var(--nude-black);
  margin-bottom: 20px;
  line-height: 26px;
  text-align: justify;
}
.page-content h4 {
  font-size: var(--fs-20);
  color: var(--nude-black);
  line-height: 26px;
  font-weight: var(--fw-semibold);
}
.page-content img {
  display: block;
  margin: 0 auto 30px auto;
}
.table thead tr th {
  background-color:var(--primary-color) !important;
  color: var(--nude-black);
}
.table > :not(caption) > * > * {
  background-color: #ffffffc9;
}
.page-content .table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: rgb(172 219 138 / 25%);
}
/* about us page css end */

/* financial page css start */
.finance-section {
  padding: 60px 0;
  overflow-x: hidden;
}
.sidebar-title {
  padding: 10px 10px;
  background-color: var(--primary-color);
  color: var(--nude-black);
}
.page-sidebar ul {
  padding-left: 0;
}
.page-sidebar ul li {
  list-style: none;
  border-bottom: 1px solid var(--primary-color);
}
.page-sidebar ul li a {
  display: block;
  padding: 10px 8px;
  font-size: var(--fs-15);
  background-color: #d2efbe;
  color: var(--nude-black);
  transition: ease 0.3s all;
}
.page-sidebar ul li .active,
.page-sidebar ul li a:hover {
  background-color: var(--primary-color);
  color: var(--nude-black);
}
.reports { padding-top: 30px; }
.reports .nav-tabs {
  border-bottom: 0px;
  margin-bottom: 15px;
  background: #d2efbe;
}
.reports .nav-tabs .nav-item .nav-link {
  border: 0;
  border-radius: 0;
  padding: 0.675rem 2rem;
  font-size: var(--fs-15);
  font-weight: var(--fw-medium);
  color: var(--nude-black);
}
.reports .tab-content .tab-pane { border: 0; }
.reports .nav-tabs .nav-item .nav-link.active { background-color: var(--primary-color); }
.reports .download-list {
  margin-bottom: 10px;
  background-color: var(--white-color);
  border: 1px solid #d4d4d4;
  box-shadow: -3px 2px 15px 1px rgba(20 20 20 / 0.1);
}
.reports .download-list a {
  display: flex;
  transition: ease-in 0.3s all;
}
.reports .download-list a:hover {
  color: var(--black-color);
  background-color: #f0fae9;
}
.download-list .card-icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  line-height: 70px;
  text-align: center;
  font-size: 200%;
  background-color: var(--primary-color);
  color: var(--nude-black);
  margin-right: 10px;
}
.download-list a > p {
  padding-right: 15px;
  align-self: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.download-list a > p {
  margin-bottom: 0px;
  font-size: var(--fs-16);
  text-align: justify;
}
/* financial page css start */

/* gallery page css start */
.gallery-section {
  padding: 80px 0;
  overflow-x: hidden;
}
.gallery-section .primary-heading {
  text-align: center;
}
.gallery-section .primary-heading::after {
  content: "";
  margin: auto;
}
.gallery-section .heading {
  margin-bottom: 60px;
}
.gallery-section .primary-heading2 {
  text-align: center;
}
.gallery-section .primary-heading2::after {
  content: "";
  margin: auto;
}
.gallery-section .gallery-menu .controls .mixitup-control-active {
  color: var(--nude-black);
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.gallery-section .gallery-item .mix {
  position: relative;
}
.gallery-section .gallery-menu .controls {
  text-align: center;
}
.gallery-section .gallery-item .portfolio-overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  transition: ease-in 0.2s all;
}
.gallery-section .gallery-item .mix:hover .portfolio-overlay {
  padding: 10px;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.gallery-section .gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-section .gallery-item a {
  color: var(--nude-black);
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
  line-height: 26px;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.gallery-section .gallery-item .mix .total-count {
  display: block;
  font-size: var(--fs-24);
  font-weight: var(--fw-bold);
  color: var(--nude-black);
  opacity: 1;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: rgba(255 255 255 / 0.5);
  margin: auto auto 10px;
  border-radius: 50%;
}
.gallery-section .gallery-item .mix img {
  height: 180px;
  transition: 300ms;
  overflow: hidden;
  display: inline-block;
  object-fit: cover;
}
.gallery-menu .controls .control {
  border-color: #e1e1e1;
}
.gallery-section .gallery-item .portfolio-overlay .total-count,
.gallery-section .gallery-item .portfolio-overlay .caption-title {
  opacity: 0;
}
.gallery-section .gallery-item .portfolio-overlay .total-count,
.gallery-section .gallery-item .mix:hover .portfolio-overlay .caption-title {
  opacity: 1;
}
/* gallery page css end */

/* csr page css start */
.csr-heading {
  position: relative;
  color: #058d43;
  font-size: clamp(24px, 5vw, 42px);
  text-transform: uppercase;
  line-height: 60px;
  font-weight: 700;
}
.total-ben {
  font-size: 56px;
  font-weight: 600;
  color: #90cb65;
}
.csr-numbers {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.csr-numbers .csr-count {
  width: 80px;
  flex-shrink: 0;
  font-size: 42px;
  color: var(--secondary-color);
  font-weight: 600;
}
.csr-numbers .csr-title {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--nude-black);
}
.aspiration-section {
  background: url('../images/bg-csr.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.csr-item p { line-height: normal; margin: 0; }
.csr-item .state, .csr-item .project{
  margin-bottom: 0px;
  line-height: 20px;
  font-size: 18px;
  line-height: 26px;
}
.csr-aspirational{
  gap: 30px;
  justify-content: center;
  padding: 30px 10px;
  background-color: #fcfff9;
  box-shadow: -9px 10px 0px 1px rgb(139 209 101 / 0.2);
}
.aspiration-section h3 {font-weight: 700;}
.csr-state-numbers {
  position: relative;
  min-height: 220px;
  padding: 1rem;
  background-color: #e3f3c3;
}
.csr-state-numbers .total-amount {
  font-size: clamp(26px, 4vw, 80px);
  font-weight: 600;
  line-height: normal;
  color: #058d43;
}
.state-name {
  position: absolute;
  bottom: 0;
  border-top: 1px solid var(--nude-black);
  padding: 0.625rem 1rem;
  width: 100%;
  left: 0;
}
.state-name .csr-state {
  font-size: clamp(18px, 3vw, 22px);
  line-height: normal;
  font-weight: 500;
  color: var(--nude-black);
}
.highligts-section { padding: 50px 0 70px; }
.highlight-items {
  border: 1px solid #d4d4d4;
  padding: 1rem;
  box-shadow: -20px 20px 0px -10px rgba(139 209 101 / 0.2);
}
.highlight-image {
  width: 50%;
  flex-shrink: 0;
}
.highlight-content {
  padding: 1rem 0rem 1rem 2rem;
}
.highlight-text {
  font-size: 20px;
  line-height: 32px;
}
#highlights .item{padding: 24px;}
.csr-state-numbers .csr-item p {
  line-height: normal;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #058d43d1;
}
.owl-dots {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  background: #90cb657a;
  transition: ease .3s width;
  border-radius: 10px;
}
.owl-dots .owl-dot.active span {
  width: 50px;
  background: #90cb65;
}
/* csr page css end */
/* tender page css start */
.dt-container .dt-layout-row {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
}
table.dataTable th, table.dataTable td {
  text-align: center !important;
  vertical-align: middle;
  font-size: 17px;
  padding: 1em;
}
table.dataTable td .view-detail{color: var(--green-color); font-weight: var(--fw-medium); text-decoration: underline}
.collapse-table {
  box-shadow: 5px 5px 10px 2px rgba(0 0 0 / 0.1);
  border: 1px solid #d4d4d4;
  border-radius: 10px;
}
html body .dataTable tr[data-dt-row] > td { padding: 0px; }
.table tr[data-dt-row] .collapse-table thead tr th {
  background-color: #90cb65 !important;
}
.dt-paging > nav > .dt-paging-button {
  border: 1px solid var(--nude-black);
  background-color: transparent;
  padding: 0.215em 0.75em;
  font-size: 17px;
  transition: ease .3s all;
}
.dt-paging > nav > .dt-paging-button:not(:last-child) {
  margin-right: 10px;
}
.dt-paging > nav > .dt-paging-button:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.dt-paging > nav > .dt-paging-button.current {
  background-color: var(--primary-color);
}
.dt-paging > nav > .dt-paging-button.disabled {
  background-color: #efefef;
}
/* tender page css end */

/* multistep form css start */
.formbold-main-wrapper { display: flex; align-items: center; justify-content: center; }
.formbold-form-wrapper {
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
  background: white;
}
.formbold-steps { padding-bottom: 18px; margin-bottom: 35px; border-bottom: 1px solid #DDE3EC; }
.formbold-steps ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 40px;
}
.formbold-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #536387;
}
.formbold-steps li span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DDE3EC;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #536387;
}
.formbold-steps li.active { color: #07074D;; }
.formbold-steps li.active span { background: var(--primary-color); color: var(--white-color); }
.formbold-input-flex { display: flex; gap: 20px; margin-bottom: 22px; }
.formbold-form-input {
  width: 100%;
  padding: 13px 22px;
  border-radius: 5px;
  border: 1px solid #DDE3EC;
  background: var(--white-color);
  font-weight: 500;
  font-size: 16px;
  color: #536387;
  outline: none;
  resize: none;
}
.formbold-form-input:focus { border-color: var(--primary-color); box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05); }
.formbold-form-label {
  color: #07074D;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}
.formbold-form-confirm { border-bottom: 1px solid #DDE3EC; padding-bottom: 35px; }
.formbold-form-confirm p {
  font-size: 16px;
  line-height: 24px;
  color: #536387;
  margin-bottom: 22px;
  width: 75%;
}
.formbold-confirm-btn.active {
  background: var(--primary-color);
  color: var(--white-color);
}
.formbold-form-step { display: none; }
.formbold-form-step.active { display: block; }
.formbold-form-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 25px;
}
.formbold-back-btn {
  cursor: pointer;
  background: #FFFFFF;
  border: none;
  color: #07074D;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  display: none;
}
.formbold-back-btn.active { display: block; }
.formbold-btn:hover { box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05); }
/* multistep form css end */

/* inner page content css end */
.footer {
  padding: 60px 0;
  background: linear-gradient(45deg, #acdf87, #acdf87);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-logo img {
  transition: ease 0.3s all;
}
.footer-logo img:hover {
  transform: scale(1.1);
}
.footer .footer-list {
  padding-left: 0px;
}
.footer .footer-list li {
  list-style: none;
  margin-bottom: 10px;
}
.org-address .footer-list li {
  font-size: var(--fs-18);
}
.footer-navigation .footer-links {
  gap: 20px;
}
.org-address .footer-list img {
  filter: invert(0.8) brightness(0.5);
}
.footer .social-media a {
  font-size: var(--fs-34);
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 1px solid var(--nude-black);
  color: var(--nude-black);
  transition: ease 0.5s all;
}
.footer .social-media a:hover {
  background-color: var(--primary-color);
  color: var(--nude-black);
  border-color: var(--primary-color);
  transform: rotate(360deg) scale(0.9);
}
.footer .footer-list li {
  list-style: none;
  margin-bottom: 6px;
  position: relative;
}
.footer .footer-links li:before{
  content: '\f138';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
  color: var(--primary-color2);
}
.footer .footer-list li a {
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.03em;
  color: var(--dune-black);
  transition: ease 0.3s all;
}
.footer .footer-list li a:hover {
  /* color: var(--white-color); */
  opacity: 0.8;
}
.footer .social-media a:not(:last-child) {
  margin-right: 10px;
}

/* footer css end */
/* back top button css start */
#back-top {
  display: inline-block;
  background-color: var(--nude-black);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 0px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#back-top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.875em;
  line-height: 40px;
  color: var(--white-color);
}
#back-top:hover {
  cursor: pointer;
  background-color: var(--primary-color);
}
#back-top:active {
  background-color: var(--primary-color);
}
#back-top.show {
  opacity: 1;
  visibility: visible;
}
/* back top button css end */


#tender-list td:nth-child(3) {
  word-break: break-word;
}
