@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

:root {
  --neutral-0: #000000;
  --neutral-1: #222121;
  --neutral-2: #333333;
  --neutral-3: #27355b;
  --neutral-4: #9ea6aa;
  --neutral-5: #c0ccd7;
  --neutral-6: #747c80;
  --neutral-7: #70787b;
  --neutral-8: #505050;
  --primary-1: #3555ff;
  --primary-2: #1839d9;
  --white-0: #fff;
}

html {
  font-size: 62.5%;
  background-color: var(--white-0);
  color: var(--neutral-2);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (min-width: 1700px) {
  html {
    font-size: 70%;
  }
}

@media only screen and (min-width: 2500px) {
  html {
    font-size: 100%;
  }
}

body {
  /* opacity: 0;
  transition: opacity 500ms ease; */
  font-size: 1.6rem;
  position: relative;
  line-height: 1.5;
}

.uppercase {
  text-transform: uppercase;
}

.img {
  display: inline-block;
  max-width: 100%;
}

.h1 {
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: left;
  color: var(--neutral-0);
}

.h2 {
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--primary-2);
}

.h3 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--primary-2);
}

.h4 {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--primary-1);
}

.h5 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  color: var(--neutral-2);
}

.p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: var(--neutral-4);
}

.primaryTitle {
  color: var(--primary-1);
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.relative {
  position: relative;
}

.section-wrapper {
  margin: 0 auto;
  padding-left: 7.5vw;
  padding-right: 7.5vw;
  max-width: calc(1400px + 15vw);
}

@media (max-width: 576px) {
  .section-wrapper {
    margin: 0 auto;
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: calc(1400px + 10vw);
    overflow-x: hidden;
  }
}



@media (max-width: 576px) {
  .page-id-30 .homeHero-details-wrapper .section-wrapper {
    overflow-x: visible !important;
  }
}

@keyframes move {
  0% {
    background-position: top;
  }

  100% {
    background-position: bottom;
  }
}

.animated-text-bg {
  font-weight: 600 !important;
  background-image: url(assets/images/text-bg.png) !important;
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: 200% !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  animation: move linear 85s alternate infinite !important;
}

.button-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  border-radius: 50%;
  padding: 2rem 1.6rem;
  font-family: inherit;
  border: none;
  background-color: var(--primary-1);
  cursor: pointer;
  color: var(--white-0);
  gap: 0;
  transition: all 0.4s ease;
  width: fit-content;
  text-decoration: none;
}

.button-primary.button-invert {
  background-color: var(--white-0);
  color: var(--primary-1);
}

.button-primary svg {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  transition: all 0.3s ease-in;
}

.button-primary span {
  transition: 200ms ease-in;
  display: inline-block;
  font-size: 0;
  transition: all 0.4s ease;
  transform-origin: center;
}

/* .button-primary:hover {
  background-color: var(--primary-2);
  gap: 1.2rem;
  border-radius: 40rem;
} */



/* .button-primary:hover span {
  font-size: 1.5rem;
} */

/* .button-primary:hover svg {
  transform: rotate(360deg);
} */
/* .button-primary:hover span {
  transform: scale(1.06);
} */
/* .button-primary:hover svg {
  margin-left: 0.6rem;
} */
a {
  text-decoration: none;
}

/* nav bar */
nav {
  z-index: 100;
  width: 100%;
  position: fixed;
  top: 0;
  transition: transform 0.3s ease;
}

.nav.hidden {
  transform: translateY(-100%);
}

.navWrapper {
  display: flex;
  justify-content: space-between;
  padding: 20px 7.5vw 10px 7.5vw;
  position: relative;
  align-items: center;
}

.navLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.navLogo svg {
  display: block;
  width: 4rem;
  height: 4rem;
}

nav ul {
  position: relative;
  font-weight: 500;
  font-size: 1.25rem;
  list-style: none;
  display: flex;
  width: auto;
  margin: 0;
  padding: 0px 6px;
  background: var(--beige);
  transition: 300ms ease-in;
  align-items: end;
}

nav ul::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  transition: 300ms ease-in;
  z-index: 1;
}

@media (max-width: 768px) {
  nav ul::after {
    display: none;
  }
}

nav ul:hover::after {
  transform: scaleX(5);
}

nav ul a {
  color: var(--black);
  margin: 0 15px;
  transition: color 150ms linear;
  font-size: 1.6rem;
  white-space: nowrap;
}

@media (max-width: 1000px) {
  nav ul a {
    margin: 0 10px;
    font-size: 1.4rem;
  }

}

@media (max-width: 768px) {
  nav ul a {
    font-size: 2rem;
    padding: 0 8px;
  }
}

nav ul a:hover {
  text-decoration: none;
  color: var(--primary-1);
}

nav ul li {
  z-index: 4;
  padding: 18px 0;
}

nav ul li.txt-beige a {
  color: var(--beige) !important;
}

@media (max-width: 1200px) {
  nav {
    /* padding: 0px 20px; */
  }
}

.navOpenButton {
  display: none;
}

.sideNavCloseBtn {
  display: none;
}

@media (max-width: 768px) {
  nav {
    /* height: 78px;
    display: none; */
    padding: 0;

    .navWrapper {
      /* padding-left: 5vw;
      padding-right: 5vw; */
      background-color: #fff;
    }

    .navItems {
      position: fixed;
      top: -100vh;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #fff;
      z-index: 30000;
      transition: 309ms ease-in;

      ul {
        flex-direction: column;
        padding: 5vw;
        padding-top: 10%;
        align-items: center;
      }
    }

    .navItems.openNav {
      top: 78px;
    }

    .openNavModalLink {
      transform: scale(0.8);
    }

    .navOpenButton {
      display: flex;
      align-items: center;

      button {
        background: none;
        border: none;
      }
    }

    .navLogo {
      display: none;
    }
  }

  nav .logo {
    height: 26px;
  }

  nav .signet {
    height: 34px;
  }
}


@media (max-width: 576px) {

  nav {

    .navWrapper {
      padding-left: 5vw;
      padding-right: 5vw;
    }


    .navItems {

      ul {
        flex-direction: column;
        padding: 5vw;
        padding-top: 2rem;
        align-items: center;
      }
    }
  }

  nav ul li {
    padding: 14px 0;
  }

}

#nav-pill {
  opacity: 1;
  content: " ";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  bottom: 6px;
  background-color: var(--primary-1);
  z-index: 3;
}

.txt-beige {
  color: var(--primary-1);
}

.section-hero {
  display: flex;
  width: 100%;
  padding-top: 14rem;
  justify-content: space-between;
  /* padding-bottom: 8rem; */
}

.section-hero--title {
  width: 50%;
  display: flex;
  align-items: center;
}

.section-hero--title>div h2 {
  color: var(--neutral-2);
  margin: 2rem 0;
  max-width: 700px;
}

.section-hero--title>div p {
  color: var(--neutral-7);
  font-size: 2rem;
}

.section-hero--title>div button {
  margin-top: 2.8rem;
}

.section-hero--title>div h4,
.section-hero--title>div p,
.section-hero--title>div button {
  opacity: 0;
}

.section-hero--title>div h2 .line {
  opacity: 0;
}

.section-hero--title>div h2 {
  font-size: 5.2rem;
}

.section-hero--title>div h3 {
  font-size: 3.2rem;
}

.section-hero--image {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
}






@media (max-width: 576px) {
  .section-hero {
    flex-direction: column-reverse;
    gap: 4rem;
    padding-top: 8rem;
    padding-bottom: 0rem;
  }

  .section-hero>* {
    width: 100%;
  }

  .section-hero--title>div h2 {
    font-size: 3.6rem;
    max-width: 100%;
  }

  .section-hero--title>div h3 {
    font-size: 2.4rem;
  }

  .section-hero--title>div p {
    font-size: 1.6rem;
  }

  .section-backed p {
    font-size: 1.6rem;

  }
}

#horizontal-scoll {
  padding: 10rem 0;
  position: relative;
}

#horizontal-scoll .horizontal-scoll_fixedImg {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  object-fit: contain;
  z-index: 10;
  display: none;
}

.horizontal-scoll-wrapper {
  overflow: hidden;
  height: 70vh;
}

.horizontal {
  display: flex;
  height: 100%;
  padding-left: 7.5vw;
  margin-left: -2rem;
}

.horizontal>div {
  display: flex;
  flex-shrink: 0;
}

.horizontal>div:first-child {
  padding: 0 1.6rem 0 2.8rem;
}

.horizontal>div:last-child {
  padding: 0 7.5vw 0 1.6rem;
}

.horizontal .card {
  align-items: stretch;
  width: 60vw;
  padding: 0;
  color: #f6f2e8;
  position: relative;
}

.horizontal .videoCard .card {
  width: 100%;
}

.horizontal .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.8rem;
}

.horizontal .card h2 {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 10;
  color: var(--neutral-7);
  font-weight: 400;
  font-size: 1.8rem;
  display: none;
}

#OEMS .section-backed--title .line {
  opacity: 0;
}

.section-backed p {
  max-width: 1000px;
  font-size: 2.4rem;
  color: var(--neutral-6);
  margin-left: auto;
  width: 75%;
  font-weight: normal;
  line-height: 1.8 !important;
  letter-spacing: -0.48px;
  text-align: left;
}


@media (max-width: 576px) {
  .section-backed p {
    width: 100%;

  }

}


.section-backed .section-backed--numbers {
  max-width: 1000px;
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  padding-bottom: 12rem;
  padding-top: 4rem;
}

.section-backed .section-backed--numbers div {
  opacity: 0;
}

.section-backed .section-backed--numbers div:not(:last-child) {
  border-right: 1px solid #222121;
  padding: 0 4%;
}

.section-backed .section-backed--numbers h3 {
  font-size: 3.6rem;
  font-weight: 500;
}

.section-backed .section-backed--numbers h5 {
  font-size: 1.6rem;
  font-weight: 400;
}

.section-title {
  margin-bottom: 6rem;
}


.section-title h3 {
  color: var(--primary-1);
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.32px;
}

.section-title h2 {
  font-size: 5.2rem;
  font-weight: 600;
  max-width: 600px;
  margin-top: 1.2rem;
  margin-top: 2rem;
  line-height: 1.2;
  letter-spacing: -2px;
}

@media (max-width: 576px) {
  .section-backed p {
    font-size: 2rem;
    max-width: 100%;
  }

  .section-backed .section-backed--numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding-bottom: 8rem;
  }

  .section-backed .section-backed--numbers h5 {
    font-size: 1.2rem;
  }

  .section-title h3 {
    /* font-size: 2rem; */
  }

  .section-title h2 {
    font-size: 3.2rem;
  }
}

.parallax-file {
  width: 100%;
  height: 115% !important;
  object-fit: cover;
  bottom: 0;
}

.section-services .section-services--title h2 .line {
  opacity: 0;
}

.section-services .serviceCard .serviceCard-text p .line,
.section-services .serviceCard .serviceCard-text--numbers div {
  opacity: 0;
}

.serviceCard {
  display: flex;
  gap: 5vw;
  padding-bottom: 7.5vw;
}

.serviceCard.serviceCard-reversed {
  flex-direction: row-reverse;
}

.serviceCard .serviceCard-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.serviceCard .serviceCard-text>div>p {
  font-size: 1.6rem;
  color: var(--neutral-7);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 2rem;
  margin-bottom: 3.2rem;
  max-width: 600px;
}

.serviceCard .serviceCard-text>div>h1 {
  color: var(--primary-1);
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.32px;
  margin-bottom: .9rem;
}

.section-services.dock .serviceCard .serviceCard-text>div>h3 {
  color: var(--neutral-3);
  font-size: 4.8rem;
  font-weight: 600;
}

@media (max-width: 768px) {

  .section-services.dock .serviceCard .serviceCard-text>div>h3 {
    font-size: 2.8rem;
  }
}




.serviceCard .serviceCard-text>div>h3 {
  margin-bottom: 3rem;
}


@media (max-width: 768px) {
  .serviceCard .serviceCard-text>div>h3 {
    margin-bottom: 2rem;
  }

}

.serviceCard .serviceCard-text--numbers {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.serviceCard .serviceCard-text--numbers div {
  min-width: 20%;
}

.serviceCard .serviceCard-text--numbers div h4 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.serviceCard .serviceCard-text--numbers div p {
  font-size: 1.4rem;
  color: var(--neutral-7);
}

.serviceCard .serviceCard-image {
  width: 50%;
}


.serviceCard .serviceCard-image svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}


.serviceCard .serviceCard-image {
  /* max-height: 55vh; */
  overflow: hidden;
  border-radius: 4rem;
  position: relative;
}

.serviceCard .serviceCard-image img {
  object-fit: cover;
}

.serviceCard .serviceCard-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #b37bff 0%, rgba(53, 85, 255, 0) 40%);
  opacity: 0;
  transition: 450ms ease-in;
}

/* .serviceCard .serviceCard-image:hover::after {
  opacity: 1;
} */
.serviceCard .serviceCard-image.in-view::after {
  opacity: 1;
}

@media (max-width: 576px) {
  .serviceCard {
    flex-direction: column-reverse;
  }

  .serviceCard.serviceCard-reversed {
    flex-direction: column-reverse;
  }

  .serviceCard .serviceCard-text,
  .serviceCard .serviceCard-image {
    width: 100%;
  }

  .serviceCard .serviceCard-text>div>h3 {
    font-size: 2.8rem;
  }

  .serviceCard .serviceCard-text>div>p {
    font-size: 1.6rem;
  }

  .serviceCard .serviceCard-text--numbers div p {
    font-size: 1.2rem;
  }
}

.section-hs .section-services--title {
  max-width: 55%;
  margin-left: auto;
}


.section-services.dock .section-title {
  margin-bottom: 0rem;

}


.section-hs--grid {
  /* max-width: 90%; */
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
  padding-bottom: 16rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 40vh 40vh ;
}


.page-id-481  .section-hs--grid{
  padding-bottom: 8rem;
}

.section-hs--grid img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4rem;
}

.section-hs--grid .appImg {
  display: flex;
  margin-left: auto;
  width: 50%;
}

.section-hs--grid__item:nth-of-type(1) {
  grid-row: span 2;
}

.section-hs--grid__item:nth-of-type(4) {
  grid-column: span 2;
  border: solid 1.5px #c0ccd7;
}

.section-hs--grid__item {
  position: relative;
  border-radius: 4rem;
  overflow: hidden;
  cursor: pointer;
}

.section-hs--grid__item>div {
  position: absolute;
  bottom: 4vw;
  left: 2.5vw;
  max-width: 65%;
}

.section-hs--grid__item:nth-of-type(2)>div {
  max-width: 50%;
}

.section-hs--grid__item:nth-of-type(3)>div {
  right: 1vw;
  top: 2vw;
  left: unset;
  bottom: unset;
  max-width: 50%;
}

.section-hs--grid__item:nth-of-type(4)>div {
  top: 2.5vw;
  bottom: unset;
  color: var(--neutral-3);
  max-width: 35%;
}

.section-hs--grid__item>div>h3 {
  font-weight: 500;
  font-size: 2.4rem;
}

.section-hs--grid__item>div>p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 1.2rem;
}

.section-hs--grid__item>div>button {
  position: absolute;
  bottom: 0vw;
  right: -8rem;
  padding: 1.4rem;
  opacity: 0;
  transition: 300ms ease-in;
  pointer-events: none;
  width: 4.8rem;
}

.section-hs--grid__item:nth-of-type(4)>div>button {
  bottom: -8rem;
  right: unset;
  left: 0;
}

.section-hs--grid__item:hover div>button {
  opacity: 1;
}

.section-hs--grid__item>div>button svg {
  width: 1.6rem;
  height: 1.6rem;
}

@media (max-width: 576px) {
  .section-hs {
    margin-top: 4rem;
  }

  .section-hs .section-services--title {
    max-width: 100%;
    margin-left: 0;
  }

  .section-hs--grid {
    display: block;
    max-width: 100%;
    padding-bottom: 4rem;
  }

  .section-hs--grid__item {
    height: 45vh;
    margin-bottom: 2rem;
  }

  .section-hs--grid__item>div>h3 {
    font-size: 1.8rem;
  }

  .section-hs--grid__item>div>p {
    font-size: 1.4rem;
  }
}

.oem-section-career-stories {
  padding-bottom: 16rem;
}

.section-red {
  /* margin-bottom: 16rem; */
  padding-left: 0;
  padding-right: 0;
  transform: scale(.9);

}

.section-red>div,
.section-red2>div {
  position: relative;
  min-height: 100vh;
  display: flex;
  padding: 5vw;
  align-items: flex-end;
  justify-content: flex-end;
  /* border-radius: 4rem; */
  overflow: hidden;
}

.section-red2>div {
  border-radius: 4rem;
}

.section-red img,
.section-red2 img {
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.section-red h2,
.section-red2 h2 {
  position: relative;
  font-size: 4.8rem;
  font-weight: 500;
  max-width: 500px;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -1.2px;
}




.section-cta h2 .line,
.section-cta h3 .line,
.section-cta .button-primary {
  opacity: 0;
}

.section-cta>div {
  position: relative;
  /* min-height: 55vh; */
  display: flex;
  padding: 5vw;
  align-items: center;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  border-radius: 4rem;
  overflow: hidden;
}

.section-cta img {
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.section-cta h2 {
  position: relative;
  font-size: 4.8rem;
  font-weight: 600;
  max-width: 500px;
  width: 100%;
  color: var(--white-0);
  line-height: 1.2;
  letter-spacing: -2px;
}

.section-cta h3 {
  color: var(--white-0);
  position: relative;
  font-size: 2.4rem;
  font-weight: 400;
  max-width: 500px;
  width: 100%;
  letter-spacing: -0.32px;
  line-height: 1.5;
}

.section-cta .button-primary {
  position: relative;
  margin-top: 2.4rem;
  background-color: #fff;
}

@media (max-width: 576px) {
  .section-red h2 {
    font-size: 3.2rem;
  }

  .section-red2 h2 {
    font-size: 3.2rem;
  }
}

.section-blog {
  display: flex;
  justify-content: space-evenly;
  margin-top: 8rem;
  gap: 2.8rem;
}


.section-blog--links {
  width: 50%;
  padding-bottom: 8rem;
}

.section-blog--link__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--neutral-5);
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  padding-right: 1.6rem;
}

.section-blog--link__item::after {
  content: "";
  position: absolute;
  height: 1px;
  left: -100%;
  width: 100%;
  background-color: var(--primary-1);
  bottom: 0rem;
  transition: 300ms ease-in-out;
}

.section-blog--link__item:hover::after {
  left: 0;
}

.section-blog--link__item:hover svg {
  transform: translateX(1.2rem);
}

.section-blog--link__item h3 {
  font-size: 2.4rem;
  color: var(--neutral-3);
  font-weight: 500;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.96px;

}

.section-blog--link__item p {
  font-size: 1.6rem;
  color: var(--neutral-7);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.32px;
  margin-top: 0.5rem;
}

.section-blog--link__item svg {
  margin-top: 2rem;
  transition: 300ms ease-in-out;
}

@media (max-width: 768px) {
  .section-cta {
    padding-bottom: 4rem;
  }

  .section-red {
    padding-bottom: 8rem;
  }

  .section-red2 {
    padding-bottom: 8rem;
  }

  .section-blog {
    flex-direction: column;
  }

  .section-blog .section-title {
    margin-bottom: 2rem;
  }

  .section-blog--links {
    width: 100%;
    padding-bottom: 4rem;
  }

  .section-cta h2 {
    font-size: 3.2rem;
  }

  .section-cta h3 {
    font-size: 1.8rem;
  }

  .section-cta>div {
    align-items: flex-start;
  }
}

/* footer {
  //padding-bottom: 8rem;
} */
.footer-reveal {
  z-index: -2;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  align-items: flex-end;
  position: relative;

}

.footer-reveal svg {
  width: 100%;
  display: block;
  height: 100%;
}

.sample-page {
  min-height: 100vh;
  background: url("./assets/images/sample.png"), var(--white-0);
  background-size: 80%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.sample-page::after {
  content: "Coming Soon...";
  font-size: 2.4rem;
  font-weight: 500;
  color: #3077ed;
  position: absolute;
  bottom: 10%;
  left: 40%;
  text-align: center;
  transform: translateX(50%);
}

footer {
  position: relative;
  background-color: #fff;
  z-index: 2;
}

footer::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--white-0);
  border-bottom-left-radius: 3.6rem;
  border-bottom-right-radius: 3.6rem;
  /* height: 4rem; */
  width: 100%;
}

.footer {
  display: flex;
  padding-top: 10rem;
  align-items: flex-end;
  gap: 5vw;
  padding-bottom: 10rem;
  background-color: #ECF3FA;
}



footer.section-wrapper {
  max-width: 1600rem !important;
}


footer .section-wrapper {
  background-color: #ECF3FA;
  max-width: 1600rem !important;
}

.footer-logo {
  width: 30%;
  margin-top: 2rem;
}

.footer-logo p {

  color: var(--neutral-2);
  margin-top: 2.4rem;

  font-size: 1.2rem;
  color: var(--neutral-2);
  margin-top: 2.4rem;
  line-height: 1.9;
}

.footer-links {
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5vw;
  justify-content: flex-end;
}

.footer-links ul {
  list-style-type: none;
}

.footer-links ul li {
  margin-bottom: 1.6rem;
}

.footer-links ul li a {
  color: var(--neutral-0);
  font-weight: 400;
  transition: 250ms ease-in;
}

.footer-links ul li a:hover {
  color: var(--primary-1);
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  list-style-type: none;
  padding-bottom: 4rem;
}

.footer-socials img {
  display: block;
  width: 2rem;
  height: 2rem;
  object-fit: contain;


}

@media (max-width: 768px) {
  .footer {
    padding-top: 8rem;
  }
}

@media (max-width: 576px) {
  .footer {
    flex-direction: column;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-links ul {
    width: 45%;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

.section-hero.section-hero-partner .section-hero--title {
  width: 65%;
}

.section-hero.section-hero-partner .section-hero--title>div h2 {
  max-width: 100%;
}

.section-hero.section-hero-partner .section-hero--image {
  width: 20%;
}

@media (max-width: 576px) {
  .section-hero.section-hero-partner {
    flex-direction: column;
  }

  .page-id-200 .section-hero--image {
    display: none;
  }

}

#stikcyPanelContainer {
  width: 100vw;
  height: 100vh;
  position: relative;
  /* top: 0;
  left: 0;
  overflow: hidden; */
}

.panel {
  /* height: 100%;
  position: absolute; */
  will-change: transform;
}

.stikcyPanelContainer-graphic {
  min-height: 70vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.stikcyPanelContainer-graphic>div {
  height: 150vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.stikcyPanelContainer-graphic>div svg {
  position: absolute;
  top: -50%;
  left: 50%;
  width: auto;
  height: 100%;
  display: block;
  transform: translateX(-50%);
  /* transition: all .3s ease-in-out; */
}

.panel {
  /* // min-height: 100vh; */
  width: 100%;
}

.panel.stikcyPanelContainer-text {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
  padding-bottom: 16rem;
}

.panel.stikcyPanelContainer-text::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100vw;
  height: 10rem;
  opacity: 0;
  background: linear-gradient(0deg, rgba(53, 85, 255, 0) 0%, #3555ff 100%);
  transition: opacity 0.5s ease;
}

.panel.stikcyPanelContainer-text.gradient-in-view::after {
  opacity: 0.4;
  /* Increase opacity when in view */
}

@media (max-width: 576px) {
  .panel.stikcyPanelContainer-text {
    padding-bottom: 4rem;
  }
}

.panel.stikcyPanelContainer-text p {
  font-size: 2rem;
  color: var(--neutral-6);
  margin: 0 auto;
  font-weight: 300;
  max-width: 80%;
  margin-bottom: 4rem;
  opacity: 0;
  line-height: 1.45;
}

.panel.stikcyPanelContainer-text p a {
  color: var(--primary-1);
  text-decoration: none;
  transition: 300ms ease;
  font-size: 1.8rem;
  font-weight: 400;
}

.panel.stikcyPanelContainer-text p a:hover {
  color: var(--primary-2);
  text-shadow: 0px 0px 1px var(--primary-1);
}

@media (max-width: 576px) {
  .panel.stikcyPanelContainer-text p {
    font-size: 1.6rem;
    margin-bottom: 2.4rem;
  }
}

#stikcyPanelContainer .stikcyPanelContainer-icons {
  display: flex;
  gap: 2rem;
  margin-top: 8rem;
}

@media (max-width: 576px) {
  #stikcyPanelContainer .stikcyPanelContainer-icons {
    flex-wrap: wrap;
  }
}

#stikcyPanelContainer .stikcyPanelContainer-icons>div {
  display: flex;
  gap: 1rem;
  opacity: 0;
}

#stikcyPanelContainer .stikcyPanelContainer-icons>div>svg {
  height: 4.5rem;
  display: block;
}

#stikcyPanelContainer .stikcyPanelContainer-icons>div>div>h4 {
  color: var(--neutral-8);
}

#stikcyPanelContainer .stikcyPanelContainer-icons>div>div>p {
  margin: 0;
  font-size: 1.6rem;
  margin-top: 0.6rem;
}

.section-partner-offer {
  .partnerOffer-heading {
    padding-top: 8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;

    h2 {
      font-size: 4.2rem;
      max-width: 40vw;
      font-weight: 600;
      color: var(--neutral-0);
      margin-bottom: 1.6rem;
      margin-top: 0.8rem;
      letter-spacing: -2px;
    }

    h2 .line {
      opacity: 0;
    }

    h3 {
      font-size: 2rem;
      font-weight: normal;
      opacity: 0;
    }

    p {
      font-size: 1.6rem;
      max-width: 700px;
      opacity: 0;
    }
  }

  .button-primary {
    opacity: 0;
  }
}

@media (max-width: 576px) {
  .section-partner-offer .partnerOffer-heading h2 {
    font-size: 3.6rem;
  }
}

@media (max-width: 576px) {
  .section-partner-offer .partnerOffer-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.section-partner-offer .partnerOffer-grid {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.8fr 0.8fr 0.45fr 0.6fr 0.6fr;
  grid-auto-columns: 1fr;
  gap: 1.6rem;
  grid-auto-flow: row;
  grid-template-areas: "partnerOffer-grid--item-1 partnerOffer-grid--item-1" "partnerOffer-grid--item-1 partnerOffer-grid--item-1" "partnerOffer-grid--item-2 partnerOffer-grid--item-4" "partnerOffer-grid--item-3 partnerOffer-grid--item-4" "partnerOffer-grid--item-3 partnerOffer-grid--item-4";
}

@media (max-width: 906px) {
  .section-partner-offer .partnerOffer-grid {
    display: block;
    margin-top: 4rem;
  }
}

.section-partner-offer .partnerOffer-grid .partnerOffer-grid--item {
  opacity: 0;
}

.partnerOffer-grid--item-1 {
  grid-area: partnerOffer-grid--item-1;
  background: #e1e7f2;
  display: flex;
  justify-content: space-between;
  gap: 2rem;


  h3 {
    margin-top: auto;
  }

  &>div:nth-of-type(1) {
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  &>div:nth-of-type(2) {
    width: 35%;
  }

  ul {
    list-style-type: none;
    margin-top: 6rem;
    max-width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
    column-gap: 2rem;

    li {
      padding: 1rem 2rem;
      position: relative;
      transition: all 0.3s ease-in-out;

      &::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background: #3077ed;
        transform: scaleX(0);
        transition-duration: 4s;
        transform-origin: left;
      }

      &.activeEnergyItemIndex {
        border-radius: 10px;
        border-bottom: solid 2px #3555ff;
        background-color: #fff;
      }

      h4 {
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 0.8rem;
      }


      p {}
    }
  }

  .partnerOffer-grid--item-1__image {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    img {
      width: 100%;
      object-fit: contain;
      object-fit: contain;
      /* height: 60rem; */
      width: 35rem;
    }
  }
}

@media (max-width: 767px) {
  .partnerOffer-grid>div {
    padding: 2.8rem !important;
    border-radius: 2rem !important;
    margin-bottom: 2.8rem;
  }

  .partnerOffer-grid--item-1 {
    flex-direction: column;
  }

  .partnerOffer-grid--item-1>div {
    width: 100% !important;
  }
}

.partnerOffer-grid--item-2 {
  grid-area: partnerOffer-grid--item-2;
  background: #b1dbf5;
}

.partnerOffer-grid--item-3 {
  grid-area: partnerOffer-grid--item-3;
  background: #d5dee7;
  display: flex;
  flex-direction: column;


  img {
    min-height: 20rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
  }

  h3 {
    color: #fff !important;
    margin-top: auto;
  }

  p {
    color: #fff !important;
  }
}

.partnerOffer-grid--item-4 {
  grid-area: partnerOffer-grid--item-4;
  background: #d5dee7;

  img {
    max-width: 100%;
  }
}

.partnerOffer-grid>div {
  min-height: 12vh;
  border-radius: 4rem;
  padding: 4rem;
  overflow: hidden;

  h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    letter-spacing: -0.96px;
    color: #000;
  }

  p {
    color: hsla(224, 40%, 25%, 0.799);
    font-size: 1.5rem;
  }
}

.section-partner-ecosystem .sideAbstract {
  transform: translateY(-12rem);
}

.section-partner-ecosystem .buttonBox {
  transform: translateY(-12rem);
}

.section-partner-ecosystem .partnerEcosystem-heading {
  padding-top: 16rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.section-partner-ecosystem .buttonBox {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 12rem;
}

.section-partner-ecosystem .partnerEcosystem-heading>* {
  width: 50%;
}

.section-partner-ecosystem .partnerEcosystem-heading h2 .line {
  opacity: 0;
}

.section-partner-ecosystem .partnerEcosystem-heading h2 {
  font-size: 4.2rem;
  max-width: 500px;
  color: var(--neutral-0);
  margin-bottom: 1.6rem;
  margin-top: 0.8rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -2.22px;
}

.section-partner-ecosystem .partnerEcosystem-heading h3 {
  font-size: 2rem;
  opacity: 0;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.32px;
}

.section-partner-ecosystem .partnerEcosystem-heading p {
  font-size: 1.6rem;
  max-width: 700px;
}

.section-partner-ecosystem .partnerEcosystem-heading p .line {
  opacity: 0;
}

.section-partner-ecosystem button {
  position: relative;
  z-index: 2;
  opacity: 0;
}

.section-partner-ecosystem img {
  width: 100%;
  margin-top: -20rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .section-partner-ecosystem .partnerEcosystem-heading {
    flex-direction: column;
    padding-top: 4rem;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .section-partner-ecosystem .partnerEcosystem-heading>* {
    width: 100%;
  }

  .section-partner-ecosystem img {
    margin-top: -4rem;
    margin-bottom: 4rem;
  }
}

.section-career-sticky {
  display: flex;
  gap: 8vw;
  align-items: flex-start;
  position: relative;
  margin-bottom: 8rem;
}

.section-career-sticky .leftContainer {
  width: 40%;
  height: 50rem;
  position: sticky;
  top: 20rem;
}

.section-career-sticky .leftContainer .valuesImage {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 3.4rem;
}

.section-career-sticky .rightContainer {
  width: 60%;
  position: relative;
}

.section-career-sticky .rightContainer .values-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-career-sticky .rightContainer .values-heading h2 .line {
  opacity: 0;
}

.section-career-sticky .rightContainer .values-heading h2 {
  font-size: 4.2rem;
  max-width: 100%;
  color: var(--neutral-0);
  margin-bottom: 3rem;
  margin-top: 0.8rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -2.22px;
}

.section-career-sticky .rightContainer .values-heading h3 {
  font-size: 2rem;
  font-weight: 600;
  opacity: 0;
}

.section-career-sticky .rightContainer .values-heading p {
  font-size: 1.6rem;
  max-width: 700px;
  color: var(--neutral-7);
  opacity: 0;
}

.section-career-sticky .rightContainer .pointsContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 4rem;
  column-gap: 4rem;
}

.section-career-sticky .rightContainer .pointsContainer .pointBlock {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-career-sticky .rightContainer .pointsContainer .pointBlock .pointIcon {
  height: 7rem;
  width: 7rem;
}

.section-career-sticky .rightContainer .pointsContainer .pointBlock .pointHeading {
  font-size: 2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.32px;
  text-align: left;
  color: #000;
}

.section-career-sticky .rightContainer .pointsContainer .pointBlock .pointPara {
  font-size: 1.6rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: -0.36px;
  text-align: left;
  color: #626262;
}

.section-career-sticky .needsContainer {
  margin-top: 4rem;
}

.section-career-sticky .needsContainer li {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.2rem;
}

.section-career-sticky .needsContainer li h3 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--neutral-8);
  margin: 0;
  opacity: 0;
}

.section-career-sticky .needsContainer li svg {
  width: 2.4rem;
  height: 2.4rem;
  opacity: 0;
}

@media (max-width: 767px) {
  .section-career-sticky {
    flex-direction: column;
    margin-bottom: 4rem;
  }

  .section-career-sticky>* {
    width: 100% !important;
  }

  .section-career-sticky .leftContainer {
    position: relative;
    top: 0;
  }

  .section-career-sticky .rightContainer .pointsContainer {
    grid-template-columns: 1fr;
  }
}

.section-career-sticky .leftContainer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #b37bff 0%, rgba(53, 85, 255, 0) 40%);
  opacity: 0;
  transition: 450ms ease-in;
  border-radius: 3.4rem;
}

.section-career-sticky .leftContainer.value-in-view::after {
  opacity: 1;
}

.section-career-stories {
  border-radius: 3.2rem;
  background-color: #ecf3fa;
  padding: 3.2rem;
  margin-left: 7.5vw;
  margin-right: 7.5vw;
  padding-bottom: 4rem;
  margin-bottom: 8rem;

}

.section-career-stories .stories-heading {
  padding-top: 4rem;
  padding-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-inline: 1rem;
}

.section-career-stories .stories-heading h2 {
  font-size: 5.2rem;
  max-width: 700px;
  font-weight: 600;
  color: var(--neutral-0);
  line-height: 1.2;
  letter-spacing: -2.22px;
}

.section-career-stories .stories-heading h3 {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 1.5rem;
  letter-spacing: -0.56px;
}

.section-career-stories .stories-heading .buttonBox {
  display: flex;
  gap: 2.8rem;
}

.section-career-stories .stories-heading .buttonBox button {
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-career-stories .stories-heading .buttonBox button.left {
  transform: rotate(180deg);
}

.section-career-stories .profilesContainer {
  display: flex;
}

.section-career-stories .profilesContainer .profileBox {
  position: relative;
  padding: 2rem;
  border-radius: 2.5rem;
  margin-inline: 1.2rem;
  overflow: hidden;
  transition: all 0.4s ease;
  background: linear-gradient(0deg,
      #000000 20.37%,
      rgba(102, 102, 102, 0) 96.99%);
}

.section-career-stories .profilesContainer .profileBox:hover {
  background: #27355b;
}

.section-career-stories .profilesContainer .profileBox .contentBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  height: 36rem;
}

.section-career-stories .profilesContainer .profileBox .contentBox .about {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: -0.02rem;
  text-align: left;
  position: relative;
}

.section-career-stories .profilesContainer .profileBox .contentBox .nameBox {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 1;
  transition: all 0.4s ease;
}

.section-career-stories .profilesContainer .profileBox .contentBox .nameBox .name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.5rem;
  text-align: left;
}

.section-career-stories .profilesContainer .profileBox .contentBox .nameBox .designation {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
}

.section-career-stories .profilesContainer .profileBox .profileImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  transition: all 0.4s ease;
  object-position: top;
  background-color: #b8c9d5;
}

.section-career-stories .profilesContainer .profileBox:hover .profileImg {
  opacity: 0;
}

.section-career-stories .profilesContainer .profileBox:hover .contentBox .nameBox {
  opacity: 0;
}

@media (max-width: 767px) {
  .section-career-stories {
    padding: 2rem;
    border-radius: 2rem;
  }

  .section-career-stories .stories-heading h2 {
    font-size: 3.2rem;
  }
}

.section-backed.section-backed-careers .section-backed--title {
  margin-bottom: 4.4rem;
  line-height: 1.45;
  font-size: 2rem;
}

.white-bgWrapper {
  background: var(--white-0);
}

.section-career-jobs {
  margin-top: 8rem;
}

.section-career-jobs .jobs-heading {
  padding-top: 4rem;
  padding-bottom: 2.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-career-jobs .jobs-heading h2 .line {
  opacity: 0;
}

.section-career-jobs .jobs-heading h2 {
  font-size: 5.2rem;
  max-width: 700px;
  font-weight: 600;
  color: var(--neutral-0);
  line-height: 1.2;
  letter-spacing: -2.22px;
}

.section-career-jobs .jobs-heading h3 {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 1.5rem;
  letter-spacing: -0.56px;
  opacity: 0;
}

.section-career-jobs .jobs-heading .p {
  opacity: 0;
}

.section-career-jobs .jobs-listing .jobs-listing-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid #bed0df;
  opacity: 0;
}

.section-career-jobs .jobs-listing .jobs-listing-item>div {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
}

.section-career-jobs .jobs-listing .jobs-listing-item>div>p {
  color: #000;
}

.section-career-jobs .jobs-listing .jobs-listing-item>div span {
  color: #70787b;
  padding-right: 2rem;
}

.section-career-jobs .jobs-listing .jobs-listing-item>div>div {
  display: flex;
  justify-content: flex-end;
}

.section-career-jobs .jobs-listing .jobs-listing-item>div>div>a {
  justify-content: center;
  border: 1px solid var(--primary-1);
  color: var(--primary-1);
  background: none;
  display: inline-block;
  cursor: pointer;
  padding: 1.2rem 2rem;
  border-radius: 50rem;
  font-family: inherit;
  font-size: 1.6rem;
  max-width: 16rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.section-career-jobs .jobs-listing .jobs-listing-item>div>div>a:hover {
  background-color: var(--primary-1);
  color: #fff;
}

.section-career-jobs .button-primary {
  margin-inline: auto;
  margin-top: 2.8rem;
}

@media (max-width: 767px) {
  .section-career-jobs .jobs-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .section-career-jobs .jobs-heading h2 {
    font-size: 3.2rem;
  }

  .jobs-listing .jobs-listing-item>div {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 0.8rem;
    margin-top: 1.2rem;
  }

  .jobs-listing .jobs-listing-item>div>div>button {
    width: 100% !important;
    max-width: 100% !important;
  }
}

#Ellipse\ 7969,
#image\ 2623,
#Ellipse\ 7968,
#image\ 2622,
#Ellipse\ 7965,
#image\ 2621,
#Ellipse\ 7966,
#Ellipse\ 7967 {
  opacity: 0;
}

/* .section-about--hero {
  min-height: 30vh;
} */
.section-about--mission {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.section-about--mission .maskSvg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  font-size: clamp(4rem, 15vw, 9rem);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-about--mission .maskSvg svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

.section-about--mission .maskSvg svg text {
  text-anchor: middle;
  font-family: inherit !important;
  transform: translateY(2rem);
}

.section-about--mission .maskSvg svg mask rect {
  /*   fill: rgba(255, 255, 255, 0.8); */
  fill: white;
}

.section-about--mission .maskSvg svg>rect {
  fill: white;
  -webkit-mask: url(#mask);
  mask: url(#mask);
}

.section-about--mission .maskVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.section-about--mission .maskVideo video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.section-about--mission .missionContent {
  max-width: 100rem;
  margin: 0 auto;
  position: relative;
  z-index: 6;
  margin-top: 32%;
}

.section-about--mission .missionContent h2.animated-text-bg {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800 !important;
  text-align: center;
}

.section-about--mission .missionContent h3 {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.section-about--mission .missionContent p {
  width: 50%;
  margin-left: auto;
  color: var(--neutral-7);
}

@media (max-width: 768px) {

  .section-about--mission .missionContent p {
    width: 100%;
    padding: 0 2rem;
    /* margin-top: 50vh; */
  }

}


.section-about--timeline {
  margin-top: 16rem;
}

.section-about--timeline .section-about--timeline_svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-about--timeline .section-about--timeline_svg svg {
  height: 100vh;
}

#stroke1,
#stroke2,
#stroke3 {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.section-about--timelineSlider {
  margin-bottom: 16rem;
  margin-top: -14rem;
  position: relative;
  z-index: 20;
  /* padding-left: 50vw; */
  /* padding-right: 7.5vw; */
  gap: 4rem;
  /* the slides */
  /* the parent */
}

.section-about--timelineSlider.oem .timelineSlider {
  display: flex;
}


@media (max-width: 1024px) {

  .section-about--timelineSlider.oem .timelineSlider {
    flex-direction: column;
  }




}

@media (max-width: 768px) {
  .timelineSlider-items {
    flex-direction: column;

  }
}


.section-about--timelineSlider .buttonBox {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  display: none;
}

.section-about--timelineSlider .buttonBox button {
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
}

.section-about--timelineSlider .buttonBox button svg {
  width: 100%;
}

.section-about--timelineSlider .slick-slide {
  margin: 0 2.8rem;
}

.section-about--timelineSlider .slick-list {
  margin: 0 -2.8rem;
}

.timelineSlider {
  gap: 2rem;
}

.timelineSlider.horizontal {
  padding-left: 0;
}

.timelineSlider-items {
  display: flex !important;
  align-items: flex-start;
  gap: 2rem;
  border-radius: 20px;
  background-color: #ecf3fa;
  padding: 4.8rem 3.2rem !important;
  max-width: 50rem;
}

.timelineSlider-items .timelineSlider-items--date span {
  display: block;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--primary-1);
  line-height: 1;
}

.timelineSlider-items .timelineSlider-items--date img {
  width: 10rem;
  height: 10rem;
  object-fit: cover;
  border-radius: 12px;
}

.timelineSlider-items .timelineSlider-items--content h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2.8rem;
}

.timelineSlider-items .timelineSlider-items--content ul li {
  list-style-type: none;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  position: relative;
}

.timelineSlider-items .timelineSlider-items--content ul li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 400px;
  background-color: #000;
}

.timelineSlider-items .timelineSlider-items--content li:nth-last-of-type(1) {
  margin-bottom: 0;
}


.section-about--leaders {
  display: none;
}

.section-about--leaders .leaders-heading {
  /* padding-top: 16rem; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.section-about--leaders .leaders-heading>* {
  width: 50%;
}

.section-about--leaders .leaders-heading h2 .line {
  /* //opacity: 0; */
}

.section-about--leaders .leaders-heading h2 {
  font-size: 5.2rem;
  max-width: 800px;
  color: var(--neutral-0);
  margin-bottom: 1.6rem;
  margin-top: 0.8rem;
  font-weight: 500;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -2.22px;
}

.section-about--leaders .leaders-heading h3 {
  font-size: 2rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.32px;
  /* opacity: 0; */
}

.section-about--leaders .leaders-heading p {
  font-size: 1.6rem;
  max-width: 700px;
  color: #9ea6aa;
  line-height: 1.6;

}

.section-about--leaders .leaders-heading p .line {
  /* opacity: 0; */
}

.leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 8rem;
  gap: 1.2rem;
}

.leaders-grid .leaders-grid--tabSwitcher {
  padding-top: 6rem;
}

.leaders-grid .leaders-grid--tabSwitcher button {
  display: block;
  width: auto;
  border: 2px solid transparent;
  background: none;
  font-weight: 500;
  font-size: 2rem;
  color: #999999;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 2rem;
  padding-right: 2rem;
  transition: 300ms ease;
  padding-bottom: 4px;
  /* &:hover {
    border-bottom: 2px solid var(--primary-1);
  } */
}

.leaders-grid .leaders-grid--tabSwitcher button.activeFilter::after {
  left: 0;
  /* //border-bottom: 2px solid var(--primary-1); */
}

.leaders-grid .leaders-grid--item .profileBox {
  position: relative;
  padding: 2.8rem;
  border-radius: 2.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
  background: linear-gradient(0deg,
      #000000 20.37%,
      rgba(102, 102, 102, 0) 96.99%);
}

.leaders-grid .leaders-grid--item .profileBox:hover {
  background: #3555ff;
}

.leaders-grid .leaders-grid--item .profileBox .contentBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  height: 36rem;
}

.leaders-grid .leaders-grid--item .profileBox .contentBox .about {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 3.2rem;
  letter-spacing: -0.02rem;
  text-align: left;
}

.leaders-grid .leaders-grid--item .profileBox .contentBox .nameBox {
  position: relative;
  z-index: 1;
}

.leaders-grid .leaders-grid--item .profileBox .contentBox .nameBox .name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.5rem;
  text-align: left;
}

.leaders-grid .leaders-grid--item .profileBox .contentBox .nameBox .designation {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
}

.leaders-grid .leaders-grid--item .profileBox .profileImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  transition: all 0.4s ease;
}

.leaders-grid .leaders-grid--item .profileBox .profileImg:hover {
  opacity: 0;
}

.section-about--sustanibility {
  display: flex;
  gap: 8vw;
  align-items: stretch;
  position: relative;
  padding-top: 16rem;
}

.section-about--sustanibility .sustanibility-left {
  width: 40%;
}

.section-about--sustanibility .sustanibility-left img {
  max-width: 100%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-about--sustanibility .sustanibility-right {
  width: 60%;
}


@media (max-width: 768px) {

  .section-about--sustanibility {
    flex-direction: column;
  }

  .section-about--sustanibility .sustanibility-left {
    width: 100%;
  }

  .section-about--sustanibility .sustanibility-right {
    width: 100%;
  }
}


.section-about--sustanibility .sustanibility-right .sustanibility-heading h2 .line {
  /* //opacity: 0; */
}

.section-about--sustanibility .sustanibility-right .sustanibility-heading h2 {
  font-size: 5.2rem;
  max-width: 600px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -2.22px;
  color: var(--neutral-0);
  margin-bottom: 1.6rem;
  margin-top: 0.8rem;
}

.section-about--sustanibility .sustanibility-right .sustanibility-heading h3 {
  font-size: 1.6rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.32px;
  /* opacity: 0; */
}

.section-about--sustanibility .sustanibility-right .sustanibility-heading p {
  font-size: 1.6rem;
  max-width: 700px;
  color: #9ea6aa;
  line-height: 1.6;
  padding-top: 0.4rem;
}

.section-about--sustanibility .sustanibility-right .sustanibility-heading p .line {
  /* opacity: 0; */
}

.section-about--sustanibility .sustanibility-right .sustanibility-heading h4 {
  font-size: 2.4rem;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    width: 2rem;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg width='26' height='15' viewBox='0 0 26 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.35547 2.07227L13.0051 12.722L23.6548 2.07227' stroke='%233555FF' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
  }
}

.section-about--sustanibility .sustanibility-right .sustanibility-heading h4 {
  transition: all 300ms ease-in;
  color: #999;
}

.section-about--sustanibility .sustanibility-right .sustanibility-heading h4.accordion-open {
  color: #000;
}

.section-about--sustanibility .sustanibility-right .sustanibility-heading ul {
  list-style-type: none;
  margin-bottom: 6rem;
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-about--sustanibility .sustanibility-right .sustanibility-heading ul li {
  display: inline-block;
  width: auto;
  border: 2px solid transparent;
  background: none;
  font-weight: 400;
  font-size: 2rem;
  color: #999999;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 2rem;
  padding-right: 2rem;
  transition: 300ms ease;
  padding-bottom: 4px;
  /* &:hover {
    border-bottom: 2px solid var(--primary-1);
  } */
}

.section-about--sustanibility .sustanibility-right .sustanibility-heading ul li.activeSustanibility::after {
  /* border-bottom: 2px solid var(--primary-1); */
  left: 0;
  /* //border-bottom: 2px solid var(--primary-1); */
}

.section-about--counter.section-backed {
  padding-top: 8rem;
}

.section-about--counter.section-backed .section-backed--numbers div {
  opacity: 1;
}

.section-about--blog.section-blog {
  margin-bottom: -16rem;
}

.lineAnimation {
  position: relative;
  overflow: hidden;
}

.lineAnimation::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  /* transform: scale(0); */
  background-color: var(--primary-1);
  transition: 300ms ease-in-out;
  transform-origin: left;
}

.lineAnimation:hover::after {
  left: 0;
  /* transform: scale(1); */
}

.accordion {
  width: 100%;
  max-width: 600px;
  margin: auto;

  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  margin-bottom: 2rem;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-title {
  margin: 0;
  padding: 1.2rem;
  padding-bottom: 0;

  cursor: pointer;
  user-select: none;
}

.accordion-content {
  background: #fff;
  overflow: hidden;
  padding-inline: 1.2rem;
  height: 0;
  /* Collapsed by default */
}

.dark-wrapper {
  background: #27355b;
}

.blogs-hero {
  padding-top: 16rem;
  padding-bottom: 20rem;
  color: #fff;
  opacity: 0;
}

.blogs-hero .blogs-hero--heading {
  margin-bottom: 8rem;
}

.blogs-hero .blogs-hero--heading h2 .line {
  /* opacity: 0; */
}

.blogs-hero .blogs-hero--heading h2 {
  font-size: 3.6rem;
  max-width: 600px;
  font-weight: 400;
  color: var(--white-0);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.blogs-hero .blogs-hero--heading p {
  font-size: 1.6rem;
  max-width: 500px;
  color: #d6ebfc;
  line-height: 1.6;
}

.blogs-hero .blogs-hero--heading p .line {
  /* opacity: 0; */
}

.blogs-hero .blogs-hero--content .blogs-hero--content_head {
  margin-bottom: 2.8rem;
}

.blogs-hero .blogs-hero--content .blogs-hero--content_head h4 {
  font-size: 2.4rem;
  max-width: 600px;
  font-weight: 400;
  color: var(--white-0);
  /* opacity: 0; */
}

.blogs-hero .blogs-hero--grid {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.blogs-hero .blogs-hero--grid>* {
  width: 50%;
}

.blogs-hero .blogs-hero--grid>.blogsCard {
  position: sticky;
  top: 2rem;
  left: 0;
}

.blogs-hero .blogs-hero--grid>.blog-hero--grid__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.blogs-hero .blogs-hero--grid>.blog-hero--grid__list>a:nth-of-type(3n) {
  grid-column: span 2;
}

.blogsCard {
  margin-bottom: 1.2rem;
  opacity: 1;
  text-decoration: none;
}

.blogsCard .blogsCard-image img {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.blogs-hero--grid .blogsCard .blogsCard-tags {
  color: #fff;
}

.blogs-battery--slider .blogsCard .blogsCard-tags {
  color: var(--neutral-2);
}

.blogs-article .blogsCard .blogsCard-tags {
  color: var(--neutral-2);
}

.blogsCard .blogsCard-tags {
  display: flex;
  justify-content: space-between;
  margin: 1.2rem 0;
  /* color: #fff; */
  text-transform: uppercase;
  gap: 2rem;
}

.blogsCard .blogsCard-tags span {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.2;
}

.blogsCard .blogsCard-tags span svg {
  width: 1.4rem;
  display: block;
}

.blogsCard .blogsCard-exerpt h3 {
  font-size: 1.6rem;
  max-width: 600px;
  font-weight: 400;
  color: #d6ebfc;
}

.blogsCard .blogsCard-exerpt p {
  color: rgba(212, 234, 252, 0.5);
  font-size: 1.4rem;
  margin-top: 0.8rem;
}

.blogsCard .blogsCard-author {
  color: #d5dee7;
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 400;
}

.blogsCard.blogsCard-light .blogsCard-exerpt h3 {
  color: #000000;
}

.blogsCard.blogsCard-light .blogsCard-exerpt p {
  color: #999999;
}

.blogsCard.blogsCard-light .blogsCard-author {
  color: #70787b;
}

.blogs-battery {
  background: #ecf3fa;
  border-radius: 2rem;
  margin-top: -8rem;
  padding: 8rem 6rem;
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  position: relative;
}

.blogs-battery .blogs-battery--heading {
  width: 20%;
}

.blogs-battery .blogs-battery--heading h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.blogs-battery .blogs-battery--heading h4 {
  text-transform: uppercase;
  color: #3555ff;
  font-weight: 500;
  margin-bottom: 2rem;
}

.blogs-battery .blogs-battery--heading svg {
  width: 75%;
  display: block;
}

.blogs-battery .buttonBox {
  display: flex;
  gap: 2.8rem;
  position: absolute;
  right: 6rem;
  top: 8rem;
  z-index: 4;
}

.blogs-battery .buttonBox button {
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blogs-battery .buttonBox button.left {
  transform: rotate(180deg);
}

.blogs-battery .blogs-battery--slider {
  width: 80%;
  padding-top: 4rem;
  /* the slides */
  /* the parent */
}



.blogs-battery .blogs-battery--slider .slick-slide {
  margin: 0 1.2rem;
}

.blogs-battery .blogs-battery--slider .slick-list {
  margin: 0 -1.2rem;
}

.blogs-article {
  background: #fff;
}

.blogs-article>h3,
.blogs-article .blogs-article--tabButtons {
  /* padding-left: 7.5vw; */
  margin-bottom: 4rem;
}

.blogs-article>h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 8rem;
  padding-bottom: 0rem;
  margin-bottom: 2.8rem;
}

.blogs-article .blogs-article--tabButtons {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  padding-right: 7.5vw;
  gap: 1.2rem;
}

.blogs-article .blogs-article--tabButtons button {
  border: 1px solid var(--primary-1);
  color: #000;
  padding: 1.4rem 2rem;
  border-radius: 400px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 300ms ease;
  background: #fff;
  white-space: nowrap;
}

.blogs-article .blogs-article--tabButtons button svg {
  color: var(--primary-1);
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}

.blogs-article .blogs-article--tabButtons button:hover {
  color: #fff;
  background: var(--primary-1);
  border-color: #ecf3fa;
  transform: scale(0.98);
}

.blogs-article .blogs-article--tabButtons button:hover svg {
  color: #fff;
}

.blogsCard.activeCard {
  margin-top: 0 !important;
}

.blogs-article .blogs-article--tabButtons button.activeBlogFilter {
  background: var(--primary-1);
  color: #fff;
}

.blogs-article .blogs-article--tabButtons button.activeBlogFilter svg {
  color: #fff;
}

.blogs-article .blogs-article--tabContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.blogs-article .blogs-article--tabContainer .blogsCard:nth-of-type(2n) {
  margin-top: 6rem;
}

.overflowHidden {
  overflow: hidden;
}

.fadeReveal,
.newsCard,
.blogsCard {
  opacity: 0;
}

@media (max-width: 767px) {
  .blogs-hero {
    padding-top: 8rem;
  }

  .blogs-hero .blogs-hero--heading {
    margin-bottom: 4rem;
  }

  .blogs-hero .blogs-hero--grid {
    flex-direction: column;
  }

  .blogs-hero .blogs-hero--grid>* {
    width: 100%;
  }

  .blogs-hero .blogs-hero--grid>.blogsCard {
    position: static;
    top: 2rem;
    left: 0;
  }

  .blog-hero--grid__list {
    grid-template-columns: 1fr;
  }

  .blogs-battery {
    flex-direction: column;
    padding: 7.5vw;
    gap: 1.6rem;
  }

  .blogs-battery>* {
    width: 100% !important;
  }

  .blogs-battery .blogs-battery--heading {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .blogs-battery .blogs-battery--heading h4 {
    grid-column: span 3;
    order: 1;
  }

  .blogs-battery .blogs-battery--heading h3 {
    order: 2;
    grid-column: span 2;
  }

  .blogs-battery .blogs-battery--heading svg {
    order: 2;
    width: 4.8rem;
    height: 4.8rem;
    margin-left: auto;
  }

  .blogs-battery .buttonBox {
    position: static;
  }

  .blogs-article .blogs-article--tabContainer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blogs-article .blogs-article--tabContainer .blogsCard:nth-of-type(2n) {
    margin-top: 0rem;
  }
}

.section-blog-cta.section-cta {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.blogSingle-hero {
  padding-top: 16rem;
}

.blogSingle-hero .logo {
  display: flex;
  gap: 1.7rem;
}

.blogSingle-hero .logo img {
  max-width: 3rem;
  object-fit: contain;

}


.blogSingle-hero h1 {
  font-size: 3.6rem;
  font-weight: 500;
  max-width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 4rem;
}

.blogSingle-hero h3 {
  font-size: 1.6rem;
  color: var(--primary-1);
}

.blogSingle-hero h3 span {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 0.8rem;
  color: var(--primary-1);
}

.blogSingle-hero h3 svg {
  width: 1.6rem;
}

.blogSingle-hero p {
  display: flex;
  justify-content: space-between;
  color: #999;
  margin-bottom: 2.8rem;
}

.blogSingle-hero p span>span {
  color: #505050;
}

.blogSingle-hero img {
  width: 100%;
}

.blogSingle-container {
  display: flex;
  gap: 2rem;
  margin-top: 6rem;
}

.blogSingle-container .blogSinlge-sidebar {
  width: 20%;
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-socials {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  list-style-type: none;
  padding-bottom: 4rem;
  flex-direction: column;
  align-items: center;
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-socials img {
  display: block;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.blogSingle-container.generalPages-container .blogSinlge-sidebar .blogSinlge-sidebar-links {
  list-style: none;
  display: block;
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-links {
  list-style: none;
  display: none;
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-links li {
  margin-bottom: 2rem;
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-links li a {
  font-size: 2rem;
  color: #999999;
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-links li a.activeLink {
  color: var(--primary-1);
}

.blogSingle-container .blogSinlge-content {
  width: 80%;
}

.blogSingle-container .blogSinlge-content h1,
.blogSingle-container .blogSinlge-content h2,
.blogSingle-container .blogSinlge-content h3,
.blogSingle-container .blogSinlge-content h4,
.blogSingle-container .blogSinlge-content h5 {
  font-weight: 500;
}

.blogSingle-container .blogSinlge-content h1 {
  font-size: 3.2rem;
}

.blogSingle-container .blogSinlge-content h2 {
  font-size: 2.4rem;
}

.blogSingle-container .blogSinlge-content h3 {
  font-size: 1.8rem;
}

.blogSingle-container .blogSinlge-content h4 {
  font-size: 1.6rem;
}

.blogSingle-container .blogSinlge-content h5 {
  font-size: 1.2rem;
}

.blogSingle-container .blogSinlge-content p {
  font-size: 1.6rem;
  /* margin-top: 1.2rem; */
  margin-bottom: 2.8rem;
  color: #70787b;
  line-height: 1.6;
}

.blogSingle-container .blogSinlge-content img {
  width: 100%;
}

.blogSingle-container .blogSinlge-content blockquote {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 2rem;
}

.blogSingle-author {
  margin-top: 8rem;
}

.authorCard {
  display: flex;
  padding: 2rem;
  border-radius: 20px;
  background: #ecf3fa;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
}

.authorCard .author-image {
  width: 35%;
}

.authorCard .author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.authorCard .author-content {
  width: 65%;
}

.authorCard .author-content h3 {
  font-size: 1.8rem;
  font-weight: 500;
}

.authorCard .author-content h5 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1.2rem 0;
}

.authorCard .author-content p {
  color: #70787b;
  font-size: 1.6rem;
  padding-top: 0.6rem;
}

.blogSingle-more {
  margin-top: 8rem;
}

.blogSingle-more .blogSingle-more--heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.blogSingle-more .blogSingle-more--heading h3 {
  font-size: 2rem;
  font-weight: 500;
}

.blogSingle-more .blogSingle-more--heading button {
  background: #fff;
  color: var(--primary-1);
  border-color: var(--primary-1);
  transform: scale(0.8);
}

.blogSingle-more .blogSingle-more--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem;
}

.news-hero {
  padding-top: 16rem;
  display: flex;
  gap: 5vw;
}

.news-hero .news-hero--content {
  width: 50%;
}

.news-hero .news-hero--content h4 {
  font-size: 2rem;
  color: var(--primary-1);
  font-weight: 400;
}

.news-hero .news-hero--content h5 {
  font-size: 1.3rem;
  color: #999999;
  font-weight: 400;
  margin-top: 1.2rem;
}

.news-hero .news-hero--content h1 {
  font-weight: 500;
  font-size: 3.6rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.news-hero .news-hero--content p {
  color: #999999;
  line-height: 1.5;
  margin-top: 1.2rem;
}

.news-hero .news-hero--content a {
  margin-top: 2rem;
  display: inline-block;
  padding: 1.2rem 2rem;
  border: 1px solid var(--primary-1);
  border-radius: 300px;
  color: var(--primary-1);
  transition: 300ms ease;
}

.news-hero .news-hero--content a:hover {
  background: var(--primary-1);
  color: #fff;
  border-color: #fff;
}

.news-hero .news-hero--image {
  width: 50%;
}

.news-hero .news-hero--image img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/3;
  object-fit: contain;
}

.news-list {
  padding-top: 16rem;
}

.news-list h3 {
  font-size: 2.4rem;
  font-weight: 400;
  /* margin-bottom: 1.6rem; */
}

.news-list.news-archive {
  padding-top: 8rem;
}

.news-list.news-archive h3 {
  /* margin-bottom: 2.8rem; */
  display: flex;
  justify-content: space-between;
}

.news-list.news-archive h3 button {
  justify-content: center;
  border: 1px solid var(--primary-1);
  color: var(--primary-1);
  background: none;
  display: inline-block;
  cursor: pointer;
  padding: 1.2rem 2rem;
  border-radius: 50rem;
  font-family: inherit;
  font-size: 1.6rem;
  max-width: 16rem;
  transition: all .3s ease-in-out;
}


.news-list.news-archive h3 button:hover {
  background-color: var(--primary-1);
  color: #fff;
}


.newsCard {
  padding: 2.4rem 0;
  border-top: 1px solid #b8c9d5;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.newsCard>* {
  width: 32%;
}

.newsCard .newsCard-heading h5 {
  font-size: 1.3rem;
  color: #999999;
  font-weight: 400;
}

.newsCard .newsCard-heading h2 {
  font-weight: 500;
  font-size: 2.4rem;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.newsCard .newsCard-heading p {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.2rem;
}

.newsCard .newsCard-heading p img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: cover;
}

.newsCard .newsCard-content {
  padding-top: 1.2rem;
}

.newsCard .newsCard-content p {
  color: #999;
  font-size: 1.4rem;
}

.newsCard .newsCard-content p a {
  text-decoration: none;
  color: var(--primary-1);
  display: block;
}

.newsCard .newsCard-image {
  display: flex;
  justify-content: flex-end;
}

.newsCard .newsCard-image img {
  width: 85%;
  border-radius: 12px;
  max-height: 200px;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

.newsArchiveHeadingBox {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}



.newsArchiveHeadingBox .custom-dropdown {
  position: relative;
  display: inline-block;
  width: 150px;
  /* Adjust as needed */
}

.newsArchiveHeadingBox .custom-dropdown select {
  appearance: auto;
  /* Enables the default browser arrow */
  -webkit-appearance: auto;
  -moz-appearance: auto;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.6rem;
  width: 100%;
  color: #000;
  cursor: pointer;
  font-family: inherit;
}

.newsArchiveHeadingBox .custom-dropdown select:focus {
  outline: none;
}

.newsArchiveHeadingBox .custom-dropdown select option {
  font-size: 1.6rem;
}

.news-mediaKit {
  padding-top: 8rem;
  display: none;
}

.news-mediaKit h3 {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1.6rem;
}

.news-mediaKit ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6rem;
}

.news-mediaKit ul li {
  display: inline-flex;
  align-items: center;
  padding: 4rem 2.8rem;
  border-radius: 10px;
  gap: 1.2rem;
}

.news-mediaKit ul li svg {
  display: block;
  width: 3.6rem;
  height: 3.6rem;
}

.news-mediaKit ul li span {
  font-size: 1.8rem;
}

.news-mediaKit ul li:nth-of-type(1) {
  background: #d5dee7;
}

.news-mediaKit ul li:nth-of-type(2) {
  background: #b1dbf5;
}

.news-mediaKit ul li:nth-of-type(3) {
  background: #d6ebfc;
}

@media (max-width: 767px) {
  .news-hero {
    flex-direction: column;
    padding-top: 6rem;
  }

  .news-hero .news-hero--content {
    width: 100%;
  }

  .news-hero .news-hero--image {
    width: 100%;
  }

  .news-list {
    padding-top: 6rem;
  }

  .news-list.news-archive {
    padding-top: 6rem;
  }

  .newsCard {
    flex-direction: column;
  }

  .newsCard>* {
    width: 100%;
  }

  .newsCard .newsCard-content {
    padding-top: 0;
  }

  .newsCard .newsCard-image img {
    width: 100%;
  }

  .news-mediaKit {
    padding-top: 6rem;
  }

  .news-mediaKit ul {
    grid-template-columns: 1fr;
  }
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5vw;
  padding-top: 120px;
}

.modal-content {
  padding: 20px;
  background-color: #fff;
  border-radius: 25px;
  width: 100%;
  max-width: 1270px;
  margin-inline: auto;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 4000px;
  z-index: 9999999999;
  position: relative;
  background-color: #d5dfea;
  margin-left: 28px;
}

.section-oem-map {
  min-height: 600px;
  position: relative;
  padding-top: 16rem;
}

.section-oem-map #oem-map {
  width: 100%;
  height: 600px;
  border-radius: 25px;
  overflow: hidden;
}

.section-oem-map h3 {
  color: var(--primary-1);
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-oem-map .oem-map-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
  z-index: 200000;
}

.section-oem-map .oem-map-navigation ul {
  list-style: none;
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex: 1;
}

.section-oem-map .oem-map-navigation a {
  text-decoration: none;
  color: var(--neutral-3);
  display: block;
}

.section-oem-intelligence {
  display: flex;
  justify-content: space-between;
  gap: 5vw;
  padding-top: 4rem;
}

.section-oem-intelligence h2 {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 300;
  max-width: 200px;
  color: #222121;
  font-weight: 500;
}

.section-oem-intelligence p {
  font-size: 1.6rem;
  max-width: 700px;
  max-width: 50%;
  color: #000;
}

.section-oem-data {
  padding-top: 8rem;
}

.section-oem-data>div {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}

.section-oem-data>div>img {
  width: 50%;
  display: block;
  aspect-ratio: 4/3;
}

.section-oem-data>h2 {
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .section-oem-intelligence {
    flex-direction: column;
    width: 100%;
  }

  .section-oem-intelligence h2,
  .section-oem-intelligence p {
    max-width: 100%;
  }

  .section-oem-data>div {
    flex-direction: column;
  }

  .section-oem-data>div>img {
    width: 100%;
  }
}

.section-oem-safety {
  padding-top: 16rem;
}

.modal .section-oem-safety {
  padding-top: 2rem;
}

.section-oem-safety h3 {
  color: var(--primary-1);
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-oem-safety h2 {
  max-width: 400px;
}

.section-oem-safety p {
  max-width: 60%;
  margin-left: auto;
  margin-bottom: 4rem;
}

.section-oem-safety img {
  width: 100%;
  margin-bottom: 4rem;
}

.section-oem-safety-station {
  margin-top: 8rem;
}

.section-oem-safety-station>div:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rem;
}

.section-oem-safety-station>div:nth-of-type(1)>p {
  max-width: 60%;
}

.section-oem-safety-station>div:nth-of-type(2)>div {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  margin-top: 4rem;
}

.section-oem-safety-station>div:nth-of-type(2)>div>* {
  width: 50%;
}

.modal .section-oem-safety-station {
  padding-bottom: 6rem;
}

@media (max-width: 768px) {
  .section-oem-safety h2 {
    margin-bottom: 2rem;
  }

  .section-oem-safety p {
    max-width: 100%;
  }

  .section-oem-safety-station>div:nth-of-type(1) {
    flex-direction: column;
  }

  .section-oem-safety-station>div:nth-of-type(1)>p {
    max-width: 100%;
    margin-top: 2rem;
  }

  .section-oem-safety-station>div:nth-of-type(2)>div {
    flex-direction: column;
  }

  .section-oem-safety-station>div:nth-of-type(2)>div>* {
    width: 100%;
  }
}

.section-oem-reliability {
  padding-top: 16rem;
}

.section-oem-reliability .oem-reliability-wrapper {
  max-width: 90%;
  margin-inline: auto;
}

.section-oem-reliability .oem-reliability-wrapper h2 {
  margin-bottom: 2rem;
}

.section-oem-reliability .oem-reliability-wrapper h2:nth-of-type(1) {
  margin-top: -1.2rem;
}

.section-oem-reliability .oem-reliability-wrapper>img {
  width: 100%;
  transform: scale(110%);
  display: block;
  margin-block: 10%;
}

.section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(1) {
  display: flex;
  gap: 2.4rem;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(1)>div {
  max-width: 31%;
  position: relative;
}

.section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(1)>div:not(:nth-last-of-type(1))::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1.2rem;
  height: 100%;
  width: 1px;
  opacity: 0.4;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      black 25%,
      black 67.7%,
      rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 768px) {
  .section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(1) {
    flex-direction: column;
  }

  .section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(1)>div {
    max-width: 100%;
  }

  .section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(1)>div:not(:nth-last-of-type(1))::after {
    width: 100%;
    height: 1px;
    bottom: 0rem;
    right: 0;
    top: unset;
    background: linear-gradient(to left,
        rgba(0, 0, 0, 0) 0%,
        black 25%,
        black 67.7%,
        rgba(0, 0, 0, 0) 100%);
  }
}

.section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(1)>div>div {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(1)>div img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  width: auto;
}

.section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(1)>div h4 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(1)>div p {
  color: #999999;
  font-size: 1.3rem;
}

.section-oem-reliability .oem-reliability-wrapper p {
  margin-bottom: 4rem;
  font-size: 1.6rem;
}

.section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(2) {
  display: flex;
  gap: 2.4rem;
  margin-bottom: 4rem;
}

.section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(2)>* {
  width: 50%;
}

@media (max-width: 768px) {
  .section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(2) {
    flex-direction: column;
  }

  .section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(2)>* {
    width: 100%;
  }
}

.section-oem-reliability .oem-reliability-wrapper>div:nth-of-type(2)>* img {
  width: 80%;
}

.modal .section-oem-reliability {
  padding-top: 2rem;
}

.homeHero {
  min-height: 100vh;
  padding-top: 20rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 5vw;
}

@media (max-width: 1100px) {
  .homeHero {
    padding-top: 16rem;
  }
}

@media (max-width: 576px) {
  .homeHero {
    padding-top: 4rem !important;
  }
}


.homeHero .homeHero-heading {
  width: 40%;
  padding-bottom: 5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 20;
}

@media (max-width: 576px) {

  .homeHero .homeHero-heading {

    padding-bottom: 4rem;

  }

}

.homeHero .homeHero-heading>div h1 {
  color: var(--neutral-2);
  margin: 2rem 0;
  max-width: 470px;
  font-size: 7.2rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .homeHero .homeHero-heading>div h1 {
    font-size: 5.4rem;
  }
}

.homeHero .homeHero-heading>div h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.homeHero .homeHero-heading>div p {
  color: var(--neutral-7);
  font-size: 2rem;
  margin-bottom: 16rem;
}

@media (max-width: 1300px) {
  .homeHero .homeHero-heading>div p {
    margin-bottom: 10rem;
  }
}

.homeHero .homeHero-card-container {
  margin-top: 10rem;
  position: relative;
  width: 320px;
  height: 380px;
  transform: scale(1.3);
}

@media (max-width: 1300px) {
  .homeHero .homeHero-card-container {
    margin-top: 4rem;
    transform: scale(1);
  }
}

@media (max-width: 1000px) {
  .homeHero .homeHero-card-container {
    transform: scale(0.8);
  }
}

.homeHero .homeHero-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.homeHero .homeHero-card:nth-child(1) {
  background-color: #5c9ef0;
  transform: translate(-120px, 80px) rotate(-5deg);
}

.homeHero .homeHero-card:nth-child(2) {
  background-color: #4576c8;
  transform: translate(-90px, 30px) rotate(-0.2deg);
}

.homeHero .homeHero-card:nth-child(3) {
  background-color: #003ce6;
  transform: translate(-60px, -20px) rotate(2deg);
}

.homeHero .homeHero-card:nth-child(4) {
  background-color: #38bff6;
  transform: translate(-30px, -50px) rotate(0deg);
}

.homeHero .homeHero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  padding: 32px;
  box-sizing: border-box;
}



@media (max-width: 768px) {
  .homeHero {
    min-height: unset;
    padding-top: 8rem;
    flex-direction: column;
    gap: 0;
  }

  .homeHero>* {
    width: 100% !important;
  }

  .homeHero .homeHero-heading>div h1 {
    font-size: 3.6rem;
    margin-bottom: 0.8rem;
  }

  .homeHero .homeHero-heading>div h2 {
    font-size: 2.4rem;
  }

  .homeHero .homeHero-heading>div p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .homeHero .homeHero-card-container {
    transform: scale(0.7) translate(25%, -25%);
    transform-origin: center;
  }
}

@keyframes rotate {
  from {
    transform: scale(1.4) translateY(-20rem) rotate(0deg);
  }

  to {
    transform: scale(1.2) translateY(-20rem) rotate(360deg);
  }
}

.homeHero-details-wrapper {
  padding-bottom: 28rem;
  overflow: hidden;
  /* & > div:nth-of-type(3) {
    height: 12rem;
    position: relative;
  } */
}

.homeHero-details-wrapper>div {
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20000px;
}

.homeHero-details-wrapper>div:nth-of-type(1) {
  bottom: 20rem;
  transform: scale(1.4) translateY(-24rem);
  animation: rotate 28s linear infinite;
  z-index: 2;
  display: none;
}

.homeHero-details-wrapper>div:nth-of-type(1) svg {
  height: 100%;
  width: 100%;
}

.homeHero-details-wrapper>div:nth-of-type(2) {
  bottom: 0rem;
  transform: scale(1.4) translateY(-12rem);
  /* animation: rotate 28s linear infinite; */
  z-index: 1;
}

.homeHero-details-wrapper>div:nth-of-type(2) svg {
  height: 100%;
  width: 100%;
}

.homeHero-details {
  position: relative;
  z-index: 20;
  /* &>p div span {
    display: inline-flex !important;
  } */
}

.homeHero-details>p {
  font-size: 1.8rem;
  max-width: 70ch;
  margin-left: auto;
  line-height: 2;
  margin-top: 8rem;
  color: #353535;
}

@media (max-width: 576px) {

  .homeHero-details>p {
    line-height: 1.6;
  }

}

.homeHero-details>p .line {
  margin-bottom: 6px;
}

.homeHero-details>p .line span {
  display: inline-block;
  line-height: 1;
  transform: translateY(6px);
}

.homeHero-details>p div svg {
  height: 2.4rem;
  width: 2.4rem;
}

.homeHero-details>div:nth-of-type(1) {
  margin-top: 12rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  text-align: center;
}

.homeHero-details>div:nth-of-type(1)>div h4 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.homeHero-details>div:nth-of-type(1)>div p {
  font-size: 1.4rem;
  color: var(--neutral-7);
}

.homeHero-details>div:nth-of-type(2) {
  margin-top: 20rem;
  text-align: center;
  position: relative;
}

.homeHero-details>div:nth-of-type(2) h2 {
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
  transform: translateY(4rem);
}

@media (max-width: 576px) {
  .homeHero-details>div:nth-of-type(2) h2 {
    font-size: 2rem;
  }
}

.homeHero-details>div:nth-of-type(2) h2 span {
  display: block;
  text-transform: uppercase;
}

.homeHero-details>div:nth-of-type(2) h2 span:nth-of-type(2) {
  font-size: 3.2rem;
}

@media (max-width: 576px) {

  .homeHero-details>div:nth-of-type(2) h2 span:nth-of-type(2) {
    font-size: 2.8rem;
  }
}

.homeTech {
  margin-top: 8rem;
}

.homeTech .homeTech-heading h2 {
  font-size: 3.6rem;
  max-width: 700px;
  font-weight: 400;
  color: var(--neutral-0);
  margin-bottom: 1.6rem;
  margin-top: 0.8rem;
}

.homeTech .homeTech-heading p {
  font-size: 1.6rem;
  max-width: 900px;
}

.homeTech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  gap: 1.2rem;
  margin-top: 4rem;
  margin-bottom: 12rem;
}

.homeTech-grid>div {
  min-height: 400px;
  padding: 2rem;
  border-radius: 36px;
  padding-top: 8rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homeTech-grid>div h3 {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-weight: 500;
}

.homeTech-grid>div:nth-of-type(1) {
  background: #d5dee7;
}

.homeTech-grid>div:nth-of-type(2) {
  background: #c0ccd7;
}

.homeTech-grid>div:nth-of-type(2) h3 {
  font-weight: 700;
}

.homeTech-grid>div:nth-of-type(3) {
  background: #e1e7f2;
}

@media (max-width: 768px) {
  .homeHero-details>div:nth-of-type(2) h2 {
    transform: translateY(8rem);
  }

  .homeTech {
    margin-top: -8rem;
  }

  .homeTech-grid {
    grid-template-columns: 1fr;
  }
}

.section-red.section-homeOem>div>div {
  background-color: #fff;
  border-radius: 35px;
  position: relative;
  z-index: 20;
  max-width: 600px;
  padding: 4rem;

}

@media (max-width: 576px) {
  .section-red.section-homeOem>div>div {
    width: 100%;
    padding: 2rem;

  }
}

.section-red.section-homeOem>div>div h3 {
  font-size: 2.4rem;
  font-weight: 600;
}

@media (max-width: 576px) {
  .section-red.section-homeOem>div>div h3 {
    font-size: 2rem;
  }
}


.section-red.section-homeOem>div>div h2 {
  margin-top: 1.2rem;
  margin-bottom: 2rem;
  color: #000;
  font-weight: 500;
  font-size: 3.6rem;
  max-width: 400px;
  line-height: 1.4;
}

@media (max-width: 576px) {

  .section-red.section-homeOem>div>div h2 {
    font-size: 2.8rem;
  }
}


.section-red.section-homeOem>div>div p {
  max-width: 420px;
  line-height: 1.5;
  margin-bottom: 12rem;
  font-size: 2rem;
}

@media (max-width: 576px) {
  .section-red.section-homeOem>div>div p {
    margin-bottom: 4rem;
    font-size: 1.8rem;
  }

}

.section-homePartner {
  padding-top: 4rem;
  padding-bottom: 0rem;
  height: 100%;
  overflow: hidden;
}

.section-homePartner h3 {
  font-size: 2.4rem;
  font-weight: 600;
}

.section-homePartner h2 {
  font-size: 3.6rem;
  max-width: 700px;
  font-weight: 400;
  color: var(--neutral-0);
  margin-bottom: 1.6rem;
  margin-top: 0.8rem;
}

.section-homePartner>div {
  /* min-height: 100vh; */
  transform: translateY(-12rem);
}

@media (max-width: 768px) {
  .section-homePartner>div {
    /* min-height: 100vh; */
    transform: translateY(-8rem);
  }
}

@media (max-width: 768px) {
  .section-homePartner .sideAbstract #homeFlowChartLottie svg {
    transform: scale(1.2) !important;
  }
}


.section-homePartner>div img {
  width: 100%;
}

.section-homePartner button {
  margin-inline: auto;
  transform: translateY(-12rem);
}

@media (max-width: 768px) {
  .section-homePartner button {
    transform: translateY(-8rem);
  }
}


.section-red.section-homeOem.section-homeWork>div {
  justify-content: flex-start;
  align-items: stretch;
}

.section-red.section-homeOem.section-homeWork>div>div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10%;
}

.section-red.section-homeOem.section-homeWork>div>div>p {
  flex: 1;
}

@keyframes yb-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(var(--float-distance, -20px));
  }
}

@keyframes yb-shadow-float {

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

  50% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}

@keyframes yb-ripple-effect {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: var(--ripple-start-opacity, 0.7);
  }

  100% {
    transform: translate(-50%, -50%) scale(var(--ripple-scale, 2));
    opacity: 0;
  }
}

br {
  display: block;
  line-height: 22px;
  content: " ";
  margin: 10px auto;
}

.section-charingUnits {
  padding-top: 6rem !important;
}

.section-batteryhero {
  padding-top: 8rem;
  padding-bottom: 16rem;
}
 
.page-id-427 .section-batteryhero{
  padding-bottom: 10rem; 
}


.page-id-481  .section-batteryhero{
  padding-bottom: 10rem;  
}

.page-id-304 .section-batteryhero{
  padding-bottom: 8rem;
}

.page-id-140 .section-batteryhero {
  padding-bottom: 0rem;
}

.section-batteryhero .section-batteryhero-heading {
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  margin-bottom: 1.2rem;
  /* gap: 20vw; */

}

@media (max-width: 768px) {

  .section-batteryhero .section-batteryhero-heading {
    flex-direction: column;
    margin-bottom: 3.2rem;
  }


}

.section-batteryhero .section-batteryhero-heading .button-primary {
  margin-top: 1rem;
}

.section-batteryhero .section-batteryhero-heading h1 {
  width: 60%;
}

.section-batteryhero .section-batteryhero-heading h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.section-batteryhero>p {
  color: var(--neutral-7);
  font-size: 2rem;
}

.section-batteryhero .section-batteryhero-battery .yb-container {
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  position: relative;
}


.section-batteryhero .section-batteryhero-battery .yb-container.dock {
  justify-content: flex-end;
  margin-top: 1rem;
}

.section-batteryhero .section-batteryhero-battery .yb-container img {
  height: 70vh;
  width: 100%;
  object-fit: contain;
}


@media (max-width: 768px) {
  .section-batteryhero .section-batteryhero-battery .yb-container img {
    height: auto;
  }

  .section-batteryhero .section-batteryhero-battery .yb-container {
    min-height: auto;
  }
}

.section-batteryhero .section-batteryhero-battery .yb-container>svg {
  width: 100%;
  position: absolute;
  height: 200px;
  bottom: -50px;
  left: 0;
  z-index: 10;
  opacity: 1;
  mix-blend-mode: darken;
}

.section-batteryhero .section-batteryhero-battery .yb-container>p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 8rem;
  line-height: 1.2;
  /* or 133px */
  position: relative;
  z-index: 10;
  letter-spacing: -0.03em;
  /* //background: linear-gradient(273.28deg, #9e9e9e 0.65%, #ffffff 97.97%); */
}

.section-batteryhero .section-batteryhero-battery .yb-container>p:nth-of-type(1) {
  background: linear-gradient(270deg, #9e9e9e 5.65%, #ffffff 108%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.section-batteryhero .section-batteryhero-battery .yb-container>p:nth-of-type(2) {
  background: linear-gradient(90deg, #9e9e9e 5.65%, #ffffff 108%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.section-batteryhero .section-batteryhero-battery .yb-battery {
  width: var(--battery-width, clamp(280px, 8vw, 900px));
  height: var(--battery-height, clamp(380px, 14vw, 1100px));
  border-radius: clamp(10px, 1.5vw, 20px);
  position: relative;
  animation: yb-float var(--float-duration, 3s) ease-in-out infinite;
  z-index: 2;
}

.section-batteryhero .section-batteryhero-battery .yb-battery-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: clamp(16px, 2vw, 32px);
}

.section-batteryhero .section-batteryhero-battery .yb-battery-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-batteryhero .section-batteryhero-battery .yb-battery-icon svg {
  width: 80%;
  margin-inline: auto;
  display: block;
  animation: yb-shadow-float var(--float-duration, 3s) ease-in-out infinite;
}

.section-batteryhero .section-batteryhero-battery .yb-ripple {
  position: absolute;
  border: var(--ripple-border-width, 2px) solid var(--ripple-color, #0066ff);
  border-radius: var(--ripple-border-radius, 40px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.section-batteryhero .section-batteryhero-text {
  position: relative;
  z-index: 20;
  margin-top: 4rem;
  margin-left: auto;
  max-width: 50ch;
}

.section-batteryhero .section-batteryhero-text p {
  margin-bottom: 1.2rem;
  color: var(--neutral-0);
  font-size: 1.8rem;
}

.section-batteryhero .section-batteryhero-text p br {
  display: block;
  line-height: 22px;
  content: " ";
  margin: 10px auto;
}

.section-batteryhero .section-batteryhero-text .certificationContainer {
  margin-top: 6rem;
  display: none;
}

.section-batteryhero .section-batteryhero-text .certificationContainer h4 {
  color: var(--neutral-7);
  font-size: 1.8rem;
}

.section-batteryhero .section-batteryhero-text .certificationContainer .imgBox {
  display: flex;
  gap: 2rem;
}

.section-batteryhero .section-batteryhero-text .certificationContainer .imgBox svg {
  height: 7rem;
  width: auto;
}

.page-id-304 .batteryhero-buttons {
  display: none;
}

.page-id-304 .certificationContainer {
  display: none;
}

.page-id-481 .batteryhero-buttons {
  display: none;
}

.page-id-481 .certificationContainer {
  display: none;
}



.batteryhero-buttons {
  display: flex;
  border-top: 1px solid #777;
  position: relative;
  z-index: 2000;
  margin-top: 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.batteryhero-buttons .active-indicator {
  position: absolute;
  height: 2px;
  background-color: #003ce6;
  transform: scaleX(1);
  transform-origin: left;
  transition: 300ms ease;
}

.batteryhero-buttons button {
  display: flex;
  flex: 1;
  background: #fff;
  padding: 1.2rem 0;
  border: none;
  font-size: 2rem;
  font-family: inherit;
  cursor: pointer;
  justify-content: center;

  &:hover {
    color: #0066ff;
  }
}

/* .batteryhero-buttons button:nth-child(2){
  display: none;
}
.batteryhero-buttons button:nth-child(3){
  display: none;
} */


@media (max-width: 768px) {
  .section-batteryhero {
    padding-top: 4rem;
    overflow: hidden;
    padding-bottom: 4rem;
  }

  .section-batteryhero .section-batteryhero-heading h1 {
    font-size: 3.6rem;
    margin-bottom: 1.2rem;
    width: 100%;
  }

  .section-batteryhero .section-batteryhero-heading h2 {
    font-size: 2rem;
  }

  .section-batteryhero>p {
    font-size: 1.6rem;
  }

  .section-batteryhero-battery {
    max-width: 80%;
    margin-inline: auto;
  }

  .section-batteryhero-battery .yb-battery-icon {
    width: 90vw !important;
    z-index: 90;
  }

  .section-batteryhero-battery .yb-container p {
    font-size: 4.8rem !important;
    padding-inline: 2rem;
  }

  .batteryhero-buttons {
    flex-direction: column;
  }

  .batteryhero-buttons button {
    width: 100%;
  }

  .batteryhero-buttons .active-indicator {
    height: 100%;
    transform: scaleY(0.1);
    display: none;
  }
}

.featureGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 4rem 1.6rem;
  padding-bottom: 8rem;
}

.featureGrid .featureGrid-heading h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-2);
}

.featureGrid .featureGrid-heading h2 {
  margin-top: 1.2rem;
  margin-bottom: 2rem;
  color: #000;
  font-weight: 500;
  font-size: 3.6rem;
  max-width: 400px;
  line-height: 1.4;
}

.featureGrid .featureGrid-heading p {
  color: var(--neutral-4);
  font-size: 2rem;
}

.imageTitleContentCard .BUfeaturesHead {
  min-height: 0;
}

.imageTitleContentCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.imageTitleContentCard img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  aspect-ratio: 1/0.7;
  margin-bottom: 2rem;
}

.imageTitleContentCard h4 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 54px;
  margin-bottom: 1rem;
}

.imageTitleContentCard p {
  font-size: 1.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #777;
}

.bentoBox {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.bentoBox .bentoBoxGrid-container {
  display: grid;
  /* grid-template-columns: 1fr 0.7fr 1.5fr 1fr 0.5fr 1fr; */
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 0.8fr);
  gap: 1.2rem;
  width: 100%;
}

.bentoBox .bentoBoxGrid-container .bentoBoxCard {
  background: white;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  min-height: 150px;
}

.bentoBox .bentoBoxGrid-container .main-bentoBoxCard {
  background: #4461f2;
  color: white;
  grid-column: 2 / span 2;
  grid-row: 2 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.bentoBox .bentoBoxGrid-container .title {
  font-size: 1.5em;
  font-weight: 600;
  color: #111;
}

.bentoBox .bentoBoxGrid-container .main-bentoBoxCard .title {
  color: white;
}

.bentoBox .bentoBoxGrid-container .main-bentoBoxCard img {
  position: absolute;
  right: -5%;
  bottom: -25%;
}

@media (max-width: 768px) {

  .bentoBox .bentoBoxGrid-container .main-bentoBoxCard img {

    width: 50%;

  }


}


.bentoBox .bentoBoxGrid-container .description {
  color: #666;
  font-size: 1.1em;
  line-height: 1.5;
  width: 40%;
}

.bentoBox .bentoBoxGrid-container .main-bentoBoxCard .description {
  color: rgba(255, 255, 255, 0.9);
}

.bentoBox .bentoBoxGrid-container .button {
  display: inline-flex;
  padding: 12px 24px;
  background: white;
  color: #4461f2;
  text-decoration: none;
  border-radius: 100px;
  margin-top: 20px;
  width: fit-content;
  font-weight: 500;
  align-items: center;
  gap: 8px;
}

.bentoBox .bentoBoxGrid-container .feature-icon {
  width: 48px;
  height: 48px;
  background: #f5f5f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(1) {
  background: #edf1f8;
  /* grid-column: 1 / span 2; */
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(2) {
  background: #cdd4e3;
  align-items: flex-start;
  /* grid-column: 3 / span 1; */
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(3) {
  background: #edf1f8;
  /* grid-column: 4 / span 1; */
  gap: 0;
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(3) svg {
  height: 9rem;
  display: block;
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(4) {
  background: #e1e6f2;
  /* grid-column: 5 / span 2; */
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(5) {
  background: #405dfe;
  /* // grid-column: 2 / span 4; */
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(6) {
  background: #edf1f8;
  justify-content: center;
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(6) svg {
  height: 7rem;
  display: block;
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(7) {
  background: #edf1f8;
  grid-row: 2 / span 3;
  grid-column: 4;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 0;
  gap: 3rem;
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(8) {
  background: #dadfed;
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(9) {
  background: #edf1f8;
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(9) svg {
  height: 10rem;
  display: block;
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(10) {
  background: #e1e6f2;
  position: relative;
  overflow: hidden;
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(10) img {
  position: absolute;
  width: 200%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.bentoBox.batteryBentoBox .bentoBoxGrid-container>.bentoBoxCard:nth-of-type(11) {
  background: #edf1f8;
}

@media (max-width: 768px) {
  .bentoBox {
    padding-top: 4rem;
  }

  .bentoBox .bentoBoxGrid-container {
    grid-template-columns: repeat(2, 1fr);
    display: block;

    /*  Temporary fix */
    &>* {
      margin-bottom: 2rem;
    }
  }
}

.chargingStation {
  padding-top: 16rem;
}


.page-id-140 .chargingStation {
  padding-top: 5rem;
}



.page-id-140 .bentoBox{
  padding-top: 5rem;
}


.chargingStation .chargingStation-heading h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-2);
}

.chargingStation .chargingStation-heading h2 {
  margin-top: 1.2rem;
  margin-bottom: 2rem;
  color: #000;
  font-weight: 500;
  font-size: 3.6rem;
  max-width: 400px;
  line-height: 1.4;
}

.chargingStation .chargingStation-heading p {
  color: var(--neutral-4);
  font-size: 2rem;
}

.chargingStation .chargingStation-row {
  display: flex;
  gap: 4rem;
  margin-bottom: 6rem;
}

.page-id-140 .chargingStation .chargingStation-row{

  margin-bottom: 3rem;

}

.chargingStation .chargingStation-row>div {
  width: 50%;
}

.chargingStation .chargingStation-row>div img {
  aspect-ratio: 1/1.2;
  width: 100%;
  object-fit: cover;
  border-radius: 35px;
}

.chargingStation .chargingStation-row>div h4 {
  font-size: 2.4rem;
  margin-bottom: 2.8rem;
  color: #000;
}

.chargingStation .chargingStation-row>div h5 {
  font-size: 2rem;
  color: var(--primary-1);
  margin-bottom: 1.6rem;
}

.chargingStation .chargingStation-row>div p {
  font-size: 1.6rem;
  margin-bottom: 2.8rem;
}

@media (max-width: 768px) {
  .chargingStation .chargingStation-row {
    flex-direction: column;
  }

  .chargingStation .chargingStation-row>div {
    width: 100%;
  }
}

.splitLine .line {
  opacity: 0;
  clip-path: polygon(0% 110%, 100% 110%, 100% 210%, 0% 210%);
}

.dot {
  font-size: 2rem;
  line-height: 1.5;
  margin: 0 0.2em;
}

.grid-image {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 10rem;
}

.grid-image img {
  width: 100%;
}

@media (max-width: 768px) {


  .grid-image {

    overflow-x: scroll;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .grid-image img {
    width: unset;
    height: 90vh;

  }
}

.nav2 {
  position: static;
  width: 100%;
  margin-top: 12rem;
  background: rgba(213, 222, 231, 0.6);
  padding: 0.8rem 10vw;
  display: none;
}

@media (max-width: 576px) {
  .nav2 {
    padding: 0.8rem 5vw;
  }
}


.nav2 .nav2Wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 2rem; */
}

.nav2 .nav2Wrapper .nav2Items {}

@media (max-width: 576px) {
  .nav2 .nav2Wrapper .nav2Items {
    width: 100%;
  }
}

.nav2 .nav2Wrapper .nav2Items ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style-type: none;
}

@media (max-width: 576px) {
  .nav2 .nav2Wrapper .nav2Items ul {
    justify-content: space-between;
    width: 100%;
  }
}

.nav2 .nav2Wrapper .nav2Items ul li a {
  color: var(--black);
  margin: 0 15px;
  transition: color 150ms linear;
  font-size: 1.6rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: -0.2px;
  text-align: center;
  color: #000;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .nav2 .nav2Wrapper .nav2Items ul li a {
    font-size: 1.4rem;
    margin: 0;
  }
}

.nav2 .nav2Wrapper .nav2Items ul li:hover a {
  color: var(--primary-1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes scroll-reverse {
  from {
    transform: translateX(calc(-100% - var(--gap)));
  }

  to {
    transform: translateX(0);
  }
}

.section-marquee {
  position: relative;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-marquee .c2 {
  width: 100%;
  --gap: 2rem;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(var(--mask-direction, to right),
      hsl(0 0% 0% / 0),
      hsl(0 0% 0% / 1) 20%,
      hsl(0 0% 0% / 1) 90%,
      hsl(0 0% 0% / 0));
}

.section-marquee .c2 .slider-wrapper {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  animation: scroll 45s linear infinite;
}

.section-marquee .c2 .slider-wrapper .slide {
  padding: 2rem 4rem;
  border-radius: 8rem;
  /* height: 7rem; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-marquee .c2 .slider-wrapper .slide p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #27355b;
}

.section-marquee .c2-line2 .slider-wrapper {
  animation: scroll-reverse 45s linear infinite !important;
}

.marq-grey {
  background-color: #ecf3fa;
}

.marq-blue {
  background-color: #d6e8fa;
}

.marq-blueOutline {
  background-color: transparent;
  border: 1.5px solid #3555ff;
}

.marq-blueLiteOutline {
  background-color: transparent;
  border: 1.5px solid #62afee;
}

@media only screen and (max-width: 1000px) {
  .section-marquee .c2 .slider-wrapper .slide {
    padding: 1.5rem 3rem;
  }

  .section-marquee .c2 .slider-wrapper .slide p {
    /* font-size: 1.5rem; */
  }

  .section-marquee .c2 {
    /* --gap: 3rem; */
  }
}

@media only screen and (max-width: 768px) {
  .section-marquee {
    flex-direction: column;
    gap: 2rem;
  }

  .section-marquee .c2 {
    width: 100%;
    --gap: 1.6rem;
  }

  .section-marquee .c2 .slider-wrapper .slide {
    padding: 2rem 4rem;
  }

  .section-marquee .c2 .slider-wrapper .slide p {
    /* font-size: 2rem; */
  }
}

.pin-section-battery {
  /* Add any additional styles for the main container if needed */
  height: 100vh;
  overflow: hidden;
  padding-top: 16rem;
}

.pin-section-battery .header {
  /* Styles for the header section */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  width: 50vw;
  margin-left: auto;
}

.pin-section-battery .header .small-text {
  /* Styles for the small text element */
  color: #4668e9;
  margin-bottom: 0.5rem;
}

.pin-section-battery .header h1 {
  /* Styles for the main heading */
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.pin-section-battery .header .subtitle {
  /* Styles for the subtitle */
  color: #666;
  font-size: 1.4rem;
}

.pin-section-battery .horizontal-section {
  /* Styles for the horizontal section container */
  height: calc(65vh - 200px);
  width: 100%;
  overflow: hidden;
  position: relative;
}

.pin-section-battery .horizontal-section .cardsWrapper {
  /* Styles for the cards container */
  display: flex;
  position: absolute;
  height: 100%;
  padding: 2rem;
  gap: 2rem;
  align-items: center;
  width: max-content;
}

.pin-section-battery .horizontal-section .cardsWrapper .card {
  /* Styles for each card */
  min-width: 300px;
  height: 100%;
  background: #eaeff3;
  border-radius: 1rem;
  padding: 2rem;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* flex-direction: column; */
  gap: 1rem;
  position: relative;

}

/* .pin-section-battery .horizontal-section .cardsWrapper .card:nth-child(4){
  visibility: hidden;
}
.pin-section-battery .horizontal-section .cardsWrapper .card:nth-child(5){
  display: none;
} */



.pin-section-battery .horizontal-section .cardsWrapper .card img {
  padding-top: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  height: 70%;
  width: 100%;
  object-fit: contain;
}

.pin-section-battery .horizontal-section .cardsWrapper .card .card-number {
  /* Styles for the card number */
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  line-height: 1.1;
}

.pin-section-battery .horizontal-section .cardsWrapper .card .card-text {
  /* Styles for the card text */
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
}

.pin-section-battery .horizontal-section .cardsWrapper .spacer {
  /* Styles for the spacer */
  /* min-width: 50vw; */
}

.bento43 {
  font-size: 3.3rem;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.34;
  letter-spacing: -0.86px;
  text-align: center;
  color: #2e2e2e;
}

.bento44 {
  font-size: 3.4rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: -0.89px;
  text-align: left;
  color: #000;
}

.bento35 {
  font-size: 2.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.34;
  letter-spacing: -0.7px;
  text-align: left;
  color: #222121;
}

.bento39 {
  font-size: 2.6rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.34;
  letter-spacing: -0.78px;
  text-align: center;
  color: #3555ff;
}

.bento34 {
  font-size: 2.3rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.34;
  letter-spacing: -0.69px;
  text-align: center;
  color: #505050;
}

.bento31 {
  font-size: 2.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.16;
  letter-spacing: -0.62px;
  text-align: center;
  color: #222121;
}

.bentoCenter {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.bento20 {
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.34;
  letter-spacing: -0.41px;
  text-align: left;
  color: #222121;
  opacity: 0.9;
}

.bento19 {
  font-size: 1.7rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.34;
  letter-spacing: -0.37px;
  text-align: center;
  color: #7a7a7a;
}

.bento15 {
  font-size: 1.3rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.34;
  letter-spacing: -0.31px;
  text-align: left;
  color: #38363b;
  opacity: 0.6;
}

.bento60 {
  font-size: 4.2rem;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.03;
  letter-spacing: -2.41px;
  text-align: left;
  color: #222121;
}

.bento81 {
  font-size: 5.5rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.03;
  letter-spacing: -3.26px;
  text-align: left;
  color: #222121;
}


.section-join {
  margin-top: 4rem;
  padding-top: 16rem;
  padding-bottom: 8rem;
  background-image: linear-gradient(to bottom, rgba(214, 235, 252, 0.01), #d6ebfc);

}

.section-join .mainWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.section-join .mainWrapper .headWrapper h1 {
  font-size: 6vw;
  line-height: 1.2;
  text-align: center;
  background-image: url(../images/textImage.png);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.openNavModalBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  border-radius: 300000px;
  padding: 2rem 1.6rem;
  font-family: inherit;
  border: none;
  border: 2px solid;
  border-color: var(--primary-1);
  color: var(--primary-1);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.6rem;
  gap: 0;
  transition: all 0.4s ease;
  z-index: 200;
  position: relative;
  white-space: nowrap;

  &:hover {
    border-color: var(--primary-1);
    color: #fff;
    background: var(--primary-1);
  }
}

@media (max-width: 768px) {
  .openNavModalBtn {
    font-size: 1.8rem;
    padding: 1.8rem 1.4rem;
  }
}


.contactModal-content {
  padding: 3vw 5vw;
  border-radius: 32px;
  background: linear-gradient(to right, #d6ebfc 50%, #fff 50%);
}

.contactModal-container {
  display: flex;
  gap: 5vw;
  align-items: center;
  min-height: 70vh;
}

.contactModal-left {
  width: 50%;

  h2 {
    margin-bottom: 2rem;
    margin-top: 1.2rem;
    font-size: 2.8rem;
    font-weight: 500;
    max-width: 220px;
  }
}

.contactModal-left img {
  width: 8rem;
}

.contactModal-right {
  width: 50%;

  form {
    padding-left: 5vw;

    .contact-form {
      display: flex;
      flex-direction: column;
    }

    .form-group {
      margin-bottom: 3.2rem;
    }

    .input-container {
      position: relative;
    }

    input[type="text"],
    input[type="email"],
    textarea {
      width: 100%;
      padding: 10px 0;
      border: none;
      border-bottom: 2px solid #bed0df;
      outline: none;
      transition: border-color 0.3s;
      font-family: inherit;
    }

    input:focus,
    textarea:focus {
      border-bottom: 2px solid #007bff;
      /* Change border color on focus */
    }

    label {
      position: absolute;
      /* Position absolute to move it */
      left: 0px;
      /* Position from the left */
      top: 10px;
      /* Position from the top */
      color: #000;
      /* Default label color */
      transition: all 0.3s ease;
      /* Smooth transition for label */
      pointer-events: none;
      /* Prevent pointer events on label */
    }

    input:focus+label,
    input:not(:placeholder-shown)+label,
    textarea:focus+label,
    textarea:not(:placeholder-shown)+label {
      top: -10px;
      left: 0px;
      font-size: 12px;
      color: #007bff;
    }

    input[type="checkbox"]+label {
      position: relative;
      top: 0;
      left: 6px;
      transform: translateY(-2px);
      display: inline-block;
      font-size: 1.4rem;
    }
  }
}

@media (max-width: 767px) {
  .contactModal-content {
    background: linear-gradient(to bottom, #d6ebfc 45%, #fff 45%);
  }

  .contactModal-container {
    flex-direction: column;
    min-height: 90vh;
  }

  .contactModal-left {
    width: 100%;
    height: 40%;
    flex: 0.9;
    padding-top: 4rem;

    h2 {
      font-size: 2rem;
      max-width: 100%;
    }
  }

  .contactModal-right {
    width: 100%;
  }

  #contactModal {
    padding-top: 5vw;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100%;
  /* Optional, prevents body resizing */
}

nav .ContactButtonWrapper {
  margin: auto 0;
  opacity: 0;
  visibility: hidden;
}



.contactOutside {
  position: fixed;
  right: 7.5vw;
  top: 2.1rem;
  z-index: 999;
}

.navLogoMobile {
  display: none;
}

@media (max-width: 768px) {
  .navLogoMobile {
    display: block !important;
  }

  .navLogoMobile svg {
    height: 6rem;
    width: 6rem;
  }
}

@media (max-width: 576px) {

  .navLogoMobile svg {
    height: 5rem;
    width: 5rem;
  }
}

@media (max-width: 1700px) {
  .contactOutside {
    position: fixed;
    right: 7.5vw;
    top: 2.6rem;
    z-index: 999;
  }
}


@media (max-width: 768px) {
  .contactOutside {
    right: 7.5vw;
    top: 1.6rem;
  }
}

@media (max-width: 576px) {
  .contactOutside {
    right: 5vw;
    top: 1.6rem;
  }
}

.blogSingle-container.generalPages-container {
  padding-top: 8rem !important;
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-links {
  list-style: none;
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-links li {
  margin-bottom: 2rem;
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-links li a {
  font-size: 1.8rem;
  color: #999999;
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-links {
  list-style-type: none;
  padding: 0;
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-links li {
  margin-bottom: 2rem;
}

.blogSingle-container .blogSinlge-sidebar .nested-links {
  display: none;
  list-style-type: none;
  padding-left: 10px;
  overflow: hidden;
  padding-top: 1.2rem;
}

.blogSingle-container .blogSinlge-sidebar .sidebar-accordion-title {
  cursor: pointer;
  color: #007bff;
  text-decoration: underline;
}

.blogSingle-container .blogSinlge-sidebar .sidebar-accordion-title {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: black;
  text-decoration: none;
}

.blogSingle-container .blogSinlge-sidebar .sidebar-accordion-title.active {
  color: var(--primary-1);
}

.blogSingle-container .blogSinlge-sidebar .accordion-icon {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
  width: 16px;
}

.blogSingle-container .blogSinlge-sidebar .sidebar-accordion-title.active .accordion-icon {
  transform: rotate(180deg);
}

.blogSingle-container .blogSinlge-sidebar .blogSinlge-sidebar-links li a.activeLink {
  color: var(--primary-1);
}

.activeNav {
  color: #003CE6 !important;
  font-weight: 700 !important;
  border-bottom: 3px solid #003CE6 !important;
  padding-bottom: 1rem !important;
}

.oems-banner {
  max-width: 100%;
}