@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"),
    url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"),
    url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kodchasan";
  src: url("../fonts/Kodchasan-Regular.woff2") format("woff2"),
    url("../fonts/Kodchasan-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.eot");
  src: url("../fonts/Poppins-ExtraBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Poppins-ExtraBold.woff2") format("woff2"),
    url("../fonts/Poppins-ExtraBold.woff") format("woff"),
    url("../fonts/Poppins-ExtraBold.svg#Poppins-ExtraBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,500;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,500;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
  padding-left: 0px;
  margin-bottom: 0px;
}
a {
  text-decoration: none;
}
p {
  font-family: "Poppins";
}
/* components start */
/* buttons */

/* .more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    color: #000;
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 55px;
    border: 1px solid #000;
    padding: 14px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.more-btn::before {
    position: absolute;
    content: "";
    width: 12%;
    height: 100%;
    background-color: #43C206;
    left: 0;
    transition: all 0.4s ease-in-out;
    z-index: -1;
} */

/* .hero-banner .each-slider .text-content .discover-btn::before, .hero-banner .each-slider .text-content .discover-btn::after {
    position: absolute;
    top: 0;
    display: block;
    height: 100%;
    width: 0;
    background-color: #43C206;
    content: "";
}
.more-btn:hover {
    transform: scale(1.03);
    color: #FFF;
    position: relative;
    z-index: 1;
    border-color: transparent;
}

.more-btn:hover:before {
    width: 100%;
} */
.more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  color: #fff;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 55px;
  border: 1px solid #fff;
  padding: 14px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  font-family: "Poppins";
}
.more-btn::before,
.more-btn::after {
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
  width: 0;
  background-color: #43c206;
  content: "";
}
.more-btn::before {
  left: 0;
  width: 10%;
}
.more-btn span {
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.more-btn::after {
  right: 0;
  transition: width 0.3s;
}
.more-btn:hover::before {
  width: 100%;
  transition: width 0.3s;
}
.more-btn:hover::after {
  background-color: transparent;
  width: 100%;
}
.more-btn:hover span {
  color: #fff;
}
/* components end */

body {
  max-width: 100%;
  position: relative;
  scroll-behavior: smooth;
}

.mob-menu-sec {
  display: none;
}

.container-max {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0px 15px;
}

.headerMain {
  width: 100%;
  position: absolute;
  z-index: 99;
  padding-top: 25px;
}

.is-sticky .headerMain {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 5px 16px rgb(163 163 163 / 40%);
  padding: 12px 20px;
  animation: slideDown 0.35s ease-out;
  background-color: rgb(0 0 0 / 75%);
  width: 100%;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

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

.header .logo a {
  color: #fff;
  font-family: "Kodchasan";
  font-size: 40px;
  font-weight: 500;
  text-decoration: none;
}

.header .nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #fff;
  position: relative;
  /* overflow: hidden; */
}

.header .nav .nav-link {
  color: #fff;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 20px;
  position: relative;
  z-index: 1;
  border-radius: 50px;
}

.header .nav > ul > li > a::before,
.header .nav > ul > li > a::after {
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
  width: 0;
  background-color: #43c206;
  content: "";
  z-index: -1;
  border-radius: 30px;
}
.header .nav > ul > li > a::before {
  left: 0;
}
.hero-banner .each-slider .text-content .discover-btn::after {
  right: 0;
  transition: width 0.3s;
}

#bannervideo{
  display: none;
  padding: 0;
}

.bannervideoWrap{
  width: 100%;
  height: 100%;
}

.bannervideoWrap video{
  width: 100%;
  height: 100%;
}

.header .nav > ul > li > a:hover::before {
  width: 100%;
  transition: width 0.3s;
}
.header .nav > ul > li > a:hover::after {
  background-color: transparent;
  width: 100%;
}

.header .social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #fff;
  /* position: relative; */
  overflow: hidden;
}

.header .social .social-link {
  height: 42px;
  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header .social .social-link .social-icon {
  height: 14px;
  width: 14px;
  object-fit: contain;
  position: relative;
}

.header .social .social-link::before,
.header .social .social-link::after {
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
  width: 0;
  background-color: #43c206;
  content: "";
  z-index: -1;
  border-radius: 30px;
  transition: 0.4s;
}

.header .social .social-link:hover:before {
  height: 100%;
  width: 100%;
}

.header li.menu-item-has-children {
  position: relative;
  transition: all 0.5s;
}

.header li.menu-item-has-children .sub-menu {
  position: absolute;
  background-color: #ffffff;
  flex-direction: column;
  border: none;
  border-radius: 5px;
  min-width: 185px;
  align-items: flex-start;
  transition: all 0.5s;
  transform: translateY(60px);
  visibility: hidden;
  opacity: 0;
  border-top: 3px solid #46bd0e;
  top: 50px;
  box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.header li.menu-item-has-children .sub-menu a {
  padding: 9px 15px;
}

.header li.menu-item-has-children .sub-menu.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header li.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header li.menu-item-has-children .sub-menu li {
  width: 100%;
  transition: all 0.5s;
}

.header li.menu-item-has-children .sub-menu li:hover {
  background-color: #35a500;
}

.header li.menu-item-has-children .sub-menu li:hover a {
  color: #fff;
}

.header li.menu-item-has-children a {
  padding-right: 30px !important;
}

.header li.menu-item-has-children .sub-menu a {
  color: #35a500;
}

#menu-toggle {
  display: none;
}

.header .toggleBtn {
  position: absolute;
  right: 10px;
  color: #fff;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.header .current_page_item a,
.header .current-menu-parent a {
  background-color: #43c206;
  border-radius: 30px;
}

.header .current_page_item ul li a,
.header .current-menu-parent ul li a {
  background-color: transparent;
  border-radius: 0;
}

.menu-header-menu-container{
  padding-bottom: 15px;
}

.main-page-footer .content .links .link:hover {
  color: #43c206;
}

.first-section {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.first-section .hero-banner {
  width: 100%;
  position: relative;
}

.first-section .hero-banner::before {
  position: absolute;
  content: "";
  border-radius: 565px;
  background-color: #1c2023;
  filter: blur(200px);
  width: 40%;
  height: 300px;
  top: -138px;
  left: 32%;
  z-index: 1;
}

.hero-banner .hero-bg {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  position: relative;
}

.hero-banner .hero-bg .hero-img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  object-fit: cover;
}

.hero-banner .hero-bg::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-banner .each-slider .content {
  position: relative;
}
.each-slider {
  position: relative;
}
.bannerContent {
  position: absolute;
  left: 0;
  top: 50% !important;
  /* top: 45% !important; */
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
  bottom: auto;
}
.hero-banner .each-slider .text-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
  font-family: "Poppins";
  color: #fff;
  z-index: 9;
}

.hero-banner .each-slider .text-content::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 840px;
  background: #1c2023;
  filter: blur(262.5px);
  z-index: -1;
}

.hero-banner .each-slider .text-content h2 {
  font-size: 50px;
  font-weight: 700;
}
.hero-banner .each-slider .text-content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
.hero-banner .each-slider .text-content .discover-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  color: #fff;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 55px;
  border: 1px solid #fff;
  padding: 14px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  font-family: "Poppins";
}
.hero-banner .each-slider .text-content .discover-btn::before,
.hero-banner .each-slider .text-content .discover-btn::after {
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
  width: 0;
  background-color: #43c206;
  content: "";
}

.hero-banner .each-slider .text-content .discover-btn::before {
  left: 0;
  width: 10%;
}
.hero-banner .each-slider .text-content .discover-btn span {
  position: relative;
  z-index: 1;
}
.hero-banner .each-slider .text-content .discover-btn::after {
  right: 0;
  transition: width 0.3s;
}
.hero-banner .each-slider .text-content .discover-btn:hover::before {
  width: 100%;
  transition: width 0.3s;
}
.hero-banner .each-slider .text-content .discover-btn:hover::after {
  background-color: transparent;
  width: 100%;
}

.menuOpenBg {
  transition: all .5s;
}

.menuOpenBg.active {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(155, 155, 155, 0.4);
  z-index: 100;
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(4px);
  top: 0;
}

.getTouchBtnDiv {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 1rem;
  height: 40px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  width: 190px;
  z-index: 20;
}

.getTouchBtn {
  /* background-color: #24be35; */
  background-color: #1475a3;
  border-radius: 15px 15px 0 0;
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 17px;
  border: 1px solid transparent;
  box-shadow: 0 0 6px 0 #ccc;
  transition: all .5s;
}

.getTouchBtn:hover{
  background-color: #fff;
  border: 1px solid #1475a3;
  color: #1475a3;
}

.sidebarForm {
  position: fixed;
  width: 100%;
  max-width: 300px;
  transform: translateX(120%);
  right: 0;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  min-width: 300px;
  background: #fff;
  z-index: 110;
  transition: all .5s;
  padding: 30px 20px;
  box-shadow: 2px 0 10px 2px rgba(0, 0, 0, .2);
}

.sidebarForm.active {
  transform: translateX(0);
}

.sidebarForm::-webkit-scrollbar{
  width: 5px;
}

.sidebarForm::-webkit-scrollbar-track{
  background-color: #ccc;
}

.sidebarForm::-webkit-scrollbar-thumb{
  background-color: #35a500;
}

.sidebarForm .sideMenuClose {
  position: absolute; 
  right: 10px;
  top: 8px;
  font-size: 22px;
}

.sidebarForm .sideMenuClose i {
  color: #35a500;
}

.sidebarForm .sectionMainTitle {
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.sidebarForm .sidebarHead {
  font-size: 17px;
  margin-top: 10px;
  margin-bottom: 18px;
}

.sidebarForm .form-group {
  margin-bottom: 20px;
}

.sidebarForm input, .sidebarForm select, .sidebarForm textarea {
  outline: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #dee2e6 !important;
  height: 50px;
  width: 100%;
  font-size: 15px;
}

.sidebarForm textarea {
  height: 100px;
}

.sidebarForm input[type=submit] {
  background: #35a500;
  color: #fff;
  font-size: 16px;
  border: 1px solid transparent !important;
  transition: all .5s ease;
}

.titleSub {
  margin-bottom: 15px;
}

.titleSub span {
  color: #00559f;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}

.menu_link_box:not(:last-child) {
  margin-bottom: 8px;
}

.quickAdd i {
  font-size: 16px;
  margin-right: 10px;
}

.menu_link_box span, .menu_link_box a{
  font-size: 16px;
  color: #3a3a3a;
  font-weight: 500;
}

.menu_link_box a:hover{
  font-size: 16px;
}

.sidebarForm .wpcf7-spinner{
  display: none;
}

.sidebarBtnDiv p{
  margin-bottom: 0;
}

/* slick dot styling */
.hero-banner .slick-dots {
  display: flex;
  position: absolute;
  z-index: 2;
  margin-top: 0;
  gap: 18px;
  /* left: 305px; */
  left: calc((100% - 1320px) / 2);
  /* bottom: 250px; */
  bottom: 160px;
  padding-left: 15px;
}
.hero-banner .slick-dots li button {
  visibility: hidden;
}
.hero-banner .slick-dots li {
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  list-style: none;
  font-size: 0;
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.hero-banner .slick-dots .slick-active {
  width: 77px;
  border-radius: 20px;
}
.hero-banner .slick-dots .slick-active::before {
  width: 18px;
  height: 18px;
  position: absolute;
  content: "";
  background-color: #43c206;
  border-radius: 50%;
  top: 3px;
  right: 3px;
}
.play-video {
  position: relative;
}
.play-video hr {
  height: 1px;
  width: 80px;
  position: absolute;
  /* top: -226px; */
  bottom: 150px;
  right: 0px;
  border: 1px solid #fff;
  z-index: 2;
}
.play-video .play-btn {
  width: 99px;
  height: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  z-index: 2;
  /* top: -260px; */
  bottom: 115px;
  right: 80px;
  text-decoration: none;
  border-radius: 55px;
  border: 1px solid #fff;
  padding: 6px;
}
/* second section starts */
.second-section {
  position: relative;
  border-radius: 108px 108px 0px 0px;
  background: #eafaff;
  margin-top: -120px;
  width: 100%;
  padding: 100px 0px;
  z-index: 2;
}
.second-section .text-con,
.second-section .img-con {
  width: 100%;
  height: 762px;
}

.second-section .text-con {
  display: flex;
  flex-direction: column;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  background-image: url(../images/pattern-bg.png);
  padding: 80px 32px;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: cover;
}
.second-section .text-con h2 {
  color: #000;
  font-family: "Poppins";
  font-size: 45px;
  font-weight: 300;
}
.second-section .text-con span {
  color: #fff;
  font-family: "Kodchasan";
  font-size: 50px;
  font-weight: 700;
}
.second-section .text-con p {
  color: #fff;
  font-family: "Poppins";
  font-size: 30px;
  font-weight: 400;
}
.second-section .img-con {
  border-radius: 35px 35px 0px 35px;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid #eafaff;
}
.second-section .img-con .car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-repeat: no-repeat;
}
.second-section .img-con .blank {
  width: 280px;
  height: 100px;
  border-radius: 60px 0px 0px 0px;
  background: #eafaff;
  position: absolute;
  z-index: 1;
  bottom: 0px;
  right: 0;
}

.second-section .img-con::before {
  position: absolute;
  content: "";
  height: 50px;
  width: 40px;
  z-index: 2;
  background-image: url(../images/curve.png);
  background-repeat: no-repeat;
  /* object-fit: cover; */
  bottom: -11px;
  left: auto;
  right: 279px;
  background-size: 100%;
}
.second-section .img-con::after {
  position: absolute;
  content: "";
  height: 60px;
  width: 60px;
  z-index: 2;
  background-image: url(../images/curve.png);
  background-repeat: no-repeat;
  object-fit: cover;
  bottom: 90px;
  right: -11px;
}

/* common button */

.second-section .blank {
  display: flex;
  justify-content: end;
  align-items: end;
  padding: 4px 16px;
}

.second-section .more-btn {
  color: #43c206;
  border: 1px solid #43c206;
  margin-left: auto;
}

/* .second-section .more-btn:hover {
    color: #FFF;
} */

/* common button ends */

.second-section .count-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.25); */
  margin-top: 100px;
  position: relative;
}

.second-section .count-container hr {
  height: 90px;
  width: 1px;
  background: #000;
}

.second-section .count-container .each-content {
  width: 25%;
  display: flex;
  padding: 0px 5px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.second-section .count-container .each-content:not(:last-child):after {
  position: absolute;
  content: "";
  right: -2px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background-color: #00000046;
}

.second-section .count-container .each-content .line-div::after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.25);
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
}

.second-section .count-container .each-content .inner-content {
  width: 100%;
  max-width: 75%;
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
  padding-top: 25px;
}

.second-section .count-container .each-content::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 0;
  bottom: 0;
  border-radius: 20px 20px 0px 0px;
  background: #030b1d;
  transition: all 0.4s ease-in-out;
}

.second-section .count-container .each-content:hover:before {
  height: 120%;
  padding: 24px;
}
.second-section .count-container .each-content:hover .info {
  color: #fff;
}

.second-section .count-container .each-content:hover .number {
  color: #43c206;
}

.second-section .count-container .inner-content .number {
  font-family: "Poppins";
  font-size: 50px;
  font-weight: 300;
}

.second-section .count-container .inner-content .info {
  font-family: "Poppins";
  font-size: 20px;
  height: 75px;
}

.third-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.commonSec.batterySec {
  /* padding: 0; */
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  padding-bottom: 0;
}
.third-section .batterySec_bg {
  background-size: 100% !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
  /* height: 600px; */
  height: 700px;
  /* padding: 100px 0; */
}
.batterySec_mob {
  display: none;
}
.third-section .bg-img img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
}

.third-section .content {
  width: 80%;
  position: absolute;
  z-index: 1;
  margin-top: -600px;
  margin-left: 15%;
}

.batterySec h2.title {
  font-family: "Poppins";
  font-size: 45px;
  font-weight: 300;
  text-align: left;
  color: #43c206;
  margin-bottom: 30px;
}
.batterySec p {
  color: #fff;
  margin-bottom: 30px;
  padding-right: 180px;
  font-size: 18px;
  line-height: 1.6;
}
/* common button */
.third-section .more-btn {
  color: #43c206;
  border: 1px solid #43c206;
}
#text-anim div {
  display: inline-block;
}
/* .third-section .more-btn:hover {
    transform: scale(1.03);
    color: #FFF;
} */

/* common button ends*/

.third-section .content .text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.third-section .content .text-content .title {
  color: #43c206;
  font-family: "Poppins";
  font-size: 45px;
  font-weight: 500;
  text-align: left;
}

.third-section .content .text-content .info {
  color: #fff;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
}

.fourth-section {
  width: 100%;
  background-color: #fff;
  position: relative;
}

.content .text-con .sec-head,
.content .text-con .head-info {
  color: #000;
  font-family: "Poppins";
  text-align: center;
}

.content .text-con .sec-head {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 24px;
}

.content .text-con .head-info {
  font-size: 18px;
  font-weight: 400;
}

/* card flip css */

.cards {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}

.cards .each-card {
  width: 100%;
}
.valueCardWrap {
  padding-top: 40px;
}
/* From Uiverse.io by joe-watson-sbf */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 386px;
  perspective: 1000px;
  font-family: sans-serif;
}

.title {
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* border: 1px solid coral; */
  border-radius: 25px;
  padding: 32px;
}

.flip-card-front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.flip-card-back {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-image: url(../images/flip-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #000;
  box-shadow: 15px 20px 41px 0px rgba(0, 0, 0, 0.16);
  transform: rotateY(180deg);
}

.flip-card-Para {
  height: 185px;
  overflow-y: auto;
}

.flip-card-Para::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.flip-card-Para::-webkit-scrollbar-track {
  background-color: #ccc;
}

.flip-card-Para::-webkit-scrollbar-thumb {
  background-color: #43c206;
}

.each-card .number {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: #cfd8cc;
  font-family: "Poppins";
  font-size: 80px;
  font-weight: 900;
}

.each-card .title {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  color: #000;
  font-family: "Poppins";
  font-size: 30px;
  font-weight: 700;
  text-align: left;
}

.each-card .inline-span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.each-card .inline-span .img-con {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 85px;
  min-height: 85px;
  min-width: 85px;
  background-color: #fff;
  border-radius: 50%;
}

.each-card .inline-span .img-con svg {
  height: 80%;
  width: 80%;
}

.each-card p {
  color: #000;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}

/* fifth section */

.fifth-section {
  background-color: #dffad0;
}

.fifth-section .container-fluid {
  max-width: 85%;
}

.fifth-section .chain {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.fifth-section .chain .each-circle {
  position: relative;
}

.fifth-section .chain .each-circle p {
  color: #000;
  text-align: center;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  margin-top: 16px;
}

.fifth-section .chain .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 142px;
  height: 142px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(10px 14px 70px rgba(0, 0, 0, 0.16));
  padding: 33px;
}

.fifth-section .chain .circle img {
  width: 80%;
}

.fifth-section .chain .circle::before {
  position: absolute;
  content: "";
  width: 117px;
  height: 117px;
  background-color: #fff;
  border-radius: 50%;
  z-index: -2;
  box-shadow: 10px 14px 70px rgba(0, 0, 0, 0.16);
}

.fifth-section .chain .down {
  margin-top: 100px;
}

.fifth-section .chain svg {
  width: 80%;
  height: 80%;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.sixth-section {
  position: relative;
  background: #a4e2ff;
}

.sixth-section .sec-head {
  color: #000;
  text-align: center;
  font-family: "Poppins";
  font-size: 45px;
  font-weight: 500;
  margin: 40px 0px;
}

.sixth-section .slider-con .each-slider .slider-inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.sixth-section .slider-con .each-slider .img-con,
.sixth-section .slider-con .each-slider .text-con {
  width: 48%;
}
.sixth-section .slider-con .each-slider .img-con {
  border-radius: 30px;
}
.sixth-section .slider-con .each-slider .img-con img {
  width: 100%;
  border-radius: 35px;
}

.sixth-section .slider-con .each-slider .text-con {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sixth-section .slider-con .each-slider .text-con .info {
  color: #000;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
}

.sixth-section .slider-con .each-slider .inline-div {
  display: flex;
  align-items: center;
}

.sixth-section .slider-con .each-slider .inline-div .details {
  padding-right: 60px;
}

.sixth-section .slider-con .each-slider .inline-div .details .prof {
  color: #000;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}

.sixth-section .slider-con .each-slider .inline-div .details .name {
  color: #006c85;
  font-family: "Poppins";
  font-size: 25px;
  font-weight: 500;
}

.sixth-section .slider-con .each-slider .inline-div hr {
  width: 60px;
  color: #000;
  transform: rotate(90deg);
}

.sixth-section .slider-con .each-slider .inline-div .play-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #000;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 500;
  padding-left: 60px;
}

/* slick button style */

.sixth-section .slider-con .slick-prev,
.sixth-section .slider-con .slick-next {
  position: absolute;
  font-size: 0;
  border: none;
  width: 30px;
  height: 30px;
  bottom: -45px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.sixth-section .slider-con .slick-prev {
  left: 5px;
}

.sixth-section .slider-con .slick-prev::before {
  position: absolute;
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #828282;
  height: 30px;
  width: 30px;
  top: -2px;
  left: 0px;
  transform: rotate(180deg);
}

.sixth-section .slider-con .slick-prev:hover:before {
  color: #fff;
}

.sixth-section .slider-con .slick-prev:hover {
  background-color: #43c206;
}

.sixth-section .slider-con .slick-next {
  left: 50px;
}

.sixth-section .slider-con .slick-next::before {
  position: absolute;
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #828282;
  height: 30px;
  width: 30px;
  top: 3px;
  left: 1px;
}

.sixth-section .slider-con .slick-next:hover:before {
  color: #fff;
}

.sixth-section .slider-con .slick-next:hover {
  background-color: #43c206;
}

.sixth-section .slider-con .slick-next::after {
  position: absolute;
  content: "";
  height: 43px;
  width: 45px;
  border-top: 1px solid #1c202371;
  border-right: 1px solid #1c202371;
  border-bottom: 1px solid #1c202371;
  bottom: -7px;
  right: -7px;
  border-radius: 0px 50px 50px 0px;
}

.sixth-section .slider-con .slick-prev::after {
  position: absolute;
  content: "";
  height: 43px;
  width: 45px;
  border-top: 1px solid #1c202371;
  border-left: 1px solid #1c202371;
  border-bottom: 1px solid #1c202371;
  bottom: -7px;
  left: -7px;
  border-radius: 50px 0px 0px 50px;
}

.brand-slider {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.brand-slider .img-con {
  height: 60px;
  opacity: 0.6;
}
.client-slider {
  padding-top: 20px;
}
.brand-slider .img-con img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* seventh section */

.seventh-section {
  overflow-y: hidden;
}

.seventh-section .sec-head {
  color: #000;
  font-family: "Poppins";
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 16px;
}

.seventh-section .head-info {
  color: #000;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  margin: 0px;
}

.seventh-section .metal-items .each-slide {
  padding: 40px 10px;
}

.seventh-section .metal-items .each-slide .inner-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 245px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}

.seventh-section .metal-items .each-slide .inner-slide:hover {
  /* height: 295px; */
  background-image: url(../images/flip-bg.png);
  border: none;
  box-shadow: 14px 11px 43px 0px rgba(0, 0, 0, 0.21);
  transform: scaleY(1.2);
  transition: all 0.4s ease-in-out;
}

.seventh-section .metal-items .each-slide .inner-slide:hover .img-con {
  transform: scaleY(0.8);
}

.seventh-section .metal-items .each-slide .inner-slide:hover .metal-name {
  transform: scaleY(0.8);
  background-color: #fff;
  color: #43c206;
}

.seventh-section .metal-items .each-slide .inner-slide .metal-name {
  margin-bottom: -4px;
  background-color: #43c206;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px 8px 0px 0px;
  position: relative;
  bottom: -9px;
  font-family: "Poppins";
  font-size: 20px;
  transition: all 0.2s ease-in-out;
  bottom: 0px;
}

.seventh-section .metal-items .each-slide .inner-slide .img-con {
  width: 200px;
  height: 200px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.seventh-section .metal-items .each-slide .inner-slide .img-con img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* slick button style */

.seventh-section .metal-items .slick-prev,
.seventh-section .metal-items .slick-next {
  position: absolute;
  font-size: 0;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  z-index: 2;
}

.seventh-section .metal-items .slick-prev {
  right: 100px;
  /* top: -25px; */
  top: -38px;
}

.seventh-section .metal-items .slick-prev::before {
  position: absolute;
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #828282;
  height: 30px;
  width: 30px;
  top: -2px;
  left: 0px;
  transform: rotate(180deg);
}

.seventh-section .metal-items .slick-prev:hover:before {
  color: #fff;
}

.seventh-section .metal-items .slick-prev:hover {
  background-color: #43c206;
}

.seventh-section .metal-items .slick-next {
  /* top: -25px; */
  top: -38px;
  right: 54px;
}

.seventh-section .metal-items .slick-next::before {
  position: absolute;
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #828282;
  height: 30px;
  width: 30px;
  top: 3px;
  left: 1px;
}

.seventh-section .metal-items .slick-next:hover:before {
  color: #fff;
}

.seventh-section .metal-items .slick-next:hover {
  background-color: #43c206;
}

.seventh-section .metal-items .slick-next::after {
  position: absolute;
  content: "";
  height: 43px;
  width: 45px;
  border-top: 1px solid #1c202371;
  border-right: 1px solid #1c202371;
  border-bottom: 1px solid #1c202371;
  bottom: -7px;
  right: -7px;
  border-radius: 0px 50px 50px 0px;
}

.seventh-section .metal-items .slick-prev::after {
  position: absolute;
  content: "";
  height: 43px;
  width: 45px;
  border-top: 1px solid #1c202371;
  border-left: 1px solid #1c202371;
  border-bottom: 1px solid #1c202371;
  bottom: -7px;
  left: -7px;
  border-radius: 50px 0px 0px 50px;
}

/* eighth section */

.eighth-section {
  background-color: #dffad0;
}

.eighth-section .content .sec-head {
  color: #000;
  text-align: center;
  font-family: "Poppins";
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 48px;
}

.eighth-section .content .both-content {
  display: flex;
}

.eighth-section .content .both-content .text-content,
.eighth-section .content .both-content .img-content {
  width: 98%;
}

.text-content .text-box {
  display: flex;
  padding: 16px;
  border-radius: 30px;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.text-content .text-box::after {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #43c206;
  content: "";
  bottom: -15px;
  left: 0;
}
.text-content .text-box:not(:last-child) {
  margin-bottom: 30px;
}
.text-content .text-box:hover {
  background-image: url(../images/hover-bg.png);
  box-shadow: 15px 20px 41px 0px rgba(0, 0, 0, 0.16);
  background-repeat: no-repeat;
  object-fit: cover;
  background-size: 100% 100%;
}

.text-content .text-box:hover > .num {
  color: #000;
}

.text-content .text-box .num {
  width: 120px;
  color: #a6df8b;
  font-family: "Poppins";
  font-size: 50px;
  font-weight: 900;
}

.text-content .text-box .info {
  text-align: left;
  width: calc(100% - 120px);
  padding-left: 15px;
}
.text-content .text-box .info .title {
  color: #000;
  font-family: "Poppins";
  font-size: 30px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 10px;
}

.text-content .text-box .info p {
  color: #000;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
}

.eighth-section .text-content .text-box .info p {
  display: inline;
}

.read-more {
  color: #35a500;
  font-size: 18px;
  font-weight: 600;
}

.text-content .text-box .info .detail .read-more {
  color: #35a500;
  font-weight: 500;
  text-decoration: none;
}

.img-content {
  border-radius: 25px;
  overflow: hidden;
}

.img-content img {
  width: 100%;
}

.text-content hr {
  height: 3px;
  color: #43c206;
}

/* common button */
.eighth-section .more-btn,
.ninth-section .more-btn {
  margin-left: auto;
  border: 1px solid #43c206;
  color: #43c206;
}
.susBtn {
  padding-top: 20px;
}
/* common button ends*/

/* ninth section */

.ninth-section {
  background-color: #dffad0;
  overflow: hidden;
}

.ninth-section .sec-head {
  color: #000;
  text-align: left;
  font-family: "Poppins";
  font-size: 45px;
  font-weight: 500;
}

.ninth-section .head-info {
  color: #000;
  font-family: "Inter";
  font-size: 18px;
  font-weight: 400;
}

/* common button */
.ninth-section .more-btn {
  margin-left: auto;
}

/* common button ends*/

.ninth-section .blogs {
  margin-left: 0px;
  margin-top: 30px;
}

.ninth-section .blogs .each-blog {
  width: 630px;
  /* height: 450px; */
  height: auto;
  margin-bottom: 30px;
}

.ninth-section .blogs .each-blog .blog-link {
  text-decoration: none;
}

.ninth-section .blogs .each-blog .blog-content {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ninth-section .blogs .each-blog .blog-content .green-blank {
  position: absolute;
  width: 100%;
  max-width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.78;
  background-color: #194a02;
  top: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.ninth-section .blogs .each-blog:hover .green-blank {
  opacity: 0.7;
}

.ninth-section .blogs .each-blog:hover .blog-content .title {
  color: #43c206;
  font-size: 25px;
  font-weight: 500;
}

.ninth-section .blogs .each-blog .blog-content .preview {
  height: 360px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.ninth-section .blogs .each-blog .blog-content .preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ninth-section .blogs .each-blog .blog-content .preview .date {
  color: #fff;
  font-family: "Inter";
  font-size: 18px;
  font-weight: 400;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12.5px);
  position: absolute;
  z-index: 2;
  bottom: 24px;
  right: 48px;
  padding: 8px 16px;
}
.blogs .slick-slide.slick-active .commnImgInner {
  transform: translate(-0%, 0%) !important;
}
/* .ninth-section .blogs .each-blog .blog-content .preview:after */

.ninth-section .blogs .each-blog .blog-content .preview .arrBtn {
  position: absolute;
  height: 60px;
  width: 60px;
  background-color: #fff;
  z-index: 2;
  display: inline-block;
  top: 20px;
  left: calc(100% - 80px);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.ninth-section .blogs .each-blog .blog-content .preview .arrBtn:before {
  position: absolute;
  content: "\f061";
  font-family: "FontAwesome";
  font-size: 22px;
  height: 24px;
  width: 24px;
  /* z-index: 2; */
  color: #084593;
  top: 15px;
  left: 47%;
  top: 45%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.ninth-section .blogs .each-blog .blog-content:hover .arrBtn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
}

.ninth-section .blogs .each-blog .blog-content:hover .preview .arrBtn:before {
  color: #43c206;
}

.ninth-section .blogs .each-blog .blog-content .title {
  color: #000;
  font-family: "Poppins";
  font-size: 25px;
  font-weight: 500;
  text-align: left;
  transition: all 0.4s ease-in-out;
}

.ninth-section .blogs .slick-list {
  margin-right: -400px !important;
}

/* slick prev & next button style */

.ninth-section .blogs .slick-prev,
.ninth-section .blogs .slick-next {
  position: absolute;
  font-size: 0;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.ninth-section .blogs .slick-prev {
  bottom: -45px;
  right: 95px;
}

.ninth-section .blogs .slick-prev::before {
  position: absolute;
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #828282;
  height: 30px;
  width: 30px;
  top: -2px;
  left: 0px;
  transform: rotate(180deg);
}

.ninth-section .blogs .slick-prev:hover:before {
  color: #fff;
}

.ninth-section .blogs .slick-prev:hover {
  background-color: #43c206;
}

.ninth-section .blogs .slick-next {
  bottom: -45px;
  right: 50px;
}

.ninth-section .blogs .slick-next::before {
  position: absolute;
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #828282;
  height: 30px;
  width: 30px;
  top: 3px;
  left: 1px;
}

.ninth-section .blogs .slick-next:hover:before {
  color: #fff;
}

.ninth-section .blogs .slick-next:hover {
  background-color: #43c206;
}

.ninth-section .blogs .slick-next::after {
  position: absolute;
  content: "";
  height: 43px;
  width: 45px;
  border-top: 1px solid #1c202371;
  border-right: 1px solid #1c202371;
  border-bottom: 1px solid #1c202371;
  bottom: -7px;
  right: -7px;
  border-radius: 0px 50px 50px 0px;
}

.ninth-section .blogs .slick-prev::after {
  position: absolute;
  content: "";
  height: 43px;
  width: 45px;
  border-top: 1px solid #1c202371;
  border-left: 1px solid #1c202371;
  border-bottom: 1px solid #1c202371;
  bottom: -7px;
  left: -7px;
  border-radius: 50px 0px 0px 50px;
}

/* tenth section */

.tenth-section {
  width: 100%;
  position: relative;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.tenth-section .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}

.tenth-section .content {
  position: relative;
  padding-bottom: 100px;
}

.tenth-section .sec-head {
  color: #231f20;
  text-align: center;
  font-family: "Poppins";
  font-size: 45px;
  font-weight: 500;
  padding-top: 100px;
  padding-bottom: 40px;
}

.acc-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 80%;
  margin: 0 auto;
}

.acc-container .acc {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px 24px;
}

.acc-content {
  display: none;
  padding-top: 16px;
  padding-right: 48px;
  padding-bottom: 8px;
}

.acc-content p {
  margin-bottom: 0;
  color: #000;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
}

.acc {
  margin-bottom: 10px;
  padding-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
  padding: 16px 78px;
}

.acc.active {
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-color: rgba(0, 0, 0, 0.25);
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

.accQues {
  margin-right: 20px;
}

.acc.active .acc-head::before {
  background-color: transparent;
}
.acc .acc-head::after {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(67, 194, 6, 1);
  display: flex;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  content: "\2b";
  font-family: "FontAwesome";
  position: absolute;
  right: 0px;
  top: 5px;
  font-size: 12px;
}
.acc.active .acc-head::after {
  content: "\f068";
}
.acc-head {
  display: flex;
  align-items: center;
  color: #231f20;
  font-family: "Poppins";
  font-size: 20px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}

.acc-head .white-circle {
  display: flex;
  height: 40px;
  width: 40px;
  background-color: #fff;
  position: relative;
  margin-left: auto;
  border-radius: 50%;
  z-index: -1;
}

.acc-head .white-circle::before,
.acc-head .white-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #43c206;
  transition: all 0.3s;
}

.acc-head .white-circle::before {
  width: 2px;
  height: 18px;
}

.acc-head .white-circle::after {
  width: 18px;
  height: 2px;
}

.acc-head p {
  color: #231f20;
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0;
}

.acc:first-child .acc-content {
  display: block;
}
.home .acc:first-child .acc-content,
.home .acc.active .acc-content {
  display: flex;
}
.home .acc:first-child .acc-content > span,
.home .acc.active .acc-content > span {
  color: #000;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
}
.acc-content-inner {
  padding-left: 15px;
  width: calc(100% - 40px);
}

.acc.active .white-circle::before {
  visibility: hidden;
}

/* common button */
.tenth-section .more-btn {
  margin-left: auto;
  border: 1px solid #43c206;
  color: #43c206;
}

/* common button ends*/

/* eleventh section */

.eleventh-section {
  width: 100%;
  /* height: 900px; */
  height: 720px;
  position: relative;
}

.eleventh-section .bg-map {
  width: 100%;
  position: absolute;
  /* z-index: -1; */
}

.eleventh-section .bg-map iframe {
  height: 720px;
  width: 100%;
}

.eleventh-section .contact-form {
  width: 524px;
  height: 509px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #fff;
  box-shadow: 19px 16px 73px 21px rgba(0, 0, 0, 0.25);
  position: relative;
  top: 200px;
  left: 16%;
  padding: 40px 32px;
}

.eleventh-section .contact-form .form-head {
  color: #000;
  font-family: "Poppins";
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 24px;
}

.eleventh-section .contact-form .label {
  color: #000;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
}

.eleventh-section .contact-form .input-box {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  margin-bottom: 24px;
}

.eleventh-section .contact-form .input-box:focus {
  outline: none;
}

/* common button */
.eleventh-section .more-btn {
  margin-left: auto;
  margin-top: 10px;
}

.eleventh-section .more-btn:hover {
  border-color: transparent;
}
.eleventh-section .more-btn:hover .subBtn {
  color: #fff;
}

.eleventh-section .more-btn .submit-btn {
  background-color: transparent;
}

.eleventh-section .more-btn .submit-btn {
  background-color: transparent;
  border: none;
  width: 100%;
  padding: 20px 20px;
}

/* common button ends*/

/* footer style */

.main-page-footer {
  background: #030b1d;
  position: relative;
}

.main-page-footer .content .card {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 500px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 11px 23px 47px 1px rgba(0, 0, 0, 0.23);
  position: relative;
  z-index: 1;
  margin-top: -180px;
  /* margin-top: -250px; */
}

.main-page-footer .content .card .card-left {
  width: 50%;
  /* padding: 80px 0px 80px 56px; */
  padding: 5% 0% 5% 5%;
}

.main-page-footer .content .card .card-right {
  width: 50%;
  position: relative;
}

.main-page-footer .content .card .card-head {
  color: #43c206;
  font-family: "Poppins";
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 25px;
}

.main-page-footer .content .card .card-info {
  color: #000;
  font-family: "Inter";
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 25px;
}

.main-page-footer .content .card .card-right img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  position: absolute;
  bottom: -1px;
  right: 0;
}

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

.main-page-footer .content .contact .contact-head {
  color: #fff;
  font-family: "Kodchasan";
  font-size: 65px;
  font-weight: 500;
}

.main-page-footer .content .contact .contact-form {
  width: 500px;
  height: 70px;
  border-radius: 50px;
  background: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.main-page-footer .content .contact .contact-form p {
  margin-bottom: 0;
}

.main-page-footer .content .contact .contact-form .input-box {
  height: 100%;
  width: 80%;
  background-color: transparent;
  border: none;
  padding: 8px 32px;
}

.main-page-footer .content .contact .contact-form .input-box:focus {
  border: 0;
  outline: none;
}

.main-page-footer .content .contact .contact-form .input-submit {
  font-size: 0;
  border: none;
  width: 58px;
  height: 58px;
  background: url(../images/Arrow.png) no-repeat center center #43c206;
  /* background-color: #43C206; */
  border-radius: 50%;
  position: absolute;
  top: 6px;
  right: 8px;
}

.main-page-footer hr {
  color: rgba(255, 255, 255, 0.723);
}

.main-page-footer .content .foot-head {
  color: #fff;
  font-family: "Kodchasan";
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 32px;
}

.main-page-footer .content .foot-info {
  color: #fff;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 32px;
  margin-top: 20px;
}

.main-page-footer .content .social {
  display: flex;
  gap: 32px;
}

.main-page-footer .content .social .so-link img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.main-page-footer .content .social .so-link {
  font-size: 20px;
  color: #fff;
  transition: all 0.5s;
}

.main-page-footer .content .social .so-link:hover {
  color: #43c206;
}

.main-page-footer .content .links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-page-footer .content .links .link-head {
  color: #43c206;
  font-family: "Poppins";
  font-size: 25px;
  font-weight: 500;
}

.main-page-footer .content .links .each-link {
  display: flex;
  gap: 17px;
}

.main-page-footer .links .each-link .link-sls {
  color: #fff;
}
.main-page-footer .links .each-link .link-sls:last-child {
  display: none;
}

.main-page-footer .content .links .each-link img {
  height: 30px;
  width: 20px;
  object-fit: contain;
}

.main-page-footer .content .links .link {
  color: #fff;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s;
}

.main-page-footer .last-con {
  display: flex;
  justify-content: space-between;
}

.main-page-footer .last-con .powered {
  color: #fff;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
}
.text-conText {
  padding-top: 50px;
  padding-left: 50px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 8px;
}

.text-conText::-webkit-scrollbar{
  width: 5px;
  height: 5px;
}

.text-conText::-webkit-scrollbar-track{
  background-color: #ccc;
}

.text-conText::-webkit-scrollbar-thumb{
  background-color: #35a500;
}

.grow {
  scale: 0.75;
}
.gsap-marker-scroller-end,
.gsap-marker-scroller-start,
.gsap-marker-start,
.gsap-marker-end {
  display: none !important;
}

h2.secH {
  font-size: 45px;
  font-family: "Poppins";
  font-weight: 500;
  margin-bottom: 20px;
}

.circleGlobal {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(10px 14px 70px rgba(0, 0, 0, 0.16));
  padding: 30px;
  margin: 0 auto;
}
.circleGlobal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.circleGlobal::before {
  position: absolute;
  content: "";
  width: 95px;
  height: 95px;
  background-color: #fff;
  border-radius: 50%;
  z-index: -2;
  box-shadow: 10px 14px 70px rgba(0, 0, 0, 0.16);
}
.each-circle p {
  color: #000;
  text-align: center;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  margin-top: 16px;
}
.circleGlobalText {
  padding: 0 15px;
}
.globalCol.globalCol {
  position: relative;
}
.globalCol.globalCol:nth-child(odd) {
  padding-top: 100px;
}
.globalCol::after {
  width: 95px;
  height: 70px;
  position: absolute;
  content: "";
}
.globalCol:nth-child(odd):after {
  background: url(../images/upArrow.png) no-repeat;
  background-size: 100%;
  right: -35px;
  top: 70px;
}
.globalCol:nth-child(even):after {
  background: url(../images/downArrow.png) no-repeat;
  background-size: 100%;
  right: -35px;
  top: 90px;
}
.globalCol:last-child:after {
  display: none !important;
}
.chainWrap {
  padding-top: 20px;
}

.chainWrap > .row {
  justify-content: center;
}

.commonSec {
  padding: 100px 0;
}
.commnImgInner {
  height: 100%;
  width: 100%;
}

.home .second-section .commnImgInner {
  border-bottom: 2px solid #eafaff;
}

.home .eighth-section .commnImgInner{
  height: 590px;
  width: 100%;
}

.home .eighth-section .commnImgInner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.reveal {
  font-kerning: none;
}
.both-content {
  padding-top: 30px;
}

.ninth-section .headerWrap p {
  font-size: 18px;
}

.contactFrmWrap {
  width: 100%;
  max-width: 500px;
  position: absolute;
  left: 20%;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px #01010191;
  padding: 25px;
  /* top: 120px; */
  top: 70px;
  border-radius: 20px;
}
.form-head {
  font-size: 28px;
  margin-bottom: 15px;
  font-family: "Poppins";
  font-weight: 500;
}
.frmWrap .inputTxt {
  width: 100%;
  height: 50px;
  border: none;
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  font-size: 15px;
}
.frmWrap {
  margin-bottom: 15px;
}
.frmWrap .inputTxt.textArea {
  resize: none;
  height: 90px;
}
.subBtn {
  position: relative;
  z-index: 1;
  border: none;
  background-color: transparent;
  padding: 0 40px;
  height: 50px;
  border: 1px solid #43c206;
  border-radius: 100px;
  color: #43c206;
}
.frmBtnWrap {
  display: flex;
  justify-content: flex-end;
}
.frmWrap .more-btn {
  width: auto;
  padding: 0px;
}
.main-page-footer .more-btn {
  border: 1px solid #43c206;
}
.main-page-footer .more-btn span {
  color: #43c206;
}
.main-page-footer .more-btn:hover span {
  color: #fff;
}
.newletterWrap {
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 50px;
  padding: 50px 0;
}
.main-page-footer .content .contact .contact-form .input-submit {
  transition: 0.5s;
}
.main-page-footer .content .contact .contact-form .input-submit:hover {
  background-color: #000;
}
.main-page-footer {
  padding-bottom: 20px;
}
.links ul li {
  margin-bottom: 10px;
}
.links ul {
  list-style-type: none;
}
.whiteText {
  color: #fff !important;
}
.sixth-section .slider-con .each-slider .img-con {
  overflow: hidden;
}
#text-anim div {
  display: inline-block;
}
.first-section .text-content {
  width: 100%;
  max-width: 60%;
}
ul li {
  list-style-type: none;
}
.aboutTxt {
  padding-top: 20px;
}
.aboutTxt p {
  font-weight: 400;
  color: #000;
}
.blackTxt {
  color: #000;
}

.abt-fifth-section .container .wave {
  width: 102%;
}

.abt-seventh-section .mob-flip-inner {
  display: none;
}

.main-page-footer .newletterWrap .contact-form .wpcf7-spinner {
  display: none;
}

/*--inner banner start--*/
.innerBanner {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  padding-top: 235px;
  height: 800px;
  position: relative;
}
.innerBanner::after {
  width: 100%;
  height: 331px;
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  background-image: linear-gradient(
    0deg,
    transparent 0 35%,
    #000000b8 70% 100%
  );
}

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

.pg-link ul li:not(:last-child) {
  position: relative;
  padding-right: 15px;
  margin-right: 10px;
}
.pg-link ul li:not(:last-child)::after {
  content: "\f105";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-family: "FontAwesome";
}
.bcm {
  padding: 20px 50px;
  color: #fff;
  text-align: center;
  font-family: "Poppins";
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12.5px);
  position: relative;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #cecece4a;
}
.bcm ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcm .pg-link .link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.bcm .pg-head {
  font-size: 50px;
  font-weight: 500;
}
/*--inner banner end--*/
.contactPgTxt {
  padding-right: 30px;
}
.conactFromWrap {
  border-radius: 30px;
  background-color: #36b307;
  padding: 40px;
}
.conactFromWrap .inputTxt {
  border: 1px solid #fefefe;
  background-color: transparent;
  border-radius: 10px;
  padding: 0 20px;
  margin-bottom: 10px;
  height: 60px;
  color: #fff;
}

.conactFromWrap ::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.conactFromWrap ::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #fff;
}
.conactFromWrap .frmWrap .inputTxt.textArea {
  height: 100px;
  padding-top: 15px;
}
.conactFromWrap .more-btn::before,
.conactFromWrap .more-btn::after {
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
  background-color: #ffffff;
  content: "";
}
.conactFromWrap .subBtn {
  border: none;
  color: #fff;
  height: 60px;
}
.more-btn:hover::before {
  width: 100%;
  transition: width 0.3s;
}
.conactFromWrap .more-btn:hover::after {
  background-color: transparent;
  width: 100%;
}
.conactFromWrap .more-btn:hover .subBtn {
  color: #000;
}

.conactFromWrap .wpcf7 form.sent .wpcf7-response-output {
  color: #fff;
  border: none;
  padding-left: 0;
}

.contactPgSec1 {
  background-color: #eafaff;
  border-radius: 100px 100px 0 0;
  position: relative;
  margin-top: -130px;
  padding-bottom: 200px;
}
.mapWrap {
  height: 700px;
}
.mapWrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.contactPgSec2 {
  position: relative;
}
.addressWrap {
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: -110px;
  z-index: 2;
}
.addressWrap .addressBox {
  width: 100%;
  border-radius: 30px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  box-shadow: 0px 0px 35px 0px #ccc;
  min-height: 250px;
}
.iconWrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #a0e1ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.addressTxt {
  width: calc(100% - 70px);
  padding-left: 20px;
}
.addressTxt h5 {
  color: #084593;
}
.addressTxt p a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}
.contactPg .newletterWrap {
  padding-top: 0px;
  margin-top: 0px;
}
.contactPg .main-page-footer .content .card {
  display: none;
}

/*---faq start--*/
.faqSec2 {
  background-color: #eafaff;
  border-radius: 100px 100px 0 0;
  position: relative;
  margin-top: -100px;
}
.faqWrap {
  max-width: 80%;
  margin: 0 auto;
}
.faqWrap .acc-container {
  max-width: 100%;
  width: 100%;
}
.faqWrap .acc-content {
  width: 100%;
}
.faqWrap .acc-container .acc.active {
  padding: 0;
  box-shadow: 0px 10px 20px 0px #cececea6;
}
.faqWrap .acc-container .acc {
  background-color: #dffad0;
  border: none;
  padding: 0;
}
.headingWrap {
  margin-bottom: 40px;
}
.faqWrap .acc-head {
  padding: 20px 45px;
}
.faqWrap .acc-head h4 {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  width: calc(100% - 45px);
}
.faqWrap .acc .acc-head::after {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(67, 194, 6, 1);
  display: flex;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  content: "\2b";
  font-family: "FontAwesome";
  position: absolute;
  right: 50px;
  top: 20px;
  font-size: 12px;
}
.faqWrap .acc-content {
  padding: 20px 50px 30px;
}
.faqWrap .acc-content span {
  width: 50px;
  display: inline-block;
  margin-bottom: 0;
  color: #000;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
}
.faqWrap .acc .acc-content p {
  width: calc(100% - 50px);
}
.faqWrap .acc .accTxt {
  display: flex;
}
.faqWrap .acc.active .acc-head {
  background-color: #46b911;
  border-radius: 20px;
}
.faqWrap .acc-head h4 span {
  margin-right: 20px;
}
.faqWrap .acc.active .acc-head h4 {
  color: #fff;
}
.faqWrap .acc.active .acc-head::after {
  content: "\f068";
}
.faqSec3 {
  background-color: #dffad0;
  padding-bottom: 80px;
}
.faqSec3 .faqWrap .acc .acc-head {
  background-color: #a4e2ff;
  border-radius: 20px;
}
.faqSec3 .faqWrap .acc-container .acc {
  background-color: #eafaff;
}
.faqSec3 .faqWrap .acc.active .acc-head h4 {
  color: #000;
}
.faqWrap .acc .acc-head::after {
  /* top: 23px; */
  top: 50%;
  transform: translateY(-50%);
}

/*--faq end--*/

/*--blog listing start--*/
.blogPostList {
  text-align: left;
}
.bgli-second-section .blogs .each-blog .blog-content .preview .arrBtn:before {
  content: "\f061";
}
.quote {
  margin: 30px 0 20px;
}
.bgdt-second-section .form-inner .more-btn {
  border: 1px solid #43c206;
}
.submit-btn {
  position: relative;
  z-index: 1;
}
.bgdt-third-section .more-btn {
  border: 1px solid #43c206;
  color: #000;
}
.bgdt-third-section .blogs {
  margin-left: 0px;
}
/*--blog listing end--*/

/*--about us page start--*/
.milestoneSec {
  background-color: #dffad0;
}
.batteryIcon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #d2e5cb;
  padding: 15px;
  margin-bottom: 15px;
}
.milestoneCardInner {
  padding: 20px;
  padding-bottom: 0px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding-top: 0px;
  padding-bottom: 0px;
}
.batteryIcon img {
  width: 100%;
}
.mileStoneInnerTxt {
  padding-right: 20px;
  height: 160px;
  overflow: auto;
}

.mileStoneInnerTxt::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.mileStoneInnerTxt::-webkit-scrollbar-track {
  background-color: #ccc;
}

.mileStoneInnerTxt::-webkit-scrollbar-thumb {
  background-color: #43c206;
}

.mileStoneInnerTxt h4 {
  color: #000;
  font-size: 24px;
  margin-bottom: 15px;
  transition: 0.5s;
}
.yearTxt h3 {
  font-size: 120px;
  font-weight: bold;
  font-family: "Poppins";
  line-height: normal;
  color: #bedeb1;
  line-height: 90px;
  margin-top: 20px;
  transition: 0.5s;
  margin-bottom: 0px;
  transition: 0.5s;
}

.milestoneSecInn {
  padding-left: calc((100% - 1320px) / 2);
}

/* .milestoneSlider .slick-list {
  margin-right: -300px;
} */
.milestoneSlider .slick-slide:nth-child(even) .milestoneCardInner {
  flex-direction: column-reverse;
}
.milestoneSlider .slick-slide:nth-child(even) .milestoneCard {
  padding-top: 345px;
}
.milestoneSlider .slick-slide:nth-child(even) .yearTxt h3 {
  margin-bottom: 20px;
  margin-top: 0px;
}
.milestoneSlider .slick-slide:nth-child(even) .milestoneCardInner {
  border-bottom: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 0px;
}
.milestoneCardInner:hover .yearTxt h3 {
  color: #97cbd8;
}
.milestoneCardInner:hover .mileStoneInnerTxt h4 {
  color: #43c206;
}
.featuredWrap ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.featuredWrap ul li {
  width: 100%;
  max-width: calc(33% - 30px);
  flex: 0 0 calc(33% - 30px);
}
.featuredBatteryImg img {
  width: 100%;
}
.featuredItems {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.featuredItems h5 {
  width: calc(100% - 60px);
  margin-bottom: 0px;
  font-size: 18px;
}
.featuredIcon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  padding: 10px;
}
.featuredIcon img {
  width: 100%;
}
.featuredWrap ul li .featuredItems:not(:last-child) {
  margin-bottom: 65px;
}
.featuredItems {
  position: relative;
}
.featuredWrap ul li .featuredItems::after {
  width: 100px;
  height: 20px;
  content: "";
  position: absolute;
  right: -93px;
  top: 50%;
  transform: translateY(-50%);
}
.featuredWrap ul li .featuredItems:first-child:after {
  background: url(../images/about-us/left-line-1.png) no-repeat;
  background-size: 100%;
  top: 0px;
}
.featuredWrap ul li .featuredItems:nth-child(2):after {
  background: url(../images/about-us/left-line-2.png) no-repeat;
  background-size: 100%;
  top: 70%;
  width: 90px;
}
.featuredWrap ul li .featuredItems:last-child:after {
  background: url(../images/about-us/left-line-3.png) no-repeat;
  background-size: 100%;
  top: auto;
  height: 40px;
  bottom: -52px;
}
.featuredWrap ul li:last-child .featuredItems {
  flex-direction: row-reverse;
}
.featuredWrap ul li:last-child .featuredItems:first-child:after {
  background: url(../images/about-us/left-line-4.png) no-repeat;
  background-size: 100%;
  top: 0px;
  right: auto;
  left: -90px;
}
.featuredWrap ul li:last-child .featuredItems:nth-child(2):after {
  background: url(../images/about-us/left-line-2.png) no-repeat;
  background-size: 100%;
  top: 37px;
  right: auto;
  left: -90px;
}
.featuredWrap ul li:last-child .featuredItems:last-child:after {
  background: url(../images/about-us/left-line-6.png) no-repeat;
  background-size: 100%;
  top: auto;
  right: auto;
  left: -90px;
  bottom: -55px;
}
.leaderSocialIcon {
  display: flex;
  gap: 10px;
}
.leaderSocialIcon a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.milestoneSlider{
  padding-bottom: 30px;
}

.milestoneSlider .slick-arrow {
  background-color: #dcdcdc;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0px;
  border: none;
  position: absolute;
  transition: 0.5s;
}
.milestoneSlider .slick-arrow:hover {
  background-color: #43c206;
  color: #fff;
}
.milestoneSlider .slick-arrow.slick-prev {
  /* right: 36px;
  bottom: -50px; */
  right: 15%;
  bottom: -50px;
}
.milestoneSlider .slick-arrow.slick-next {
  /* right: 0px;
  bottom: -50px; */
  right: calc(15% - 45px);
  bottom: -50px;
}
.milestoneSlider .slick-arrow::after {
  content: "";
  position: absolute;
  font-family: "FontAwesome";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}
.milestoneSlider .slick-arrow.slick-prev::before {
  width: 46px;
  height: 40px;
  border-radius: 30px 0 0 30px;
  border: 1px solid #ccc;
  content: "";
  position: absolute;
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
  border-right: none;
}
.milestoneSlider .slick-arrow.slick-next::before {
  width: 46px;
  height: 40px;
  border-radius: 0 30px 30px 0;
  border: 1px solid #ccc;
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  border-left: none;
}
.milestoneSlider .slick-arrow.slick-next::after {
  content: "\f054";
}
.milestoneSlider .slick-arrow.slick-prev::after {
  content: "\f053";
}
.copyrightWrap {
  border-top: 1px solid #cecece33;
  margin-top: 40px;
}
.copyrightInner {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}
.copyrightInner p,
.copyrightInner a {
  color: #fff;
  margin-bottom: 0px;
}

/*--blog details start--*/
.post-content .interaction {
  padding: 13px 40px;
}
.post-content .interaction ul {
  display: flex;
  gap: 50px;
}
.post-content .interaction ul li a {
  display: flex;
  align-items: center;
  color: #000;
  gap: 10px;
}
.post-content .interaction ul li a p {
  font-size: 18px;
  font-weight: 500;
}
.head-info {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
/*--blog details end--*/

/*--career sec start--*/

.careerSec1 {
  border-radius: 100px 100px 0 0;
  background-color: #eafaff;
  position: relative;
  margin-top: -130px;
}
.subPara {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
.subPara p {
  font-size: 18px;
  font-family: "Poppins";
}
.careerTopCont {
  display: flex;
}
.careerTopIcon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 16px 0px #cae6ef;
}
.careerTopTxt {
  width: calc(100% - 70px);
  padding: 30px;
  padding-left: 30px;
  padding-top: 0px;
}
.careerTopTxt h4 {
  color: #1b9ebc;
  font-size: 24px;
}
.careerSec2 .subPara {
  text-align: left;
  display: flex;
  margin: 10px;
  margin-left: 0;
  max-width: 100%;
}
.careerSec2 {
  background-color: #def6d1;
}
.srchFormWrap .frmWrap {
  position: relative;
}
.srchFormWrap .frmWrap .inputTxt {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  background-color: transparent;
  padding: 0 20px;
}
.srchFormWrap .frmWrap .srchBtn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  border-radius: 30px;
  background: url(../images/career/Search.png) no-repeat center center;
}
.srchFormWrap {
  padding-top: 100px;
}
.srchField .inputTxt {
  text-align: right;
}
.frmWrap select.inputTxt {
  background: url(../images/career/downArrow.png) 95% center no-repeat;
  -webkit-appearance: none;
}
.careerSec2 .acc-container {
  width: 100%;
}
.careerSec2 .acc {
  background-color: #eafaff;
  border: none;
  padding: 0px !important;
}
.careerSec2 .acc .acc-head {
  background-color: #46b911;
  padding: 10px 20px;
  border-radius: 15px;
}
.careerSec2 .acc-content {
  width: 100%;
  padding: 0px 70px 70px;
}
.jobTitleWrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.jobTitleWrap .titleleft {
  width: 50%;
}
ul.jobDesc {
  display: flex;
  gap: 20px;
}
ul.jobDesc li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jobTitleWrap .titleleft span {
  color: #fff;
  font-size: 15px;
}
.jobTitleWrap .titleleft h4 {
  color: #fff;
}
ul.jobDesc li p {
  font-size: 16px;
  color: #fff;
}
ul.jobDesc li .descIcon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
}
.careerSec2 .acc .acc-head::after {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: rgba(67, 194, 6, 1);
  display: flex;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  content: "\f0d7";
  font-family: "FontAwesome";
  position: absolute;
  right: 25px;
  top: 15px;
  font-size: 20px;
}
.careerSec2 .acc-content .titleleft h4 {
  color: #1b9ebc;
  margin-bottom: 20px;
}
.leftContentDesc ul.jobDesc li p {
  color: #000;
}
.acc-content .leftContentDesc ul.jobDesc li .descIcon {
  box-shadow: 0px 0px 10px 0px #cecece;
}
.rightContentWrap ul li {
  display: flex;
}
.leftcontentWrap .more-btn {
  border: 1px solid #43c206;
  margin-top: 40px;
  color: #43c206;
}
.acc-content-inner {
  display: flex;
  flex-wrap: wrap;
}
.acc-content-inner .leftcontentWrap {
  width: 40%;
}
.acc-content-inner .rightContentWrap {
  width: calc(100% - 40%);
}
.rightContentWrap ul li .leftTxt {
  width: 165px;
}
.rightContentWrap ul li .rightTxt {
  width: calc(100% - 165px);
}
.rightContentWrap ul li:not(:last-child) {
  margin-bottom: 20px;
}
.careerSec2 .acc.active .acc-head .titleleft,
.careerSec2 .acc.active .acc-head .titleRight {
  opacity: 0;
}
.careerSec2 .acc.active .acc-head {
  background-color: transparent;
}
.careerSec2 .acc.active .acc-head::after {
  background-color: #30a4dc;
  color: #fff;
  transform: rotate(180deg);
}
.mobApplyBtn {
  display: none;
}
.ApplyFrmWrap {
  width: 50%;
  padding-left: 100px;
  padding-right: 40px;
}

.careerSec2 .acc.active .acc-content-inner .leftcontentWrap {
  padding-right: 15px;
}

.careerImg {
  width: 100%;
  height: auto;
}

.careerImg img {
  width: 100%;
  height: 100%;
}

/* fifth section styling */
.career-fifth-section {
  background: #fff;
}

.apply-form .form-head {
  color: #000;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 500;
}

.career-fifth-section .apply-form,
.career-fifth-section .right-img {
  width: 50%;
}
.career-fifth-section .right-img {
  height: 930px;
  overflow: hidden;
}
.career-fifth-section .content {
  width: 100%;
  display: flex;
}

.career-fifth-section .right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-fifth-section .apply-form .form-inner {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 240px;
  padding-right: 30px;
}

/* text style */
.career-fifth-section .apply-form .form-inner .each-input .input,
.upload-input .upload-text {
  color: #5e5e5e;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
}

.career-fifth-section .apply-form .form-inner .each-input .input {
  width: 100%;
  padding: 16px 24px;
  border-radius: 10px;
  background: #f0f0f0;
  border: none;
}

.career-fifth-section .apply-form .form-inner .more-btn {
  margin-top: 32px;
}

.upload-input {
  position: relative;
}

.upload-input .input {
  opacity: 0;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.upload-input .upload-text {
  width: 100%;
  padding: 16px 24px;
  border-radius: 10px;
  background: #f0f0f0;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

.upload-input .upload-text::after {
  position: absolute;
  content: "";
  background-image: url(../inner-img/File-Upload.png);
  height: 40px;
  width: 40px;
  right: 0;
  background-repeat: no-repeat;
}

/*--career sec end--*/

/*--text sliding on scroll ---*/
.text .char {
  display: inline-block;
  -webkit-animation-delay: calc(0.25s + var(--char-index) * 0.1s);
  animation-delay: calc(0.25s + var(--char-index) * 0.1s);
  transition: all 0.25s calc(0.25s + var(--char-index) * 0.1s);
}
.text--enter [data-scroll="out"] .char {
  opacity: 0;
  -webkit-transform: translate(0, -150%);
  transform: translate(0, -150%);
}
.text--enter .char {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.text--random [data-scroll="out"] .char:nth-of-type(1) {
  -webkit-transform: translateX(202%) translateY(-45%);
  transform: translateX(202%) translateY(-45%);
}
.text--random [data-scroll="out"] .char:nth-of-type(2) {
  -webkit-transform: translateX(198%) translateY(184%);
  transform: translateX(198%) translateY(184%);
}
.text--random [data-scroll="out"] .char:nth-of-type(3) {
  -webkit-transform: translateX(134%) translateY(56%);
  transform: translateX(134%) translateY(56%);
}
.text--random [data-scroll="out"] .char:nth-of-type(4) {
  -webkit-transform: translateX(-51%) translateY(250%);
  transform: translateX(-51%) translateY(250%);
}
.text--random [data-scroll="out"] .char:nth-of-type(5) {
  -webkit-transform: translateX(-109%) translateY(-81%);
  transform: translateX(-109%) translateY(-81%);
}
.text--random [data-scroll="out"] .char:nth-of-type(6) {
  -webkit-transform: translateX(234%) translateY(134%);
  transform: translateX(234%) translateY(134%);
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(1),
.text--swapsies [data-scroll="out"] .char:nth-of-type(1) {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(2),
.text--swapsies [data-scroll="out"] .char:nth-of-type(2) {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(3),
.text--swapsies [data-scroll="out"] .char:nth-of-type(3) {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(4),
.text--swapsies [data-scroll="out"] .char:nth-of-type(4) {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(5),
.text--swapsies [data-scroll="out"] .char:nth-of-type(5) {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(6),
.text--swapsies [data-scroll="out"] .char:nth-of-type(6) {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(7),
.text--swapsies [data-scroll="out"] .char:nth-of-type(7) {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(8),
.text--swapsies [data-scroll="out"] .char:nth-of-type(8) {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.text--swapsies [data-scroll="in"] .char {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(1) {
  -webkit-animation-name: swap-left;
  animation-name: swap-left;
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(2) {
  -webkit-animation-name: swap-right;
  animation-name: swap-right;
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(3) {
  -webkit-animation-name: swap-left;
  animation-name: swap-left;
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(4) {
  -webkit-animation-name: swap-right;
  animation-name: swap-right;
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(5) {
  -webkit-animation-name: swap-left;
  animation-name: swap-left;
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(6) {
  -webkit-animation-name: swap-right;
  animation-name: swap-right;
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(7) {
  -webkit-animation-name: swap-left;
  animation-name: swap-left;
}
.text--swapsies [data-scroll="in"] .char:nth-of-type(8) {
  -webkit-animation-name: swap-right;
  animation-name: swap-right;
}
@-webkit-keyframes swap-right {
  25% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
  }
  75% {
    -webkit-transform: translateX(0) translateY(-100%);
    transform: translateX(0) translateY(-100%);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@keyframes swap-right {
  25% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
  }
  75% {
    -webkit-transform: translateX(0) translateY(-100%);
    transform: translateX(0) translateY(-100%);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes swap-left {
  25% {
    -webkit-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
  }
  75% {
    -webkit-transform: translateX(0) translateY(100%);
    transform: translateX(0) translateY(100%);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@keyframes swap-left {
  25% {
    -webkit-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
  }
  75% {
    -webkit-transform: translateX(0) translateY(100%);
    transform: translateX(0) translateY(100%);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
.text--fading [data-scroll="out"] .char {
  opacity: 0;
}
.text--flipping [data-scroll="out"] .char {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.text--slide .char:nth-of-type(5) {
  transition-delay: 0s;
}
.text--slide .char:nth-of-type(4) {
  transition-delay: 0.1s;
}
.text--slide .char:nth-of-type(3) {
  transition-delay: 0.2s;
}
.text--slide .char:nth-of-type(2) {
  transition-delay: 0.3s;
}
.text--slide .char:nth-of-type(1) {
  transition-delay: 0.4s;
}
.text--slide [data-scroll="out"] .char {
  opacity: 0;
  -webkit-transform: translate(-300%, 0) skewX(20deg);
  transform: translate(-300%, 0) skewX(20deg);
}
.text--karaoke .char {
  color: rgba(255, 255, 255, 0.15);
  transition-duration: 0.1s;
}
.text--karaoke .char:after {
  color: #fff;
  visibility: visible;
}
.text--karaoke [data-scroll="in"] .char:after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.text--karaoke [data-scroll="out"] .char:after {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.text--filling .char {
  color: rgba(255, 255, 255, 0.15);
}
.text--filling .char:after {
  color: #fff;
  visibility: visible;
}
.text--filling [data-scroll="in"] .char:after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.text--filling [data-scroll="out"] .char:after {
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
}
.text--blocks [data-scroll="out"] .char {
  visibility: hidden;
}
.text--blocks [data-scroll="in"] {
  overflow: hidden;
  position: relative;
}
.text--blocks [data-scroll="in"] .char {
  transition-delay: 0.5s;
}
.text--blocks [data-scroll="in"]:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  -webkit-animation: block 0.5s 0.25s both;
  animation: block 0.5s 0.25s both;
}
@-webkit-keyframes block {
  0% {
    -webkit-transform: translate(-110%, 0);
    transform: translate(-110%, 0);
  }
  45%,
  55% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(110%, 0);
    transform: translate(110%, 0);
  }
}
@keyframes block {
  0% {
    -webkit-transform: translate(-110%, 0);
    transform: translate(-110%, 0);
  }
  45%,
  55% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(110%, 0);
    transform: translate(110%, 0);
  }
}
.text--scale [data-scroll="out"] .char {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.text--turning [data-scroll="out"] .char {
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
}
.text--folding [data-scroll="out"] .char {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}
.text--bulge [data-scroll="in"] .char {
  -webkit-animation-name: bulge;
  animation-name: bulge;
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
}
@-webkit-keyframes bulge {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@keyframes bulge {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.text--perspective {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.text--perspective .char {
  transition: opacity 0.05s calc(0.25s + var(--char-index) * 0.1s),
    -webkit-transform 0.25s calc(0.25s + var(--char-index) * 0.1s);
  transition: transform 0.25s calc(0.25s + var(--char-index) * 0.1s),
    opacity 0.05s calc(0.25s + var(--char-index) * 0.1s);
  transition: transform 0.25s calc(0.25s + var(--char-index) * 0.1s),
    opacity 0.05s calc(0.25s + var(--char-index) * 0.1s),
    -webkit-transform 0.25s calc(0.25s + var(--char-index) * 0.1s);
}
.text--perspective [data-scroll="out"] .char {
  opacity: 0;
  -webkit-transform: translate3d(-25px, -20px, -800px);
  transform: translate3d(-25px, -20px, -800px);
}
.text--zipping .char {
  transition: opacity 0.05s calc(0.25s + var(--char-index) * 0.1s),
    -webkit-transform 0.25s calc(0.25s + var(--char-index) * 0.1s);
  transition: transform 0.25s calc(0.25s + var(--char-index) * 0.1s),
    opacity 0.05s calc(0.25s + var(--char-index) * 0.1s);
  transition: transform 0.25s calc(0.25s + var(--char-index) * 0.1s),
    opacity 0.05s calc(0.25s + var(--char-index) * 0.1s),
    -webkit-transform 0.25s calc(0.25s + var(--char-index) * 0.1s);
}
.text--zipping [data-scroll="out"] .char {
  opacity: 0;
}
.text--zipping [data-scroll="out"] .char:nth-of-type(1) {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.text--zipping [data-scroll="out"] .char:nth-of-type(2) {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.text--zipping [data-scroll="out"] .char:nth-of-type(3) {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.text--zipping [data-scroll="out"] .char:nth-of-type(4) {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.text--zipping [data-scroll="out"] .char:nth-of-type(5) {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.text--zipping [data-scroll="out"] .char:nth-of-type(6) {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.text--zipping [data-scroll="out"] .char:nth-of-type(7) {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
/*--text sliding --*/
.greenTxt {
  color: #46b911;
}
/* ----------------career------------- */
.commonSec.careerSec3 {
  padding: 0;
}
.careerSec3MAin {
  display: flex;
  align-items: center;
}
.careerSec3MAin .careerSec3Left {
  display: flex;
  justify-content: end;
  width: 50%;
}
.careerSec3MAin .applyFrmWrap {
  width: 70%;
  padding-right: 3%;
}
.careerSec3MAin .careerSec3Right {
  width: calc(100% - 50%);
}
.careerSec3MAin .careerSec3Right > div {
  height: 100vh;
}

.careerSec3MAin .careerSec3Right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.careerSec3MAin select,
.careerSec3MAin input,
.careerSec3MAin textarea {
  background-color: #f0f0f0;
  font-weight: 400;
  font-size: 16px;
  color: #5e5e5e;
  height: 60px;
  border: none !important;
  border-radius: 10px;
  padding-left: 20px;
  width: 100%;
  margin-bottom: 20px;
}

.careerSec3MAin input:focus-visible,
.careerSec3MAin textarea:focus-visible,
.careerSec3MAin select:focus-visible {
  outline: none !important;
}
.careerSec3MAin textarea {
  height: 160px;
  padding: 20px;
}
.applyFrmWrap h4 {
  margin-bottom: 30px;
  font-size: 25px;
}
.careerSec3Left .more-btn {
  color: #43c206;
  border-color: #43c206;
  margin-top: 20px;
}
.careerSec3Left .more-btn:hover .inputTxt {
  color: #fff;
}
.careerSec3Left .uploadCV {
  position: relative;
  left: 0;
  top: 0;
}
.careerSec3Left .uploadCV img {
  position: absolute;
  left: auto;
  /* top: 20px; */
  top: 16px;
  right: 20px;
}
/* csr styling start */

.csr-second-section {
  padding: 100px 0px;
  border-radius: 108px 108px 0px 0px;
  background: #eafaff;
  margin-top: -180px;
  z-index: 1;
  position: relative;
}

.csr-second-section .img-con,
.csr-second-section .text-con {
  height: 600px;
  width: 100%;
  border-radius: 35px;
  overflow: hidden;
}

.csr-second-section .img-con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csr-second-section .text-con {
  background-image: url(../inner-img/pattern-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 48px;
  color: #fff;
  font-family: Poppins;
}

.csr-second-section .text-con .text-head {
  font-size: 45px;
  font-weight: 500;
  padding-bottom: 16px;
}

.csr-second-section .text-con p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

/* csr third section */

.csr-third-section {
  position: relative;
}

.csr-third-section .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.csr-third-section .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csr-third-section .content {
  width: 50%;
  padding: 100px 0 60px;
  color: #fff;
  font-family: Poppins;
  position: relative;
  height: 100%;
}

.csr-third-section .content .sec-head {
  font-size: 45px;
  font-weight: 500;
}

.csr-third-section .content p {
  font-size: 18px;
  font-weight: 400;
}

/* csr fourth section */

.csrSec3 {
  padding: 100px 0px;
  position: relative;
}

/* tab section */
.csrSec3 .listWrap {
  margin-top: 50px;
  position: relative;
}

.csrSec3 ul.tabs {
  background: none !important;
  border: none !important;
  display: flex;
  /* justify-content: space-between; */
  justify-content: flex-start;
  /* gap: 64px; */
  gap: 35px;
  width: 75%;
  padding-left: 0;
  -webkit-margin-before: 0;
  -webkit-padding-start: 0;
  /* position: relative; */
  margin: auto;
}

.csrSec3 ul.tabs::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -1px;
  background-color: rgba(0, 0, 0, 0.25);
}

.csrSec3 ul.tabs li {
  list-style: none;
  cursor: pointer;
  display: inline-block;
  padding: 12px 0px;
  color: #bfbfbf;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
}

.csrSec3 ul.tabs li:not(:last-child) {
  /* padding-right: 20px; */
  padding-right: 12px;
}

.csrSec3 ul.tabs li:not(:first-child) {
  /* padding-left: 20px; */
  padding-left: 12px;
}

.csrSec3 ul.tabs li.active,
.csrSec3 ul.tabs .slick-active {
  border-bottom: 2px solid #43c206;
  color: #000;
}

.csrSec3 .listContBox {
  padding-top: 20px;
  display: inline-block;
  width: 100%;
}

.csrSec3 .listContBox .tab_content {
  display: none;
}

.csrSec3 .listContBox .tab_content.active {
  display: inline-block;
}

.csrSec3 .secH {
  text-align: center;
  display: none;
}

/* slider styling */

.csrSec3 .tab-slider .each-slide {
  width: 90%;
}

.csrSec3 .tab-slider .slide-inner {
  width: 100%;
  height: 630px;
  display: flex;
  gap: 40px;
  border-radius: 35px;
  /* background: #a4e2ff; */
  padding: 48px 40px;
}

.csrSec3 .slick-slide .slide-inner {
  background: #a4e2ff;
}

/* .csrSec3 .slick-sprev .slide-inner,
.csrSec3 .slick-snext .slide-inner {
  background-color: #44b80e;
}

.csrSec3 .slick-sprev2 .slide-inner,
.csrSec3 .slick-snext2 .slide-inner {
  background-color: #ffb72c;
} */

.csr-slider .slick-slide:nth-child(4n + 1) .slide-inner {
  background-color: #ffb72c;
}

.csr-slider .slick-slide:nth-child(2n + 2) .slide-inner {
  background-color: #44b80e;
}

.csrSec3 .tab-slider .slide-inner .text-con {
  width: 60%;
  color: #000;
  font-family: Poppins;
}

.csrSec3 .tab-slider .slide-inner .text-con .slide-head {
  font-size: 45px;
  font-weight: 400;
  margin-bottom: 24px;
}

.csrSec3 .tab-slider .slide-inner .text-con p {
  font-size: 18px;
  font-weight: 400;
}

.csrSec3 .tab-slider .slide-inner .img-con {
  border-radius: 25px;
  overflow: hidden;
}

.csrSec3 .tab-slider .slide-inner .img-con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.csrSec3 .tab-slider .green-bg {
  background: #44b80e;
}

.csrSec3 .tab-slider .green-bg .text-con {
  color: #fff;
}

.csrSec3 .tab-slider .orange-bg {
  background: #ffb72c;
}

.csrimgSLider{
  width: 40%;
  position: relative;
}

.csrImgSwiper{
  width: 100%;
  position: static;
}

.csrSwipeFig{
  width: 100%;
  height: 500px;
  border-radius: 25px;
  overflow: hidden;
}

.csrSwipeFig img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.csrImgSwiper .swiper-button-prev, .csrImgSwiper .swiper-button-next {
  position: absolute;
  font-size: 0;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  top: inherit;
  bottom: -12px;
  transition: all 0.4s ease-in-out;
}

.csrImgSwiper .swiper-button-prev:hover, .csrImgSwiper .swiper-button-next:hover{
  background-color: #43c206;
}

.csrImgSwiper .swiper-button-prev {
  left: calc(50% - 38px);
}

.csrImgSwiper .swiper-button-prev::before {
  position: absolute;
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #828282;
  height: 30px;
  width: 30px;
  top: 0;
  left: 0px;
  transform: rotate(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.csrImgSwiper .swiper-button-prev::after {
  position: absolute;
  content: "";
  height: 43px;
  width: 45px;
  border-top: 1px solid #1c202371;
  border-left: 1px solid #1c202371;
  border-bottom: 1px solid #1c202371;
  bottom: -7px;
  left: -7px;
  border-radius: 50px 0px 0px 50px;
}

.csrImgSwiper .swiper-button-next {
  right: calc(50% - 38px);
}

.csrImgSwiper .swiper-button-next::before {
  position: absolute;
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #828282;
  height: 30px;
  width: 30px;
  top: 0;
  left: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.csrImgSwiper .swiper-button-next::after {
  position: absolute;
  content: "";
  height: 43px;
  width: 45px;
  border-top: 1px solid #1c202371;
  border-right: 1px solid #1c202371;
  border-bottom: 1px solid #1c202371;
  bottom: -7px;
  right: -7px;
  border-radius: 0px 50px 50px 0px;
}

.csrImgSwiper .swiper-button-prev:hover::before, .csrImgSwiper .swiper-button-next:hover::before{
  color: #fff;
}

.text-conPara {
  height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}

.text-conPara::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.text-conPara::-webkit-scrollbar-track {
  background-color: #ccc;
}

.text-conPara::-webkit-scrollbar-thumb {
  background-color: #44b80e;
}

/* rev slider */

.csrSec3 .container {
  margin: 0 auto;
}

.csrSec3 .slick-slider {
  margin-left: -8%;
  margin-right: -8%;
  position: relative;
}

.csrSec3 .slick-list {
  padding-top: 10% !important;
  padding-bottom: 5% !important;
  padding-left: 10% !important;
  padding-right: 10% !important;
}

.csrSec3 .slick-dots {
  text-align: right;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.csrSec3 .slick-track {
  max-width: 100% !important;
  transform: translate3d(0, 0, 0) !important;
  perspective: 100px;
}

.csrSec3 .slick-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  width: 100% !important;
  transform: translate3d(0, 0, 0);
  transition: transform 1s, opacity 1s;
}

.csrSec3 .slick-snext,
.csrSec3 .slick-sprev,
.csrSec3 .slick-snext2,
.csrSec3 .slick-sprev2 {
  display: block;
}

.csrSec3 .slick-current {
  opacity: 1;
  position: relative;
  display: block;
  z-index: 2;
}

.csrSec3 .slick-snext {
  opacity: 1;
  transform: translate3d(8%, 0, -10px);
  z-index: 1;
  perspective: 1000px;
}
.csrSec3 .slick-snext2 {
  opacity: 1;
  transform: translate3d(16%, 0, -20px);
  z-index: 0;
  perspective: 1000px;
}

.csrSec3 .slick-sprev {
  opacity: 1;
  transform: translate3d(-8%, 0, -10px);
}

.csrSec3 .slick-sprev2 {
  opacity: 1;
  transform: translate3d(-16%, 0, -20px);
}

.csrSec3 .test {
  display: block;
  width: 100%;
  height: 300px;
  background: #c00;
  box-shadow: inset 0px 0px 0px 3px #000;
}
/* csr fifth section starts */
.csr-fifth-section {
  position: relative;
  height: 650px;
}

.csr-fifth-section .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.csr-fifth-section .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csr-fifth-section .text-con {
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: #fff;
  text-align: center;
  font-family: "Poppins";
  margin-bottom: 40px;
  /* padding-top: 100px; */
}

.csr-fifth-section .text-con .sec-head {
  font-size: 45px;
  font-weight: 500;
}

.csr-fifth-section .text-con p {
  font-size: 18px;
  font-weight: 400;
}

.csr-fifth-section .card-con {
  height: 240px;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  color: #000;
  text-align: center;
  font-family: Poppins;
  border-radius: 25px;
  opacity: 0.86;
  position: relative;
}

.csr-fifth-section .each-card:nth-child(odd) .card-con {
  background: #c0f1a9;
}

.csr-fifth-section .each-card:nth-child(even) .card-con {
  background: #ebf1a9;
}

.csr-fifth-section .each-card .card-con {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
  font-family: Poppins;
  text-align: center;
  padding: 30px;
  position: relative;
}

.csr-fifth-section .each-card .card-con .card-text {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}

.csr-fifth-section .each-card .card-con p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.csr-fourth-section .slick-arrow {
  height: 50px;
  width: 50px;
  font-size: 0;
  border-radius: 50%;
  background: transparent;
  bottom: 140px;
  position: absolute;
  z-index: 1;
  border: 1px #000 solid;
  transition: all 0.4s ease-in-out;
}

.csr-fourth-section .slick-next {
  left: 260px;
}

.csr-fourth-section .slick-prev {
  left: 190px;
}

.csr-fourth-section .slick-arrow:hover {
  background-color: #000;
}

.csr-fourth-section .slick-prev::before {
  position: absolute;
  content: "\f060";
  font-family: "FontAwesome";
  font-size: 22px;
  color: #000;
  height: 40px;
  width: 40px;
  top: 8px;
  left: 3px;
  transition: all 0.4s ease-in-out;
}

.csr-fourth-section .slick-next::before {
  position: absolute;
  content: "\f061";
  font-family: "FontAwesome";
  font-size: 22px;
  color: #000;
  height: 40px;
  width: 40px;
  top: 8px;
  left: 4px;
  transition: all 0.4s ease-in-out;
}

.csr-fourth-section .slick-prev:hover:before,
.csr-fourth-section .slick-next:hover:before {
  color: #fff;
}

/* form validation */

/* career */
.careerSec3MAin input.wpcf7-form-control {
  padding: 0 30px;
}
.careerSec3MAin .frmWrap .inputTxt {
  background-color: transparent;
  margin-bottom: 0;
  z-index: 1;
  color: #43c206;
}
.careerSec3MAin .frmWrap .wpcf7-spinner {
  display: none;
}
.careerSec3 .frmBtnWrap {
  justify-content: flex-start;
}
.careerSec3 .wpcf7-form.invalid .wpcf7-form-control-wrap .inputTxt {
  margin-bottom: 3px;
}
.careerSec3 .wpcf7-form.invalid .wpcf7-form-control-wrap {
  margin-bottom: 10px;
}
.careerSec3 .wpcf7-form.invalid .wpcf7-response-output {
  margin: 0;
  font-size: 14px;
}
.careerSec3 .wpcf7-form.invalid .frmWrap {
  margin: 0;
}
.careerSec3 .wpcf7-form.invalid .frmWrap p {
  margin-bottom: 6px;
}

/* contact */
.contactFrmWrap .wpcf7-form.invalid .wpcf7-form-control-wrap .inputTxt {
  margin-bottom: 3px;
}
.contactFrmWrap .wpcf7-form.invalid .wpcf7-form-control-wrap {
  margin-bottom: 10px;
}
.contactFrmWrap .wpcf7-form.invalid .wpcf7-response-output {
  margin: 0;
  font-size: 14px;
  font-family: "poppins";
}
.contactFrmWrap .wpcf7-form.invalid .frmWrap {
  margin: 0;
}
.contactFrmWrap .wpcf7-form.invalid .frmWrap p {
  margin-bottom: 6px;
}

.page-template-contact_us .contactFrmWrap {
  display: none;
}

/* newletter */
.newletterWrap .wpcf7-form.invalid .wpcf7-response-output {
  display: none;
}
.contact.newletterWrap .contact-form {
  position: relative;
}
.main-page-footer .content .contact .wpcf7-form.invalid .contact-form {
  overflow: visible;
}
.newletterWrap .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 27px);
}

/* fancy-box form */
#single-apply-form {
  width: 50%;
  margin: 0 auto;
  border-radius: 20px;
}

#single-apply-form select,
#single-apply-form input,
#single-apply-form textarea {
  background-color: #f0f0f0;
  font-weight: 400;
  font-size: 16px;
  color: #5e5e5e;
  height: 60px;
  border: none !important;
  border-radius: 10px;
  padding-left: 20px;
  width: 100%;
  margin-bottom: 20px;
}
#single-apply-form textarea {
  padding: 10px 20px;
  height: 100px;
}
#single-apply-form .frmWrap .inputTxt {
  background-color: transparent;
  margin-bottom: 0;
  z-index: 1;
  color: #000;
}
#single-apply-form .frmWrap .wpcf7-spinner {
  display: none;
}
#single-apply-form input.wpcf7-form-control.wpcf7-submit {
  padding: 0 58px;
}
#single-apply-form .more-btn {
  border: 1px solid #43c206;
}
#single-apply-form .frmBtnWrap {
  justify-content: center;
}
#single-apply-form #FileInput3 {
  opacity: 0;
  width: 100%;
  height: 60px;
  cursor: pointer;
}

.num_wrap {
  display: flex;
  gap: 10px;
}

.num_wrap span:last-child {
  display: none;
}

.conactFromWrap .frmBtnWrap .wpcf7-spinner {
  display: none;
}

/* brochure page */

/* brochure download styling */

/* brc second section start */

.brc-second-section {
  padding: 100px 0px;
  border-radius: 108px 108px 0px 0px;
  background: #eafaff;
  position: relative;
  margin-top: -180px;
  z-index: 10;
}

.brc-second-section .content .each-brc {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.brc-second-section .content .each-brc .brc-img {
  width: 100%;
  height: 400px;
  border-radius: 35px;
  overflow: hidden;
}

.brc-second-section .content .each-brc .brc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.news-img img {
  transition: all 0.5s;
}

.brc-second-section .content .each-brc:hover .brc-img img,
.news-second-section .content .each-news:hover .news-img img {
  transform: scale(1.2) !important;
}

.brc-second-section .content .each-brc .brc-title {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  color: #000;
  font-family: Poppins;
  font-size: 22px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.brc-second-section .content .each-brc .brc-title p {
  width: 80%;
  transition: all 0.3s ease-in-out;
}

.brc-second-section .content .each-brc .brc-title .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  padding: 0px 2px;
}

.brc-second-section .content .each-brc:hover .brc-title {
  color: #46b911;
}

.brc-second-section .content .pagination {
  justify-content: center;
}

/* mobile menu */

.mobLogoWrap {
  padding: 20px;
  width: 100%;
  border-bottom: 2px solid #43c206;
  position: relative;
  margin-bottom: 20px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
.toggleBtn {
  position: absolute;
  right: 20px;
  color: #fff;
  font-size: 12px;
  top: 5px;
}

body.openMob {
  overflow: hidden;
  height: 100% !important;
}

.openMob .mobLogoWrap {
  opacity: 1;
  visibility: visible;
  transition-delay: 1s;
}
.mobLogoWrap img {
  width: 200px;
  height: auto;
}
.menu-background {
  visibility: hidden;
  width: 630%;
  height: 715px;
  position: absolute;
  left: -280%;
  background-color: #fff;
  transition: background-position 0.5s, transform 0.5s 0.5s, visibility 0.5s 1s;
}
.openMob .menu-background {
  visibility: visible;
  transition: background-position 0.5s, transform 0.5s 0.5s;
}
.menu-background.top {
  transform: rotate(-45deg) translateY(-95%);
  background: #f9f5f5;
  background-size: 100% 200%;
  background-position: -100% 100%;
  backdrop-filter: blur(5px);
  transition-delay: 0.1s;
}
.openMob .menu-background.top {
  transform: rotate(-45deg) translateY(-70%);
  background-position: 0 0;
}
.menu-background.middle {
  transform: rotate(-45deg) translateY(50%) scaleY(0);
  background: #fff;
  background: #f9f5f5;
  width: 710%;
  backdrop-filter: blur(5px);
}
.openMob .menu-background.middle {
  transform: rotate(-45deg) translateY(-12%) scaleY(1);
}
.menu-background.bottom {
  transform: rotate(-45deg) translateY(250%);
  background: #f9f5f5;
  backdrop-filter: blur(5px);
  background-size: 100% 200%;
  background-position: 0 -100%;
}
.openMob .menu-background.bottom {
  transform: rotate(-45deg) translateY(105%);
  background-position: 0 0;
}
.mob-menu-navigation {
  position: fixed;
  visibility: hidden;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
}
.mob-menu-navigationInner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
}
.openMob .mob-menu-navigation {
  visibility: visible;
}

.mob-menu-navigation .headMenuUl {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* height: calc(100vh - 170px); */
  max-height: calc(100vh - 320px);
  overflow-y: auto;
  width: 90%;
  margin: 0px auto;
  padding-right: 15px;
  position: relative;
  z-index: 9;
  margin-bottom: 20px;
}

.headMenuUl::-webkit-scrollbar {
  width: 5px;
  height: 0px;
}

.headMenuUl::-webkit-scrollbar-track {
  background-color: #ccc;
  /* background-color: transparent; */
}

.headMenuUl::-webkit-scrollbar-thumb {
  background-color: #1b9ebc;
  /* background-color: transparent; */
}

.mob-menu-navigation .headMenuUl li {
  opacity: 0;
  margin-bottom: 5px;
  transform: translateX(20px);
  transition: all 0.3s;
  padding: 10px 20px;
  width: 100%;
}
.mob-menu-navigation .headMenuUl li:nth-child(5) {
  transition-delay: 0.1s;
}
.mob-menu-navigation .headMenuUl li:nth-child(5) span {
  transition-delay: 0.1s;
}
.mob-menu-navigation .headMenuUl li:nth-child(4) {
  transition-delay: 0.2s;
}
.mob-menu-navigation .headMenuUl li:nth-child(4) span {
  transition-delay: 0.2s;
}
.mob-menu-navigation .headMenuUl li:nth-child(3) {
  transition-delay: 0.3s;
}
.mob-menu-navigation .headMenuUl li:nth-child(5) {
  transition-delay: 0.4s;
}
.mob-menu-navigation .headMenuUl li:nth-child(6) {
  transition-delay: 0.5s;
}
.mob-menu-navigation .headMenuUl li:nth-child(7) {
  transition-delay: 0.6s;
}
.mob-menu-navigation .headMenuUl li:nth-child(3) span {
  transition-delay: 0.3s;
}
.mob-menu-navigation .headMenuUl li:nth-child(2) {
  transition-delay: 0.4s;
}
.mob-menu-navigation .headMenuUl li:nth-child(2) span {
  transition-delay: 0.4s;
}
.mob-menu-navigation .headMenuUl li:nth-child(1) {
  transition-delay: 0.5s;
}
.mob-menu-navigation .headMenuUl li:nth-child(1) span {
  transition-delay: 0.5s;
}
.openMob .mob-menu-navigation .headMenuUl li {
  opacity: 1;
  transform: translateX(0);
  backface-visibility: hidden;
  border: 1px solid #43c206;
  background: #e2f1db;
  margin-bottom: 10px;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(1) {
  transition-delay: 1.1s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(1) span {
  transition-delay: 1.1s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(2) {
  transition-delay: 1.2s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(2) span {
  transition-delay: 1.2s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(3) {
  transition-delay: 1.3s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(3) span {
  transition-delay: 1.3s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(4) {
  transition-delay: 1.4s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(4) span {
  transition-delay: 1.4s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(5) {
  transition-delay: 1.5s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(5) span {
  transition-delay: 1.5s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(6) {
  transition-delay: 1.6s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(7) {
  transition-delay: 1.7s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(8) {
  transition-delay: 1.8s;
}
.openMob .mob-menu-navigation .headMenuUl li:nth-child(9) {
  transition-delay: 1.9s;
}
.mob-menu-navigation .headMenuUl a {
  position: relative;
  font-size: 24px;
  text-decoration: none;
  color: #43c206;
  display: block;
  line-height: 40px;
}
.mob-menu-navigation .headMenuUl a::before {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  position: absolute;
  left: -30px;
  top: 50%;
  background-color: #6191d1;
  transform: translateY(-50%);
  transition: width 0.3s;
}
.mob-menu-navigation .headMenuUl a:hover::before {
  width: 15px;
}
.openMob .mob-menu-navigationInner {
  visibility: visible;
}
.openMob .mob-menu-navigation .headMenuUl li .toggleBtn {
  position: absolute;
  right: 20px;
  color: #fff;
  font-size: 12px;
  top: 10px;
}

.openMob .mob-menu-navigation .headMenuUl li .toggleBtn i {
  transition: all 0.5s;
}

.openMob .mob-menu-navigation .headMenuUl li .toggleBtn.active i {
  transform: rotate(180deg);
}

.header .hasChild.active .toggleBtn i {
  transition: all 0.5s;
}

.header .hasChild.active .toggleBtn i {
  transform: rotate(180deg);
}

/* .openMob .mob-menu-navigation .headMenuUl li ul {
  display: none;
} */

.mob-menu-navigation .headMenuUl ul li {
  background-color: #1c1c1c;
}
.mob-menu-navigation .headMenuUl ul li a {
  font-size: 20px;
  font-weight: 500;
}
.menuC {
  display: none;
  width: 30px;
  height: 30px;
  display: flex;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
  justify-content: center;
  position: absolute;
  right: 40px;
}

.menuC i {
  font-size: 32px;
  color: #43c206;
}

.mob-bottomBar {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.stickyBtmMenu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: none;
}

.hamburger-menu-button {
  width: 40px;
  height: 40px;
  padding: 6px;
  display: block;
  position: relative;
  margin-top: 0;
  z-index: 100;
  background: #2980b9;
  border: 4px solid white;
  box-sizing: content-box;
  border-radius: 50%;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  outline: 0;
  left: 50%;
  transform: translateX(-50%);
  top: -8px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
}
.hamburger-menu-button-open {
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -12px;
}
.hamburger-menu-button-open,
.hamburger-menu-button-open::before,
.hamburger-menu-button-open::after {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger-menu-button-open::before,
.hamburger-menu-button-open::after {
  left: 0;
  content: "";
}
.hamburger-menu-button-open::before {
  top: 6px;
}
.hamburger-menu-button-open::after {
  bottom: 6px;
}
.hamburger-menu-button-close {
  background: transparent;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.hamburger-menu-button-close::before {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
.hamburger-menu-button-close::after {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.ham-menu {
  position: absolute;
  top: -80px;
  left: 50%;
  margin: auto;
  width: auto;
  transform: translate(-50%) scale(0);
  height: 200px;
  opacity: 0;
  transition: ease-in 0.5s;
  transform-origin: center bottom;
}

.ham-menu.on{
  opacity: 1;
  transform: translate(-50%) scale(1);
}
.ham-menu ul {
  transition: all 0.5s ease-in-out;
}

.ham-menu ul {
  width: 100%;
  height: 100%;
}
.ham-menu ul li {
  display: inline-block;
  background-color: #3896d3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}

.ham-menu.on ul li{
  opacity: 1;
  transform: translate(-50%, -50%);
}

.ham-menu ul li:first-child {
  bottom: 0;
  left: 17px;
  background-color: #464d46;
}

.ham-menu ul li:nth-child(2) {
  bottom: 0;
  left: 17px;
  background-color: #38b8d3;
}

.ham-menu ul li:nth-child(3) {
  bottom: 0;
  left: -30px;
  background-color: #38d33b;
}

.ham-menu ul li:last-child{
  bottom: 0;
  left: -30px;
  background-color: #d36138;
}

.ham-menu.on ul li{
  transition: ease-in 0.5s;
}

.ham-menu.on ul li:first-child {
  top: 85px;
  left: -70px;
}

.ham-menu.on ul li:nth-child(2) {
  top: 25px;
  left: -35px;
}

.ham-menu.on ul li:nth-child(3) {
  top: 25px;
  left: 35px;
}

.ham-menu.on ul li:last-child{
  top: 85px;
  left: 70px;
}

.ham-menu ul li:first-child .ham-menu ul li a {
  padding-left: 30px;
}
.ham-menu ul li a {
  padding: 15px;
  display: block;
  background-color: transparent;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ham-menu ul li.active a,
.ham-menu ul li a:hover {
  /* background-color: #2980b9; */
  color: #fff !important;
}

/* career-form */
#single-apply-form select,
#single-apply-form input,
#single-apply-form textarea {
  margin-bottom: 5px;
}
#single-apply-form .wpcf7-form.invalid .frmBtnWrap {
  margin-bottom: 0;
}
#single-apply-form .wpcf7-form.invalid .frmBtnWrap p {
  margin-bottom: 5px;
}
#single-apply-form .wpcf7-form.invalid .wpcf7-response-output {
  margin: 0;
  text-align: center;
}
.applyFrmWrap .wpcf7-not-valid-tip {
  text-align: left;
  font-size: 14px;
}

.page-template-template_career .careerSec3 form p {
  margin-bottom: 15px;
}

.mobmenuAddress{
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0px auto;
  opacity: 0;
  margin-bottom: 5px;
  transform: translateX(20px);
  transition: all 0.3s;
}

.openMob .mob-menu-navigation .mobmenuAddress{
  opacity: 1;
  transform: translateX(0);
  backface-visibility: hidden;
  transition-delay: 2s;
}

.mobmenuAddTop{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.mobmenuAddInn img{
  filter: brightness(0) saturate(100%) invert(51%) sepia(34%) saturate(4445%) hue-rotate(157deg) brightness(94%) contrast(79%);
  margin-right: 6px;
  width: 20px;
  height: auto;
}

.mobmenuAddInn a{
  color: #36b307;
  font-size: 17px;
}

.mobmenuAddBtm{
  display: flex;
  justify-content: center;
  gap: 13px;
}

.mobmenuAddBtm a{
  width: 40px;
  height: 40px;
  background: #e2f1db;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobmenuAddBtm a i {
  font-size: 20px;
  color: #458926;
}

/* thank you page */

.page-template-thank_you .headerMain {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 0px;
}

.page-template-thank_you .eleventh-section {
  display: none;
}

.page-template-thank_you .main-page-footer {
  margin-top: 120px;
}

.page-template-thank_you main {
  background: #fbfdfa;
}

.thankyouDiv {
  padding-top: 80px;
  text-align: center;
}

.ThankyouGif {
  margin: 0px auto;
  width: 110px;
  height: auto;
}

.ThankyouGif img {
  width: 100%;
  height: 100%;
}

.thankyouDivInn {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.wrapper-2 {
  padding: 30px;
  text-align: center;
}
.wrapper-2 h2 {
  font-family: "Kaushan Script", cursive;
  font-size: 90px;
  letter-spacing: 2px;
  color: #43c206;
  margin: 0;
  margin-bottom: 20px;
}
.wrapper-2 p {
  margin: 0;
  font-size: 1.3em;
  color: #aaa;
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 1px;
}
.gohomeBtn {
  color: #fff;
  background: #43c206;
  border: none;
  padding: 10px 20px;
  margin: 30px auto 0px auto;
  border-radius: 30px;
  text-transform: capitalize;
  box-shadow: 0 10px 16px 1px rgb(213 255 218);
  display: block;
  width: 180px;
  border: 2px solid transparent;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: all 0.5s ease;
}

.gohomeBtn:hover {
  background-color: #fff;
  color: #43c206;
  border: 2px solid #43c206;
}

/* 404 not found page */

.page-template-404-not-found .headerMain {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 0px;
}

.page-template-404-not-found .eleventh-section {
  display: none;
}

.page-template-404-not-found .main-page-footer {
  margin-top: 120px;
}

.notFoundDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  text-align: center;
}

.notFoundDivInn h2 {
  font-size: 80px;
  font-family: serif;
  font-weight: 600;
  color: #43c206;
}

.notFoundDivInn h6 {
  font-size: 25px;
  font-family: serif;
  font-weight: 600;
}

.notFoundGif {
  width: 100%;
  height: 350px;
}

.notFoundGif img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive */

@media (max-width: 1199px) {
  .munu_dropdown_toggle {
    position: relative;
    right: -3px;
  }
}

@media (max-width: 991px) {
  .sub-menu {
    left: 0;
    top: 0;
    width: 100%;
    background-color: var(--color-white);
    position: static;
    color: var(--heading-color);
    box-shadow: 0 1px 2px 0 rgba(2, 0, 181, 0.1);
    border-top: 2px solid var(--accent-color);
    padding: 0;
    display: none;
    z-index: 100;
    opacity: 1;
    visibility: visible;
    border-radius: 0 0 5px 5px;
    transition: 0.1s;
    margin: 0;
  }
  li:hover .sub-menu {
    top: 0;
    opacity: 1;
    visibility: visible;
  }

  .munu_dropdown_toggle {
    top: 15px;
    z-index: 10;
    right: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #2b2b2b;
  }

  .mob-menu-navigation .headMenuUl li li a {
    line-height: 36px;
  }
  .mob-menu-navigation .headMenuUl a {
    display: inline-block;
  }

  .headMenuUl li.haschild:hover .sub-menu {
    padding: 0;
    display: none;
    background-color: #1c1c1c;
    border-top: 2px solid var(--blue) !important;
  }
  .headMenuUl li.haschild:hover .sub-menu > li {
    margin: 0;
    padding: 7px 20px;
  }
  .headMenuUl li.haschild:hover .sub-menu > li:not(:last-child) {
    border-bottom: 2px solid #2f2f2f !important;
  }

  .notFoundDivInn h2 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .mobLogoWrap {
    justify-content: space-between;
  }

  .mobLogoWrap img {
    width: 175px;
    height: auto;
  }

  .menuC {
    position: static;
  }

  .menuC i {
    font-size: 28px;
  }

  .wrapper-2 h2 {
    font-size: 60px;
  }

  .wrapper-2 p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .openMob .menu-background.top {
    transform: rotate(-45deg) translateY(-60%);
  }
  .openMob .menu-background.bottom {
    transform: rotate(-45deg) translateY(90%);
    background-position: 0 0;
  }

  .wrapper-2 h2 {
    font-size: 45px;
  }

  .thankyouDiv {
    padding-top: 40px;
  }

  .notFoundDivInn h2 {
    font-size: 45px;
  }
}

.page-template-template_about-us {
  overscroll-behavior: initial !important;
  scroll-behavior: initial !important;
}
.page-template-template_about-us .ScrollSmoother-wrapper {
  position: static !important;
  height: auto !important;
}
.page-template-template_about-us #scrollsmoother-container {
  transform: none !important;
}

/* whatsapp button */

.whatsappBtn {
  position: fixed;
  right: 20px;
  /* top: 80%; */
  /* transform: translateY(-50%); */
  bottom: 50px;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background-color: #35a500;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.5s;
}

.whatsappBtn i {
  font-size: 35px;
  color: #fff;
  transition: all 0.5s;
}

.whatsappBtn:hover{
  background-color: #fff;
  border: 1px solid #35a500;
}

.whatsappBtn:hover i{
  color: #35a500;
}

.chairmanMsgDiv {
  padding-top: 50px;
  /* align-items: center; */
}

.chairmanTxtInn {
  position: relative;
  height: 400px;
  overflow-y: auto;
  margin-bottom: 15px;
  padding-right: 10px;
}

.chairmanTxtInn::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.chairmanTxtInn::-webkit-scrollbar-track {
  background-color: #ccc;
}

.chairmanTxtInn::-webkit-scrollbar-thumb {
  background-color: #194a02;
}

/* .chairmanTxtInn::after{
  content: '\f10d';
  font-family: fontawesome;
  position: absolute;
  left: -10%;
  top: -8%;
  font-size: 50px;
  color: #35a500;
} */

.chairmanTxtInn p {
  font-size: 16px;
  line-height: 1.7;
}

.chairmanImg {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #abe3f0;
  border-radius: 30px;
}

.chairmanImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.clientSliderImg {
  width: 150px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.clientSliderImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certificSwiper {
  position: static;
  padding: 20px 25px;
}

.certificCard {
  text-align: center;
  border: 1px solid rgb(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px 0px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.certificImg {
  width: 150px;
  height: 120px;
  margin: 0px auto;
}

.certificImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certificCard:hover {
  border: 1px solid transparent;
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
}

.certificCard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #35a500;
  transition: all 0.5s;
}

.certificCard:hover::after {
  content: "";
  width: 100%;
  height: 7px;
}

.certificSecBtm {
  position: relative;
  padding: 0px 30px;
}

.certificSwiper .swiper-button-next,
.certificSwiper .swiper-button-prev {
  width: 35px;
  height: 40px;
  border-radius: 5px;
  background-color: #cfcfcf;
  color: #828282;
}

.certificSwiper .swiper-button-next:after,
.certificSwiper .swiper-button-prev:after {
  font-size: 16px;
}

/* product page */

.mobView {
  display: none;
}

.resProdAcc {
  padding-top: 30px;
}

.resProdAccInn {
  background-color: #eafaff;
  border: none;
  padding: 0px !important;
  border-radius: 15px;
  margin-bottom: 20px;
}

.prodacc-content {
  display: none;
  padding: 12px 25px;
}

.resProdAccInn.active .prodacc-content {
  display: block;
}

.prodacc-content .img-con {
  width: 400px;
  height: 350px;
  margin: 0px auto;
  position: relative;
}

.prodacc-content .img-con::after {
  position: absolute;
  content: "";
  height: 300px;
  width: 100%;
  top: 0;
  left: 0;
  background: #a4e2ff;
  border-radius: 35px;
  box-shadow: 27px 67px 80px 12px rgba(0, 0, 0, 0.09);
}

.prodacc-content .img-con img {
  top: 36%;
  position: relative;
  z-index: 1;
  width: 300px;
  height: 270px;
  object-fit: contain;
  margin: 0px auto;
  display: flex;
  transform: translateY(-50%);
}

.prodacc-content .acc-content-inner {
  display: block;
  padding-left: 0;
  width: 100%;
}

.resProdAcc-head {
  background-color: #46b911;
  padding: 14px 20px;
  border-radius: 15px;
  position: relative;
}

.resProdAcc-head::after {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: rgba(67, 194, 6, 1);
  display: flex;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  content: "\f0d7";
  font-family: "FontAwesome";
  position: absolute;
  right: 25px;
  top: 12px;
  font-size: 20px;
  transition: all 0.5s;
}

.resProdAcc-head h5 {
  color: #fff;
}

.resProdAccInn.active .acc-head {
  background-color: transparent;
}

.resProdAccInn.active .resProdAcc-head::after {
  background-color: #30a4dc;
  color: #fff;
  transform: rotate(180deg);
}

.resProdAccInn.active .resProdAcc-head {
  background-color: transparent;
  padding: 12px 25px;
}

.resProdAccInn.active .resProdAcc-head h5 {
  color: #000;
}

.single-post .bgdt-second-section .blogDetailsWrap .form-inner .submit-btn {
  color: #43c206;
}
.single-post .bgdt-second-section .blogDetailsWrap .form-inner .more-btn:hover .submit-btn {
  color: #fff;
}
.single-post .bgdt-third-section .bgdt-third-sec-btn .more-btn span {
  color: #43c206;
}
.single-post .bgdt-third-section .bgdt-third-sec-btn .more-btn:hover span {
  color: #fff;
}

/* epr page */

.page-template-template_epr .second-section .text-con h2 {
  font-size: 39px;
}

.page-template-template_epr .second-section .text-con p {
  font-size: 18px;
}

.page-template-template_epr .second-section .text-con, .page-template-template_epr .second-section .img-con {
  width: 100%;
  height: 620px;
  border-radius: 35px;
}

.page-template-template_epr .second-section .img-con::after, .page-template-template_epr .second-section .img-con::before{
  content: normal;
}

.page-template-template_epr .pd-fourth-section .listContBox .tab_content .content .img-con{
  width: 100%;
  height: 420px;
  transition: all 0.5s;
  overflow: hidden;
  border-radius: 35px;
}

.page-template-template_epr .pd-fourth-section .listContBox .tab_content .content .img-con img{
  position: static;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  object-fit: cover;
  transition: all 0.5s;
  overflow: hidden;
}

.page-template-template_epr .pd-fourth-section .listContBox .tab_content .content .img-con::after{
  background-color: transparent;
  box-shadow: none;
}

.page-template-template_epr .pd-fourth-section .listContBox .tab_content .content .img-con:hover img{
  transform: scale(1.1);
}

.page-template-template_epr .pd-fourth-section ul.tabs li{
  font-size: 18px;
}

.page-template-template_epr .pd-fourth-section .listContBox .tab_content .content {
  margin-top: 25px;
}

.page-template-template_epr .pd-fourth-section .listContBox .tab_content .text-con{
  height: 100%;
  background-image: url(../images/flip-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 35px;       
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-shadow: 9px 18px 43px 4px rgba(0, 0, 0, 0.17);                                                                                          
}

.page-template-template_epr .pd-fourth-section .listContBox .tab_content .text-con .box-head {
  font-size: 25px;
  font-weight: 600;
  font-family: 'Poppins';
}

.page-template-template_epr .pd-fourth-section {
  background: #fff;
}

.page-template-template_epr .innerBanner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.44);
}

.eprResponsibility{
  background-color: #DEF6D1;
}

.empowerSec{
  background-color: #DEF6D1;
}

.empowerSec h2.secH{
  margin-bottom: 0;
}

.eprSmallSecH{
  color: #1B9EBC;
  font-size: 30px;
  font-weight: 500;
  font-family: 'poppins';
  margin-bottom: 20px;
}

.empowerSec p, .eprResponsibility p{
  font-size: 18px;
  color: #000;
  font-weight: 400;
}

.eprResTop{
  padding: 20px 0px 40px;
  text-align: center;
  max-width: 70%;
  margin: 0 auto;
}

.eprResFig{
  width: 100%;
  height: 420px;
  border-radius: 35px;
  transition: all 0.5s;
  overflow: hidden;
}

.eprResFig img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
  transition: all 0.5s;
  overflow: hidden;
}

.eprResFig:hover img{
  transform: scale(1.1);
}

.empowerSecTop{
  padding-top: 20px;
  padding-bottom: 60px;
}

.eprResCard{
  height: 300px;
  border-radius: 20px;
  background-color: #fff;
  padding: 30px;
  font-family: Poppins;
  transition: all 0.4s ease-in-out;
}

.eprResCard:hover {
  box-shadow: 15px 20px 41px 0px rgba(0, 0, 0, 0.16);
  background-image: url(../images/flip-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-color: transparent;
}

.eprResCardFig{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #EAEDEE;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.eprResCardFig img{
  width: 57px;
  height: auto;
}

.eprResCardCont{
  text-align: center;
}

.eprResCardCont h6{
  color: #000;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.4;
}

.eprResCardBig .eprResCardCont h6{
  font-weight: 500;
  margin-bottom: 0;
}

.eprResCardBig{
  height: auto;
  box-shadow: 9px 18px 43px 4px rgba(0, 0, 0, 0.17);
}

.eprResCardBig:hover{
  background: none;
  background-color: #fff;
}

.eprResBtm p span{
  color: #216800;
}

.empowerSec .eprSmallSecH{
  max-width: 55%;
  margin-left: auto;
  margin-right: auto;
}

.mobBan{
  display: none;
}