@font-face {
  font-family: "zs-gilroy-regular";
  src: url("../font/gilroy-regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "zs-gilroy-bold";
  src: url("../font/gilroy-bold.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "zs-misans-regular";
  src: url("../font/MiSans-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "zs-misans-bold";
  src: url("../font/MiSans-Bold.otf") format("opentype");
  font-display: swap;
}

:root {
  --zs-color-1: #000000;
  --zs-color-2: #ffffff;
  --zs-color-g1: #262626;
  --zs-color-g2: #595959;
  --zs-color-g3: #8c8c8c;
  --zs-color-g4: #d9d9d9;
  --zs-color-g5: #dedede;
  --zs-color-g6: #f6f6f6;
  --zs-color-ui: #4069d2;
  --zs-color-ui-dark: #0e2638;
  --zs-color-ui-2: #131925;
  --zs-color-light-blue: #dde9f1;
  --zs-padding-x: 140px;
  --zs-header-gap: 64px;
  --zs-header-height: 96px;
  --zs-shell-height: 160px;
  --zs-radius-lg: 20px;
  --zs-radius-md: 10px;
  --zs-shadow-card: 0 1px 10px 2px rgba(143, 160, 170, 0.3);
  --zs-shadow-panel: 0 0 10px rgba(0, 0, 0, 0.1);
  --zs-transition: 0.3s ease;
}

@media (max-width: 1600px) {
  :root {
    --zs-padding-x: 88px;
  }
}

@media (max-width: 1200px) {
  :root {
    --zs-padding-x: 24px;
    --zs-header-gap: 34px;
    --zs-header-height: 56px;
    --zs-shell-height: 90px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--zs-color-g6);
  color: var(--zs-color-ui-2);
  font-family: "zs-gilroy-regular", "zs-misans-regular", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

strong {
  color: var(--zs-color-ui);
  font-family: "zs-gilroy-bold", "zs-misans-bold", Arial, sans-serif;
}

.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-site {
  min-height: 100vh;
  overflow: clip;
  position: relative;
}

.zs-header-shell {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 60;
}

.zs-header-shell.is-fixed {
  position: fixed;
}

.zs-topbar {
  display: flex;
  height: var(--zs-header-gap);
  justify-content: flex-end;
  overflow: visible;
  padding: 0 84px;
  position: relative;
  transition: height var(--zs-transition), padding var(--zs-transition), opacity var(--zs-transition), transform var(--zs-transition);
  z-index: 2;
}

.zs-topbar__inner {
  align-items: center;
  display: flex;
  position: relative;
}

.zs-topbar__group {
  position: relative;
}

.zs-topbar__item {
  align-items: center;
  background: transparent;
  color: var(--zs-color-2);
  display: inline-flex;
  font-family: "zs-gilroy-bold", "zs-misans-bold", Arial, sans-serif;
  font-size: 18px;
  gap: 12px;
  margin-left: 28px;
  padding: 0;
  position: relative;
  white-space: nowrap;
}

.zs-topbar__item::before {
  background: var(--zs-color-2);
  content: "";
  display: block;
  height: 24px;
  margin-right: 16px;
  width: 1px;
}

.zs-topbar__inner > .zs-topbar__group:first-child .zs-topbar__item::before,
.zs-topbar__inner > .zs-topbar__item:first-child::before {
  display: none;
}

.zs-topbar-contact-panel {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  left: 0;
  min-width: 278px;
  opacity: 0;
  padding: 14px 16px 12px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  transform: translateY(10px);
  transition: opacity var(--zs-transition), transform var(--zs-transition);
  visibility: hidden;
  z-index: 20;
}

.zs-topbar-contact-panel::before {
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  right: 0;
  top: -10px;
}

.zs-topbar-contact-panel a {
  color: #3f3f3f;
  display: block;
  font-size: 16px;
  line-height: 1.55;
  white-space: nowrap;
}

.zs-topbar-contact-panel a + a {
  margin-top: 6px;
}

.zs-topbar__group--contact:hover .zs-topbar-contact-panel,
.zs-topbar__group--contact:focus-within .zs-topbar-contact-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.zs-topbar-lang-panel {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  min-width: 120px;
  opacity: 0;
  padding: 12px 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: translateY(10px);
  transition: opacity var(--zs-transition), transform var(--zs-transition);
  visibility: hidden;
  z-index: 20;
}

.zs-topbar-lang-panel::before {
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  right: 0;
  top: -10px;
}

.zs-topbar-lang-panel a {
  color: #3f3f3f;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  padding: 4px 16px;
  white-space: nowrap;
}

.zs-topbar-lang-panel a:hover {
  color: var(--zs-color-ui);
}

.zs-topbar__group--lang:hover .zs-topbar-lang-panel,
.zs-topbar__group--lang:focus-within .zs-topbar-lang-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.zs-header {
  align-items: center;
  background: var(--zs-color-2);
  border-radius: 0;
  display: flex;
  height: var(--zs-header-height);
  margin: 0 auto;
  padding-left: 80px;
  position: relative;
  transition: width var(--zs-transition), height var(--zs-transition), transform var(--zs-transition), box-shadow var(--zs-transition), padding var(--zs-transition), border-radius var(--zs-transition);
  width: calc(100% - 120px);
}

.zs-header__logo-group {
  flex: 0 0 auto;
}

.zs-logo {
  align-items: flex-start;
  color: var(--zs-color-1);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0.85;
}

.zs-logo img {
  display: block;
  height: auto;
  max-height: 30px;
  width: auto;
  transition: max-height var(--zs-transition);
}

.zs-logo__word {
  font-family: "zs-gilroy-bold", "zs-misans-bold", Arial, sans-serif;
  font-size: 44px;
  letter-spacing: -0.06em;
  text-transform: lowercase;
  transition: font-size var(--zs-transition);
}

.zs-logo__sub {
  color: var(--zs-color-ui);
  font-family: "zs-gilroy-bold", "zs-misans-bold", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.48em;
  margin-top: 6px;
  text-transform: uppercase;
  transition: font-size var(--zs-transition), letter-spacing var(--zs-transition), margin-top var(--zs-transition);
}

.zs-nav {
  margin-left: 96px;
  transition: margin var(--zs-transition);
}

.zs-nav__list {
  display: flex;
}

.zs-nav__item {
  margin-right: 40px;
  position: relative;
  transition: margin var(--zs-transition);
}

.zs-nav__link,
.zs-nav__trigger {
  align-items: center;
  background: transparent;
  color: var(--zs-color-g1);
  display: inline-flex;
  font-family: "zs-gilroy-bold", "zs-misans-bold", Arial, sans-serif;
  font-size: 18px;
  gap: 8px;
  padding: 0;
  transition: font-size var(--zs-transition), gap var(--zs-transition), color var(--zs-transition);
}

.zs-nav__item:hover > .zs-nav__link,
.zs-nav__item:hover > .zs-nav__trigger {
  color: var(--zs-color-ui);
}

.zs-nav__item:hover .zs-icon--chevron-down,
.zs-products:hover .zs-icon--chevron-down {
  transform: rotate(225deg) translateY(-1px);
}

.zs-nav__panel,
.zs-products__panel {
  display: none;
  padding-top: 34px;
  position: absolute;
  top: 100%;
  z-index: 40;
}

.zs-nav__item:hover > .zs-nav__panel,
.zs-products:hover > .zs-products__panel {
  display: block;
}

.zs-nav__panel {
  left: 0;
  min-width: 200px;
}

.zs-nav__panel--wide {
  min-width: 512px;
}

.zs-nav__panel-row {
  background: var(--zs-color-2);
  box-shadow: var(--zs-shadow-panel);
  display: flex;
}

.zs-nav__panel-col {
  border-right: 1px solid var(--zs-color-g5);
  min-width: 256px;
}

.zs-nav__panel-col:last-child {
  border-right: 0;
}

.zs-nav__panel:not(.zs-nav__panel--wide) .zs-nav__panel-list,
.zs-nav__panel--wide .zs-nav__panel-row {
  background: var(--zs-color-2);
  box-shadow: var(--zs-shadow-panel);
}

.zs-nav__panel-title,
.zs-nav__panel-list a {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  gap: 8px;
  padding: 12px 16px;
  width: 100%;
}

.zs-nav__panel-title {
  font-family: "zs-gilroy-bold", "zs-misans-bold", Arial, sans-serif;
}

.zs-nav__panel-list a:hover,
.zs-nav__panel-title:hover {
  background: var(--zs-color-ui);
  color: var(--zs-color-2);
}

.zs-header-tools {
  align-items: center;
  background: var(--zs-color-ui);
  display: flex;
  height: 100%;
  margin-left: auto;
  padding: 0 24px;
  position: relative;
  transition: padding var(--zs-transition), width var(--zs-transition);
}

.zs-products {
  height: 100%;
  position: relative;
}

.zs-products__trigger {
  align-items: center;
  background: transparent;
  color: var(--zs-color-2);
  display: inline-flex;
  font-size: 16px;
  gap: 8px;
  height: 100%;
  padding: 0;
  transition: font-size var(--zs-transition), gap var(--zs-transition), color var(--zs-transition);
}

.zs-products__panel {
  padding-top: 10px;
  right: 0;
}

.zs-products__panel-inner {
  position: relative;
}

.zs-products__main {
  background: var(--zs-color-2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  height: 440px;
  overflow: auto;
  padding: 0;
  width: 238px;
}

.zs-products__main::-webkit-scrollbar {
  width: 6px;
}

.zs-products__group {
  border-bottom: 0;
  padding: 0;
}

.zs-products__group > a {
  align-items: center;
  color: var(--zs-color-g1);
  display: flex;
  font-family: "zs-gilroy-regular", "zs-misans-regular", Arial, sans-serif;
  font-size: 13px;
  justify-content: space-between;
  line-height: 1.35;
  min-height: 40px;
  padding: 10px 18px;
  transition: color var(--zs-transition), background-color var(--zs-transition);
}

.zs-products__group > a:hover {
  color: var(--zs-color-ui);
}

.zs-products__group > a::after {
  display: none;
}

.zs-header-tools__search,
.zs-header-tools__mobile {
  align-items: center;
  background: transparent;
  color: var(--zs-color-2);
  display: inline-flex;
  height: 100%;
  justify-content: center;
  padding: 0;
}

.zs-header-tools__search::before {
  background: var(--zs-color-2);
  content: "";
  display: block;
  height: 20px;
  margin: 0 16px;
  width: 1px;
}

.zs-header-tools__mobile {
  display: none;
}

.zs-header-search-panel {
  background: var(--zs-color-2);
  padding: 20px;
  position: absolute;
  right: 0;
  top: calc(100% + 1px);
  width: 336px;
  z-index: 45;
}

.zs-header-search-panel[hidden] {
  display: none !important;
}

.zs-header-search-panel form {
  align-items: center;
  display: flex;
  gap: 16px;
  width: 100%;
}

.zs-header-search-panel input {
  border: 0;
  color: var(--zs-color-ui-2);
  flex: 1;
  outline: none;
}

.zs-header-search-panel button {
  background: transparent;
  padding: 0;
}

.zs-scrolled .zs-topbar {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 0;
  pointer-events: none;
  transform: translateY(-16px);
}

.zs-scrolled .zs-header {
  box-shadow: var(--zs-shadow-panel);
  height: var(--zs-header-height);
  padding-left: 32px;
  transform: translateY(0);
  width: 100%;
}

.zs-scrolled .zs-header-tools {
  padding-left: 18px;
  padding-right: 18px;
}

.zs-scrolled .zs-header-tools__search::before {
  margin: 0 12px;
}

.zs-icon {
  display: inline-block;
  flex: 0 0 auto;
  position: relative;
}

.zs-icon--chevron-down {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: 8px;
  transform: rotate(45deg);
  transition: transform var(--zs-transition);
  width: 8px;
}

.zs-icon--arrow-right,
.zs-icon--arrow-right-light {
  height: 12px;
  width: 16px;
}

.zs-icon--arrow-right::before,
.zs-icon--arrow-right::after,
.zs-icon--arrow-right-light::before,
.zs-icon--arrow-right-light::after {
  content: "";
  position: absolute;
}

.zs-icon--arrow-right::before,
.zs-icon--arrow-right-light::before {
  background: currentColor;
  height: 2px;
  left: 0;
  top: 5px;
  width: 14px;
}

.zs-icon--arrow-right::after,
.zs-icon--arrow-right-light::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  height: 8px;
  right: 0;
  top: 1px;
  transform: rotate(45deg);
  width: 8px;
}

.zs-icon--search,
.zs-icon--search-light,
.zs-icon--search-green {
  height: 20px;
  width: 20px;
}

.zs-icon--search::before,
.zs-icon--search::after,
.zs-icon--search-light::before,
.zs-icon--search-light::after,
.zs-icon--search-green::before,
.zs-icon--search-green::after {
  content: "";
  position: absolute;
}

.zs-icon--search::before,
.zs-icon--search-light::before,
.zs-icon--search-green::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  height: 11px;
  left: 1px;
  top: 1px;
  width: 11px;
}

.zs-icon--search::after,
.zs-icon--search-light::after,
.zs-icon--search-green::after {
  background: currentColor;
  border-radius: 2px;
  height: 2px;
  right: 1px;
  top: 14px;
  transform: rotate(45deg);
  width: 8px;
}

.zs-icon--search-light {
  color: var(--zs-color-2);
}

.zs-icon--search-green {
  color: var(--zs-color-ui);
}

.zs-icon--menu {
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  height: 2px;
  width: 18px;
}

.zs-icon--linkedin {
  align-items: center;
  border: 2px solid currentColor;
  display: inline-flex;
  font-family: "zs-gilroy-bold", "zs-misans-bold", Arial, sans-serif;
  font-size: 14px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  text-transform: lowercase;
  width: 40px;
}

.zs-icon--linkedin::before {
  content: "in";
}

.zs-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: "zs-gilroy-bold", "zs-misans-bold", Arial, sans-serif;
  font-size: 22px;
  gap: 10px;
  height: 60px;
  justify-content: center;
  padding: 0 36px;
  transition: transform var(--zs-transition), opacity var(--zs-transition), background var(--zs-transition), color var(--zs-transition);
}

.zs-btn__icon {
  display: block;
  flex: 0 0 auto;
  height: 1.2em;
  width: 1.2em;
}

.zs-btn--primary {
  background: var(--zs-color-ui);
  color: var(--zs-color-2);
}

.zs-btn--primary:hover {
  transform: translateY(-2px);
}

.zs-btn--block {
  width: 100%;
}

.zs-reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.zs-reveal--up {
  transform: translateY(36px);
}

.zs-reveal--right {
  transform: translateX(48px);
}

.zs-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

main {
  margin-top: 0;
}

.zs-footer {
  background: var(--zs-color-ui-2);
  color: var(--zs-color-2);
}

.zs-footer__main {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr;
  padding: 80px var(--zs-padding-x);
}

.zs-logo--footer .zs-logo__word {
  color: var(--zs-color-2);
}

.zs-footer__links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 68px;
}

.zs-footer__links a {
  font-size: 18px;
  margin-bottom: 28px;
  text-decoration: underline;
  width: 50%;
}

.zs-footer__col h2 {
  font-family: "zs-gilroy-bold", "zs-misans-bold", Arial, sans-serif;
  font-size: 24px;
  margin: 0 0 28px;
}

.zs-footer__nav,
.zs-footer__contact {
  display: flex;
  flex-direction: column;
}

.zs-footer__nav a,
.zs-footer__contact a {
  font-size: 14px;
  margin-bottom: 16px;
}

.zs-footer__newsletter {
  position: relative;
  background: #fff;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  padding: 4px;
}

.zs-footer__newsletter input {
  border: 0;
  border-radius: 20px;
  height: 36px;
  padding: 0 12px;
  flex: 1;
  min-width: 0;
  width: 220px;
  background: transparent;
}

.zs-footer__newsletter button {
  background: var(--zs-color-ui);
  border-radius: 20px;
  color: var(--zs-color-2);
  font-size: 14px;
  height: 36px;
  padding: 0 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

.zs-footer__social {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.zs-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.zs-footer__copyright {
  border-top: 1px solid var(--zs-color-g2);
  font-size: 14px;
  padding: 20px 0;
  text-align: center;
}

.zs-mobile-drawer,
.zs-search-modal {
  inset: 0;
  position: fixed;
  z-index: 120;
}

.zs-mobile-drawer__backdrop,
.zs-search-modal__backdrop {
  background: rgba(0, 0, 0, 0.45);
  inset: 0;
  position: absolute;
}

.zs-mobile-drawer__panel {
  background: var(--zs-color-2);
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.16);
  height: 100%;
  margin-left: auto;
  max-width: 320px;
  padding: 24px;
  position: relative;
  width: 84%;
}

.zs-mobile-drawer__close,
.zs-search-modal__close {
  background: transparent;
  color: var(--zs-color-ui-2);
  font-size: 18px;
  padding: 0;
}

.zs-mobile-drawer__section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.zs-mobile-drawer__section a {
  color: var(--zs-color-ui-2);
  font-family: "zs-gilroy-bold", "zs-misans-bold", Arial, sans-serif;
}

.zs-search-modal__panel {
  background: var(--zs-color-2);
  border-radius: 18px;
  display: grid;
  gap: 16px;
  left: 50%;
  max-width: 640px;
  padding: 24px;
  position: absolute;
  top: 16vh;
  transform: translateX(-50%);
  width: calc(100% - 40px);
}

.zs-search-modal__panel input {
  border: 1px solid var(--zs-color-ui);
  border-radius: 999px;
  height: 48px;
  outline: none;
  padding: 0 20px;
}

.zs-search-modal__panel button:last-child {
  background: var(--zs-color-ui);
  border-radius: 999px;
  color: var(--zs-color-2);
  height: 44px;
}

@media (max-width: 1800px) {
  .zs-header {
    padding-left: 40px;
  }

  .zs-nav__link,
  .zs-nav__trigger {
    font-size: 16px;
  }
}

@media (max-width: 1600px) {
  .zs-header {
    padding-left: 20px;
  }

  .zs-logo__word {
    font-size: 36px;
  }

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

  .zs-nav {
    margin-left: 40px;
  }

  .zs-nav__item {
    margin-right: 20px;
  }

  .zs-nav__link,
  .zs-nav__trigger {
    font-size: 14px;
  }

  .zs-header-tools {
    padding: 0 16px;
  }

  .zs-products__trigger {
    font-size: 14px;
  }

  .zs-header-tools__search::before {
    margin: 0 10px;
  }
}

@media (max-width: 1200px) {
  .zs-header-shell.is-fixed {
    position: fixed;
  }

  .zs-topbar {
    height: var(--zs-header-gap);
    padding: 0 8px;
  }

  .zs-topbar__item {
    font-size: 12px;
    margin-left: 12px;
  }

  .zs-topbar__item::before {
    height: 18px;
    margin-right: 8px;
  }

  .zs-header {
    height: var(--zs-header-height);
    padding: 0 20px;
    width: calc(100% - 8px);
  }

  .zs-logo__word {
    font-size: 28px;
  }

  .zs-logo img {
    max-height: 32px;
  }

  .zs-logo__sub {
    font-size: 8px;
    letter-spacing: 0.34em;
  }

  .zs-nav,
  .zs-products,
  .zs-header-tools__search,
  .zs-header-search-panel {
    display: none;
  }

  .zs-header-tools {
    background: transparent;
    padding: 0;
  }

  .zs-header-tools__mobile {
    color: var(--zs-color-ui);
    display: inline-flex;
    margin-left: 16px;
  }

  .zs-header-tools__mobile:first-of-type {
    margin-left: 0;
  }

  .zs-scrolled .zs-header {
    padding-left: 20px;
    transform: translateY(0);
    width: 100%;
  }

  .zs-scrolled .zs-header-tools {
    padding-left: 0;
    padding-right: 0;
  }

  .zs-btn {
    font-size: 14px;
    height: 34px;
    padding: 0 16px;
  }

  .zs-footer__main {
    gap: 16px;
    grid-template-columns: 1fr;
    padding: 40px var(--zs-padding-x) 20px;
    position: relative;
  }

  .zs-footer__links {
    margin-top: 24px;
  }

  .zs-footer__links a {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .zs-footer__col h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .zs-footer__newsletter input {
    font-size: 12px;
    height: 34px;
    width: 160px;
  }

  .zs-footer__newsletter button {
    font-size: 12px;
    height: 30px;
    top: 2px;
    width: 72px;
  }

  .zs-footer__copyright {
    font-size: 12px;
  }

}
