@font-face {
  font-family: "Satoshi";
  src: url("/mirror-assets/cdn.prod.website-files.com/6842a4de0e3313779670977e/6842a4df0e3313779670985d_Satoshi-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --htek-ink: #0a0a0a;
  --htek-paper: #ffffff;
  --htek-soft: #f2f2f0;
  --htek-muted: #5f5f5f;
  --htek-line: rgba(10, 10, 10, 0.14);
  --htek-glass: rgba(255, 255, 255, 0.76);
  --htek-radius: 8px;
  --htek-page: clamp(20px, 4vw, 64px);
  --htek-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #777 transparent;
}

body.htek-enhanced {
  margin: 0;
  overflow-x: hidden;
  background: var(--htek-paper);
  color: var(--htek-ink);
  font-family: "Satoshi", sans-serif;
  font-synthesis: none;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.htek-enhanced *,
body.htek-enhanced *::before,
body.htek-enhanced *::after {
  box-sizing: border-box;
}

body.htek-enhanced h1,
body.htek-enhanced h2,
body.htek-enhanced h3,
body.htek-enhanced h4 {
  font-family: "Satoshi", sans-serif;
  letter-spacing: 0;
  text-wrap: balance;
}

body.htek-enhanced p {
  text-wrap: pretty;
}

body.htek-enhanced a,
body.htek-enhanced button,
body.htek-enhanced [role="button"] {
  -webkit-tap-highlight-color: transparent;
}

body.htek-enhanced :focus-visible {
  outline: 2px solid var(--htek-ink);
  outline-offset: 3px;
}

body.htek-enhanced .htek-skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  transform: translateY(calc(-100% - 16px));
  border-radius: 6px;
  background: var(--htek-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease;
}

body.htek-enhanced .htek-skip-link:focus {
  transform: none;
}

body.htek-enhanced .htek-nav {
  position: fixed;
  z-index: 1100;
  top: 14px;
  left: var(--htek-page);
  right: var(--htek-page);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background: var(--htek-glass);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
  transition: background-color 300ms ease, box-shadow 300ms ease;
}

body.htek-enhanced .htek-nav.htek-nav-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

body.htek-enhanced .htek-nav-brand {
  flex: 0 0 auto;
}

body.htek-enhanced .htek-home-logo {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 7px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.28));
  object-fit: cover;
}

body.htek-enhanced .htek-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

body.htek-enhanced .htek-nav-links > a,
body.htek-enhanced .htek-nav-dropdown-toggle {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease;
}

body.htek-enhanced .htek-nav-links > a:hover,
body.htek-enhanced .htek-nav-links > a[aria-current="page"],
body.htek-enhanced .htek-nav-dropdown-toggle:hover,
body.htek-enhanced .htek-nav-dropdown-toggle[aria-current="page"],
body.htek-enhanced .htek-nav-dropdown.is-open > .htek-nav-dropdown-toggle {
  background: rgba(0, 0, 0, 0.065);
}

body.htek-enhanced .htek-nav-links > .htek-contact {
  background: var(--htek-ink);
  color: #fff;
}

body.htek-enhanced .htek-nav-dropdown {
  position: relative;
}

body.htek-enhanced .htek-nav-dropdown-toggle {
  gap: 8px;
}

body.htek-enhanced .htek-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

body.htek-enhanced .htek-nav-dropdown.is-open > .htek-nav-dropdown-toggle .htek-chevron {
  transform: translateY(2px) rotate(225deg);
}

body.htek-enhanced .htek-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--htek-line);
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(20px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

body.htek-enhanced .htek-nav-dropdown-menu-wide {
  min-width: 250px;
}

body.htek-enhanced .htek-nav-dropdown.is-open > .htek-nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (min-width: 801px) {
  body.htek-enhanced .htek-nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 8px;
  }

  body.htek-enhanced .htek-nav-dropdown:hover > .htek-nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body.htek-enhanced .htek-nav-dropdown:hover > .htek-nav-dropdown-toggle {
    background: rgba(0, 0, 0, 0.065);
  }

  body.htek-enhanced .htek-nav-dropdown:hover > .htek-nav-dropdown-toggle .htek-chevron {
    transform: translateY(2px) rotate(225deg);
  }
}

body.htek-enhanced .htek-nav-dropdown-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 5px;
  color: inherit;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}

body.htek-enhanced .htek-nav-dropdown-menu a:hover,
body.htek-enhanced .htek-nav-dropdown-menu a[aria-current="page"] {
  background: var(--htek-soft);
}

body.htek-enhanced .htek-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: var(--htek-ink);
  color: #fff;
  cursor: pointer;
}

body.htek-enhanced .htek-menu span,
body.htek-enhanced .htek-menu::before,
body.htek-enhanced .htek-menu::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.htek-enhanced .htek-menu[aria-expanded="true"] span {
  opacity: 0;
}

body.htek-enhanced .htek-menu[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

body.htek-enhanced .htek-menu[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

body.htek-enhanced .navbar.w-nav {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 50%;
  width: min(1312px, calc(100% - (var(--htek-page) * 2)));
  min-height: 64px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background: var(--htek-glass);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
  transition: background-color 300ms ease, box-shadow 300ms ease, transform 300ms var(--htek-ease);
}

body.htek-enhanced .navbar.w-nav.htek-nav-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

body.htek-enhanced .navbar > .padding-global {
  display: flex;
  align-items: center;
  height: 62px;
  width: 100%;
  padding-right: 10px;
  padding-left: 16px;
}

body.htek-enhanced .navbar .container,
body.htek-enhanced .navbar .navbar-component {
  height: 62px;
  width: 100%;
  min-height: 62px;
  max-width: none;
  margin: 0 !important;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none !important;
}

body.htek-enhanced .navbar .logo-navbar {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  object-fit: cover;
}

body.htek-enhanced .navbar .nav-menu {
  display: flex;
  height: 62px;
  align-items: center;
  gap: 2px;
}

body.htek-enhanced .navbar .right-navbar-content {
  height: 62px;
  align-items: center;
}

body.htek-enhanced .navbar .dropdown {
  display: flex;
  align-items: center;
  height: 44px;
  margin: 0;
  padding: 0;
}

body.htek-enhanced .navbar .nav-link,
body.htek-enhanced .navbar .dropdown-toggle,
body.htek-enhanced .navbar .button-navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-height: 44px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 220ms ease, color 220ms ease;
}

body.htek-enhanced .navbar .nav-link,
body.htek-enhanced .navbar .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 10px;
}

body.htek-enhanced .navbar .dropdown-toggle {
  gap: 5px;
}

body.htek-enhanced .navbar .dropdown-toggle .icon {
  position: static;
  order: 2;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin: 0;
  padding: 0;
  line-height: 14px;
}

body.htek-enhanced .navbar .dropdown-toggle .text-block-2 {
  line-height: 1;
}

body.htek-enhanced .navbar .nav-link:hover,
body.htek-enhanced .navbar .dropdown-toggle:hover,
body.htek-enhanced .navbar .nav-link[aria-current="page"] {
  background: rgba(0, 0, 0, 0.065);
}

body.htek-enhanced .navbar .button-navbar {
  border: 0;
  background: var(--htek-ink);
  color: #fff;
}

body.htek-enhanced .navbar .button-border {
  align-items: center;
  height: 44px;
}

body.htek-enhanced .navbar .dropdown-list.w--open {
  top: calc(100% + 8px);
  padding: 8px;
  border: 1px solid var(--htek-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(20px);
}

body.htek-enhanced .navbar .dropdown-link,
body.htek-enhanced .navbar .dropdown-link-2,
body.htek-enhanced .navbar .dropdown-link-3 {
  min-height: 44px;
  border-radius: 5px;
}

body.htek-enhanced .products-main-header,
body.htek-enhanced .product-main-quick-stack,
body.htek-enhanced .rt-contact-one-block-two,
body.htek-enhanced .hero-without-image,
body.htek-enhanced .team-circles,
body.htek-enhanced .team-slider,
body.htek-enhanced .testimonial-column-dark,
body.htek-enhanced .function-tabs {
  scroll-margin-top: 96px;
}

body.htek-enhanced .products-main-header,
body.htek-enhanced .centered-heading,
body.htek-enhanced .centered-heading-2,
body.htek-enhanced .centered-heading-3,
body.htek-enhanced .heading-10 {
  letter-spacing: 0;
}

body.htek-enhanced .team-circles,
body.htek-enhanced .team-slider,
body.htek-enhanced .testimonial-column-dark,
body.htek-enhanced .hero-heading-right-2,
body.htek-enhanced .hero-stack-2,
body.htek-enhanced .hero-without-image {
  padding-right: var(--htek-page);
  padding-left: var(--htek-page);
}

body.htek-enhanced .team-circles,
body.htek-enhanced .product-main-quick-stack {
  padding-top: clamp(118px, 12vw, 180px);
}

body.htek-enhanced .team-grid {
  gap: 12px;
}

body.htek-enhanced .product-card,
body.htek-enhanced .team-block,
body.htek-enhanced .testimonial-block,
body.htek-enhanced .testimonial-block-main {
  overflow: hidden;
  border: 1px solid var(--htek-line);
  border-radius: var(--htek-radius);
  background: #fff;
  box-shadow: none;
}

body.htek-enhanced .product-card {
  padding: 10px;
  transition: transform 400ms var(--htek-ease), background-color 250ms ease;
}

body.htek-enhanced .product-card:hover {
  transform: translateY(-5px);
  background: var(--htek-soft);
}

body.htek-enhanced .product-card > .htek-static-product {
  display: block;
}

body.htek-enhanced .product-card:has(> .htek-static-product):hover {
  transform: none;
  background: #fff;
}

body.htek-enhanced .gallery-sticky-3 .gallery-link-3 {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 12px 14px;
  border-left: 2px solid var(--htek-line);
  color: var(--htek-ink);
  line-height: 1.35;
  text-decoration: none;
}

body.htek-enhanced .gallery-sticky-3 .gallery-link-3:hover {
  border-left-color: var(--htek-ink);
  background: rgba(10, 10, 10, 0.04);
}

body.htek-enhanced .htek-journey-date {
  color: var(--htek-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

body.htek-enhanced .htek-journey-title {
  font-size: 17px;
  font-weight: 700;
}

body.htek-enhanced .htek-journey-copy {
  color: var(--htek-muted);
  font-size: 13px;
}

body.htek-enhanced .team-member-image,
body.htek-enhanced .team-member-image-two,
body.htek-enhanced .product-main-quick-stack img,
body.htek-enhanced .shadow-two-2,
body.htek-enhanced .testimonial-main-image,
body.htek-enhanced .image-15 {
  border-radius: 6px;
  object-fit: cover;
}

body.htek-enhanced .function-tabs .tabs-menu {
  position: sticky;
  z-index: 20;
  top: 92px;
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 0 auto 28px;
  padding: 5px;
  border: 1px solid var(--htek-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

body.htek-enhanced .function-tabs .w-tab-link {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: transparent;
}

body.htek-enhanced .function-tabs .w-tab-link.w--current {
  background: var(--htek-ink);
  color: #fff;
}

body.htek-enhanced .htek-contact-section {
  width: 100%;
  margin-top: clamp(64px, 8vw, 112px);
  padding: 0 0 clamp(88px, 10vw, 140px);
  color: var(--htek-ink);
}

body.htek-enhanced .htek-contact-panel {
  width: 100%;
}

body.htek-enhanced .htek-contact-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.6fr) minmax(0, 1.4fr);
  align-items: end;
  gap: 28px;
  padding-bottom: 28px;
}

body.htek-enhanced .htek-contact-kicker,
body.htek-enhanced .htek-contact-label {
  color: var(--htek-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

body.htek-enhanced .htek-contact-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 450;
  line-height: 1.03;
}

body.htek-enhanced .htek-contact-details {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr) minmax(0, 1fr);
  border-top: 1px solid var(--htek-line);
  border-bottom: 1px solid var(--htek-line);
}

body.htek-enhanced .htek-contact-detail {
  min-width: 0;
  padding: 30px 28px 34px;
  border-right: 1px solid var(--htek-line);
}

body.htek-enhanced .htek-contact-detail:first-child {
  padding-left: 0;
}

body.htek-enhanced .htek-contact-detail:last-child {
  padding-right: 0;
  border-right: 0;
}

body.htek-enhanced address.htek-contact-detail {
  font-style: normal;
}

body.htek-enhanced .htek-contact-detail h3 {
  margin: 14px 0 16px;
  color: var(--htek-ink);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.25;
}

body.htek-enhanced .htek-contact-detail p {
  max-width: 44ch;
  margin: 0;
  color: var(--htek-muted);
  font-size: 15px;
  line-height: 1.7;
}

body.htek-enhanced .htek-contact-primary-link,
body.htek-enhanced .htek-contact-phone a {
  width: fit-content;
  color: var(--htek-ink);
  text-decoration-color: rgba(10, 10, 10, 0.35);
  text-underline-offset: 4px;
}

body.htek-enhanced .htek-contact-primary-link {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 550;
}

body.htek-enhanced .htek-contact-primary-link:hover,
body.htek-enhanced .htek-contact-phone a:hover {
  text-decoration-color: var(--htek-ink);
}

body.htek-enhanced .htek-contact-phone {
  display: grid;
  gap: 3px;
  margin-top: 14px;
}

body.htek-enhanced .htek-contact-phone span {
  color: var(--htek-muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

body.htek-enhanced .htek-contact-phone a {
  font-size: 17px;
  font-weight: 550;
}

body.htek-enhanced .button-primary-4,
body.htek-enhanced .primary-button,
body.htek-enhanced .rt-home-one-submit,
body.htek-enhanced input[type="submit"] {
  min-height: 48px;
  border: 1px solid var(--htek-ink);
  border-radius: 6px;
  background: var(--htek-ink);
  color: #fff;
  transition: transform 220ms var(--htek-ease), background-color 220ms ease;
}

body.htek-enhanced .button-primary-4:hover,
body.htek-enhanced .primary-button:hover,
body.htek-enhanced input[type="submit"]:hover {
  transform: translateY(-2px);
  background: #2a2a2a;
}

body.htek-enhanced input,
body.htek-enhanced textarea,
body.htek-enhanced select {
  min-height: 48px;
  border-color: var(--htek-line);
  border-radius: 6px;
  font: inherit;
}

body.htek-enhanced .footer-component,
body.htek-enhanced .hero-without-image:last-of-type {
  margin-top: clamp(80px, 10vw, 150px);
}

body.htek-motion .htek-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--htek-ease), transform 800ms var(--htek-ease);
}

body.htek-motion .htek-reveal.htek-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 800px) {
  body.htek-enhanced .htek-nav {
    top: 10px;
    left: 10px;
    right: 10px;
    height: 58px;
    padding: 7px 7px 7px 12px;
  }

  body.htek-enhanced .htek-home-logo {
    width: 40px;
    height: 40px;
  }

  body.htek-enhanced .htek-menu {
    display: block;
  }

  body.htek-enhanced .htek-nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100svh - 86px);
    overflow-y: auto;
    padding: 8px;
    border: 1px solid var(--htek-line);
    border-radius: 12px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(20px);
  }

  body.htek-enhanced .htek-nav-links.is-open {
    display: flex;
  }

  body.htek-enhanced .htek-nav-links > a,
  body.htek-enhanced .htek-nav-dropdown-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 14px;
  }

  body.htek-enhanced .htek-nav-dropdown {
    width: 100%;
  }

  body.htek-enhanced .htek-chevron {
    margin-left: auto;
  }

  body.htek-enhanced .htek-nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 6px 8px;
    padding: 6px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(10, 10, 10, 0.035);
    box-shadow: none;
    backdrop-filter: none;
  }

  body.htek-enhanced .htek-nav-dropdown.is-open > .htek-nav-dropdown-menu {
    display: block;
  }

  body.htek-enhanced .htek-nav-dropdown-menu a {
    min-height: 44px;
    white-space: normal;
  }
}

@media (max-width: 991px) {
  body.htek-enhanced .navbar.w-nav {
    top: 10px;
    height: 58px;
    width: calc(100% - 20px);
    min-height: 58px;
    border-radius: 14px;
  }

  body.htek-enhanced .navbar > .padding-global {
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 7px;
    padding-left: 12px;
  }

  body.htek-enhanced .navbar .container,
  body.htek-enhanced .navbar .navbar-component {
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.htek-enhanced .navbar .right-navbar-content {
    height: 44px;
  }

  body.htek-enhanced .navbar .logo-navbar {
    width: 40px;
    height: 40px;
  }

  body.htek-enhanced .navbar .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border-radius: 6px;
    background: var(--htek-ink);
    color: #fff;
  }

  body.htek-enhanced .navbar .menu-icon {
    color: #fff;
  }

  body.htek-enhanced .navbar .nav-menu.w-nav-menu {
    display: none;
    height: auto;
    top: 66px;
    left: 0;
    right: 0;
    padding: 8px;
    border: 1px solid var(--htek-line);
    margin: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(20px);
  }

  body.htek-enhanced .navbar .nav-menu.w-nav-menu.htek-mobile-open {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    flex-direction: column;
    align-items: stretch;
  }

  body.htek-enhanced .navbar .nav-link,
  body.htek-enhanced .navbar .dropdown-toggle,
  body.htek-enhanced .navbar .button-navbar {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding-right: 14px;
    padding-left: 14px;
  }

  body.htek-enhanced .navbar .dropdown {
    display: block;
    width: 100%;
    height: auto;
  }

  body.htek-enhanced .navbar .dropdown-toggle .icon {
    margin-left: auto;
  }

  body.htek-enhanced .navbar .nav-link > div,
  body.htek-enhanced .navbar .button-navbar > div {
    width: auto;
    text-align: left;
  }

  body.htek-enhanced .navbar .button-navbar {
    margin-left: 0;
  }

  body.htek-enhanced .navbar .button-border {
    width: 100%;
  }

  body.htek-enhanced .team-circles,
  body.htek-enhanced .product-main-quick-stack {
    padding-top: 104px;
  }

  body.htek-enhanced .function-tabs .tabs-menu {
    top: 78px;
    overflow-x: auto;
    justify-content: flex-start;
    width: calc(100% - 40px);
  }

  body.htek-enhanced .htek-contact-details {
    grid-template-columns: 1fr 1fr;
  }

  body.htek-enhanced .htek-contact-detail-office {
    grid-column: 1 / -1;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--htek-line);
  }

  body.htek-enhanced .htek-contact-detail:nth-child(2) {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  body.htek-enhanced {
    font-size: 16px;
  }

  body.htek-enhanced .team-circles,
  body.htek-enhanced .team-slider,
  body.htek-enhanced .testimonial-column-dark,
  body.htek-enhanced .hero-heading-right-2,
  body.htek-enhanced .hero-stack-2,
  body.htek-enhanced .hero-without-image {
    padding-right: 20px;
    padding-left: 20px;
  }

  body.htek-enhanced .team-grid {
    grid-template-columns: 1fr;
  }

  body.htek-enhanced .product-card {
    margin-right: 0;
    margin-left: 0;
  }

  body.htek-enhanced .function-tabs .tabs-menu {
    width: calc(100% - 20px);
    max-width: none;
    margin-right: 10px;
    margin-left: 10px;
  }

  body.htek-enhanced .htek-contact-section {
    margin-top: 52px;
    padding-bottom: 88px;
  }

  body.htek-enhanced .htek-contact-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 22px;
  }

  body.htek-enhanced .htek-contact-heading h2 {
    font-size: 34px;
  }

  body.htek-enhanced .htek-contact-details {
    grid-template-columns: 1fr;
  }

  body.htek-enhanced .htek-contact-detail,
  body.htek-enhanced .htek-contact-detail:first-child,
  body.htek-enhanced .htek-contact-detail:nth-child(2),
  body.htek-enhanced .htek-contact-detail:last-child {
    padding: 24px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--htek-line);
  }

  body.htek-enhanced .htek-contact-detail:last-child {
    border-bottom: 0;
  }
}

body.htek-enhanced .htek-video-embed {
  overflow: hidden;
  background: #000;
}

body.htek-enhanced .htek-product-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  body.htek-enhanced *,
  body.htek-enhanced *::before,
  body.htek-enhanced *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.htek-motion .htek-reveal {
    opacity: 1;
    transform: none;
  }
}
