@charset "UTF-8";
:root {
  --em-color-white: #fafafa;
  --em-color-black: #222222;
  --em-background-glass: #51515170;
  --em-menu-width: 50vw;
  --em-menu-toggle-btn-height: 50px;
  --em-menu-toggle-btn-padding: 10px;
  --em-max-content-width: 2560px;
  --em-border-radius: 12px;
  --em-thick-shadow:
      rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
      rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

#em-header {
  position: fixed;
  z-index: 1001;
  top: 20px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: calc(100% - 20px);
  overflow: hidden;
  backdrop-filter: blur(3px);
  background: var(--em-background-glass);
  -webkit-transition: backdrop-filter 0.3s ease;
  transition: backdrop-filter 0.3s ease;
}
#em-header * {
  color: var(--em-color-white);
}
@media (min-width: 768px) {
  #em-header {
    top: 40px;
    width: var(--em-menu-width);
  }
}
#em-header > #em-header-head > [class^=col-] {
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
}
#em-header > #em-header-head #logo- > a {
  margin-left: auto;
  margin-right: auto;
}
#em-header > #em-header-head img {
  height: 50px;
}
#em-header > #em-header-head button#em-menu-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--em-menu-toggle-btn-padding);
  border: none;
  background: none;
  max-height: var(--em-menu-toggle-btn-height);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#em-header > #em-header-head button#em-menu-toggle svg, #em-header > #em-header-head button#em-menu-toggle img {
  width: 100%;
  height: auto;
  max-height: calc(var(--em-menu-toggle-btn-height) - var(--em-menu-toggle-btn-padding) * 2);
}
#em-header > #em-header-head button#em-menu-toggle[aria-expanded=false] .em-open {
  display: block;
}
#em-header > #em-header-head button#em-menu-toggle[aria-expanded=false] .em-close {
  display: none;
}
#em-header > #em-header-head button#em-menu-toggle[aria-expanded=true] .em-open {
  display: none;
}
#em-header > #em-header-head button#em-menu-toggle[aria-expanded=true] .em-close {
  display: block;
}
#em-header > #em-header-body {
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
#em-header > #em-header-body[aria-hidden=true] {
  overflow: hidden;
  max-height: 0;
}
#em-header > #em-header-body[aria-hidden=false] {
  max-height: 80vh;
}
@media (min-width: 1000px) {
  #em-header > #em-header-body[aria-hidden=false] {
    height: var(--em-menu-width);
  }
}
#em-header > #em-header-body > menu#em-header-menu {
  list-style: none;
  font-size: 1.5em;
  font-weight: bold;
}
#em-header > #em-header-body > menu#em-header-menu ul.em-submenu {
  list-style: none;
  font-size: 1em;
  font-weight: normal;
  margin-left: 20px;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
#em-header > #em-header-body > menu#em-header-menu ul.em-submenu[aria-hidden=true] {
  max-height: 0;
  opacity: 0;
}
#em-header > #em-header-body > menu#em-header-menu ul.em-submenu[aria-hidden=false] {
  max-height: 600px;
  opacity: 1;
}
#em-header > #em-header-body > menu#em-header-menu a.em-wip {
  opacity: 0.5;
  text-decoration: none;
  -webkit-transition: none;
  transition: none;
}
#em-header > #em-header-body > menu#em-header-menu a.em-wip:hover {
  opacity: 0.6;
  cursor: not-allowed;
}
#em-header > #em-header-body > menu#em-header-menu a.em-wip::before {
  content: "🚧";
}
#em-header > #em-header-body > menu#em-header-menu a.em-wip::after {
  content: "🚧";
}
#em-header:has(> #em-header-body[aria-hidden=false]) {
  backdrop-filter: blur(30px);
}

.em-vertical-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.em-title, .em-hero-title {
  color: var(--em-color-white);
}

.em-title-lineheight {
  line-height: 1.6;
}

h1.em-title {
  font-size: clamp(2rem, 5vw + 1rem, 4rem);
}

h1.em-hero-title {
  font-size: clamp(38px, 5.6vw, 120px);
  line-height: 1.05; /* grob wie im Bild */
  font-weight: 700; /* falls du das gleiche Wumms-Level willst */
}

h2.em-hero-title {
  font-size: clamp(40px, 5.2vw, 104px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.01em; /* optional, hält den „fetten“ Look sauber */
}

h2.em-title {
  font-size: clamp(2.1rem, 3.5vw + 0.5rem, 3.5rem);
  line-height: 1.2;
}

.em-subtitle {
  font-size: clamp(1.3rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
}
.em-subtitle .black {
  color: var(--em-color-black);
}

.em-hero-subtitle {
  font-size: clamp(18px, 0.95vw, 20px);
  line-height: 1.4;
  font-weight: 400; /* eher leicht wie im Bild */
  opacity: 0.9; /* optional, falls du den soften Look willst */
  color: white;
}
.em-hero-subtitle .black {
  color: var(--em-color-black);
}

.em-hero-bigsubtitle {
  font-size: clamp(17px, 1.8vw, 34px);
  line-height: 1.55;
  font-weight: 400;
  max-width: 38ch; /* optional, hält die Zeilenlänge wie im Design */
  color: white;
}
.em-hero-bigsubtitle .black {
  color: var(--em-color-black);
}

@media (max-width: 1279px) {
  .em-title br,
  .em-subtitle br {
    display: none;
  }
}

.em-footnote {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 765px) {
  .em-footnote {
    font-size: 1rem;
  }
}

div.em-heroheadline {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--em-color-white);
}
@media (min-width: 765px) {
  div.em-heroheadline {
    font-size: 2rem;
  }
}
@media (min-width: 1130px) {
  div.em-heroheadline {
    font-size: 3rem;
  }
}
@media (min-width: 1490px) {
  div.em-heroheadline {
    font-size: 4rem;
  }
}
@media (min-width: 1880px) {
  div.em-heroheadline {
    font-size: 5rem;
  }
}

div.em-heroheadline-keyfeatures {
  font-size: clamp(1.35rem, 1.05rem + 1.9vw, 3.2rem);
  line-height: 2.35;
  font-weight: bold;
  color: var(--em-color-white);
  text-wrap: balance;
  /* Margin Bottom 1rem zwischen den Zeilen */
}
@media (min-width: 900px) {
  div.em-heroheadline-keyfeatures br.em-mob {
    display: none;
  }
}

.em-parallax-content:has(div .em-herosection-content) {
  padding: 0;
}

div.em-herosection-content {
  width: 100vw;
}
div.em-herosection-content > img.em-herosection-image, div.em-herosection-content > div.em-herosection-image {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
}
div.em-herosection-content > img.em-herosection-image.handlebar, div.em-herosection-content > div.em-herosection-image.handlebar {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  div.em-herosection-content > img.em-herosection-image.belt, div.em-herosection-content > div.em-herosection-image.belt {
    width: 50%;
  }
}
div.em-herosection-content > img.em-herosection-image.battery, div.em-herosection-content > div.em-herosection-image.battery {
  position: absolute;
  -webkit-transform: translate(35%, -50%);
          transform: translate(35%, -50%);
}
@media (max-width: 769px) {
  div.em-herosection-content > img.em-herosection-image.battery, div.em-herosection-content > div.em-herosection-image.battery {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
  div.em-herosection-content > img.em-herosection-image.battery > img, div.em-herosection-content > div.em-herosection-image.battery > img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (min-width: 769px) {
  div.em-herosection-content > div.em-herosection-text {
    max-width: 1524px;
  }
}
@media (max-width: 1279px) {
  div.em-herosection-content > div.em-herosection-text br {
    display: none;
  }
  div.em-herosection-content > div.em-herosection-text.em-mobile-top {
    margin-bottom: auto;
    margin-top: 10em;
  }
  div.em-herosection-content > div.em-herosection-text.em-mobile-bottom {
    margin-top: auto;
    margin-bottom: 10em;
  }
}
@media (max-width: 1279px) {
  div.em-herosection-content .em-subtitle br {
    display: none;
  }
}
div.em-herosection-content.limit {
  max-width: var(--em-max-content-width);
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
}
@media (max-width: 1279px) {
  div.em-herosection-content.limit {
    padding: 0;
    width: 90vw;
  }
}
div.em-herosection-content.center-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
div.em-herosection-content.center-right > div.em-herosection-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 5vw;
}
div.em-herosection-content.down-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
div.em-herosection-content.down-right > div.em-herosection-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  margin-left: 5vw;
  margin-right: 5vw;
  margin-bottom: 10vh;
}
@media (min-width: 768px) {
  div.em-herosection-content.down-right > div.em-herosection-text {
    margin-left: auto;
  }
}
div.em-herosection-content.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1024px) {
  div.em-herosection-content.center:has(> img.belt), div.em-herosection-content.center:has(> div.belt) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 70vw;
    max-width: 1280px;
  }
}
div.em-herosection-content.center:has(> img.belt) > div.em-herosection-text br, div.em-herosection-content.center:has(> div.belt) > div.em-herosection-text br {
  display: none;
}
@media (min-width: 1572px) {
  div.em-herosection-content.center:has(> img.belt) > div.em-herosection-text br, div.em-herosection-content.center:has(> div.belt) > div.em-herosection-text br {
    display: inline;
  }
}
div.em-herosection-content.readability::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

div.em-herosection-text {
  margin-left: auto;
  margin-right: auto;
  width: 80vw;
  max-width: var(--em-max-content-width);
}
@media (max-width: 768px) {
  div.em-herosection-text {
    width: 90vw;
  }
}
div.em-herosection-text.up-left {
  height: 80vh;
}
@media (max-width: 768px) {
  div.em-herosection-text.mobile.up {
    height: 80vh;
  }
}
div.em-herosection-text:has(+ img.handlebar) {
  position: sticky;
  z-index: 2;
  margin-bottom: 25vh;
}
@media (max-width: 768px) {
  div.em-herosection-text:has(+ img.handlebar) {
    margin-bottom: 50vh;
  }
  div.em-herosection-text:has(+ img.handlebar) br {
    display: none;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  div.em-herosection-text:has(+ img.handlebar) {
    margin-bottom: 70vh;
  }
  div.em-herosection-text:has(+ img.handlebar) br {
    display: none;
  }
}
@media (min-width: 1025px) {
  div.em-herosection-text:has(+ img.handlebar) h1.em-title, div.em-herosection-text:has(+ img.handlebar) p.em-subtitle {
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

div.em-herosection-infocard {
  position: fixed;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 105px;
  left: 50%;
  width: calc(100% - 20px);
  height: 85vh;
  background-color: var(--em-background-glass);
  backdrop-filter: blur(10px);
  z-index: 1001;
  padding: 10px;
  color: var(--em-color-white);
}
div.em-herosection-infocard * {
  color: var(--em-color-white);
}
@media (max-width: 400px) {
  div.em-herosection-infocard {
    height: 80vh;
  }
}
@media (min-width: 768px) {
  div.em-herosection-infocard {
    max-height: 70vh;
    width: var(--em-menu-width);
  }
}
div.em-herosection-infocard[aria-hidden=false] {
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
div.em-herosection-infocard [aria-hidden=false] {
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
div.em-herosection-infocard[aria-hidden=true] {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
div.em-herosection-infocard [aria-hidden=true] {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
div.em-herosection-infocard > .em-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-bottom: 20px;
}
div.em-herosection-infocard > .em-card-header > button.em-card-closebtn {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: var(--em-color-black);
}
div.em-herosection-infocard > .em-card-header > button.em-card-closebtn > img {
  width: 24px;
  height: 24px;
}
div.em-herosection-infocard > .em-card-body {
  max-height: 75vh;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0.1);
}
@media (max-width: 400px) {
  div.em-herosection-infocard > .em-card-body {
    height: 70vh;
  }
}
@media (min-width: 768px) {
  div.em-herosection-infocard > .em-card-body {
    max-height: 60vh;
  }
}
div.em-herosection-infocard > .em-card-body::-webkit-scrollbar {
  width: 8px;
}
div.em-herosection-infocard > .em-card-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1); /* dezenter Track */
  border-radius: 8px;
}
div.em-herosection-infocard > .em-card-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4); /* halbtransparentes Weiß */
  border-radius: 8px; /* leichter Glas-Effekt */
  backdrop-filter: blur(4px); /* leichter Glas-Effekt */
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
div.em-herosection-infocard > .em-card-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.6); /* heller beim Hover */
}
div.em-herosection-infocard > .em-card-body iframe {
  border-radius: var(--em-border-radius);
  -webkit-box-shadow: var(--em-thick-shadow);
          box-shadow: var(--em-thick-shadow);
  margin: 10px 0 20px 0;
}
div.em-herosection-infocard > .em-card-body img {
  margin-left: auto;
  margin-right: auto;
}

#em-backdrop {
  backdrop-filter: blur(5px);
  z-index: 1000;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  cursor: pointer;
}
#em-backdrop[aria-hidden=false] {
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#em-backdrop[aria-hidden=true] {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.em-bike-fit {
  width: 80vw;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}
.em-bike-fit [data-area-id=col-1] {
  -ms-flex-line-pack: center;
      align-content: center;
}

.em-app-card p,
.em-app-card h2 {
  color: var(--em-color-white);
}
.em-app-card > .em-app-card-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
}
.em-app-card > .em-app-card-content p {
  font-size: clamp(1.3rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1530px) {
  .em-app-card > .em-app-card-content * br {
    display: none;
  }
}
.em-app-card > .em-app-card-img {
  justify-self: center;
  margin-bottom: 20px;
}
.em-app-card > .em-app-card-img > img {
  width: auto;
  max-height: 80vh;
  height: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.em-app-card > .em-app-card-img > img:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.em-app-card > .em-app-card-img::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 92%;
  height: 80px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 136% 135% at 50% -32%, transparent 35%, rgba(0, 0, 0, 0.7) 36%, rgba(0, 0, 0, 0.18) 95%, transparent 100%);
  -webkit-filter: blur(6px);
  filter: blur(7px);
  opacity: 0.95;
  -webkit-transform: translateX(-50%) scaleY(0.75);
  transform: translateX(-50%) scaleY(-1.25);
  border-radius: 50px 50px 0 0;
}
@media (max-width: 999px) {
  .em-app-card {
    display: grid;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
  .em-app-card br {
    display: none;
  }
  .em-app-card > .em-app-card-img {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .em-app-card > .em-app-card-img > img {
    min-width: 200px;
  }
  .em-app-card > .em-app-card-content {
    grid-row: 2;
  }
  .em-app-card > .em-app-card-appstores {
    justify-self: center;
  }
}
.em-app-card > .em-app-card-appstores {
  margin-top: 20px;
}
@media (min-width: 1000px) {
  .em-app-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.2rem;
    margin-left: clamp(32px, 6.5vw, 180px) !important;
    margin-right: clamp(32px, 6.5vw, 180px) !important;
  }
  .em-app-card.reverse {
    direction: rtl;
  }
  .em-app-card.reverse > .em-app-card-content, .em-app-card.reverse > .em-app-card-img {
    direction: ltr;
  }
  .em-app-card.reverse > .em-app-card-appstores {
    grid-column: 1;
    grid-row: 1;
  }
  .em-app-card.switch > .em-app-card-img {
    grid-column: 1;
  }
  .em-app-card.switch > .em-app-card-content {
    grid-column: 2;
  }
  .em-app-card > .em-app-card-content {
    grid-column: 1;
  }
  .em-app-card > .em-app-card-img {
    grid-column: 2;
  }
  .em-app-card > .em-app-card-appstores {
    grid-column: 3;
    margin-top: auto;
  }
  .em-app-card > .em-app-card-appstores > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: auto;
    text-align: center;
  }
  .em-app-card > .em-app-card-appstores > div > a img {
    height: 60px;
    margin: 10px 0;
  }
}

[data-drive-type=belt] .em-drive-type-belt {
  display: block;
}
[data-drive-type=belt] .em-drive-type-chain {
  display: none;
}

[data-drive-type=chain] .em-drive-type-belt {
  display: none;
}
[data-drive-type=chain] .em-drive-type-chain {
  display: block;
}

div[data-geotarget] table,
div.em-nice-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--em-color-white);
  border-radius: var(--em-border-radius);
  overflow: hidden;
  -webkit-box-shadow: var(--em-thick-shadow);
          box-shadow: var(--em-thick-shadow);
  max-width: 900px;
  font-size: 10px;
}
div[data-geotarget] table th, div[data-geotarget] table td,
div.em-nice-table table th,
div.em-nice-table table td {
  white-space: normal;
  overflow-wrap: anywhere;
}
div[data-geotarget] table thead,
div.em-nice-table table thead {
  background-color: #546872;
  color: var(--em-color-white);
}
div[data-geotarget] table thead th,
div.em-nice-table table thead th {
  padding: 8px 10px;
  text-align: left;
  font-weight: bold;
}
@media (min-width: 521px) {
  div[data-geotarget] table thead th .em-h-s,
  div.em-nice-table table thead th .em-h-s {
    display: none;
  }
}
@media (max-width: 520px) {
  div[data-geotarget] table thead th .em-h-l,
  div.em-nice-table table thead th .em-h-l {
    display: none;
  }
}
div[data-geotarget] table tbody tr,
div.em-nice-table table tbody tr {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
div[data-geotarget] table tbody tr:nth-child(odd),
div.em-nice-table table tbody tr:nth-child(odd) {
  background-color: #b1c3cd;
}
div[data-geotarget] table tbody tr:nth-child(even),
div.em-nice-table table tbody tr:nth-child(even) {
  background-color: #a1b6c2;
}
div[data-geotarget] table tbody tr:hover,
div.em-nice-table table tbody tr:hover {
  background-color: #8ea7b4;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
div[data-geotarget] table tbody tr td,
div.em-nice-table table tbody tr td {
  padding: 8px 10px;
  text-align: left;
  color: var(--em-color-black);
}
div[data-geotarget] table tbody tr td:first-child,
div.em-nice-table table tbody tr td:first-child {
  background-color: #546872;
  color: var(--em-color-white);
  font-weight: bold;
}
div[data-geotarget] table tbody tr:hover td:first-child,
div.em-nice-table table tbody tr:hover td:first-child {
  background-color: #1a1a18;
}

div[data-geotarget].active table,
div.em-nice-table.active table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--em-color-white);
  border-radius: var(--em-border-radius);
  overflow: hidden;
  -webkit-box-shadow: var(--em-thick-shadow);
          box-shadow: var(--em-thick-shadow);
}
div[data-geotarget].active table thead,
div.em-nice-table.active table thead {
  background-color: #4f6f67;
  color: var(--em-color-white);
}
div[data-geotarget].active table thead th,
div.em-nice-table.active table thead th {
  padding: 8px 10px;
  text-align: left;
  font-weight: bold;
}
div[data-geotarget].active table tbody tr,
div.em-nice-table.active table tbody tr {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
div[data-geotarget].active table tbody tr:nth-child(odd),
div.em-nice-table.active table tbody tr:nth-child(odd) {
  background-color: #c7d8d2;
}
div[data-geotarget].active table tbody tr:nth-child(even),
div.em-nice-table.active table tbody tr:nth-child(even) {
  background-color: #b6cbc4;
}
div[data-geotarget].active table tbody tr:hover,
div.em-nice-table.active table tbody tr:hover {
  background-color: #8fb0a6;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
div[data-geotarget].active table tbody tr td,
div.em-nice-table.active table tbody tr td {
  padding: 8px 10px;
  text-align: left;
  color: var(--em-color-black);
}
div[data-geotarget].active table tbody tr td:first-child,
div.em-nice-table.active table tbody tr td:first-child {
  background-color: #4f6f67;
  color: var(--em-color-white);
  font-weight: bold;
}
div[data-geotarget].active table tbody tr:hover td:first-child,
div.em-nice-table.active table tbody tr:hover td:first-child {
  background-color: #1b1d1b;
}

.em-drive-type-belt.readability::before, .em-drive-type-chain.readability::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 40px;
}

#gps-mobile {
  padding: 0 15px;
}

@media (max-width: 1570px) {
  #bikes-section br {
    display: none;
  }
}
#bikes-section .em-hero-subtitle {
  font-size: clamp(12px, 1.4vw, 20px);
}
@media (min-width: 768px) {
  #bikes-section {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 1024px) {
  #bikes-section {
    margin-left: 30px;
    margin-right: 30px;
  }
}
#bikes-section .em-bikes-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 60px;
}
@media (max-width: 991px) {
  #bikes-section .em-bikes-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 60px;
  }
}
#bikes-section .em-bike-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
#bikes-section .em-bike-card.em-bike-card-left {
  max-width: 430px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#bikes-section .em-bike-card.em-bike-card-center {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#bikes-section .em-bike-card.em-bike-card-right {
  max-width: 430px;
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
#bikes-section .em-bike-card.em-bike-card-right > div {
  display: grid;
  gap: 16px;
}
@media (max-width: 991px) {
  #bikes-section .em-bike-card {
    max-width: 100% !important;
    text-align: left !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}

.w-fit-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.em-ts {
  text-shadow: black 5px 5px 16px;
}

.em-ts-1 {
  text-shadow: rgba(0, 0, 0, 0.7) 2px 2px 8px, rgba(255, 255, 255, 0.4) -1px -1px 4px;
}

.em-ts.em-title, .em-ts.em-hero-title {
  text-shadow: black 5px 5px 50px;
}

.em-headspace {
  margin-top: 100px;
}
.em-headspace:has(#about-us-content) {
  margin-top: 100px;
  margin-bottom: 10vh;
}
@media (min-width: 769px) and (max-height: 1000px) {
  .em-headspace {
    margin-top: 120px;
  }
}

.em-ml {
  margin-left: clamp(32px, 6.5vw, 180px) !important;
}

.em-mr {
  margin-right: clamp(32px, 6.5vw, 180px) !important;
}

.em-mx {
  margin-left: clamp(32px, 6.5vw, 180px) !important;
  margin-right: clamp(32px, 6.5vw, 180px) !important;
}

@media (min-width: 769px) {
  .em-mx-notmobile {
    margin-left: clamp(32px, 6.5vw, 180px) !important;
    margin-right: clamp(32px, 6.5vw, 180px) !important;
  }
}

.header__logo-img.img-fluid {
  padding: 6px;
}

@media (max-width: 1291px) {
  #about-us br {
    display: none;
  }
}
#about-us #about-us-content {
  margin-top: 25px;
  line-height: 1.5;
  color: #fff;
  font-size: 1.2em;
}

#revocation-instruction h1 {
  margin-bottom: 1em;
}

@media (max-width: 1606px) {
  #gns br {
    display: none;
  }
}

button.em-nice-link {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

.em-nice-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--em-color-white);
  font-weight: 500;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  text-decoration: underline;
  font-size: clamp(1.3rem, 2.2vw, 1.25rem);
}
.em-nice-link.em-ts {
  text-shadow: black 5px 5px 20px;
}
.em-nice-link::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("/templates/admorris_pro_child/images/external-link.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.em-nice-link:hover {
  opacity: 0.8;
  color: var(--em-color-white);
}

@media (max-width: 1600px) and (min-width: 992px) {
  #flowimblick .em-title, #flowimblick .em-subtitle, #activeimblick .em-title, #activeimblick .em-subtitle {
    width: 50%;
  }
  #flowimblick br, #activeimblick br {
    display: none;
  }
}

@media (max-width: 1480px) {
  #activex3c .em-subtitle > br {
    display: none;
  }
}

@media (max-width: 1480px) {
  #keyfeaturesbelt .em-subtitle > br {
    display: none;
  }
}

@media (max-width: 1750px) {
  #motor.em-herosection-infocard br,
  #tektro.em-herosection-infocard br,
  #belt.em-herosection-infocard br {
    display: none;
  }
}

@media (min-width: 769px) {
  .em-bikespageheader.em-headspace {
    margin-top: 120px;
  }
}

#Discover {
  scroll-margin-top: 30vh;
}

@media (max-height: 800px) {
  #alltoknow {
    margin-top: 1.5em;
  }
}
@media (min-height: 801px) {
  #alltoknow {
    margin-top: 2.5em;
  }
}

@media (max-width: 1000px) {
  .startsection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 110px !important;
    padding-bottom: 22vh !important;
    -webkit-transition: padding 0.3s ease, gap 0.3s ease;
    transition: padding 0.3s ease, gap 0.3s ease;
    will-change: padding, gap;
  }
}

.our-bike-img > img {
  min-height: 400px;
}

.em-vh-80 {
  height: 80vh;
}

@media (max-width: 768px) {
  .em-vh-80-mobile {
    height: 80vh;
  }
}

.blog-details {
  margin-top: 180px;
}