/* #Fonts
================================================== */
@font-face {
  font-family: "almoni";
  font-weight: 200;
  src: url("../font/almoni-neue-light-aaa.woff");
}

@font-face {
  font-family: "almoni";
  font-weight: 400;
  src: url("../font/almoni-neue-regular-aaa.woff");
}

@font-face {
  font-family: "almoni";
  font-weight: 500;
  src: url("../font/almoni-neue-demibold-aaa.woff");
}

@font-face {
  font-family: "almoni";
  font-weight: 700;
  src: url("../font/almoni-neue-bold-aaa.woff");
}

/* #Global
================================================== */
body {
  font-family: "almoni", sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

.text-green {
  color: #00c771;
}

.strikethrough {
  text-decoration: line-through;
}

/* #Btn
================================================== */
.btn {
  height: 2.6vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.197vw;
  font-weight: 500;
  border-radius: 500px;
  padding: 0 2.5vw;
  transition: all 0.5s ease;
  backface-visibility: hidden;
  border: 0;
}

.btn:hover {
  padding: 0 3vw;
}

.btn-primary {
  background-image: linear-gradient(to top right, #93ff00, #a0f3bd, #84ffe4);
  color: black;
}

.btn-secondary {
  background-image: linear-gradient(to top right, #27fca0, #55ffe8, #2adbff);
  color: black;
}

@media (max-width: 1023.98px) {
  .btn {
    height: 9.33vw;
    font-size: 4vw;
    padding: 0 10vw;
  }

  .btn:hover {
    padding: 0 10vw;
  }
}

/* #Link
================================================== */
.link {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 0.15vw;
}

.link.link-white {
  color: white;
}

.link img,
.link svg {
  width: 1vw;
  margin-right: 0.6vw;
}

.link::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: black;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.link:hover::before {
  transform: scaleX(1);
}

.link.link-white::before {
  background-color: white;
}

.header.header-scrolled .link.link-white::before {
  background-color: black;
}

@media (max-width: 1023.98px) {
  .link {
    padding-bottom: 1vw;
  }

  .link img,
  .link svg {
    width: 2.93vw;
    margin-right: 1.33vw;
  }
}

/* #Input
================================================== */
input {
  font-family: inherit;
}

.input-primary {
  border: none;
  border-bottom: 1px solid #d8d8d8;
  color: black;
  padding-bottom: 0.25vw;
  width: 100%;
}

.input-primary::placeholder {
  color: black;
}

.input-secondary {
  border: none;
  border: 1px solid #bfbfbf;
  color: black;
  width: 100%;
  height: 2.4vw !important;
  padding: 0 0.78vw;
  border-radius: 0.25vw;
  color: #bfbfbf;
}

.input-secondary::placeholder {
  color: #bfbfbf;
}

@media (max-width: 1023.98px) {
  .input-primary {
    border-bottom: 1px solid #b1b1b1;
    padding-bottom: 1vw;
  }

  .input-secondary {
    height: 8.66vw !important;
    padding: 0 2vw;
    border-radius: 5px;
  }
}

/* #Select
================================================== */
select {
  font-family: inherit;
}

.select-primary {
  border: none;
  border-bottom: 1px solid #d8d8d8;
  color: black;
  appearance: none;
  background-image: url("../img/icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 0.78vw auto;
  padding-bottom: 0.25vw;
  width: 100%;
}

.select-secondary {
  border: none;
  border: 1px solid #bfbfbf;
  color: #000;
  appearance: none;
  background-image: url("../img/icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: 3% 50%;
  background-size: 0.78vw auto;
  width: 100%;
  height: 2.4vw !important;
  border-radius: 0.25vw;
  padding: 0 0.78vw;
}

@media (max-width: 1023.98px) {
  .select-primary {
    border-bottom: 1px solid #b1b1b1;
    background-size: 2.93vw auto;
    padding-bottom: 1vw;
  }

  .select-secondary {
    height: 8.66vw !important;
    background-size: 2.93vw auto;
    padding: 0 2vw;
  }
}

/* #Checkbox
================================================== */
.checkbox input {
  width: 0.83vw;
  height: 0.83vw;
  border-radius: 0;
  border-color: #071b1b;
  border-width: 1px;
  flex: 0 0 0.83vw;
  margin-top: 0.25vw;
}

.checkbox input:checked {
  border-color: #071b1b;
  background-color: #071b1b;
  background-image: none;
}

.checkbox label {
  padding-right: 0.5vw;
  line-height: 1.25;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 1023.98px) {
  .checkbox input {
    width: 2vw;
    height: 2vw;
    border-width: 1px;
    flex: 0 0 2vw;
    margin-top: 1.4vw;
  }

  .checkbox label {
    padding-right: 1.33vw;
  }
}

/* #Pulse Animation
================================================== */
.pulse-animation {
  position: relative;
}

.pulse-animation::after,
.pulse-animation::before {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  border: 3px solid #90ff00;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: animate 2.5s linear infinite;
  backface-visibility: hidden;
}

.pulse-animation::after {
  animation-delay: 1.25s;
}

.benefits .pulse-animation::after,
.benefits .pulse-animation::before {
  animation: animateXl 2.5s linear infinite;
}

.benefits .pulse-animation::after {
  animation-delay: 1.25s;
}

@keyframes animate {
  0% {
    transform: scale(1.05);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(2.25);
    opacity: 0;
  }
}

@keyframes animateXl {
  0% {
    transform: scale(1.05);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(2.75);
    opacity: 0;
  }
}

/* #Swiper Pagination
================================================== */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 1.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.39vw;
}

.swiper-pagination-bullet {
  width: 2.6vw;
  height: 2px;
  border-radius: 500px;
  background: white;
  opacity: 0.34;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: white;
}

@media (max-width: 1023.98px) {

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 6.55vw;
  }

  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1.66vw;
  }

  .swiper-pagination-bullet {
    width: 10.6vw;
    height: 2px;
  }
}

/* #Header
================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100 !important;
  color: white;
  transition: all 0.3s ease;
}

.header.header-shadow {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

.header.header-scrolled,
.header.show,
.header.header-always-white {
  background-color: white;
  background-image: none !important;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.header.header-scrolled *,
.header.show *,
.header.header-always-white * {
  color: black;
}

.header.header-always-white {
  box-shadow: none !important;
}

.header.header-always-white.header-scrolled {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1) !important;
}

.header .container {
  width: 87.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.35vw;
}

.header-logo img {
  width: 9.2vw;
}

.header-links ul,
.header-links ul a {
  display: flex;
  align-items: center;
}

.header-links ul li:not(:last-child) {
  margin-left: 0.5vw;
}

.header-links ul>li>a {
  margin: 0 1vw;
}

.header-links ul .collapse-toggler>a {
  padding: 0 1vw;
  height: 3.8vw;
}

.header-links ul .collapse-toggler>a::before,
.header-links ul .collapse-toggler>a::after {
  display: none;
}

.header-links ul a img {
  width: 0.5vw;
  margin-right: 0.5vw;
}

.header-action {
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  opacity: 1;
  visibility: visible;
}

.header-whatsapp a {
  display: flex;
  align-items: center;
}

.header-whatsapp img {
  width: 1.8vw;
  margin-right: 0.5vw;
}

.header-cart img {
  width: 1vw;
  display: block;
}

.header-cart {
  display: inline-flex;
  align-items: center;
}

.header-search-icon img {
  width: 1.25vw;
}

.header-cart,
.header-search-icon {
  margin-left: 1.5vw;
}

.header a {
  position: relative;
}

.header .icon a {
  display: block;
}

.header .icon-black {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.header.header-scrolled .icon-black,
.header.show .icon-black,
.header.header-always-white .icon-black {
  opacity: 1;
}

@media (max-width: 1023.98px) {
  .header {}

  .header-cart a.show {
    margin-top: -8px;
  }

  .header .container {
    width: 90%;
    height: auto;
    padding: 4vw 0 6vw 0;
    flex-direction: row-reverse;
  }

  .header-logo img {
    width: 26vw;
  }

  .header-whatsapp img {
    width: 6.65vw;
    margin-right: 1.33vw;
  }

  .header-cart img {
    width: 4.66vw;
  }

  .header-cart {
    margin: 0 4vw;
  }

  /* .header-hamburger img {
  width: 7.33vw;
}
.header-hamburger.show > a img{
opacity: 0 !important;
}
.header-hamburger.show > a{
display: block;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px'%0Awidth='50' height='50'%0AviewBox='0 0 50 50'%0Astyle=' fill:%23undefined;'%3E%3Cpath d='M 9.15625 6.3125 L 6.3125 9.15625 L 22.15625 25 L 6.21875 40.96875 L 9.03125 43.78125 L 25 27.84375 L 40.9375 43.78125 L 43.78125 40.9375 L 27.84375 25 L 43.6875 9.15625 L 40.84375 6.3125 L 25 22.15625 Z'%3E%3C/path%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
} */
}

/* #Header Menu
================================================== */
.header .collapsible.show .collapse-toggler a {
  background-color: white;
  color: black;
}

.header .collapsible .collapse-toggler a .icon-black {
  left: 1vw;
}

.header .collapsible.show .collapse-toggler a .icon-black {
  opacity: 1;
}

.header .collapse>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.6vw;
}

.header .collapse .icons {
  display: flex;
  flex: 1;
  text-align: center;
}

.header .collapse .icons .icon {
  /*flex: 0 0 7.6vw;*/
  flex: 1;
  height: auto;
  line-height: 1;
  font-weight: 400;
}

.header .collapse .icons .icon {
  margin-left: 2.34vw;
}

.header .collapse .icons .icon .img {
  margin-bottom: 0.625vw;
}

.header .collapse .icons .icon .img img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.14);
}

.header .card {
  position: relative;
}

.header .card .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.78vw;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header .card .text * {
  color: white !important;
}

.header .card .img img {
  width: 15.26vw;
}

@media (min-width: 1024px) {
  .page-template-views .customer-testimonials .cards {
    display: flex;
    flex-wrap: wrap;
  }

  .header .collapse {
    position: absolute;
    bottom: 1.5vw;
    left: 50%;
    transform: translateY(100%) translateX(-50%);
    /* width: 71.25%; */
    width: 84.25%;
    background-color: white;
    color: black;
    border-radius: 0.5vw;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  }

  .header .collapsible .collapse-toggler a {
    transition: all 0.4s ease;
    border-top-left-radius: 0.5vw;
    border-top-right-radius: 0.5vw;
  }
}

@media (max-width: 1023.98px) {
  .header .header-links {
    position: absolute;
    top: 19vw;
    left: -5.5%;
    width: 100vw;
    height: calc(100vh - 19vw);
    overflow-y: auto;
    background-color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-top: 1px solid #bebebe;
    padding: 2vw 5% 20vw 5%;
  }

  .header.show .header-links {
    opacity: 1;
    visibility: visible;
  }

  .header-links ul {
    display: block;
  }

  .header-links ul>li>a {
    margin: 0;
    border-bottom: 1px solid #bebebe;
    padding: 3.5vw 0;
  }

  .header-links ul .collapse-toggler>a {
    padding: 3.5vw 0;
    height: auto;
  }

  .header .collapsible .collapse-toggler img {
    transition: all 0.4s ease;
  }

  .header .collapsible.show .collapse-toggler img {
    transform: rotate(180deg);
  }

  .header-links ul .collapsible {
    border-bottom: 1px solid #bebebe;
  }

  .header-links ul a img {
    width: 2vw;
    margin-right: 2vw;
  }

  .header-search-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d6d6d6;
    padding: 3.33vw 0;
    border-bottom: 1px solid #bebebe;
  }

  .header-search-form img {
    width: 4vw !important;
    margin-left: 3vw !important;
  }

  .header-search-form img {
    width: 1.3vw;
    margin-left: 1vw;
  }

  .header-search-form input {
    border: none;
    background-color: transparent;
    flex-grow: 1;
  }

  .header-search-form input::placeholder {
    color: #7e7e7e;
  }

  .header .collapse>div {
    display: block;
    padding: 4vw 0 6.65vw 0;
  }

  .header .collapse .icons {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
  }

  .header .collapsible .collapse-toggler a .icon-black {
    left: 0;
  }

  .header .collapse .icons .icon {
    flex: 0 0 50%;
    margin-bottom: 6.65vw;
  }

  .header .collapse .icons .icon:not(:last-child) {
    margin-left: 0;
  }

  .header .collapse .icons .icon .img {
    margin-bottom: 2.5vw;
  }

  .header .collapse .icons .icon .img img {
    width: 31.46vw;
    margin: 0 auto;
  }

  .header .card {
    margin-top: 0;
  }

  .header .card .text {
    bottom: 3.33vw;
  }

  .header .card .img img {
    width: 100%;
  }
}

/* #Header Search
================================================== */
.header-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  color: black;

  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
}

.header-search.show {
  opacity: 1;
  visibility: visible;
}

.header-search .top {
  height: 6.35vw;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
}

.header-search .close img {
  width: 1.2vw;
}

.header-search .bottom {
  padding: 2vw 26.35vw 4.16vw 33.9vw;
}

.header-search .bottom h2 {
  margin-bottom: 0.78vw;
}

.header-search .bottom ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1vw 0;
  border-bottom: 1px solid #d6d6d6;
  line-height: 1;
}

.header-search .bottom ul li a img {
  width: 0.5vw;
}

@media (min-width: 1024px) {
  .button-map {
    padding-top: 6vw;
    justify-content: center;
    text-align: center;
  }

  .header-search .header-search-form {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 21.875vw;
    border-bottom: 1px solid #d6d6d6;
    padding: 0.5vw 0;
    transform: translateX(1.2vw);
  }

  .header-search .header-search-form img {
    width: 1.3vw;
    margin-left: 1vw;
  }

  .header-search .header-search-form input {
    border: none;
    background-color: transparent;
  }

  .header-search .header-search-form input::placeholder {
    color: #7e7e7e;
  }
}

@media (max-width: 1023.98px) {
  .button-map {
    padding-top: 6vw;
    padding-bottom: 6vw;
    justify-content: center;
    text-align: center;
  }

  .header-search {
    top: 36vw;
    height: calc(100vh - 36vw);
  }

  .header-search.show {
    opacity: 1;
    visibility: visible;
  }

  .header-search .top {
    height: auto;
    box-shadow: none;
    display: block;
    padding: 0;
  }

  .header-search .close {
    position: absolute;
    top: -29.5vw;
    right: 5%;
  }

  .header-search .top .header-search-form {
    display: none;
  }

  .header-search .close img {
    width: 4.66vw;
  }

  .header-search .bottom {
    padding: 10vw 7.33vw 10vw 7.33vw;
  }

  .header-search .bottom h2 {
    margin-bottom: 2.5vw;
  }

  .header-search .bottom ul li a {
    padding: 3.33vw 0;
  }

  .header-search .bottom ul li a img {
    width: 2vw;
  }

  .header.show-search .header-action {
    opacity: 0;
    visibility: hidden;
  }
}

/* #Footer
================================================== */
.footer {
  background-color: black;
  color: white;
  padding: 6.25vw 0 7.8vw 0;
  position: relative;
}

.footer .container {
  width: 74%;
}

.footer-logo {
  margin-bottom: 0;
}

.footer-logo img {
  width: 4.84vw;
}

.footer-links ul {
  display: flex;
}

.footer-links ul li:not(:last-child) {
  margin-left: 5.2vw;
}

.footer-links ul p:not(:last-child) {
  margin-bottom: 0.6vw;
}

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

.social {
  flex: 0 0 100%;
  margin-top: 1.8vw;
}

.social ul {
  display: flex;
  align-items: center;
}

.social li:not(:last-child) {
  margin-left: 0.78vw;
}

.social img {
  width: 2.34vw;
}

.back-to-top {
  position: absolute;
  top: 6.25vw;
  right: 4.95vw;
}

.back-to-top img {
  width: 3.125vw;
}

@media (min-width: 1024px) {
  .footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-bottom {
    border-top: 1px solid white;
    padding-top: 1.3vw;
    margin-top: 1.3vw;
  }
}

@media (max-width: 1023.98px) {
  .footer {
    padding: 12.26vw 0;
  }

  .footer .container {
    width: 100%;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-logo {
    margin-bottom: 17.33vw;
  }

  .footer-logo img {
    width: 34.8vw;
  }

  .footer-links {
    margin-bottom: 20vw;
    border-top: none;
    border-bottom: none;
    padding: 0;
    text-align: center;
  }

  .footer-links ul {
    display: block;
    line-height: 1;
  }

  .footer-links ul li:not(:last-child) {
    margin-left: 0;
    margin-bottom: 6.5vw;
  }

  .footer-links ul p:not(:first-child) {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
  }

  .footer-bottom p {
    margin-bottom: 2.66vw;
  }

  .social {
    margin-bottom: 7.33vw;
  }

  .social li:not(:last-child) {
    margin-left: 3.73vw;
  }

  .social img {
    width: 10.93vw;
  }

  .back-to-top {
    top: 10vw;
    right: 8.5vw;
  }

  .back-to-top img {
    width: 13.33vw;
  }
}

/* #Home Banner
================================================== */
.home-banner {
  position: relative;
}

.home-banner .swiper-slide .img img,
.home-banner .swiper-slide .img picture {
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: center;
}




.home-banner .swiper-slide .text {
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12vw;
}

.home-banner .swiper-slide .text h1 {
  line-height: 1;
}

.home-banner .swiper-slide .text p {
  width: 20.8vw;
  margin-top: 0.5vw;
  margin-bottom: 2vw;
}

.home-banner .cards {
  display: flex;
  position: absolute;
  bottom: 1.3vw;
  left: 1.3vw;
  z-index: 20;
}

.home-banner .card {
  display: flex;
  align-items: center;
  background-color: black;
  color: white;
}

.home-banner .card:first-child {
  margin-left: 1.3vw;
}

.home-banner .card .img img {
  width: 14.11vw;
  height: 12.3vw;
  object-fit: cover;
  object-position: center;
}

.home-banner .card .text {
  width: 12.3vw;
  flex-shrink: 0;
  padding: 0 1.25vw;
  text-align: center;
}

.home-banner .card .text p {
  padding: 0.5vw 0 0.75vw;
}

.home-banner .card .logo img {
  margin: 0 auto;
  width: 6.25vw;
}

.home-banner .swiper-slide {
  position: relative;
}

/* Animation */
.home-banner .swiper-slide .text {
  opacity: 0;
  transition: all 0.4s ease 0.4s;
}

.home-banner .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}

@media (max-width: 1023.98px) {
  .home-banner .swiper-slide .text {
    top: 20vw;
    transform: translateX(-50%);
    right: auto;
    left: 50%;
    text-align: center;
    width: 78%;
  }

  .home-banner .swiper-slide .text p {
    width: 100%;
    margin-top: 2vw;
    margin-bottom: 4vw;
  }

  .home-banner .cards {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 1.33vw;
  }

  .home-banner .card {
    flex-grow: 1;
    position: relative;
  }

  .home-banner .card:first-child {
    margin-left: 1.33vw;
  }

  .home-banner .card .img img {
    width: 100%;
    height: 50.66vw;
  }

  .home-banner .card .img {
    position: relative;
  }

  .home-banner .card .img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, black, transparent);
  }

  .home-banner .card .text {
    width: 38vw;
    flex-shrink: 0;
    padding: 0;
    text-align: center;
    position: absolute;
    bottom: 5.33vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .home-banner .card .text p {
    padding: 1vw 0 2vw;
  }

  .home-banner .card .logo img {
    margin: 0 auto;
    width: 22vw;
  }
}

/* #Blog Banner
================================================== */
.blog-banner {
  position: relative;
}

.blog-banner .swiper-slide .img img,
.blog-banner .swiper-slide .img picture {
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: center;
}

.blog-banner .swiper-slide .text {
  color: white;
  position: absolute;
  bottom: 6.25vw;
  right: 6.25vw;
  width: 31.25vw;
}

.blog-banner .swiper-slide .text h1,
.blog-banner .swiper-slide .text h2 {
  line-height: 1;
  margin: 0.5vw 0;
}

.blog-banner .swiper-slide {
  position: relative;
}

/* Animation */
.blog-banner .swiper-slide .text {
  opacity: 0;
  transition: all 0.4s ease 0.4s;
}

.blog-banner .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}

@media (max-width: 1023.98px) {
  .blog-banner .swiper-slide .text {
    bottom: 18.66vw;
    transform: translateX(-50%);
    right: auto;
    left: 50%;
    text-align: center;
    width: 90%;
  }

  .blog-banner .swiper-slide .text p {
    width: 100%;
  }
}

/* #Banner
================================================== */
.banner {
  position: relative;
}

.business-customers-page .banner .swiper-slide .img img {
  height: 37.5vw;
}

.banner .swiper-slide .img img,
.banner .swiper-slide .img picture {
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: center;
}

.banner .swiper-slide .text {
  color: white;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.banner .swiper-slide .text h1 {
  line-height: 1;
}

.banner .swiper-slide .text p {
  margin-top: 0.5vw;
  margin-bottom: 1.3vw;
  line-height: 1.2;
}

.banner .swiper-slide {
  position: relative;
}

/* Animation */
.banner .swiper-slide .text {
  opacity: 0;
  transition: all 0.4s ease 0.4s;
}

.banner .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}

@media (max-width: 1023.98px) {
  .business-customers-page .banner .swiper-slide .img img {
    height: 150vw;
  }

  .banner .swiper-slide .text {
    top: 43%;
    transform: translateX(-50%);
    right: auto;
    left: 50%;
    text-align: center;
    width: 90%;
  }

  .banner .swiper-slide .text p {
    width: 100%;
    margin-top: 2vw;
    margin-bottom: 4vw;
  }
}

/* #Post Slider
================================================== */
.post-slider {
  padding: 6.25vw 0;
  overflow: hidden;
}

.blog .post-slider {
  padding: 2.6vw 0 5.2vw 0;
}

.post-slider .container {
  margin-right: 2vw;
}

.blog .post-slider .container {
  padding-right: 6.25vw;
}

.post-slider .heading {
  text-align: center;
  margin-bottom: 2.6vw;
  padding-left: 2vw;
}

.blog .post-slider .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 6.5vw;
  margin-bottom: 1vw;
}

.post-slider h2 {
  line-height: 1;
}

.post-slider .swiper-slide {
  padding-left: 2vw;
  height: auto;
}

.post-slider .swiper {
  padding-bottom: 3.33vw;
  overflow: visible;
}

.post-slider .swiper-horizontal>.swiper-pagination-progressbar,
.post-slider .swiper-pagination-progressbar.swiper-pagination-horizontal,
.post-slider .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.post-slider .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 35.15vw;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  top: auto;
  margin-left: 2vw;
}

.post-slider .swiper-pagination-progressbar {
  background: #ededed;
}

.post-slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: black;
}

.post-slider .container>.text-center a {
  margin-top: 1.3vw;
}

@media (max-width: 1023.98px) {
  .post-slider {
    padding: 16.66vw 0;
  }

  .blog .post-slider {
    padding: 5.33vw 0;
    position: relative;
    margin-bottom: 5.33vw;
  }

  .post-slider .container {
    margin-right: 5.33vw;
  }

  .blog .post-slider .container {
    padding-right: 0;
    margin-right: 5.33vw;
    padding-bottom: 5.33vw;
  }

  .post-slider .heading {
    padding-left: 5.33vw;
    margin-bottom: 5.73vw;
  }

  .blog .post-slider .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6.5vw;
    margin-bottom: 4vw;
  }

  .blog .post-slider .heading a {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .post-slider h2 {
    margin-bottom: 0.5vw;
  }

  .post-slider .swiper-slide {
    padding-left: 5.33vw;
  }

  .post-slider .swiper {
    padding-bottom: 7.45vw;
  }

  .post-slider .swiper-horizontal>.swiper-pagination-progressbar,
  .post-slider .swiper-pagination-progressbar.swiper-pagination-horizontal,
  .post-slider .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
  .post-slider .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 58.66vw;
    margin-left: 5.33vw;
  }

  .post-slider .container>.text-center a {
    margin-top: 4vw;
  }
}

/* #Blog Post Card
================================================== */
.blog-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-post-card .img {
  margin-bottom: 2vw;
}

.blog-post-card .img img {
  width: 100%;
  height: 20.93vw;
  border-radius: 0.5vw;
  object-fit: cover;
  object-position: center;
}

.blog-post-card .text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-card .text p {
  line-height: 1.36;
  margin: 0.5vw 0 1.3vw 0;
}

.blog-post-card .text .link {
  margin-top: auto;
  max-width: fit-content;
}

@media (max-width: 1023.98px) {
  .blog-post-card .img {
    margin-bottom: 4.66vw;
  }

  .blog-post-card .img img {
    height: 53.6vw;
    border-radius: 1.33vw;
  }

  .blog-post-card .text {
    padding-left: 2.66vw;
  }

  .blog-post-card .text h3 {
    line-height: 1;
  }

  .blog-post-card .text p {
    line-height: 1.36;
    margin: 1.33vw 0 3.33vw 0;
  }
}

/* #Product Card
================================================== */
.product-card {
  position: relative;
}

.product-card .img {
  margin-bottom: 1.8vw;
}

.product-card .img {
  background-color: #f5f5f5;
  border-radius: 0.5vw;
  overflow: hidden;
}

.product-card .img img {
  width: 100%;
  height: 20.93vw;
  border-radius: 0.5vw;
  object-fit: cover;
  object-position: center;
}

.product-card .text p {
  line-height: 1;
  margin: 0.5vw 0 1.3vw 0;
}

.product-card .discount {
  width: 3.9vw;
  height: 3.9vw;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #27fca0;
  color: #4eeea9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1vw;
  right: 1vw;
}

@media (max-width: 1023.98px) {
  .product-card .img {
    margin-bottom: 4.66vw;
    border-radius: 1.33vw;
    overflow: hidden;
  }

  .product-card .img img {
    height: 66.66vw;
    border-radius: 1.33vw;
    overflow: hidden;
  }

  .product-card .text {
    padding-left: 2.66vw;
  }

  .product-card .text h3 {
    line-height: 1;
  }

  .product-card .text p {
    margin: 1.33vw 0 3.33vw 0;
  }

  .product-card .discount {
    width: 11.33vw;
    height: 11.33vw;
    top: 2.66vw;
    right: 2.66vw;
  }
}

/* #Solutions Card
================================================== */
.solutions-card {
  position: relative;
  overflow: hidden;
}

.solutions-card .img {
  border-radius: 0.5vw;
  overflow: hidden;
}

.solutions-card .img img {
  width: 100%;
  height: 33.85vw;
  object-fit: cover;
  border-radius: 0.5vw;
}

.solutions-card .text {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  color: white;
  padding: 1.8vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  transition: 0.3s;
  transform: translateY(3.5vw);
}

.solutions-card:hover .text {
  transform: translateX(0);
}

.home-page .solutions-card h3 {
  font-size: 2.3vw !important;
}

.solutions-card h3 {
  line-height: 1;
  margin-bottom: 0.6vw;
  transition: all 0.4s ease;
}

.solutions-card a {
  margin-top: auto;
}

.business-customers-page .post-slider-2 .solutions-card a {
  margin-top: 0;
}

.business-customers-page .post-slider-2 .solutions-card .text {
  justify-content: flex-end;
  transform: none !important;
}

@media (min-width: 1024px) {

  .home-page .home-banner .swiper-slide .img img,
  .home-page .home-banner .swiper-slide .img picture {
    width: 100%;
    max-height: 83vh !important;
    object-fit: cover;
    object-position: center;
  }

  .solutions-card .img {
    position: relative;
  }

  .solutions-card .img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #93ff00, #a0f3bd, #84ffe4);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .solutions-card .img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #ffffff, transparent);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .solutions-card:hover .img::after,
  .solutions-card:hover .img::before {
    visibility: visible;
  }

  .solutions-card:hover .img::after {
    opacity: 0.6;
  }

  .solutions-card:hover .img::before {
    opacity: 1;
  }

  .solutions-card:hover .text {
    color: black;
  }

  .solutions-card .text p {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    color: black;
    overflow: hidden;
  }

  .solutions-card:hover .text p {
    opacity: 1;
    visibility: visible;
  }

  .business-customers-page .post-slider-2 .solutions-card .text a {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    color: black;
  }

  .business-customers-page .post-slider-2 .solutions-card:hover .text a {
    opacity: 1;
    visibility: visible;
  }

  .business-customers-page .post-slider-2 .solutions-card .text a svg,
  .business-customers-page .post-slider-2 .solutions-card .text a svg * {
    fill: black;
    stroke: black;
  }

  .solutions-card a {
    overflow: hidden;
  }

  .solutions-card:hover a svg {
    transition: all 0.4s ease;
  }

  .solutions-card:hover a svg * {
    fill: black;
    stroke: black;
  }

  .business-customers-page .post-slider-2 .solutions-card .text p {
    max-height: 0;
  }

  .business-customers-page .post-slider-2 .solutions-card:hover .text p {
    max-height: 5vw;
  }

  .business-customers-page .post-slider-2 .solutions-card .text a {
    max-height: 0;
  }

  .business-customers-page .post-slider-2 .solutions-card:hover .text a {
    max-height: 1.8vw;
  }
}

.home-page .solutions-card .link img,
.home-page .solutions-card .link svg {
  filter: brightness(0);
}

@media (max-width: 1023.98px) {
  .solutions-card .img {
    position: relative;
    border-radius: 1.33vw;
    overflow: hidden;
  }

  .solutions-card .img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, black, transparent);
    opacity: 0.7;
    z-index: 1;
  }

  .solutions-card .img img {
    height: 86.66vw;
    border-radius: 1.33vw;
  }

  .solutions-card .text {
    top: 5.33vw;
    right: 4.66vw;
    width: 59vw;
    height: calc(100% - 10.66vw);
  }

  .home-page .solutions-card .link img,
  .home-page .solutions-card .link svg {
    filter: brightness(1);
  }

  .home-page .solutions-card h3 {
    font-size: 6.66vw !important;
  }

  .solutions-card h3 {
    width: 75%;
    margin-bottom: 2vw;
  }

  .solutions-card p {
    line-height: 1.16;
  }

  .business-customers-page .post-slider-2 .solutions-card a {
    margin-top: auto;
  }

  .business-customers-page .post-slider-3 .solutions-card .text {
    justify-content: flex-end;
  }
}

/* #Post Card
================================================== */
.post-card {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.post-card .img {
  border-radius: 0.5vw;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.post-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5vw;
}

.post-card .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, black, transparent);
  opacity: 0.65;
}

.post-card .text {
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 1.5vw;
  transform: translateY(3.5vw);
  transition: 0.3s;
}

.post-card .text a {
  margin-top: 1.25vw;
}

.post-card h3 {
  line-height: 1;
  margin-bottom: 0.6vw;
  transition: all 0.4s ease;
}

.post-card:hover .text {
  transform: translateY(0);
}

@media (max-width: 1023.98px) {
  .post-card .img {
    position: relative;
    border-radius: 1.33vw;
    overflow: hidden;
  }

  .post-card .img img {
    border-radius: 1.33vw;
  }

  .post-card .text {
    transform: translateY(0);
    padding: 4vw;
  }

  .post-card h3 {
    width: 100%;
    margin-bottom: 2vw;
  }

  .post-card p {
    line-height: 1.16;
  }
}

/* #App Banner
================================================== */
.app-banner {
  position: relative;
}

.app-banner .img img,
.app-banner .img picture {
  width: 100%;
}

.app-banner .text {
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 53.5vw;
  width: 18.85vw;
}

.app-banner h2 {
  line-height: 1;
  margin-bottom: 0.25vw;
}

.app-banner p {
  line-height: 1.36;
  margin-bottom: 2.5vw;
}

.app-banner .imgs {
  display: flex;
}

.app-banner .imgs img {
  width: 8.85vw;
}

.app-banner .imgs a:not(:last-child) {
  margin-left: 1.3vw;
}

@media (max-width: 1023.98px) {
  .app-banner .text {
    top: 8.66vw;
    transform: translateX(50%);
    right: 50%;
    width: 73.33vw;
    text-align: center;
  }

  .app-banner h2 {
    margin-bottom: 1vw;
  }

  .app-banner p {
    line-height: 1;
    margin-bottom: 3.33vw;
  }

  .app-banner .imgs {
    display: flex;
    justify-content: center;
  }

  .app-banner .imgs img {
    width: 22.6vw;
  }

  .app-banner .imgs a:not(:last-child) {
    margin-left: 3.5vw;
  }
}

/* #Contact Form
================================================== */
.contact-form {
  padding: 4.4vw 0;
  margin-top: 3.275vw;
}

.business-customers-page .contact-form {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .container {
  width: 38.8%;
}

.contact-form .heading {
  text-align: center;
  margin-bottom: 2.34vw;
}

.contact-form .heading p {
  width: 18.75vw;
  margin: 0 auto;
}

.contact-form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -1.25vw;
  overflow: hidden;
}

.contact-form form>._input {
  flex: 0 0 47%;
  margin-bottom: 1.25vw;
}

.contact-form form>._input._message {
  flex: 0 0 100%;
}

.contact-form-btn {
  text-align: center;
  margin-top: 1.3vw;
  width: 100%;
}

.contact-form .checkboxes {
  display: flex;
  align-items: flex-start;
  margin-top: 1vw;
}

.contact-form .checkboxes>*:not(:last-child) {
  margin-left: 1.3vw;
}

@media (max-width: 1023.98px) {
  .business-customers-page .contact-form {
    margin-top: 10vw;
  }

  .contact-form {
    padding: 16.66vw 0 20vw 0;
  }

  .contact-form .container {
    width: 70%;
  }

  .contact-form .heading {
    text-align: center;
    margin-bottom: 4vw;
  }

  .contact-form .heading p {
    width: 90%;
    margin: 0 auto;
  }

  .contact-form form {
    margin-bottom: -4vw;
  }

  .contact-form form>._input {
    margin-bottom: 4vw;
    flex: 0 0 100%;
  }

  .contact-form form>._input:nth-child(5),
  .contact-form form>._input:nth-child(6) {
    flex: 0 0 100%;
  }

  .contact-form-btn {
    margin-top: 8vw;
  }

  .contact-form .checkboxes {
    margin-top: 5vw;
  }

  .contact-form .checkboxes>*:not(:last-child) {
    margin-left: 4.66vw;
  }
}

/* #Station Locations
================================================== */
.station-locations .container {
  display: flex;
}

.station-locations .img {
  flex: 0 0 25vw;
  position: relative;
}

.station-locations .img img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.station-locations .img .pulse-animation {
  width: 19vw;
  height: 19vw;
  position: absolute;
  top: 21%;
  right: 0;
  transform: translateX(50%);
}

.station-locations .map {
  flex: 0 0 40.31vw;
  position: relative;
}

.station-locations .map #map {
  width: 100%;
  height: 52.81vw;
}

.station-locations .map-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 18vw;
  height: 100%;
  background-image: linear-gradient(to right, transparent, white);
  z-index: 20;
  pointer-events: none;
}

.station-locations .text {
  flex: 0 0 26.35vw;
  margin-left: auto;
  padding-top: 9vw;
}

.station-locations .location-search {
  margin: 3vw auto;
}

.station-locations .location-search form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d6d6d6;
  margin-top: 1vw;
  /* flex-direction: row-reverse; */
}

.station-locations .location-search form input {
  border-bottom: none;
}

.station-locations .location-search form img {
  width: 0.677vw;
  margin-bottom: 0;
  margin-left: 0.5vw;
  align-self: center;
  margin-right: 15%;
}

.station-locations .collapsible:not(:last-child) {
  margin-bottom: 3.125vw;
}

.station-locations .collapse-toggler {
  margin-bottom: 1.3vw;
}

.station-locations .collapse ul {
  display: flex;
  text-align: center;
  line-height: 1.27;
}

.station-locations .collapse ul li {
  width: 25%;
}

.station-locations .collapse img {
  width: 3.75vw;
  border-radius: 50%;
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-bottom: 1vw;
}

.station-locations .collapse ul li:not(:last-child) {
  margin-left: 1.3vw;
}

.station-locations .charging-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 12vw;
  height: 12vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: white;
  color: #e6e6e6;
  z-index: 30;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.station-locations .charging-btn img {
  width: 1.5vw;
  margin: 0.4vw auto;
}

.station-locations .charging-btn-inner {
  width: 8.85vw;
  height: 8.85vw;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
  position: relative;
  background-color: white;
}

.station-locations .charging-btn-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 2vw);
  height: calc(100% + 2vw);
  background-image: linear-gradient(to bottom right, #a7ff30, #a0f3bd, #84ffe4);
  border-radius: 50%;
  z-index: -2;
}

.station-locations .charging-btn-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 1vw);
  height: calc(100% + 1vw);
  background-color: white;
  border-radius: 50%;
  z-index: -1;
}

@media (min-width: 1024px) {
  .station-locations .collapse {
    height: auto !important;
  }
}

@media (max-width: 1023.98px) {
  .station-locations {
    overflow: hidden;
    margin-bottom: 13.33vw;
  }

  .station-locations .map #map {
    height: 148vw;
  }

  .station-locations .container {
    display: block;
  }

  .station-locations .img {
    padding-top: 10.66vw;
  }

  .station-locations .map-fade {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 20vh;
    background-image: linear-gradient(to bottom, transparent, white);
  }

  .station-locations .text {
    margin-left: 0;
    text-align: center;
    padding: 0 5.33vw;
    padding-top: 13.33vw;
    z-index: 50;
    position: relative;
  }

  /*  .station-locations .accordion {
  width: 63.73vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  height: 11.33vw;
  margin-bottom: -5.66vw;
  border-radius: 500px;
  box-shadow: 0 3px 24px rgba(0, 0, 0, .1);
  padding: 1.33vw;
  margin-top: 6vw;
  z-index: 50;
  position: relative;
  background-color: white;
  }*/

  .station-locations .accordion .collapsible {
    flex: 0 0 50%;
  }

  .station-locations .collapsible:not(:last-child) {
    margin-bottom: 0;
  }

  .station-locations .collapse-toggler {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 500px;
    transition: all 0.4s ease;
    background-color: transparent !important;
    width: 20vw;
    position: relative;
    right: 2vw;
    font-weight: bold;
    box-shadow: 0px 0px 0px !important;
  }

  .station-locations .collapse-toggler img {
    width: 2.66vw;
    margin-right: 1.33vw;
  }

  .station-locations .collapsible.show .collapse-toggler {
    background-color: #27fca0;
  }

  .station-locations .collapse {
    position: absolute;
    top: 150%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: -1;
    border-bottom-left-radius: 1.33vw;
    border-bottom-right-radius: 1.33vw;
    right: -80%;
    background: #fff;
  }

  .station-locations .collapse>div {
    padding: 11.33vw 0 6.65vw 0;
    position: relative;
    top: ;
  }

  .station-locations .collapse ul {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.27;
    margin-bottom: -5.6vw;
  }

  .station-locations .collapse ul li {
    flex: 0 0 50%;
    margin-bottom: 5.6vw;
  }

  .station-locations .collapse img {
    width: 11.33vw;
    margin-bottom: 1vw;
  }

  .station-locations .collapse ul li:not(:last-child) {
    margin-left: 0;
  }

  .station-locations .charging-btn {
    position: absolute;
    top: auto;
    bottom: 2vw;
    transform: none;
    right: 4vw;
    width: 37.33vw;
    height: 37.33vw;
  }

  .station-locations .charging-btn img {
    width: 4.93vw;
    margin: 1.33vw auto;
  }

  .station-locations .charging-btn-inner {
    width: 28vw;
    height: 28vw;
  }

  .station-locations .charging-btn-inner::after {
    width: calc(100% + 6vw);
    height: calc(100% + 6vw);
  }

  .station-locations .charging-btn-inner::before {
    width: calc(100% + 3vw);
    height: calc(100% + 3vw);
  }

  .station-locations .img .pulse-animation {
    width: 40vw;
    height: 40vw;
    top: 75%;
    right: 50%;
    transform: translateY(-50%) translateX(50%);
  }
}

/* #Customer Testimonials
================================================== */
.customer-testimonials {
  height: 44.58vw;
  overflow: hidden;
  background-image: linear-gradient(to bottom left, #e4ffbf, #abffc8);
  display: flex;
  align-items: center;
}

/* Heading */
.customer-testimonials .heading {
  flex: 0 0 43.64vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customer-testimonials .heading-wrap {
  flex: 0 0 17.18vw;
}

.customer-testimonials .heading h2 {
  line-height: 1;
}

.customer-testimonials .heading p {
  margin-top: 0.25vw;
  margin-bottom: 1.5vw;
}

/* Testimonials */
.customer-testimonials .row {
  display: flex;
}

.customer-testimonials .col {
  flex: 0 0 19.63vw;
  margin-left: 1vw;
}

.customer-testimonials .col:nth-child(1) {
  transform: translateY(-1.5vw);
}

.customer-testimonials .col:nth-child(2) {
  transform: translateY(3vw);
}

.customer-testimonials .col:nth-child(3) {
  transform: translateY(-6.5vw);
}

.customer-testimonials .card {
  width: 100%;
  height: 18.28vw;
  border-radius: 1.5vw;
  padding: 1.5vw;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.customer-testimonials .card:not(:last-child) {
  margin-bottom: 1vw;
}

.customer-testimonials .card:not(.card-empty) {
  background-color: white;
}

.customer-testimonials .card.card-empty {
  background-image: linear-gradient(to bottom right,
      #a7ff30,
      #9ff3be,
      #a0f3bd,
      #84ffe4);
  opacity: 0.5;
}

.customer-testimonials .card p {
  line-height: 1.36;
  margin-bottom: 1vw;
}

.customer-testimonials .card .author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.customer-testimonials .card .author img {
  height: 2.6vw;
  margin-left: 0.78vw;
}

@media (max-width: 1023.98px) {
  .customer-testimonials {
    height: auto;
    display: block;
    background-image: linear-gradient(to bottom,
        #27fca0,
        #eefff7,
        #aafff6,
        #ffffff);
  }

  /* Heading */
  .customer-testimonials .heading {
    display: block;
    text-align: center;
    padding: 13.33vw 0 10.66vw 0;
  }

  .customer-testimonials .heading h2 {
    line-height: 1;
  }

  .customer-testimonials .heading p {
    margin: 0 auto;
    width: 60vw;
    margin-top: 2vw;
    margin-bottom: 4vw;
  }

  /* Testimonials */
  .customer-testimonials .row {
    display: block;
    height: 140vw;
    overflow: hidden;
  }

  .customer-testimonials .col {
    margin-left: 0;
    margin-bottom: 2.5vw;
    display: flex;
    justify-content: center;
    height: 55.6vw;
  }

  .customer-testimonials .col:nth-child(1) {
    transform: translateX(31%);
  }

  .customer-testimonials .col:nth-child(2) {
    transform: translateX(-31%);
  }

  .customer-testimonials .col:nth-child(3) {
    transform: translateX(31%);
  }

  .customer-testimonials .card {
    flex: 0 0 59.73vw;
    height: 100%;
    margin: 0 1.33vw;
    border-radius: 4vw;
    padding: 4.66vw;
  }

  .customer-testimonials .card:not(:last-child) {
    margin-bottom: 0;
  }

  .customer-testimonials .card .author img {
    height: 7.33vw;
    margin-left: 2.66vw;
  }

  .customer-testimonials .card.card-empty {
    background-image: linear-gradient(to bottom left,
        #27fca0,
        #55ffe8,
        #2adbff);
    opacity: 0.75;
  }
}

/* #Product Slider
      ================================================== */
.product-slider {
  padding: 3.125vw 0 7vw 0;
}

/* Heading */
.product-slider h2 {
  text-align: center;
  margin-bottom: 0.78vw;
}

.product-slider .tab-navigation {
  margin-bottom: 3.65vw;
}

.product-slider .tab-navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slider .tab-btn:not(:last-child) {
  margin-left: 5.78vw;
}

.product-slider .tab-btn {
  border-bottom: 1px solid transparent;
  padding-bottom: 0.35vw;
  opacity: 0.35;
  transition: all 0.4s ease;
}

.product-slider .tab-btn.active {
  border-color: black;
  opacity: 1;
}

.product-slider .tab-btn a {
  display: flex;
  align-items: flex-end;
  line-height: 1;
}

.product-slider .tab-btn img {
  width: 2.3vw;
  height: 1.92vw;
  object-fit: contain;
  object-position: center;
  margin-left: 0.35vw;
}

/* Product */
.product-slider .swiper-slide {
  display: flex;
  align-items: center;
}

.product-slider .product-text {
  flex: 0 0 30.72vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  overflow: hidden;
}

.product-slider .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev) .product-text {
  flex: 0 0 0;
  opacity: 0;
}

.product-slider .product-text-wrap {
  flex: 0 0 16.4vw;
}

.product-slider h3 {
  line-height: 1;
}

.product-slider h4 {
  margin-bottom: 1.5vw;
}

.product-slider .product-text a {
  margin-top: 0.6vw;
}

.product-slider .product-img {
  position: relative;
  flex: 0 0 38.22vw;
}

.product-slider .product-img .img {
  aspect-ratio: 1;
  overflow: hidden;
}

.product-slider .product-img .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.product-slider .product-img .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.product-slider .swiper-slide-active .product-img .bg {
  opacity: 1;
  visibility: visible;
}

.product-slider .product-img .bg img {
  width: 100%;
}

.product-slider .swiper {
  padding-bottom: 3vw;
}

.product-slider .swiper-pagination {
  direction: ltr;
  font-family: inherit;
  font-size: 1.14vw;
}

/* Navigation */
.product-slider .tab-panel {
  position: relative;
}

.swiper-navigation .prev {
  position: absolute;
  top: 50%;
  right: 26vw;
  z-index: 20;
  transform: translateY(-100%);
  transition: all 0.4s ease;
}

.swiper-navigation .next {
  position: absolute;
  top: 50%;
  left: 26vw;
  z-index: 20;
  transform: translateY(-100%);
  transition: all 0.4s ease;
}

.swiper-navigation .prev,
.swiper-navigation .next {
  width: 3.125vw;
  border: 0;
  background-color: transparent;
}

.swiper-navigation .swiper-button-disabled {
  opacity: 0;
}

@media (max-width: 1023.98px) {
  .product-slider {
    padding: 18vw 0 0 0;
  }

  /* Heading */
  .product-slider h2 {
    margin-bottom: 3.73vw;
  }

  .product-slider .tab-navigation {
    margin-bottom: 8vw;
  }

  .product-slider .tab-btn:not(:last-child) {
    margin-left: 13.33vw;
  }

  .product-slider .tab-btn {
    padding-bottom: 2vw;
  }

  .product-slider .tab-btn img {
    width: 7.7vw;
    height: 6.65vw;
    margin-left: 1.33vw;
  }

  /* Product */
  .product-slider .swiper-slide {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .product-slider .product-text {
    flex: 0 0 100%;
    text-align: center;
  }

  .product-slider .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev) .product-text {
    flex: 0 0 100%;
    opacity: 1;
  }

  .product-slider .product-text-wrap {
    flex: 0 0 80%;
  }

  .product-slider h4 {
    margin-bottom: 4.5vw;
  }

  .product-slider .product-text a {
    margin-top: 2vw;
  }

  .product-slider .product-img {
    width: 76.933vw;
    margin-bottom: 25.333vw;
  }

  .product-slider .swiper-navigation img {
    width: 9.467vw;
    height: auto;
  }

  /*
        .product-slider .product-img {
        flex: 0 0 100%;
        margin-bottom: 35.86vw;
      }

      .product-slider .product-img .img a {
      display: block;
    }

    .product-slider .product-img .img img {
    width: 51.33vw;
    height: 70.26vw;
    margin: 0 auto;
  }

  .product-slider .product-img .bg {
  opacity: 1;
  visibility: visible;
  width: 76.93vw;
}

.product-slider .product-img .bg img {
width: 76.93vw;
}
*/
  .product-slider .swiper {
    padding-bottom: 0;
  }

  .product-slider .swiper-pagination {
    font-family: inherit;
    font-size: 3.46vw;
    bottom: 0;
    top: 91.33vw;
  }

  /* Navigation */
  .swiper-navigation .prev {
    position: absolute;
    top: 78.53vw;
    right: 38.93vw;
    z-index: 20;
    transform: none;
    transition: all 0.4s ease;
  }

  .swiper-navigation .next {
    position: absolute;
    top: 78.53vw;
    left: 38.93vw;
    z-index: 20;
    transform: none;
    transition: all 0.4s ease;
  }

  .swiper-navigation .prev,
  .swiper-navigation .next {
    width: 9.33vw;
  }

  .swiper-navigation .swiper-button-disabled {
    opacity: 0.3;
  }
}

/* #Customers
================================================== */
.customers {
  padding: 6.25vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -6.25vw;
  position: relative;
}

.customers .container {
  padding: 13.8vw;
}

.customers .circle {
  border-radius: 50%;
  width: 27.5vw;
  height: 27.5vw;
  box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2.5vw;
}

.customers .circle p {
  margin-bottom: 1.3vw;
}

.customers ul img {
  width: 5.2vw;
  height: 4.5vw;
  object-fit: contain;
  object-position: center;
}

.customers .text {
  position: relative;
  z-index: 10;
}

.customers ul li {
  position: absolute;
  z-index: 10;
}

.customers ul li:nth-child(1) {
  top: 50%;
  right: 19.3vw;
}

.customers ul li:nth-child(2) {
  top: 46.51vw;
  right: 25vw;
}

.customers ul li:nth-child(3) {
  top: 10vw;
  right: 29.6vw;
}

.customers ul li:nth-child(4) {
  top: 18.71vw;
  right: 33.33vw;
}

.customers ul li:nth-child(5) {
  bottom: 10vw;
  right: 40vw;
}

.customers ul li:nth-child(6) {
  top: 9vw;
  right: 49vw;
}

.customers ul li:nth-child(7) {
  bottom: 7.3vw;
  left: 33.33vw;
}

.customers ul li:nth-child(8) {
  bottom: 24.2vw;
  left: 28vw;
}

.customers ul li:nth-child(9) {
  top: 11.2vw;
  left: 30vw;
}

.customers ul li:nth-child(10) {
  top: 20vw;
  left: 29vw;
}

.customers ul li:nth-child(11) {
  top: 47%;
  left: 18vw;
}

@media (max-width: 1023.98px) {
  .customers {
    padding: 13.33vw 0;
    margin-top: -13.33vw;
  }

  .customers .container {
    padding: 26.66vw 0;
  }

  .customers .circle {
    width: 52.53vw;
    height: 52.53vw;
    padding: 0;
    padding-top: 5vw;
  }

  .customers .circle p {
    margin-bottom: 1.33vw;
  }

  .customers ul img {
    width: 13.33vw;
    height: 16.33vw;
  }

  .customers ul li:nth-child(1) {
    top: 50%;
    right: 7vw;
  }

  .customers ul li:nth-child(2) {
    display: none;
  }

  .customers ul li:nth-child(3) {
    top: 13vw;
    right: 18vw;
  }

  .customers ul li:nth-child(4) {
    top: 40vw;
    right: 6vw;
  }

  .customers ul li:nth-child(5) {
    bottom: 28vw;
    right: 20vw;
  }

  .customers ul li:nth-child(6) {
    top: 9vw;
    right: 61vw;
  }

  .customers ul li:nth-child(7) {
    bottom: 13vw;
    left: 40vw;
  }

  .customers ul li:nth-child(8) {
    bottom: 50vw;
    left: 8vw;
  }

  .customers ul li:nth-child(9) {
    top: 23vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .customers ul li:nth-child(10) {
    top: 30vw;
    left: 10vw;
  }

  .customers ul li:nth-child(11) {
    top: auto;
    bottom: 26vw;
    left: 3vw;
  }
}

/* #Why Us
================================================== */
.why-us {
  padding: 6.25vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  position: relative;
}

.why-us .container {
  padding: 13.8vw;
}

.why-us .circle {
  border-radius: 50%;
  width: 27.5vw;
  height: 27.5vw;
  box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2.5vw;
}

.why-us .circle p {
  margin-bottom: 1.3vw;
}

.why-us .text {
  position: relative;
  z-index: 10;
}

.why-us .elements img {
  width: 3.125vw;
  height: 3.125vw;
  object-fit: contain;
  object-position: center;
}

.why-us .elements h3 {
  line-height: 1;
}

.why-us .elements li {
  position: absolute;
  max-width: 12vw;
}

.why-us .elements li::after {
  content: "";
  position: absolute;
  right: -1.78vw;
  top: 35%;
  transform: translateY(-50%);
  width: 1vw;
  height: 1vw;
  background-color: #a7ff35;
  border-radius: 50%;
}

.why-us ul li {
  position: absolute;
  z-index: 10;
}

.why-us ul li:nth-child(1) {
  top: 44%;
  right: 19.3vw;
}

.why-us ul li:nth-child(2) {
  top: 0;
  right: 53.43vw;
}

.why-us ul li:nth-child(3) {
  top: 10vw;
  right: 29.6vw;
}

.why-us ul li:nth-child(4) {
  top: 38.5vw;
  right: 69.37vw;
}

.why-us ul li:nth-child(5) {
  bottom: 10vw;
  right: 25vw;
}

.why-us ul li:nth-child(6) {
  top: 19vw;
  right: 73vw;
}

.why-us ul li:nth-child(7) {
  bottom: 7.3vw;
  left: 33.33vw;
}

.why-us ul li:nth-child(8) {
  bottom: 48.2vw;
  left: 43vw;
}

@media (max-width: 1023.98px) {
  .why-us {
    padding: 13.33vw 0;
  }

  .why-us .container {
    padding: 26.66vw 0;
  }

  .why-us .circle {
    width: 52.53vw;
    height: 52.53vw;
    padding: 0;
    padding-top: 5vw;
  }

  .why-us .circle p {
    margin-bottom: 1.33vw;
  }

  .why-us .elements img {
    width: 8vw;
    height: 8vw;
  }

  .why-us .elements li {
    max-width: 25.33vw;
    line-height: 1.1;
  }

  .why-us .elements li::after {
    right: -4vw;
    top: 3.5vw;
    transform: translateY(-50%);
    width: 2.66vw;
    height: 2.66vw;
  }

  .why-us ul li:nth-child(1) {
    top: 71%;
    right: 10vw;
  }

  .why-us ul li:nth-child(2) {
    top: 9%;
    right: 29vw;
  }

  .why-us ul li:nth-child(3) {
    top: 88vw;
    right: 73vw;
  }

  .why-us ul li:nth-child(4) {
    top: 29vw;
    right: 6vw;
  }

  .why-us ul li:nth-child(5) {
    bottom: 5vw;
    right: 52vw;
  }

  .why-us ul li:nth-child(6) {
    top: 9vw;
    right: 68vw;
  }

  .why-us ul li:nth-child(7) {
    display: none;
  }

  .why-us ul li:nth-child(8) {
    bottom: 84vw;
    left: 4vw;
  }
}

/* #Benefits
================================================== */
.benefits {
  padding: 0;
  overflow: hidden;
}

.benefits h2 {
  text-align: center;
}

.benefits .container {
  padding-top: 29.63vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.benefits .container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20vw;
  background-image: linear-gradient(to top, white, transparent);
}

.benefits .circle {
  border-radius: 50%;
  width: 27.5vw;
  height: 27.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.benefits .circle img {
  width: 8vw;
}

.benefits .elements img {
  width: 3.125vw;
  height: 3.125vw;
  object-fit: contain;
  object-position: center;
}

.benefits .elements h3 {
  line-height: 1;
}

.benefits .elements li {
  position: absolute;
  max-width: 12vw;
}

.benefits .elements li::after {
  content: "";
  position: absolute;
  right: -1.78vw;
  top: 35%;
  transform: translateY(-50%);
  width: 1vw;
  height: 1vw;
  background-color: #a7ff35;
  border-radius: 50%;
}

.benefits .elements li:nth-child(1) {
  top: 29.68vw;
  right: 12.5vw;
}

.benefits .elements li:nth-child(2) {
  top: 20vw;
  right: 29.2vw;
}

.benefits .elements li:nth-child(3) {
  top: 9vw;
  right: 32.3vw;
}

.benefits .elements li:nth-child(4) {
  top: 34.4vw;
  right: 34.4vw;
}

.benefits .elements li:nth-child(5) {
  top: 21vw;
  right: 51vw;
}

.benefits .elements li:nth-child(6) {
  top: 5.2vw;
  right: 54.4vw;
}

.benefits .elements li:nth-child(7) {
  top: 36vw;
  right: 74vw;
}

.benefits .elements li:nth-child(8) {
  top: 16.66vw;
  right: 80.5vw;
}

@media (max-width: 1023.98px) {
  .benefits {
    padding: 0;
    overflow: hidden;
    height: 177vw;
    display: flex;
    flex-direction: column;
    margin-top: 13.33vw;
  }

  .benefits h2 {
    text-align: center;
  }

  .benefits .container {
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    flex-grow: 1;
  }

  .benefits .container::after {
    display: none;
  }

  .benefits .circle {
    border-radius: 50%;
    width: 64.66vw;
    height: 64.66vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: auto;
    transform: translateX(-25%);
  }

  .benefits .circle img {
    width: 16.13vw;
  }

  .benefits .elements img {
    width: 8vw;
    height: 8vw;
  }

  .benefits .elements li {
    max-width: 25.33vw;
  }

  .benefits .elements li::after {
    right: -4vw;
    top: 3.5vw;
    transform: translateY(-50%);
    width: 2.66vw;
    height: 2.66vw;
  }

  .benefits .elements li:nth-child(1) {
    top: 16vw;
    right: auto;
    left: 6vw;
  }

  .benefits .elements li:nth-child(2) {
    top: 43%;
    right: 9.33vw;
  }

  .benefits .elements li:nth-child(3) {
    top: 130vw;
    right: 63vw;
  }

  .benefits .elements li:nth-child(4) {
    top: 77vw;
    right: 40vw;
  }

  .benefits .elements li:nth-child(5) {
    top: 130vw;
    right: 18.66vw;
  }

  .benefits .elements li:nth-child(6) {
    top: 40vw;
    right: 26.66vw;
  }

  .benefits .elements li:nth-child(7) {
    top: auto;
    bottom: 0;
    right: 63vw;
  }

  .benefits .elements li:nth-child(8) {
    top: 47vw;
    right: 75vw;
  }
}

/* #Homepage Order Mobile
================================================== */
@media (max-width: 1023.98px) {
  .home-page {
    display: block;
  }

  .home-page .home-banner {
    order: -20;
  }

  .home-page .benefits {
    order: -19;
  }

  .home-page .product-slider {
    order: -18;
  }

  .home-page .post-slider-1 {
    order: -17;
  }
}

/* #Error
================================================== */
.error {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error .container {
  width: 52.4%;
}

.error .img {
  margin-bottom: 1.3vw;
}

.error .img img {
  width: 100%;
}

.error h1 {
  margin-bottom: 1.5vw;
  line-height: 1;
}

@media (max-width: 1023.98px) {
  .error .container {
    width: 100%;
  }

  .error .img {
    margin-bottom: 9.33vw;
  }

  .error h1 {
    margin-bottom: 4vw;
  }
}

/* #FAQ
================================================== */
.faq-page {
  padding-top: 6.35vw;
}

.faq {
  padding: 3.9vw 0 1.85vw 0;
}

.faq .container {
  width: 87.4%;
}

.faq .tabs {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Sidebar */
.faq .sidebar {
  flex: 0 0 30.36vw;
  position: sticky;
  top: 10vw;
}

.faq .sidebar .img {
  margin-right: -6.3vw;
}

.faq h1 {
  margin-bottom: 1.2vw;
}

.faq .tab-btn {
  color: #c1c1c1;
  padding-right: 1.5vw;
  position: relative;
  transition: all 0.4s ease;
  margin-bottom: 1vw;
  line-height: 1;
}

.faq .tab-btn.active {
  color: black;
}

/* Main */
.faq .main {
  flex-grow: 1;
}

.faq .accordion {
  border-top: 1px solid #d6d6d6;
}

.faq .collapsible {
  border-bottom: 1px solid #d6d6d6;
  padding: 1.66vw 0;
}

.faq .collapse>div {
  width: 33.33vw;
  line-height: 1.5;
  margin-right: 5.2vw;
  padding-top: 1vw;
}

.faq .collapse-toggler {
  display: flex;
  align-items: center;
  line-height: 1;
}

.faq .collapse-toggler .icon img {
  width: 2.8vw;
  margin-left: 2.4vw;
}

.faq .collapse-toggler .arrow {
  margin-right: auto;
}

.faq .collapse-toggler .arrow img {
  width: 0.87vw;
  transition: all 0.4s ease;
}

.faq .collapsible.show .collapse-toggler .arrow img {
  transform: rotate(180deg);
}

.faq .collapse-toggler .text {
  flex: 0 0 32.96vw;
}

@media (min-width: 1024px) {
  .faq .tab-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    width: 1vw;
    background-color: black;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .faq .tab-btn.active::after {
    opacity: 1;
  }
}

@media (max-width: 1023.98px) {
  .faq-page {
    padding-top: 19.36vw;
  }

  .faq {
    padding: 4vw 0 0 0;
  }

  .faq .container {
    width: 90%;
  }

  .faq .tabs {
    display: block;
  }

  /* Sidebar */
  .faq .sidebar {
    margin-bottom: 7.33vw;
    position: static;
    overflow: hidden;
  }

  .faq h1 {
    text-align: center;
    margin-bottom: 6vw;
  }

  .faq .tab-navigation ul {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: auto;
    padding-bottom: 4vw;
  }

  .faq .tab-btn {
    padding-right: 0;
    margin-bottom: 0;
  }

  .faq .tab-btn:not(:last-child) {
    margin-left: 5.33vw;
  }

  /* Main */
  .faq .collapsible {
    padding: 4.26vw 0;
  }

  .faq .collapse>div {
    width: 78vw;
    line-height: 1.16;
    margin-right: 0;
    padding-top: 1.33vw;
  }

  .faq .collapse-toggler {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.7vw;
  }

  .faq .collapse-toggler .icon img {
    width: 7.2vw;
    margin-left: 0;
    margin-bottom: 2.5vw;
  }

  .faq .collapse-toggler .arrow {
    margin-right: auto;
  }

  .faq .collapse-toggler .arrow img {
    width: 3.73vw;
  }

  .faq .collapse-toggler .text {
    flex: 1;
  }
}

/* #Business Customers FAQ
================================================== */
.business-customers-page .faq {
  position: relative;
}

/* Sidebar */
.business-customers-page .faq .sidebar {
  position: static;
}

.business-customers-page .faq h1 {
  margin-bottom: 31.2vw;
}

.business-customers-page .faq .sidebar .img {
  position: absolute;
  top: 14vw;
  right: 0;
}

.business-customers-page .faq .sidebar .img img,
.business-customers-page .faq .sidebar .img picture {
  width: 30.57vw;
}

/* Main */
.business-customers-page .faq .accordion {
  margin-bottom: 1.3vw;
}

@media (max-width: 1023.98px) {

  /* Sidebar */
  .business-customers-page .faq .sidebar {
    position: static;
    padding-top: 73.46vw;
    margin-bottom: 6.65vw;
  }

  .business-customers-page .faq .sidebar h1 {
    margin-bottom: 0;
  }

  .business-customers-page .faq .sidebar .img {
    position: absolute;
    bottom: auto;
    top: 4vw;
    right: 0;
  }

  .business-customers-page .faq .sidebar .img img,
  .business-customers-page .faq .sidebar .img picture {
    width: 95.73vw;
  }

  /* Main */
  .business-customers-page .faq .accordion {
    margin-bottom: 6.65vw;
  }

  .business-customers-page .faq .link-wrap {
    display: flex;
    justify-content: center;
  }
}

/* #Customers 2
================================================== */
.customers-2 {
  padding-bottom: 6.25vw;
}

.customers-2 .container {
  width: 89%;
}

.customers-2 h2 {
  text-align: center;
  margin-bottom: 4.16vw;
  line-height: 1;
}

.customers-2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -3.125vw;
}

.customers-2 li {
  flex: 0 0 16.66%;
  margin-bottom: 3.125vw;
}

.customers-2 img {
  margin: 0 auto;
  width: 5vw;
  height: 4vw;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1023.98px) {
  .customers-2 {
    padding: 13.33vw 0 0 0;
  }

  .customers-2 .container {
    width: 100%;
  }

  .customers-2 h2 {
    margin-bottom: 8vw;
  }

  .customers-2 ul {
    margin-bottom: -7vw;
  }

  .customers-2 li {
    flex: 0 0 33.33%;
    margin-bottom: 7vw;
  }

  .customers-2 img {
    width: 15vw;
    height: 13vw;
  }
}

/* #Projects
================================================== */
.projects {
  padding-bottom: 4.16vw;
  position: relative;
  z-index: 1;
}

.projects .container {
  padding: 0 2.34vw;
}

.projects .heading {
  margin-bottom: 1.8vw;
  text-align: center;
}

.projects .tab-navigation {
  margin-bottom: 2.34vw;
}

.projects .tab-navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects .tab-btn:not(:last-child) {
  margin-left: 2vw;
}

.projects .tab-btn {
  color: #949494;
}

.projects .tab-btn.active {
  color: black;
}

.projects .cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 2vw;
  margin-bottom: 1.5vw;
}

.projects .cards li:nth-child(1) {
  grid-column: 1 / 4;
}

.projects .cards li:nth-child(2) {
  grid-column: 4 / 7;
}

.projects .cards li:nth-child(3) {
  grid-column: 1 / -1;
}

.projects .cards li:nth-child(4) {
  grid-column: 1 / 3;
}

.projects .cards li:nth-child(5) {
  grid-column: 3 / 5;
}

.projects .cards li:nth-child(6) {
  grid-column: 5 / -1;
}

@media (min-width: 1024px) {
  .projects .solutions-card .text {
    width: 26vw;
    justify-content: flex-end;
    overflow: hidden;
    transform: none !important;
  }

  .projects .solutions-card .text p {
    max-height: 0;
  }

  .projects .solutions-card:hover .text p {
    max-height: 5.2vw;
  }
}

@media (max-width: 1023.98px) {
  .projects {
    padding: 12vw 0 7.33vw 0;
  }

  .projects .container {
    padding: 0 5.33vw;
  }

  .projects .heading {
    margin-bottom: 5.33vw;
  }

  .projects .tab-navigation {
    margin: 0 -5.33vw;
    /* padding-right: 5.33vw; */
    padding-right: unset !important;
    margin-bottom: 3.33vw;
  }

  .projects .tab-navigation ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    overflow: auto;
    padding-bottom: 4vw;
  }

  .projects .tab-btn {
    margin-left: 5.33vw !important;
  }

  .projects .tab-btn {
    color: #949494;
  }

  .projects .tab-btn.active {
    color: black;
  }

  .projects .cards {
    display: block;
    margin-bottom: 6.65vw;
  }

  .projects .cards li:not(:last-child) {
    margin-bottom: 5vw;
  }

  .projects .solutions-card .text {
    justify-content: flex-end;
    width: 69.33vw;
  }

  .projects .solutions-card h3 {
    width: 100%;
  }
}

/* #Business Customers Order Mobile
================================================== */
@media (max-width: 1023.98px) {
  .business-customers-page:not(.business-page) {
    display: flex;
    flex-direction: column;
  }

  .business-customers-page:not(.business-page) .banner {
    order: -20;
  }

  .business-customers-page:not(.business-page) .post-slider-1 {
    order: -18;
  }

  .business-customers-page:not(.business-page) .why-us {
    order: -17;
  }
}

/* #Popup
================================================== */
.popup {
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
}

.popup-close img {
  width: 1.5vw;
  margin-bottom: 0.9vw;
}

.popup-content {
  width: 62.5%;
  border-radius: 0.5vw;
  overflow: hidden;
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1023.98px) {
  .popup-close img {
    width: 5.33vw;
    margin-bottom: 3.33vw;
  }

  .popup-content {
    width: 90%;
    border-radius: 1.33vw;
  }
}

/* #Marketing Popup
================================================== */
#marketing-popup .popup-content {
  display: flex;
  align-items: center;
}

#marketing-popup .img {
  flex: 0 0 50%;
  flex-shrink: 0;
}

#marketing-popup .img img {
  width: 31.25vw;
  height: 31.25vw;
  object-fit: cover;
  object-position: center;
}

#marketing-popup .text {
  text-align: center;
  padding: 2.96vw;
}

#marketing-popup .text h2 {
  margin-bottom: 1vw;
  line-height: 1;
}

#marketing-popup .text p {
  margin-bottom: 2.34vw;
  line-height: 1.5;
}

@media (max-width: 1023.98px) {
  #marketing-popup .popup-content {
    display: block;
  }

  #marketing-popup .img img {
    width: 100%;
    height: 80vw;
  }

  #marketing-popup .text {
    padding: 6.65vw 5.33vw 8vw 5.33vw;
  }

  #marketing-popup .text h2 {
    margin-bottom: 2.66vw;
  }

  #marketing-popup .text p {
    margin-bottom: 6.65vw;
    line-height: 1.3;
  }
}

/* #Text Page Content
================================================== */
.text-page-content {
  padding: 8.43vw 0 6.77vw 0;
  border-bottom: 1px solid #d6d6d6;
}

.text-page-content .container {
  width: 46.5%;
}

.text-page-content h1 {
  margin-bottom: 2.34vw;
}

.text-page-content .group:not(:last-child) {
  margin-bottom: 1.8vw;
}

.text-page-content h2 {
  margin-bottom: 0.78vw;
}

.text-page-content p,
.text-page-content ul {
  line-height: 1.5;
  margin-bottom: 0.78vw;
}

.text-page-content ul {
  list-style: initial;
  padding-right: 19px;
}

.text-page-content ul li:not(:last-child) {
  margin-bottom: 0.78vw;
}

@media (max-width: 1023.98px) {
  .text-page-content {
    padding: 23.33vw 0 16vw 0;
  }

  .text-page-content .container {
    width: 90%;
  }

  .text-page-content h1 {
    text-align: center;
    margin-bottom: 7.33vw;
  }

  .text-page-content .group:not(:last-child) {
    margin-bottom: 8vw;
  }

  .text-page-content h2 {
    margin-bottom: 2.66vw;
  }

  .text-page-content p,
  .text-page-content ul {
    line-height: 1.16;
    margin-bottom: 2vw;
  }

  .text-page-content ul li:not(:last-child) {
    margin-bottom: 2vw;
  }
}

/* #Blog
================================================== */
.blog {
  padding: 2.34vw 0 2.6vw 0;
}

.blog .tab-navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .tab-navigation ul li:not(:last-child) {
  margin-left: 2vw;
}

.blog .tab-btn {
  color: #949494;
}

.blog .tab-btn.active {
  color: black;
}

@media (max-width: 1023.98px) {
  .blog {
    padding: 5.33vw 0;
  }

  .blog .tab-navigation {
    margin-bottom: 5.33vw;
  }

  .blog .tab-navigation ul li:not(:last-child) {
    margin-left: 4vw;
  }
}

/* #Subscription
================================================== */
.subscription {
  padding: 9.11vw;
  text-align: center;
}

.subscription .container {
  width: 23.54vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subscription p {
  line-height: 1.5;
}

.subscription input {
  width: 100%;
  border: none;
  border-radius: 500px;
  background-color: #f1f1f1;
  height: 2.34vw;
  padding: 0 1vw;
  margin: 1.4vw 0;
}

.subscription input::placeholder {
  color: black;
}

@media (max-width: 1023.98px) {
  .subscription {
    padding: 24vw 0;
    text-align: center;
  }

  .subscription .container {
    width: 75%;
  }

  .subscription p {
    line-height: 1.16;
    margin-top: 1vw;
  }

  .subscription input {
    height: 9vw;
    padding: 0 4vw;
    margin: 2.66vw 0 3vw 0;
  }
}

/* #Product Slider 2
================================================== */
.product-slider-2 .post-slider {
  /* padding: 0; */
}

/* #Blog Post
================================================== */
.blog-post {
  padding: 6.35vw 0 8.33vw 0;
}

.blog-post .container {
  width: 50%;
}

.blog-post .featured-img {
  margin-bottom: 2vw;
}

.blog-post .featured-img img {
  width: 100%;
  height: 20.31vw;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5vw;
}

.blog-post .text {
  padding: 0 4.16vw;
}

.blog-post .heading {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 1.3vw;
}

.blog-post .social {
  margin: 1.3vw 0;
}

.blog-post .img {
  margin: 2vw 0;
}

.blog-post .img img {
  width: 100%;
  height: 19.16vw;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5vw;
}

.blog-post p {
  font-size: 1.04vw;
}

.blog-post h3 {
  margin: 2vw 0 0.5vw 0;
  font-size: 1.3vw;
}

.content-and-image p {
  font-size: 1.04vw;
}

.content-and-image ul li {
  font-size: 1.04vw;
}

.content-and-image ul {
  list-style: inherit !important;
}

@media (max-width: 1023.98px) {
  .blog-post {
    padding: 20vw 0 14.66vw 0;
  }

  .content-and-image ul li {
    font-size: 4vw;
  }

  .blog-post p {
    /* font-size: 2.92vw; */
    font-size: 4vw;
  }

  .content-and-image p {
    font-size: 4vw;
  }

  .blog-post ol li {
    font-size: 4vw !important;
  }

  .blog-post .container {
    width: 90%;
  }

  .blog-post .featured-img {
    margin-bottom: 6.65vw;
  }

  .blog-post .featured-img img {
    height: 62vw;
    border-radius: 1.33vw;
  }

  .blog-post .text {
    padding: 0;
    line-height: 1.16;
  }

  .blog-post .heading {
    padding-bottom: 6.65vw;
    text-align: center;
  }

  .blog-post .heading h1 {
    line-height: 1;
    margin: 2vw 0;
  }

  .blog-post .social {
    margin: 6.65vw 0;
  }

  .blog-post .social ul {
    justify-content: center;
  }

  .blog-post .img {
    margin: 6.65vw 0;
  }

  .blog-post .img img {
    height: 52vw;
    border-radius: 1.33vw;
  }

  .blog-post h3 {
    margin: 6.65vw 0 2vw 0;
    font-size: 4.4vw;
    text-align: center;
  }
}

/* #Charging Stations
================================================== */
.charging-stations {
  padding-top: 5.2vw;
  padding-bottom: 5.2vw;
}

.charging-stations .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10.5vw 0 5.7vw;
}

.charging-stations .text {
  /* flex: 0 0 27vw; */
  flex: 0 0 31vw;
}

.charging-stations .img {
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
  flex: 0 0 51.9vw;
  position: relative;
}

.charging-stations .swiper-navigation .next {
  left: 0;
}

.charging-stations .swiper-navigation .prev {
  right: 0;
}

.charging-stations .swiper-slide img {
  width: 42.55vw;
  height: 38.64vw;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5vw;
  margin: 0 auto;
}

@media (max-width: 1023.98px) {
  .charging-stations {
    padding-top: 10vw;
  }

  .charging-stations .container {
    display: block;
    padding: 0 5.33vw;

  }

  .charging-stations .text {
    text-align: center;
    line-height: 1.16;
    margin-bottom: 6.65vw;
  }

  .charging-stations .text h2 {
    margin-bottom: 1vw;
  }

  .charging-stations .img {
    flex: 0 0 51.9vw;
    position: relative;
    padding-bottom: 13.33vw;
  }

  .charging-stations .swiper-navigation .next {
    left: 38%;
    top: auto;
    bottom: 0;
  }

  .charging-stations .swiper-navigation .prev {
    right: 38%;
    top: auto;
    bottom: 0;
  }

  .charging-stations .swiper-slide img {
    width: 100%;
    height: 80vw;
    border-radius: 1.33vw;
  }
}

/* #Contact
================================================== */
.contact-page .banner .circle {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20vw;
  height: 20vw;
}

.contact {
  padding-bottom: 8.6vw;
  position: relative;
  z-index: 20;
  margin-top: -2.8vw;
}

.contact .container {
  width: 75%;
}

.contact .icons {
  margin-bottom: 7.8vw;
}

.contact .icons ul {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact .icons li:not(:last-child) {
  margin-left: 2.6vw;
}

.contact .icons img {
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  margin-bottom: 0.5vw;
  width: 5.6vw;
}

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

.contact .form {
  flex: 0 0 33.17vw;
  margin-left: 14vw;
  padding: 3.38vw 4.5vw;
  border-radius: 0.5vw;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
  position: relative;
  background-color: white;
}

.contact .form::after {
  content: "";
  position: absolute;
  top: 0.6vw;
  left: 0.6vw;
  width: 100%;
  height: 100%;
  background-color: #90ff00;
  border-radius: 0.5vw;
  z-index: -1;
}

.contact .form::before {
  content: "";
  position: absolute;
  top: 1.2vw;
  left: 1.2vw;
  width: 100%;
  height: 100%;
  background-color: #e6ffc7;
  border-radius: 0.5vw;
  z-index: -2;
}

.contact .form .bottom {
  text-align: center;
  width: 12.4vw;
  margin: 0 auto;
  margin-top: 1.8vw;
}

.contact .form .bottom p {
  line-height: 1.38;
  margin-bottom: 0.6vw;
}

.contact .form form {
  margin-top: 1vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .form-group {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
}

.contact .form-group:not(:last-child) {
  margin-bottom: 1.5vw;
}

.contact .form-group:nth-child(2),
.contact .form-group:nth-child(3),
.contact .form-group:nth-child(4),
.contact .form-group:nth-child(5) {
  flex: 0 0 47%;
}

.contact textarea {
  resize: none;
  border: 1px solid #bfbfbf;
  border-radius: 0.25vw;
  padding: 0.78vw;
  color: #bfbfbf;
}

.contact label {
  margin-bottom: 0.5vw;
}

.contact .text h2 {
  margin-bottom: 2vw;
}

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

.contact .text p img {
  width: 1vw;
  margin-left: 0.5vw;
}

.contact .text ul li {
  display: flex;
  align-items: center;
  margin-bottom: 2.6vw;
}

.contact .text ul img {
  width: 1.7vw;
  height: 1.7vw;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.contact .text ul p {
  margin-right: 1vw;
  padding-right: 1.3vw;
  border-right: 1px solid #bfbfbf;
}

@media (max-width: 1023.98px) {
  .contact-page .banner .circle {
    width: 40vw;
    height: 40vw;
  }

  .contact {
    padding-bottom: 13.33vw;
    margin-top: -11.86vw;
  }

  .contact .container {
    width: 86%;
  }

  .contact .icons {
    margin-bottom: 10.33vw;
  }

  .contact .icons li:not(:last-child) {
    margin-left: 2.66vw;
  }

  .contact .icons img {
    margin-bottom: 2vw;
    width: 23.73vw;
  }

  .contact .row {
    display: block;
  }

  .contact .form {
    margin-left: 0;
    padding: 6.65vw 6vw 14.66vw 6vw;
    border-radius: 1.33vw;
    margin-bottom: 20vw;
  }

  .contact .form::after {
    top: 2vw;
    left: 2vw;
    border-radius: 1.33vw;
  }

  .contact .form::before {
    top: 4vw;
    left: 4vw;
    border-radius: 1.33vw;
  }

  .contact .form .bottom {
    width: 49vw;
    margin-top: 9.33vw;
  }

  .contact .form .bottom p {
    line-height: 1.38;
    margin-bottom: 1.33vw;
  }

  .contact .form form {
    margin-top: 4vw;
    display: block;
  }

  .contact .form-group:not(:last-child) {
    margin-bottom: 4vw;
  }

  .contact textarea {
    border-radius: 5px;
    padding: 2vw;
  }

  .contact label {
    margin-bottom: 1.33vw;
  }

  .contact .text {
    text-align: center;
  }

  .contact .text h2 {
    margin-bottom: 4vw;
  }

  .contact .text p img {
    width: 4vw;
    margin-left: 4vw;
  }

  .contact .text ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 6.65vw;
  }

  .contact .text ul img {
    width: 8.6vw;
    height: 8.6vw;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
  }

  .contact .text ul p {
    margin-right: 0;
    padding-right: 0;
    margin-top: 2.66vw;
    padding-top: 2.66vw;
    border-right: none;
    position: relative;
  }

  .contact .text ul p::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 18vw;
    background-color: #bfbfbf;
  }
}

/* #Cards Banner
================================================== */
.cards-banner {
  padding: 3.125vw 0;
}

.cards-banner .cards {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards-banner .card {
  display: flex;
  align-items: center;
  background-color: black;
  color: white;
  flex: 0 0 47.3vw;
  border-radius: 0.5vw;
  overflow: hidden;
}

.cards-banner .card:first-child {
  margin-left: 2.34vw;
}

.cards-banner .card .img {
  flex-shrink: 0;
}

.cards-banner .card .img img {
  width: 29vw;
  height: 22.34vw;
  object-fit: cover;
  object-position: center;
}

.cards-banner .card .text {
  flex-grow: 1;
  padding: 0 1.5vw;
  text-align: center;
}

.cards-banner .card .text p {
  padding: 0.5vw 0 0.75vw;
}

.cards-banner .card .logo img {
  margin: 0 auto;
  width: 6.25vw;
}

@media (max-width: 1023.98px) {
  .cards-banner {
    padding: 12vw 0;
  }

  .cards-banner .cards {
    display: block;
    width: 100%;
    padding: 0 5.33vw;
  }

  .cards-banner .card {
    flex-grow: 1;
    position: relative;
    border-radius: 1.33vw;
  }

  .cards-banner .card:first-child {
    margin-left: 0;
    margin-bottom: 5.33vw;
  }

  .cards-banner .card .img img {
    width: 100%;
    height: 50.66vw;
  }

  .cards-banner .card .img {
    position: relative;
    width: 50%;
  }

  .cards-banner .card .text {
    width: 50%;
    padding: 0 2vw;
    text-align: center;
    z-index: 1;
  }

  .cards-banner .card .text p {
    padding: 1vw 0 2vw;
  }

  .cards-banner .card .logo img {
    margin: 0 auto;
    width: 22vw;
  }
}

/* #About Page
================================================== */
.about-page .banner .text {
  width: 35%;
}

@media (max-width: 1023.98px) {
  .about-page .banner .text {
    width: 75%;
  }
}

/* #History
================================================== */
.history {
  background-color: white;
  position: relative;
}

.history .container {
  width: 88%;
}

.history .cd-timeline {
  padding: 0 6px;
  color: black;
  background-color: white;
}

.history .cd-timeline__content {
  direction: rtl;
  padding: 1.3vw;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 30.7vw;
}

.history .cd-timeline__content img {
  width: 100%;
  height: 28vw;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5vw;
}

.history .cd-timeline__content h3 {
  margin: 1vw 0 0.6vw 0;
}

.history .cd-timeline__content p {
  line-height: 1.5;
}

.cd-timeline__img {
  margin: 0;
}

.cd-timeline__img img {
  width: 1vw;
  height: auto;
}

.cd-timeline__content::before {
  top: 2.13vw;
}

.cd-timeline__block:nth-child(even) .cd-timeline__img {
  background-color: #212752;
}

.history .btn {
  min-width: 0 !important;
  font-size: 1.04vw !important;
}

.cd-timeline__container {
  padding: 9.37vw 0;
}

.cd-timeline__container::before {
  width: 3px;
  background: #27fca0;
  background: #27fca0;
}

.history .lightning img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 7.5vw;
}

.history .lightning img:last-child {
  top: auto;
  bottom: 0;
  transform: translate(-50%, -75%);
}

@media (min-width: 1024px) {
  .history {
    padding: 0 0 10vw 0;
  }

  .history .container {
    width: 75%;
  }

  .cd-timeline__img {
    margin-right: 7.5%;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 1vw;
    height: 10vw;
  }

  .cd-timeline__block:nth-child(even) .cd-timeline__img {
    margin-left: 7.5%;
  }

  .cd-timeline__content::before {
    display: none;
  }

  .cd-timeline__block {
    margin-bottom: -20vw;
  }
}

@media (max-width: 1023.98px) {
  .history {
    padding: 0 0 25vw 0;
  }

  .history .container {
    position: relative;
  }

  .history h2 {
    text-align: right;
    margin-bottom: 12.6vw;
  }

  .history .cd-timeline {
    direction: rtl;
  }

  .cd-timeline__container::before {
    left: 50%;
  }

  .cd-timeline__img img {
    width: 4.66vw;
  }

  .history .cd-timeline__content {
    margin-left: 0;
    margin-right: 6vw;
    padding: 4vw 9.2vw 4vw 6.4vw;
  }

  .cd-timeline__content::before {
    top: 3.5vw;
    right: 0;
    transform: translateX(100%) rotate(180deg);
  }

  .history .btn {
    font-size: 2.66vw !important;
    height: 5.33vw;
  }

  .cd-timeline__container {
    padding: 16vw 0;
  }

  .cd-timeline__block {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .history .cd-timeline__content {
    margin-left: 0;
    margin-right: 0;
    padding: 3.33vw;
    width: 100%;
  }

  .history .lightning img {
    width: 28.4vw;
  }

  .history .lightning img:last-child {
    transform: translate(-50%, 50%);
  }

  .cd-timeline__img {
    width: 3vw;
    height: 12vw;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }

  .cd-timeline__img img {
    width: 3.33vw;
  }

  .history .cd-timeline__content img {
    height: 72vw;
    border-radius: 1.33vw;
  }

  .history .cd-timeline__content h3 {
    margin: 2vw 0 1vw 0;
  }

  .history .cd-timeline__content p {
    line-height: 1.33;
  }
}

.blog-post ol li {
  font-size: 1.04vw;
}

#tabs {}

#tabs ul {
  display: flex;
  justify-content: center;
  margin-bottom: 5%;
}

#tabs ul li {
  margin: 0 1%;
}

#tabs ul li a {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 24px #0000001a;
  border-radius: 50px;
  opacity: 1;
  text-align: center;
  display: block;
  height: auto;
  display: flex;
  justify-content: center;
  width: 160px;
  padding: 5%;
  color: #b9b9b9;
}

#tabs ul li a span {
  align-self: center;
  display: block;
  font-size: 125%;
  padding-right: 10%;
}

#tabs ul li a img {
  width: 2vw;
  height: 2vw;
  object-fit: scale-down;
}

#tabs ul li.ui-tabs-active a {
  color: #000;
}

#tabs ul li.ui-tabs-active a img {
  filter: brightness(0) invert(0);
}

form *.error,
form *.error,
form *.error {
  display: block;
  height: auto;
  text-align: right;
  color: red;
}

._combo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 1.25vw;
  display: none;
}

._combo.active {
  display: flex;
  flex: 0 0 100%;
}

._combo ._input {
  width: 22.5%;
}

@media (max-width: 1024px) {
  #tabs ul li a {
    width: 135px;
  }

  #tabs ul li a img {
    width: 6vw;
    height: 6vw;
  }

  ._combo ._input {
    width: 47%;
    margin-bottom: 4vw;
    font-size: 80%;
  }
}

/* Customize the label (the container) */
.container-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-left: 5%;
  /* background: red; */
  width: 50%;
}

/* Hide the browser's default radio button */
.container-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark {
  /* position: absolute; */
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50px;
  right: 0;
  width: 100%;
  position: absolute;
  text-align: center;
  height: auto;
  line-height: 1.5;
  color: #000;
  border: 1;
  border: 1px #d8d8d8 solid;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input~.checkmark {
  /* background-color: #ccc; */
}

/* When the radio button is checked, add a blue background */
.container-radio input:checked~.checkmark {
  background-color: #90ff00;
  border: 1px #90ff00 solid;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked~.checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container-radio .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  background: transparent;
}

._radio {
  display: flex;
  justify-content: flex-start;
  margin: 5% auto;
}

.infoWindow-container {
  padding: 5%;
  font-size: 0.8vw;
  width: 350px;
  max-width: 350px;
}

.infoWindow-city {
  font-weight: normal;
  font-size: 100%;
  line-height: 1;
}

.infoWindow-location {
  font-weight: bold;
  font-size: 150%;
  line-height: 1;
}

.infoWindow-sublocation {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0;
  position: relative;
  font-size: 80%;
  right: -2%;
}

.infoWindow-sublocation img {
  width: 8%;
  object-fit: scale-down;
}

.infoWindow-sublocation span {
  width: 90%;
  align-self: center;
}

.infoWindow-table {}

.infoWindow-table-title {
  font-size: 125%;
  font-weight: bold;
  line-height: 1;
  margin-top: 7.5%;
}

.infoWindow-table-list {
  display: flex;
  flex-wrap: wrap;
}

.infoWindow-table-list-item {
  width: 50%;
  direction: rtl;
  text-align: right;
  margin: 5% 0 2.5%;
}

.infoWindow-table-list-item>div:last-child {
  font-weight: bold;
  font-size: 125%;
}

.gm-ui-hover-effect {
  opacity: 1 !important;
  margin: 2.5% !important;
}

.gm-ui-hover-effect>span {
  width: 30px !important;
  height: 30px !important;
  left: 15px !important;
  position: relative !important;
}

.station-locations .collapse button.toggleACDC {
  background: none;
  border: 0;
  /*border-bottom: 1px transparent solid;*/
}

.station-locations .collapse button.toggleACDC.active {
  /*border-bottom: 1px solid #D8D8D8*/
}

.infoWindow-btn {
  margin: 10% 0 0;
  width: 100%;
}

@media (max-width: 1024px) {
  .infoWindow-container {
    font-size: 3vw;
  }
}

.station-locations .location-search form button {
  border: 0;
  background: none;
  pointer-events: none;
  /* width: auto; */
  /* display: flex; */
  /* align-self: center; */
  /* font-size: 100%; */
  /* background: #ebebeb; */
  /* padding: 1% 3%; */
  /* color: #000; */
}



+.station-locations .collapse button.toggleACDC img {
  border: 2px solid transparent;
}

.station-locations .collapse button.toggleACDC.active img {
  border: 2px solid #98fb49;
}

@media (max-width: 1024px) {
  .location-filters-search-mobile {
    width: 63.73vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 11.33vw;
    margin-bottom: -5.66vw;
    border-radius: 500px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    padding: 1.33vw;
    margin-top: 6vw;
    z-index: 50;
    position: relative;
    background-color: white;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4vw;
    padding: 2vw 5vw;
  }

  .location-search>p {
    display: none;
  }

  .station-locations .location-search form img {
    width: 4vw;
    margin-left: 4vw;
  }

  .station-locations .location-search form {
    border-bottom: 0;
    margin-top: 0;
    width: 56vw;
  }

  .location-filters {
    border-right: 1px #d6d6d6 solid;
    padding-right: 2.5%;
  }

  .station-locations .location-search {
    margin: 0;
  }

  .station-locations .location-search {
    margin: 0 auto;
  }
}



.infoWindow-btn a {
  padding: 1vw;
  font-size: 1vw;
  height: 2.3vw;
}

@media(max-width: 1024px) {
  .infoWindow-btn a {
    padding: 4.5vw;
    font-size: 4vw;
    height: 8.3vw;
  }

  .infoWindow-container {
    max-width: 100%;
  }

  .home-page .product-slider {
    overflow-x: hidden;
  }
}

.station-locations .map-fade {
  display: none;
}


@media(max-width: 1024px) {
  .station-locations .accordion {
    width: 63.73vw !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: -5.66vw !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    z-index: 50 !important;
    position: relative !important;
    background-color: transparent !important;
    height: auto !important;
    box-shadow: 0px 0px 0px !important;
  }
}



.marker-cluster-small {
  background-color: rgba(181, 226, 140, 0.6);
}

.marker-cluster-small div {
  background-color: rgba(110, 204, 57, 0.6);
}

.marker-cluster-medium {
  background-color: rgba(241, 211, 87, 0.6);
}

.marker-cluster-medium div {
  background-color: rgba(240, 194, 12, 0.6);
}

.marker-cluster-large {
  background-color: rgba(253, 156, 115, 0.6);
}

.marker-cluster-large div {
  background-color: rgba(241, 128, 23, 0.6);
}

.marker-cluster-small::after {
  content: "";
  display: inline-block;
  height: 36px;
  width: 36px;
  background: url('https://www.mapsmarker.com/wp-content/uploads/maps-marker-pro/icons/hospital-building.png') no-repeat;
}


.contact-page ._combo ._input {
  width: 47.5%;
}

.about-page .cards-banner .card {
  cursor: pointer;
}

.page-template-views .customer-testimonials {
  height: unset !important;
  overflow: unset !important;
  ;
  background-image: unset !important;
}

.page-template-views:not(.page-template-page-app) .header *,
.header.show *,
.header.header-always-white * {
  color: black;
  opacity: 1;
}

/* Override styles for .small_menu_content */
.page-template-views .header .small_menu_content,
.header.show .small_menu_content,
.header.header-always-white .small_menu_content {

  opacity: 0;
  /* Resets to default opacity */
}

.page-template-views .header.header-scrolled .icon-black {
  opacity: 1 !important;
}

.page-template-views .customer-testimonials {
  padding-top: 7vw;
  padding-bottom: 7vw;
  width: 91%;
  justify-content: center;
  text-align: center;
  margin: auto;
}

.page-template-views .customer-testimonials .card {
  flex: 0 0 30%;
  margin-left: 3vw;
  box-shadow: 0 3px 22px rgb(0 0 0 / 15%);
  cursor: default;
  margin-bottom: 2vw;
  height: 100%;
  min-height: 20vw;
}

.page-template-views .customer-testimonials img {
  height: auto !important;

}

.page-template-views:not(.page-template-page-app) .header,
.header.show,
.header.header-always-white {
  background-color: white;
  background-image: none !important;
  box-shadow: 0 3px 20px rgb(0 0 0 / 10%);
}

@media(max-width: 1024px) {
  .editedul {
    padding: 10vw 5vw !important;
  }

  .page-template-views .customer-testimonials .card {
    margin-bottom: 5vw;
  }

  .page-template-views .customer-testimonials {
    padding-top: 17vw;
    padding-bottom: 17vw;

  }

  .page-template-views .customer-testimonials .card .author {
    margin-top: 5vw;
  }

  .station-locations .location-search form button {
    /* padding: 2% 6%; */
  }
}

.editedul ul {
  display: block !important;
  margin-right: 2vw;
  margin-bottom: 2vw;
  list-style: inherit !important;
  text-align: right;
}


.editedul ul li {
  border-bottom: unset !important;
  padding-bottom: unset !important;
  display: block !important;
  flex-direction: unset !important;
  justify-content: unset !important;
  margin-bottom: unset !important;
  text-align: right !important;


}

.page-template-default .header {
  background-color: white;
  background-image: none !important;
  box-shadow: 0 3px 20px rgb(0 0 0 / 10%);
}

.page-template-default .icon-black {
  opacity: 1;
}

.page-template-default .header * {
  color: black;
}



/* #wizard Popup
================================================== */
#wizard-popup .popup-content {
  display: flex;
  align-items: center;
  width: 68.2%;
  margin-top: 1.2%;
}

#wizard-popup .img {
  flex: 0 0 100%;
  flex-shrink: 0;
}

#wizard-popup .text {
  text-align: center;
  padding: 2.96vw;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0;
  margin: 0;
  top: 10vw;
}

#wizard-popup .text h2 {
  line-height: 1;
  font-size: 2.95vw !important;
  margin: 0 auto;
  font-weight: 700 !important;
}

#wizard-popup .text p {
  margin-bottom: 2.34vw;
  line-height: 1.2;
  font-size: 1.35vw !important;
}

@media (max-width: 1023.98px) {
  #wizard-popup .popup-content {
    display: block;
  }

  #wizard-popup .img img {
    width: 100%;
    height: 80vw;
  }

  #wizard-popup .text {
    padding: 6.65vw 5.33vw 8vw 5.33vw;
  }

  #wizard-popup .text h2 {
    margin-bottom: 2.66vw;
  }

  #wizard-popup .text p {
    margin-bottom: 6.65vw;
    line-height: 1.3;
  }
}

@media(max-width: 1024px) {
  .popup-close {
    margin-top: 0;
  }
}