:root {
  --white: white;
  --dark-grey: #b1a2a2;
  --sandy: #ffb06c;
  --purple: #6c63ff;
  --black: #141313;
  --sandy-black: #402e25;
}

.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;
}

.container {
  z-index: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 5vw;
  padding-left: 7vw;
  padding-right: 7vw;
  display: flex;
  position: relative;
}

.container.hide {
  display: none;
}

.container.top {
  justify-content: flex-start;
}

.heading1 {
  color: var(--white);
  letter-spacing: 1px;
  font-family: Gotham, sans-serif;
  font-size: 1.5em;
  line-height: 1.5em;
}

.darkgrey {
  color: var(--dark-grey);
}

.heading2 {
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-family: Gotham, sans-serif;
  font-size: 1.1rem;
  line-height: 1.3em;
}

.heading2.sandy {
  color: var(--sandy);
  font-size: 1.1rem;
}

.heading2.sandy.m-r5 {
  line-height: 100%;
}

.heading2.purple {
  color: var(--purple);
}

.heading2.black {
  color: var(--black);
}

.heading2.brown {
  color: #3f2626;
}

.heading2.m-r5 {
  margin-right: 5px;
}

.section {
  z-index: 1;
  flex-direction: column;
  width: 100%;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
  position: relative;
}

.section.section80 {
  width: 75%;
  max-width: 70vw;
  margin-top: .8em;
  margin-bottom: .8em;
}

.section.section80.center {
  margin-top: auto;
  margin-bottom: auto;
}

.grid {
  grid-column-gap: .8em;
  grid-row-gap: .8em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.card {
  cursor: pointer;
  background-color: #7c7c7c;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  padding: 3em 1.5em;
  display: flex;
  position: relative;
  box-shadow: 7px 7px 10px 10px rgba(0, 0, 0, .1);
}

.card:hover {
  filter: saturate(150%) brightness(125%);
  box-shadow: 1px 1px 17px 8px rgba(94, 94, 94, .35);
}

.card.purple {
  background-color: var(--purple);
  position: relative;
}

.card.purple.hide {
  display: none;
}

.card.sandy {
  background-color: var(--sandy);
}

.card.sandy.hide {
  display: none;
}

.card.ceramics {
  background-color: #ceb4a5;
}

.card.light-grey {
  background-color: #dbdbdb;
}

.heading3 {
  font-family: Gotham, sans-serif;
  font-size: .875rem;
  line-height: 1em;
}

.heading3.darkgrey {
  color: #00013c;
}

.heading3.m-r5 {
  margin-right: 5px;
}

.heading3.center {
  justify-content: center;
  display: flex;
}

.section_footer {
  margin-top: auto;
  margin-bottom: 2em;
}

.link {
  color: var(--sandy);
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.heading5 {
  color: var(--white);
  font-family: Gotham, sans-serif;
  font-size: .8em;
  line-height: .8em;
}

.heading5.sandy {
  color: var(--sandy);
}

.heading5.normal {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.heading5.normal.darkgrey {
  color: var(--dark-grey);
}

.card-image {
  width: 90%;
  margin: auto;
  position: relative;
}

.card-image.m-b20 {
  margin-bottom: 20px;
}

.card-image.coin-image {
  width: 40%;
}

.card-image.battery-image {
  width: 65%;
}

.nav_header {
  z-index: 25;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.primary-btn {
  border: 1px solid var(--sandy);
  background-color: var(--sandy-black);
  color: var(--sandy);
  cursor: pointer;
  border-radius: 100em;
  padding: .7em 1.6em;
  font-family: Gotham, sans-serif;
  font-size: 1rem;
}

.primary-btn:hover {
  background-color: #5d4335;
}

.primary-btn.absolute-b3em {
  margin-bottom: 1em;
  font-family: Gotham, sans-serif;
  font-size: .95rem;
  position: absolute;
  top: auto;
  bottom: 5em;
  left: auto;
  right: auto;
}

.primary-btn.flex-horizontal {
  grid-column-gap: 5px;
  align-items: center;
  font-family: Gotham, sans-serif;
  font-size: 1rem;
  display: flex;
}

.tertiary-iconbtn {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--sandy);
  cursor: pointer;
  align-items: center;
  font-family: Gotham, sans-serif;
  font-size: 1rem;
  display: flex;
}

.tertiary-iconbtn:hover {
  color: #ffdfc3;
}

.secondary_iconbtn {
  background-color: var(--sandy-black);
  color: var(--sandy);
  cursor: pointer;
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  padding: 1em;
  display: flex;
}

.secondary_iconbtn:hover {
  background-color: #5d4335;
}

.secondary_iconbtn.m-r25 {
  margin-right: 2em;
}

.secondary_iconbtn.active {
  background-color: #7f5641;
}

.secondary_iconbtn.m-r15 {
  margin-right: 1.5em;
}

.secondary_iconbtn.m-r15.active {
  background-color: var(--sandy);
  color: var(--sandy-black);
}

.svg_icon4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: .8em;
  height: .8em;
  display: flex;
}

.svg_icon4.rotate90 {
  transform: rotate(-90deg);
}

.nav-footer {
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-bottom: 3em;
  display: flex;
  position: relative;
}

.svg_icon1 {
  width: 1.8em;
  height: 1.8em;
}

.svg_icon2 {
  width: 1.3em;
  height: 1.3em;
}

.section-center {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: .5em;
  margin-bottom: .5em;
  display: flex;
  position: relative;
}

.section-center.absolute-bottom {
  position: absolute;
  top: auto;
  bottom: 6em;
  left: 0%;
  right: 0%;
}

.section-center.hide {
  display: none;
}

.section-center.nomargins {
  margin-top: 0;
  margin-bottom: 0;
}

._w-container {
  align-items: stretch;
  height: 100%;
  display: flex;
  overflow: auto;
}

._w-sample-bc {
  z-index: 0;
  color: var(--white);
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 370px;
  margin: auto;
  display: flex;
  position: relative;
}

._w-sample-bc.hide {
  display: none;
}

.w_alignhorizontal {
  align-items: center;
  display: flex;
}

.w_alignhorizontal.m-r25 {
  margin-right: 2em;
}

.dropdown {
  z-index: 20;
  opacity: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, .85);
  border-radius: 10px;
  width: 65%;
  height: auto;
  margin-top: 3.5em;
  padding: 2em;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.dropdown.hide {
  display: none;
}

.dropdown-bar {
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

._w-card-text {
  margin-top: auto;
  position: relative;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.anime-svg-sample {
  z-index: 5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
}

.sample {
  width: 100%;
}

.caliper-container {
  color: rgba(255, 176, 108, .5);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
}

._w-caliper {
  transform-style: preserve-3d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 550px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: absolute;
}

.caliper-mover {
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

._w-caliper-mover {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 550px;
  display: flex;
  position: relative;
}

.card-img-usb {
  width: 80%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  position: relative;
  left: 1.5em;
}

.body {
  background-color: #272525;
  height: 100%;
}

._w-sample-usb {
  z-index: 0;
  width: 58px;
  margin: auto;
  position: relative;
}

._w-sample-usb.hide {
  display: none;
}

._w-sample-cc {
  width: 385px;
  margin: auto;
  position: relative;
}

._w-sample-cc.hide {
  display: none;
}

._w-tab {
  align-items: center;
  display: flex;
}

.caliper-text {
  z-index: 10;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 34%;
  bottom: auto;
  left: 21%;
  right: auto;
}

.heading4 {
  font-family: Gotham, sans-serif;
  position: static;
}

._w-sample-baterry {
  width: 250px;
  margin: auto;
  position: relative;
}

._w-sample-baterry.hide {
  display: none;
}

.size-font {
  color: var(--white);
  font-family: Gotham, sans-serif;
}

._w-sample-qc {
  width: 120px;
  margin: auto;
  position: relative;
}

._w-sample-qc.hide {
  display: none;
}

.text-block {
  font-family: Gotham, sans-serif;
  font-size: 1.1rem;
}

@media screen and (max-width: 991px) {
  .heading1 {
    font-size: 1.4em;
    line-height: 1.4em;
  }

  .heading2 {
    line-height: 1.2em;
  }

  .heading2.sandy {
    font-size: 1rem;
  }

  .section.section80 {
    width: auto;
    max-width: none;
  }

  .section.section80.center {
    overflow: visible;
  }

  .grid {
    grid-column-gap: 10px;
  }

  .heading3.darkgrey {
    font-size: 1em;
    line-height: 1em;
  }

  .heading3.center {
    justify-content: center;
    display: flex;
  }

  .card-image {
    width: 100%;
  }

  .primary-btn.flex-horizontal {
    display: flex;
  }

  .dropdown {
    width: 45em;
  }

  .anime-svg-sample.hide {
    display: none;
  }

  ._w-sample-baterry {
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .section.section80 {
    width: 100%;
    max-width: none;
  }

  .section.section80.center {
    overflow: visible;
  }

  .grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .secondary_iconbtn {
    padding: .7em .9em;
  }

  .nav-footer {
    z-index: 10;
    margin-bottom: 1em;
    position: relative;
  }

  ._w-container {
    align-items: stretch;
    height: 100%;
    display: flex;
  }

  ._w-sample-bc {
    bottom: auto;
  }

  .dropdown {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .container {
    height: 100%;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .container.top {
    display: block;
  }

  .container.top.hide {
    display: none;
  }

  .container.start {
    justify-content: flex-start;
    align-items: center;
  }

  .container.start.overflow-hidden {
    overflow: hidden;
  }

  .container.caliper-fixed {
    position: fixed;
    overflow: hidden;
  }

  .container.justify-top {
    justify-content: flex-start;
  }

  .heading1 {
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.2rem;
  }

  .heading2 {
    margin-top: 1em;
    font-size: .95rem;
    line-height: 1.3em;
  }

  .heading2.sandy {
    font-size: .9rem;
  }

  .heading2.purple {
    margin-top: 0;
  }

  .section.section80 {
    margin-top: .5em;
    margin-bottom: .5em;
    padding-top: 0;
    padding-bottom: 0;
  }

  .grid {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .card {
    height: auto;
    min-height: 160px;
    padding: 1.5em 1em;
  }

  .heading3 {
    line-height: .85em;
  }

  .heading3.darkgrey {
    font-size: .8em;
    line-height: 1em;
  }

  .heading3.center {
    justify-content: center;
    display: flex;
  }

  .section_footer {
    z-index: 99;
    margin-bottom: 1.5em;
    position: relative;
  }

  .primary-btn {
    position: relative;
  }

  .primary-btn.absolute-b3em {
    margin-bottom: 0;
    bottom: 4.2em;
  }

  .tertiary-iconbtn {
    grid-column-gap: 5px;
  }

  .secondary_iconbtn {
    padding: .7em;
  }

  .secondary_iconbtn.active {
    background-color: var(--sandy);
    color: var(--sandy-black);
  }

  .secondary_iconbtn.m-r15 {
    margin-right: 1em;
  }

  .secondary_iconbtn.absolute {
    position: absolute;
  }

  .nav-footer {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: auto;
    right: auto;
  }

  .svg_icon1 {
    width: 1.5em;
    height: 1.5em;
  }

  .svg_icon2 {
    width: 1em;
    height: 1em;
  }

  .section-center {
    margin-top: 5%;
  }

  ._w-container {
    align-items: stretch;
  }

  ._w-sample-bc {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 5em;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: absolute;
    top: auto;
    bottom: 5em;
    left: auto;
    right: auto;
    transform: rotate(90deg);
  }

  ._w-sample-bc.hide {
    position: absolute;
  }

  .dropdown {
    background-color: #c5c5c5;
    width: 95%;
    margin-top: 3.5em;
    margin-left: auto;
    margin-right: auto;
    padding: 1.3em;
    left: auto;
  }

  ._w-card-text {
    margin-top: auto;
  }

  .anime-svg-sample {
    position: absolute;
  }

  .sample {
    width: 100%;
    max-width: none;
    position: relative;
  }

  ._w-caliper {
    width: 120%;
    margin-bottom: auto;
    position: fixed;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    overflow: hidden;
    transform: rotateX(0)rotateY(180deg)rotateZ(90deg);
  }

  ._w-caliper-mover {
    width: 100%;
  }

  .card-img-usb {
    width: 80%;
    margin-top: auto;
    margin-left: auto;
    margin-right: 0;
    left: 1em;
  }

  .body {
    height: 100%;
    overflow: hidden;
  }

  ._w-sample-usb {
    position: absolute;
    top: auto;
    bottom: 40%;
    left: auto;
    right: auto;
  }

  ._w-sample-cc {
    z-index: 0;
    width: 385px;
    position: absolute;
    top: auto;
    bottom: 5em;
    left: auto;
    right: auto;
    transform: rotate(90deg);
  }

  ._w-tab {
    position: relative;
  }

  .heading4 {
    font-family: Gotham, sans-serif;
    font-size: .75rem;
    line-height: .8rem;
  }

  ._w-sample-container {
    flex-direction: row;
    align-content: flex-end;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: auto;
    margin-bottom: 5em;
    display: flex;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .size-font {
    color: var(--white);
    font-family: Gotham, sans-serif;
  }
}

#w-node-_1014bd03-a6d8-0dea-8b1b-57d8769905d7-30f3f897, #w-node-f53f4ffb-6a7f-708d-155f-d78eaffcad36-30f3f897 {
  justify-self: auto;
}


@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}