html {
  scroll-padding-top: 65px;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #052730;
  font-size: 16px;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.noScroll {
  overflow: hidden;
}

.section_space {
  padding: 48px 0;
}

.section_space_bottom {
  padding: 0 0 48px 0;
}

h1 {
  font-weight: 700;
  font-size: 50px;
  font-family: "Noto Serif", serif;
}

h2 {
  font-size: 42px;
  font-weight: 600;
}

h3.subheading {
  color: #0F7D42;
}

p {
  font-size: 16px;
}

.stackAbove {
  position: relative;
  z-index: 2;
}

.header_main {
  position: fixed;
  top: 0;
  transition: top 0.1s ease-in-out;
  width: 100%;
  z-index: 1024;
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 88%, rgba(0, 0, 0, 0) 100%);
}
.header_main__top {
  background: linear-gradient(112deg, rgb(0, 48, 34) 0%, rgb(0, 113, 95) 49%);
  font-size: 15.8px;
  padding: 7.5px 0;
  color: #fff;
}
.header_main__top p {
  font-size: 15.8px;
  line-height: 24px;
  margin-bottom: 0;
}
.header_main__top p a {
  color: #32CD32;
  text-decoration: none;
  background: #fff;
  font-size: 12.5px;
  padding: 4px 10px;
  border-radius: 5px;
}
.header_main__logo .main__logo_space {
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
}
.header_main__logo .widgetBox {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.header_main__logo .widgetBox__icon {
  margin-right: 15px;
}
.header_main__logo .widgetBox__icon .icon_border {
  font-size: 22px;
  border: 1px solid #32CD32;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #32CD32;
}
.header_main__logo .widgetBox__content {
  flex-grow: 1;
}
.header_main__logo .widgetBox__title {
  font-size: 15.8px;
  font-weight: 200;
}
.header_main__logo .widgetBox__description p {
  margin-bottom: 0;
  line-height: 18px;
}
.header_main__logo .widgetBox__description p a {
  color: #052730;
  text-decoration: none;
}
.header_main__logo .hamburger_center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header_main__nav .navbar-text {
  padding: 0px;
}
.header_main__nav .navbar-text .btn.btn-brand {
  padding: 8px 30px;
}
.header_main__nav .navbar-collapse {
  justify-content: center;
}
.header_main__nav .navbar {
  padding: 0;
}
.header_main__nav .navbar-nav .nav-item a.nav-link {
  font-size: 16px;
  line-height: 29px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 10px 0;
  margin: 0 20px;
  position: relative;
  color: #fff;
}
.header_main__nav .navbar-nav .nav-item a.nav-link:before {
  content: "";
  background: #fff;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}
.header_main__nav .navbar-nav .nav-item a.nav-link:hover::before, .header_main__nav .navbar-nav .nav-item a.nav-link.active::before {
  width: 100%;
}
.header_main__nav .navbar-nav .nav-item a.nav-link.active {
  color: #acf53e;
}
.header_main__nav .navbar-nav .nav-item .socialmedia,
.header_main__nav .navbar-nav .nav-item .btn-brand {
  margin: 0 20px;
}
.header_main__nav .navbar-nav .nav-item:last-child a.nav-link {
  margin-right: 0;
}

.nav-up {
  top: -90px;
}

.navbar-collapse .hamburger_btn.active {
  opacity: 9;
  display: block;
}
.navbar-collapse .hamburger_btn.active .top {
  background: #fff;
}
.navbar-collapse .hamburger_btn.active .bottom {
  background: #fff;
}

.hamburger_btn {
  display: none;
  position: relative;
  float: right;
  height: 27px;
  width: 38px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.hamburger_btn:hover {
  opacity: 0.7;
}
.hamburger_btn.active {
  opacity: 0.2;
}
.hamburger_btn.active .top {
  transform: translateY(11px) rotate(45deg);
  background: #acf53e;
}
.hamburger_btn.active .middle {
  opacity: 0;
  background: #acf53e;
}
.hamburger_btn.active .bottom {
  transform: translateY(-11px) rotate(-45deg);
  background: #acf53e;
}
.hamburger_btn span {
  background: #acf53e;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  border-radius: 0.2rem;
}
.hamburger_btn span:nth-of-type(2) {
  top: 11px;
}
.hamburger_btn span:nth-of-type(3) {
  top: 22px;
}

.navClosebtn {
  display: none;
  position: absolute;
  top: 24px;
  right: 10px;
  font-size: 50px;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}
.navClosebtn:hover {
  opacity: 1;
}

.navbar-brand {
  opacity: 0;
}

.stickyBg .navbar-brand {
  opacity: 1;
  transition: opacity 3s;
}

.stickyBg {
  background: rgba(0, 0, 0, 0.9);
  transition-duration: 0.4s;
}
.stickyBg .header_main__logo .main__logo_space {
  padding: 8px 0;
  transition: all 0.3s ease-in-out;
}

.banner_wrap {
  position: relative;
}
.banner_wrap .carousel .carousel-inner .carousel-item {
  position: relative;
}
.banner_wrap .carousel .carousel-inner .carousel-item::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.55;
  z-index: 1;
}
.banner_wrap .carousel .carousel-inner .carousel-item .carousel_info {
  max-width: 640px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 1.25rem 0;
  padding-top: 60px;
  color: #fff;
  text-align: left;
  z-index: 5;
}
.banner_wrap .carousel .carousel-inner .carousel-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  min-height: 380px;
}

.banner_wrap.inner_banner_wrap .carousel .carousel-inner .carousel-item img {
  max-height: 600px;
}

.gradientBg {
  background: #0F7D42;
  position: relative;
  overflow: hidden;
  background-size: 130% 130%;
  animation: gradient 15s ease infinite;
}
.gradientBg:before {
  content: " ";
  background: url(../images/pattern-05.png);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  animation: zoominBg 40s ease-in infinite;
  transition: all 0.2s ease-in-out;
  background-position: left top;
  background-repeat: repeat;
  background-size: contain;
  background-attachment: fixed;
}

/* ============================== */
/* Home About Section Styles      */
/* ============================== */
.home_about {
  color: #fff;
}
.home_about .aboutImgcol {
  padding-right: 80px;
}
.home_about .img_holder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}
.home_about .homeAboutInfo {
  padding-top: 30px;
}
.home_about .aboutBtnHolder {
  padding: 30px 0;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.7);
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
/* ============================== */
/* Home product Section          */
/* ============================== */
.home_product .product_list {
  padding-top: 50px;
}
.home_product .product_list .ev_service_box {
  height: 100%;
  margin: 0px;
}

.product_detail_section .prodImgHolder {
  padding-right: 80px;
}
.product_detail_section .prodImgHolder img {
  max-width: 100%;
  border-radius: 30px;
  border: 1px solid lightgray;
  border-radius: 12px;
}
.product_detail_section hr {
  border-color: #0F7D42;
}
.product_detail_section .prodInfo {
  padding: 30px 0 0 0;
}
.product_detail_section .prodInfo .fa-ul li {
  margin-bottom: 8px;
  padding-left: 10px;
}
.product_detail_section .prodInfo .fa-ul li i {
  color: #0F7D42;
}

/* ============================== */
/* Home Stations Section          */
/* ============================== */
.home_stations .stations_list {
  padding-top: 50px;
}
.home_stations .stations_list .ev_service_box {
  margin: 10px 5px;
  height: 100%;
}

.product_list .stations_list {
  padding-top: 50px;
}
.product_list .stations_list .ev_service_box {
  margin: 0;
  height: 100%;
  border: 1px solid lightgray;
}

/* ============================== */
/* Home Info Boxed Section        */
/* ============================== */
.home_info_boxed {
  position: relative;
  overflow: hidden;
}
.home_info_boxed:before {
  content: " ";
  background: url(../images/curved_bg.png);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  background-repeat: repeat-x;
  background-size: contain;
}
.home_info_boxed .info_boxed {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  background-color: #44b069;
  /* Background overlay for boxed content */
  /* Boxed content layout */
  /* Right section of the info box */
}
.home_info_boxed .info_boxed:before {
  content: " ";
  background: url(../images/info_bg.png);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  animation: zoominBg 40s ease-in infinite;
  transition: all 0.2s ease-in-out;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.home_info_boxed .info_boxed .info_boxed_row {
  position: relative;
  z-index: 2;
}
.home_info_boxed .info_boxed .info_boxed_content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.home_info_boxed .info_boxed img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}
.home_info_boxed .info_boxed .info_boxed_right {
  width: 380px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home_info_boxed .info_boxed .info_boxed_right img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
}
.home_info_boxed .info_boxed .info_boxed_right .info_boxed_img_holder {
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  height: 50%;
}
.home_info_boxed .info_boxed .info_boxed_right .info_boxed_video_holder {
  transition: all 0.3s ease-in-out;
  position: relative;
  margin-top: auto;
  height: 50%;
  /* Video play button styles */
}
.home_info_boxed .info_boxed .info_boxed_right .info_boxed_video_holder .video-play-button {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.33s, opacity 0.33s linear;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  text-decoration: none;
  color: #fff;
  border-radius: 50%;
}
.home_info_boxed .info_boxed .info_boxed_right .info_boxed_video_holder .video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #32CD32;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.home_info_boxed .info_boxed .info_boxed_right .info_boxed_video_holder .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #acf53e;
  border-radius: 50%;
  transition: all 200ms;
}
.home_info_boxed .info_boxed .info_boxed_right .info_boxed_video_holder .video-play-button:hover:after {
  background-color: #32CD32;
}
.home_info_boxed .info_boxed .info_boxed_right .info_boxed_video_holder .video-play-button i {
  position: relative;
  z-index: 3;
  font-size: 32px;
  left: 3px;
}
.home_info_boxed .info_boxed:hover {
  transition: all 0.2s ease-in-out;
}
.home_info_boxed .info_boxed:hover .info_boxed_img_holder {
  padding: 18px 18px 9px 18px;
  transition: all 0.3s ease-in-out;
}
.home_info_boxed .info_boxed:hover .info_boxed_img_holder img {
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  visibility: visible;
}
.home_info_boxed .info_boxed:hover .info_boxed_video_holder {
  padding: 9px 18px 18px 18px;
  transition: all 0.3s ease-in-out;
}
.home_info_boxed .info_boxed:hover .info_boxed_video_holder img {
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
.home_info_boxed .info_boxed:hover .info_boxed_video_holder .video-play-button {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

/* ============================== */
/* Home Services Section          */
/* ============================== */
.home_services {
  /* Heading Style */
  /* Service Box Styles */
}
.home_services h2,
.home_services p {
  color: #fff;
}
.home_services .service_wrap {
  padding: 50px 0 0 0;
}
.home_services .service_box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  display: block;
  height: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  /* Service Icon Styles */
  /* Service Box Title */
}
.home_services .service_box::before {
  background: url(../images/info_bg.png);
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  opacity: 0;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  transition: all 0.3s ease-in-out;
}
.home_services .service_box .service_details {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.home_services .service_box .service_icon {
  font-size: 60px;
  color: #32CD32;
}
.home_services .service_box h5 {
  color: #052730;
  font-size: 20px;
  font-weight: 600;
}
.home_services .service_box p {
  font-size: 16px;
  color: #052730;
}
.home_services .service_box:hover {
  color: #fff;
  background-color: #44b069;
}
.home_services .service_box:hover::before {
  opacity: 9;
}
.home_services .service_box:hover .service_icon {
  color: #fff;
}
.home_services .service_box:hover h5,
.home_services .service_box:hover p {
  color: #fff;
}
.home_services .service_box:hover .moreBtn {
  color: #fff;
}

/* ============================== */
/* Home Advantages Section        */
/* ============================== */
.home_advantages {
  /* Wrapper for Advantages List */
  /* Machine Image Section */
  /* Advantages List Styling */
}
.home_advantages .advantagesListWrap {
  padding-top: 50px;
  overflow: hidden;
}
.home_advantages .machine_img {
  position: relative;
  overflow: hidden;
  max-width: 568px;
  margin: 0 auto;
  /* Machine Image Styling */
  /* Ripple Effect Background */
}
.home_advantages .machine_img img {
  position: relative;
  z-index: 2;
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}
.home_advantages .machine_img:before {
  content: " ";
  background: url(../images/ev_machine_ripple_bg.png);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  animation: rotate-animation 90s infinite linear;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.home_advantages ul.advantagesList {
  padding-left: 0px;
}
.home_advantages ul.advantagesList li.details_box {
  list-style: none;
  margin-bottom: 70px;
  /* Paragraph Style for List Items */
}
.home_advantages ul.advantagesList li.details_box p {
  font-size: 16px;
}

/* ============================== */
/* Home FAQ Section              */
/* ============================== */
.home_faq {
  /* Background Holder Style */
}
.home_faq .faq_content {
  padding-right: 52px;
  /* FAQ Heading */
  /* Accordion Style */
  /* Accordion Button Arrow Icon */
}
.home_faq .faq_content h2 {
  color: #fff;
}
.home_faq .faq_content .accordion {
  margin-top: 36px;
}
.home_faq .faq_content .accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
.home_faq .bg_holder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  border-radius: 30px;
}

/* ============================== */
/* Home App Promo Section        */
/* ============================== */
.home_app_pramo {
  background-color: #000000;
  position: relative;
  background: url(../images/app_pramo_banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  /* Image Styling */
  /* App Promo Content */
  /* Mobile App Image */
  /* App Promo Details */
}
.home_app_pramo::before {
  content: " ";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #000000;
  opacity: 0.55;
  z-index: 1;
}
.home_app_pramo img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}
.home_app_pramo .app_pramo_content {
  position: relative;
  z-index: 2;
}
.home_app_pramo .mobileApp_img {
  padding-top: 20px;
  height: 100%;
  display: flex;
}
.home_app_pramo .mobileApp_img img {
  align-self: flex-end;
}
.home_app_pramo .app_pramo_details {
  color: #fff;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  /* Download Button Holder */
}
.home_app_pramo .app_pramo_details h1 span {
  color: #acf53e;
}
.home_app_pramo .app_pramo_details h2 {
  font-size: 60px;
}
.home_app_pramo .app_pramo_details .download_btn_holder {
  padding-top: 40px;
  max-width: 522px;
}

.app_detail_section .app_info {
  color: #fff;
}
.app_detail_section .app_detail_box {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  display: block;
  height: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  /* Service Icon Styles */
  /* Service Box Title */
}
.app_detail_section .app_detail_box::before {
  background: url(../images/info_bg.png);
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  opacity: 0;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  transition: all 0.3s ease-in-out;
}
.app_detail_section .app_detail_box .app_details {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.app_detail_section .app_detail_box .app_icon {
  font-size: 60px;
  color: #32CD32;
  width: 160px;
  height: 160px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
  border-radius: 50%;
}
.app_detail_section .app_detail_box .app_icon img {
  max-width: 100%;
}
.app_detail_section .app_detail_box h5 {
  color: #052730;
  font-size: 20px;
  font-weight: 600;
}
.app_detail_section .app_detail_box p {
  font-size: 16px;
  color: #052730;
}

.appWorks_section {
  color: #fff;
}
.appWorks_section .mobileApp_img img {
  max-width: 100%;
}
.appWorks_section ul.advantagesList {
  padding-left: 0px;
}
.appWorks_section ul.advantagesList li.details_box {
  list-style: none;
  margin-bottom: 0px;
  color: #fff;
}
.appWorks_section ul.advantagesList li.details_box .sub_title__content {
  color: #fff;
}
.appWorks_section ul.advantagesList li.details_box .sub_title__number {
  -webkit-text-stroke: 1px #acf53e;
  display: flex;
  flex-direction: column;
}
.appWorks_section ul.advantagesList li.details_box .sub_title__number .number_info {
  color: #fff;
  -webkit-text-stroke: 0px;
  font-size: 12px;
  font-weight: normal;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.appWorks_section ul.advantagesList li.details_box p {
  font-size: 16px;
  font-weight: normal;
}

.appFeatures_section .aboutImgcol {
  padding-right: 80px;
}
.appFeatures_section .img_holder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}
.appFeatures_section .grayBox {
  padding: 0 15px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  text-align: center;
}
.appFeatures_section .grayBox p {
  text-align: justify;
}
.appFeatures_section .machine_img {
  text-align: center;
}
.appFeatures_section .machine_img img {
  max-width: 80%;
}

/* ============================== */
/* Home Testimonial Section      */
/* ============================== */
.home_testimonial {
  padding-bottom: 124px;
  color: #fff;
  /* Owl Carousel Dot Active Style */
}
.home_testimonial .client_box {
  background-image: url("../images/testimonial_box_bg.png");
  background-color: #fff;
  padding: 64px;
  height: 100%;
  border-radius: 12px;
  color: #052730;
  text-decoration: none;
  display: block;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  /* Testimonial Text */
  /* Testimonial Icon */
  /* Author Details */
}
.home_testimonial .client_box p {
  font-size: 16px;
}
.home_testimonial .client_box .testi_icon_holder {
  position: relative;
}
.home_testimonial .client_box .testi_icon_holder i {
  border-radius: 12px;
  background: #32CD32;
  font-size: 34px;
  color: #fff;
  padding: 13px 15px;
  position: absolute;
  top: -94px;
  left: 0;
}
.home_testimonial .client_box .testimonial_author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.home_testimonial .client_box .testimonial_author .author_avatar img {
  max-width: 70px;
  height: auto;
  float: left;
  border-radius: 50%;
}
.home_testimonial .client_box .testimonial_author .author_details h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.home_testimonial .client_box .testimonial_author .author_details h6 {
  font-size: 15.8px;
  font-weight: 200;
  margin-bottom: 0;
}
.home_testimonial .owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}

/* ============================== */
/* Main Footer Section           */
/* ============================== */
footer.main_footer {
  background: #2a3239;
  color: #fff;
  padding-top: 62px;
}
footer.main_footer .footer_box_conainer {
  position: relative;
}
footer.main_footer .footer_wrap {
  margin-top: -115px;
  width: 100%;
  border: 5px solid #2a3239;
  border-radius: 12px;
  overflow: hidden;
}
footer.main_footer .footer_wrap .row .footer_box_col:last-child .footer_box::after {
  display: none;
}
footer.main_footer .footer_wrap .footer_box {
  padding: 30px;
  background: #64BC37;
  color: #fff;
  height: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
  /* Footer Box Separator */
}
footer.main_footer .footer_wrap .footer_box::after {
  background-repeat: no-repeat;
  width: 2px;
  height: 50px;
  position: absolute;
  background: #fff;
  z-index: 1;
  right: -1px;
  top: 50%;
  transform: translate(0, -50%);
  content: " ";
}
footer.main_footer .footer_wrap .footer_box .footer_widget {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  /* Footer Widget Icon */
  /* Footer Widget Text */
}
footer.main_footer .footer_wrap .footer_box .footer_widget .footer_widget_icon {
  position: relative;
}
footer.main_footer .footer_wrap .footer_box .footer_widget .footer_widget_icon i {
  border-radius: 12px;
  background: #fff;
  font-size: 19px;
  color: #32CD32;
  padding: 13px 15px;
}
footer.main_footer .footer_wrap .footer_box .footer_widget .footer_widget_text {
  font-size: 15.5px;
}
footer.main_footer .footer_wrap .footer_box .footer_widget .footer_widget_text a {
  color: #fff;
  text-decoration: none;
}
footer.main_footer .footer_info {
  padding: 30px 0;
}
footer.main_footer .footer_info .footer_logoWrap {
  margin-bottom: 30px;
}
footer.main_footer .footer_info .footer_logoWrap img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}
footer.main_footer .footer_info .socialmedia {
  margin: 0 auto;
  height: auto;
}

/* ============================== */
/* Copyright Section             */
/* ============================== */
.copyrightWrap {
  padding: 16px 0;
  background: #0F7D42;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

/* ============================== */
/* Statement Section             */
/* ============================== */
.statementDefinition .statement_boxed {
  margin: 7.5px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 12px;
  background-color: #44b069;
  /* Background Animation */
}
.statementDefinition .statement_boxed:before {
  content: " ";
  background: url(../images/info_bg.png);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  animation: zoominBg 40s ease-in infinite;
  transition: all 0.2s ease-in-out;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.statementDefinition .statement_boxed .statement_content {
  position: relative;
  z-index: 2;
  padding: 30px;
}
.statementDefinition .statement_boxed .statement_content h5 {
  margin-bottom: 20px;
}

/* ============================== */
/* Team Section                  */
/* ============================== */
.teamSection {
  background: #64BC37;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwMA7QiYAxi+IlPdqo+hYHnUt5ZPfnsHJyNiDtnpJyayNBkF6cWoYGAMY92U2hXHF/C1M8uP/ZtYdiuj26UdAdQQSXQErwSOMzt/XWRWAz5GuSBIkwG1H3FabJ2OsUOUhGC6tK4EMtJO0ttC6IBD3kM0ve0tJwMdSfjZo+EEISaeTr9P3wYrGjXqyC1krcKdhMpxEnt5JetoulscpyzhXN5FRpuPHvbeQaKxFAEB6EN+cYN6xD7RYGpXpNndMmZgM5Dcs3YSNFDHUo2LGfZuukSWyUYirJAdYbF3MfqEKmjM+I2EfhA94iG3L7uKrR+GdWD73ydlIB+6hgref1QTlmgmbM3/LeX5GI1Ux1RWpgxpLuZ2+I+IjzZ8wqE4nilvQdkUdfhzI5QDWy+kw5Wgg2pGpeEVeCCA7b85BO3F9DzxB3cdqvBzWcmzbyMiqhzuYqtHRVG2y4x+KOlnyqla8AoWWpuBoYRxzXrfKuILl6SfiWCbjxoZJUaCBj1CjH7GIaDbc9kqBY3W/Rgjda1iqQcOJu2WW+76pZC9QG7M00dffe9hNnseupFL53r8F7YHSwJWUKP2q+k7RdsxyOB11n0xtOvnW4irMMFNV4H0uqwS5ExsmP9AxbDTc9JwgneAT5vTiUSm1E7BSflSt3bfa1tv8Di3R8n3Af7MNWzs49hmauE2wP+ttrq+AsWpFG2awvsuOqbipWHgtuvuaAE+A1Z/7gC9hesnr+7wqCwG8c5yAg3AL1fm8T9AZtp/bbJGwl1pNrE7RuOX7PeMRUERVaPpEs+yqeoSmuOlokqw49pgomjLeh7icHNlG19yjs6XXOMedYm5xH2YxpV2tc0Ro2jJfxC50ApuxGob7lMsxfTbeUv07TyYxpeLucEH1gNd4IKH2LAg5TdVhlCafZvpskfncCfx8pOhJzd76bJWeYFnFciwcYfubRc12Ip/ppIhA1/mSZ/RxjFDrJC5xifFjJpY2Xl5zXdguFqYyTR1zSp1Y9p+tktDYYSNflcxI0iyO4TPBdlRcpeqjK/piF5bklq77VSEaA+z8qmJTFzIWiitbnzR794USKBUaT0NTEsVjZqLaFVqJoPN9ODG70IPbfBHKK+/q/AWR0tJzYHRULOa4MP+W/HfGadZUbfw177G7j/OGbIs8TahLyynl4X4RinF793Oz+BU0saXtUHrVBFT/DnA3ctNPoGbs4hRIjTok8i+algT1lTHi4SxFvONKNrgQFAq2/gFnWMXgwffgYMJpiKYkmW3tTg3ZQ9Jq+f8XN+A5eeUKHWvJWJ2sgJ1Sop+wwhqFVijqWaJhwtD8MNlSBeWNNWTa5Z5kPZw5+LbVT99wqTdx29lMUH4OIG/D86ruKEauBjvH5xy6um/Sfj7ei6UUVk4AIl3MyD4MSSTOFgSwsH/QJWaQ5as7ZcmgBZkzjjU1UrQ74ci1gWBCSGHtuV1H2mhSnO3Wp/3fEV5a+4wz//6qy8JxjZsmxxy5+4w9CDNJY09T072iKG0EnOS0arEYgXqYnXcYHwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==);
}
.teamSection .teamSection_left {
  padding-top: 60px;
  padding-right: 40px;
  color: #fff;
}
.teamSection .teamSection_left.sticky-top {
  z-index: 2;
  top: 30px;
}
.teamSection .team_widget {
  position: relative;
  transition: 0.5s;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 15px 0;
  /* Profile Picture */
}
.teamSection .team_widget .profile_picture {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 12px;
  /* Overlay Effect on Image */
}
.teamSection .team_widget .profile_picture img {
  width: 100%;
  border: none;
  box-shadow: none;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  transform: scale(1);
  transition: 0.5s ease-in-out;
}
.teamSection .team_widget .profile_picture .socialmedia__icon .x_twitter img {
  width: 18px;
  height: 18px;
}
.teamSection .team_widget .profile_picture .socialmedia__icon .x_twitter svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.teamSection .team_widget .profile_picture::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(22, 28, 45, 0.4);
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  border-radius: 12px;
}
.teamSection .team_widget .team_social_icons {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  transition: 0.5s;
  z-index: 1;
}
.teamSection .team_widget:hover {
  background-color: #fff;
}
.teamSection .team_widget:hover .profile_picture::before {
  opacity: 1;
  visibility: visible;
}
.teamSection .team_widget:hover .profile_picture img {
  transform: scale(1.1);
}
.teamSection .team_widget:hover .team_social_icons {
  bottom: 30px;
}
.teamSection .team_widget .team_content {
  padding: 27px;
}
.teamSection .team_widget .team_content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.teamSection .team_widget .team_content h6 {
  font-size: 15.8px;
  font-weight: 200;
  margin-bottom: 0;
}

/* ============================== */
/* Contact Section               */
/* ============================== */
.contact_section .contactWrap {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.contact_section .google_maps iframe {
  border-radius: 12px;
}
.contact_section .formWrap {
  padding: 30px;
}
.contact_section .formWrap label {
  font-size: 15.2px;
  margin-bottom: 3px;
}
.contact_section .formWrap .form_required {
  color: red;
}

.sectionShape {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
}
.sectionShape img {
  width: 100%;
}

.contact_details .addressInfo {
  transition: all 0.2s ease-out;
  will-change: transform;
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
  border-radius: 1.5rem !important;
  background: #ffffff;
  padding: 30px;
  height: 100%;
}
.contact_details .addressInfo:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125) !important;
}
.contact_details .address_box {
  display: flex;
}
.contact_details .address_box .address_icon {
  background-image: linear-gradient(112deg, rgb(0, 48, 34) 0%, rgb(0, 113, 95) 49%);
  min-width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  width: 40px;
  border-radius: 50%;
  margin-right: 23px;
}
.contact_details .address_box .address_icon i {
  font-size: 20px;
  line-height: 20px;
  color: #fff;
}
.contact_details .address_heading .label {
  font-size: 16px;
  font-weight: 600;
  color: #0F7D42;
  display: block;
  margin-bottom: 5px;
}
.contact_details .address_heading p {
  margin-bottom: 0px;
}
.contact_details .address_heading a {
  color: #052730;
  text-decoration: none;
}
.contact_details h3 {
  color: #0F7D42;
  text-transform: uppercase;
}

.faq_section {
  background: #0e2b2e;
}
.faq_section .img_holder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  border-radius: 30px;
}

/* ============================== */
/* Google Maps Component         */
/* ============================== */
.google_maps {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  height: 100%;
}
.google_maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ============================== */
/* Social Media Icons            */
/* ============================== */
.socialmedia {
  height: 100%;
  display: inline-flex;
  flex-direction: row;
  text-align: start;
  align-items: center;
  white-space: nowrap;
}
.socialmedia__icon {
  display: inline-flex;
  flex: 0 0 auto;
  margin-right: 10px;
}
.socialmedia__icon a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #32CD32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.socialmedia .socialmedia__icon:last-child {
  margin-right: 0;
}

.single_page_section .featured_image {
  margin-bottom: 50px;
}
.single_page_section .featured_image img {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
}
.single_page_section .featured_image_left {
  float: left;
  margin-right: 25px;
  margin-bottom: 25px;
}
.single_page_section .featured_image_right {
  float: right;
  margin-left: 25px;
  margin-bottom: 25px;
}

i {
  vertical-align: middle;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============================== */
/* Address Text                  */
/* ============================== */
/* ============================== */
/* Accordion Component           */
/* ============================== */
.accordion .accordion-item {
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
}
.accordion .accordion-item .accordion-header .accordion-button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 12px !important;
  margin-bottom: 28px;
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
}
.accordion .accordion-item .accordion-body {
  border-radius: 12px;
  border: 1px solid #fff;
  margin-bottom: 28px;
  padding: 20px;
}

/* ============================== */
/* More Button                   */
/* ============================== */
.moreBtn {
  font-size: 14px;
  color: #32CD32;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.moreBtn:hover {
  color: #acf53e;
}
.moreBtn span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.moreBtn i {
  margin-top: 5px;
}

/* ============================== */
/* EV Service Box                */
/* ============================== */
.ev_service_box {
  background: #2a3239;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  display: block;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 5px;
}
.ev_service_box .service_banner {
  position: relative;
  overflow: hidden;
}
.ev_service_box .service_banner img {
  width: 100%;
  transform: scale(1);
  transition: 0.5s ease-in-out;
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.ev_service_box .service_content {
  padding: 30px;
}
.ev_service_box .service_content h6 {
  color: #fff;
  font-size: 14px;
  font-weight: 200;
}
.ev_service_box .service_content p {
  font-size: 15px;
}
.ev_service_box .service_content .sub_title__content {
  color: #fff;
}
.ev_service_box:hover .service_banner img {
  transform: scale(1.1);
}

/* ============================== */
/* EV Blog Box                */
/* ============================== */
.ev_blog_box {
  overflow: hidden;
  text-decoration: none;
  display: block;
  padding-bottom: 15px;
}
.ev_blog_box .blog_banner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.ev_blog_box .blog_banner img {
  width: 100%;
  transform: scale(1);
  transition: 0.5s ease-in-out;
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.ev_blog_box .blog_content {
  padding: 15px;
  background: #f8f9fb;
  color: #052730;
  margin: -70px 30px 0;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}
.ev_blog_box .blog_content a {
  color: #0F7D42;
  font-size: 14px;
  font-weight: 200;
  text-decoration: none;
}
.ev_blog_box .blog_content p {
  font-size: 15px;
}
.ev_blog_box:hover .service_banner img {
  transform: scale(1.1);
}
.ev_blog_box .blog_meta .btm_cate {
  overflow: hidden;
  margin: 0 0 5px;
  padding: 0 0 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
}
.ev_blog_box .blog_meta .btm_cate li {
  margin-right: 15px;
  list-style: none;
}
.ev_blog_box .blog_meta .btm_cate .blog_date {
  color: #555;
  font-size: 14px;
  margin-right: 8px;
}
.ev_blog_box .blog_meta .btm_cate .blog_date i {
  font-size: 13px;
  margin-right: 3px;
  color: #999;
}
.ev_blog_box .blog_meta .btm_cate .author {
  display: inline-block;
  padding: 0;
  margin-right: 0;
  line-height: normal;
  color: #999;
}
.ev_blog_box .blog_meta .btm_cate .author i {
  font-size: 13px;
  margin-right: 3px;
  color: #999;
}

.add_logo_holder {
  text-align: center;
  padding-bottom: 30px;
}
.add_logo_holder img {
  max-width: 100%;
}

/* ============================== */
/* Brand Tabs                    */
/* ============================== */
.brand_tabs .nav-tabs {
  border: none;
}
.brand_tabs .nav-tabs .nav-item {
  padding: 0 10px 0 0;
  margin-right: 20px;
}
.brand_tabs .nav-tabs .nav-link {
  border: none;
  color: #fff;
  padding: 10px 0;
  position: relative;
}
.brand_tabs .nav-tabs .nav-link::before {
  content: "";
  background: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}
.brand_tabs .nav-tabs .nav-link:hover::before {
  width: 100%;
}
.brand_tabs .nav-tabs .nav-link.active {
  color: #acf53e;
  background: none;
}
.brand_tabs .nav-tabs .nav-link.active:before {
  width: 100%;
}
.brand_tabs .tab-content {
  padding-top: 34px;
  margin-left: -260px;
}

/* ============================== */
/* Image & List Tabs             */
/* ============================== */
.imgCarAndList {
  display: flex;
  align-items: center;
}
.imgCarAndList .tabImg_holder {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.imgCarAndList .tabImg_holder img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}
.imgCarAndList .tabImg_holder .tabIcon {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #64BC37;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 25px;
}
.imgCarAndList .tabList {
  padding-left: 24px;
  max-width: 370px;
}

/* ============================== */
/* Tab List                      */
/* ============================== */
.tabList ul li,
.pageList ul li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
}
.tabList ul li::after,
.pageList ul li::after {
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  background-position: top;
  position: absolute;
  left: 0;
  top: 0;
  content: " ";
  background: url(../images/check_circle.png);
}

.pageList ul {
  padding-left: 0;
}
.pageList ul li::after {
  background: url(../images/check_circle_green.png);
}

.pageListInline ul li {
  display: inline;
  margin-right: 20px;
}

.faqList ul {
  padding-left: 0;
}
.faqList ul li {
  list-style: none;
  position: relative;
  margin-bottom: 15px;
}

/* ============================== */
/* Section Titles                */
/* ============================== */
.section_title {
  display: inline-flex;
  flex-direction: row;
  text-align: start;
  align-items: center;
  white-space: nowrap;
  position: relative;
  padding-left: 20px;
  margin-bottom: 13px;
}
.section_title::after {
  display: inline-flex;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  width: 10px;
  height: 21px;
  background-position: center;
  position: absolute;
  left: 0;
  content: " ";
  background: url(../images/ev_icon_g.png);
}
.section_title__content {
  flex-grow: 1;
  color: #64BC37;
  text-transform: uppercase;
  font-size: 15px;
}

.section_title.white::after {
  background: url(../images/ev_icon_w.png);
}
.section_title.white .section_title__content {
  color: #fff;
}

/* ============================== */
/* Sub Title                     */
/* ============================== */
.sub_title {
  display: inline-flex;
  flex-direction: row;
  text-align: start;
  align-items: top;
  position: relative;
  margin-bottom: 13px;
}
.sub_title__icon {
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 25px;
  margin-right: 15px;
  color: #32CD32;
}
.sub_title__number {
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 34px;
  margin-right: 15px;
  color: transparent;
  font-weight: 700;
  line-height: 21px;
  -webkit-text-stroke: 1px #32CD32;
  font-family: "Noto Serif", serif;
}
.sub_title__content {
  flex-grow: 1;
  color: #052730;
  font-size: 20px;
  font-weight: 600;
}

/* ============================== */
/* Owl Carousel                  */
/* ============================== */
.owl-carousel .owl-stage {
  display: flex;
  flex-wrap: wrap;
}
.owl-carousel .owl-item {
  display: flex;
  height: auto !important;
}
.owl-carousel .owl-stage-outer {
  padding: 50px 0 20px 0;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background: #32CD32;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: #32CD32;
  width: 40px;
}

/* ============================== */
/* Text Stroke                   */
/* ============================== */
span.txt-stroke {
  color: transparent;
  text-stroke: 1px #fff;
  -webkit-text-stroke: 1px #fff;
}

/* ============================== */
/* Button Styles                 */
/* ============================== */
.btn.btn-brand {
  padding: 10px 40px;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 18px;
}
.btn.btn-brand:hover, .btn.btn-brand:active, .btn.btn-brand:focus {
  background: #fff;
  color: #052730;
}

.btn.btn-brand.whiteBtn {
  background: #fff;
  color: #052730;
  border-color: #fff;
}
.btn.btn-brand.whiteBtn:hover, .btn.btn-brand.whiteBtn:active {
  background: #0F7D42;
  color: #fff;
  border-color: #0F7D42;
}

.btn.btn-brand.darkBtn {
  background: #0F7D42;
  color: #fff;
  border-color: #0F7D42;
}
.btn.btn-brand.darkBtn:hover, .btn.btn-brand.darkBtn:active {
  background: #fff;
  color: #052730;
  border-color: #0F7D42;
}

.socialmedia__icon .x_twitter img {
  width: 18px;
  height: 18px;
}
.socialmedia__icon .x_twitter svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Animations */
/* Float Shadow */
.floatShadow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}
.floatShadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  transition-duration: 0.3s;
  transition-property: transform, opacity;
}
.floatShadow:hover, .floatShadow:focus, .floatShadow:active {
  transform: translateY(-5px);
}
.floatShadow:hover:before, .floatShadow:focus:before, .floatShadow:active:before {
  opacity: 1;
  transform: translateY(5px);
}

/* Rotating Animation */
.rotateme {
  animation-name: rotateme;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* Rotate Animation Keyframe */
@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Pulse Border Animation Keyframe */
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) scale(1.5);
    opacity: 0;
  }
}
/* Gradient Background Animation Keyframe */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Zoom In Background Animation Keyframe */
@keyframes zoominBg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* Media Queries */
/* Large Screens */
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
/* Medium Screens */
@media (max-width: 1199px) {
  h1 {
    font-size: 46px;
  }
  .header_main__nav .navbar-nav .nav-item a.nav-link {
    font-size: 16px;
    margin: 0 12px;
  }
  footer.main_footer .footer_wrap .row .footer_box_col:nth-child(3) .footer_box::after {
    display: none;
  }
}
/* Small Screens */
@media (max-width: 991px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 36px;
  }
  p {
    font-size: 16px;
  }
  .home_about .aboutImgcol {
    padding-right: 5px;
  }
  .home_info_boxed .info_boxed .info_boxed_right,
  .home_info_boxed .info_boxed:hover .info_boxed_right {
    width: 100%;
    flex-direction: row;
  }
  .home_info_boxed .info_boxed .info_boxed_right img,
  .home_info_boxed .info_boxed:hover .info_boxed_right img {
    height: auto;
  }
  .home_info_boxed .info_boxed .info_boxed_right .info_boxed_img_holder,
  .home_info_boxed .info_boxed:hover .info_boxed_right .info_boxed_img_holder {
    padding: 15px;
    padding-right: 7.5px;
    border: none;
    height: auto;
  }
  .home_info_boxed .info_boxed .info_boxed_right .info_boxed_img_holder img,
  .home_info_boxed .info_boxed:hover .info_boxed_right .info_boxed_img_holder img {
    border-radius: 12px;
  }
  .home_info_boxed .info_boxed .info_boxed_right .info_boxed_video_holder,
  .home_info_boxed .info_boxed:hover .info_boxed_right .info_boxed_video_holder {
    padding: 15px;
    padding-left: 7.5px;
    border: none;
    height: auto;
  }
  .home_info_boxed .info_boxed .info_boxed_right .info_boxed_video_holder img,
  .home_info_boxed .info_boxed:hover .info_boxed_right .info_boxed_video_holder img {
    border-radius: 12px;
  }
  .home_info_boxed .info_boxed .info_boxed_right .info_boxed_video_holder .video-play-button,
  .home_info_boxed .info_boxed:hover .info_boxed_right .info_boxed_video_holder .video-play-button {
    opacity: 9;
    visibility: visible;
  }
  .header_main__logo .hamburger_btn {
    display: block;
  }
  .header_main__logo .main__logo_space {
    padding: 10px 0;
  }
  .header_main__nav .navClosebtn {
    display: block;
  }
  .navbar {
    padding: 0;
  }
  .navbar-nav {
    margin-top: 50px;
    padding: 0 30px 30px 30px;
  }
  .navbar-nav .nav-item .nav-item-logo {
    padding: 10px 0;
    margin: 0 20px;
  }
  .navbar-nav .nav-item a.nav-link {
    color: #212121;
  }
  .navbar-nav .nav-item a.nav-link.active {
    color: #32CD32;
  }
  .navbar-nav .nav-item a.nav-link:before {
    background: #acf53e;
  }
  .navbar-collapse {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.941);
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, width 0.35s;
    z-index: 120;
  }
  .navbar-collapse .navbar-nav {
    width: 400px;
  }
  .navbar-collapse.show {
    opacity: 9;
    visibility: visible;
    width: 400px;
    background: #0b111d;
  }
  .page_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 110;
    transition: opacity 5s ease-out;
  }
  .page_overlay.open {
    display: block;
    transition: opacity 5s ease-out;
  }
  .banner_wrap {
    position: relative;
  }
  .carousel .carousel-inner .carousel-item .carousel_info {
    /* Specific styling for carousel item if needed */
  }
  .home_advantages .machine_img {
    max-width: 430px;
    margin: 0 auto 50px;
  }
  .home_faq .faq_content {
    padding-right: 5px;
  }
  .home_app_pramo .app_pramo_details h2 {
    font-size: 42px;
  }
  footer.main_footer .footer_wrap .row .footer_box_col .footer_box::after {
    display: none;
  }
  .home_testimonial .client_box {
    padding: 64px 32px 32px 32px;
  }
  .home_testimonial .client_box .testi_icon_holder i {
    top: -83px;
  }
  .ev_service_box .service_content {
    padding: 15px;
  }
  .sub_title__content {
    font-size: 18px;
  }
  .btn.btn-brand {
    padding: 10px 28px;
    font-size: 15px;
  }
  .brand_tabs .nav-tabs .nav-item {
    padding: 0 10px 0 0;
    margin-right: 10px;
  }
  .home_about .aboutBtnHolder {
    padding: 15px 0;
  }
  .brand_tabs .tab-content {
    margin-left: 0px;
  }
  .imgCarAndList {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
  .imgCarAndList .tabList {
    padding-left: 0;
    max-width: 100%;
  }
  .imgCarAndList .tabList ul {
    padding: 0;
  }
  .product_detail_section .prodImgHolder {
    padding-right: 30px;
  }
  footer.main_footer .footer_wrap .footer_box {
    text-align: left;
    border-bottom: 1px solid #70cb41;
  }
  footer.main_footer .footer_wrap .footer_box_col:nth-child(3) .footer_box {
    border: none;
  }
}
/* Extra Small Screens */
@media (max-width: 767px) {
  .banner_wrap .carousel .carousel-inner .carousel-item .carousel_info {
    max-width: 516px;
  }
  .section_space {
    padding: 32px 0;
  }
  h1 {
    font-size: 48px;
  }
  .owl-carousel .owl-stage-outer {
    padding: 20px 0;
  }
  .home_services .service_wrap {
    padding: 20px 0;
  }
  .brand_tabs .tab-content {
    padding-top: 30px;
    margin-left: 0;
  }
  .home_info_boxed .info_boxed .info_boxed_content {
    padding: 30px;
  }
  .home_app_pramo .mobileApp_img {
    padding-top: 0;
    max-width: 250px;
    margin: 0 auto;
  }
  .home_app_pramo .app_pramo_details {
    color: #fff;
    padding: 32px 0;
  }
  footer.main_footer {
    padding-top: 32px;
  }
  footer.main_footer .footer_wrap {
    margin-top: 0px;
  }
  .home_stations .stations_list {
    padding-top: 20px;
  }
  .product_detail_section .prodImgHolder {
    padding-right: 0px;
  }
}
/* Smallest Screens */
@media (max-width: 576px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  p {
    font-size: 14px;
  }
  .home_app_pramo .app_pramo_details h2 {
    font-size: 32px;
  }
  .banner_wrap .carousel .carousel-inner .carousel-item .carousel_info {
    max-width: 100%;
    left: 0;
    padding: 0 15px;
  }
  .header_main__nav .navbar-collapse .navbar-nav {
    width: 280px;
  }
  .header_main__nav .navbar-collapse.show {
    width: 280px;
  }
  .header_main__nav .navbar-nav {
    padding: 0 15px 30px 15px;
  }
  .header_main__nav .navbar-nav .nav-item a.nav-link {
    font-size: 14px;
    line-height: 24px;
    padding: 8px 0;
  }
  .brand_tabs .nav-tabs .nav-item {
    margin-right: 8px;
    font-size: 12px;
  }
  .home_info_boxed .info_boxed .info_boxed_right,
  .home_info_boxed .info_boxed:hover .info_boxed_right {
    width: 100%;
    flex-direction: column;
  }
  .home_info_boxed .info_boxed .info_boxed_right .info_boxed_img_holder,
  .home_info_boxed .info_boxed:hover .info_boxed_right .info_boxed_img_holder {
    padding-right: 15px;
  }
  .home_info_boxed .info_boxed .info_boxed_right .info_boxed_img_holder img,
  .home_info_boxed .info_boxed:hover .info_boxed_right .info_boxed_img_holder img {
    width: 100%;
  }
  .home_info_boxed .info_boxed .info_boxed_right .info_boxed_video_holder,
  .home_info_boxed .info_boxed:hover .info_boxed_right .info_boxed_video_holder {
    padding-left: 15px;
  }
  .home_info_boxed .info_boxed .info_boxed_right .info_boxed_video_holder img,
  .home_info_boxed .info_boxed:hover .info_boxed_right .info_boxed_video_holder img {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */