@font-face {
  font-family: Suit;
  src: url('../fonts/SUIT-ExtraBold.woff2') format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Suit;
  src: url('../fonts/SUIT-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Suit;
  src: url('../fonts/SUIT-Heavy.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Suit;
  src: url('../fonts/SUIT-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --maintxt: #000;
  --sub: #bad156;
  --sub1: #52943e;
  --primary: #525252;
  --background: #f5f5f5;
  --white: white;
  --placeholder: #d2e1dc;
  --subtxt: #acacac;
  --line1: #eaf5f0;
  --blue: #5800dc;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--maintxt);
  letter-spacing: -.08em;
  word-break: keep-all;
  text-wrap: balance;
  font-family: Suit, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

h1 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 800;
  line-height: 1.3em;
}

h2 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  font-weight: 800;
  line-height: 1.3em;
}

h3 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.3em;
}

a {
  text-decoration: underline;
}

.nav {
  z-index: 50;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  position: fixed;
  inset: 0% 0% auto;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.container.horizontal-between.gap-1 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
}

.container.vertical-left.gap-3em.battertcontainer {
  z-index: 2;
  margin-top: -15%;
  margin-bottom: 10em;
  position: relative;
}

.container.grid-2-1 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.horizontal {
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.horizontal-between {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.horizontal-between.gap-5em {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
}

.vertical {
  flex-flow: column;
  align-items: stretch;
  text-decoration: none;
  display: flex;
}

.vertical-center {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gap-1em {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.gap-2em {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.gap-3em {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
}

.gap-05em {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
}

.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.grid-2.gap-2em {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.grid-3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text {
  color: var(--maintxt);
  font-size: 1.25em;
  line-height: 1.3em;
}

.text.whitetxt.aligncenter.max-width15 {
  max-width: 15em;
}

.text.bold.graytxt {
  color: #00000080;
}

.text.bold.graytxt.alignright-1 {
  text-align: right;
}

.text.span-8 {
  color: var(--sub);
}

.text.span-8:hover {
  color: var(--sub1);
}

.text.en {
  text-transform: uppercase;
}

.text-big {
  color: var(--maintxt);
  max-width: 26em;
  font-size: 1.5em;
  line-height: 1.3em;
}

.text-big.en {
  text-transform: uppercase;
}

.text-small {
  color: var(--maintxt);
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
}

.text-small.navtxt {
  justify-content: center;
  align-items: center;
  height: 2em;
  font-weight: 800;
  display: flex;
}

.text-small.navtxt:hover {
  color: var(--primary);
}

.gutter-1em {
  width: 100%;
  height: 1em;
}

.gutter-2em {
  width: 100%;
  height: 2em;
}

.gutter-3em {
  width: 100%;
  height: 3em;
}

.gutter-4em {
  width: 100%;
  height: 4em;
}

.gutter-5em {
  width: 100%;
  height: 5em;
}

.section {
  padding-top: 10em;
  padding-bottom: 10em;
}

.section.black {
  background-color: var(--maintxt);
  background-image: url('../images/bg1-1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section.relative {
  position: relative;
}

.section.relative.vertical.gap-1 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
}

.section.gray {
  background-color: var(--background);
}

.section._1 {
  background-image: linear-gradient(180deg, #fff, var(--background) 50%);
}

.vertical-left {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.vertical-right {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.horizontal-left {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.horizontal-right {
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.horizontal-middle {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.horizontal-between-middle {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.horizontal-between-bottom {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.horizontal-between-bottom.gap-5em {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
}

.horizontal-bottom {
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.section-nobtm {
  background-image: linear-gradient(180deg, var(--white) 25%, #ebf0d5);
  padding-top: 10em;
}

.section-big {
  padding-top: 11em;
  padding-bottom: 11em;
}

.section-big-nobtm {
  padding-top: 7em;
}

.slide {
  width: 100%;
  height: auto;
}

.link-block {
  color: #222;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
  display: flex;
}

.whitetxt {
  color: #fff;
}

.en {
  font-family: Syncopate, sans-serif;
  font-weight: 300;
}

.width100 {
  width: 100%;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.height100 {
  height: 100%;
}

.vertical-center-between {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.herotop {
  z-index: 2;
  width: 100%;
  height: 100dvh;
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
}

.texthuge {
  font-size: 2em;
  line-height: 1.5em;
}

.btn {
  color: #051328;
  cursor: pointer;
  background-color: #e7e7e7;
  border: 1px #000;
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  font-family: Poppins;
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.swiper-content {
  background-color: var(--primary);
  text-align: left;
  border-radius: 18px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 3em;
  padding: 3em;
  position: relative;
  overflow: hidden;
}

.photobox {
  border-radius: 1em;
  width: 90%;
  max-width: 30em;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 6px 12px #0003;
}

.navbar-button-container {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.viraltitle {
  color: var(--maintxt);
  text-align: center;
  text-transform: uppercase;
  margin-top: .1em;
  font-family: Sb Aggro;
  font-size: 5em;
  font-weight: 500;
  line-height: 1em;
}

.card {
  background-color: #fff;
  border-radius: 2em;
  width: 100%;
  padding: 2.5em;
}

.horizontal-left-middle {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gap-4em {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
}

.gap-5em {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
}

.horizontal-between-stretch {
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.vertical-left-between {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.vertical-left-center {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.vertical-left-center.width100.gap-3em.height100.btm10em {
  padding-bottom: 10em;
}

.horizontal-left-bottom {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.sugessbtn {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -.5em;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
}

.card1 {
  color: #fff;
  background-color: #5208b9;
  background-image: url('../images/section4-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.34%;
  height: 100%;
  padding: 1.5em;
  display: flex;
}

.horizontal-right-center {
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.logo {
  width: auto;
  height: 1.5em;
}

.bold {
  font-weight: 700;
}

.box {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  background-color: var(--white);
  border-radius: 1em;
  flex-flow: column;
  padding: 2em;
  transition: color .2s, background-color .2s;
  display: flex;
  position: relative;
}

.box.gap-1em {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.box._1 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  border-radius: 2em;
  justify-content: space-between;
  width: 100%;
  padding: 3em 0 0;
  overflow: hidden;
}

.box._2 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: space-between;
  padding: 3em 0 0;
  overflow: hidden;
}

.button {
  border: 1px solid var(--placeholder);
  color: var(--maintxt);
  text-align: center;
  white-space: nowrap;
  background-color: #fff0;
  border-radius: 1em;
  justify-content: center;
  align-items: center;
  height: 2em;
  padding: 0 1em;
  font-size: 1em;
  font-weight: 400;
  line-height: 1em;
  transition: color .2s, background-color .2s;
  display: flex;
}

.button:hover {
  background-color: var(--white);
}

.button.big {
  background-color: var(--primary);
  color: var(--white);
  border-style: none;
  border-radius: 1em;
  width: 100%;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.big:hover {
  background-color: var(--background);
  color: var(--primary);
}

.button.big1 {
  background-color: var(--background);
  color: var(--subtxt);
  border-style: none;
  border-radius: 1em;
  width: 100%;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.big1:hover {
  background-color: var(--placeholder);
  color: var(--maintxt);
}

.button.big2 {
  background-color: var(--background);
  color: var(--primary);
  border-style: none;
  border-radius: 1em;
  width: 100%;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.big2:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button.label {
  color: var(--subtxt);
  background-color: #fff0;
  border-style: none;
  border-radius: 0;
  height: 1.5em;
  padding-left: 0;
  padding-right: 0;
}

.button.label:hover {
  color: var(--maintxt);
}

.button.small {
  background-color: var(--maintxt);
  color: var(--white);
  border-style: none;
  border-radius: 1em;
}

.button.small:hover {
  background-color: var(--background);
  color: var(--primary);
}

.button.small1 {
  background-color: var(--background);
  color: var(--subtxt);
  border-style: none;
}

.button.small1:hover {
  background-color: var(--placeholder);
  color: var(--maintxt);
}

.button.small2 {
  background-color: var(--background);
  color: var(--primary);
  border-style: none;
}

.button.small2:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button.label1 {
  color: var(--primary);
  background-color: #fff0;
  border-style: none;
  height: auto;
  padding-left: 0;
  padding-right: 0;
}

.button.label1:hover {
  color: var(--maintxt);
}

.button.big3 {
  background-color: var(--white);
  color: var(--subtxt);
  border-style: none;
  border-radius: 1em;
  width: 100%;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.big3:hover {
  background-color: var(--placeholder);
  color: var(--maintxt);
}

.button.middle3 {
  background-color: var(--white);
  color: var(--subtxt);
  border-style: none;
  border-radius: 1em;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.middle3:hover {
  background-color: var(--placeholder);
  color: var(--maintxt);
}

.button.middle {
  background-color: var(--primary);
  color: var(--white);
  border-style: none;
  border-radius: 1em;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.middle:hover {
  background-color: var(--background);
  color: var(--primary);
}

.button.middle1 {
  background-color: var(--background);
  color: var(--subtxt);
  border-style: none;
  border-radius: 1em;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.middle1:hover {
  background-color: var(--placeholder);
  color: var(--maintxt);
}

.button.middle2 {
  background-color: var(--background);
  color: var(--primary);
  border-style: none;
  border-radius: 1em;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.middle2:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button.label2 {
  color: var(--maintxt);
  background-color: #fff0;
  border-style: none;
  height: 1.5em;
  padding-left: 0;
  padding-right: 0;
}

.button.label2:hover {
  color: var(--subtxt);
}

.button.label3 {
  color: var(--white);
  background-color: #fff0;
  border-style: none;
  border-radius: 0;
  height: 1.5em;
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
}

.button.label3:hover {
  color: var(--subtxt);
}

.button.small3 {
  background-color: var(--white);
  color: var(--primary);
  border-style: none;
}

.button.small3:hover {
  background-color: var(--primary);
  color: var(--white);
}

.graytxt {
  color: var(--subtxt);
}

.gap-025em {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
}

.navpc {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.width33 {
  width: 33.3333%;
}

.width50 {
  width: 50%;
}

.openbtn {
  background-color: var(--placeholder);
  color: var(--white);
  border-radius: 20em;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  transition: background-color .2s;
  display: flex;
}

.openbtn:hover {
  background-color: var(--subtxt);
}

.sugessbtn-2 {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -.5em;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
}

.gap-1-5em {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
}

.width90 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  z-index: 0;
  background-color: var(--white);
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding-left: 10%;
  padding-right: 2%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-hero {
  font-size: 6em;
  font-weight: 800;
  line-height: 1em;
}

.image-3 {
  transform-origin: 100% 100%;
  width: auto;
  height: 100%;
  padding-top: 6em;
}

.hero-txtbox {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  padding-bottom: 5em;
  padding-left: 5%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-imgbox {
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  display: flex;
}

.text-rolling {
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  font-family: Syncopate, sans-serif;
  font-size: 6em;
  font-weight: 700;
  line-height: 1em;
}

.rollingbox {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.rollingbox-inner {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  justify-content: flex-start;
  align-items: center;
  padding-right: 1.5em;
  display: flex;
}

.splide {
  width: 100%;
  overflow: hidden;
}

.splide.slider1 {
  overflow: hidden;
}

.item {
  filter: brightness(35%);
  cursor: grab;
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 33%;
  max-width: 30em;
  padding: 2em;
  transition: all .575s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  transform: scale(.9);
}

.item.slick-current {
  filter: brightness();
  transform: scale(1.2);
}

.list {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  transition: all .8s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.card-2 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  transition: all .2s;
  display: flex;
}

.wrapper {
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin-top: 10em;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
}

.navbg {
  z-index: 1;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #000000bf;
  position: absolute;
  inset: 0%;
}

.navbox {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.text-card {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Syncopate, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1em;
}

.text-card1 {
  color: var(--white);
  text-align: center;
  font-size: 1.3em;
  line-height: 1.3em;
}

.image-4 {
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.link-block-2 {
  width: 100%;
  text-decoration: none;
  position: relative;
}

.link-txtbox {
  z-index: 2;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  aspect-ratio: 1;
  color: var(--white);
  background-color: #0003;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 4em;
  text-decoration: none;
  transition: filter .4s, background-color .4s;
  display: flex;
  position: relative;
}

.link-txtbox:hover {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #0006;
}

.link-txtbox._1 {
  background-color: #0000003b;
}

.image-5 {
  z-index: 1;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.text-huge {
  white-space: nowrap;
  font-size: 2em;
  font-weight: 900;
  line-height: 1.3em;
}

.text-huge.span-2 {
  background-image: linear-gradient(135deg, var(--sub), var(--sub1));
}

.image-6 {
  z-index: 3;
  width: 10%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
}

.image-7 {
  width: 2em;
  height: auto;
}

.footer {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  background-color: var(--maintxt);
  flex-flow: column;
  width: 100%;
  padding-bottom: 5em;
  display: flex;
  overflow: hidden;
}

.footer-rollingbox {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
}

.text-block {
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  font-family: Syncopate, sans-serif;
  font-size: 1em;
  font-weight: 700;
  line-height: 1em;
}

.footer-rollinginner {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-8 {
  width: auto;
  height: 4em;
}

.txt-footer {
  color: var(--subtxt);
  font-size: .85em;
  line-height: 1.75em;
  text-decoration: none;
}

.txt-footer.title {
  color: var(--white);
  font-size: 1em;
  font-weight: 800;
  line-height: 1.5em;
}

.txt-footer.whitetxt {
  color: var(--white);
}

.txt-cs {
  color: var(--white);
  font-family: Syncopate, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1em;
}

.image-9 {
  width: 1.5em;
  height: auto;
}

.footer-btn {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 20em;
  justify-content: space-between;
  align-items: center;
  padding: .5em 1em;
  transition: background-color .2s, color .2s;
  display: flex;
}

.footer-btn:hover {
  background-color: var(--white);
  color: var(--maintxt);
}

.pdt-hero {
  background-color: var(--maintxt);
  width: 100%;
  height: 550vh;
  position: relative;
}

.pdt-hero-bg {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.pdt-hero-obj {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.pdt-hero-obj._1 {
  justify-content: center;
  align-items: center;
  height: 150vh;
}

.txt-pdthero {
  color: var(--white);
  text-align: center;
  font-size: 4em;
  font-weight: 800;
  line-height: 1.3em;
}

.pdt-hero-container {
  z-index: 2;
  width: 100%;
  position: absolute;
  top: 0;
}

.txt-title {
  max-width: 15em;
  font-size: 4em;
  font-weight: 800;
  line-height: 1.25em;
}

.pdt-hero-gradient {
  background-image: linear-gradient(90deg, #000, #0000);
  width: 5%;
  height: 100%;
  position: absolute;
  left: 0;
}

.pdt-hero-gradient._1 {
  background-image: linear-gradient(270deg, #000, #0000);
  left: auto;
  right: 0;
}

.pdt-hero-side {
  z-index: 6;
  width: 100%;
  height: 100vh;
  position: absolute;
}

.txt-description {
  color: #00000080;
  max-width: 25em;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5em;
}

.txt-description.blacktxt {
  color: var(--maintxt);
}

.txt-description.whitetxt {
  color: var(--white);
}

.span-1 {
  color: var(--maintxt);
}

.span-2 {
  background-image: linear-gradient(135deg, var(--sub), var(--sub1));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.image-10 {
  width: 100%;
  height: auto;
}

.image-11 {
  opacity: .2;
  width: 100%;
  height: auto;
}

.lottie-0 {
  z-index: 7;
  aspect-ratio: 16 / 9;
  opacity: .7;
  object-fit: cover;
  min-width: 100%;
  min-height: 100vh;
  position: absolute;
}

.div-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
}

.div-block-2 {
  z-index: 6;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

.pdt-img1 {
  z-index: 1;
  width: 100%;
  height: auto;
  position: relative;
}

.tech-box {
  position: relative;
}

.pdt-img2 {
  z-index: 2;
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0%;
}

.pdt-img3 {
  z-index: 3;
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0%;
}

.tech-txtbox {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: absolute;
  inset: 0%;
}

.line {
  background-color: var(--maintxt);
  background-image: linear-gradient(270deg, black, var(--subtxt));
  width: 50%;
  height: 1px;
}

.line._1 {
  background-image: linear-gradient(90deg, black, var(--subtxt));
}

.line-dot {
  background-color: var(--maintxt);
  border-radius: 20em;
  width: 1em;
  height: 1em;
  margin-left: 100%;
  transform: translate(-50%, -50%);
}

.line-dot._1 {
  margin-left: 0%;
  margin-right: 100%;
}

.pdt-img4 {
  z-index: 4;
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0%;
}

.txt-subtitle {
  max-width: 15em;
  font-size: 2em;
  font-weight: 800;
  line-height: 1.25em;
}

.txt-subtitle.whitetxt.en, .txt-subtitle.en {
  text-transform: uppercase;
}

.slider {
  background-color: #fff0;
  width: 100%;
  height: auto;
  margin-bottom: 3em;
}

.span-3 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #a84e8a, #31367b);
  -webkit-background-clip: text;
  background-clip: text;
}

.slide-box {
  border-radius: 2em;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.mask {
  height: auto;
  overflow: visible;
}

.image-12 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slide-txtbox {
  z-index: 2;
  padding: 3em;
  position: absolute;
  inset: 0%;
}

.slide-2 {
  height: auto;
  margin-right: 2em;
}

.arrow-box {
  z-index: 2;
  background-color: #0000001a;
  border-radius: 20em;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  margin-top: 1em;
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1em;
  display: flex;
  top: 100%;
  right: 0%;
}

.arrow-box._1 {
  margin-right: 4em;
  left: 100%;
}

.arrow-icon {
  width: 1em;
  height: 1em;
  transform: rotate(-90deg);
}

.arrow-icon._1 {
  transform: rotate(90deg);
}

.slide-nav {
  z-index: 1;
  justify-content: flex-start;
  align-items: center;
  height: 3em;
  margin-top: 1em;
  margin-left: 0;
  display: flex;
  top: 100%;
  left: 0%;
}

.span-4 {
  font-size: .5em;
}

.lottie-animation {
  width: 100%;
  height: auto;
}

.lottie-animation-2 {
  z-index: 1;
  width: 100%;
  height: auto;
}

.section-battery {
  background-image: linear-gradient(#000 50%, #18465580 75%, #308ba900);
  flex-flow: column;
  width: 100%;
  padding-bottom: 10em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.span-5 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #5df0d7, #308ba9);
  -webkit-background-clip: text;
  background-clip: text;
}

.lottie-animation-3 {
  width: 80%;
  height: auto;
  margin-left: 20%;
}

.lottie-animation-4 {
  width: 80%;
}

.footer-btnbox {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-btnbox._1 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
}

.pdt-housing {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.line-1 {
  background-image: linear-gradient(135deg, #a84e8a, #31367b);
  width: 100%;
  height: 2px;
}

.line-1._1 {
  background-image: linear-gradient(135deg, var(--sub), var(--sub1));
}

.mo {
  display: none;
}

.div-block-3 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.wrapdown {
  flex-flow: wrap;
  display: flex;
}

.span-6 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #858585, #c5c5c5 50%, #858585);
  -webkit-background-clip: text;
  background-clip: text;
}

.span-7 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #ffd633, #974c2e);
  -webkit-background-clip: text;
  background-clip: text;
}

.subpage-topbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 450px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.subpage-topbox._1 {
  max-height: none;
}

.subpage-top {
  z-index: 1;
  width: 100%;
  height: auto;
  position: relative;
}

.subpage-top._1 {
  z-index: 0;
  position: absolute;
}

.subpage-toptxt {
  z-index: 2;
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  background-image: linear-gradient(#0003 50%, #00000080);
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 3em;
  display: flex;
  position: absolute;
  inset: 0%;
}

.form {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.dropdown-toggle {
  background-color: var(--background);
  border-radius: .5em;
  justify-content: flex-start;
  align-items: center;
  height: 2.5em;
  padding: 0 1em;
  font-size: 1.3em;
  display: flex;
}

.dropdown {
  z-index: 1;
  width: 100%;
}

.text-field {
  background-color: var(--background);
  border: 1px #000;
  border-radius: .5em;
  width: 100%;
  height: 2.5em;
  margin-bottom: 0;
  padding: 0 1em;
  font-size: 1.3em;
  line-height: 1em;
}

.btn-place {
  background-color: var(--maintxt);
  color: #fff;
  border-radius: .5em;
  justify-content: center;
  align-items: center;
  height: 2.5em;
  padding: 0 1.5em;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.result-box {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  background-color: var(--background);
  border-radius: 1em;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .75fr .25fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  padding: 2em;
  transition: color .2s, background-color .2s;
  display: grid;
  position: relative;
}

.pagenation {
  background-color: var(--background);
  text-align: center;
  border-radius: 20em;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  font-size: 1em;
  font-weight: 700;
  display: flex;
}

.pagenation.arrow {
  background-color: var(--white);
  color: var(--subtxt);
}

.section-sub {
  padding-top: 5em;
  padding-bottom: 10em;
}

.section-sub.black {
  background-color: var(--maintxt);
  background-image: url('../images/bg1-1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-sub.relative {
  position: relative;
}

.section-sub.relative.vertical.gap-1 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
}

.section-sub.gray {
  background-color: var(--background);
}

.hamburger {
  display: none;
}

.hamburgerbar {
  background-color: var(--white);
  width: 100%;
  height: 1px;
}

.nav-dropdown {
  z-index: 10;
  display: none;
  position: fixed;
  inset: 0%;
}

.txt-navdropdown {
  color: var(--maintxt);
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1em;
  text-decoration: none;
}

.nav-dropdownbox {
  z-index: 2;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  background-color: #fff;
  border-bottom-right-radius: 2em;
  border-bottom-left-radius: 2em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 4em;
  padding-bottom: 4em;
  display: flex;
  position: relative;
}

.image-13 {
  background-color: #ffffff26;
  border-radius: 20em;
  width: 3em;
  height: 3em;
  margin-top: 1em;
  padding: 1em;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
}

.lottie-animation-5 {
  width: 25%;
  margin-left: auto;
  margin-right: auto;
}

.section-notop {
  padding-bottom: 10em;
}

.section-notop.black {
  background-color: var(--maintxt);
  background-image: url('../images/bg1-1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-notop.relative {
  position: relative;
}

.section-notop.relative.vertical.gap-1 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
}

.section-notop.gray {
  background-color: var(--background);
}

.section-notop._1 {
  background-image: linear-gradient(180deg, #fff, var(--background) 50%);
}

.section-notop._1.vertical.gap-10em {
  grid-column-gap: 10em;
  grid-row-gap: 10em;
}

.image-14 {
  width: 3em;
  height: 3em;
}

.nav-dropdownbg {
  z-index: 1;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.txt-description1 {
  color: #00000080;
  max-width: 30em;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5em;
}

.txt-description1.blacktxt {
  color: var(--maintxt);
}

.txt-description1.whitetxt {
  color: var(--white);
}

.image-15 {
  width: 10em;
  height: auto;
}

.section-brand {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  background-image: linear-gradient(180deg, #f5f5f500, var(--background)), url('../images/brand-6.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  padding-top: 10em;
  padding-bottom: 10em;
  display: flex;
}

.section-brand.black {
  background-color: var(--maintxt);
  background-image: url('../images/bg1-1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-brand.relative {
  position: relative;
}

.section-brand.relative.vertical.gap-1 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
}

.section-brand.gray {
  background-color: var(--background);
}

.section-brand._1 {
  background-image: linear-gradient(180deg, #fff, var(--background) 50%);
}

.section-brand._1.vertical.gap-10em {
  grid-column-gap: 10em;
  grid-row-gap: 10em;
}

.navguide {
  justify-content: center;
  align-items: flex-end;
  width: 1px;
  height: 200vh;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.navguide-box {
  height: 100vh;
}

.background-video {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.div-block-4 {
  border-radius: 2em;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.div-block-5 {
  z-index: 2;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-image: linear-gradient(#0000 30%, #0009);
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 30em 2em 5em;
  display: flex;
  position: relative;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 12px;
  }

  .text-hero {
    font-size: 5em;
  }

  .pdt-hero-side {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }

  .container.grid-2-1 {
    grid-template-columns: 1fr;
  }

  .horizontal-between {
    flex-flow: column;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .text.bold.graytxt.alignright-1 {
    text-align: left;
  }

  .horizontal-between-bottom {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .swiper-content {
    width: 100%;
    margin-bottom: 0;
  }

  .navbar-button-container {
    justify-content: space-between;
    align-items: flex-end;
    width: 3em;
    height: 2em;
  }

  .viraltitle {
    font-size: 3em;
  }

  .horizontal-between-stretch {
    flex-flow: column;
  }

  .card1 {
    width: 100%;
    height: auto;
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .button.middle1 {
    width: 100%;
  }

  .navpc {
    display: none;
  }

  .hero {
    flex-flow: column;
    height: auto;
    padding-left: 5%;
    padding-right: 0%;
  }

  .text-hero {
    font-size: 4em;
  }

  .image-3 {
    width: 100%;
    height: auto;
    padding-top: 0;
  }

  .hero-txtbox {
    flex-flow: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    height: auto;
    padding-top: 10em;
    padding-left: 0%;
    position: relative;
  }

  .hero-imgbox {
    position: relative;
  }

  .text-rolling {
    font-size: 4em;
  }

  .item {
    width: 60%;
    max-width: none;
  }

  .image-6 {
    display: none;
  }

  .txt-title {
    font-size: 3.5em;
  }

  .lottie-0 {
    display: none;
  }

  .div-block-2 {
    justify-content: flex-start;
    align-items: center;
    padding-top: 6em;
  }

  .line {
    width: 83%;
  }

  .line._1 {
    background-image: linear-gradient(270deg, black, var(--subtxt));
  }

  .line-dot._1 {
    margin-left: 100%;
    margin-right: auto;
  }

  .image-12 {
    aspect-ratio: 2 / 2.5;
  }

  .slide-txtbox {
    background-image: linear-gradient(#00000080, #0000 50%);
  }

  .slide-2 {
    margin-right: 1em;
  }

  .lottie-animation-2 {
    width: 150%;
  }

  .footer-btnbox {
    width: 100%;
  }

  .footer-btnbox._1 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .pdt-housing {
    width: 150%;
    max-width: none;
    margin-left: -25%;
  }

  .pc {
    display: none;
  }

  .mo {
    display: flex;
  }

  .div-block-3 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .subpage-topbox {
    max-height: none;
  }

  .subpage-top {
    width: 150%;
    min-width: 150%;
  }

  .form {
    flex-flow: column;
  }

  .result-box {
    grid-template-columns: 1fr 1fr;
  }

  .hamburger {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
    flex-flow: column;
    justify-content: center;
    width: 3em;
    height: 2em;
    display: flex;
  }

  .hamburgerbar {
    background-color: var(--maintxt);
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 10px;
  }

  .viraltitle {
    font-size: 2.5em;
  }

  .vertical-left-center.width100.gap-3em.height100.btm10em {
    padding-bottom: 5em;
  }

  .txt-pdthero, .txt-title {
    font-size: 3em;
  }

  .lottie-animation-2 {
    width: 200%;
  }

  .subpage-top {
    width: 200%;
    min-width: 200%;
  }
}

#w-node-_3033f72c-ceda-d83d-fa45-30fe9c9f2109-ff42e4fc, #w-node-_940327a0-4c55-bf31-a87f-b8270a9ca7ee-ff42e4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-b47f618e-1adf-c6a4-0a3a-37b112e5ca5d-222c2826, #w-node-cf76fb85-c675-0663-e68a-44a490541aba-222c2826, #w-node-_266cdbcf-0028-f5c3-a9fc-0d8b2e745d81-222c2826, #w-node-_46b4dc8d-631f-431b-2605-0ad6c5f77e41-222c2826, #w-node-e3e06cee-3e16-3461-d35c-bf9773007f54-222c2826 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Suit';
  src: url('../fonts/SUIT-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suit';
  src: url('../fonts/SUIT-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suit';
  src: url('../fonts/SUIT-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suit';
  src: url('../fonts/SUIT-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}