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

@font-face {
  font-family: Montserrat-Black;
  src: url("../montserrat-font/Montserrat-Black.ttf");
}

@font-face {
  font-family: Montserrat-Medium;
  src: url("../montserrat-font/Montserrat-Medium.ttf");
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url("../montserrat-font/Montserrat-SemiBold.ttf");
}

@font-face {
  font-family: Alatsi-Regular;
  src: url("../alatsi-font/Alatsi-Regular.ttf");
}

@font-face {
  font-family: Montserrat-Light;
  src: url("../montserrat-font/Montserrat-Light.ttf");
}

@font-face {
  font-family: Montserrat-Regular;
  src: url("../montserrat-font/Montserrat-Regular.ttf");
}

@font-face {
  font-family: Inter-Medium;
  src: url("../inter-font/Inter-Medium.otf");
}

@font-face {
  font-family: Inter-Regular;
  src: url("../inter-font/Inter-Regular.otf");
}

:root {
  --linear-color-one: #9ec30c;
  --linear-color-two: #40e193;
  --primary-color: #d9d9d9;
  --secondary-color: #000000;
  --text-color: #ffffff;
  --banner-color: #f5f5f5;
  --banner-bg: #464040;
  --btn-estimate-color: #b9e310;
  --red-text-color: #e33131;
  --swiper-navigation-size: 21px;
  --swiper-theme-color: white;
}

html,
body {
  overflow-x: hidden;
}


/*
===================
Common Classes
===================
*/
.container {
  max-width: 1242px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
  text-decoration: none;
}

span {
  display: inline-block;
}

ul {
  list-style-type: none;
}

.col-33 {
  width: 33.33%;
  padding: 0 15px;
}

.col-033 {
  width: 33.33%;
  padding: 0 15px;
}

.col-5,
.col-6,
.col-50 {
  width: 50%;
  padding: 0 15px;
}

.col-05 {
  width: 50%;
  padding: 0 15px;
}

.col-25 {
  width: 25%;
  padding: 0 15px;
}

.col-20 {
  width: 20%;
  padding: 0 15px;
}

.col-3,
.col-03,
.col-30 {
  width: 30%;
  padding: 0 15px;
}

.col-07,
.col-70 {
  width: 70%;
  padding: 0 15px;
}

.col-16 {
  width: 16%;
  padding: 0 15px;
}

.col-34 {
  width: 34%;
  padding: 0 15px;
}

.col-35 {
  width: 35.4%;
  padding: 0 15px;
}

.col-40 {
  width: 40%;
  padding: 0 15px;
}

.col-64 {
  width: 64.6%;
  padding: 0 15px;
}

.col-55,
.col-055 {
  width: 55%;
  padding: 0 15px;
}

.col-45,
.col-045 {
  width: 45%;
  padding: 0 15px;
}

.col-46 {
  width: 46.9%;
  padding: 0 15px;
}

.col-39 {
  width: 39.3%;
  padding: 0 15px;
}

.col-13 {
  width: 13.8%;
  padding: 0 15px;
}

.col-60 {
  width: 60%;
  padding: 0 15px;
}

.col-10 {
  width: 100%;
  padding: 0 15px;
}

/*
===================
Navbar Section
===================
*/
.main-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.navbar {
  min-height: inherit;
}

.hdr-top-wrpr {
  width: 100%;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  padding: 10px 0;
}

.hdr-top-wrpr-inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hdr-top-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hdr-left-item {
  position: relative;
  padding-right: 40px;
}

.hdr-left-item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0px;
  width: 3px;
  height: 100%;
  background-color: var(--text-color);
  /* height: 25px; */
}

.contact-email {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact-email > span {
  font-size: 15px;
  font-family: Montserrat-Medium;
  color: var(--text-color);
  padding-left: 11px;
}

.hdr-cont-item {
  padding-left: 22px;
}

.contact-address {
  display: flex;
  align-items: center;
  text-align: center;
}

.contact-address > span {
  font-size: 15px;
  font-family: Montserrat-Medium;
  color: var(--text-color);
  line-height: 25px;
  padding-left: 7px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 22px;
}

.social-tweet,
.social-link {
  padding-left: 11px;
}

.language-selector {
  display: flex;
  align-items: center;
}

.language-selector > span {
  font-size: 15px;
  font-family: Montserrat-Medium;
  color: var(--text-color);
  line-height: 25px;
  padding-right: 8px;
}

/* header bttm wrpr starts */

.hdr-bttm-wrpr {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.5);
  /* backdrop-filter: blur(10px); */
  position: relative;
  z-index: 1000;
}

.hdr-bttm-wrpr-inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  width: 211px;
  height: 63px;
  z-index: 10000;
  position: relative;
}

.nav-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Desktop Navigation */
.nav-collapse {
  display: flex;
  align-items: center;
  flex-grow: 2;
}

.nav-collapse ul {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.nav-collapse ul li {
  margin: 0 26px;
}

.nav-collapse ul li a {
  font-size: 18px;
  font-family: Montserrat-Medium;
  color: var(--text-color);
  transition: all 0.3s ease;
  position: relative;
}

.nav-collapse ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  transition: width 0.3s ease;
}

.nav-collapse ul li a:hover::after {
  width: 100%;
}

.nav-collapse ul li a:hover {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-btn a {
  transition: transform 0.3s ease;
}

.nav-btn a:hover {
  transform: scale(1.1);
}

.main-btn {
  padding: 9px 27px;
  color: var(--text-color);
  font-size: 20px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  font-family: Alatsi-Regular;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Hamburger Menu */
.nav-toggler {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 10000;
  position: relative;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.nav-toggler span,
.nav-toggler::before,
.nav-toggler::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;

  background: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggler::before {
  position: absolute;
  top: 0;
}

.nav-toggler::after {
  position: absolute;
  bottom: 0;
}

.nav-toggler.active::before {
  transform: rotate(45deg) translate(0, 11px);
}

.nav-toggler.active span {
  opacity: 0;
}

.nav-toggler.active::after {
  transform: rotate(-45deg) translate(0, -11px);
}

/* Sidebar Styles */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: var(--sidebar-width);
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.98),
    rgba(40, 40, 40, 0.98)
  );
  backdrop-filter: blur(20px);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

.sidebar-nav {
  list-style: none;
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-nav li {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
}

.sidebar.active .sidebar-nav li {
  opacity: 1;
  transform: translateX(0);
}

.sidebar.active .sidebar-nav li:nth-child(1) {
  transition-delay: 0.1s;
}

.sidebar.active .sidebar-nav li:nth-child(2) {
  transition-delay: 0.2s;
}

.sidebar.active .sidebar-nav li:nth-child(3) {
  transition-delay: 0.3s;
}

.sidebar.active .sidebar-nav li:nth-child(4) {
  transition-delay: 0.4s;
}

.sidebar.active .sidebar-nav li:nth-child(5) {
  transition-delay: 0.5s;
}

.sidebar-nav a {
  display: block;
  color: var(--text-color);
  text-decoration: none;
  font-size: 24px;
  font-family: Montserrat-Medium;
  padding: 15px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  transition: left 0.3s ease;
  z-index: -1;
}

/* .sidebar-nav a:hover::before {
  left: 0;
}

.sidebar-nav a:hover {
  color: white;
  transform: translateX(10px);
} */

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.sidebar.active .sidebar-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

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

.sidebar-icons a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-icons a:hover {
  background: linear-gradient(
    135deg,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  transform: scale(1.1);
}

.sidebar .main-btn {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 20px;
  padding: 15px;
}

/* Close button */
.sidebar-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.sidebar-close::before,
.sidebar-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 2px;
  background: var(--text-color);
  border-radius: 1px;
}

.sidebar-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sidebar-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*
===================
Banner section
===================
*/
.banner-section {
  min-height: 750px;
  display: flex;
  justify-content: center;
  align-items: start;
  background: no-repeat center;
  background-size: cover;
  height: 100%;
  position: relative;
  padding: 260px 0 169px;
}

.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.1),
    rgba(0, 0, 0, 1)
  );
  z-index: 2;
}

.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-cont {
  position: relative;
  z-index: 3;
}

.bef-aft {
  display: inline-block;
  font-size: 24px;
  font-family: Montserrat-Medium;
  position: relative;
  display: inline-block;
  color: var(--text-color);
  padding-inline: 25px;
  margin-bottom: 10px;
}

.bef-aft::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.bef-aft::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.banner-cont > h1 {
  font-size: 66px;
  font-family: Alatsi-Regular;
  color: var(--text-color);
  max-width: 663px;
  margin-bottom: 20px;
}

.banner-cont > h1 > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.banner-cont > p {
  font-size: 29px;
  font-family: Alatsi-Regular;
  color: var(--text-color);
  margin-bottom: 46px;
  max-width: 678px;
}

.banner-btn {
  padding: 12px 53px;
  font-family: Alatsi-Regular;
  color: var(--text-color);
  font-size: 24px;
  border-radius: 15px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  transition: all 0.3s ease;
}

.banner-btn:hover {
  box-shadow: 0 0 15px rgba(158, 195, 12, 0.4), 0 0 30px rgba(64, 225, 147, 0.3);
  transform: translateY(-2px);
}

/*
===================
Aboutus section
===================
*/

.aboutus-section {
  min-height: 734px;
  position: relative;
  background: no-repeat center;
  background-size: cover;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 87px 0 107px;
}

.aboutus-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aboutus-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutus-row {
  align-items: center;
}

.aboutus-img-wrpr {
  margin: 0 auto;
  position: relative;
  max-width: 436px;
  min-height: 410px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutus-leftwrp {
  position: absolute;
  top: 0;
  left: 0;
}

.aboutus-leftwrp > img {
  width: 104px;
  height: 80px;
  object-fit: cover;
}

.aboutus-centerwrp {
  display: flex;
  align-items: center;
  position: absolute;
  top: -41px;
  right: 78px;
}

.aboutus-centerwrp > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
  font-family: Montserrat-Medium;
  font-size: 56px;
}

.aboutus-centerwrp > p {
  color: var(--secondary-color);
  font-family: Montserrat-Medium;
  font-size: 22px;
}

.aboutus-img-top {
  position: relative;
  max-width: 391px;
}

.about-main-img {
  width: 100%;
  border-radius: 10px;
}

.aboutus-img-top::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 20px;
  left: 20px;
  border-radius: 10px;
  background: linear-gradient(
    to top,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  z-index: -1;
}

.play-btn {
  position: absolute;
  top: 100%;
  left: 66%;
  transform: translate(-50%, -50%);
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.aboutus-cont-wrpr {
  max-width: 100%;
  margin-left: 74px;
}

.play-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 61px;
  height: 61px;
  background-color: var(--text-color);
  border-radius: 50%;
}

.aboutus-bef-aft {
  display: inline-block;
  font-size: 24px;
  font-family: Montserrat-Medium;
  position: relative;
  display: inline-block;
  color: var(--secondary-color);
  padding-inline: 25px;
  margin-bottom: 36px;
}

.aboutus-bef-aft::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.aboutus-bef-aft::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.aboutus-cont-wrpr > h2 {
  font-size: 35px;
  font-family: Montserrat-Medium;
  margin-bottom: 32px;
}

.aboutus-cont-wrpr > p {
  font-size: 18px;
  font-family: Montserrat-Light;
  line-height: 25px;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.aboutus-cont-wrpr > h2 > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-item img {
  width: 16px;
  height: 16px;
  object-fit: cover;
}

.feature-item span {
  font-family: Montserrat-Medium;
  color: var(--secondary-color);
  margin-left: 15px;
}

.dots {
  margin-bottom: 23px;
}

.aboutus-btn {
  padding: 14px 35px;
  font-family: Montserrat-SemiBold;
  color: var(--text-color);
  font-size: 18px;
  border-radius: 15px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.aboutus-btn:hover {
  box-shadow: 0 0 15px rgba(158, 195, 12, 0.4), 0 0 30px rgba(64, 225, 147, 0.3);
  transform: translateY(-2px);
}

/*
===========================
What We’re Offering Section
===========================
*/
.offering-section {
  /* min-height: 1030px; */
  padding: 83px 0 105px 0;
}

.offering-cards-cont {
  margin-bottom: 105px;
}

.offering-bef-aft {
  display: inline-block;
  font-size: 24px;
  font-family: Montserrat-Medium;
  position: relative;
  display: inline-block;
  color: var(--secondary-color);
  padding-inline: 25px;
  margin-bottom: 49px;
}

.offering-bef-aft::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.offering-bef-aft::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.offering-cont {
  text-align: center;
  margin-bottom: 61px;
}

.offering-cont > h2 {
  font-size: 40px;
  font-family: Montserrat-Medium;
  color: var(--secondary-color);
  margin-bottom: 23px;
}

.offering-cont > h2 > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.offering-cont > p {
  font-size: 18px;
  font-family: Montserrat-Regular;
  color: var(--secondary-color);
  /* margin-bottom: 23px; */
}

.cards-row {
  min-height: 421px;
}

.align-special {
  align-self: end;
}

/* dark card */
.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 208px;
  height: 208px;
  overflow: hidden;
  top: -84px;
  right: -65px;
  background: linear-gradient(
    to left,
    var(--linear-color-two),
    var(--linear-color-one)
  );
  border-radius: 50%;
}

.card1 {
  display: block;
  position: relative;
  max-width: 278px;
  min-height: 330px;
  background-color: var(--secondary-color);
  border-radius: 15px;
  padding: 32px 24px;
  /* margin: 12px; */
  margin: 0 auto 30px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  box-shadow: 3px 6px 12px gainsboro;
}

.card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(
    to left,
    var(--linear-color-two),
    var(--linear-color-one)
  );
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.card1:hover > p,
.card1:hover > h2,
.card1:hover > span {
  color: black;
}

.card1:hover > .header-anch {
  background: #000000;
}

.card1:hover:before {
  transform: scale(32);
}

.card1:hover > .go-corner {
  background: none;
}

.img-abs {
  height: 56px;
  width: 56px;
  object-fit: cover;
  position: relative;
  top: 32px;
  left: -27px;
}

.header-main {
  font-size: 72px;
  font-family: Montserrat-Medium;
  color: var(--linear-color-two);
  margin-bottom: 20px;
  display: inline-block;
}

.header {
  font-size: 19px;
  font-family: Montserrat-Medium;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.header-para {
  font-size: 12px;
  font-family: Montserrat-Regular;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 20px;
}

.header-anch {
  /* text-decoration: none; */
  padding: 7px 11px;
  font-family: Montserrat-Medium;
  border-radius: 10px;
  color: var(--primary-color);
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  transition: all 0.3s ease;
}

.header-anch:hover {
  box-shadow: 0 0 15px rgba(158, 195, 12, 0.4), 0 0 30px rgba(64, 225, 147, 0.3);
  transform: translateY(-2px);
}

/* white card */
.card2 {
  display: block;
  position: relative;
  max-width: 278px;
  min-height: 330px;
  background-color: var(--text-color);
  border-radius: 15px;
  padding: 32px 24px;
  margin: 0 auto 30px;
  /* margin: 12px; */
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  box-shadow: 3px 6px 12px gainsboro;
}

.card2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(
    to left,
    var(--linear-color-two),
    var(--linear-color-one)
  );
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.card2:hover > p,
.card2:hover > h2,
.card2:hover > span {
  color: black;
}

.card2:hover > .header-anch {
  background: #000000;
}

.card2:hover:before {
  transform: scale(32);
}

.card2:hover > .go-corner {
  background: none;
}

.header-dark {
  font-size: 20px;
  font-family: Montserrat-Medium;
  color: var(--secondary-color);
  margin-bottom: 18px;
}

.header-para-dark {
  font-size: 12px;
  font-family: Montserrat-Regular;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 20px;
}

/* offering slider cards section */
.offering-cards-slider {
  display: none;
}

/* offering button */
.offering-btn-part {
  text-align: center;
}

.offering-btn {
  padding: 12px 38px;
  font-family: Alatsi-Regular;
  color: var(--text-color);
  font-size: 24px;
  border-radius: 15px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  transition: all 0.3s ease;
}

.offering-btn:hover {
  box-shadow: 0 0 15px rgba(158, 195, 12, 0.4), 0 0 30px rgba(64, 225, 147, 0.3);
  transform: translateY(-2px);
}

/*
================
Counter Section
================
*/
.stats-section {
  min-height: 270px;
  padding: 87px 0 103px 0;
  position: relative;
  background: no-repeat center;
  background-size: cover;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.stats-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-bef-aft {
  align-items: center;
  position: relative;
}

.stat-bef-aft::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 73px;
  background-color: var(--linear-color-two);
}

.stat-end {
  align-items: center;
  position: relative;
}

.stat-icon {
  width: 80px;
  height: auto;
}

.stat-box > h2 {
  font-size: 48px;
  font-family: Montserrat-SemiBold;
  color: var(--text-color);
}

.stat-box > p {
  font-size: 18px;
  font-family: Montserrat-Regular;
  color: var(--text-color);
}

/*
=====================
Why Choose Us Section
=====================
*/

.why-choose-us-section {
  min-height: 708px;
  position: relative;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 96px 0 114px;
}

.why-choose-us-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: whitesmoke;
  z-index: -1;
}

.why-choose-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-us-bef-aft {
  display: inline-block;
  font-size: 24px;
  font-family: Montserrat-Medium;
  position: relative;
  color: var(--secondary-color);
  padding-inline: 25px;
  margin-bottom: 49px;
}

.why-choose-us-bef-aft::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.why-choose-us-bef-aft::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.why-choose-us-cont > h2 {
  font-size: 35px;
  font-family: Montserrat-Medium;
  color: var(--secondary-color);
  margin-bottom: 43px;
}

.why-choose-us-cont > h2 > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.why-choose-us-cont > p {
  font-size: 20px;
  font-family: Montserrat-Light;
  color: var(--secondary-color);
  line-height: 30px;
  margin-bottom: 38px;
}

.about-us-play-link {
  position: relative;
  display: flex;
  align-items: center;
}

.play-icon > img {
  width: 71px;
  height: 71px;
  object-fit: cover;
}

.play-text {
  font-size: 20px;
  font-family: Montserrat-SemiBold;
  text-transform: uppercase;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
  margin-left: 26px;
}

.block-row {
  min-height: 473px;
}

.block-col-highlight {
  align-self: end;
}

.why-choose-us-support {
  max-width: 220px;
  min-height: 209px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 5px 10px 10px gainsboro;
  text-align: center;
  padding: 37px 0 30px 0;
}

.why-choose-us-support,
.why-choose-us-eco,
.why-choose-us-easy-book,
.why-choose-us-ev-experts {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* 
.why-choose-us-support:hover,
.why-choose-us-eco:hover,
.why-choose-us-easy-book:hover,
.why-choose-us-ev-experts:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
} */

.why-choose-us-support > img {
  margin-bottom: 11px;
}

.why-choose-us-support > h4 {
  font-family: Montserrat-SemiBold;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color);
  margin-bottom: 4px;
}

.why-choose-us-support > p {
  font-family: Montserrat-Medium;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color);
}

.why-choose-us-eco {
  max-width: 220px;
  min-height: 209px;
  background-color: var(--text-color);
  border-radius: 10px;
  box-shadow: 5px 0 10px gainsboro;
  text-align: center;
  padding: 36px 0 24px 0;
}

.why-choose-us-eco > img {
  margin-bottom: 11px;
}

.why-choose-us-eco > h4 {
  font-family: Montserrat-SemiBold;
  font-size: 18px;
  line-height: 30px;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.why-choose-us-eco > p {
  font-family: Montserrat-Medium;
  font-size: 14px;
  line-height: 18px;
  color: var(--secondary-color);
}

.why-choose-us-easy-book {
  max-width: 220px;
  min-height: 209px;
  background-color: var(--text-color);
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 5px 0 10px gainsboro;
  padding: 37px 0 32px 0;
  text-align: center;
}

.why-choose-us-easy-book > img {
  margin-bottom: 11px;
}

.why-choose-us-easy-book > h4 {
  font-family: Montserrat-SemiBold;
  font-size: 18px;
  line-height: 30px;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.why-choose-us-easy-book > p {
  font-family: Montserrat-Medium;
  font-size: 14px;
  line-height: 18px;
  color: var(--secondary-color);
}

.why-choose-us-ev-experts {
  max-width: 220px;
  min-height: 209px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 10px;
  box-shadow: 5px 10px 10px gainsboro;
  padding: 34px 0 32px 0;
  text-align: center;
}

.why-choose-us-ev-experts > img {
  margin-bottom: 11px;
}

.why-choose-us-ev-experts > h4 {
  font-family: Montserrat-SemiBold;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color);
  margin-bottom: 4px;
}

.why-choose-us-ev-experts > p {
  font-family: Montserrat-Medium;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color);
}

/*
===================
Appointment Section
===================
*/
.appointment-section {
  min-height: 679px;
  position: relative;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.appointment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 64, 64, 0.9);
  z-index: 2;
}

.appointment-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.appointment-cont {
  position: relative;
  z-index: 3;
}

.appointment-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appointment-cont > h2 {
  font-size: 36px;
  font-family: Montserrat-SemiBold;
  color: var(--text-color);
  margin-bottom: 22px;
}

.appointment-cont > h2 > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.appointment-cont > p {
  font-size: 16px;
  font-family: Montserrat-Regular;
  color: var(--text-color);
  line-height: 22px;
  margin-bottom: 45px;
}

.col-2 {
  width: 20%;
  padding: 0 15px;
}

.col-8 {
  width: 80%;
  padding: 0 15px;
}

.service-block-row {
  align-items: center;
}

.service-block-cont,
.details-block-cont {
  margin-bottom: 32px;
}

.service-main-text {
  max-width: 259px;
}

.service-block-cont > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
  font-size: 18px;
  font-family: Montserrat-SemiBold;
  line-height: 25px;
  margin-bottom: 2px;
}

.service-block-cont > p {
  font-size: 16px;
  font-family: Montserrat-Regular;
  color: var(--text-color);
  line-height: 18px;
}

.service-block-img {
  position: relative;
}

.service-block-img > img {
  width: 89px;
  height: 89px;
  object-fit: cover;
}

.service-block-img::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 44px;
  bottom: -20px;
  left: 44px;
  background-color: var(--text-color);
}

.details-block-row {
  align-items: center;
}

.details-block-cont > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
  font-size: 18px;
  font-family: Montserrat-SemiBold;
  line-height: 25px;
  margin-bottom: 2px;
}

.details-block-cont > p {
  font-size: 16px;
  font-family: Montserrat-Regular;
  color: var(--text-color);
  line-height: 18px;
}

.details-block-img {
  position: relative;
}

.details-block-img > img {
  width: 89px;
  height: 89px;
  object-fit: cover;
}

.details-block-img-without > img {
  width: 89px;
  height: 89px;
  object-fit: cover;
}

.details-block-img::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 44px;
  bottom: -20px;
  left: 44px;
  background-color: var(--text-color);
}

.book-block-row {
  align-items: center;
}

.book-block-cont > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
  font-size: 18px;
  font-family: Montserrat-SemiBold;
  line-height: 25px;
  margin-bottom: 2px;
}

.book-block-cont > p {
  font-size: 16px;
  font-family: Montserrat-Regular;
  color: var(--text-color);
  line-height: 18px;
}

.appointment-row {
  align-items: center;
}

.appointment-form {
  position: relative;
  z-index: 3;
  top: 42px;
  background: #fff;
  width: 100%;
  max-width: 586px;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.appointment-form h3 {
  font-size: 30px;
  font-family: Montserrat-Medium;
  margin-bottom: 11px;
}

.bottom-line-form {
  width: 107px;
  height: 3px;
  margin-bottom: 32px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
}

/* Form Controls */
.form-cont {
  margin-bottom: 27px;
  background: var(--banner-color);
  display: flex;
  align-items: center;
  border-radius: 15px;
}

.form-cont input {
  width: 100%;
  padding: 10px 15px;
  font-size: 14px;
  height: 52px;
  background: transparent;
  outline: none;
  border: none;
}

.form-cont img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}
/* Brand Section */
.brand-section {
  justify-content: space-between;
}

.brand-select {
  width: 100%;
  padding: 10px 15px;
  font-size: 14px;
  height: 52px;
  border: none;
  outline: none;
  background: transparent;
  appearance: none;
}

/* Radio Section */
.radio-section > p {
  font-size: 15px;
  font-family: Montserrat-Medium;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.radio-grp {
  display: flex;
  align-items: center;
}

.radio-grp-one {
  margin-right: 20px;
}

.radio-grp-one > label {
  font-family: Montserrat-Medium;
  margin-bottom: 15px;
}

.radio-grp-two > label {
  font-family: Montserrat-Medium;
  margin-bottom: 15px;
}

.radio-grp input[type="radio"] {
  /* margin-right: 5px; */
  accent-color: #9acd32;
}

/* Buttons */
.btn-estimate button {
  width: 100%;
  padding: 10px;
  border: none;
  background: var(--btn-estimate-color);
  border-radius: 15px;
  font-size: 15px;
  height: 52px;
  transition: all 0.3s ease;
}

.btn-estimate:hover {
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(158, 195, 12, 0.4), 0 0 30px rgba(64, 225, 147, 0.3);
  transform: translateY(-2px);
}

.main-submit {
  margin: 45px 0 32px 0;
}

.main-submit button,
.main-submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 16px;
  font-family: Montserrat-Medium;
  height: 46px;
  transition: all 0.3s ease;
}

.main-submit-btn:hover {
  box-shadow: 0 0 15px rgba(158, 195, 12, 0.4), 0 0 30px rgba(64, 225, 147, 0.3);
  transform: translateY(-2px);
}

/* Note Text */
.appointment-form p {
  font-size: 14px;
  font-family: Montserrat-Regular;
}

.appointment-form p > span {
  color: #f44336;
}

/*
====================
How We Works Section
====================
*/
.process-section {
  min-height: 812px;
  padding-top: 103px;
  position: relative;
  background: no-repeat center;
  background-size: cover;
  height: 100%;
}

.process-section-img {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.process-section-img > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.how-we-work-main-cont {
  text-align: center;
  margin-bottom: 74px;
  position: relative;
}

/* .how-we-work-main-cont::before {
    content: "";
    position: absolute;
    background: url(../assets/Ellipse\ 18.png);
    width: 591px;
    height: 236px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    left: 37%;
    top: -95%;
} */

.how-we-work-main-cont::after {
  content: "";
  position: absolute;
  background: url(../assets/Line\ 1.png);
  width: 810px;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  left: 184px;
  top: 272px;
}

.how-we-work-bef-aft {
  display: inline-block;
  font-size: 24px;
  font-family: Montserrat-Medium;
  position: relative;
  color: var(--secondary-color);
  padding-inline: 25px;
  margin-bottom: 49px;
}

.how-we-work-bef-aft::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.how-we-work-bef-aft::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.how-we-work-main-cont > h2 {
  font-size: 35px;
  font-family: Montserrat-Medium;
  color: var(--secondary-color);
  padding-inline: 25px;
  margin-bottom: 17px;
}

.how-we-work-thin-line {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  height: 3px;
  width: 91px;
  margin: 0 auto;
}

.how-we-work-steps {
  min-height: 400px;
}

.step {
  min-height: 344px;
  text-align: center;
}

.process-block {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.process-block:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.process-block {
  width: 144px;
  height: 144px;
  border: 2px dashed #7ed321;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 12px;
  margin: 0 auto;
  margin-bottom: 38px;
  background: #fff;
}

.process-inner-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: -27px;
  right: -26px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-inner-circle > span {
  position: relative;
  top: 5px;
  left: -6px;
  font-size: 30px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
  font-family: Montserrat-SemiBold;
}

.process-inner-block {
  width: 128px;
  height: 128px;
  background-color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step > h4 {
  font-size: 25px;
  font-family: Montserrat-Medium;
  margin-bottom: 28px;
}

.step > p {
  font-family: Montserrat-Medium;
  margin-bottom: 28px;
}

.spl {
  align-self: end;
}

/*
========================
charging station section
========================
*/
.station-section {
  min-height: 496px;
  position: relative;
  background: no-repeat center;
  background-size: cover;
  height: 100%;
  padding: 67px 0 76px 0;
}

.station-banner-img-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.station-banner-img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.station-section-cont {
  position: relative;
  z-index: 3;
}

.station-model-cont > h2 {
  font-family: Montserrat-SemiBold;
  font-size: 42px;
  color: var(--text-color);
  margin-bottom: 51px;
}

.station-form-field {
  margin-bottom: 51px;
}

.input-group {
  background-color: var(--text-color);
  border-radius: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 16px;
}

.input-group > input[type="text"] {
  color: var(--secondary-color);
  border: none;
  outline: none;
  background: transparent;
  font-size: 20px;
  font-family: Montserrat-Medium;
  width: 100%;
}

/* col-39 custom select */
.custom-select {
  position: relative;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 30px;
  overflow: hidden;
  height: 54px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 0 1px #ccc;
}

.custom-select > select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 40px 0 15px;
  font-size: 16px;
  color: #666;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 30px;
  font-family: Montserrat-Medium;
}

.custom-select .dropdown-icon {
  position: absolute;
  right: 15px;
  width: 39px;
  height: 39px;
  pointer-events: none;
}

.input-group-model {
  background-color: var(--text-color);
  border-radius: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 54px;
}

.input-group-model > input[type="text"] {
  background: transparent;
  outline: none;
  border: none;
  font-size: 20px;
  font-family: Montserrat-Medium;
  width: 100%;
}

.find-btn {
  height: 54px;
  width: 100%;
  border-radius: 30px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border: none;
  outline: none;
  color: var(--text-color);
  font-size: 20px;
  font-family: Montserrat-Medium;
  transition: all 0.3s ease;
}

.find-btn:hover {
  box-shadow: 0 0 15px rgba(158, 195, 12, 0.4), 0 0 30px rgba(64, 225, 147, 0.3);
  transform: translateY(-2px);
}

.input-group > img {
  width: 39px;
  height: 39px;
  object-fit: cover;
}

.station-model-cont > p {
  font-family: Montserrat-Medium;
  font-size: 30px;
  color: var(--text-color);
  margin-bottom: 51px;
}

.find-station {
  display: flex;
  align-items: center;
}

.find-station-block {
  width: 84px;
  height: 84px;
  border: 2px dashed var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  background: #fff;
}

.find-station-inner-circle {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.find-station-inner-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.find-station-inner-circle > span {
  font-size: 14px;
  color: var(--text-color);
  font-family: Montserrat-Regular;
}

.find-station-row {
  align-items: center;
}

.find-station p {
  font-size: 24px;
  color: var(--text-color);
  font-family: Montserrat-Medium;
}

.station-map-block {
  position: relative;
  min-height: 49px;
  background: no-repeat center;
  background-size: cover;
  height: 100%;
  max-width: 218px;
  margin-bottom: 20px;
  margin-left: auto;
}

.map-cont-banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.map-cont-banner-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.map-cont {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 11px 14px;
}

.map-cont > img {
  width: 27px;
  height: 27px;
  object-fit: cover;
}

.station-section-row {
  align-items: center;
}

.station-model-cont-img {
  margin: 0 auto;
  max-width: 390px;
  position: relative;
}

.station-model-cont-img::before {
  content: "";
  position: absolute;
  background: url(../assets/Group\ 112.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 147px;
  height: 158px;
  z-index: 1;
  left: 28px;
  top: 24px;
}

.map-cont > p {
  padding-left: 11px;
  font-size: 14px;
  font-family: Montserrat-Regular;
}

/*
=====================
Pricing Plan Section
=====================
*/
.plan-section {
  min-height: 992px;
  background: no-repeat center;
  background-size: cover;
  height: 100%;
  position: relative;
  padding: 95px 0 175px 0;
}

.plan-section-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.plan-section-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.plan-section::before {
  content: "";
  position: absolute;
  background: url(../assets/Group\ 142.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.plan-section-cont {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 32px;
}

.plan-section-bef-aft {
  display: inline-block;
  font-size: 24px;
  font-family: Montserrat-Medium;
  position: relative;
  display: inline-block;
  color: var(--secondary-color);
  padding-inline: 25px;
  margin-bottom: 45px;
}

.plan-section-bef-aft::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.plan-section-bef-aft::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.plan-section-cont > h2 {
  font-family: Montserrat-Medium;
  font-size: 35px;
}

.plan-section-cont > h2 > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.plan-section-cards-cont {
  position: relative;
  z-index: 2;
}

.alg-spl {
  align-self: end;
}

.pricing-plan-row {
  min-height: 530px;
  justify-content: center;
}

.plan-section-block {
  max-width: 381px;
  /* min-height: 482px; */
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 45px 53px 52px 45px;
}

.plan-section-block > h3 {
  font-size: 18px;
  font-family: Inter-Medium;
  color: var(--text-color);
  margin-bottom: 14px;
}

.plan-section-block > span {
  font-size: 15px;
  color: white;
  margin-bottom: 13px;
  font-family: Inter-Medium;
}

.plan-section-block > span > span {
  font-size: 40px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.plan-section-block > .design-para {
  font-size: 16px;
  font-family: Inter-Medium;
  line-height: 25px;
  color: var(--text-color);
  margin-bottom: 9px;
}

.plan-section-block > .distance-para {
  max-width: 100%;
  font-size: 12px;
  font-family: Inter-Regular;
  color: var(--text-color);
  margin-bottom: 13px;
}

.plan-section-block > h4 {
  font-size: 18px;
  font-family: Inter-Medium;
  line-height: 25px;
  color: var(--text-color);
  margin-bottom: 15px;
}

.checked-options {
  margin-bottom: 24px;
}

.check-plan-new {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
}

.check-plan-new {
  font-size: 15px;
  color: white;
  font-family: Inter-Regular;
}

.check-plan-new > span {
  margin-right: 9px;
}

.plan-btn {
  padding: 11px 26px;
  border-radius: 10px;
  font-family: Inter-Medium;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  color: var(--text-color);
  transition: all 0.3s ease;
}

.plan-btn:hover {
  box-shadow: 0 0 15px rgba(158, 195, 12, 0.4), 0 0 30px rgba(64, 225, 147, 0.3);
  transform: translateY(-2px);
}

.plan-section-block {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.plan-section-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/*
=================
Our Team Section
=================
*/
.our-team-section {
  min-height: 762px;
  position: relative;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  padding: 73px 0 48px 0;
}

/* .our-team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 64, 64, 0.9);
  z-index: 1;
} */

.our-team-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.our-team-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-team-cont {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 59px;
}

.our-team-bef-aft {
  display: inline-block;
  font-size: 24px;
  font-family: Montserrat-Medium;
  position: relative;
  display: inline-block;
  color: var(--text-color);
  padding-inline: 25px;
  margin-bottom: 33px;
}

.our-team-bef-aft::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.our-team-bef-aft::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.our-team-cont > h2 {
  font-family: Montserrat-Medium;
  font-size: 35px;
  margin-bottom: 16px;
  color: var(--text-color);
}

.our-team-cont > h2 > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.our-team-cont > p {
  font-family: Montserrat-Regular;
  font-size: 18px;
  color: var(--text-color);
}

.our-team-slider-section {
  position: relative;
  z-index: 1;
}
.swiper {
  width: 100%;
  height: 400px !important;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* max-width: 224px; */
}

.slide-block {
  width: 224px;
  /* height: 224px; */
  background-color: var(--text-color);
  border-radius: 20px;
  padding: 90px 0 23px;
  text-align: center;
  position: relative;
}

.slide-img {
  width: 154px;
  height: 154px;
  position: absolute;
  top: calc(-154px / 2);
  left: 50%;
  transform: translateX(-50%);
}

.slide-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-block > h3 {
  font-size: 20px;
  font-family: Montserrat-Medium;
  margin-bottom: 5px;
}

.slide-block > p {
  font-size: 18px;
  font-family: Montserrat-Medium;
  margin-bottom: 14px;
}

.team-connection {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 20px;
  padding: 12px 23px;
  width: 134px;
  height: 46px;
  margin: 0 auto;
}

.team-connection > ul {
  display: flex;
  align-items: center;
}

.team-connection > ul > li > a > span:nth-child(1),
.team-connection > ul > li > a > span:nth-child(2) {
  margin-right: 11px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 97%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.mySwiper .swiper-button-prev {
  left: 45%;
}

.mySwiper .swiper-button-next {
  right: 45%;
}

/*
======================
clients Review Section
======================
*/
.client-review-section {
  min-height: 580px;
  padding: 92px 0 137px 0;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  position: relative;
}

.client-row {
  align-items: center;
}

.client-logo {
  width: 100px;
  height: 100px;
}

.client-logo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-review-cont {
  min-height: 284px;
}

.client-review-cont > span {
  color: var(--text-color);
  font-family: Montserrat-Medium;
  font-size: 18px;
  margin-bottom: 7px;
}

.client-review-cont > h4 {
  color: var(--text-color);
  font-family: Montserrat-SemiBold;
  font-size: 30px;
  margin-bottom: 33px;
}

.client-review-cont > p {
  max-width: 100%;
  color: var(--text-color);
  font-family: Montserrat-Medium;
  font-size: 22px;
}

.swiper-slide {
  text-align: start;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 4px);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 5px)
  ) !important;
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 5px)
  ) !important;
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: white !important;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1) !important;
}
.swiper-pagination-bullet-active {
  width: 27px !important;
  height: 5px !important;
  border-radius: 10px !important;
}

.review-block {
  width: 514px;
  min-height: 284px;
  background-color: var(--text-color);
  padding: 20px 25px;
  border-radius: 20px;
  position: relative;
}

.review-block::after {
  content: "";
  position: absolute;
  background: url(../assets/Get\ Quote.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  right: 56px;
  top: 25px;
}

.review-img-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.review-img {
  margin-right: 22px;
}

.green-circle {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-circle > img {
  height: 80px;
  width: 80px;
  object-fit: cover;
}

.review-para > h3 {
  font-family: Montserrat-Medium;
  font-size: 20px;
  margin-bottom: 7px;
}

.review-para > p {
  font-family: Montserrat-Regular;
  font-size: 14px;
  margin-bottom: 7px;
}

.review-para > span {
  font-family: Montserrat-Regular;
  font-size: 14px;
}

.review-img-text {
  font-family: Montserrat-Regular;
  font-size: 15px;
  max-width: 100%;
  margin-bottom: 25px;
}

.review-btn {
  padding: 9px 25px;
  color: var(--text-color);
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 20px;
  font-family: Montserrat-Medium;
  transition: all 0.3s ease;
}

.review-btn:hover {
  box-shadow: 0 0 15px rgba(158, 195, 12, 0.4), 0 0 30px rgba(64, 225, 147, 0.3);
  transform: translateY(-2px);
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 97%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiperClient .swiper-button-prev {
  left: 40%;
}

.swiperClient .swiper-button-next {
  right: 40%;
}

.testimonial-section {
  position: absolute;
  left: -35px;
  bottom: -65px;
}

.testimonial-section > span {
  color: var(--text-color);
  font-family: Montserrat-SemiBold;
  font-size: 150px;
}

/*
============
FAQ Section
============
*/
.faq-section {
  min-height: 1021px;
  position: relative;
  background: no-repeat center;
  background-size: cover;
  height: 100%;
  padding: 79px 0 64px 0;
}

.faq-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.faq-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-banner-head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 57px;
}

.faq-bef-aft {
  display: inline-block;
  font-size: 24px;
  font-family: Montserrat-SemiBold;
  position: relative;
  color: var(--secondary-color);
  padding-inline: 25px;
  margin-bottom: 49px;
}

.faq-bef-aft::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.faq-bef-aft::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 50%;
}

.faq-solution-cont {
  min-height: 409px;
  position: relative;
  background: no-repeat center;
  background-size: cover;
  height: 100%;
}

.faq-solution-cont::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  border-radius: 10px;
}

.faq-solution-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.faq-solution-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.faq-solution-cont {
  margin-bottom: 34px;
}

.faq-sol-main-cont {
  position: relative;
  z-index: 2;
  padding: 81px 100px 67px 38px;
  border-radius: 10px;
}

.faq-sol-main-cont > h3 {
  font-family: Montserrat-SemiBold;
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 18px;
}

.faq-sol-main-cont > p {
  font-family: Montserrat-Medium;
  color: var(--text-color);
  margin-bottom: 31px;
}

.faq-sol-main-cont > a {
  padding: 11px 21px;
  font-size: 14px;
  font-family: Montserrat-Medium;
  color: var(--text-color);
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  border-radius: 20px;
  transition: all 0.3s ease;
}

.faq-sol-main-cont > a:hover {
  box-shadow: 0 0 15px rgba(158, 195, 12, 0.4), 0 0 30px rgba(64, 225, 147, 0.3);
  transform: translateY(-2px);
}

.faq-solution-contact-us {
  min-height: 249px;
  box-shadow: 0px 6px 33px gainsboro;
  text-align: center;
  padding: 21px 72px 26px 73px;
  border-radius: 10px;
  background-color: var(--text-color);
  position: relative;
  z-index: 1;
}

.faq-solution-contact-us > img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  margin-bottom: 19px;
}

.faq-solution-contact-us > h4 {
  font-size: 22px;
  font-family: Montserrat-Medium;
  margin-bottom: 8px;
}

.faq-solution-contact-us > p {
  font-family: Montserrat-Regular;
  font-size: 15px;
  margin-bottom: 27px;
}

.faq-solution-contact-us > a {
  padding: 9px 17px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  color: var(--text-color);
  font-size: 14px;
  font-family: Montserrat-Medium;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.faq-solution-contact-us > a:hover {
  box-shadow: 0 0 15px rgba(158, 195, 12, 0.4), 0 0 30px rgba(64, 225, 147, 0.3);
  transform: translateY(-2px);
}

.faq-accord-cont {
  min-height: 646px;
}

.faq-accord-cont > h2 {
  font-size: 35px;
  font-family: Montserrat-SemiBold;
  margin-bottom: 16px;
}

.faq-accord-cont > h2 > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.faq-accord-cont > p {
  font-family: Montserrat-Regular;
  font-size: 18px;
  margin-bottom: 23px;
}

.accordion-container {
  position: relative;
  z-index: 2;
  background: var(--text-color);
  border-radius: 12px;
}

.faq-img-wrpr {
  margin-bottom: 48px;
}

.accordion-item {
  margin-bottom: 23px;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px;
  cursor: pointer;
  box-shadow: 0px 1px 5px gainsboro;
  border: 1px solid silver;
  border-radius: 12px;
}

.accordion-header:hover {
  background-color: #f8f9fa;
}

.accordion-number {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
  font-size: 20px;
  font-family: Montserrat-Medium;
  margin-right: 12px;
  min-width: 20px;
}

.accordion-title {
  font-family: Montserrat-Medium;
  margin-right: auto;
  color: #374151;
  font-size: 20px;
}

.accordion-title:hover {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.accordion-arrow {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.accordion-arrow.rotated {
  transform: rotate(90deg);
}

.accordion-arrow > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content1,
.content2,
.content3,
.content4,
.content5 {
  display: none;
  font-size: 20px;
}

.content1 p,
.content2 p,
.content3 p,
.content4 p,
.content5 p {
  padding: 20px 10px 0;
  font-family: Montserrat-Regular;
  font-size: 20px;
}

/*
================
charging section
================
*/
.charge-section {
  min-height: 503px;
  background: no-repeat center;
  background-size: cover;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 75px 0;
}

.charge-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.charge-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.charge-banner-cont {
  max-width: 719px;
  position: relative;
  z-index: 1;
}

.charge-banner-cont-img {
  position: relative;
  top: -68px;
  z-index: 1;
  max-width: 310px;
  height: 558px;
  margin: 0 auto;
  /* margin-left: 155px; */
}

.charge-banner-cont-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.charge-station-row {
  align-items: center;
}

.charge-banner-cont > h2 {
  font-family: Montserrat-Medium;
  font-size: 43px;
  margin-bottom: 58px;
  max-width: 100%;
}

.charge-banner-cont > h2 > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.charge-socials {
  max-width: 432px;
}

.charge-socials img {
  width: 203px;
  height: 59px;
  object-fit: cover;
}

.google-play-social > a > img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.google-play-social > a > img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.app-store-social > a > img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.app-store-social > a > img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/*
==============
Footer Section
==============
*/
.main-footer-section {
  min-height: 472px;
  background: no-repeat center;
  background-size: cover;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 106px 0 71px;
}

.main-footer-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-footer-cont img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.footer-connection-cont {
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 211px;
  margin-bottom: 27px;
}

.footer-para {
  font-family: Montserrat-Regular;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 17px;
  color: var(--text-color);
}

.footer-para:hover {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.footer-social-icons {
  display: flex;
}

.footer-social-icon li:not(:last-child) {
  margin-right: 15px;
}

.footer-social-icons li a img {
  width: 42px;
  object-fit: cover;
  margin-right: 15px;
}

.service-lists li {
  margin-bottom: 10px;
}

.service-lists li a {
  font-family: Montserrat-Medium;
  font-size: 15px;
  line-height: 25px;
  color: var(--text-color);
}

.service-lists li a:hover {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.service-lists li a span {
  margin-right: 10px;
  width: 14px;
}

.service-lists li a span img {
  width: 100%;
  object-fit: cover;
}

.footer-contact {
  max-width: 299px;
}

.footer-line {
  width: 27px;
  height: 3px;
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  margin-bottom: 15px;
}

.footer-title-service {
  font-family: Montserrat-SemiBold;
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 25px;
  color: var(--text-color);
}

.contact-lists li {
  margin-bottom: 10px;
}

.contact-lists li a {
  font-family: Montserrat-Medium;
  font-size: 15px;
  line-height: 25px;
  color: var(--text-color);
}

.contact-lists li a {
  display: flex;
}

.contact-lists li a:hover {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.contact-lists li a span {
  margin-right: 10px;
  width: 22px;
  height: 22px;
}

.contact-lists li a span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-footer-para {
  font-family: Montserrat-Medium;
  font-size: 25px;
  color: var(--text-color);
  margin-bottom: 13px;
}

.email-footer-field {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.email-footer-field > input[type="email"] {
  background: transparent;
  border: none;
  outline: none;
  font-family: Montserrat-Medium;
  font-size: 16px;
  width: 100%;
}

.white-footer-line {
  height: 1px;
  width: 100%;
  background-color: var(--text-color);
  margin-bottom: 6px;
}

.checked-footer-field {
  display: flex;
}

.checked-footer-field > p {
  font-family: Montserrat-Regular;
  font-size: 14px;
  margin-left: 2px;
  color: var(--text-color);
}

.footer-btm-wrpr {
  padding: 21px 21px;
  /* min-height: 66px; */
  background-color: #000000;
  position: relative;
  z-index: 2;
}

.footer-btm-terms {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-btm-left > p {
  font-family: Montserrat-Regular;
  font-size: 20px;
  color: var(--text-color);
}

.footer-btm-left > p > span {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.ftr-strt-list {
  position: relative;
  margin-right: 31px;
}

.footer-list li a:hover {
  background: linear-gradient(
    to left,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  background-clip: text;
  color: transparent;
}

.ftr-strt-list::after {
  position: absolute;
  content: "";
  top: 0;
  right: -16px;
  width: 3px;
  height: 100%;
  background-color: var(--text-color);
}

.footer-list li a {
  font-family: Montserrat-Medium;
  font-size: 20px;
  color: var(--text-color);
}

.footer-list {
  display: flex;
}

@media screen and (max-width: 1200px) {
  .nav-collapse ul li {
    margin: 0 18px;
  }

  .stat-icon {
    width: 70px;
  }

  .stat-col {
    margin-bottom: 40px;
  }

  .aboutus-points-wrpr {
    margin-bottom: 20px;
  }

  .aboutus-bef-aft {
    font-size: 21px;
    margin-bottom: 26px;
  }

  .aboutus-cont-wrpr > h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .aboutus-cont-wrpr > p {
    font-size: 15px;
  }

  .why-choose-us-support > h4,
  .why-choose-us-eco > h4,
  .why-choose-us-easy-book > h4,
  .why-choose-us-ev-experts > h4 {
    font-size: 16px;
  }

  .why-choose-us-support > p,
  .why-choose-us-eco > p,
  .why-choose-us-easy-book > p,
  .why-choose-us-ev-experts > p {
    font-size: 11px;
  }

  .why-choose-us-bef-aft {
    font-size: 21px;
    margin-bottom: 26px;
  }

  .why-choose-us-cont > h2 {
    font-size: 29px;
    margin-bottom: 28px;
  }

  .why-choose-us-cont > p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 30px;
  }

  .about-us-play-link::after {
    width: 62px;
    height: 62px;
  }

  .play-text {
    font-size: 18px;
  }

  .appointment-cont > h2 {
    font-size: 29px;
  }

  .service-block-cont > p,
  .details-block-cont > p,
  .book-block-cont > p {
    font-size: 14px;
  }

  .how-we-work-main-cont::after {
    display: none;
    /* width: 800px;
        left: 125px; */
  }

  .step > h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .step > p {
    font-size: 12px;
  }

  .how-we-work-bef-aft {
    font-size: 21px;
    margin-bottom: 26px;
  }

  .how-we-work-main-cont > h2 {
    font-size: 29px;
  }

  .col-13 {
    width: 50%;
  }

  .input-group,
  .input-group-model {
    margin-bottom: 20px;
  }

  .station-model-cont > h2 {
    font-size: 29px;
  }

  .input-group > input[type="text"],
  .input-group-model > input[type="text"],
  .find-btn {
    font-size: 16px;
  }

  .station-model-cont > p {
    font-size: 24px;
  }

  .find-station p {
    font-size: 19px;
  }

  .stat-box > h2 {
    font-size: 43px;
  }

  .stat-box > p {
    font-size: 16px;
  }

  .plan-section-block {
    padding: 20px;
    /* margin-bottom: 30px; */
  }

  .plan-section-block > h3 {
    font-size: 15px;
  }

  .plan-section-block > span > span {
    font-size: 32px;
  }

  .plan-section-block > span {
    font-size: 13px;
  }

  .plan-section-block > .design-para {
    font-size: 14px;
    line-height: 22px;
  }

  .plan-section-block > .distance-para {
    font-size: 10px;
  }

  .plan-section-block > h4 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 11px;
  }

  .check-plan-new {
    font-size: 13px;
  }

  .plan-btn {
    padding: 9px 18px;
    font-size: 14px;
  }

  .plan-section-bef-aft {
    font-size: 21px;
    margin-bottom: 26px;
  }

  .plan-section-cont > h2 {
    font-size: 29px;
    /* margin-bottom: 28px; */
  }

  .plan-section-cont {
    margin-bottom: 80px;
  }

  .station-model-cont-img::before {
    width: 113px;
    height: 135px;
    left: 6px;
    top: 40px;
  }

  .our-team-bef-aft {
    font-size: 21px;
    margin-bottom: 26px;
  }
  .mySwiper .swiper-button-prev {
    left: 40%;
  }

  .mySwiper .swiper-button-next {
    right: 40%;
  }

  .swiperClient .swiper-button-prev {
    left: 30%;
  }

  .swiperClient .swiper-button-next {
    right: 30%;
  }

  .our-team-cont > h2 {
    font-size: 29px;
  }

  .client-review-cont > p {
    font-size: 19px;
  }

  .testimonial-section {
    bottom: -44px;
  }

  .testimonial-section > span {
    font-size: 134px;
  }

  .testimonial-section > span {
    font-size: 110px;
  }

  .faq-accord-cont > h2 {
    font-size: 29px;
  }

  .faq-accord-cont > p {
    font-size: 16px;
  }

  .accordion-header {
    padding: 16px 18px;
  }

  .accordion-title {
    font-size: 17px;
  }

  .content1 p,
  .content2 p,
  .content3 p,
  .content4 p,
  .content5 p {
    padding: 15px 10px 0;
    font-size: 17px;
  }

  .faq-sol-main-cont > a {
    padding: 11px 16px;
    font-size: 12px;
  }

  .faq-solution-contact-us > h4 {
    font-size: 19px;
  }

  .faq-solution-contact-us > p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .charge-banner-cont > h2 {
    font-size: 33px;
  }

  .charge-banner-cont-img {
    top: -68px;
    max-width: 227px;
    height: 400px;
    /* margin-left: 97px; */
  }

  .charge-socials > li > a > img {
    width: 160px;
    height: 45px;
    object-fit: cover;
  }

  .footer-title-service {
    font-size: 19px;
  }

  .service-lists li a {
    font-size: 13px;
  }

  .contact-lists li a {
    font-size: 13px;
  }

  .service-footer-para {
    font-size: 19px;
  }

  .footer-btm-left > p {
    font-size: 13px;
  }

  .footer-list li a {
    font-size: 13px;
  }

  .appointment-form h3 {
    font-size: 25px;
  }

  .col-25 {
    width: 50%;
  }

  .input-group,
  .custom-select {
    margin-bottom: 20px;
  }

  .review-block::after {
    width: 59px;
    height: 59px;
    right: 18px;
    top: 72px;
  }

  .green-circle {
    height: 80px;
    width: 80px;
  }

  .green-circle > img {
    height: 69px;
    width: 69px;
  }
}

@media screen and (max-width: 992px) {
  .hdr-left-item {
    padding-right: 5px;
  }

  .hdr-left-item::after {
    display: none;
  }

  .nav-collapse {
    display: none;
  }

  .nav-toggler {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .sidebar {
    width: 280px;
  }

  .sidebar-nav a {
    font-size: 18px;
  }

  .sidebar .main-btn {
    font-size: 16px;
    padding: 10px 10px;
  }

  .col-40 {
    width: 100%;
  }

  .col-60 {
    width: 100%;
  }

  .feature-item span {
    font-size: 14px;
  }

  .why-choose-us-cont {
    margin-bottom: 93px;
  }

  .col-6 {
    width: 100%;
  }

  .col-46,
  .col-39 {
    width: 50%;
  }

  .col-13 {
    width: 100%;
  }

  .appointment-cont {
    padding: 64px 0 142px;
  }

  .appointment-cont {
    padding-bottom: 70px;
  }

  .aboutus-cont-wrpr {
    margin-left: 0;
    margin-top: 74px;
  }

  .aboutus-img-top::before {
    top: 12px;
    left: 6px;
  }

  .process-section {
    padding-top: 136px;
  }

  .step > h4 {
    font-size: 16px;
  }

  .process-inner-circle {
    width: 56px;
    height: 56px;
  }

  .process-inner-circle > span {
    top: 0;
    left: -2px;
    font-size: 26px;
  }

  .col-64,
  .col-35 {
    width: 100%;
  }

  .station-model-cont {
    margin-bottom: 40px;
  }

  .station-model-cont-img {
    max-width: 335px;
  }

  .find-station-block {
    width: 74px;
    height: 74px;
  }

  .find-station-inner-block > img {
    width: 29px;
    height: 29px;
    object-fit: cover;
  }

  .find-station > p {
    font-size: 19px;
  }

  .plan-section-block {
    margin: 0 auto 30px;
  }

  .stat-bef-aft::after {
    display: none;
  }

  .aboutus-cont-wrpr > p {
    max-width: 100%;
  }

  .why-choose-us-cont > p {
    max-width: 100%;
  }

  .appointment-cont > p {
    max-width: 100%;
  }

  .service-main-text {
    max-width: 100%;
  }

  .faq-accord-cont > p {
    max-width: 100%;
  }

  .col-30,
  .col-70 {
    width: 100%;
  }

  .email-footer-field > input[type="email"] {
    font-size: 14px;
  }

  .footer-logo-area,
  .footer-service-area,
  .footer-quick-links,
  .footer-contact {
    margin-bottom: 30px;
  }

  .footer-para {
    max-width: 257px;
  }

  .col-3 {
    width: 50%;
  }

  .col-20 {
    width: 50%;
  }

  .col-34 {
    width: 50%;
  }

  .col-16 {
    width: 50%;
  }

  .form-cont input {
    font-size: 13px;
  }

  .card1,
  .card2 {
    /* max-width: 278px; */
    min-height: 300px;
  }

  .why-choose-us-support,
  .why-choose-us-eco,
  .why-choose-us-easy-book,
  .why-choose-us-ev-experts {
    max-width: 100%;
  }

  .map-cont {
    padding: 8px 8px;
  }

  .col-033 {
    width: 50%;
  }
  .brand-select {
    font-size: 13px;
  }
}

@media screen and (max-width: 769px) {
  .contact-address > span {
    font-size: 11px;
  }

  .contact-email > img {
    height: 18px;
    width: 18px;
  }

  .contact-address > img {
    height: 18px;
    width: 18px;
  }

  .social-tweet,
  .social-link {
    padding-left: 5px;
  }

  .social-icons {
    padding-left: 0;
  }

  .social-icons > a > img {
    height: 18px;
    width: 18px;
  }

  .contact-email > span {
    font-size: 11px;
  }

  .language-selector > span {
    font-size: 11px;
  }

  .hdr-top-wrpr-inr {
    flex-direction: column;
  }

  .bef-aft {
    font-size: 18px;
  }

  .banner-cont > h1 {
    font-size: 50px;
  }

  .banner-cont > p {
    font-size: 20px;
  }

  .banner-btn {
    padding: 10px 20px;
    font-size: 17px;
  }

  .aboutus-btn {
    padding: 11px 12px;
    font-size: 15px;
  }

  .left-points-wrpr > p {
    font-size: 14px;
  }

  .right-points-wrpr > p {
    font-size: 14px;
  }

  .offering-bef-aft {
    font-size: 21px;
    margin-bottom: 30px;
  }

  .offering-cont > h2 {
    font-size: 28px;
  }

  .offering-cont > p {
    font-size: 14px;
  }

  .go-corner {
    width: 186px;
    height: 186px;
  }

  .header-main {
    font-size: 58px;
  }

  .header-para {
    font-size: 10px;
  }

  .header {
    font-size: 18px;
  }

  .header-para-dark {
    font-size: 10px;
  }

  .header-dark {
    font-size: 18px;
  }

  .header-anch {
    font-size: 14px;
  }

  .offering-btn {
    padding: 11px 19px;
    font-size: 17px;
  }

  .aboutus-section {
    padding-bottom: 20px;
  }

  .stat-box > h2 {
    font-size: 40px;
  }

  .stat-box > p {
    font-size: 16px;
  }

  .play-text {
    font-size: 16px;
  }

  .play-icon > img {
    width: 63px;
    height: 63px;
  }

  .appointment-cont {
    padding-bottom: 10px;
  }

  .appointment-form > h3 {
    font-size: 23px;
  }

  .form-cont {
    margin-bottom: 20px;
  }

  .brand-select {
    height: 43px;
  }

  .col-46,
  .col-39 {
    width: 100%;
  }

  .find-station {
    margin-bottom: 32px;
  }

  .slide-block {
    padding: 64px 0 23px;
  }

  .slide-img {
    width: 111px;
    height: 111px;
    top: calc(-111px / 2);
  }

  .team-connection {
    padding: 12px 12px;
    max-width: 118px;
    /* min-height: 39px; */
  }

  .slide-block > h3 {
    font-size: 16px;
  }

  .slide-block > p {
    font-size: 16px;
  }

  .swiperClient .swiper-button-prev {
    left: 40%;
  }

  .swiperClient .swiper-button-next {
    right: 40%;
  }

  .review-block {
    padding: 20px 15px;
  }

  .review-para > h3 {
    font-size: 16px;
  }

  .review-para > p {
    font-size: 13px;
  }

  .review-block::after {
    width: 46px;
    height: 46px;
    right: 5px;
    top: 88px;
  }
  .review-btn {
    padding: 9px 16px;
    font-size: 14px;
  }
  .review-img-text {
    font-size: 13px;
  }
  .client-review-cont > h4 {
    font-size: 25px;
  }

  .testimonial-section {
    bottom: -32px;
  }

  .testimonial-section > span {
    font-size: 87px;
  }

  .faq-banner-head {
    margin-bottom: 16px;
  }

  .charge-banner-cont > h2 {
    font-size: 26px;
  }

  .charge-banner-cont-img {
    top: -62px;
    max-width: 183px;
    height: 310px;
    /* margin-left: 0; */
  }

  .charge-station-row {
    flex-direction: column-reverse;
  }

  .col-45,
  .col-55 {
    width: 100%;
  }

  .content1 p,
  .content2 p,
  .content3 p,
  .content4 p,
  .content5 p {
    font-size: 15px;
  }

  .charge-socials {
    max-width: 320px;
  }

  .charge-socials img {
    width: 158px;
    height: 44px;
  }

  .footer-btm-left > p {
    font-size: 13px;
  }

  .footer-list li a {
    font-size: 13px;
  }

  .main-footer-section {
    padding: 40px 0 40px;
  }

  .form-cont input {
    height: 43px;
  }

  .main-submit {
    margin: 23px 0 30px 0;
  }

  .appointment-form p {
    font-size: 11px;
  }

  .how-we-work-main-cont {
    margin-bottom: 50px;
  }

  .step {
    min-height: 244px;
  }

  .client-review-section {
    padding-top: 42px;
  }
}

@media screen and (max-width: 576px) {
  .aboutus-img-top {
    max-width: 100%;
  }

  .aboutus-leftwrp {
    top: 0;
    left: -4px;
  }

  .sidebar-nav a {
    font-size: 16px;
  }

  .play-btn {
    width: 56px;
    height: 56px;
  }

  .play-link {
    width: 46px;
    height: 46px;
  }

  .play-link > img {
    width: 18px;
    height: 18px;
    object-fit: cover;
  }

  .play-icon > img {
    width: 52px;
    height: 52px;
  }

  .play-text {
    margin-left: 16px;
  }

  .col-50 {
    width: 100%;
  }

  .aboutus-points-wrpr {
    margin-bottom: 18px;
  }

  .aboutus-btn {
    padding: 12px 16px;
    font-size: 15px;
  }

  .col-25 {
    width: 100%;
  }

  .stats-section {
    padding: 66px 0 50px 0;
  }

  .right-points-wrpr > p {
    padding-left: 10px;
  }

  .left-points-wrpr > p {
    padding-left: 10px;
  }

  .col-2 {
    width: 40%;
  }

  .col-8 {
    width: 60%;
  }

  .service-block-cont,
  .details-block-cont {
    margin-bottom: 26px;
  }

  .service-block-cont > p,
  .details-block-cont > p,
  .book-block-cont > p {
    font-size: 11px;
  }

  .service-block-cont > span,
  .details-block-cont > span,
  .book-block-cont > span {
    font-size: 13px;
  }

  .appointment-form > p {
    font-size: 10px;
    line-height: 17px;
  }

  .btn-estimate {
    margin-top: 20px;
  }

  .btn-estimate > button {
    /* padding: 17px 10px; */
    font-size: 14px;
  }

  .main-submit-btn {
    padding: 14px 30px;
    font-size: 13px;
  }

  .radio-grp-one > label,
  .radio-grp-two > label {
    font-size: 14px;
  }

  .appointment-form > h3 {
    font-size: 20px;
  }

  .about-us-play-link::after {
    width: 50px;
    height: 50px;
  }

  .offering-section {
    padding: 40px 0 65px 0;
  }

  .step > p {
    font-size: 10px;
  }

  .station-model-cont > h2 {
    font-size: 26px;
  }

  .input-group,
  .custom-select,
  .find-btn {
    height: 40px;
  }

  .input-group > img {
    width: 28px;
    height: 28px;
  }

  .custom-select .dropdown-icon {
    width: 28px;
    height: 28px;
  }

  .input-group > input[type="text"],
  .custom-select select,
  .find-btn {
    font-size: 13px;
  }

  .station-model-cont > p {
    font-size: 21px;
  }

  .find-station p {
    font-size: 16px;
  }

  .find-station-inner-block > img {
    width: 25px;
    height: 25px;
  }

  .our-team-bef-aft {
    font-size: 18px;
    margin-bottom: 21px;
  }

  .our-team-cont > h2 {
    font-size: 22px;
  }

  .our-team-cont > p {
    font-size: 15px;
  }

  .plan-section {
    min-height: 800px;
    padding: 85px 0 75px 0;
  }

  .station-model-cont-img::before {
    width: 108px;
    height: 110px;
    top: 38px;
    left: 0;
  }

  .station-map-block {
    max-width: 187px;
  }

  .review-img-text {
    font-size: 13px;
  }

  .station-model-cont-img {
    max-width: 295px;
  }

  .map-cont > p {
    padding-left: 10px;
    font-size: 11px;
  }

  /* .team-connection {
    padding: 8px 12px;
  } */

  .slide-block > h3 {
    font-size: 15px;
  }

  .client-review-cont > p {
    font-size: 18px;
  }

  .client-review-cont > h4 {
    font-size: 21px;
  }

  .testimonial-section > span {
    font-size: 69px;
  }

  .testimonial-section {
    bottom: -28px;
    left: -15px;
  }

  .faq-bef-aft {
    font-size: 18px;
    margin-bottom: 21px;
  }

  .charge-banner-cont > h2 {
    font-size: 22px;
  }

  .col-3 {
    width: 100%;
  }

  .service-footer-para {
    font-size: 15px;
  }

  .footer-para {
    font-size: 13px;
  }

  .footer-logo {
    width: 170px;
  }

  .footer-btm-terms {
    justify-content: center;
  }

  .ftr-strt-list {
    margin-right: 22px;
  }

  .footer-social-icons li a img {
    width: 34px;
    margin-right: 10px;
  }

  .col-033 {
    width: 100%;
  }

  .plan-section-block {
    max-width: 300px;
  }
  .mySwiper .swiper-button-prev {
    left: 20%;
  }

  .mySwiper .swiper-button-next {
    right: 20%;
  }
}

@media screen and (max-width: 479px) {
  .sidebar {
    width: 100%;
    right: -100%;
  }

  .nav-logo {
    width: 153px;
    height: 40px;
  }

  .nav-toggler {
    height: 20px;
  }

  .banner-cont > h1 {
    font-size: 38px;
    margin-bottom: 12px;
  }

  .banner-cont > p {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .aboutus-centerwrp > p {
    font-size: 16px;
  }

  .aboutus-centerwrp > span {
    font-size: 42px;
  }

  .aboutus-centerwrp {
    top: -24px;
  }

  .aboutus-bef-aft {
    font-size: 16px;
  }

  .aboutus-cont-wrpr > h2 {
    font-size: 26px;
  }

  .aboutus-cont-wrpr > p {
    font-size: 12px;
    line-height: 22px;
  }

  .left-points-wrpr > p {
    font-size: 12px;
  }

  .left-points-wrpr {
    margin-bottom: 12px;
  }

  .right-points-wrpr {
    margin-bottom: 12px;
  }

  .left-points-wrpr > img {
    width: 19px;
    height: 19px;
  }

  .right-points-wrpr > img {
    width: 19px;
    height: 19px;
  }

  .right-points-wrpr > p {
    font-size: 12px;
  }

  .aboutus-bef-aft::before {
    width: 9px;
    height: 9px;
  }

  .aboutus-bef-aft::after {
    width: 9px;
    height: 9px;
  }

  .bef-aft::before {
    width: 9px;
    height: 9px;
  }

  .bef-aft::after {
    width: 9px;
    height: 9px;
  }

  .offering-bef-aft {
    font-size: 16px;
    margin-bottom: 21px;
  }

  .offering-cont > h2 {
    font-size: 25px;
  }

  .offering-cont > p {
    font-size: 12px;
  }

  .offering-bef-aft::before {
    width: 9px;
    height: 9px;
  }

  .offering-bef-aft::after {
    width: 9px;
    height: 9px;
  }

  .swiperClient .swiper-button-prev {
    left: 20%;
  }

  .swiperClient .swiper-button-next {
    right: 20%;
  }

  .stat-box > h2 {
    font-size: 35px;
  }

  .stat-icon {
    width: 60px;
  }

  .stat-box > p {
    font-size: 14px;
  }

  .why-choose-us-bef-aft {
    font-size: 16px;
    margin-bottom: 21px;
  }

  .why-choose-us-cont > h2 {
    font-size: 25px;
  }

  .why-choose-us-cont > p {
    font-size: 12px;
    line-height: 22px;
  }

  .why-choose-us-bef-aft::after {
    width: 9px;
    height: 9px;
  }

  .why-choose-us-bef-aft::before {
    width: 9px;
    height: 9px;
  }

  .about-us-play-link > img {
    width: 18px;
    height: 18px;
    object-fit: cover;
  }

  .appointment-cont > h2 {
    margin-bottom: 28px;
    font-size: 25px;
  }

  .appointment-cont > p {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .how-we-work-bef-aft {
    font-size: 16px;
    margin-bottom: 21px;
  }

  .how-we-work-main-cont > h2 {
    font-size: 21px;
  }

  /* .col-33 {
        width: 100%;
    } */

  .find-station-block {
    width: 65px;
    height: 65px;
  }

  .station-model-cont > h2 {
    font-size: 23px;
  }

  .process-section {
    min-height: 672px;
  }

  .plan-section-bef-aft {
    font-size: 16px;
    margin-bottom: 21px;
  }

  .plan-section-cont > h2 {
    font-size: 22px;
  }

  .testimonial-section > span {
    font-size: 50px;
  }

  .testimonial-section {
    bottom: -16px;
  }

  .faq-sol-main-cont > h3 {
    font-size: 31px;
  }

  .faq-sol-main-cont > p {
    margin-bottom: 25px;
    font-size: 14px;
  }

  .faq-solution-cont {
    min-height: 346px;
  }

  .faq-sol-main-cont {
    padding: 81px 30px 67px 38px;
  }

  .faq-bef-aft::before {
    width: 9px;
    height: 9px;
  }

  .faq-bef-aft::after {
    width: 9px;
    height: 9px;
  }

  .faq-accord-cont > h2 {
    font-size: 26px;
  }

  .faq-accord-cont > p {
    font-size: 14px;
  }

  .accordion-arrow {
    width: 14px;
    height: 14px;
  }

  .accordion-title {
    font-size: 14px;
  }

  .accordion-number {
    margin-right: 6px;
    min-width: 14px;
    font-size: 13px;
  }

  .content1 p,
  .content2 p,
  .content3 p,
  .content4 p,
  .content5 p {
    font-size: 13px;
  }

  .faq-section {
    min-height: 885px;
    padding: 79px 0 64px 0;
  }

  .col-20 {
    width: 100%;
  }

  .col-34,
  .col-16 {
    width: 100%;
  }

  .col-33 {
    width: 50%;
  }

  .appointment-form {
    padding: 20px;
  }

  .why-choose-us-eco {
    margin-bottom: 25px;
  }

  .col-05 {
    width: 100%;
  }
}

@media screen and (max-width: 359px) {
  .bef-aft {
    font-size: 15px;
  }

  .aboutus-section {
    padding: 78px 0 37px;
  }

  .aboutus-leftwrp {
    top: 46px;
    left: -6px;
  }

  .aboutus-cont-wrpr {
    margin-top: 20px;
  }

  .aboutus-centerwrp {
    top: 14px;
    right: 21px;
  }

  .appointment-form > h3 {
    font-size: 17px;
  }

  .radio-section > p,
  .radio-grp {
    font-size: 13px;
  }

  .appointment-form > p {
    font-size: 8px;
    line-height: 14px;
  }

  .testimonial-section > span {
    font-size: 45px;
  }

  .testimonial-section {
    bottom: -14px;
  }

  .client-review-cont > p {
    font-size: 16px;
  }

  .accordion-title {
    font-size: 12px;
  }

  .charge-banner-cont > h2 {
    font-size: 19px;
  }

  .col-5 {
    width: 100%;
  }

  .footer-btm-left > p {
    text-align: center;
  }

  .map-cont > img {
    width: 20px;
    height: 20px;
  }
}
