@font-face {
  font-family: "open-sans";
  src: url("../font/open-sans/open-sans.woff2") format("woff2"),
    url("../font/open-sans/open-sans.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AkzidenzGrotesk-BoldCondAlt";
  src: url("../font/AkzidenzGrotesk/AkzidenzGrotesk-BoldCondAlt.woff2") format("woff2"),
    url("../font/AkzidenzGrotesk/AkzidenzGrotesk-BoldCondAlt.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --zs-color-primary: #0c0474;
  --zs-color-black: #000;
  --zs-color-white: #fff;
  --zs-color-gray: #a0a0a9;
  --zs-color-bg: #e1e1e1;
  --zs-color-text: #000;
  --zs-color-muted: #888;
  --zs-shadow-strong: 0 0 10px rgba(0, 0, 0, 0.7);
  --zs-layout-width: 1400px;
  --zs-layout-footer: 82%;
  --zs-font-main: "open-sans", Arial, Helvetica, sans-serif;
  --zs-font-title: "AkzidenzGrotesk-BoldCondAlt", "Arial Narrow", Arial, Helvetica, sans-serif;
  --zs-font-nav: Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--zs-font-main);
  color: var(--zs-color-text);
  background: var(--zs-color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.zs-search-input,
.zs-search-submit,
.zs-top-contact,
.zs-language-toggle,
.zs-language-menu,
.zs-footer-bar,
.zs-stat-item p,
.zs-inquiry-form,
.zs-search-form {
  font-family: var(--zs-font-main);
}

.zs-nav-list > li,
.zs-nav-list > li a {
  font-family: var(--zs-font-nav);
}

.zs-section-title,
.zs-section-desc,
.zs-product-tabs button,
.zs-social-title,
.zs-footer-column h2,
.zs-inquiry-dialog h2,
.zs-products-head,
.zs-company-content .zs-section-head,
.zs-company-text,
.zs-product-card h3,
.zs-product-card .zs-btn {
  font-family: var(--zs-font-title);
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

.zs-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.zs-layout {
  width: min(var(--zs-layout-width), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.zs-layout-wide {
  width: 100%;
}

.zs-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.25em 1.3em;
  border-radius: 3px;
  overflow: hidden;
  background: var(--zs-color-primary);
  color: var(--zs-color-white);
  font-size: 16px;
  transition: color 0.35s ease, transform 0.35s ease;
}

.zs-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--zs-color-gray);
  transform: translateX(-50%);
  transition: width 0.35s ease, height 0.35s ease;
  z-index: -1;
}

.zs-btn:hover::before,
.zs-btn:focus-visible::before {
  width: 180%;
  height: 260%;
}

.zs-btn:hover,
.zs-btn:focus-visible {
  color: var(--zs-color-black);
}

.zs-header {
  position: relative;
  z-index: 40;
}

.zs-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 80;
  animation: zs-header-slide-in 0.22s ease;
}

.zs-body-fixed-header {
  padding-top: var(--zs-header-offset, 0px);
}

.zs-header.is-fixed .zs-head-top {
  display: none;
}

.zs-header.is-fixed .zs-head-main {
  padding: 10px 0;
}

.zs-header.is-fixed .zs-head-main-inner {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.zs-header.is-fixed .zs-head-brand-row {
  flex: 0 0 auto;
  min-height: 0;
}

.zs-header.is-fixed .zs-logo img {
  height: 48px;
}

.zs-header.is-fixed .zs-head-nav-row {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
}

.zs-header.is-fixed .zs-nav-wrap {
  width: auto;
  padding-top: 0;
  justify-content: flex-end;
}

.zs-header.is-fixed .zs-search-form-inline {
  display: none;
}

@keyframes zs-header-slide-in {
  from {
    transform: translateY(-12px);
    opacity: 0.94;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.zs-head-top {
  margin-bottom: 1px;
  background: var(--zs-color-primary);
  color: var(--zs-color-white);
}

.zs-mobile-contact-bar,
.zs-mobile-search-panel,
.zs-mobile-overlay,
.zs-mobile-tool {
  display: none;
}

.zs-mobile-overlay[hidden] {
  display: none !important;
}

.zs-head-top-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  min-height: 30px;
  font-size: 12px;
}

.zs-top-contact {
  position: relative;
  padding-right: 18px;
  font-size: 16px;
  line-height: 30px;
}

.zs-top-contact + .zs-language::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background: var(--zs-color-black);
}

.zs-language {
  position: relative;
  z-index: 30;
}

.zs-language-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0;
  color: var(--zs-color-white);
  font-size: 12px;
  line-height: 1;
}

.zs-language-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 1px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
}

.zs-flag {
  display: inline-block;
  width: 22px;
  height: 16px;
  flex: 0 0 auto;
  background-image: url("../img/all-m.gif");
  background-repeat: no-repeat;
  background-position: 0 0;
}

.zs-flag-en {
  background-position: 0 -256px;
}

.zs-flag-fr {
  background-position: 0 -320px;
}

.zs-flag-de {
  background-position: 0 -368px;
}

.zs-flag-pt {
  background-position: 0 -704px;
}

.zs-flag-es {
  background-position: 0 -800px;
}

.zs-flag-ru {
  background-position: 0 -736px;
}

.zs-flag-ja {
  background-position: 0 -528px;
}

.zs-flag-ko {
  background-position: 0 -544px;
}

.zs-flag-ar {
  background-position: 0 -32px;
}

.zs-flag-zh {
  background-position: 0 -144px;
}

.zs-flag-ga {
  background-position: 0 -496px;
}

.zs-flag-el {
  background-position: 0 -384px;
}

.zs-flag-tr {
  background-position: 0 -864px;
}

.zs-flag-it {
  background-position: 0 -512px;
}

.zs-flag-da {
  background-position: 0 -208px;
}

.zs-flag-ro {
  background-position: 0 -720px;
}

.zs-flag-id {
  background-position: 0 -480px;
}

.zs-flag-cs {
  background-position: 0 -192px;
}

.zs-flag-af {
  background-position: 0 0;
}

.zs-flag-sv {
  background-position: 0 -832px;
}

.zs-flag-pl {
  background-position: 0 -688px;
}

.zs-flag-eu {
  background-position: 0 -80px;
}

.zs-flag-ca {
  background-position: 0 -128px;
}

.zs-flag-hi {
  background-position: 0 -432px;
}

.zs-flag-lo {
  background-position: 0 -1568px;
}

.zs-flag-sq {
  background-position: 0 -16px;
}

.zs-flag-am {
  background-image:
    radial-gradient(circle at 50% 49%, #2b67c2 0 10%, transparent 11%),
    linear-gradient(#179b59 0 33.33%, #f0c337 33.33% 66.66%, #d5363f 66.66% 100%);
}

.zs-flag-hy {
  background-position: 0 -1408px;
}

.zs-flag-az {
  background-position: 0 -64px;
}

.zs-flag-be {
  background-position: 0 -96px;
}

.zs-flag-bn {
  background-position: 0 -960px;
}

.zs-flag-bs {
  background-position: 0 -1424px;
}

.zs-flag-bg {
  background-position: 0 -112px;
}

.zs-flag-ceb {
  background-position: 0 -1440px;
}

.zs-flag-ny {
  background-position: 0 -1456px;
}

.zs-flag-co {
  background-image:
    radial-gradient(circle at 56% 50%, #111 0 13%, transparent 14%),
    #fff;
}

.zs-language-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 16px;
  width: 360px;
  max-height: none;
  padding: 12px 14px 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.zs-language.is-open .zs-language-menu,
.zs-language:hover .zs-language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.zs-language-menu li {
  min-width: 0;
  padding: 1px 0;
}

.zs-language-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  color: #222;
  font-size: 13px;
  line-height: 1.45;
  white-space: nowrap;
}

.zs-language-menu a:hover {
  color: #0c0474;
}

.zs-language-more {
  grid-column: 1 / -1;
  padding-top: 8px;
  color: #666;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.zs-head-main {
  background: var(--zs-color-black);
  border-bottom: 1px solid var(--zs-color-white);
  padding: 18px 0 18px;
}

.zs-head-main-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.zs-head-brand-row {
  display: flex;
  align-items: center;
  min-height: 52px;
}

.zs-head-nav-row {
  display: flex;
  align-items: center;
}

.zs-logo img {
  width: auto;
  height: 60px;
}

.zs-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  padding-top: 8px;
}

.zs-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.zs-nav-list > li {
  position: relative;
  margin-right: 55px;
  font-size: 22px;
  line-height: 42px;
  color: var(--zs-color-white);
  text-transform: uppercase;
  letter-spacing: 0;
}

.zs-nav-list > li:last-child {
  margin-right: 0;
}

.zs-nav-list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.zs-nav-list > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--zs-color-white);
  transition: width 0.25s ease;
}

.zs-nav-list > li.is-current > a::before,
.zs-nav-list > li:hover > a::before,
.zs-nav-list > li > a:hover::before {
  width: 100%;
}

.zs-nav-list > li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--zs-color-white);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.zs-nav-list > li.is-current::after,
.zs-nav-list > li:hover::after {
  opacity: 1;
}

.zs-nav-item-has-children > a::after {
  content: "";
  margin-left: 10px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  transform: translateY(1px);
}

.zs-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.zs-nav-item-has-children:hover .zs-submenu,
.zs-nav-item-has-children:focus-within .zs-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.zs-submenu a {
  display: block;
  padding: 8px 24px;
  white-space: nowrap;
  color: var(--zs-color-white);
  font-size: 16px;
  line-height: 1.6;
}

.zs-submenu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--zs-color-gray);
}

.zs-search-form {
  display: flex;
  gap: 12px;
}

.zs-search-form-inline {
  position: relative;
  flex: 0 0 340px;
  width: 340px;
  gap: 0;
}

.zs-search-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 38px;
  padding: 0 46px 0 14px;
  border: 0;
  border-radius: 2px;
  background: #fff;
  color: #333;
  font-size: 13px;
  outline: none;
  box-shadow: none;
}

.zs-search-input::placeholder {
  color: #999;
}

.zs-search-input:focus,
.zs-search-input:active {
  border: 0;
  outline: none;
  box-shadow: none;
}

.zs-search-submit {
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 38px;
  min-width: 42px;
  background: transparent;
}

.zs-search-submit::before,
.zs-search-submit::after {
  content: "";
  position: absolute;
}

.zs-search-submit::before {
  left: 12px;
  top: 11px;
  width: 12px;
  height: 12px;
  border: 2px solid #333;
  border-radius: 50%;
}

.zs-search-submit::after {
  left: 23px;
  top: 22px;
  width: 8px;
  height: 2px;
  background: #333;
  transform: rotate(45deg);
  transform-origin: left center;
}

.zs-mobile-toggle {
  display: none;
  min-width: 72px;
  min-height: 44px;
  padding: 0 14px;
  background: var(--zs-color-primary);
  color: var(--zs-color-white);
  text-transform: uppercase;
}

.zs-hero {
  margin-bottom: 1px;
}

.zs-slider {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.zs-slider.is-dragging {
  cursor: grabbing;
}

.zs-slider-track {
  position: relative;
  aspect-ratio: 1920 / 680;
}

.zs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, transform 1s ease;
}

.zs-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.zs-slide:first-child {
  position: relative;
}

.zs-slide:first-child:not(.is-active) {
  opacity: 0;
  visibility: hidden;
}

.zs-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 680;
  transform: scale(1.12);
  transform-origin: center center;
  transition: transform 6s ease;
}

.zs-slide.is-active img {
  transform: scale(1);
}

.zs-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 50px;
  height: 60px;
  margin-top: -30px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--zs-color-white);
  opacity: 0;
  transition: width 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

.zs-slider:hover .zs-slider-arrow {
  opacity: 0.85;
}

.zs-slider-arrow:hover {
  width: 100px;
  background: rgba(0, 0, 0, 0.95);
}

.zs-slider-prev {
  left: 0;
}

.zs-slider-next {
  right: 0;
}

.zs-slider-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.zs-slider-prev::before {
  left: 18px;
  transform: rotate(-135deg);
}

.zs-slider-next::before {
  right: 18px;
  transform: rotate(45deg);
}

.zs-slider-counter {
  position: absolute;
  top: 0;
  width: 60%;
  height: 60px;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 12px;
}

.zs-slider-arrow:hover .zs-slider-counter {
  opacity: 1;
}

.zs-slider-prev .zs-slider-counter {
  right: 0;
}

.zs-slider-next .zs-slider-counter {
  left: 0;
}

.zs-slider-counter strong,
.zs-slider-counter span,
.zs-slider-counter b {
  position: absolute;
  display: inline-block;
  width: 60%;
  text-align: center;
  line-height: 30px;
  font-weight: 400;
}

.zs-slider-counter strong {
  top: 10px;
  left: 0;
}

.zs-slider-counter span {
  right: 0;
  bottom: 10px;
}

.zs-slider-counter b {
  left: 50%;
  top: 50%;
  width: auto;
  font-size: 28px;
  transform: translate(-50%, -50%);
}

.zs-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 5;
  display: flex;
  gap: 18px;
  transform: translateX(-50%);
  pointer-events: auto;
}

.zs-slider-dots button {
  position: relative;
  z-index: 6;
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  pointer-events: auto;
}

.zs-slider-dots button.is-active {
  background: var(--zs-color-white);
}

.zs-products-head {
  position: relative;
  padding-top: 20px;
  background: var(--zs-color-black);
  border-bottom: 15px solid var(--zs-color-gray);
  color: var(--zs-color-white);
  text-transform: uppercase;
}

.zs-section-title {
  position: relative;
  display: inline-block;
  font-size: 52px;
  line-height: 1.2;
}

.zs-products .zs-section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 110%;
  height: 100%;
  background: var(--zs-color-black);
  transition: left 0.5s linear;
}

.zs-products .zs-section-title.is-animating::before {
  left: 0;
}

.zs-section-desc {
  font-size: 24px;
}

.zs-product-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 5px;
}

.zs-product-tabs button {
  min-width: 175px;
  padding: 0.5em 0.5em 0.8em;
  background: #555;
  color: var(--zs-color-white);
  font-size: 26px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.zs-product-tabs button.is-active {
  background: var(--zs-color-gray);
  color: var(--zs-color-black);
}

.zs-products-body {
  position: relative;
  z-index: 1;
  padding: 18px 0 30px;
  background: var(--zs-color-bg);
  box-shadow: var(--zs-shadow-strong);
  overflow: hidden;
}

.zs-products-body > .zs-layout {
  width: min(var(--zs-layout-width), calc(100% - 260px));
}

.zs-product-panel[hidden] {
  display: none;
}

.zs-carousel {
  position: relative;
  width: 100%;
  --zs-product-card-width: 190px;
  --zs-product-card-gap: 68px;
}

.zs-carousel-viewport {
  overflow: visible;
  width: 100%;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.zs-carousel.is-peek-layout .zs-carousel-viewport {
  overflow: visible;
}

.zs-carousel.is-dragging .zs-carousel-viewport {
  cursor: grabbing;
}

.zs-carousel-track {
  display: flex;
  gap: var(--zs-product-card-gap);
  align-items: stretch;
  will-change: transform;
  transition: transform 0.5s ease;
}

.zs-product-card {
  flex: 0 0 var(--zs-product-card-width);
  opacity: 1;
  filter: none;
  transform: none;
  transform-origin: center center;
  pointer-events: auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.zs-product-card.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.zs-product-card.is-side {
  opacity: 1;
  filter: none;
  transform: scale(0.98);
  pointer-events: none;
}

.zs-product-card.is-clone {
  pointer-events: none;
}

.zs-product-card.is-side .zs-product-image {
  opacity: 0.42;
}

.zs-product-card.is-side .zs-product-image img {
  filter: blur(3px) grayscale(0.08);
}

.zs-product-card figure {
  position: relative;
  padding: 10px;
  background: var(--zs-color-white);
}

.zs-product-card figure::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--zs-color-black);
  pointer-events: none;
  z-index: 1;
}

.zs-product-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  z-index: 2;
}

.zs-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.zs-product-card figcaption {
  position: relative;
  z-index: 3;
  margin: 0 5px;
  padding: 15px 10px;
  border-top: 1px solid var(--zs-color-black);
  text-align: center;
}

.zs-product-card h3 {
  min-height: 58px;
  font-size: 20px;
  line-height: 1.45;
  text-transform: uppercase;
}

.zs-product-card h3 a:hover {
  text-decoration: none;
}

.zs-product-card .zs-btn {
  display: block;
  margin-top: 16px;
  text-align: center;
}

.zs-product-card.is-active:hover {
  transform: rotateX(10deg) rotateY(-8deg);
  box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.35);
}

.zs-product-card.is-active:hover .zs-product-image img {
  transform: scale(1.05);
}

.zs-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.zs-carousel-dots button {
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.zs-carousel-dots button.is-active {
  background: var(--zs-color-primary);
}

.zs-advantage {
  padding: 60px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #333;
}

.zs-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.zs-company-image {
  overflow: hidden;
}

.zs-company-image img {
  width: 100%;
  transition: transform 0.9s ease-in-out;
}

.zs-company-image:hover img {
  transform: translateX(-15px);
}

.zs-company-content {
  padding: 50px 0 50px 50px;
}

.zs-company-content .zs-section-head {
  margin-bottom: 15px;
  text-transform: uppercase;
}

.zs-company-content .zs-section-desc {
  font-size: 24px;
}

.zs-company-text {
  font-size: 25px;
  line-height: 1.5;
}

.zs-company-content .zs-btn {
  margin-top: 40px;
}

.zs-stat-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0;
  background: transparent;
}

.zs-stat-item {
  position: relative;
  width: 25%;
  padding: 45px 12px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  font-family: var(--zs-font-title);
}

.zs-stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 45px;
  bottom: 45px;
  width: 3px;
  background: rgba(212, 207, 207, 0.5);
}

.zs-stat-item:nth-child(4n + 1)::before {
  display: none;
}

.zs-stat-value {
  height: 1em;
  font-size: 60px;
  font-family: var(--zs-font-title);
}

.zs-stat-value em {
  margin-left: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--zs-font-title);
}

.zs-stat-item p {
  padding: 8px 10px;
  font-size: 15px;
  line-height: 1.35;
  font-family: var(--zs-font-title);
}

.zs-case-slider {
  position: relative;
}

.zs-gallery {
  position: relative;
}

.zs-gallery-viewport {
  overflow: hidden;
}

.zs-gallery-track {
  display: flex;
  gap: 0;
  transition: transform 0.45s ease;
}

.zs-gallery-item {
  position: relative;
  flex: 0 0 25%;
  overflow: hidden;
}

.zs-gallery-item a {
  display: block;
}

.zs-gallery-item img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.zs-gallery-item:hover img {
  transform: scale(1.1);
}

.zs-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 50px;
  height: 60px;
  margin-top: -30px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--zs-color-white);
}

.zs-gallery-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.zs-gallery-prev {
  left: 0;
}

.zs-gallery-prev::before {
  transform: rotate(-135deg);
}

.zs-gallery-next {
  right: 0;
}

.zs-gallery-next::before {
  transform: rotate(45deg);
}

.zs-social-bar {
  padding: 15px 0;
  background: var(--zs-color-gray);
}

.zs-social-inner,
.zs-footer-grid,
.zs-footer-bar .zs-layout {
  width: min(var(--zs-layout-footer), calc(100% - 32px));
}

.zs-social-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.zs-social-title {
  font-size: 52px;
  line-height: 55px;
  text-transform: uppercase;
}

.zs-social-list {
  display: flex;
  align-items: center;
}

.zs-social-list li {
  padding-left: 30px;
  line-height: 50px;
}

.zs-social-list img {
  max-height: 52px;
  transition: transform 0.3s ease;
}

.zs-social-list a:hover img {
  transform: rotate(10deg) scale(1.06);
}

.zs-footer {
  background: var(--zs-color-black);
  color: var(--zs-color-white);
}

.zs-footer-main {
  padding: 40px 0 30px;
}

.zs-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.zs-footer-column {
  padding: 20px 0;
  font-size: 18px;
}

.zs-footer-column-info {
  width: 18%;
}

.zs-footer-column-products {
  width: 25%;
}

.zs-footer-column-contact {
  width: 20%;
}

.zs-footer-column-follow {
  width: 22%;
}

.zs-footer-column h2 {
  position: relative;
  margin-bottom: 40px;
  font-size: 30px;
  line-height: 1.3;
  text-transform: uppercase;
}

.zs-footer-column h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--zs-color-white);
}

.zs-footer-column li {
  padding: 9px 0;
  line-height: 1.5;
}

.zs-footer-column a:hover {
  color: #5447fb;
}

.zs-footer-column address {
  font-style: normal;
}

.zs-inquiry-box h3 {
  margin-bottom: 45px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.zs-inquiry-box .zs-btn {
  padding: 0.25em 0.8em;
  background: var(--zs-color-gray);
  color: var(--zs-color-black);
  font-size: 20px;
  border-radius: 0;
  text-transform: uppercase;
}

.zs-inquiry-box .zs-btn:hover {
  background: var(--zs-color-primary);
  color: var(--zs-color-white);
}

.zs-footer-bar {
  text-align: center;
  color: var(--zs-color-muted);
}

.zs-footer-bar a {
  color: var(--zs-color-muted);
}

.zs-footer-bar .zs-layout {
  border-top: 1px solid var(--zs-color-white);
  padding: 25px 0 35px;
}

.zs-footer-bar p {
  line-height: 1.8;
}

.zs-side-bar {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 50;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}

.zs-side-panel {
  position: relative;
  width: 208px;
  padding: 12px;
  background: #181818;
  color: var(--zs-color-white);
  border-left: 3px solid var(--zs-color-primary);
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.zs-side-bar.is-collapsed .zs-side-panel {
  transform: translateX(100%);
}

.zs-side-email {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 14px 12px;
  background: var(--zs-color-primary);
  color: var(--zs-color-white);
  text-align: center;
}

.zs-side-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 24px;
  height: 24px;
  color: var(--zs-color-white);
  font-size: 18px;
}

.zs-side-show {
  width: 38px;
  height: 120px;
  background: var(--zs-color-primary);
  position: relative;
}

.zs-side-show::before,
.zs-side-show::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-left: -7px;
  border-top: 2px solid var(--zs-color-white);
  border-right: 2px solid var(--zs-color-white);
}

.zs-side-show::before {
  transform: translateY(-50%) rotate(-135deg);
}

.zs-side-bar.is-collapsed .zs-side-show::before {
  transform: translateY(-50%) rotate(45deg);
}

.zs-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.65);
}

.zs-inquiry-modal[hidden] {
  display: none !important;
}

.zs-inquiry-dialog {
  position: relative;
  width: min(560px, 100%);
  padding: 34px 28px 28px;
  background: var(--zs-color-white);
}

.zs-inquiry-dialog h2 {
  margin-bottom: 20px;
  font-size: 34px;
  text-transform: uppercase;
}

.zs-inquiry-close {
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 2;
  width: 28px;
  height: 28px;
}

.zs-inquiry-close::before,
.zs-inquiry-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--zs-color-black);
}

.zs-inquiry-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.zs-inquiry-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.zs-inquiry-form {
  display: grid;
  gap: 14px;
}

.zs-inquiry-form span {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
}

.zs-inquiry-form input,
.zs-inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d0d0d0;
}

.zs-back-top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 60;
  width: 50px;
  height: 50px;
  border: 2px solid #eee;
  border-radius: 8px;
  background: #666;
  color: var(--zs-color-white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(50%) scale(0.8);
  transition: all 0.3s ease;
}

.zs-back-top::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -3px 0 0 -6px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(45deg);
}

.zs-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.zs-back-top:hover {
  transform: translateY(-10px);
  background: var(--zs-color-black);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1680px) {
  .zs-carousel {
    --zs-product-card-gap: 56px;
  }
}

@media (max-width: 1440px) {
  .zs-nav-list > li {
    margin-right: 24px;
    font-size: 12px;
  }

  .zs-carousel {
    --zs-product-card-gap: 44px;
  }

  .zs-products-body > .zs-layout {
    width: min(var(--zs-layout-width), calc(100% - 180px));
  }
}

@media (max-width: 1200px) {
  .zs-layout,
  .zs-social-inner,
  .zs-footer-grid,
  .zs-footer-bar .zs-layout {
    width: calc(100% - 32px);
  }

  .zs-products-body > .zs-layout {
    width: calc(100% - 32px);
  }

  .zs-carousel {
    --zs-product-card-gap: 15px;
    --zs-product-card-width: clamp(180px, 26vw, 240px);
  }

  .zs-company-grid {
    grid-template-columns: 1fr;
  }

  .zs-company-content {
    padding: 32px 0 0;
  }

  .zs-social-title {
    font-size: 42px;
    line-height: 1.1;
  }

  .zs-footer-grid {
    flex-wrap: wrap;
  }

  .zs-footer-column {
    width: calc(50% - 12px);
  }
}

@media (max-width: 980px) {
  .zs-header {
    position: relative;
    top: auto;
  }

  .zs-body-fixed-header {
    padding-top: 0;
  }

  .zs-header.is-fixed {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    animation: none;
  }

  .zs-header.is-fixed .zs-head-top,
  .zs-header.is-fixed .zs-mobile-contact-bar {
    display: block;
  }

  .zs-header.is-fixed .zs-head-main {
    padding: 10px 0 9px;
  }

  .zs-header.is-fixed .zs-head-main-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
  }

  .zs-header.is-fixed .zs-head-brand-row {
    justify-content: center;
    min-height: auto;
  }

  .zs-header.is-fixed .zs-logo img {
    height: 46px;
  }

  .zs-header.is-fixed .zs-head-nav-row {
    display: block;
    height: 0;
  }

  .zs-head-top {
    display: block;
    margin-bottom: 0;
    background: var(--zs-color-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .zs-head-top .zs-layout {
    width: 100%;
  }

  .zs-head-top-inner {
    justify-content: space-between;
    gap: 0;
    min-height: 34px;
    padding: 0 14px;
  }

  .zs-top-contact {
    display: none;
  }

  .zs-top-contact + .zs-language::before {
    display: none;
  }

  .zs-mobile-tool,
  .zs-mobile-contact-bar,
  .zs-mobile-search-panel {
    display: block;
  }

  .zs-mobile-tool {
    position: relative;
    width: 28px;
    height: 38px;
    padding: 0;
    color: var(--zs-color-white);
  }

  .zs-mobile-tools-toggle::before,
  .zs-mobile-tools-toggle::after,
  .zs-mobile-tools-toggle span {
    content: "";
    position: absolute;
    left: 5px;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .zs-mobile-tools-toggle::before {
    top: 11px;
    box-shadow: 0 6px 0 currentColor;
  }

  .zs-mobile-tools-toggle::after {
    top: 23px;
  }

  .zs-mobile-search-toggle::before,
  .zs-mobile-search-toggle::after {
    content: "";
    position: absolute;
  }

  .zs-mobile-search-toggle::before {
    left: 6px;
    top: 8px;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
  }

  .zs-mobile-search-toggle::after {
    left: 18px;
    top: 20px;
    width: 8px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
  }

  .zs-language {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .zs-language-toggle {
    min-height: 38px;
    gap: 4px;
  }

  .zs-language-toggle span:nth-child(2) {
    display: none;
  }

  .zs-language-arrow {
    margin-left: 0;
  }

  .zs-language-menu {
    right: 50%;
    transform: translate(50%, 12px);
  }

  .zs-language.is-open .zs-language-menu,
  .zs-language:hover .zs-language-menu {
    transform: translate(50%, 0);
  }

  .zs-mobile-contact-bar {
    background: var(--zs-color-primary);
    text-align: center;
  }

  .zs-mobile-contact-bar .zs-layout {
    width: 100%;
  }

  .zs-mobile-contact-link {
    display: block;
    padding: 6px 12px;
    color: var(--zs-color-white);
    font-size: 15px;
    line-height: 1.2;
    font-family: var(--zs-font-nav);
  }

  .zs-mobile-search-panel {
    max-height: 0;
    overflow: hidden;
    background: #111;
    transition: max-height 0.3s ease;
  }

  .zs-mobile-search-panel.is-open {
    max-height: 78px;
  }

  .zs-mobile-search-panel .zs-layout {
    width: calc(100% - 24px);
  }

  .zs-mobile-search-form {
    position: relative;
    padding: 10px 0;
  }

  .zs-mobile-search-input {
    width: 100%;
    height: 40px;
    padding: 0 46px 0 14px;
    border: 0;
    background: #fff;
    font-family: var(--zs-font-main);
    font-size: 14px;
    outline: none;
  }

  .zs-mobile-search-submit {
    position: absolute;
    right: 0;
    top: 10px;
    width: 42px;
    height: 40px;
  }

  .zs-mobile-search-submit::before,
  .zs-mobile-search-submit::after {
    content: "";
    position: absolute;
  }

  .zs-mobile-search-submit::before {
    left: 12px;
    top: 11px;
    width: 12px;
    height: 12px;
    border: 2px solid #333;
    border-radius: 50%;
  }

  .zs-mobile-search-submit::after {
    left: 23px;
    top: 22px;
    width: 8px;
    height: 2px;
    background: #333;
    transform: rotate(45deg);
    transform-origin: left center;
  }

  .zs-head-main {
    padding: 10px 0 9px;
  }

  .zs-head-main-inner {
    gap: 12px;
  }

  .zs-head-brand-row {
    justify-content: center;
  }

  .zs-logo img {
    height: 46px;
  }

  .zs-head-nav-row {
    display: block;
    height: 0;
  }

  .zs-mobile-toggle,
  .zs-search-form-inline {
    display: none;
  }

  .zs-nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    display: flex;
    width: min(320px, calc(100% - 56px));
    height: 100vh;
    padding: 18px 18px 28px;
    background: #0d0d0d;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .zs-nav-wrap.is-open {
    transform: translateX(0);
  }

  .zs-mobile-nav-close {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 28px;
    height: 28px;
    color: var(--zs-color-white);
  }

  .zs-mobile-nav-close::before,
  .zs-mobile-nav-close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .zs-mobile-nav-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .zs-mobile-nav-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .zs-mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 85;
    background: rgba(0, 0, 0, 0.45);
  }

  .zs-nav-list {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 28px;
  }

  .zs-nav-list > li {
    width: 100%;
    margin-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    line-height: 1.5;
  }

  .zs-nav-list > li > a {
    display: block;
    width: 100%;
    padding: 12px 22px 12px 0;
  }

  .zs-nav-item-has-children > a {
    position: relative;
    display: block;
  }

  .zs-nav-item-has-children > a::after {
    position: absolute;
    right: 2px;
    top: 50%;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .zs-nav-list > li > a::before,
  .zs-nav-list > li::after,
  .zs-nav-list > li.is-current > a::before,
  .zs-nav-list > li:hover > a::before,
  .zs-nav-list > li > a:hover::before,
  .zs-nav-list > li.is-current::after,
  .zs-nav-list > li:hover::after {
    display: none;
    width: 0;
    opacity: 0;
  }

  .zs-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 12px;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .zs-submenu a {
    padding: 6px 0 6px 16px;
    font-size: 12px;
  }

  .zs-search-form-inline {
    display: none;
  }

  .zs-product-tabs {
    position: static;
    margin-top: 18px;
  }

  .zs-product-tabs button {
    min-width: 0;
    font-size: 18px;
  }

  .zs-gallery-item {
    flex-basis: 50%;
  }

  .zs-social-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .zs-social-list {
    flex-wrap: wrap;
  }

  .zs-social-list li {
    padding-left: 0;
    padding-right: 18px;
  }
}

@media (max-width: 768px) {
  .zs-head-brand-row {
    min-height: auto;
  }

  .zs-logo img {
    height: 42px;
  }

  .zs-section-title {
    font-size: 26px;
    line-height: 1.05;
  }

  .zs-section-desc {
    font-size: 14px;
  }

  .zs-slider-arrow {
    width: 40px;
    height: 50px;
    margin-top: -25px;
  }

  .zs-slider-arrow:hover {
    width: 56px;
  }

  .zs-slider-counter,
  .zs-gallery-arrow {
    display: none;
  }

  .zs-slider-dots {
    bottom: 6px;
    gap: 5px;
  }

  .zs-slider-dots button {
    width: 9px;
    height: 9px;
  }

  .zs-product-card {
    flex-basis: calc((100% - 18px) / 2);
    opacity: 1;
    filter: none;
    transform: none;
    pointer-events: auto;
  }

  .zs-company-text {
    font-size: 18px;
  }

  .zs-stat-list {
    background: transparent;
  }

  .zs-stat-item {
    width: 50%;
    padding: 10px 0;
  }

  .zs-stat-item::before {
    display: none;
  }

  .zs-stat-value {
    font-size: 40px;
  }

  .zs-stat-item p {
    font-size: 14px;
    line-height: 1.5;
    text-transform: capitalize;
  }

  .zs-gallery-item {
    flex-basis: 100%;
  }

  .zs-social-title {
    font-size: 34px;
    line-height: 1.1;
  }

  .zs-social-list img {
    max-height: 42px;
  }

  .zs-footer-column {
    width: 100%;
  }

  .zs-side-bar {
    display: none;
  }

  .zs-back-top {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  .zs-layout {
    width: calc(100% - 24px);
  }

  .zs-search-form {
    flex-direction: column;
  }

  .zs-section-title {
    font-size: 24px;
  }

  .zs-product-tabs {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .zs-product-tabs button {
    width: auto;
  }

  .zs-product-tabs button {
    min-width: 0;
    padding: 0.5em 0.8em 0.7em;
    font-size: 14px;
  }

  .zs-product-card {
    flex-basis: calc((100% - 12px) / 2);
  }

  .zs-inquiry-dialog {
    padding: 28px 18px 18px;
  }

  .zs-inquiry-dialog h2 {
    font-size: 26px;
  }
}
