@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #262626;
}


/* webkit-scrollbar css */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #296243;
}

::-webkit-scrollbar {
  width: 0px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #555;
}

/* webkit-scrollbar css end */




/*===== Preloader css Style =====*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #C4E8D5;
  z-index: 999999;
}

.preloader .rubix-cube {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.preloader .rubix-cube img {
  width: 200px;
}

/*===== Preloader css end Style =====*/



/* #Navigation
================================================== */

.start-header {
  opacity: 1;
  transform: translateY(0);
  padding: 10px 0;
  box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  padding: 10px 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
  height: 60px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navigation-wrap {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: #fff !important;
}

.bg-light .navbar {
  padding: 0;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid #000;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.navbar-light .nav-link {
  color: #212121 !important;
  font-weight: 500;
  transition: all 200ms linear;
}

.navbar-light .nav-link:hover {
  color: #296243 !important;
}

.navbar-light .nav-link {
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
}

.navbar-light .navbar-nav .nav-link.active {
  color: #296243 !important;
  border-bottom: 2px solid #296243;
  font-weight: 500;
}

.navbar-light .nav-item:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #296243;
  opacity: 0;
  transition: all 200ms linear;
}

.navbar-light .nav-item:hover:after {
  bottom: 0;
  opacity: 1;
}

.navbar-light .nav-item.active:hover:after {
  opacity: 0;
}

.navbar-light .nav-item {
  position: relative;
  transition: all 200ms linear;
}


.navbar-light .nav-item .dropdown-menu {
  /* transform: translate3d(0px, 10px, 0); */
  transform: translate3d(-30px, 0px, 0);
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  display: block;
  padding: 0;
  margin: 0;
  transition: all 200ms linear;
}

.navbar-light .nav-item.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 999px;
  /* transform: translate3d(0, 0px, 0); */
  transform: translate3d(-30px, 0px, 0);
}

.navbar-light .dropdown-menu {
  padding: 10px !important;
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: #212121;
  background-color: #fcfaff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  transition: all 200ms linear;
  z-index: 99999;
}

.navbar-light .dropdown-toggle::after {
  display: none;
}

.navbar-light .dropdown-item {
  /* padding: 3px 15px; */
  padding: 3px 7px;
  color: #212121;
  border-radius: 2px;
  transition: all 200ms linear;
}

.navbar-light .dropdown-item:hover,
.navbar-light .dropdown-item:focus {
  color: #fff;
  background-color: #296243;
}


.login-sec .login-btn {
  background-color: #296243;
  border-radius: 10px;
  color: #fff !important;
  padding: 6px 44px !important;
  font-size: 12px;
}


.login-sec .login-btn:hover {
  color: #fff !important;
}

.login-sec .dropdown-menu {
  min-width: auto;
}

.login-sec .dropdown-menu .dropdown-item:hover {
  background-color: #296243;
  color: #fff;
}

/* #Navigation end
================================================== */



/* new Navigation css */


.updated-navigation-sec nav {
  /* position: fixed;
  top: 0;
  left: 0;
  width: 100%; */
  /* height: 100%; */
  /* height: 70px; */
  /* background: #fff; */
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
  z-index: 99999;
}

.updated-navigation-sec nav .navbar {
  height: 100%;
  /* max-width: 1250px; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* padding: 0 50px; */
  padding: 0;
}

.updated-navigation-sec .navbar .logo {
  display: flex;
  align-items: center;
}

.updated-navigation-sec .navbar .logo a {
  font-size: 30px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

.updated-navigation-sec nav .navbar .nav-links {
  /* line-height: 70px; */
  line-height: 62px;
  /* height: 100%; */
}

.updated-navigation-sec nav .navbar .links {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
}

.updated-navigation-sec nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
.updated-navigation-sec nav .navbar .links li.mobile-show{
    display: none;
}

.updated-navigation-sec nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #222;
  font-size: 16px;
  font-weight: 500;
}

.updated-navigation-sec nav .navbar .links li a:hover,
.updated-navigation-sec nav .navbar .links li:hover .arrow {
  color: #23684b;
}

.updated-navigation-sec .links li:hover .htmlcss-arrow {
  transform: rotate(180deg);
}

/* .updated-navigation-sec .links li:hover .htmlcss-arrow,
.updated-navigation-sec .links li:hover .js-arrow{
  transform: rotate(180deg);
  } */


.updated-navigation-sec nav .navbar .links li .arrow {
  /* height: 100%; */
  width: 22px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  color: #222;
  transition: all 0.3s ease;
  cursor: pointer;
}

.updated-navigation-sec nav .navbar .links li .sub-menu {
  position: absolute;
  top: 58px;
  left: 0;
  line-height: 40px;
  background: #f6f6f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  padding-left: 0;
  border-top: 2px solid #23684b;
  border-radius: 4px 4px 4px 4px;
}

.updated-navigation-sec nav .navbar .links li:hover .htmlCss-sub-menu,
.updated-navigation-sec nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.updated-navigation-sec .navbar .links li .sub-menu li {
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
}

.updated-navigation-sec .navbar .links li .sub-menu li:hover {
  background-color: #23684b;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 0 0 4px 4px;
}

.updated-navigation-sec .navbar .links li .sub-menu li a:hover {
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.updated-navigation-sec .navbar .links li .sub-menu a {
  color: #222;
  font-size: 15px;
  font-weight: 500;
  display: block;
}

.updated-navigation-sec .navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.updated-navigation-sec .navbar .links li .htmlCss-more-sub-menu {
  /* line-height: 40px; */
}

.updated-navigation-sec .navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}

.updated-navigation-sec .links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}

.updated-navigation-sec .navbar .nav-links .sidebar-logo {
  display: none;
}

.updated-navigation-sec .navbar .bx-menu {
  display: none;
}






@media (max-width:920px) {
  .updated-navigation-sec nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  .updated-navigation-sec nav .navbar .logo a {
    font-size: 27px;
  }

  .updated-navigation-sec nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }

  .updated-navigation-sec nav .navbar .links li a {
    font-size: 15px;
  }
}

@media (max-width:800px) {
  .updated-navigation-sec nav .navbar .links li.mobile-show{
    display: block;
  }

  .updated-navigation-sec nav .navbar .nav-links {
    height: 100vh;
    background: #12ACDF;
    background: linear-gradient(180deg, rgba(18, 172, 223, 1) 0%, rgba(112, 165, 69, 1) 30%);
            /* background: #296243; */
  }

  .updated-navigation-sec .navbar .nav-links .sidebar-logo .bx-x{
        background: #296243;
        border-radius: 4px;
        box-shadow: 0 3px 7px 0px #3c3c3c;
        color: #fff;
        position: relative;
        /* top: -25px; */
}

  .updated-navigation-sec .navbar .bx-menu {
    display: block;
    cursor: pointer;
  }

  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    /* max-width: 270px; */
    max-width: 300px;
    width: 100%;
    background: #296243;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .updated-navigation-sec .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-brand img {
    height: 60px;
  }

  .updated-navigation-sec .sidebar-logo .logo-name {
    font-size: 25px;
    color: #222;
    display: flex;
    align-items: center;
  }

  .updated-navigation-sec .sidebar-logo i,
  .updated-navigation-sec .navbar .bx-menu {
    font-size: 25px;
    color: #222;
    cursor: pointer;
  }

  .updated-navigation-sec nav .navbar .links {
    display: block;
    margin-top: 20px;
  }

  .updated-navigation-sec nav .navbar .links li .arrow {
    line-height: 40px;
    cursor: pointer;
  }

  .updated-navigation-sec nav .navbar .links li {
    display: block;
  }

  .updated-navigation-sec nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }

  .updated-navigation-sec nav .navbar .links li .sub-menu li {
    border-bottom: none;

  }

  .updated-navigation-sec .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }

  .updated-navigation-sec .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .updated-navigation-sec .links li:hover .htmlcss-arrow,
  .updated-navigation-sec .links li:hover .js-arrow {
    transform: rotate(0deg);
  }

  .updated-navigation-sec .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }

  .updated-navigation-sec .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .updated-navigation-sec .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }

  .updated-navigation-sec nav .navbar .links li:hover .htmlCss-sub-menu,
  .updated-navigation-sec nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }

  .updated-navigation-sec .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .updated-navigation-sec .navbar .nav-links.show3 .links .js-sub-menu,
  .updated-navigation-sec .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }

  .updated-navigation-sec .navbar .nav-links.show1 .links .htmlcss-arrow,
  .updated-navigation-sec .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }

  .updated-navigation-sec .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }

  .updated-navigation-sec nav .navbar .links li a:hover,
  .updated-navigation-sec nav .navbar .links li:hover .arrow {
    /* color: #222; */
      color: #fff;
  }

  .updated-navigation-sec nav .navbar .links li a {
    color: #ffffff;
  }

  .updated-navigation-sec nav .navbar .links li .arrow {
    color: #ffffff;
  }
}



@media (max-width:370px) {
  .updated-navigation-sec nav .navbar .nav-links {
    max-width: 100%;
  }

  .updated-navigation-sec nav .navbar .links li a {
    color: #fff;
  }

  .updated-navigation-sec nav .navbar .links li .arrow {
    color: #fff;
  }


}


/* new Navigation css end */






/* hero slider css */
.hero-slider {
  height: 100vh;
  z-index: 9999;
  background: #000;
  position: relative;
}

.hero-slider {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  color: #fff;
}

.hero-slider .parent-slide {
  padding: 15px;
}

.hero-slider .slick-list {
  padding: 0 !important;
}

.hero-slider img {
  display: block;
  margin: auto;
}

.hero-slider .slick-slide img {
  height: 100vh;
  width: 100%;
}

.hero-slider .slick-prev,
.slick-next {
  display: none !important;
}

/* hero slider css end */




/* hero-sec-info css */
.hero-sec-info {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  height: 100%;
  /* background-color: #082D1633; */
  background-color: #082d1640;
}


.hero-sec-info .row {
  height: 100vh;
}

.hero-sec-info .hero-content .hero-content-info {}

.hero-sec-info .hero-content {
  /* display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 155px; */
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-sec-info .hero-content .logo-sec {
  text-align: left;
  width: 100%;
}

.hero-sec-info .hero-content .logo-sec img {
  max-width: 380px;
  min-width: 200px;
  width: 100%;
}

.hero-sec-info .hero-content .info-sec {}

.hero-sec-info .hero-content .info-sec h4 {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin: 10px 0 10px;
  line-height: 1.4;
}

.hero-sec-info .hero-content .info-sec a.discover-btn {
  background-color: #296243;
  border-radius: 30px;
  color: #fff;
  /* padding: 10px 40px; */
  padding: 6px 40px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  margin-top: 15px;
  display: inline-block;
  box-shadow: 0px 2px 4px 0px #000;
  letter-spacing: 0.4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.hero-sec-info .hero-content .info-sec a.discover-btn:hover {
  box-shadow: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* hero-sec-info css end */



/* ========= service box css =========== */

.hero-sec-info .grid {
  /* padding-bottom: 5.4%; */
  padding-bottom: 0;
  height: 100%;
  display: flex;
  /* align-items: flex-end; */
  align-items: center;
}

.hero-sec-info #hexGrid {
  display: flex;
  flex-wrap: wrap;
  /* width: 90%; */
  width: 100%;
  /* margin: 0 auto; */
  margin: 0 0 0 auto;
  overflow: hidden;
  list-style-type: none;
  row-gap: 10px;
  align-items: center;
  column-gap: 10px;
  position: relative;
  right: -38px;
}


.hero-sec-info .hex {
  position: relative;
  visibility: hidden;
  outline: 1px solid transparent;
  transition: all 0.5s;
  backface-visibility: hidden;
  will-change: transform;
  transition: all 0.5s;
}

.hero-sec-info .hex::after {
  content: '';
  display: block;
  padding-bottom: 86.602%;
}

.hero-sec-info .hexIn {
  position: absolute;
  width: 96%;
  padding-bottom: 110.851%;
  margin: 2%;
  visibility: hidden;
  outline: 1px solid transparent;
  -webkit-transform: rotate3d(0, 0, 1, -60deg) skewY(30deg);
  -ms-transform: rotate3d(0, 0, 1, -60deg) skewY(30deg);
  transform: rotate3d(0, 0, 1, -60deg) skewY(30deg);
  transition: all 0.5s;
}

.hero-sec-info .hexIn * {
  position: absolute;
  visibility: visible;
  outline: 1px solid transparent;
}

.hero-sec-info .hexLink {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  overflow: hidden;
  -webkit-transform: skewY(-30deg) rotate3d(0, 0, 1, 60deg);
  -ms-transform: skewY(-30deg) rotate3d(0, 0, 1, 60deg);
  transform: skewY(-30deg) rotate3d(0, 0, 1, 60deg);
}

.hero-sec-info .hexagon-circle-gallery .active::before {
  display: none;
}

/* .hero-sec-info .hexLink:hover #demo1{
    background-color: #000000db;
    transition: all 0.5s;
    padding: 6px 0 !important;
    bottom: 35%;
  } */

.hero-sec-info .hex img {
  left: -100%;
  right: -100%;
  width: auto;
  height: 100%;
  margin: 0 auto;
}

.hero-sec-info .hex h1,
.hex p {
  width: 100%;
  padding: 5%;
  box-sizing: border-box;
  font-weight: 300;
  opacity: 0;
  color: #fff;
}

.hero-sec-info #demo1 {
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  bottom: 40%;
  padding-top: 50%;
  font-size: 14px;
  z-index: 1;
  font-weight: 500;
  transition: all 0.5s;
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  background-color: #00000057;
}

.hero-sec-info .hexLink:hover #demo1 {
  background-color: #000000db;
  transition: all 0.5s;
  padding: 1% 0%;
  bottom: 35%;
  /* line-height: 1.4; */
}

.hero-sec-info .hex h1:before,
.hero-sec-info .hex h1:after {
  display: inline-block;
  margin: 0 0.5em;
  width: 0.25em;
  height: 0.03em;
  background: #ffffff;
  content: '';
  vertical-align: middle;
  transition: all 0.3s;
  text-align: center;
  display: none;
}

.hero-sec-info #demo2 {
  top: 50%;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-sec-info .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background-color: #00000033;
  background-blend-mode: overlay;
}

.hero-sec-info .img:before,
.hero-sec-info .img:after {
  opacity: 0.4;
}



.hero-sec-info .hex h1 {
  opacity: 1;
  padding-top: 0 !important;
  padding: 1% 0%;
  opacity: 0.9;
  text-shadow: 0px 2px 3px #000;
}

.hero-sec-info .hexLink:hover h1,
.hero-sec-info .hexLink:focus h1,
.hero-sec-info .hexLink:hover p,
.hero-sec-info .hexLink:focus p {
  opacity: 1;
  transition: 0.8s;
}


.hero-sec-info .hexIn:hover .img:before,
.hero-sec-info .hexIn:hover .img:after,
.hero-sec-info .hexIn:hover .hexLink {
  opacity: 1;
}


@media (min-width:1201px) {
  .hero-sec-info #hexGrid {
    padding-bottom: 7.4%;
    /* padding-top: 2.4%; */
    padding-top: 15%;
    max-width: 1200px;
  }

  .hero-sec-info .hex {
    /* width: 13.3%; */
    width: 22%;
  }

  .hero-sec-info .hex:nth-child(7n+5) {
    margin-left: 10.9%;
  }
}

@media (max-width: 1200px) and (min-width:901px) {
  .hero-sec-info #hexGrid {
    padding-bottom: 5.5%;
    font-size: 13px;
    padding-top: 2%;
    padding-left: 0;
    column-gap: 3px;
    row-gap: 12px;
    justify-content: center;
    right: 0;
  }

  .hero-sec-info .hex {
    /* width: 13.3%; */
    width: 24.3%;
  }

  /* .hero-sec-info .hex:nth-child(9n+8) {
      margin-left: 6.7%;
  } */

  .hero-sec-info .hex:nth-child(9n+5) {
    margin-left: 2.7%;
  }

  .hero-sec-info .hero-content .info-sec h4 {
    font-size: 20px;
  }

}

@media (max-width: 900px) and (min-width:601px) {
  .hero-sec-info #hexGrid {
    padding-bottom: 7.4%;
    font-size: 14px;
    padding-left: 0;
    column-gap: 3px;
    row-gap: 8px;
    justify-content: center;
    right: 0;
  }

  .hero-sec-info .hex {
    /* width: 13.3%; */
    width: 23.3%;

  }

  /* .hero-sec-info .hex:nth-child(9n+8) {
      margin-left: 6.7%;
  } */

  .hero-sec-info .hex:nth-child(9n+5) {
    margin-left: 3.9%;
  }

  .hero-sec-info #demo1 {
    font-size: 11px;
  }

  .hero-sec-info .hero-content .info-sec h4 {
    font-size: 16px;
  }
}


@media (max-width: 900px) and (min-width:768px) {
  .hero-sec-info #hexGrid {
    padding-bottom: 7.4%;
    font-size: 14px;
    padding-left: 0;
    column-gap: 3px;
    row-gap: 8px;
    justify-content: center;
    right: 0;
  }

  .hero-sec-info .hex {
    /* width: 13.3%; */
    width: 24.3%;

  }

  .hero-sec-info .hex:nth-child(9n+5) {
    margin-left: 3.9%;
  }

  .hero-sec-info #demo1 {
    font-size: 11px;
  }

  .hero-sec-info .hero-content .info-sec h4 {
    font-size: 16px;
  }
}


@media (max-width: 600px) {
  .hero-sec-info #hexGrid {
    padding-bottom: 7.4%;
    font-size: 14px;
    padding-left: 0;
    column-gap: 3px;
    row-gap: 8px;
    justify-content: center;
    right: 0;
  }

  .hero-sec-info .hex {
    /* width: 13.3%; */
    width: 23.3%;

  }

  .hero-sec-info .hex:nth-child(9n+5) {
    /* margin-left: 3.9%; */
    margin-left: 4%;
  }

  .hero-sec-info #demo1 {
    font-size: 11px;
  }

  .hero-sec-info .hero-content .info-sec h4 {
    font-size: 16px;
  }

}


@media (max-width: 400px) {
  .hero-sec-info #hexGrid {
    font-size: 8px;
  }
}

/* hexagon-gallery css end */




/* hexagon-services-slider css */



/* hexagon-services-slider css end */


/* ========= */
#autopopup-sec {
  width: 100%;
  /* height: 100vh; */
  /* background: #000000b3; */
  position: fixed;
  /* top: 50%; */
  top: 35%;
  left: 0;
  display: none;
  z-index: 99999;
}

#autopopup-sec #pop-up {
  text-align: center;
  width: 300px;
  height: 180px;
  background: #fff;
  box-sizing: border-box;
  padding: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-4%, 25%);
  z-index: 99999;
  /* left: 50%;
	transform: translate(-50%,-50%);
    z-index: 99999; */
  box-shadow: 2px 2px 2px 2px #17171799;
  border-radius: 15px;
}

#autopopup-sec #pop-up a {
  text-decoration: none;
}

#autopopup-sec #pop-up #close-btn {
  float: right;
  color: #000000;
  border: 0;
  border-radius: 50%;
  padding: 3px 8px 0;
  background: #fff;
  /* box-shadow: 0px 2px 4px 0px #00000026; */
  cursor: pointer;
}

#autopopup-sec #pop-up h2 {
  font-size: 18px;
  color: #296243;
  font-weight: 700;
  margin-top: 8px;
  text-align: center;
  display: inline-block;
  /* border-bottom: 1px solid #296243; */
}

#autopopup-sec #pop-up h3 {
  font-size: 13px;
  color: #262626;
  font-weight: 600;
  background-color: #88FFB0;
  border-radius: 5px;
  padding: 6px 5px;
  margin-bottom: 10px;
  line-height: 1.4;
}

#autopopup-sec #pop-up p {
  font-size: 14px;
  color: #262626;
  font-weight: 400;
  line-height: 1.4;
}

.block-ellipsis {
  display: block;
  display: -webkit-box;
  height: 60px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.block-ellipsis a.para-sec {
  color: #262626;
}

/* =========== */





/* esg-prakrit css */
.esg-prakrit {
  background-color: #74C69D33;
  padding: 70px 0 30px;
}

.esg-prakrit .esg-prakrit-info {
  background-color: #fff;
  border-radius: 20px;
  padding: 15px 25px;
  margin-bottom: 40px;
}

.esg-prakrit .esg-prakrit-info.border-sec {
  /* border: 2px solid #16884F; */
  box-shadow: 0px 2px 5px -1px #00000040;
}

.esg-prakrit .esg-prakrit-info h2 {
  font-size: 24px;
  color: #296243;
  font-weight: 600;
}

.esg-prakrit .esg-prakrit-info span {
  font-size: 17px;
  color: #262626;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}

.esg-prakrit .esg-prakrit-info a {
  display: inline-block;
  font-size: 14px;
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  color: #227FD2;
  text-decoration: underline;
}

.esg-prakrit .esg-prakrit-info .read-more-content {
  display: none;
  padding-top: 15px;
}

.esg-prakrit .border-sec {
  text-align: center;
  position: relative;
  color: #ffffff;
  text-decoration: none;
  display: block;
  z-index: 2;
  overflow: hidden;
  padding: 8px;
}

.esg-prakrit .border-sec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(115deg, #4fcf70, #fad648, #a767e5, #12bcfe, #44ce7b);
  background-size: 50% 100%
}

.esg-prakrit .border-sec span {
  position: relative;
  z-index: 2;
  padding: 25px 0px;
  background: #fff;
  display: block;
  border-radius: 10px;
  font-size: 20px;
}

.esg-prakrit .border-sec:focus:before,
.esg-prakrit .border-sec:before {
  animation: rainbow-btn 5s linear infinite
}

@keyframes rainbow-btn {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0%);
  }
}



/* esg-prakrit css end */




/* category-text text logo css */
.category-text {
  display: none;
}

.category-text h4 {
  font-size: 20px;
  color: #296243;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;
  margin-left: 110px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin-bottom: 0;
}

.category-text h2 {
  font-size: 60px;
  color: #296243;
  padding: 0 0;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 4px;
  line-height: 90px;
  text-align: right;
}

.category-text h2::before {
  content: '';
  background: url(../img/icon/ifci-icon.png);
  width: 100px;
  height: 100px;
  position: absolute;
  top: 10px;
  left: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.category-text h2 span {
  font-size: 45px;
  color: #fff;
  background-position: 0 0;
  background: #12acdf;
  text-shadow: 0px 3px 3px #131313;
  padding: 0px 0px 4px 6px;
  border-radius: 5px;
  letter-spacing: 11px;
  display: inline-block;
  line-height: 65px;
}

.category-text h3 {

  font-size: 12.7px;
  color: #296243;
  padding: 0 0;
  text-transform: capitalize;
  font-weight: 600;
  margin-left: 158px;
  letter-spacing: 0.5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

/* category-text text logo css end */






/* carbon-footprint css */
.carbon-footprint {
  padding: 70px 0 70px;
  background-color: #43FF9B12;
}

.carbon-footprint h2 {
  font-size: 35px;
  color: #069329;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}

.carbon-footprint .carbon-footprint-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 5px -1px #00000040;
  padding: 8px 8px 60px 8px;
  height: 100%;
  position: relative;
}

.carbon-footprint .carbon-footprint-card .carbon-footprint-card-img img {
  max-width: 300px;
  height: 175px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.carbon-footprint .carbon-footprint-card .carbon-footprint-card-info h4 {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin: 10px 0 10px;
}

.carbon-footprint .carbon-footprint-card .carbon-footprint-card-info p {
  font-size: 15px;
  font-weight: 400;
  color: #262626;
}

.carbon-footprint .carbon-footprint-card .carbon-footprint-card-info a {
  background-color: #296243;
  border-radius: 30px;
  color: #fff;
  width: 92%;
  display: block;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* carbon-footprint css end */




/* ==== environmental-social-governance-sec css ==== */

.environmental-social-governance-sec {
  padding: 60px 0 60px;
  margin: 110px 0 0;
}

.card-sec {
  margin: 0 0 0;
}

.environmental-social-governance-sec .container {
  max-width: 1050px;
}

.environmental-social-governance-sec .pillar {
  padding: 0;
  position: relative;
  height: 100%;
  box-shadow: 0 10px 8px -11px rgb(0 0 0 / 50%);
  border-radius: 0 0 5px 5px;
}

.environmental-social-governance-sec .pillar .head1 {
  background-color: #74C69D;
}

.environmental-social-governance-sec .pillar .head2 {
  background-color: #12ACDF;
}

.environmental-social-governance-sec .pillar .head3 {
  background-color: #EA7F21;
}

.triangle-sec1 {
  border-left: 165px solid transparent;
  border-right: 157px solid transparent;
  border-bottom: 70px solid #E9F1ED;
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  width: 100px;
  margin: 0 auto;
}

.triangle-sec2 {
  border-left: 165px solid transparent;
  border-right: 157px solid transparent;
  border-bottom: 70px solid #c8e6f1;
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  width: 100px;
  margin: 0 auto;
}

.triangle-sec3 {
  border-left: 165px solid transparent;
  border-right: 157px solid transparent;
  border-bottom: 70px solid #f3ddcb;
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  width: 100px;
  margin: 0 auto;
}

.environmental-social-governance-sec .header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-direction: column;
}

.environmental-social-governance-sec .icon-sec {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.environmental-social-governance-sec .icon {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  object-fit: contain;
}

.environmental-social-governance-sec h2 {
  font-size: 18px;
  color: #00796b;
  font-weight: 500;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  display: block;
  width: 100%;
}

.environmental-social-governance-sec ul {
  list-style-type: none;
  padding: 0 30px;
  margin: 10px 0 18px;
}

.environmental-social-governance-sec ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #262626;
}

.pillar-bg-sec1 ul li i {
  color: #74C69D;
  margin-right: 15px;
}

.pillar-bg-sec3 ul li i {
  color: #EA7F21;
  margin-right: 15px;
}

.pillar-bg-sec2 ul li i {
  color: #12ACDF;
  margin-right: 15px;
}

.pillar-bg-sec1 {
  background-color: #E9F1ED;
}

.pillar-bg-sec2 {
  background-color: #C8E6F1;
}

.pillar-bg-sec3 {
  background-color: #F3DDCB;
}

@media screen and (max-width: 768px) {
  .environmental-social-governance-sec .container {
    flex-direction: column;
    align-items: center;
  }

  .environmental-social-governance-sec .pillar {
    width: 80%;
    margin-bottom: 20px;
  }
}

/* ==== environmental-social-governance-sec css end ==== */



/* counter-sec css */
.counter-sec {
  /* background-color: #E3F4EB; */
  background-color: #43FF9B12;
  padding: 60px 0 30px;
}

.counter-sec .container {
  max-width: 760px;
}

.counter-sec .counter-info {
  text-align: center;
  width: 150px;
  height: 150px;
  background: #43FF9B12;
  border-radius: 50%;
  /* border: 5px dotted #3DA2FF; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-bottom: 45px;
  margin: 0 auto 45px;
  box-shadow: 0 10px 8px -11px rgb(0 0 0 / 50%);
}

.counter-sec .counter-info.bg-color1 {
  background-color: #B8FFDC;
}

.counter-sec .counter-info.bg-color2 {
  background-color: #88CCFF;
}

.counter-sec .counter-info .counter-number {
  font-size: 40px;
  font-weight: 600;
  color: #296243;
  display: inline-block;
  margin-bottom: 25px;
}

.counter-sec .counter-info h4 {
  font-size: 16px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 0;
}




/* counter-sec css end */





/* Environmental-Social-Governance css */
.Environmental-Social-Governance {
  padding: 70px 0 30px;
}

.Environmental-Social-Governance .info-sec {
  text-align: left;
  width: 240px;
  margin: 0 auto;
}

.Environmental-Social-Governance .info-sec .heading {
  margin-bottom: 10px;
}

.Environmental-Social-Governance .info-sec .heading .icons {
  width: 100px;
  height: 100px;
  display: none;
}

.Environmental-Social-Governance .info-sec .heading .icons img {
  width: 100%;
}

.Environmental-Social-Governance .info-sec .heading h2 {
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  font-family: "Fira Sans", sans-serif;
  color: #262626;
  font-weight: 500;
}

.Environmental-Social-Governance .info-sec .divider1 h2 {
  border-bottom: 2.5px solid #74C69D;
}

.Environmental-Social-Governance .info-sec .divider2 h2 {
  border-bottom: 2.5px solid #EA7F21;
}

.Environmental-Social-Governance .info-sec .divider3 h2 {
  border-bottom: 2.5px solid #12ACDF;
}

.Environmental-Social-Governance .info-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.Environmental-Social-Governance .info-sec ul li {
  text-align: left;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #262626;
  font-family: "Fira Sans", sans-serif;
}

.Environmental-Social-Governance .info-sec ul li i {
  margin-right: 10px;
}

.Environmental-Social-Governance .color-1 ul li i {
  color: #74C69D;
}

.Environmental-Social-Governance .color-2 ul li i {
  color: #EA7F21;
}

.Environmental-Social-Governance .color-3 ul li i {
  color: #12ACDF;
}

/* Environmental-Social-Governance css end */



/* testimonials css */


.testimonials {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0 30px;
  background-color: #F2FFF8;
}

.testimonials .owl-carousel {
  width: 80%;
  margin: 0 auto;
}

.testimonials .title {
  text-align: center;
  position: relative;
  padding: 0px 0 30px;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials .title h2 {
  color: #069329;
  font-size: 48px;
  font-weight: 500;
}

.testimonials .title h2 {
  color: #069329;
  line-height: 1.2em;
  font-weight: 500;
  font-size: 41px;
  margin: 0
}

.testimonials .title img {
  margin-top: -10px;
}

.testimonials .title p {
  margin: 0 0 10px;
  margin-bottom: 0;
  color: #5A3733;
}

.testimonials .testi .item {
  background: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  border: 2px solid #C1C1C1C4;
  background: #e9fbf1;
}

.testimonials .testi .item .profile {
  display: flex;
  justify-content: center;
}

.testimonials .testi .item .profile img {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  object-fit: cover
}

.testimonials .testi .item .profile .information {
  padding-left: 20px;
  margin-bottom: 15px
}

.testimonials .testi .item .stars {
  text-align: center;
}

.testimonials .testi .item .stars i {
  color: #ffd832
}

.testimonials .testi .item .profile .information p {
  font-size: 26px;
  margin: 0px auto 0px;
  color: #E1AB20;
  font-weight: 400;
  line-height: 1;
}

.testimonials .testi .item .profile .information span {
  color: #262626;
  font-weight: 500;
  margin-top: 0;
  line-height: 1.6em;
  font-size: 12px;
}

.testimonials .testi .item>p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6em;
  display: block;
  z-index: 2;
  font-style: italic;
  color: #262626;
  text-align: center;
}

.testimonials .testi .item .icon {
  text-align: center;
}

.testimonials .testi .item .icon i {
  font-size: 32px;
  color: #FFD832;
}

.testimonials .owl-carousel .owl-nav.disabled {
  display: block !important;
  text-align: center;
  position: absolute;
  top: 40%;
  /* left: 50%; */
  width: 100%;
}

.testimonials .owl-carousel .owl-nav button.owl-next {
  float: right;
  font-size: 50px;
  right: -40px;
  position: relative;
  color: #939393;
  font-weight: 300;
}

.testimonials .owl-carousel .owl-nav button:focus {
  outline: 0;
  outline: 0;
}

.testimonials .owl-carousel .owl-nav button.owl-prev {
  float: left;
  font-size: 50px;
  left: -40px;
  position: relative;
  color: #939393;
  font-weight: 300;
}

.testimonials .owl-carousel .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.testimonials .owl-carousel .owl-dots button.owl-dot {
  background-color: #D9D9D9;
  border: 1px solid #D9D9D9;
  width: 15px;
  height: 15px;
  border-radius: 10px;
}

.testimonials .owl-carousel .owl-dots button.owl-dot.active {
  border: 1px solid #74C69D;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  display: inline-block;
  margin: 5px;
  background: #74C69D;
}

.testimonials .owl-carousel .owl-dots button:focus {
  outline: 0;
  outline: 0;
}


/* testimonials css end */




/* our-team-sec css */
.our-team-sec {
  background-color: #E3F4EB;
  padding: 70px 0 70px;
}

.our-team-sec .title h2 {
  color: #069329;
  line-height: 1.2em;
  font-weight: 500;
  font-size: 41px;
  letter-spacing: 0;
  margin: 0 0 50px;
  text-align: center;
}

.our-team-sec .team-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 15px;
  text-align: center;
  box-shadow: 2px 2px 6px -1px #00000040;
}

.our-team-sec .team-card img {
  border-radius: 50%;
  width: 130px;
  height: 130px;
  object-fit: cover;
}

.our-team-sec .team-card h4 {
  color: #262626;
  font-weight: 500;
  margin: 10px 0 0px;
  line-height: 1.2;
  font-size: 22px;
}

.our-team-sec .team-card p {
  font-size: 18px;
  font-weight: 500;
  color: #939393;
  margin-bottom: 0;
}

/* our-team-sec css end */



/* footer css */
.footer-top {
  background-image: url(../img/footer-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position:center center; */
  background-position: 100% 46%;
  /* box-shadow: 0px -14px 25px -25px rgb(0 0 0); */
  padding: 70px 0 70px;
  background-color: #ffffff47;
  background-blend-mode: overlay;
}

.footer-top .container {
  max-width: 1230px;
}

.footer-top .footer-about .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.footer-top .footer-about .logo .logo-b {
  width: 270px !important;
  /* background: #fff; */
  padding: 4px 5px 2px;
  border-radius: 4px;
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  border-radius: 4px;
}

.footer-top .footer-about p {
  color: #646060;
  padding-top: 15px;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
}

.footer-top .footer-title h6 {
  font-size: 24px;
  color: #000000;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
}

.footer-top .footer-link ul {
  padding-left: 0;
}

.footer-top .footer-link ul li {
  line-height: 30px;
  list-style: none;
}

.footer-top .footer-link ul li a {
  color: #262626;
  font-size: 14px;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.footer-top .footer-link ul li a:hover {
  color: #296243;
  padding-left: 5px;
}

.footer-top .footer-link ul li a svg {
  margin-right: 8px;
  color: #646060;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.footer-top .footer-address ul {
  padding-left: 0;
}

.footer-top .footer-address ul li {
  list-style-type: none;
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
  color: #646060;
}

.footer-top .footer-address ul li i {
  font-size: 20px;
}

.footer-top .footer-address ul li i.fa-location-dot {
  color: #E20D0D;
}

.footer-top .footer-address ul li i.fa-whatsapp {
  color: #25D366;
}

.footer-top .footer-address ul li i.fa-whatsapp {
  color: #25D366;
}

.footer-top .footer-address ul li i.fa-envelope {
  color: #1E1E1E;
}

.footer-address ul li .cont p {
  color: #262626;
  font-size: 13px;
  line-height: 1.4;
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
}

.footer-top .footer-address ul li.follow-us-sec {
  flex-direction: column;
  margin-top: 20px;
}

.footer-top .footer-address ul li.follow-us-sec .follow-us-head h2 {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
}

.footer-top .footer-address ul li.follow-us-sec .follow-us {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* box-shadow: inset 0px 0px 45px 11px #dfdfdf; */
  padding: 4px 8px 4px 0;
  border-radius: 6px;
}

.footer-top .footer-address ul li.follow-us-sec .follow-us i {
  font-size: 20px;
}

.footer-top .footer-address ul li.follow-us-sec .follow-us i.fa-linkedin {
  color: #0A66C2;
}

.footer-top .footer-address ul li.follow-us-sec .follow-us i.fa-whatsapp {
  color: #25D366;
}

.footer-top .footer-address ul li.follow-us-sec .follow-us i.fa-facebook {
  color: #1877F2;
}

.footer-top .footer-address ul li.follow-us-sec .follow-us i.fa-x-twitter {
  color: #000000;
}

.footer-copyright {
  /* background-color: #3e7544; */
  background-color: #3e3e3e;
  padding: 10px 0;
}

.footer-copyright .copyright p {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 28px;
  margin: 0px;
}

.footer-copyright .copyright p a {
  color: #5dc269;
  text-decoration: underline;
  font-weight: 600;
}

/* footer css end */





/* Your Carbon Footprint css */
.carbon-footprint-sec {
  padding: 110px 0 60px;
  background: url('../img/your-carbon-footprint/YourCarbonFootprint-bg-img.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.carbon-footprint-head h2 {
  font-size: 24px;
  font-weight: 500;
  color: #1c6638;
  margin-bottom: 20px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;

}

.carbon-footprint-info {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: 30px;
}

.carbon-footprint-header-sec {
  background-color: #C4E8D5;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.carbon-footprint-header-sec .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.carbon-footprint-header-sec .form-group label {
    margin-bottom: 0;
    color: #1c6638;
    font-weight: 600;
    margin-right: 15px;
}

.carbon-footprint-header-sec .form-group input.form-control {
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  height: calc(2.30rem + 2px);
}

.carbon-footprint-header-sec .submit-btn {
  text-align: right;
}


.carbon-footprint-info-sec {}

.carbon-footprint-info-sec .row {
  border-bottom: 1px solid #D9D9D9;
  align-items: center;
      justify-content: center;
}

.carbon-footprint-info-sec .icon-sec {
  text-align: center;
    margin-bottom: 20px;
    background: #c4e8d5;
    padding: 10px 10px 15px;
    border-radius: 4px;
    margin-top: 20px;
        box-shadow: 0px 6px 6px -5px #00000063;
}

.carbon-footprint-info-sec .icon-sec i {
  color: #1c6638;
  margin: 10px 0 10px;
      font-size: 24px;
}

.carbon-footprint-info-sec .icon-sec h4 {
    color: #1c6638;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.carbon-footprint-info-sec .row .footprint-text h4 {
  color: #262626;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}

.select-form-sec .form-select {
    width: 100%;
    border-radius: 5px;
    color: #262626;
    border: 1px solid #939393;
    padding: 8px 10px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 12px;
}

.carbon-footprint-info-sec .row .form-group {
  margin-bottom: 0;
}

.carbon-footprint-info-sec .row .form-group input {
  width: 100%;
  border-radius: 5px;
  color: #262626;
  border: 1px solid #939393;
  padding: 8px 10px;
  margin-bottom: 10px;
  text-align: left;
  font-size: 12px;
}

.carbon-footprint-info-sec .checkbox-sec {
  margin: 20px 0;
}

.carbon-footprint-submit-btn,
.calculate-btn {
background-color: #1c6638;
    color: #fff;
    border-radius: 4px;
    padding: 4px 50px;
    border: none;
    /* width: 200px; */
    cursor: pointer;
    border: 2px solid #1c6638;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    box-shadow: 0px 2px 6px 0px #00000063;
    font-weight: 400;
    font-size: 14px;
}

.carbon-footprint-submit-btn:hover,
.calculate-btn:hover {
  background-color: transparent;
  color: #1c6638;
  border: 2px solid #1c6638;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: 500;
      box-shadow: none;
}

/* Your Carbon Footprint css end */



/* section-heading css */
.sec-heading {
  font-size: 35px;
  color: #069329;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.sec-heading2 {
  font-size: 35px;
  color: #069329;
  font-weight: 500;
  text-align: center;
  margin-bottom: 100px;
}

/* section-heading css end */


/* our-Partners-sec css */
.our-Partners-sec {
  background-color: #fff;
  padding: 60px 0 60px;
}

.our-Partners-sec h2 {
  font-size: 35px;
  color: #069329;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.customer-logo {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.customer-logo .slide {
  max-width: 175px;
  width: 100%;
}

.customer-logo .slick-track {
  display: flex;
  align-items: center;
}

.customer-logo .slide img {
  width: 100%;
  height: auto;
}

.logos-slider .slick-track {
  -webkit-animation: scroll 25s linear infinite;
  animation: scroll 25s linear infinite;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

/* our-Partners-sec css end */




.calculate-sec {
  background-color: #C4E8D5;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

.footprint-text h4 {
  font-size: 20px;
}

.calculate-sec .calc-btn {
  text-align: right;
}

.footer {
  background: #296243;
  color: #fff;
  text-align: center;
  padding: 15px;
  position: relative;
  width: 100%;
  bottom: 0;
  margin-top: 20px;
}


.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
  background: #8d8d8df2;
  z-index: 9999;
}




/* Services Modal css */

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
  background: #444444f2;
  z-index: 9999;
}

.modal .modal-dialog {
  max-width: 700px;
  margin: 1.75rem auto;
}

.modal.meterGauge .modal-dialog {
  max-width: 400px;
}

.modal.services-popup .modal-dialog {
  /* max-width: 700px; */
  /* max-width: 50rem; */
   max-width: 60rem;
}

.modal .modal-dialog .modal-content {
  border: 1px solid rgb(189 189 189 / 20%);
  /* border-radius: 20px; */
  border-radius: 8px 8px 8px 8px;
  /* width: 85%; */
  width: 100%;
  margin: 70px auto 0;
}

.modal .modal-dialog .modal-content .modal-header {
  background-color: #28a745;
  box-shadow: 0px 2px 11px -2px #3e3e3e;
  border-bottom: 0;
  padding: 10px 15px;
  align-items: center;
}

.modal.services-popup .modal-dialog .modal-content .modal-header {
  padding: 10px 15px;
  background-color: #C4E8D5;
}

.modal .modal-dialog .modal-content .modal-header h5.modal-title {
  text-transform: capitalize;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: #262626;
}

.modal .modal-dialog .modal-content .modal-header img {
  max-width: 260px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  position: relative;
  left: 0px;
}

.modal .modal-dialog .modal-content .modal-body.services-modal {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  /* box-shadow: 0 10px 25px 10px rgba(0, 0, 0, .2); */
  background-image: url(../img/icon/meterGauge-bg-img.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
}

.services-popup .modal-dialog .modal-content .modal-body.services-modal img {
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 4px;
  box-shadow: 0px 2px 8px 0px #dbdbdb;
  max-width: 250px;
  width: 100%;
}

.services-popup .modal-dialog .modal-content .modal-body.services-modal p{
/* max-width: 250px; */
  width: 100%;
}

.modal .modal-dialog .modal-content .modal-body.services-modal .modal-body-header h2 {
  color: #296243;
  font-size: 30px;
  font-weight: 600;
}

.Footprint-info h4 {
  font-size: 20px;
  color: #262626;
  font-weight: 600;
}

.Footprint-info h4 span {
  font-size: 18px;
  color: #296243;
  font-weight: 600;
}

.esg-prakrit-champion {
  background: #AFFFD3;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 2px 4px 0px 2px #FFECA6, 5px 8px 0px 2px #DC83FF;
}

.esg-prakrit-champion h4 {
  font-size: 18px;
  color: #296243;
  font-weight: 600;
  margin-bottom: 0;
}

.footer-sec p {
  color: #262626;
  text-align: center;
  margin: 20px 0 0;
}

.modal .modal-dialog .modal-content .modal-body.meterGauge {
  padding: 20px 20px;
  box-shadow: 0 10px 25px 10px rgba(0, 0, 0, .2);
  border-bottom: 4px solid #28a745;
  border-left: 4px solid #28a644;
  border-right: 4px solid #28a645;
}


.modal .modal-dialog .modal-content .modal-body .celebration-dec {
  box-shadow: 0px 10px 14px -15px #000;
  position: relative;
  z-index: 99;
}

.modal .modal-dialog .modal-content .modal-body .celebration-dec h2.meterGauge-name {
  font-size: 22px;
  text-align: center;
  color: #2a2a2a;
  position: relative;
  top: -8px;
}


.modal .modal-dialog .modal-content .modal-body img {
  max-width: 160px;
  width: 100%;
  /* border: 1px solid #ccc;
    padding: 5px;
    border-radius: 4px;
    box-shadow: 0px 2px 8px 0px #dbdbdb; */
  margin: 0 auto;
  display: block;
  margin-bottom: 12px;
}

.modal .modal-dialog .modal-content .close {
  color: #fff;
  opacity: 1;
  margin: 0;
}

.modal .modal-dialog .modal-content .close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 20px;
  background: #28a745;
  padding: 2px 5px;
  border-radius: 2px;
}

.modal.services-popup .modal-dialog .modal-content .close {
  position: static;
  /* font-size: 1.5rem; */
  font-size: 2rem;
  padding: 8px 2px;
  background-color: #C4E8D5;
  color: #262626;
  border: none;
}

.modal .modal-dialog .modal-content .modal-body.meterGauge .meterGauge-text {
  padding: 10px;
  box-shadow: inset 0px 0px 10px 2px #e7e7e7;
}

.modal .modal-dialog .modal-content .modal-body.meterGauge .meterGauge-text h4 {
  color: #28a745;
  margin-bottom: 0;
  font-weight: 500;
  text-align: center;
  font-size: 20px;
}

.meterGauge-social-media ul {
  display: flex;
  align-items: center;
  padding: 10px 0 0;
  justify-content: center;
  border: 2px solid #939393;
  width: 250px;
  margin: 30px auto 0;
  padding: 8px 10px;
  border-radius: 10px;
}

.meterGauge-social-media ul li {
  margin-right: 10px;
  list-style-type: none;
}

.meterGauge-social-media ul li:last-child {
  margin-right: 0;
}

.meterGauge-social-media ul li:first-child {
  background: #28a644;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
}

.meterGauge-social-media ul li a {
  color: #28a745;
  display: flex;
  align-items: center;
}

.meterGauge-social-media ul li h4 {
  font-size: 14px;
  font-weight: 500;
  margin-right: 8px;
  float: left;
  color: #fff;
  margin-bottom: 0;
}

.meterGauge-social-media ul li i.fa-share-from-square {
  color: #fff;
  font-size: 14px;
}

.meterGauge-social-media ul li i.fa-facebook {
  color: #1877F2;
  font-size: 20px;
}

.meterGauge-social-media ul li i.fa-whatsapp {
  color: #25D366;
  font-size: 20px;
}

.meterGauge-social-media ul li i.fa-instagram {
  font-size: 20px;
}

.meterGauge-social-media ul li i.fa-x-twitter {
  color: #000000;
  font-size: 20px;
}

.meterGauge-social-media ul li i.fa-linkedin {
  color: rgb(30, 48, 80);
  font-size: 20px;
}

.meterGauge-social-media ul li i {
  color: #28a745;
  font-size: 20px;
}

.meterGauge-social-media ul li a {
  color: #28a745;
  display: flex;
  align-items: center;
}

.meterGauge-social-media ul li a:hover {
  text-decoration: none;
}

.meterGauge-social-media ul li a svg.fa-share-from-square {
  color: #ffffff;
  font-size: 13px;
}

.modal .modal-dialog .modal-content .modal-body .Share-sec .meterGauge-social-media ul li a .instagram-icon {
  width: 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding: 0;
}

#certificate .modal-dialog {
  max-width: 36rem;
}

#certificate .modal-dialog .modal-content .modal-body.services-modal img {
  max-width: 120px;
  border: 0;
  box-shadow: none;
}

#certificate .modal-dialog .modal-content .modal-body.services-modal .modal-body {
  padding: 0;
}

#certificate .modal-dialog .modal-content .modal-body.services-modal .modal-body .Footprint-info h4 {
  font-size: 14px;
}

#certificate .modal-dialog .modal-content .modal-body.services-modal .modal-body .Footprint-info h4 #emissionValue {
  font-size: 28px !important;
}

#certificate .modal-dialog .modal-content .modal-body.services-modal .modal-body .footer-sec p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.2;
}

#certificate .modal-dialog .modal-content .modal-body.services-modal .modal-body .esg-prakrit-champion {
  width: 80%;
  margin: 0 auto;
  padding: 5px 10px;
}

#certificate .modal-dialog .modal-content .modal-body.services-modal .modal-body .esg-prakrit-champion span#message {
  font-size: 14px;
}

#certificate .modal-dialog .modal-content .modal-body.services-modal .modal-body-header h2 {
  font-size: 26px;
}

#certificate .modal-dialog .modal-content .modal-body .meterGauge-social-media ul {
  width: 240px;
  padding: 4px 5px;
  margin: 25px auto 0;
}

/* Services Modal css end *

/* Your Carbon Footprint css end */




/* experience-our-tool css */
.experience-our-tool {
  padding: 110px 0 60px;
  background-color: #F6FAF5;
}

.experience-our-tool h2 {
  font-size: 24px;
  font-weight: 600;
  color: #069329;
  margin-bottom: 20px;
  background: transparent;
  padding: 10px;
  border-radius: 0;
}

.experience-our-tool .submit-btn {
  background-color: #1c6638;
  color: #fff;
  border-radius: 20px;
  padding: 8px 20px;
  border: none;
  width: 200px;
  cursor: pointer;
  border: 2px solid #1c6638;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  box-shadow: 0px 2px 4px 0px #00000063;
  font-weight: 500;
}

.experience-our-tool .submit-btn:hover {
  background-color: transparent;
  color: #1c6638;
  border: 2px solid #1c6638;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: 500;
  box-shadow: none;
}

.experience-our-tool .row .footprint-text h4 {
  color: #262626;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}

button:focus {
  outline: 0;
  outline: 0;
}

.experience-our-tool .calculate-sec {
  margin-top: 0;
}

/* experience-our-tool css end */



/* connect-us css */

.connect-us-hero-sec {
  background: url(../img/connect-us-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 74px;
  background-color: #00000008;
  background-blend-mode: overlay;
}

.connect-us-hero-sec img {
  max-width: 400px;
  width: 100%;
}

.address-section {
  padding: 60px 0 60px;
  background-color: #F6FAF5;
}

.address-section .alert.alert-success {
  position: absolute;
  right: 0;
  left: -15px;
  z-index: 9999;
  font-size: 13px;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 10px;
  top: -35px;
  text-align: center;
  font-weight: 700;
}


.address-section .address-sec {
  border: 1px solid #f3f3f3;
  background: #fff;
  height: 100%;
  border-radius: 10px;
  padding: 30px 30px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
}

.address-section .address-sec h2 {
  font-size: 28px;
  color: #296243;
  font-weight: 600;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.address-section .address-sec h2::before {
  content: '';
  position: absolute;
  height: 2px;
  width: 100px;
  background: #296243;
  bottom: -2px;
  margin: 0 auto;
  left: auto;
}

.address-section .connect-info {
  border: 1px solid #f3f3f3;
  background: #fff;
  height: 100%;
  border-radius: 10px;
  padding: 30px 30px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  position: relative;
}

.address-section .connect-info .form-group input {
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  color: #939393;
  font-family: "Fira Sans", sans-serif;
}

.address-section .connect-info .form-group select.form-control {
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  color: #939393;
}

.address-section .connect-info .form-group textarea.form-control {
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  color: #939393;
  height: 200px;
}

.address-section .address-info p {
  font-size: 18px;
  color: #262626;
  font-weight: 500;
  margin-bottom: 30px;
}

.address-section .address-info p i {
  background: #DFFFEA;
  padding: 10px;
  border-radius: 50px;
  margin-right: 15px;
  color: #296243;
}


.address-section .connect-info h2 {
  font-size: 20px;
  color: #296243;
  font-weight: 600;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.address-section .connect-info h2::before {
  content: '';
  position: absolute;
  height: 2px;
  width: 215px;
  background: #296243;
  bottom: -4px;
  margin: 0 auto;
  left: 29%;
  display: none;
}

.address-section .submit-btn-sec .submit-btn {
  background-color: #1c6638;
  color: #fff;
  border-radius: 4px;
  padding: 5px 20px;
  border: none;
  width: 200px;
  cursor: pointer;
  border: 2px solid #1c6638;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  box-shadow: 0px 2px 4px 0px #00000063;
  font-weight: 500;
  margin: 0 auto;
  display: block;
}

.address-section .submit-btn-sec .submit-btn:hover {
  background-color: transparent;
  color: #1c6638;
  border: 2px solid #1c6638;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: 500;
  box-shadow: none;
}




/*   multiple select new css */
.connect-info .bootstrap-select .dropdown-menu.show {
  overflow: auto !important;
  height: 250px;
}

.connect-info .bootstrap-select>.dropdown-toggle.bs-placeholder {
  color: #6e6e6e;
  background: transparent;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  color: #939393;
  width: 100%;
}

.connect-info .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: 0;
  outline: 0 !important;
  outline-offset: 0;
}

.connect-info .bootstrap-select .bs-ok-default:after {
  border-width: 0 .20em .20em 0;
}

/*  multiple select new css end */



/* multiple="multiple select css */
.address-section .connect-info .select-btn {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-radius: 8px;
  cursor: pointer;
  /* background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */

  border: 1px solid #D9D9D9;
  border-radius: 10px;
  color: #939393;
}

.address-section .connect-info .select-btn .btn-text {
  font-size: 1rem;
  font-weight: 400;
  color: #939393;
}

.address-section .connect-info .select-btn .arrow-dwn {
  display: flex;
  height: 15px;
  width: 15px;
  color: #fff;
  font-size: 8px;
  border-radius: 50%;
  background: #1c6638;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.address-section .connect-info .select-btn.open .arrow-dwn {
  transform: rotate(-180deg);
}

.address-section .connect-info .list-items {
  position: relative;
  /* margin-top: 15px; */
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  max-height: 220px;
  overflow-y: scroll;
  overflow-x: hidden;
  display: none;
}

.address-section .connect-info .select-btn.open~.list-items {
  display: block;
}

.address-section .connect-info .select-btn.open~.list-items::-webkit-scrollbar {
  width: 8px;
  height: 0;
}

.address-section .connect-info .select-btn.open~.list-items::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .2);
  border-radius: 8px;
}

.address-section .connect-info .select-btn.open~.list-items::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, .3);
}

.address-section .connect-info .list-items .item {
  display: flex;
  align-items: center;
  list-style: none;
  height: 38px;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 15px;
  border-radius: 8px;
}

.address-section .connect-info .list-items .item:hover {
  background-color: #F7FCFF;
}

.address-section .connect-info .item .item-text {
  font-size: 14px;
  font-weight: 400;
  color: #333;
}

.address-section .connect-info .item .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 14px;
  width: 14px;
  border-radius: 4px;
  margin-right: 8px;
  border: 1.5px solid #c0c0c0;
  transition: all 0.3s ease-in-out;
}

.address-section .connect-info .item.checked .checkbox {
  background-color: #1c6638;
  border-color: #1c6638;
}

.address-section .connect-info .checkbox .check-icon {
  color: #fff;
  font-size: 11px;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}

.address-section .connect-info .item.checked .check-icon {
  transform: scale(1);
}

/* multiple="multiple select css end */


/* connect-us css end */




/* flash-card-sec css */

.flash-card-bg-sec {
  background: url(../img/flash-card-bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 74px;
  background-color: #00000008;
  background-blend-mode: overlay;
}

.flash-card-sec {
  background-color: #F6FAF5;
  padding: 60px 0 60px;
}

.flash-card-sec .container {
  max-width: 1000px;
}

.flash-card-sec h2 {
  font-size: 35px;
  color: #069329;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}

.flash-card-sec .flash-card-info {
  background-color: #fff;
  padding: 20px 24px 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 8px -11px rgb(0 0 0 / 10%);
  border-radius: 20px;
}

.flash-card-sec .flash-card-info h2 {
  font-size: 17px;
  color: #296243;
  font-weight: 500;
  margin-bottom: 10px;
  background-color: #88FFB0;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
}

.flash-card-sec .flash-card-info h3 {
  font-size: 18px;
  color: #296243;
  font-weight: 500;
  margin: 15px 0 5px;
}

.flash-card-sec .flash-card-info p {
  font-size: 16px;
  color: #262626;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.4;
}

.flash-card-sec .flash-card-info ul {
  margin: 10px 0 0;
  padding: 0 0 0 20px;
}

.flash-card-sec .flash-card-info ul li {
  font-size: 18px;
  margin-bottom: 10px;
}

/* flash-card-sec css end */









/* experience-our-tool css */
.experience-our-tool {
  height: 100%;
}

.experience-our-tool .table-responsive {
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0px 10px 20px -8px #000000bf;
}

.experience-our-tool .table-responsive .individual-calculator-table {
  width: 100%;
}

.experience-our-tool .tool-title h2 {
  text-align: center;
  /* font-family: "Play", sans-serif; */
  font-weight: 600;
  font-size: 30px;
}

.experience-our-tool .table-responsive table tbody tr td input {
  max-width: 100% !important;
}

.experience-our-tool .table-responsive table tbody tr td {
  /* font-family: "Play", sans-serif; */
  font-weight: 400;
  padding: 10px 6px 10px 10px;
}

.experience-our-tool .table-responsive table tbody tr td input {
  height: 40px !important;
}

.experience-our-tool .table-responsive table tbody tr td.text-left b {
  color: #286042;
  font-weight: 400;
  font-size: 18px;
}

.experience-our-tool .table-responsive table tbody tr td .button-icon .button {
  font-size: 16px;
  height: 35px;
  width: 170px;
  color: #fff;
  outline: none;
  cursor: pointer;
  border: none;
  background: #286042;
  /* box-shadow: 0px 10px 6px -8px #000000; */
  box-shadow: 0px 10px 6px -8px #00000078;
  border-radius: 5px;
  padding: 0 14px;
  float: none;
  transition: all 200ms linear;
}

.experience-our-tool .table-responsive table tbody tr td .button-icon .button:hover {
  border-radius: 4px;
  box-shadow: 0px 10px 6px -8px #00000000;
  transition: all 200ms linear;
}

.report {
  border: 4px solid #ddebe3 !important;
  padding: 20px 15px;
  max-width: 815px;
  margin: 0 auto;
  margin-top: 40px;
  background-color: #E8F6EE;
}

.report img {
  width: 100%;
  padding: 5px;
  margin-left: 0 !important;
  max-width: 410px;
  height: 79px;
  object-fit: cover;
}

.report h1 {
  font-size: 28px;
  color: #5dc269;
  padding-bottom: 6px;
  position: relative;
  /* font-family: "Play", sans-serif; */
  font-weight: 600;
}

.report .card .card-header h3.card-title {
  margin-bottom: 0;
  font-size: 20px;
  color: #fff;
  position: relative;
  /* font-family: "Play", sans-serif; */
  font-weight: 400;
}

.report .card {
  border-radius: 4px;
  /* box-shadow: 0px 0px 6px 0px rgb(92 92 92 / 50%); */
  box-shadow: 0px 0px 6px 0px rgb(92 92 92 / 18%);
  padding: 10px 10px;
  height: 100%;
}

.report .card .card-header {
  background: #5dc269;
  padding: 7px 10px;
}

.report .card .card-body {
  padding-bottom: 0;
}

.report .card .card-body .row img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  padding: 5px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
}

.card.mapping .card-body {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.report .card .card-body .col-lg-12 img {
  float: left;
  width: 120px;
  height: 80px;
  object-fit: contain;
}

.report .card .card-body .card-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0;
  box-shadow: none;
  border: none;
  margin-top: 15px;
}

.report .card .table.table-striped {
  margin-bottom: 0;
}

.report .card .table.table-striped tbody tr th {
  margin-bottom: 0;
  /* font-family: "Play", sans-serif; */
  font-weight: 400;
  font-size: 14px;
  padding: 6px 10px;
}

.report .card .table.table-striped tbody tr td {
  padding: 4px 4px;
}

.report .card .table.table-striped tbody tr td img {
  max-width: 30px;
  width: 100%;
  height: 40px;
  object-fit: cover;
}

/* experience-our-tool css end */





/* #Media
================================================== */


@media (max-width: 575px) {
  .hero-sec-info {
    padding-top: 90px;
  }

  .hero-sec-info .hero-content .logo-sec {
    text-align: center;
  }

  .hero-sec-info .hero-content .info-sec {
    text-align: center;
  }

  .hero-sec-info .row {
    height: auto;
    gap: 15px;
  }

  .hero-sec-info .hero-content .logo-sec img {
    max-width: 270px;
  }

  .hero-sec-info #hexGrid {
    row-gap: 15px;
  }

  .hero-sec-info .hex:nth-child(9n+7) {
    /* margin-left: 4%; */
  }

  .hero-sec-info #hexGrid {
    column-gap: 6px;
  }

  .hero-sec-info .hex {
    /* width: 15%; */
    width: 24%;
  }

  .modal.services-popup .modal-dialog {
    max-width: 25rem;
  }

  .modal .modal-dialog .modal-content .modal-body.services-modal {
    flex-direction: column;
  }

  .modal .modal-dialog .modal-content .modal-body.services-modal p {
    text-align: justify;
  }

  .hero-sec-info .hero-content .info-sec a.discover-btn {
    padding: 3px 30px;
    font-size: 11px;
  }

  .hero-slider {
    height: 800px;
  }

  .hero-slider .slick-slide img {
    height: 800px;
    width: 100%;
    object-fit: cover;
  }

}



@media (max-width: 767px) {

  .nav-item:after {
    display: none;
  }

  .nav-item::before {
    position: absolute;
    display: block;
    top: 15px;
    left: 0;
    width: 11px;
    height: 1px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
  }

  .dropdown-toggle::after {
    position: absolute;
    display: block;
    top: 10px;
    left: -23px;
    width: 1px;
    height: 11px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
    transition: all 200ms linear;
  }

  .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(90deg);
    opacity: 0;
  }

  .dropdown-menu {
    padding: 0 !important;
    background-color: transparent;
    box-shadow: none;
    transition: all 200ms linear;
  }

  .dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }

  .esg-prakrit .esg-prakrit-info h2 {
    text-align: center;
  }

  .esg-prakrit .esg-prakrit-info p {
    text-align: justify;
  }

  .esg-prakrit .border-sec span {
    padding: 25px 6px;
  }

  .carbon-footprint .carbon-footprint-card .carbon-footprint-card-img img {
    max-width: 100%;
    height: 333px;
  }

  .carbon-footprint .carbon-footprint-card .carbon-footprint-card-info h4 {
    text-align: center;
  }

  .carbon-footprint .carbon-footprint-card .carbon-footprint-card-info p {
    text-align: justify;
  }

  .carbon-footprint .carbon-footprint-card {
    height: auto;
  }

  .counter-sec .col-xs-3 {
    width: 30%;
    margin: 0 auto;
  }

  .environmental-social-governance-sec .pillar {
    margin: 0 auto 130px;
    height: auto;
    padding-bottom: 15px;
  }

  .triangle-sec1 {
    border-left: 221px solid transparent;
    border-right: 221px solid transparent;
    border-bottom: 90px solid #E9F1ED;
    position: absolute;
    top: -89px;
    left: 0;
    right: 0;
    width: 100px;
    margin: 0 auto;
  }

  .triangle-sec2 {
    border-left: 221px solid transparent;
    border-right: 221px solid transparent;
    border-bottom: 90px solid #c8e6f1;
    position: absolute;
    top: -89px;
    left: 0;
    right: 0;
    width: 100px;
    margin: 0 auto;
  }

  .triangle-sec3 {
    border-left: 221px solid transparent;
    border-right: 221px solid transparent;
    border-bottom: 90px solid #f3ddcb;
    position: absolute;
    top: -89px;
    left: 0;
    right: 0;
    width: 100px;
    margin: 0 auto;
  }

  .carbon-footprint-header-sec .form-group {
        flex-direction: column;
        align-items: flex-start;
    }
        .carbon-footprint-submit-btn, .calculate-btn {
        border-radius: 4px;
        padding: 4px 20px;
        width: 100%;
        font-weight: 500;
        font-weight: 400;
        margin-top: 20px;
        font-size: 15px;
    }
    .carbon-footprint-info-sec .row .footprint-text h4 {
      text-align: left;
    }
    .carbon-footprint-info-sec .row .form-group input {
      width: 100% !important;
    }
    .footprint-text h4 {
      font-size: 16px;
    }
    .carbon-footprint-header-sec .form-group label {
        margin: 4px 0 4px;
        font-weight: 500;
    }

    .experience-our-tool .tool-title h2 {
      font-weight: 500;
      font-size: 22px;
      padding: 0;
    }
    .report .card .card-body .card-img {
      flex-direction: column;
      align-items: center;
    }
    .report img {
        object-fit: contain;
    }
.report .card .card-body .col-lg-12 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.report .card .card-body .row img {
    height: auto;
    object-fit: cover;
}

.report h1 {
    font-size: 18px;
}



}




/* Custom override to remove Bootstrap's blue background/border for nav-link active/focus and restore green underline/text */
.nav .nav-link.active,
.nav .nav-link:focus,
.nav .nav-link.show,
.nav .nav-link:active {
  color: #296243 !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.nav .nav-link:focus {
  color: #296243 !important;
}

.nav .dropdown-toggle:focus {
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

/* Keep green underline and text on hover/active */

/* Stronger override for Bootstrap nav-link active/show/focus to ensure green color and font weight, removing blue */
.navbar .nav-link.active,
.navbar .nav-link.show,
.navbar .nav-link:focus,
.navbar .nav-link:active {
  color: #296243 !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  font-weight: 700 !important;
}

.navbar .nav-link:hover {
  color: #296243 !important;
}

.navbar .dropdown-toggle:focus {
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

/* Force all nav links to be black by default, green on hover/active, overriding Bootstrap */
.nav .nav-link,
.navbar .nav-link {
  color: #222 !important;
  font-weight: bold;
  transition: color 0.2s;
}

.nav .nav-link.active,
.navbar .nav-link.active,
.nav .nav-link:focus,
.navbar .nav-link:focus,
.nav .nav-link.show,
.navbar .nav-link.show,
.nav .nav-link:active,
.navbar .nav-link:active,
.nav .nav-link:hover,
.navbar .nav-link:hover {
  color: #296243 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  font-weight: 700 !important;
}

/* Hide the dropdown caret for Explore menu */
.navbar .dropdown-toggle::after {
  display: none !important;
}

/* Strongest override to hide all dropdown carets in navbar */
.navbar .dropdown-toggle::after,
.nav .dropdown-toggle::after,
.dropdown-toggle::after {
  display: none !important;
  content: none !important;
}

/* Login button: match hover color to the second image */
.btn-login {
  background-color: #296243 !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 30px !important;
  font-size: 12px;
  border: none;
  transition: background 0.2s;
}

.updated-navigation-sec .btn-login{
  /* padding: 5px 15px !important; */
      padding: 7px 24px !important;
  font-size: 12px;
}
.btn-login:hover,
.btn-login:focus {
  background-color: #23684b !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
}




@media (max-width:1040px) {
  .triangle-sec1 {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
  }

  .triangle-sec2 {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
  }

  .triangle-sec3 {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
  }

  .environmental-social-governance-sec ul {
    padding: 0 10px;
  }

  .environmental-social-governance-sec ul li {
    font-size: 14px;
  }
  .environmental-social-governance-sec .pillar {
    /* border-radius: 30px 30px 5px 5px; */
}
.carbon-footprint .carbon-footprint-card {
    height: 95%;
    margin-bottom: 25px;
}

}



@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-slider {
    height: auto;
}
.hero-slider .slick-slide img {
    height: auto;
}
.hero-sec-info .row {
    height: auto;
}
.hero-sec-info {
                 padding-top: 125px;
   height: auto;
      background-color: transparent;
}
.modal.services-popup .modal-dialog {
    margin: 0 auto 20px;
}


    .environmental-social-governance-sec .pillar {
        border-radius: 0;
        width: 100%;
    }
        .triangle-sec1 {
        border-left: 115px solid transparent;
        border-right: 115px solid transparent;
    }
        .triangle-sec2 {
        border-left: 115px solid transparent;
        border-right: 115px solid transparent;
    }
        .triangle-sec3 {
        border-left: 115px solid transparent;
        border-right: 115px solid transparent;
    }
    .address-section .connect-info .form-group textarea.form-control {
      height: auto;
    }
}




@media only screen and  (max-width: 767px) {
.address-section .address-sec {
    padding: 15px 15px;
}
.address-section .connect-info {
    /* margin-top: 20px; */
    padding: 15px 15px;
}
.connect-info .bootstrap-select>.dropdown-toggle.bs-placeholder {
    margin-bottom: 15px;
}
.address-section .connect-info .form-group textarea.form-control {
      height: auto;
    }
    .address-section .address-info p {
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

}


/* Large Mobile :480px. */
@media only screen and  (max-width: 575.98px) {
  .footprint-text h4 {
      font-size: 16px;
      text-align: center;
  }
  .carbon-footprint-head h2 {
      font-size: 20px;
  }
      .carbon-footprint-info-sec .row .footprint-text h4 {
        text-align: center;
    }

    .faq .faq-image img{
      width: 100%;
      height: auto;
    }
  .footer-top .footer-link ul li {
    width: 50%;
    float: left;
  }
.address-section .address-info p {
    font-size: 15px;
    margin-bottom: 20px;
}

  .connect-us-hero-sec img {
      max-width: 100%;
      padding: 0 15px;
  }
  .faq .btn-link {
    padding: 7px 8px 7px;
    font-size: 13px;
  }
  .faq .btn-link:after {
    top: 60%;
    right: 15px;
  }
      .address-section .connect-info {
        margin-top: 15px;
        padding: 15px;
    }
    
    #autopopup-sec #pop-up {
      right: 50%;
      left: 50%;
      transform: translate(-50%, 0%);
    }
    

}





@media (max-width: 480px) {

  .updated-navigation-sec nav .navbar {
    padding: 0 0px;
  }

  .btn-login {
    font-weight: 400;
    padding: 5px 15px !important;
    font-size: 11px;
  }

  .hero-sec-info .hex {
    width: 23.3%;
  }

  .btn-login {
    float: right;
  }

  .hero-sec-info .hero-content {
    margin: 0px 0 65px;
  }

  .modal.services-popup .modal-dialog {
    /* max-width: 18rem; */
    max-width: 28rem;
        margin: 65px 15px 10px;
  }

  .modal .modal-dialog .modal-content .modal-body img {
    max-width: 100%;
    margin-bottom: 0px;
  }

  .esg-prakrit .esg-prakrit-info h2 {
    font-size: 20px;
  }

  .carbon-footprint h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .carbon-footprint .carbon-footprint-card {
    margin-bottom: 25px;
  }

  .sec-heading {
    font-size: 30px;
  }

  .sec-heading2 {
    font-size: 30px;
    margin-bottom: 0px;
  }

  .environmental-social-governance-sec ul {
    padding: 0px 15px;
  }

  .our-Partners-sec h2 {
    font-size: 26px;
  }

  .carbon-footprint {
    padding: 35px 0;
  }

  .our-Partners-sec {
    padding: 35px 0;
  }

  .counter-sec {
    padding: 35px 0;
  }

  .environmental-social-governance-sec {
    padding: 40px 0;
  }




  .environmental-social-governance-sec .pillar {
    border-radius: 15px 15px 4px 4px;
    margin: 0 0 30px;
    width: 100%;
  }

  .triangle-sec1 {
    display: none;
  }

  .triangle-sec2 {
    display: none;
  }

  .triangle-sec3 {
    display: none;
  }

  .counter-sec .col-xs-3 {
    width: 50%;
  }

  .counter-sec .counter-info {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    margin: 0 auto 30px;
  }

  .updated-navigation-sec nav .navbar .logo a {
    margin-right: 0;
  }
      .navbar-brand img {
        height: 45px;
    }
  .start-header.scroll-on .navbar-brand img {
        height: 50px;
    }

  .footer-top {
    padding: 40px 0;
    background-color: #ffffff66;
  }

  .footer-address ul li .cont p {
            font-size: 14px;
  }

  .footer-top .footer-link ul li a {
          font-size: 14px;
        text-decoration: none;
        margin-bottom: 5px;
        display: inline-block;
  }
  .hero-sec-info {
    background-color: transparent;
}

    .footer-top .footer-link ul li {
        width: 100%;
        float: none;
    }

      .address-section .address-info p {
        display: flex;
        align-items: center;
    }


}





@media (max-width: 320px) {
  .btn-login {
    float: right;
  }

  .hero-slider {
    height: 680px;
  }

  .hero-slider .slick-slide img {
    height: 680px;
  }

  .hero-sec-info {
    height: 95%;
  }

  .sec-heading {
    font-size: 30px;
  }

  .counter-sec .col-xs-3 {
    width: 100%;
  }

  .counter-sec .counter-info {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin: 0 auto 25px;
  }

  .counter-sec .counter-info h4 {
    font-size: 22px;
  }

  .environmental-social-governance-sec .pillar {
    border-radius: 15px 15px 4px 4px;
    margin: 0 0 30px;
    width: 100%;
  }

  .triangle-sec1 {
    display: none;
  }

  .triangle-sec2 {
    display: none;
  }

  .triangle-sec3 {
    display: none;
  }
  .carbon-footprint-head h2 {
    font-size: 18px;
    font-weight: 500;
  }
.carbon-footprint-header-sec .form-group {
    flex-direction: column;
    align-items: flex-start;
}
.carbon-footprint-header-sec .form-group input.form-control {
    border-radius: 4px;
}
.carbon-footprint-header-sec .form-group label {
     margin: 4px 0 4px;
    font-weight: 500;
}
.carbon-footprint-submit-btn, .calculate-btn {
    border-radius: 4px;
    padding: 4px 20px;
    width: 100%;
    font-weight: 500;
    font-weight: 400;
    margin-top: 20px;
    font-size: 15px;
}

.carbon-footprint-info-sec .row .form-group input {
    width: 100% !important;
}
.carbon-footprint-info-sec .checkbox-sec {
    font-size: 14px;
}
.footprint-text h4 {
  text-align: center;
  font-size: 14px;
}

.experience-our-tool .tool-title h2 {
      font-weight: 500;
    font-size: 22px;
    padding: 0;
}

.report .card .card-body .card-img {
    flex-direction: column;
    align-items: center;
}
.report img {
    object-fit: contain;
}
.report .card .card-body .col-lg-12 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.report .card .card-body .row img {
    height: auto;
    object-fit: cover;
}
.report h1 {
    font-size: 18px;
}

.address-section .address-sec h2::before {
    left: auto;
}

.connect-us-hero-sec img {
    max-width: 100%;
    padding: 0 15px;
}
.address-section .address-sec h2 {
    font-size: 24px;
     margin-bottom: 20px;
}
.address-section .address-sec h2::before {
    display: none;
}
.address-section .address-sec {
    padding: 15px 15px;
}
.address-section .address-info p i {
    padding: 5px;
    font-size: 15px;
}
.address-section .address-info p {
    font-size: 15px;
    margin-bottom: 20px;
}
.address-section {
    padding: 30px 0 50px;
}
.address-section .connect-info {
    margin-top: 15px;
        padding: 15px 15px;
}
.address-section .connect-info h2 {
    font-size: 16px;
}
.address-section .form-horizontal .bootstrap-select {
    margin-bottom: 15px;
}

.address-section .submit-btn-sec .submit-btn {
    width: 100%;
}


}