@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1600px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1520px;
  }
}
@media (min-width: 1800px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1600px;
  }
}

@media (max-width: 500px) {
.btn-close {
    
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    }
}

a {
  position: relative;
}
a.btn_1 {
  display: inline-block;
  padding: 15px 33px;
  text-decoration: none;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 600;
  border-radius: 6px;
  background-color: #0FC852;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 475px) {
  a.btn_1 {
    padding: 15px 19px;
  }
}
a.btn_1 span {
  position: relative;
  z-index: 1;
}
a.btn_1::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: #D1D4D8;
  border-radius: 500px 500px 0 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0;
}
a.btn_1:hover span {
  color: #707070;
}
a.btn_1:hover::after {
  top: 0;
  border-radius: 0;
  opacity: 1;
}
a.btn_2 {
  display: inline-block;
  padding: 15px 33px;
  text-decoration: none;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 600;
  border-radius: 6px;
  background-color: #D1D4D8;
  color: #707070;
  position: relative;
  overflow: hidden;
}
a.btn_2 span {
  position: relative;
  z-index: 1;
}
a.btn_2::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: #0FC852;
  border-radius: 500px 500px 0 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0;
}
a.btn_2:hover span {
  color: #fff;
}
a.btn_2:hover::after {
  top: 0;
  border-radius: 0;
  opacity: 1;
  color: #fff;
}

main {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

h1 {
  font-family: "Montserrat", sans-serif;
  color: #000;
}

header {
  width: 100%;
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 38px;
  z-index: 99;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 476px) {
  header {
    top: 65px;
  }
}
header h4 {
  color: #fff;
}
header.sticky {
  position: fixed;
  top: 0;
  z-index: 1020;
  background-color: #292929;
}
@media (max-width:991px){
    header.sticky{
        padding-left:20px;
    }
}
header.sticky .headerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .hiddenMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 576px) {
  header .hiddenMenu {
    padding-left: 20px;
  }
}
header .headerMenu {
  display: none;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  color: #fff;
  margin-right: 120px;
}
@media (min-width: 320px) and (max-width: 576px) {
  header .headerMenu {
    margin-right: 70px;
  }
}
header .headerMenu ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .headerMenu ul li {
  list-style: none;
}
header .headerMenu ul li a {
  text-decoration: none;
  padding: 0 15px;
  color: #fff;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 576px) {
  header .headerMenu ul li a {
    font-size: clamp(12px, 0.72916vw, 14px);
    padding: 0 10px;
  }
}
header .headerMenu ul li a.green_color {
  color: #0FC852;
}

.topBar {
  background-color: #292929;
  padding: 10px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 476px) {
  .topBar {
    height: 55px;
  }
}
.topBar p {
  font-size: clamp(10px, 0.625vw, 12px);
  font-family: "Montserrat", sans-serif;
  color: #A8A8A8;
  font-weight: 500;
}
.topBar p span {
  color: #0FC852;
}
.topBar .fa-xmark {
  position: absolute;
  top: 0;
  right: 0;
  color: #7C7C7C;
  cursor: pointer;
}

#nav-toggle {
  cursor: pointer;
  padding: 16px 26px;
  display: block;
  background: #F3F7F9;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 991px) {
  #nav-toggle {
    background: none;
  }
}
#nav-toggle span {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 23px;
  background: #898989;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  right: 11px;
}
#nav-toggle span::before {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 27px;
  background: #898989;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  top: -7px;
  left: -4px;
}
#nav-toggle span::after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 20px;
  background: #898989;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  bottom: -7px;
  right: 0;
}
@media (max-width: 991px) {
  #nav-toggle span {
    background: #fff;
    height: 4px;
    width: 20px;
  }
  #nav-toggle span::before {
    background: #fff;
    height: 4px;
    left: -6px;
    width: 26px;
    top: -9px;
  }
  #nav-toggle span::after {
    background: #fff;
    height: 4px;
    width: 13px;
    bottom: -9px;
  }
}
@media (max-width: 576px) {
  #nav-toggle.active {
    top: 0px;
  }
}
#nav-toggle.active span {
  background-color: #fff;
  left: 16px;
}
#nav-toggle.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #262626;
  width: 17px;
  left: 0;
}
@media (min-width: 992px) {
  #nav-toggle.active span::before {
    width: 20px;
  }
}
#nav-toggle.active span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #262626;
  width: 17px;
  right: 3px;
}
@media (min-width: 992px) {
  #nav-toggle.active span::after {
    width: 20px;
  }
}

#mob-nav-toggle {
  cursor: pointer;
  padding: 10px 35px 16px 0px;
  display: none;
}
@media (max-width: 991px) {
  #mob-nav-toggle {
    display: block;
  }
}
#mob-nav-toggle span {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #262626;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#mob-nav-toggle span::before {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #262626;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  top: -10px;
}
#mob-nav-toggle span::after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #262626;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  bottom: -10px;
}
#mob-nav-toggle.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
}
#mob-nav-toggle.active span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #fff;
}

/* OPEN - CLOSE BUTTONS */
.menu-btn {
  position: absolute;
  display: inline;
  top: 14%;
  right: 20px;
  font-size: clamp(22px, 1.875vw, 36px);
  z-index: 999;
}
.menu-btn a {
  display: inline-block;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .menu-btn {
    right: 0px;
  }
}

/* OVERLAY NAV */
.nav {
  position: fixed;
  display: none;
  overflow: auto;
  top: 0;
  right: 0;
  width: 100%;
  height: 570px;
  margin: 0;
  padding: 60px 0 0 0;
  background: #fff;
  z-index: 99;
  -webkit-box-shadow: 0 7px 13px rgba(0, 0, 0, 0.1882352941);
          box-shadow: 0 7px 13px rgba(0, 0, 0, 0.1882352941);
}
@media (max-width: 1499px) {
  .nav {
    height: 470px;
  }
}
@media (max-width: 1399px) {
  .nav {
    height: 385px;
  }
}
@media (max-width: 1199px) {
  .nav {
    height: 325px;
  }
}
@media (max-width: 991px) {
  .nav {
    height: 720px;
  }
}
@media (max-width: 767px) {
  .nav {
    height: 570px;
  }
}

.blur_bg {
  position: relative;
  overflow: hidden !important;
}
.blur_bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.699);
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.menu {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu .hamburger-product {
  position: relative;
  padding-right: 50px;
}
.menu .hamburger-product ul {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.menu .hamburger-product ul li {
  list-style: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu .hamburger-product ul li a {
  text-decoration: none;
}
.menu .hamburger-product ul li:first-child {
  margin-bottom: 23px;
}
.menu .hamburger-product ul li:not(:first-child) {
  margin-left: 20px;
}
.menu .hamburger-product ul li .img {
  width: 220px;
  height: 150px;
  background-color: #7C7C7C;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: clamp(16px, 1.0416vw, 20px);
}
.menu .hamburger-product ul li h2 {
  margin: 0;
  padding: 0;
  font-size: clamp(20px, 1.77vw, 34px);
  text-align: center;
  font-weight: 500;
  color: #18334D;
}
@media (max-width: 576px) {
  .menu .hamburger-product ul li h2 {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
}
.menu .hamburger-product ul li h4 {
  margin: 0;
  padding: 0;
  font-size: clamp(16px, 1.0416vw, 20px);
  text-align: center;
  font-weight: 500;
  color: #18334D;
}
@media (max-width: 576px) {
  .menu .hamburger-product ul li h4 {
    font-size: clamp(12px, 0.72916vw, 14px);
  }
}
.menu .menu_saperator_line {
  height: auto;
  background: #E8E9E9;
  width: 1px;
  margin: 0 46px;
}
.menu .hamburger-wrp2 {
  width: calc(100% - 520px);
  padding: 0 50px;
  border-left: solid 1px #E8E9E9;
}
@media (max-width: 1199px) {
  .menu .hamburger-wrp2 {
    width: calc(100% - 455px);
  }
}
@media (max-width: 991px) {
  .menu .hamburger-wrp2 {
    width: 100%;
    border-left: 0;
  }
}
@media (max-width: 476px) {
  .menu .hamburger-wrp2 {
    padding: 0 25px;
  }
}
.menu .hamburger-wrp2 .hamburger-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.menu .hamburger-wrp2 .hamburger-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
  scrollbar-width: none;
  width: 30%;
}
@media (max-width: 1199px) {
  .menu .hamburger-wrp2 .hamburger-menu ul {
    width: 45%;
  }
}
@media (max-width: 576px) {
  .menu .hamburger-wrp2 .hamburger-menu ul {
    padding-left: 0;
  }
}
.menu .hamburger-wrp2 .hamburger-menu ul li {
  list-style: none;
}
.menu .hamburger-wrp2 .hamburger-menu ul li a {
  display: inline-block;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 400;
  color: black;
  text-decoration: none;
  padding: 10px 0;
}
@media (max-width: 576px) {
  .menu .hamburger-wrp2 .hamburger-menu ul li a {
    font-size: clamp(12px, 0.72916vw, 14px);
  }
}
.menu .hamburger-wrp2 .hamburger-menu ul li a:hover {
  color: #0FC852;
}
.menu .hamburger-wrp2 .hamburger-menu ul li a.active {
  color: #0FC852;
}
.menu .hamburger-wrp2 .hamburger_slider {
  border-radius: 15px;
}
.menu .hamburger-wrp2 .hamburger_slider .swiper {
  width: 100%;
  height: 100%;
}
.menu .hamburger-wrp2 .hamburger_slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: rgb(211, 211, 211);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .menu .hamburger-wrp2 .hamburger_slider .swiper-slide {
    height: inherit;
  }
}
.menu .hamburger-wrp2 .hamburger_slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* RESPONSIVE */
.mobile-menu {
  top: 0;
  max-width: 250px;
  left: -100%;
  width: 100%;
  background: #EBEBEB;
  color: black;
  height: 100%;
  position: fixed;
  z-index: 9997;
  overflow-y: auto;
  -webkit-transform: translate3d(0, 0, 205px);
  transform: translate3d(0, 0, 205px);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.mobile-menu.active {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.mobile-menu ul {
  margin: 0;
  padding: 0;
}
.mobile-menu ul li {
  font-size: clamp(20px, 1.5625vw, 30px);
  line-height: 30px;
  margin: 0;
  overflow: hidden;
  padding: 5px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  padding-left: 15px;
}
.mobile-menu ul li:first-child {
  margin-top: 70px;
}
.mobile-menu ul li:hover {
  background: #CCCCCC;
}
.mobile-menu ul li a {
  text-decoration: none;
  color: black;
}

.has-children:hover {
  cursor: hand;
}

.children {
  display: none;
}

.mobile-menu .children li:first-child {
  margin-top: 0px;
}

.icon-arrow {
  position: absolute;
  display: block;
  font-size: 0.7em;
  color: black;
  top: 5px;
  right: 10px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
}
.icon-arrow::after {
  content: "▼";
}
.icon-arrow.open {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
}

/* ============ Full Page Slider ================= */
@media (max-width: 991px) {
  .homepage {
    height: 700px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .homepage {
    height: 500px;
    position: relative;
  }
}
@media (max-width: 576px) {
  .homepage {
    height: 350px;
    position: relative;
  }
}
@media (max-width: 991px) {
  .homepage .swiper-slide {
    min-height: 700px !important;
  }
}
@media (max-width: 767px) {
  .homepage .swiper-slide {
    min-height: 500px !important;
  }
}
@media (max-width: 576px) {
  .homepage .swiper-slide {
    min-height: 350px !important;
  }
}
@media (max-width: 576px) {
  .homepage .slider_txt {
    top: 72%;
  }
}
@media (max-width: 767px) {
  .homepage a.btn_1 {
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .homepage a.btn_2 {
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .homepage .slider-content .slide-subtitle {
    width: 65% !important;
  }
}
@media (max-width: 576px) {
  .homepage .slider-content .slide-subtitle {
    display: none;
  }
}

.hero_slider .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
}
.hero_slider .swiper-slide .slide-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .hero_slider .swiper-slide .slide-bg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-position: right -50px top;
  }
  .hero_slider .swiper-slide .slide-bg.black-scooter {
    background-position: right -153px top;
  }
  .hero_slider .swiper-slide .slide-bg.spec-white-scooter {
          background-position: right -100px top;
      
  }
}
.hero_slider .swiper-slide .overlay-dark:before {
  opacity: 0.3;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.hero_slider .swiper-slide .video-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero_slider .swiper-slide .video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.slider_txt {
  position: absolute;
  left: 9vw;
  z-index: 9;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slider_txt .slide-container {
  width: 100%;
}

.hero_slider .swiper-slide .slide-bg .slide-container {
  max-width: 1520px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 7;
  padding-left: 15px;
  padding-right: 15px;
}

.hero_slider .slide-bg .slide-container .slide-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .hero_slider .slide-bg .slide-container .slide-row {
    height: 360px;
  }
}

.hero_slider .slide-container .slide-row .slider-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.hero_slider .slider-content .slide-subtitle {
  font-size: clamp(14px, 0.8333vw, 16px);
  color: #fff;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 30px;
  margin-top: 0px;
}
.hero_slider .slider-content .slide-subtitle span {
  color: #0FC852;
}
@media (max-width: 767px) {
  .hero_slider .slider-content .slide-subtitle {
    width: 50%;
  }
}
@media (max-width: 476px) {
  .hero_slider .slider-content .slide-subtitle {
    width: 80%;
  }
}

.hero_slider .slider-content .slide-heading {
  font-size: clamp(30px, 3.3854vw, 65px);
  color: #fff;
  margin: 0px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.hero_slider .slider-content .slide-heading a {
  text-decoration: none;
  color: #fff;
  outline: none;
}

.hero_slider .slider-content .slide-heading a span {
  display: inline-block;
}

.hero_slider .overlay-light .slider-content .slide-heading a {
  color: #000;
}

.hero_slider .overlay-light .slider-content .slide-subtitle {
  color: #fff;
}

.hero_slider .creative-button--wrapper .swiper-button-prev,
.hero_slider .creative-button--wrapper .swiper-button-next {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: auto;
  color: #fff;
  z-index: 9;
  cursor: pointer;
  width: auto;
  bottom: 30px;
  font-weight: 300;
  font-size: clamp(16px, 1.0416vw, 20px);
  letter-spacing: 0.5px;
  line-height: normal;
}

.hero_slider .creative-button--wrapper .swiper-button-next {
  right: 120px;
}

.hero_slider .creative-button--wrapper .swiper-button-prev {
  left: 120px;
}

.hero_slider .creative-button--wrapper .swiper-button-next:after,
.hero_slider .creative-button--wrapper .swiper-button-prev:after {
  display: none;
}

.hero_slider .creative-button--wrapper .swiper-button-prev i {
  margin-right: 25px;
}

.hero_slider .creative-button--wrapper .swiper-button-next i {
  margin-left: 25px;
}

.hero_slider .banner-horizental .swiper-pagination {
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
}

.hero_slider .banner-horizental .swiper-pagination-bullet {
  background: transparent;
  margin: 0 10px !important;
}

.hero_slider .banner-horizental .path {
  display: none;
}

.hero_slider .banner-horizental .swiper-pagination-bullet-active .path {
  display: inline-block !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  -webkit-animation: dash linear 10s;
  animation: dash linear 10s;
  -webkit-animation-iteration-count: unset;
  animation-iteration-count: unset;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.homeslider_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
  .slide-container .slide-row .slider-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    margin-left: 0px;
  }
  .slider-content .slide-heading {
    font-size: 72px;
  }
  .hero_slider .banner-horizental .swiper-pagination {
    display: none;
  }
  .hero_slider .creative-button--wrapper .swiper-button-prev {
    left: 15px;
  }
  .hero_slider .creative-button--wrapper .swiper-button-next {
    right: 15px;
  }
}
/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
  .slide-container .slide-row .slider-content {
    padding-left: 0px;
    padding-right: 0px;
  }
  .slider-content .slide-heading {
    font-size: clamp(40px, 6.25vw, 120px);
  }
  .slider-content .slide-subtitle {
    margin-bottom: 15px;
  }
}
.lern_more_btn {
  text-decoration: none;
  font-size: clamp(14px, 0.8333vw, 16px);
  color: #0FC852;
  font-weight: 400;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
  width: 130px;
}
.lern_more_btn i {
  margin-left: 10px;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.lern_more_btn:hover {
  color: #000;
}
.lern_more_btn:hover i {
  margin-left: 0;
}
.lern_more_btn.position_btn {
  position: absolute;
  right: 20px;
  bottom: 0;
}

.section_2nd {
  padding-top: 150px;
  padding-bottom: 100px;
  background-color: #F3F7F9;
}
@media (max-width: 1199px) {
  .section_2nd {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .section_2nd {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.section_2nd .content_sec {
  position: relative;
  padding-bottom: 100px;
  padding-left: 50px;
}
@media (max-width: 767px) {
  .section_2nd .content_sec {
    padding-bottom: 20px;
    padding-left: 0;
  }
}
.section_2nd .content_sec h1 {
  font-size: clamp(28px, 2.6041vw, 50px);
  font-weight: 600;
  color: #575757;
}
.section_2nd .content_sec p {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 400;
  color: rgba(87, 87, 87, 0.6);
}

.section_3rd {
  background-color: #00334D;
  padding: 80px 0 70px;
}
@media (max-width: 991px) {
  .section_3rd {
    padding: 50px 0px;
  }
}
@media (max-width: 576px) {
  .section_3rd {
    padding: 50px 30px;
  }
}
@media (max-width: 576px) {
  .section_3rd .border_btm {
    border-bottom: solid 1px rgba(255, 255, 255, 0.26);
    padding-bottom: 25px;
  }
}
.section_3rd p {
  font-size: clamp(16px, 1.0416vw, 20px);
  color: #fff;
  opacity: 0.3;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section_3rd h1 {
  font-size: clamp(30px, 3.333vw, 64px);
  color: #fff;
  opacity: 0.3;
  text-transform: uppercase;
  font-weight: bold;
}
.section_3rd h1 span {
  color: #fff;
  opacity: 1;
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 400;
}

.section_4th {
  position: relative;
  padding-top: 100px;
  background-color: #F3F7F9;
}
@media (max-width: 1199px) {
  .section_4th {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .section_4th {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .section_4th {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}
.section_4th .title {
  font-size: clamp(24px, 2.1875vw, 40px);
  color: #575757;
  font-weight: bold;
  margin-bottom: 20px;
}
.section_4th .title2 {
  font-size: clamp(18px, 1.4583vw, 28px);
  color: #575757;
  font-weight: bold;
  text-transform: capitalize;
}
.section_4th .para_txt {
  font-size: clamp(18px, 1.4583vw, 28px);
  color: #575757;
  font-weight: 400;
}
.section_4th .para_txt2 {
  font-size: clamp(14px, 0.8333vw, 16px);
  color: #575757;
  font-weight: 400;
}
.section_4th .battery_vd_wrp {
  position: relative;
  height: 100%;
}
@media (max-width: 576px) {
  .section_4th .battery_vd_wrp {
    height: inherit;
  }
}
.section_4th .battery_vd_wrp:hover .video_content {
  top: -100px;
}
.section_4th .battery_vd_wrp .video_wrp {
  border-radius: 12px;
  overflow: hidden;
  height: 750px;
}
@media (max-width: 576px) {
  .section_4th .battery_vd_wrp .video_wrp {
    height: auto;
  }
}
.section_4th .battery_vd_wrp .video_content {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  width: 80%;
  position: relative;
  top: -83px;
  left: 35px;
  height: calc(100% - 750px);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media (max-width: 576px) {
  .section_4th .battery_vd_wrp .video_content {
    width: 90%;
    left: 19px;
    height: 100%;
  }
}
.section_4th .battery_vd_wrp .video_content .img {
  width: 77px;
  height: auto;
  margin-bottom: 20px;
}
.section_4th .battery_vd_wrp .video_content h3 {
  font-size: clamp(18px, 1.4583vw, 28px);
  color: #575757;
  font-weight: 700;
  margin-bottom: 15px;
}
.section_4th .battery_vd_wrp .video_content p {
  font-size: clamp(13px, 0.78125vw, 15px);
  color: #575757;
  font-weight: 400;
}
.section_4th .battery_img {
  margin-top: -70px;
}
@media (max-width: 1199px) {
  .section_4th .battery_img {
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .section_4th video[poster] {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.section_5th {
  background-color: #F3F7F9;
}

.section_6th {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F3F7F9;
}
@media (max-width: 1199px) {
  .section_6th {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .section_6th {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.section_6th .sec_6th_title {
  font-size: clamp(24px, 2.1875vw, 40px);
  color: #575757;
  font-weight: bold;
}
.section_6th .sec_6th_title2 {
  font-size: clamp(18px, 1.4583vw, 28px);
  color: #575757;
  font-weight: 600;
  line-height: 44px;
}
@media (max-width: 767px) {
  .section_6th .sec_6th_title2 {
    line-height: 30px;
  }
}
.section_6th .sec_6th_para_txt {
  font-size: clamp(14px, 0.8333vw, 16px);
  color: #575757;
  font-weight: 600;
}
.section_6th .sec_6th_para_txt2 {
  font-size: clamp(14px, 0.8333vw, 16px);
  color: #575757;
  font-weight: 600;
}

.section_7th {
  position: relative;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .section_7th {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.section_7th::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(274deg, rgba(255, 255, 255, 0) 25%, rgb(255, 255, 255) 100%);
  width: 25%;
  z-index: 3;
}
@media (max-width: 991px) {
  .section_7th::before {
    display: none;
  }
}
.section_7th::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(274deg, rgb(243, 247, 249) 25%, rgba(255, 255, 255, 0) 90%);
  width: 25%;
  z-index: 3;
}
@media (max-width: 991px) {
  .section_7th::after {
    display: none;
  }
}
.section_7th .sec7th_title {
  font-size: clamp(24px, 2.1875vw, 40px);
  font-weight: bold;
  color: #575757;
}
.section_7th .sec7th_title span {
  font-weight: bold;
}
.section_7th .sec7th_txt {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 400;
  color: #575757;
}
.section_7th .slider3d {
  overflow: hidden;
  padding: 0 130px;
}
@media (max-width: 767px) {
  .section_7th .slider3d {
    padding: 0 50px;
  }
}
@media (max-width: 576px) {
  .section_7th .slider3d {
    padding: 0 70px;
  }
}
@media (max-width: 490px) {
  .section_7th .slider3d {
    padding: 0 10px;
  }
}
.section_7th .slider3d .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section_7th .slider3d .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 30px;
}
.section_7th .slider3d .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  border-radius: 30px;
  background-color: #7B61FF;
}
.section_7th .swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 61px;
}
@media (max-width: 1199px) {
  .section_7th .swiper-container {
    height: 450px;
  }
}
@media (max-width: 991px) {
  .section_7th .swiper-container {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .section_7th .swiper-container {
    height: 350px;
  }
}
.section_7th .swiper-slide {
  background-position: center;
  background-size: cover;
  width: auto;
  background-color: #fff;
  overflow: hidden;
  border-radius: 12px;
}
.section_7th .picture {
  width: auto;
  height: auto;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .section_7th .picture {
    height: 100%;
  }
}
.section_7th .picture img {
  display: block;
  width: 100%;
  height: 100%;
  /*-o-object-fit: cover;
     object-fit: cover;*/
}

.section_9th {
  position: relative;
  padding-top: 60px;
  padding-bottom: 50px;
  background-color: #F3F7F9;
}
@media (max-width: 1199px) {
  .section_9th {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .section_9th {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .section_9th {
    margin-top: -20px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.section_9th video[poster] {
  border-radius: 12px;
}
.section_9th .sec_title {
  font-size: clamp(24px, 2.1875vw, 40px);
  font-weight: bold;
  color: #575757;
}
.section_9th .sec_title span {
  font-weight: 400;
}
.section_9th p.small {
  font-size: clamp(16px, 1.0416vw, 20px);
  color: #575757;
}
.section_9th h5 {
  font-size: clamp(16px, 1.0416vw, 20px);
  color: #000;
  font-weight: 400;
  text-align: start;
  text-transform: uppercase;
}
.section_9th p {
  font-size: clamp(13px, 0.78125vw, 15px);
  color: #000;
  font-weight: 400;
  text-align: start;
}
.section_9th .section_9th_slider {
  overflow: hidden;
  padding: 0 20px;
}
.section_9th .section_9th_slider .swiper-slide {
  text-align: center;
  display: inline-block;
}

.section_10th {
  position: relative;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .section_10th {
    padding-top: 60px;
    margin-bottom: -100px;
  }
}
@media (max-width: 768px) {
  .section_10th {
    margin-bottom: -240px;
  }
}
.section_10th .bg_img {
  position: relative;
  background-image: url("../img/homepage/gradiant-img.jpg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
}
@media (max-width: 991px) {
  .section_10th .bg_img {
    background-size: 600px;
  }
}
@media (max-width: 767px) {
  .section_10th .bg_img {
    background-size: 450px;
  }
}
@media (max-width: 576px) {
  .section_10th .bg_img {
    background-size: 370px;
  }
}
@media (max-width: 476px) {
  .section_10th .bg_img {
    background-size: 270px;
  }
}
.section_10th::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 90%;
  background: rgb(242, 251, 255);
  background: linear-gradient(274deg, rgb(242, 251, 255) 67%, rgb(248, 253, 255) 65%, rgba(255, 255, 255, 0.0004376751) 84%);
  z-index: 0;
}
@media (max-width: 991px) {
  .section_10th::after {
    width: 70%;
  }
}
.section_10th .mobi_img {
  padding-right: 100px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .section_10th .mobi_img {
    position: relative;
    top: -150px;
  }
}
@media (max-width: 991px) {
  .section_10th .mobi_img {
    padding-right: 0px;
    position: relative;
    top: -100px;
  }
}
@media (max-width: 767px) {
  .section_10th .mobi_img {
    top: -100px;
    right: -110px;
  }
}
@media (max-width: 576px) {
  .section_10th .mobi_img {
    right: -90px;
  }
}
@media (max-width: 476px) {
  .section_10th .mobi_img {
    right: -60px;
  }
}
@media (max-width: 576px) {
  .section_10th .mobi_img img {
    height: 500px;
  }
}
@media (max-width: 476px) {
  .section_10th .mobi_img img {
    /*height: 400px;*/
    height: 348px;
    margin-right: 55px;
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .section_10th .mob_view {
    position: relative;
    top: -100px;
  }
}
@media (max-width: 767px) {
  .section_10th .mob_view {
    position: relative;
    top: -220px;
  }
}
@media (max-width: 576px) {
  .section_10th .mob_view {
    top: -180px;
  }
}
@media (max-width: 576px) {
  .section_10th .mob_mb {
    margin-bottom: 100px;
  }
}
.section_10th .content_area {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_10th .content_area .head_title {
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #575757;
  font-weight: 400;
  text-transform: uppercase;
}
.section_10th .content_area .head_title span {
  font-weight: 800;
  text-transform: none;
}
.section_10th .content_area .subtitle {
  font-size: clamp(10px, 0.625vw, 12px);
  color: #575757;
  font-weight: 400;
  text-transform: uppercase;
}
.section_10th .content_area ul {
  padding-bottom: 20px;
  padding-left: 19px;
}
@media (max-width: 576px) {
  .section_10th .content_area ul {
    padding-top: 25px;
  }
}
.section_10th .content_area ul li {
  font-size: clamp(16px, 1.0416vw, 20px);
  color: #575757;
  font-weight: 400;
  margin-bottom: 10px;
  list-style: none;
  position: relative;
}
.section_10th .content_area ul li::before {
  content: ".";
  font-size: 30px;
  position: absolute;
  left: -18px;
  top: 27%;
  line-height: 0;
}
.section_10th .content_area ul li:last-child::before {
  top: 14%;
}
.section_10th .content_area ul li span {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #979797;
}

.section_11th {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 991px) {
  .section_11th {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section_11th {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
.section_11th .footer_slider {
  border-radius: 12px;
}
@media (max-width: 767px) {
  .section_11th .footer_slider {
    text-align: center;
  }
}
.section_11th .footer_slider .swiper-slide {
  text-align: center;
}
.section_11th .f-slider-arrow {
  position: absolute;
  top: 50%;
  right: 66px;
  -webkit-transform: translateY(-50%)
          transform: translateY(-50%)
  -webkit-animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
          animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media (max-width: 1199px){
    .section_11th .f-slider-arrow{
            animation:none;
    }
  .section_11th .f-slider-arrow img {
    max-width: 30px;

  }
}
.section_11th .f-slider-arrow:hover {
  -webkit-animation: none;
          animation: none;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 767px) {
    .section_11th .f-slider-arrow:hover {
         -webkit-transform: translateY(-50%) rotate(45deg);
           transform: translateY(-50%) rotate(45deg);
    }
}
@media (max-width: 767px) {
    
  .section_11th .f-slider-arrow {
    right: 19px;
    top: 50%;
            transform: translateY(-50%);
    -webkit-animation: none;
            animation: none;
  }
}

@-webkit-keyframes bounce {
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes bounce {
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
.section_12th {
  padding-bottom: 100px;
  padding-top: 100px;
  position: relative;
  background-color: #F3F7F9;
}
@media (max-width: 991px) {
  .section_12th {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .section_12th {
    padding-top: 50px;
    padding-bottom: 10px;
  }
}
.section_12th .sec12th_bg {
  background-image: url("../img/homepage/charge_scooter.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .section_12th .sec12th_bg {
    padding: 30px 0;
  }
}
@media (max-width: 476px) {
  .section_12th .sec12th_bg {
    background-position: -154px center;
  }
}
.section_12th .inner_sec {
  position: relative;
  z-index: 1;
}
.section_12th .inner_sec .content_area2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 992px) and (max-width: 1399px) {
  .section_12th .inner_sec .content_area2 {
    margin-top: 190px;
  }
}
@media (max-width: 767px) {
  .section_12th .inner_sec .content_area2 {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 476px) {
  .section_12th .inner_sec .content_area2 .col-lg-9 {
    background-color: rgba(0, 0, 0, 0.6509803922);
    padding: 15px;
  }
}
.section_12th .inner_sec .content_area2 .title1 {
  font-size: clamp(24px, 2.1875vw, 40px);
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 35px;
}
@media (min-width: 992px) and (max-width: 1399px) {
  .section_12th .inner_sec .content_area2 .title1 {
    margin-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .section_12th .inner_sec .content_area2 .title1 {
    margin-bottom: 5px;
  }
}
@media (max-width: 576px) {
  .section_12th .inner_sec .content_area2 .title1 {
    font-size: clamp(20px, 1.5625vw, 30px);
  }
}
.section_12th .inner_sec .content_area2 .title2 {
  font-size: clamp(18px, 1.3541vw, 26px);
  font-weight: 300;
  text-transform: capitalize;
  line-height: 43px;
  margin-bottom: 35px;
}
.section_12th .inner_sec .content_area2 .title2 strong {
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1399px) {
  .section_12th .inner_sec .content_area2 .title2 {
    margin-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .section_12th .inner_sec .content_area2 .title2 {
    margin-bottom: 5px;
  }
}
@media (max-width: 576px) {
  .section_12th .inner_sec .content_area2 .title2 {
    font-size: clamp(16px, 1.145vw, 22px);
  }
}
.section_12th .inner_sec .content_area2 .title3 {
  font-size: clamp(18px, 1.3541vw, 26px);
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 576px) {
  .section_12th .inner_sec .content_area2 .title3 {
    font-size: clamp(16px, 1.145vw, 22px);
  }
}

.section_13th {
  padding-bottom: 100px;
  position: relative;
  background-color: #F3F7F9;
}
@media (max-width: 1199px) {
  .section_13th {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .section_13th {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 5767px) {
  .section_13th {
    padding-top: 0px;
  }
}
.section_13th .ttl_1 {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}
.section_13th .ttl_1 span {
  font-size: clamp(32px, 3.645vw, 70px);
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
  display: inline-block;
  padding-top: 10px;
}
.section_13th .custom_accordion .accordion {
  background-color: transparent;
}
.section_13th .custom_accordion .accordion-item {
  background-color: #F3F7F9;
  border: none;
}
.section_13th .custom_accordion .accordion-item:first-of-type {
  border-radius: 0;
}
.section_13th .custom_accordion .accordion-item .accordion-header {
  border-top: solid 1px rgba(0, 0, 0, 0.123);
}
.section_13th .custom_accordion .accordion-item:last-child .accordion-header {
  border-bottom: solid 1px rgba(0, 0, 0, 0.123);
}
.section_13th .custom_accordion .accordion-button {
  font-size: clamp(16px, 1.25vw, 24px);
  color: #000;
  font-weight: 400;
  background-color: #F3F7F9;
}
.section_13th .custom_accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.section_13th .custom_accordion .accordion-button:not(.collapsed) {
  border-radius: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.section_13th .custom_accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.section_13th .custom_accordion .accordion-body {
  font-size: clamp(10px, 0.625vw, 12px);
  color: #000;
  font-weight: 500;
  line-height: 22px;
}
.section_13th .accordion-button::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.section_13th .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}
.section_13th .subscribe_div .sub_title1 {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: 500;
  color: #000;
}
.section_13th .subscribe_div .sub_txt {
  font-size: clamp(13px, 0.78125vw, 15px);
  font-weight: 500;
  color: #000;
}
.section_13th .subscribe_div .subscribe_btn {
  display: inline-block;
  padding: 15px 33px;
  text-decoration: none;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 600;
  border-radius: 6px;
  background-color: #FC2323;
  color: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.section_13th .subscribe_div .subscribe_btn span {
  position: relative;
  z-index: 1;
}
.section_13th .subscribe_div .subscribe_btn::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: #000;
  border-radius: 500px 500px 0 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0;
}
.section_13th .subscribe_div .subscribe_btn:hover::after {
  top: 0;
  border-radius: 0;
  opacity: 1;
  color: #fff;
}

footer {
  background-color: #000;
  padding: 75px 0 30px;
  color: #fff;
}
footer .f-title {
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 500;
}
footer .social_media {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .social_media li {
  list-style: none;
  margin-right: 25px;
}
@media (max-width: 376px) {
  footer .social_media li {
    margin-right: 15px;
  }
}
footer .social_media li a {
  color: #fff;
  font-size: clamp(20px, 1.5625vw, 30px);
}
footer .social_media li a:hover {
  color: #0FC852;
}
footer .address {
  margin: 0;
  padding: 0;
}
footer .address li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
footer .address li i {
  color: #fff;
  font-size: clamp(16px, 1.0416vw, 20px);
  margin-right: 26px;
}
footer .address li p {
  color: #fff;
  font-size: clamp(16px, 1.0416vw, 20px);
  margin-bottom: 0;
}
footer .address li a {
  color: #fff;
  font-size: clamp(16px, 1.0416vw, 20px);
  text-decoration: none;
}
footer .address li a:hover {
  color: #0FC852;
}
footer .copyrights {
  border-top: solid 1px rgba(151, 151, 151, 0.3215686275);
  padding-top: 10px;
  margin-top: 67px;
}
footer .copyrights p {
  margin-bottom: 0;
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #fff;
  font-weight: 500;
}
footer .copyrights ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  footer .copyrights ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 15px;
  }
}
footer .copyrights ul li {
  list-style: none;
  margin-right: 30px;
}
@media (max-width:376px){
    footer .copyrights ul li{
          margin-right: 10px;
    }
}
footer .copyrights ul li a {
  text-decoration: none;
  font-size: clamp(13px, 0.78125vw, 15px);
  color: #fff;
  font-weight: 500;
}
footer .copyrights ul li a:hover {
  color: #0FC852;
}
footer .footerText {
  margin-top: 20px;
}
footer .footerText p {
  font-size: clamp(10px, 0.625vw, 12px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}
footer .footerText p span {
  color: #0FC852;
}

/* Style for scroll-top button */
.backToTopBtn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 15;
  height: 150px;
  width: 150px;
  background: transparent;
  border: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.backToTopBtn img {
  height: 80px;
  width: auto;
}
.backToTopBtn:not(:hover) {
  background: transparent;
}
.backToTopBtn:hover {
  background: transparent;
}
.backToTopBtn.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.backToTopBtn:not(.active) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .backToTopBtn {
    display: none;
  }
}

::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #F5F5F5;
}

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

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

.scroll-bound {
  height: 500vh;
}
.scroll-bound .content {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.scroll-bound video {
  width: 100%;
}

.form_left {
  background-color: #2c2c2c;
  position: relative;
  overflow: hidden;
}
.form_left h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  position: absolute;
  top: 10px;
  left: 66px;
}
.form_left img {
  -webkit-transform: scaleX(-1) translateX(45%) translateY(82px);
          transform: scaleX(-1) translateX(45%) translateY(82px);
  height: 410px;
}

.formBody {
  padding: 50px;
}
.formBody .form-control {
  height: 55px;
}
.formBody h2 {
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
  font-weight: 600;
}
.formBody a.btn_1 {
  background-color: #000;
}
.formBody .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
}

#originLink {
  cursor: pointer;
}
#originLink:hover h2 {
  color: #0FC852;
}

.background-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
}

.hero_slider .slider-content .slide-heading.spec_heading {
  font-size: clamp(24px, 2.1875vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
}

.hero_slider .slider-content .spec-subtitle {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: 600;
  color: white;
  margin-top: 20px;
}

.hero_slider .slider-content .spec-subtitle span {
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 600;
  display: block;
}

@media (max-width: 767px) {
  .page-hero.spec_hero .slider_txt {
    top: inherit;
    -webkit-transform: none;
            transform: none;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4784313725);
    padding: 30px 0;
  }
}
.page-hero .btn_color {
  background-color: #000;
  width: 250px;
  text-align: start;
  font-weight: 500;
  position: relative;
  padding-left: 50px;
}
.page-hero .btn_color span {
  width: 100%;
  display: inline-block;
}
.page-hero .btn_color i {
  color: #0FC852;
  font-size: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  margin-top: 5px;
  position: absolute;
  right: 0;
  top: -5px;
}
.page-hero .btn_color::after {
  background-color: #0FC852;
}
.page-hero .btn_color:hover i {
  -webkit-transform: rotate(0deg) translateY(4px);
          transform: rotate(0deg) translateY(4px);
  color: #fff;
}
.page-hero .btn_color:hover span {
  color: #000;
}

video[poster] {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.spec_section_2nd {
  position: relative;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .spec_section_2nd {
    padding: 50px 0 20px;
  }
}
.spec_section_2nd .sec2nd_title {
  font-size: clamp(20px, 1.8229vw, 35px);
  font-weight: bold;
  color: #575757;
}
.spec_section_2nd .sec2nd_subtitle {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
.spec_section_2nd .vehicle_details .xxl_txt {
  font-size: 140px;
  font-weight: bold;
  color: #666666;
}
@media (max-width: 1399px) {
  .spec_section_2nd .vehicle_details .xxl_txt {
    font-size: 120px;
  }
}
@media (max-width: 1199px) {
  .spec_section_2nd .vehicle_details .xxl_txt {
    font-size: 80px;
  }
}
.spec_section_2nd .vehicle_details .xxl_txt span {
  font-size: clamp(28px, 2.8645vw, 55px);
}
.spec_section_2nd .vehicle_details .txt2 {
  font-size: clamp(18px, 1.40625vw, 27px);
  font-weight: bold;
  color: #666666;
}
.spec_section_2nd .vehicle_details .txt3 {
  font-size: clamp(26px, 2.3vw, 46px);
  font-weight: bold;
  color: #575757;
  text-align: start;
  margin-bottom: 0;
}

@media (max-width:376px){
    .spec_section_2nd .vehicle_details .txt3 {
        font-size: clamp(24px, 2.1875vw, 40px);  
    }
}
.spec_section_2nd .vehicle_details .txt3 span {
  font-size: clamp(14px, 0.9375vw, 18px);
}
.spec_section_2nd .vehicle_details .txt4 {
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 300;
  color: #000;
  text-align: start;
}
@media (max-width:376px){
    .spec_section_2nd .vehicle_details .txt4 {
        font-size: clamp(10px, 0.625vw, 12px);  
    }
}
.spec_section_2nd .vehicle_details .box-brdr {
  border-left: solid 2px #575757;
  padding-left: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .spec_section_2nd .vehicle_details .box-brdr {
    border-top: solid 1px #575757;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.spec_section_2nd .vehicle_details .pd_div {
  padding: 30px 90px 30px 30px;
}
@media (max-width: 767px) {
  .spec_section_2nd .vehicle_details .pd_div {
    padding: 30px;
  }
}

.spec_section_3rd {
  background-color: #DEEDED;
  padding: 0px 0 100px;
  position: relative;
}
@media (max-width: 767px) {
  .spec_section_3rd {
    padding-bottom: 50px;
  }
}
.spec_section_3rd .content_div {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 991px) {
  .spec_section_3rd .content_div {
    position: relative;
  }
}
@media (max-width: 576px) {
  .spec_section_3rd .content_div {
    position: relative;
    text-align: center;
  }
}
.spec_section_3rd .content_div h2 {
  font-size: clamp(24px, 2.1875vw, 40px);
  color: #575757;
  font-weight: bold;
}
.spec_section_3rd .content_div p {
  font-size: clamp(16px, 1.0416vw, 20px);
  color: #575757;
  font-weight: 500;
}
.spec_section_3rd .color_style {
  background: #D9D9D9;
  padding: 15px 15px 16px 18px;
  border-radius: 40px;
  text-align: start;
  margin: 45px 0 0 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.spec_section_3rd .color_style li {
  list-style: none;
  width: 52px;
  height: 52px;
  border-radius: 80px;
  margin-right: 10px;
}
@media (max-width: 576px) {
  .spec_section_3rd .color_style li {
    width: 30px;
    height: 30px;
  }
}
.spec_section_3rd .color_style li a {
  text-decoration: none;
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 80px;
}
@media (max-width: 576px) {
  .spec_section_3rd .color_style li a {
    width: 30px;
    height: 30px;
  }
}
.spec_section_3rd .color_style li a img {
  display: none;
}
.spec_section_3rd .color_style li a.selected img {
  display: block;
  -webkit-transform: translateX(31px);
          transform: translateX(31px);
}
@media (max-width:576px){
    .spec_section_3rd .color_style li a.selected img{
        transform: translateX(16px);
        width: 16px;
    }
}
.spec_section_3rd .color_style li:nth-child(1) {
  background-color: #D20000;
}
.spec_section_3rd .color_style li:nth-child(2) {
  background-color: #6B6B6B;
}
.spec_section_3rd .color_style li:nth-child(3) {
  background-color: #0D357D;
}
.spec_section_3rd .color_style li:nth-child(4) {
  background-color: #000000;
}
.spec_section_3rd .color_style li:nth-child(5) {
  background-color: #0C3F44;
}
.spec_section_3rd .color_style li:nth-child(6) {
  background-color: #f3f3f3;
}

.spec_section_4th {
  position: relative;
  padding: 100px 0;
}
.spec_section_4th .add_slider {
  border-radius: 27px;
  overflow: hidden;
}
.spec_section_4th .add_slider .footer_slider {
  padding: 0 0 50px 0;
}
.spec_section_4th .add_slider .footer_slider .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}
.spec_section_4th .add_slider .footer_slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #333333;
}

.spec_section_5th {
  position: relative;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .spec_section_5th {
    padding-top: 50px;
  }
}
.spec_section_5th .gradient_box {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.spec_section_5th .gradient_box.colorBox_1 {
  position: relative;
}
.spec_section_5th .gradient_box.colorBox_1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(41%, rgba(255, 255, 255, 0)), color-stop(65%, #F2F1F1));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 41%, #F2F1F1 65%);
  padding-top: 50px;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media (max-width:376px){
    .spec_section_5th .gradient_box.colorBox_1::before{
         background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(41%, rgba(255, 255, 255, 0)), color-stop(55%, #F2F1F1));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 41%, #F2F1F1 55%);
    }
}
.spec_section_5th .gradient_box.colorBox_2 {
  position: relative;
}
.spec_section_5th .gradient_box.colorBox_2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(41%, rgba(255, 255, 255, 0)), color-stop(65%, #EDE6DB));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 41%, #EDE6DB 65%);
  padding-top: 50px;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.spec_section_5th .gradient_box.colorBox_3 {
  position: relative;
}
.spec_section_5th .gradient_box.colorBox_3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(41%, rgba(255, 255, 255, 0)), color-stop(65%, rgb(231, 243, 240)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 41%, rgb(231, 243, 240) 65%);
  padding-top: 50px;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.spec_section_5th .gradient_box img {
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media (max-width: 991px) {
  .spec_section_5th .gradient_box img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
.spec_section_5th .gradient_box .content_area {
  position: relative;
  z-index: 1;
  padding: 30px;
  height: 200px;
}
.spec_section_5th .gradient_box .content_area.box_color {
  background-color: #EDE6DB;
}
.spec_section_5th .gradient_box .content_area strong {
  font-weight: 600;
}
.spec_section_5th .gradient_box .content_area h4 {
  font-size: clamp(22px, 1.9791vw, 38px);
  font-weight: 500;
  color: #181E22;
  margin-bottom: 15px;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.spec_section_5th .gradient_box .content_area p {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 1.0937vw, 21px);
  font-weight: 300;
  color: #41515C;
  margin-bottom: 0;
}
.spec_section_5th .gradient_box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.spec_section_5th .gradient_box:hover .content_area h4 {
  font-size: clamp(28px, 2.6041vw, 50px);
  font-weight: 800;
}
.spec_section_5th .custom_box {
  position: relative;
  border-radius: 13px;
  padding: 25px;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.spec_section_5th .custom_box.colorbx {
  background-color: #D6E1EA;
  height: 320px;
}
.spec_section_5th .custom_box.colorbx2 {
  background-color: rgba(255, 164, 74, 0.29);
  height: 320px;
}
.spec_section_5th .custom_box h3 {
  font-size: clamp(22px, 1.9791vw, 38px);
  color: #181E22;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.spec_section_5th .custom_box p {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 1.0937vw, 21px);
  font-weight: 300;
  color: #41515C;
  margin-bottom: 0;
}
.spec_section_5th .custom_box span {
  padding: 130px 0 50px 0;
  display: inline-block;
}
.spec_section_5th .custom_box span.box2 {
  padding: 142px 0 38px 0;
  display: inline-block;
}
.spec_section_5th .custom_box span.box3 {
  padding: 100px 0 42px 0;
  display: inline-block;
}
.spec_section_5th .custom_box:hover h3 {
  font-size: clamp(28px, 2.6041vw, 50px);
  font-weight: 800;
}
.spec_section_5th .testDrive_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 35%;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .spec_section_5th .testDrive_link {
    padding-top: 50px;
    width: 50%;
  }
}
.spec_section_5th .testDrive_link a {
  color: #0FC852;
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.spec_section_5th .testDrive_link a i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  margin-left: 5px;
}
.spec_section_5th .testDrive_link a:hover i {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.spec_section_5th .testDrive_link p {
  color: #000;
  font-size: clamp(12px, 0.72916vw, 14px);
  font-weight: 500;
  text-align: end;
}
.spec_section_5th .ipx7Img {
  position: absolute;
  right: 27px;
  top: 17px;
}
.spec_section_5th .regan_iocn {
  position: absolute;
  left: 29px;
  top: 35px;
}
.spec_section_5th .navigation_icon {
  position: absolute;
  left: 20px;
  top: 29px;
}

.spec_section_6th {
  position: relative;
  padding: 80px 0 30px;
}
@media (max-width: 767px) {
  .spec_section_6th {
    padding: 30px 0;
  }
}
.spec_section_6th .sec_6th_title {
  font-size: clamp(30px, 3.125vw, 60px);
  font-weight: bold;
  color: rgba(87, 87, 87, 0.6);
  margin-bottom: 70px;
}

.spec_section_7th {
  position: relative;
  margin: 50px 0;
  background-color: #F3F7F9;
  padding: 150px 0;
}
@media (max-width: 991px) {
  .spec_section_7th {
    margin: 30px 0;
    padding: 30px 0;
  }
}
@media (max-width: 576px) {
  .spec_section_7th {
    margin: 30px 0;
    padding: 30px 0;
  }
}
.spec_section_7th .overlap_div {
  position: absolute;
  left: 0;
  z-index: 3;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .spec_section_7th .overlap_div {
    position: relative;
  }
}
.spec_section_7th .overlap_div .screenDisplay_content {
  padding: 45px 0 0 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 576px) {
  .spec_section_7th .overlap_div .screenDisplay_content {
    padding-top: 0;
  }
}
.spec_section_7th .overlap_div .screenDisplay_content table tbody tr td {
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #000;
}
@media (max-width: 576px) {
  .spec_section_7th .overlap_div .screenDisplay_content table tbody tr td {
    font-size: 12px;
    white-space: nowrap;
  }
}
.spec_section_7th .overlap_div .screenDisplay_content .sec_7_title {
  font-size: clamp(24px, 2.1875vw, 40px);
  color: #575757;
  font-weight: bold;
}
.spec_section_7th .overlap_div .screenDisplay_content .table > :not(caption) > * > * {
  border-bottom-width: 0;
}
.spec_section_7th .screen_display_slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  z-index: 1;
  padding-top: 80px;
}
.spec_section_7th .screen_display_slider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 23%;
  height: 100%;
  background-color: #F3F7F9;
  z-index: 2;
}
@media (max-width: 767px) {
  .spec_section_7th .screen_display_slider::before {
    display: none;
  }
}
.spec_section_7th .screen_display_slider .arrows_wrp {
  position: absolute;
  top: 30px;
  right: 19vw;
  width: 120px;
}
@media (max-width: 576px) {
  .spec_section_7th .screen_display_slider .arrows_wrp {
    right: 0;
  }
}
.spec_section_7th .screen_display_slider .swiper-button-prev:after,
.spec_section_7th .screen_display_slider .swiper-button-next:after {
  display: none;
}
.spec_section_7th .screen_display_slider .swiper-button-prev i,
.spec_section_7th .screen_display_slider .swiper-button-next i {
  font-size: clamp(20px, 1.8229vw, 35px);
  color: #ADAFB0;
}

.spec_section_8th {
  position: relative;
  padding: 100px 0 100px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .spec_section_8th {
    padding: 50px 0 50px;
    overflow: hidden;
  }
}
.spec_section_8th .sec_8th_title {
  font-size: clamp(24px, 2.1875vw, 40px);
  font-weight: 700;
  color: rgba(87, 87, 87, 0.6);
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .spec_section_8th .sec_8th_title {
    padding-left: 30px;
  }
}
.spec_section_8th .specifications {
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .spec_section_8th .specifications {
    font-size: clamp(13px, 0.78125vw, 15px);
  }
}
@media (max-width: 576px) {
  .spec_section_8th .specifications {
    padding: 0 30px;
  }
}
.spec_section_8th .specifications li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 0px;
}
.spec_section_8th .specifications li span {
  position: relative;
  width: 300px;
  height: 50px;
  display: inline-block;
}
.spec_section_8th .specifications li span:first-child {
  text-transform: uppercase;
  color: #333;
  font-weight: 600;
}
.spec_section_8th .specifications li span:last-child {
  color: #424242;
}
.spec_section_8th .specifications li span:last-child::before {
  left: -90px;
}
@media (max-width: 476px) {
  .spec_section_8th .specifications li.last_row {
    display: block;
  }
}
@media (max-width: 476px) {
  .spec_section_8th .specifications li.last_row span {
    height: 30px;
  }
}
.spec_section_8th .x-showroom_price {
  border-bottom: solid 1px #707070;
  padding-bottom: 20px;
  margin-top: 100px;
}
.spec_section_8th .x-showroom_price p {
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #7D7D7D;
  text-transform: uppercase;
  font-weight: 400;
}
.spec_section_8th .x-showroom_price small {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #7D7D7D;
  font-weight: 300;
  width: 80%;
  display: block;
}
.spec_section_8th .x-showroom_price .priceTxt {
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #575757;
  font-weight: bold;
}
.spec_section_8th .cus_btn {
  border: solid 1px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 400;
  text-align: center;
  color: #000;
  text-decoration: none;
  width: 200px;
  display: inline-block;
  padding: 5px 0;
}
.spec_section_8th .cus_btn i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-left: 5px;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.spec_section_8th .cus_btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}
.spec_section_8th .cus_btn:hover i {
  color: #fff;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.spec_section_8th .emtxt {
  text-align: center;
  margin-top: 20px;
}
.spec_section_8th .emtxt p {
  margin: 0;
  font-size: clamp(14px, 0.8333vw, 16px);
  color: #000;
  font-weight: 400;
}
.spec_section_8th .emtxt small {
  margin: 0;
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #7d7d7d;
  font-weight: 300;
}
.spec_section_8th .config_div {
  position: relative;
}
.spec_section_8th .config_div small {
  color: #000;
  font-size: clamp(12px, 0.72916vw, 14px);
  font-weight: 300;
}
.spec_section_8th .config_div small span {
  color: rgb(252, 34, 34);
  display: block;
}
.spec_section_8th .config_div small span a {
  text-decoration: none;
  color: rgb(252, 34, 34);
}
.spec_section_8th .config_div small span a:hover {
  color: rgb(252, 34, 34);
}
.spec_section_8th .config_div .cus_btn {
  width: 100%;
}
.spec_section_8th .config_div .cus_btn i {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.spec_section_8th .spec_color {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.spec_section_8th .spec_color li {
  list-style: none;
  margin: 0 5px;
  padding: 0;
}
.spec_section_8th .spec_color li .span {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.spec_section_8th .spec_color li .span img {
  width: 20px;
  height: 21px;
  display: inline-block;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(15deg) brightness(106%) contrast(103%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(15deg) brightness(106%) contrast(103%);
  display: none;
}
.spec_section_8th .spec_color li .span.red {
  background-color: #FF0000;
}
.spec_section_8th .spec_color li .span.grey {
  background-color: #898989;
}
.spec_section_8th .spec_color li .span.h-white {
  background-color: rgb(240, 240, 240);
}
.spec_section_8th .spec_color li .span.h-white img {
  -webkit-filter: none;
          filter: none;
}
.spec_section_8th .spec_color li .span.o-green {
  background-color: #136B61;
}
.spec_section_8th .spec_color li .span.black {
  background-color: #000000;
}
.spec_section_8th .spec_color li .span.blue {
  background-color: #26455C;
}
.spec_section_8th .spec_color li.selected .span img {
  display: block;
}
.spec_section_8th .spec_scooter_color_name {
  font-size: clamp(28px, 2.5vw, 48px);
  color: #D81513;
  font-weight: 600;
  text-align: right;
}
.spec_section_8th .scooters_colors {
  cursor: pointer;
}
.spec_section_8th .spec_select_image {
  display: inline-block;
  padding: 252px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 576px) {
  .spec_section_8th .spec_select_image {
    padding: 155px;
  }
}

.spec_section_9th {
  background-color: #F3F7F9;
  padding: 60px 0;
}
.spec_section_9th .warrenty_card {
  height: 225px;
  position: relative;
}
@media (max-width: 1199px) {
  .spec_section_9th .warrenty_card {
    height: 180px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .spec_section_9th .warrenty_card {
    height: 225px;
    margin-bottom: 50px;
    margin-bottom: 50px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .spec_section_9th .warrenty_card {
    height: 190px;
    margin-bottom: 50px;
    text-align: center;
  }
}
.spec_section_9th .br_right {
  border-right: solid 1px rgba(0, 0, 0, 0.3);
  margin-right: 50px;
}
@media (max-width: 991px) {
  .spec_section_9th .br_right {
    margin-right: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .spec_section_9th .br_right {
    border-right: 0;
    border-bottom: solid 1px rgba(0, 0, 0, 0.3);
    padding-bottom: 25px;
    margin-bottom: 25px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .spec_section_9th .br_right {
    text-align: center;
  }
}
.spec_section_9th .motor_icon {
  width: 45px;
  margin-bottom: 20px;
  margin-top: 15px;
}
.spec_section_9th .sec_9th_title {
  font-size: clamp(24px, 2.1875vw, 40px);
  color: #575757;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
}
.spec_section_9th .sec_9th_subtitle {
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #6C7072;
  font-weight: 400;
  text-align: center;
}
.spec_section_9th .sec_9th_subtitle2 {
  font-size: clamp(16px, 1.0416vw, 20px);
  color: #000;
  font-weight: 500;
}
.spec_section_9th .sec_9th_title2 {
  font-size: clamp(18px, 1.3541vw, 26px);
  color: #575757;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .spec_section_9th .sec_9th_title2 {
    bottom: 18px;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .spec_section_9th .sec_9th_title2 {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .spec_section_9th .border-right-0 {
    border-right: 0;
  }
}
.spec_section_9th small {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #7C7C7C;
  font-weight: 400;
}
.spec_section_9th .lern_more_btn2 {
  font-size: clamp(13px, 0.78125vw, 15px);
  color: #0FC852;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}
.spec_section_9th .lern_more_btn2 i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.spec_section_9th .lern_more_btn2:hover i {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.spec_section_10th {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 576px) {
  .spec_section_10th {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .spec_section_10th .align_content {
    text-align: center;
  }
}
.spec_section_10th .sec_10_title {
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: bold;
  color: #575757;
}
.spec_section_10th .sec_10_small {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 300;
  color: #000;
}
.spec_section_10th .sec_10_small strong {
  font-weight: 600;
}
.spec_section_10th .sec_10_title2 {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 300;
}
.spec_section_10th .sec_10_title2.grey {
  color: #979797;
}
.spec_section_10th .sec_10_title2.blue {
  color: #1B0FC8;
  opacity: 0.4;
}
.spec_section_10th .sec_10_title2.red {
  color: #D20000;
  opacity: 0.4;
}
.spec_section_10th a {
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 300;
  color: #0FC852;
  font-family: "Inter", sans-serif;
  text-decoration: none;
}
.spec_section_10th a:hover {
  color: #18334D;
  text-decoration: underline;
}

.spec_section_11th {
  background-color: #F3F7F9;
  position: relative;
  padding: 50px 0 100px;
}
@media (max-width: 991px) {
  .spec_section_11th .align_item {
    text-align: center;
  }
}
.spec_section_11th .sec_11_title {
  font-size: clamp(24px, 2.1875vw, 40px);
  font-weight: bold;
  color: #575757;
}
.spec_section_11th .sec_11_small_title {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 400;
  color: #575757;
}
.spec_section_11th .sec_11_title2 {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 300;
  margin-bottom: 10px;
}
.spec_section_11th .sec_11_title2.color1 {
  color: #979797;
}
.spec_section_11th .sec_11_title2.color2 {
  color: rgba(27, 15, 200, 0.4);
}
.spec_section_11th .sec_11_title2.color3 {
  color: rgba(210, 0, 0, 0.4);
}
.spec_section_11th .sec_11_small_title2 {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 400;
  color: #000;
}

.white_bg {
  background-color: #fff !important;
}

.white_bg .custom_accordion .accordion-item,
.white_bg .custom_accordion .accordion-button {
  background-color: #fff;
}

.abt_banner {
  position: relative;
  background-image: url("../img/about/about-banner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}
.abt_banner .abt_banner_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.abt_banner .abt_banner_content h1 {
  font-size: clamp(30px, 3.125vw, 60px);
  font-weight: bold;
  color: #fff;
}
.abt_banner .abt_banner_content p {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 300;
  color: #fff;
}

.abt_sec_1st {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .abt_sec_1st {
    padding: 50px 0;
  }
}
.abt_sec_1st h2 {
  font-size: clamp(24px, 2.1875vw, 40px);
  font-weight: bold;
  color: #000;
}
.abt_sec_1st p {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 300;
  color: #000;
}

.f_bike_ev-list-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 991px) {
  .f_bike_ev-list-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.f_bike_ev-list-area .f_bike_ev-list-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .f_bike_ev-list-area .f_bike_ev-list-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.f_bike_ev-list-area .f_bike_ev-list-wrap {
  -webkit-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.f_bike_ev-list-area .f_bike_ev-list-wrap .f_bike_ev-list {
  position: relative;
  height: 636px;
  border-radius: 4px;
  z-index: 2;
  -webkit-transition: 0.7s ease-in-out;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  cursor: pointer;
}
.f_bike_ev-list-area .f_bike_ev-list-wrap.active {
  -webkit-box-flex: 324%;
  -ms-flex: 324%;
  flex: 324%;
}
.f_bike_ev-list-area .f_bike_ev-list-wrap.active .box-title br {
  display: none;
}
@media (max-width: 1199px) {
  .f_bike_ev-list-area .f_bike_ev-list-wrap.active {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .f_bike_ev-list-area .f_bike_ev-list-wrap.active .f_bike_ev-list {
    max-height: 600px;
  }
}
.f_bike_ev-list-area .f_bike_ev-list-wrap .background-image {
  background-position: -404px 0;
}
.f_bike_ev-list-area .f_bike_ev-list-wrap.active .background-image {
  background-position: 0px 0;
}
@media (max-width: 1199px) {
  .f_bike_ev-list-area .f_bike_ev-list-wrap .background-image {
    background-position: -100px -300px;
  }
  .f_bike_ev-list-area .f_bike_ev-list-wrap.active .background-image {
    background-position: -200px 0;
  }
}
.f_bike_ev-list-area .f_bike_ev-list-wrap .background-image2 {
  background-position: -623px 0;
}
.f_bike_ev-list-area .f_bike_ev-list-wrap.active .background-image2 {
  background-position: 0px 0;
}
@media (max-width: 1199px) {
  .f_bike_ev-list-area .f_bike_ev-list-wrap.active .background-image2 {
    background-position: -380px 0;
  }
}
@media (max-width: 991px) {
  .f_bike_ev-list-area .f_bike_ev-list-wrap .background-image2 {
    background-position: -350px -290px;
  }
  .f_bike_ev-list-area .f_bike_ev-list-wrap.active .background-image2 {
    background-position: -380px 0;
  }
}
.f_bike_ev-list-area .f_bike_ev-list-wrap.active .th-btn {
  opacity: 1;
  visibility: visible;
}
.f_bike_ev-list-area .f_bike_ev-list-wrap.active .box-content {
  visibility: visible;
  opacity: 1;
  width: 100%;
  max-height: 325px;
}
.f_bike_ev-list-area .f_bike_ev-list .f_bike_ev-content {
  position: absolute;
  left: 0px;
  bottom: 160px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  white-space: nowrap;
  width: 100%;
}
@media (max-width: 991px) {
  .f_bike_ev-list-area .f_bike_ev-list .f_bike_ev-content {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    bottom: 20px;
    left: 20px;
  }
}
.f_bike_ev-list-area .f_bike_ev-list-wrap.active .f_bike_ev-content {
  left: 40px;
  bottom: 145px;
  -webkit-transform: none;
  transform: none;
}
@media (max-width: 1199px) {
  .f_bike_ev-list-area .f_bike_ev-list-wrap.active .f_bike_ev-content {
    bottom: 170px;
  }
}
@media (max-width: 476px) {
  .f_bike_ev-list-area .f_bike_ev-list-wrap.active .f_bike_ev-content {
    bottom: 165px;
  }
}
@media (max-width: 767px) {
  .f_bike_ev-list-area .f_bike_ev-list .f_bike_ev-content {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    bottom: 20px;
    left: 20px;
  }
}
.f_bike_ev-list-area .f_bike_ev-list .box-title {
  font-weight: bold;
  font-size: clamp(30px, 3.125vw, 60px);
  color: white;
  margin-bottom: 0;
}
.f_bike_ev-list-area .f_bike_ev-list .f_bike_ev-subtitle {
  color: #fff;
  display: none;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 500;
  position: absolute;
  left: 44px;
  bottom: 44px;
  right: 11%;
}
@media (max-width: 576px) {
  .f_bike_ev-list-area .f_bike_ev-list .f_bike_ev-subtitle {
    font-size: clamp(12px, 0.72916vw, 14px);
  }
}
.f_bike_ev-list-area .f_bike_ev-list-wrap.active .f_bike_ev-subtitle {
  display: block;
}
.f_bike_ev-list-area .f_bike_ev-list .th-btn {
  position: absolute;
  right: 40px;
  bottom: 40px;
  padding: 10px 30px;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .f_bike_ev-list-area .f_bike_ev-list .th-btn {
    right: 20px;
    bottom: 20px;
  }
}
.f_bike_ev-list-area .f_bike_ev-list .box-icon {
  padding: 30px 40px;
  border-bottom: 3px solid #fff;
}
.f_bike_ev-list-area .f_bike_ev-list .box-content {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  max-height: 0;
  padding: 30px 30px 40px 40px;
  overflow: hidden;
}
.f_bike_ev-list-area .f_bike_ev-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: var(--theme-color);
}
.f_bike_ev-list-area .f_bike_ev-item {
  background-color: var(--smoke-color);
  border-radius: 16px;
  text-align: center;
}
.f_bike_ev-list-area .f_bike_ev-item_img {
  border-radius: 16px 16px 0px 0px;
}
@media (max-width: 991px) {
  .f_bike_ev-list-area .f_bike_ev-item_img {
    margin-bottom: 0;
  }
}
.f_bike_ev-list-area .f_bike_ev-item .f_bike_ev-content {
  padding: 30px 0 24px 0;
}
.f_bike_ev-list-area .f_bike_ev-item .box-title {
  color: var(--black-color2);
  margin-bottom: 0;
}
.f_bike_ev-list-area .f_bike_ev-item .f_bike_ev-text {
  color: var(--black-color2);
  margin-bottom: 20px;
}
.f_bike_ev-list-area .f_bike_ev-item .th-btn {
  padding: 10px 25px;
  border: 1px solid var(--theme-color);
  font-weight: 500;
}
.f_bike_ev-list-area .f_bike_ev-list {
  position: relative;
  height: 636px;
  border-radius: 4px;
  z-index: 2;
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
  cursor: pointer;
}
@media (max-width: 991px) {
  .f_bike_ev-list-area .f_bike_ev-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 110px;
  }
}
.f_bike_ev-list-area .f_bike_ev-list-wrap.active .f_bike_ev-list {
  border-radius: 12px;
}
@media (max-width: 991px) {
  .f_bike_ev-list-area .f_bike_ev-list-wrap.active .f_bike_ev-list {
    max-height: 600px;
  }
}
@media (max-width: 767px) {
  .f_bike_ev-list-area .f_bike_ev-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 110px;
  }
}
.f_bike_ev-list-area .f_bike_ev-list:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(77.91%, rgba(0, 0, 0, 0.5))), url(3727.html);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 77.91%), url(3727.html);
  border-radius: 4px;
  z-index: -1;
}

.abt_sec_2nd {
  position: relative;
  padding: 50px 0;
  height: 2500px;
}
@media (max-width: 1399px) {
  .abt_sec_2nd {
    height: 2600px;
  }
}
@media (max-width: 1199px) {
  .abt_sec_2nd {
    height: 1520px;
  }
}
@media (max-width: 767px) {
  .abt_sec_2nd {
    height: auto;
  }
}
.abt_sec_2nd .area_width {
  width: 1300px;
}
@media (max-width: 1399px) {
  .abt_sec_2nd .area_width {
    width: 1100px;
  }
}
@media (max-width: 1199px) {
  .abt_sec_2nd .area_width {
    width: 100%;
  }
}
.abt_sec_2nd h2 {
  font-size: clamp(28px, 2.6041vw, 50px);
  font-weight: bold;
  color: #0FC852;
}
.abt_sec_2nd p {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 400;
  color: #000;
}
.abt_sec_2nd h3 {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: bold;
  color: #000;
}
.abt_sec_2nd .boxes_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1199px) {
  .abt_sec_2nd .boxes_area {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .abt_sec_2nd .boxes_area {
    width: 800px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .abt_sec_2nd .boxes_area {
    width: 750px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .abt_sec_2nd .boxes_area {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
  .abt_sec_2nd .boxes_area .itemBox {
    width: 45%;
    padding: 20px !important;
    border: solid 1px #dfdfdf;
    margin: 0px 10px 20px;
  }
}
@media (max-width: 767px) {
  .abt_sec_2nd .boxes_area .itemBox {
    width: 100%;
  }
}
.abt_sec_2nd .boxes_area .itemBox:nth-child(even) {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.abt_sec_2nd .boxes_area .itemBox .innerBox {
  width: 575px;
  position: relative;
}
@media (max-width: 1199px) {
  .abt_sec_2nd .boxes_area .itemBox .innerBox {
    width: 100%;
  }
}
.abt_sec_2nd .boxes_area .itemBox .innerBox .box2_title {
  padding-left: 7vw;
}
@media (max-width: 1399px) {
  .abt_sec_2nd .boxes_area .itemBox .innerBox .box2_title {
    padding-left: 22vw;
  }
}
@media (max-width: 1199px) {
  .abt_sec_2nd .boxes_area .itemBox .innerBox .box2_title {
    padding-left: 0;
  }
}
.abt_sec_2nd .boxes_area .itemBox .innerBox .box3_title {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  left: -147px;
  bottom: -3vw;
  top: -1vw;
  width: 90%;
}
@media (max-width: 1599px) {
  .abt_sec_2nd .boxes_area .itemBox .innerBox .box3_title {
    bottom: 1vw;
    top: 3vw;
  }
}
@media (max-width: 1199px) {
  .abt_sec_2nd .boxes_area .itemBox .innerBox .box3_title {
    -webkit-transform: none;
            transform: none;
    position: inherit;
    bottom: 0;
    top: 0;
    width: 100%;
    left: 0;
    height: 265px;
  }
}
@media (max-width: 767px) {
  .abt_sec_2nd .boxes_area .itemBox .innerBox .box3_title {
    height: inherit;
  }
}
.abt_sec_2nd .boxes_area .itemBox .innerBox.box2 {
  width: 700px;
}
@media (max-width: 1199px) {
  .abt_sec_2nd .boxes_area .itemBox .innerBox.box2 {
    width: 100%;
  }
}
.abt_sec_2nd .boxes_area .itemBox .innerBox.box4 {
  width: 700px;
}
@media (max-width: 1199px) {
  .abt_sec_2nd .boxes_area .itemBox .innerBox.box4 {
    width: 100%;
  }
}
.abt_sec_2nd .boxes_area .itemBox:nth-child(2) {
  -webkit-transform: translateY(-22vw);
          transform: translateY(-22vw);
}
@media (max-width: 1199px) {
  .abt_sec_2nd .boxes_area .itemBox:nth-child(2) {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.abt_sec_2nd .boxes_area .itemBox:nth-child(3) {
  -webkit-transform: translate(12vw, -32vw);
          transform: translate(12vw, -32vw);
}
@media (max-width: 1199px) {
  .abt_sec_2nd .boxes_area .itemBox:nth-child(3) {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.abt_sec_2nd .boxes_area .itemBox:nth-child(4) {
  -webkit-transform: translateY(-42vw);
          transform: translateY(-42vw);
}
@media (max-width: 1199px) {
  .abt_sec_2nd .boxes_area .itemBox:nth-child(4) {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.abt_sec_2nd .boxes_area .itemBox.pr7vw {
  padding-right: 7vw;
}

.abt_sec_3rd {
  position: relative;
  padding: 100px 0 150px;
  background-color: #F2FBFF;
}
@media (max-width: 991px) {
  .abt_sec_3rd {
    padding: 50px 0;
  }
}
.abt_sec_3rd h2 {
  font-size: clamp(28px, 2.6041vw, 50px);
  font-weight: 600;
  color: #000;
}
.abt_sec_3rd img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .abt_sec_3rd img {
    width: 100%;
  }
}
.abt_sec_3rd .abt_img1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 13px;
}
.abt_sec_3rd .abt_img2 {
  height: calc(100% - 207px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 13px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .abt_sec_3rd .abt_img2 {
    height: 550px;
  }
}
.abt_sec_3rd .abt_img3 {
  height: 195px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 13px;
}
@media (max-width: 991px) {
  .abt_sec_3rd .abt_img3 {
    height: 550px;
    margin-bottom: 15px;
  }
}
.abt_sec_3rd .abt_img4 {
  height: calc(100% - 115px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 13px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .abt_sec_3rd .abt_img4 {
    height: 650px;
  }
}
.abt_sec_3rd .abt_img5 {
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 13px;
}
@media (max-width: 991px) {
  .abt_sec_3rd .abt_img5 {
    height: 550px;
    margin-bottom: 15px;
  }
}

.abt_sec_4th {
  position: relative;
  padding: 100px 0 50px;
}
@media (max-width: 991px) {
  .abt_sec_4th {
    padding: 50px 0;
  }
}
.abt_sec_4th h3 {
  font-weight: 600;
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #000;
  margin-bottom: 25px;
}
.abt_sec_4th .evt_wrp {
  position: relative;
}
.abt_sec_4th .evt_wrp .evt_item {
  display: inline-block;
  text-decoration: none;
}
.abt_sec_4th .evt_wrp .evt_item img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
.abt_sec_4th .evt_wrp .evt_item .img_area {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 576px) {
  .abt_sec_4th .evt_wrp .evt_item .img_area {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .abt_sec_4th .evt_wrp .evt_item .img_area img {
    width: 100%;
    height: auto;
  }
}
.abt_sec_4th .evt_wrp .evt_item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.abt_sec_4th .evt_wrp .evt_item p {
  font-weight: 400;
  font-size: clamp(16px, 1.0416vw, 20px);
  color: #000;
  margin-top: 10px;
}
.abt_sec_4th .evt_wrp .lernMore_btn {
  text-decoration: none;
  color: #000;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 400;
}
.abt_sec_4th .evt_wrp .lernMore_btn i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.abt_sec_4th .evt_wrp .lernMore_btn:hover {
  color: #0FC852;
}
.abt_sec_4th .evt_wrp .lernMore_btn:hover i {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.abt_slider_sec {
  position: relative;
  z-index: 0;
  padding: 100px 0;
}
@media (max-width: 576px) {
  .abt_slider_sec {
    padding: 20px 0 50px;
  }
}
.abt_slider_sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: #F0FDF5;
  z-index: -1;
}
.abt_slider_sec .abt_sec_title {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: bold;
  color: #575757;
  text-align: end;
}
.abt_slider_sec .abt_wrpper {
  border-radius: 12px;
  margin: 60px 0 0;
  overflow: hidden;
  background-color: #F2F2F2;
}
.abt_slider_sec .abt_wrpper .vector_bg {
  position: relative;
}
@media (max-width: 991px) {
  .abt_slider_sec .abt_wrpper .vector_bg {
    padding: 20px 40px;
  }
}
.abt_slider_sec .abt_wrpper .vector_bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-image: url("../img/about/vector_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.abt_slider_sec .abt_wrpper .journey_years {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  width: 100px;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
}
.abt_slider_sec .abt_wrpper .journey_years li {
  list-style: none;
  margin-bottom: 35px;
}
.abt_slider_sec .abt_wrpper .journey_years li a {
  text-decoration: none;
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: bold;
  color: #575757;
  display: block;
  cursor: pointer;
}
.abt_slider_sec .abt_wrpper .journey_years li a.jrny_toggles.selected {
  color: #F1BFBF;
  position: relative;
}
.abt_slider_sec .abt_wrpper .journey_years li a.jrny_toggles.selected::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #F1BFBF;
}
.abt_slider_sec .abt_wrpper .content_wrp {
  border-radius: 35px;
  background-color: #fff;
  padding: 3vw;
  margin: 75px 0 50px 75px;
  height: calc(100% - 150px);
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  width: 100%;
  position: relative;
  z-index: 4;
}
@media (max-width: 1199px) {
  .abt_slider_sec .abt_wrpper .content_wrp {
    margin: 75px 0 50px 30px;
  }
}
@media (max-width: 991px) {
  .abt_slider_sec .abt_wrpper .content_wrp {
    margin: 0;
    -webkit-transform: none;
            transform: none;
    height: 100%;
  }
}
.abt_slider_sec .abt_wrpper .content_wrp h3 {
  font-size: clamp(18px, 1.3541vw, 26px);
  color: #0FC852;
  font-weight: bold;
}
.abt_slider_sec .abt_wrpper .content_wrp p {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #000;
  font-weight: normal;
}

.abt_3d_slider h3 {
  background: rgb(211, 211, 211);
  color: #3498db;
  font-size: 36px;
  line-height: 100px;
  margin: 10px;
  padding: 2%;
  position: relative;
  text-align: center;
}

.abt_slider {
  width: 65%;
  margin: 0 auto;
  padding-top: 100px;
}
@media (max-width: 991px) {
  .abt_slider {
    padding-top: 50px;
  }
}

.abt_slider .slick-slider {
  margin-left: -12%;
  margin-right: -12%;
}

.thumb_txt {
  font-weight: bold;
  font-size: clamp(18px, 1.3541vw, 26px);
  color: #000;
}
.thumb_txt span {
  font-size: clamp(13px, 0.78125vw, 15px);
  font-weight: normal;
}

.slide_content {
  position: absolute;
  left: -13vw;
  -webkit-transform: none;
          transform: none;
  top: -6vh;
}
@media (max-width: 1199px) {
  .slide_content {
    position: relative;
  }
}
.slide_content .title1 {
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: normal;
  color: #000;
}
.slide_content .title2 {
  font-size: clamp(24px, 2.1875vw, 40px);
  font-weight: 700;
  color: #959292;
}
.slide_content p {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: normal;
  color: #000;
  width: 450px;
}
@media (max-width: 1599px) {
  .slide_content p {
    width: 350px;
  }
}

.abt_slider .slick-slide .slide_content {
  display: none;
}

.abt_slider .slick-slide.slick-current.slick-active .slide_content {
  display: block;
}

.abt_slider .slick-list {
  padding-top: 10% !important;
  padding-bottom: 3% !important;
  padding-left: 15% !important;
  padding-right: 15% !important;
  overflow: visible;
}

@media (max-width: 991px) {
  .abt_slider2 .slider-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 991px) {
  .abt_slider2 .slick-list {
    width: 500px;
  }
}

.abt_slider .slick-dots {
  text-align: right;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

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

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

.abt_slider .slick-snext,
.abt_slider .slick-sprev {
  display: block;
}

.abt_slider .slick-current {
  opacity: 1;
  position: relative;
  display: block;
  -webkit-transform: translate3d(0, 0, 20px);
          transform: translate3d(0, 0, 20px);
  z-index: 2;
}

.abt_slider .slick-snext {
  opacity: 0.5;
  -webkit-transform: translate3d(51%, 0, 0px) scale(0.5) translateY(292px);
          transform: translate3d(51%, 0, 0px) scale(0.5) translateY(292px);
  z-index: 1;
}

.abt_slider .slick-sprev {
  opacity: 0.5;
  -webkit-transform: translate3d(-50%, 0, 0px) scale(0.5) translateY(292px);
          transform: translate3d(-50%, 0, 0px) scale(0.5) translateY(292px);
}

.abt_slider .img_area {
  padding: 50px;
}

.slider-nav .slick-prev::before,
.slider-nav .slick-next::before {
  color: #000 !important;
}

.slider-nav .slick-prev::before {
  content: "";
  background-image: url("../img/about/arrow-left.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 13px;
  height: 26px;
  position: absolute;
  left: -25px;
}

.slider-nav .slick-next::before {
  content: "";
  background-image: url("../img/about/arrow-right.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 13px;
  height: 26px;
  position: absolute;
}

.slider-nav .slick-slide img {
  width: 220px !important;
  height: auto;
}

@media (max-width: 991px) {
  .slider-nav .slick-slide img {
    width: 125px !important;
  }
}
body, html {
  height: 100%;
  width: 100%;
}

:root {
  --tooltip-color: #0FC852;
}

.color-tooltip > .tooltip-inner {
  background-color: var(--tooltip-color);
  margin-right: 100px !important;
  border-radius: 15px !important;
  padding: 15px 10px !important;
  text-align: start;
  font-size: clamp(10px, 0.625vw, 12px);
}

.color-tooltip.bs-tooltip-top > .tooltip-arrow::before, .color-tooltip.bs-tooltip-auto[data-popper-placement^=top] > .tooltip-arrow::before {
  border-top-color: var(--tooltip-color);
  left: 0px !important;
}

.color-tooltip.bs-tooltip-start > .tooltip-arrow::before, .color-tooltip.bs-tooltip-auto[data-popper-placement^=left] > .tooltip-arrow::before {
  border-left-color: var(--tooltip-color);
}

.color-tooltip.bs-tooltip-end > .tooltip-arrow::before, .color-tooltip.bs-tooltip-auto[data-popper-placement^=right] > .tooltip-arrow::before {
  border-right-color: var(--tooltip-color);
}

.ordernow_wrp {
  position: relative;
}
.ordernow_wrp .lite_blue_bg {
  background: rgba(242, 251, 255, 0.68);
}
.ordernow_wrp .pick_color {
  display: inline-block;
  background: #d9d9d9;
  border-radius: 40px;
  padding: 10px 0px 3px 13px;
  margin-bottom: 75px;
}
@media (max-width: 1199px) {
  .ordernow_wrp .pick_color {
    margin-bottom: 20px;
  }
}
.ordernow_wrp .scroll_div {
  height: calc(100% - 50px);
  overflow-y: auto;
}
.ordernow_wrp .card {
  background-color: #D9D9D9;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
}
.ordernow_wrp .card .left_panel {
   padding: 60px;
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      justify-content: center;
}
@media (max-width: 1199px){
  .ordernow_wrp .card .left_panel {
 display:block;
  }
}

@media (max-width: 576px) {
  .ordernow_wrp .card .left_panel {
    padding: 80px 0 0 0px !important;
  }
}
.ordernow_wrp .card .left_panel .back_arrow {
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #000;
}
.ordernow_wrp .card .left_panel .inner_area {
  /*padding: 0 30px 60px;*/
  margin-top: 20px;
  width: 100%;
}
.ordernow_wrp .card .left_panel .inner_area.boxPadding {
  padding-bottom: 250px;
}
.ordernow_wrp .card .left_panel .inner_area h1 {
  color: #000;
  font-size: clamp(20px, 1.5625vw, 30px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.ordernow_wrp .card .left_panel .inner_area h1 span {
  font-weight: 400;
}
.ordernow_wrp .card .left_panel .inner_area h5 {
  font-family: "Inter", sans-serif;
}
.ordernow_wrp .card .left_panel .inner_area p {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}
.ordernow_wrp .card .left_panel .inner_area ul {
  margin: 40px 0 0 0;
  padding: 0;
  width: 100%;
}
.ordernow_wrp .card .left_panel .inner_area ul li {
  list-style: none;
  border-top: solid 1px #d9d9d9;
  padding: 15px;
}
.ordernow_wrp .card .left_panel .inner_area ul li:last-child {
  border-bottom: solid 1px #d9d9d9;
}
.ordernow_wrp .card .left_panel .inner_area ul li p {
  margin-bottom: 0;
  font-size: clamp(13px, 0.78125vw, 15px);
  font-weight: normal;
  color: #000;
}
.ordernow_wrp .card .left_panel .inner_area ul li h3 {
  margin-bottom: 0;
  font-size: clamp(18px, 1.3541vw, 26px);
  font-weight: 700;
  color: #000;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .ordernow_wrp .card .left_panel .inner_area .bottom_area .for_mobile {
    width: 100%;
  }
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area p {
  margin-bottom: 0;
  font-size: clamp(13px, 0.78125vw, 15px);
  font-weight: normal;
  color: #000;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .booknow_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/*@media (max-width: 1399px) {*/
/*  .ordernow_wrp .card .left_panel .inner_area .bottom_area .booknow_txt {*/
/*    -webkit-box-orient: vertical;*/
/*    -webkit-box-direction: normal;*/
/*        -ms-flex-direction: column;*/
/*            flex-direction: column;*/
/*  }*/
/*}*/
.ordernow_wrp .card .left_panel .inner_area .bottom_area .booknow_txt p {
  margin-bottom: 0;
  font-size: clamp(13px, 0.78125vw, 15px);
  font-weight: normal;
  color: #000;
}
@media (max-width: 1399px) {
  .ordernow_wrp .card .left_panel .inner_area .bottom_area .booknow_txt p {
    margin-bottom: 15px;
  }
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .booknow_txt .label {
  border-radius: 12px;
  background: #D9D9D9;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 125px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10px;
}
@media (max-width: 1399px) {
  .ordernow_wrp .card .left_panel .inner_area .bottom_area .booknow_txt .label {
    margin-bottom: 15px;
  }
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .booknow_txt .label span {
  color: rgba(0, 0, 0, 0.81);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .booknow_txt .label span.info {
  width: 12px;
  width: 12px;
  border-radius: 20px;
  background-color: #000;
  font-size: 10px;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  cursor: pointer;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .booknow_txt h5 {
  color: #000;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .btn_color {
  background-color: #000;
  width: 260px;
  text-align: center;
  font-weight: 700;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .btn_color i {
  color: #0FC852;
  font-size: clamp(16px, 1.0416vw, 20px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  margin-top: 5px;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .btn_color::after {
  background-color: #0FC852;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .btn_color:hover i {
  -webkit-transform: rotate(0deg) translateY(4px);
          transform: rotate(0deg) translateY(4px);
  color: #fff;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .slider-nav .slide_width {
  display: inline-block;
  width: 50px !important;
}
@media (max-width: 1399px) {
  .ordernow_wrp .card .left_panel .inner_area .bottom_area .slider-nav .slide_width {
    width: 42px !important;
  }
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .slider-nav .slick-track {
  -webkit-transform: none !important;
          transform: none !important;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .slider-nav h3 {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  cursor: pointer;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .slider-nav h3.lite_green {
  background-color: #DFEA3D;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .slider-nav h3.dark_grey {
  background-color: #575757;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .slider-nav h3.red {
  background-color: #F00;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .slider-nav h3.green {
  background-color: #117474;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .slider-nav h3.black {
  background-color: #000;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .slider-nav h3.half_white {
  background-color: #ffffff;
}
.ordernow_wrp .card .left_panel .inner_area .bottom_area .slider-nav h3.dark_blue {
  background-color: #30396F;
}
.ordernow_wrp .card .left_panel .inner_area .mobi_no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ordernow_wrp .card .left_panel .inner_area .mobi_no select {
  width: 100px;
}
.ordernow_wrp .card .left_panel .inner_area .mobi_no select.form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  height: 45px;
}
.ordernow_wrp .card .left_panel .inner_area .mobi_no select.form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #ced4da;
}
.ordernow_wrp .card .left_panel .inner_area .mobi_no input.form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  height: 45px;
}
.ordernow_wrp .card .left_panel .inner_area .mobi_no input.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #ced4da;
}
.ordernow_wrp .card .left_panel .inner_area input.form-control {
  height: 45px;
  font-family: "Inter", sans-serif;
  font-size: clamp(12px, 0.72916vw, 14px);
}
.ordernow_wrp .card .left_panel .inner_area select.form-select {
  height: 45px;
  font-family: "Inter", sans-serif;
  font-size: clamp(12px, 0.72916vw, 14px);
}
.ordernow_wrp .card .left_panel .inner_area .note_txt {
  margin: 35px 0 35px;
}
.ordernow_wrp .card .left_panel .inner_area .note_txt p {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #898989;
  font-weight: normal;
  text-align: center;
}
.ordernow_wrp .card .left_panel .inner_area h6 {
  font-family: "Inter", sans-serif;
}
.ordernow_wrp .card .left_panel .inner_area ::-webkit-input-placeholder {
  color: #989692;
  opacity: 1;
  /* Firefox */
}
.ordernow_wrp .card .left_panel .inner_area ::-moz-placeholder {
  color: #989692;
  opacity: 1;
  /* Firefox */
}
.ordernow_wrp .card .left_panel .inner_area :-ms-input-placeholder {
  color: #989692;
  opacity: 1;
  /* Firefox */
}
.ordernow_wrp .card .left_panel .inner_area ::-ms-input-placeholder {
  color: #989692;
  opacity: 1;
  /* Firefox */
}
.ordernow_wrp .card .left_panel .inner_area ::placeholder {
  color: #989692;
  opacity: 1;
  /* Firefox */
}
.ordernow_wrp .card .left_panel .inner_area ::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #989692;
}
.ordernow_wrp .card .left_panel .inner_area .b_check_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
.ordernow_wrp .card .left_panel .inner_area .b_check_txt svg {
  margin-right: 15px;
}
.ordernow_wrp .card .left_panel .inner_area .b_check_txt h4 {
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
}
.ordernow_wrp .card .form_bttm_tab {
  background-color: #F3F7F9;
  padding: 10px 60px;
}
@media (max-width: 1399px) {
  .ordernow_wrp .card .form_bttm_tab {
    padding: 10px 20px;
  }
}
.ordernow_wrp .card .form_bttm_tab a {
  text-decoration: none;
  color: #000;
}
.ordernow_wrp .card .form_bttm_tab a i {
  color: #0FC852;
}
.ordernow_wrp .card .form_bttm_tab .tab_link a {
  text-decoration: none;
  color: #000;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: normal;
  width: 45%;
  text-align: start;
  padding: 6px 0;
}
.ordernow_wrp .card .form_bttm_tab .tab_link a:hover {
  color: #0FC852;
  cursor: default;
}
.ordernow_wrp .card .form_bttm_tab .pickedColor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45%;
  text-align: start;
}
.ordernow_wrp .card .form_bttm_tab .pickedColor .dark_grey {
  background-color: #575757;
}
.ordernow_wrp .card .form_bttm_tab .pickedColor .dark_blue {
  background-color: #30396F;
}
.ordernow_wrp .card .form_bttm_tab .pickedColor .green {
  background-color: #117474;
}
.ordernow_wrp .card .form_bttm_tab .pickedColor .red {
  background-color: #F00;
}
.ordernow_wrp .card .form_bttm_tab .pickedColor .half_white {
  background-color: #fff;
}
.ordernow_wrp .card .form_bttm_tab .pickedColor span {
  width: 30px;
  height: 30px;
  border-radius: 60px;
  margin-right: 15px;
}
.ordernow_wrp .card .img-area {
  background-image: url("../img/ordernow/img.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ordernow_wrp .card a.edit_btn {
  white-space: nowrap;
  text-decoration: none;
  color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}
.ordernow_wrp .card a.edit_btn i {
  color: #0FC852;
}
.ordernow_wrp .card .otp_input {
  height: 70px !important;
  font-size: clamp(16px, 1.25vw, 24px) !important;
}
.ordernow_wrp .card .resend_otp {
  text-decoration: none;
  font-weight: bold;
  color: #000;
}
.ordernow_wrp .card .resend_otp:hover {
  color: #0FC852;
}
.ordernow_wrp .card .btn_color {
  background-color: #000;
  width: 260px;
  text-align: center;
  font-weight: 700;
}
.ordernow_wrp .card .btn_color i {
  color: #0FC852;
  font-size: clamp(16px, 1.0416vw, 20px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  margin-top: 5px;
}
.ordernow_wrp .card .btn_color::after {
  background-color: #0FC852;
}
.ordernow_wrp .card .btn_color:hover i {
  -webkit-transform: rotate(0deg) translateY(4px);
          transform: rotate(0deg) translateY(4px);
  color: #fff;
}
.ordernow_wrp .card .btn_color.btnHeight {
  height: 70px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.ordernow_wrp .card .btn_color .btnTxt {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: 600;
}
.ordernow_wrp .pick_color .slick-current.slick-active {
  position: relative;
}
.ordernow_wrp .pick_color .slick-current.slick-active::before {
  content: "";
  background-image: url("../img/ordernow/plus.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 9px;
  top: 0;
}

.bg-lite-skyblue {
  background-color: #F7FDFF;
}

.leaftArea {
  padding: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}
@media (max-width: 576px) {
  .leaftArea {
    padding: 80px 50px;
  }
}
.leaftArea h1 {
  font-size: clamp(24px, 2.1875vw, 40px);
  font-weight: 600;
  color: #000;
}
.leaftArea p {
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 400;
  color: #636363;
}
.leaftArea .goHome_link {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
}
.leaftArea .goHome_link:hover {
  text-decoration: none;
  color: #0FC852;
}

.rightArea {
  padding: 100px 50px 50px 100px;
}
@media (max-width: 576px) {
  .rightArea {
    padding: 50px;
  }
}
.rightArea .price_panel {
  background-color: #333333;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 40px;
}
.rightArea .price_panel h1 {
  font-size: clamp(28px, 2.6041vw, 50px);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #fff;
}
.rightArea .table > :not(caption) > * > * {
  border-bottom-width: 0 !important;
  padding: 15px 10px !important;
}
.rightArea .success_txt {
  color: #0FC852;
}
.rightArea .button_wrp {
  border-radius: 12px;
  border: solid 1px #000;
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  color: #000;
  padding: 7px 25px;
  width: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.rightArea .button_wrp:hover {
  background-color: #000;
  color: #fff;
}
.rightArea .button_wrp i {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.rightArea .button_wrp.spec:hover i {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.rightArea .bottn_btns {
  margin-top: 200px;
}

.formGroup {
  position: relative;
}

.formGroup input {
  position: relative;
  z-index: 10;
  background-color: transparent;
}

.formGroup textarea {
  position: relative;
  z-index: 10;
  background-color: transparent;
}

.formGroup label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  color: #ccc;
  background-color: white;
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
  padding-left: 10px;
  padding-top: 10px;
  font-size: clamp(12px, 0.72916vw, 14px);
}

.formGroup label::after {
  content: "*";
  color: red;
}

input[required]:valid + label {
  display: none;
}

textarea[required]:valid + label {
  display: none;
}

input[required]:valid {
  background-color: #fff;
}

textarea[required]:valid {
  background-color: #fff;
}

@media (max-width: 1399px) {
  .mid_pannel {
    padding-top: 80px !important;
    padding-bottom: 0 !important;
  }
}

.btry_banner {
  position: relative;
  background-image: url("../img/battery/slider.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}
.btry_banner .abt_banner_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.btry_banner .abt_banner_content .slider_top {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 100px;
}
.btry_banner .abt_banner_content .slider_top img {
  width: 150px;
  padding-left: 50px;
}
.btry_banner .abt_banner_content .slider_top h1 {
  font-size: clamp(30px, 3.125vw, 60px);
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  line-height: 55px;
  margin-bottom: 15px;
}
.btry_banner .abt_banner_content .slider_top h1 span {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 300;
}
.btry_banner .abt_banner_content .slider_top h4 {
  font-size: clamp(24px, 2.1875vw, 40px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.btry_banner .abt_banner_content .slider_top p {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 300;
  color: #fff;
}
.btry_banner .abt_banner_content .slider_bottom {
  height: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .btry_banner .abt_banner_content .slider_bottom {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.btry_banner .abt_banner_content .slider_bottom h2 {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: bold;
  color: #FFA600;
  position: relative;
}
.btry_banner .abt_banner_content .slider_bottom h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 2px;
  background-color: #FFA600;
}
.btry_banner .abt_banner_content .slider_bottom h3 {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: 500;
  color: #fff;
}
.btry_banner .abt_banner_content .slider_bottom p {
  font-size: clamp(12px, 0.72916vw, 14px);
  font-weight: 500;
  color: #fff;
}
.btry_banner .abt_banner_content .slider_bottom p span {
  color: #0FC852;
}

.btry_sec_1st {
  position: relative;
  padding-top: 60px;
}
@media (max-width: 1199px) {
  .btry_sec_1st {
    padding-top: 40px;
  }
}
@media (max-width: 991px) {
  .btry_sec_1st {
    padding-top: 50px;
  }
}
.btry_sec_1st h1 {
  font-size: clamp(30px, 3.125vw, 60px);
  font-weight: normal;
  color: #000;
  text-align: end;
}
.btry_sec_1st p {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: normal;
  color: #000;
  text-align: end;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .btry_sec_1st p {
    margin-bottom: 20px;
  }
}
.btry_sec_1st .img1 img {
  -o-object-fit: cover;
     object-fit: cover;
}

.btry_sec_2nd {
  position: relative;
  padding-bottom: 60px;
}
.btry_sec_2nd h2 {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: normal;
  color: #000;
}
.btry_sec_2nd h3 {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: normal;
  color: #0FC852;
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .btry_sec_2nd h3 {
    margin-bottom: 30px;
  }
}
.btry_sec_2nd .box_item {
  border-radius: 12px;
  padding: 80px 40px;
  height: 440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media (max-width: 1199px) {
  .btry_sec_2nd .box_item {
    height: 350px;
  }
}
.btry_sec_2nd .box_item.lite_green {
  background-color: #E7F9EE;
  overflow: hidden;
  position: relative;
}
.btry_sec_2nd .box_item.half_white {
  background-color: #F7F7F7;
  overflow: hidden;
  position: relative;
}
.btry_sec_2nd .box_item.dark_grey {
  background-color: #A5B9C8;
  overflow: hidden;
  position: relative;
}
.btry_sec_2nd .box_item.lite_blue {
  background-color: #F1FAFF;
  overflow: hidden;
  position: relative;
}
.btry_sec_2nd .box_item::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0px;
  left: 0px;
  opacity: 0;
  background: #2c9753;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.btry_sec_2nd .box_item:hover h2 {
  color: #fff;
}
.btry_sec_2nd .box_item:hover p {
  color: #fff;
}
.btry_sec_2nd .box_item:hover::before {
  -webkit-transform: scale(42);
          transform: scale(42);
  opacity: 1;
}
.btry_sec_2nd .box_item h2 {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: normal;
  color: #000;
  position: relative;
}
.btry_sec_2nd .box_item p {
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: normal;
  color: #000;
  position: relative;
}
.btry_sec_2nd .box_item.box1 img {
  width: 62px;
  height: auto;
  position: relative;
  z-index: 2;
}
.btry_sec_2nd .box_item.box2 img {
  width: 48px;
  height: auto;
  position: relative;
  z-index: 2;
}
.btry_sec_2nd .box_item.box3 img {
  width: 85px;
  height: auto;
  position: relative;
  z-index: 2;
}
.btry_sec_2nd .box_item.box4 img {
  width: 63px;
  height: auto;
  position: relative;
  z-index: 2;
}

.title_on_img {
  position: absolute;
  left: 5vw;
  bottom: 5vw;
}
.title_on_img h4 {
  color: #FFA600;
  font-weight: bold;
  font-size: clamp(20px, 1.5625vw, 30px);
  position: relative;
}
.title_on_img h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 27px;
  height: 3px;
  background-color: #FFA600;
  border-radius: 6px;
}
.title_on_img h3 {
  color: #fff;
  font-weight: 400;
  font-size: clamp(20px, 1.5625vw, 30px);
  margin-bottom: 0;
}
.title_on_img p {
  color: #fff;
  font-weight: 400;
  font-size: clamp(16px, 1.0416vw, 20px);
}

@media (max-width: 991px) {
  .small_deveice img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.scooter_btry {
  position: relative;
  height: 415px;
  width: 100%;
}
@media (max-width: 991px) {
  .scooter_btry {
    width: 97%;
    left: 1.5%;
    height: 333px;
  }
}
@media (max-width: 767px) {
  .scooter_btry {
    height: 253px;
  }
}
@media (max-width: 576px) {
  .scooter_btry {
    width: 95%;
    left: 2.5%;
  }
}
.scooter_btry .img_content {
  position: absolute;
  left: 30px;
  top: 20px;
  z-index: 1;
  color: #fff;
  text-align: start;
  width: 48%;
}
@media (max-width: 576px) {
  .scooter_btry .img_content {
    width: 90%;
  }
}
.scooter_btry .img_content p {
  color: #fff;
  text-align: start;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 300;
}
@media (max-width: 576px) {
  .scooter_btry .img_content p {
    font-size: clamp(12px, 0.72916vw, 14px);
  }
}
.scooter_btry img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .scooter_btry img {
    height: auto;
  }
}
@media (max-width: 576px) {
  .scooter_btry img {
    height: 100%;
  }
}
.scooter_btry .img2 {
  display: none;
}
.scooter_btry:hover .img2 {
  display: block;
}

.battter_tech img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.image_title {
  position: absolute;
  z-index: 1;
}
.image_title.img1_wrp {
  right: 7%;
  top: 12%;
}
.image_title.img2_wrp {
  left: 35px;
  top: 25px;
}
.image_title.img3_wrp {
  right: 35px;
  top: 25px;
}
.image_title.img4_wrp {
  left: 35px;
  bottom: 60px;
}
.image_title h6 {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 400;
  color: #0FC852;
}
.image_title h6.f28 {
  font-size: clamp(18px, 1.4583vw, 28px);
}
.image_title h2 {
  font-size: clamp(22px, 1.875vw, 36px);
  font-weight: 300;
  color: white;
}
.image_title h2 strong {
  font-weight: bold;
}

/*Specification slider*/
   .specifi_slider .slider-content .spec-subtitle{
        font-weight:800 !important;
        font-size:clamp(24px, 2.1875vw, 40px);
    }
 
        @media (max-width: 991px) {
          .specifi_slider {
            height: 700px;
            position: relative;
          }
          .specifi_slider .slider_txt{
            transform: translateY(-50%);
          }
        }
        @media (max-width: 767px) {
          .specifi_slider {
            height: 500px;
            position: relative;
          }
          .specifi_slider .slider_txt{
            top:55%;
          }
        
        }
        @media (max-width: 576px) {
          .specifi_slider {
            height: 350px;
            position: relative;
          }
          /*  .btnGroup{*/
          /*    display:flex;*/
          /*    align-items:center;*/
          /*}*/
          .btnGroup a{
              width:190px !important;
          }
          .btnGroup a:first-child{
              margin-right:15px;
          }
        }
        @media (max-width: 991px) {
          .specifi_slider .swiper-slide {
            min-height: 700px !important;
          }
        }
        @media (max-width: 767px) {
          .specifi_slider .swiper-slide {
            min-height: 500px !important;
          }
        }
        @media (max-width: 576px) {
          .specifi_slider .swiper-slide {
            min-height: 350px !important;
          }
        }
        /*@media (max-width: 576px) {*/
        /*  .specifi_slider .slider_txt {*/
        /*    top: 65%;*/
        /*  }*/
        /*}*/
        @media (max-width: 767px) {
          .specifi_slider a.btn_1 {
            padding: 10px 20px;
          }
        }
        @media (max-width: 767px) {
          .specifi_slider a.btn_2 {
            padding: 10px 20px;
          }
        }
        @media (max-width: 767px) {
          .specifi_slider .slider-content .slide-subtitle {
            width: 65% !important;
          }
        }
        @media (max-width: 576px) {
          .specifi_slider .slider-content .slide-heading.spec_heading {
            display: none;
          }
         
        }
        @media (max-width:1199px){
            .picked_scooter{
                padding-top:80px;
            }
        }

.extended-width-container {
    padding-right: calc(var(--bs-gutter-x)* .1);
    padding-left: calc(var(--bs-gutter-x)* .1);
}
}