@font-face {
  font-family: "Poppins";
  src: url("../font/poppins-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --zs-green: #78bc27;
  --zs-blue: #005d9a;
  --zs-text: #222;
  --zs-text-soft: #666;
  --zs-text-muted: #5f656d;
  --zs-border: #ececec;
  --zs-border-dark: #d9d9d9;
  --zs-bg-soft: #f7f7f7;
  --zs-footer-bg: #f3f3f3;
  --zs-container: 1200px;
  --zs-container-wide: 1440px;
  --zs-header-desktop: 90px;
  --zs-header-mobile: 52px;
  --zs-transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  color: var(--zs-text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--zs-header-desktop);
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

.zs-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.zs-container {
  width: min(calc(100% - 40px), var(--zs-container));
  margin: 0 auto;
}

.zs-container--wide {
  width: min(calc(100% - 40px), var(--zs-container-wide));
}

.zs-section {
  position: relative;
}

.zs-section__title {
  text-align: center;
}

.zs-section__title h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.zs-section__title h2 span,
.zs-section__title p span,
.zs-eyebrow span {
  color: var(--zs-green);
}

.zs-section__title h3,
.zs-section__title p {
  max-width: 960px;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--zs-text-soft);
  font-weight: 300;
}

.zs-section__actions {
  margin-top: 36px;
  text-align: center;
}

.zs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 46px;
  border-radius: 50px;
  background: var(--zs-green);
  color: #fff;
  font-weight: 500;
  transition: background-color var(--zs-transition), color var(--zs-transition);
}

.zs-btn:hover {
  background: #333;
}

.zs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e8e8e8;
}

.zs-header__main {
  position: relative;
}

.zs-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  min-height: var(--zs-header-desktop);
  gap: 0;
}

.zs-header__left {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.zs-logo {
  flex: 0 0 155px;
  max-width: 155px;
  margin-left: 80px;
  margin-right: 100px;
}

.zs-logo img {
  object-fit: contain;
}

.zs-nav {
  flex: 1 1 auto;
}

.zs-nav__mobile-extra,
.zs-nav__mobile-socials {
  display: none;
}

.zs-nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.zs-nav__list > li {
  position: static;
}

.zs-nav__list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--zs-header-desktop);
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: color var(--zs-transition);
  white-space: nowrap;
}

.zs-nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--zs-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--zs-transition);
}

.zs-nav__list > li > a:hover,
.zs-nav__list > li > a.is-active,
.zs-has-submenu:hover > a {
  color: var(--zs-green);
}

.zs-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 18px 170px 16px 180px;
  background: #fff;
  border-top: 1px solid var(--zs-border);
  border-bottom: 1px solid var(--zs-border);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.03);
  opacity: 0;
  visibility: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, max-content));
  justify-content: start;
  align-items: start;
  column-gap: 34px;
  row-gap: 8px;
  transform: translateY(10px);
  transition: opacity var(--zs-transition), transform var(--zs-transition), visibility var(--zs-transition);
}

.zs-has-submenu:hover > .zs-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.zs-submenu li {
  position: relative;
}

.zs-submenu a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  white-space: nowrap;
  color: #666;
}

.zs-submenu a:hover {
  color: var(--zs-green);
  background: transparent;
}

.zs-submenu .zs-submenu {
  top: 0;
  left: 100%;
  right: auto;
  width: auto;
  min-width: 220px;
  padding: 12px 18px;
  border: 1px solid var(--zs-border);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  display: block;
  transform: translate(10px, 0);
}

.zs-submenu .zs-has-submenu:hover > .zs-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.zs-submenu .zs-submenu li + li {
  margin-top: 4px;
}

.zs-header__tools {
  display: flex;
  align-self: stretch;
  flex: 0 0 auto;
  margin-left: 24px;
  border-left: 1px solid #e8e8e8;
}

.zs-search {
  position: static;
}

.zs-language {
  position: relative;
}

.zs-tool,
.zs-tool-button,
.zs-tool-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78px;
  min-width: 78px;
  min-height: 76px;
  padding: 0 10px;
  color: var(--zs-green);
  text-align: center;
}

.zs-tool {
  border-left: 1px solid #e8e8e8;
}

.zs-header__tools > :first-child {
  border-left: 0;
}

.zs-tool-button,
.zs-tool-link {
  width: 100%;
  height: 100%;
  transition: background-color var(--zs-transition), color var(--zs-transition);
}

.zs-tool-link:hover,
.zs-tool-button:hover {
  background: #f8f8f8;
}

.zs-tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.zs-tool-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zs-tool-label {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

.zs-tool--icononly .zs-tool-button {
  padding: 0 16px;
}

.zs-tool--search {
  background: var(--zs-green);
  color: #fff;
}

.zs-tool--search .zs-tool-button,
.zs-tool--search .zs-tool-icon,
.zs-tool--search .zs-tool-label {
  color: #fff;
}

.zs-tool--search .zs-tool-button {
  background: var(--zs-green);
}

.zs-tool--search .zs-tool-button:hover {
  background: #67a91e;
}

.zs-follow__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 48;
  background: #f1f1f1;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0.92);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.zs-follow__panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.zs-follow__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), 1200px);
  min-height: 150px;
  margin: 0 auto;
  padding: 0 4px;
}

.zs-follow__title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  color: #2f2f2f;
}

.zs-follow__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zs-follow__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #9aa0a8;
}

.zs-follow__links svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.zs-follow__links a:hover {
  color: var(--zs-green);
}

.zs-search__panel,
.zs-language__menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--zs-transition), transform var(--zs-transition), visibility var(--zs-transition);
}

.zs-search.is-open .zs-search__panel,
.zs-language.is-open .zs-language__menu {
  opacity: 1;
  visibility: visible;
}

.zs-search__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
  padding: 0 24px;
  background: var(--zs-green);
  border: 0;
  box-shadow: none;
  transform-origin: top center;
  transform: scaleY(0.92);
}

.zs-search.is-open .zs-search__panel {
  transform: scaleY(1);
}

.zs-search__form {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.zs-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.zs-search__submit svg,
.zs-search__close svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zs-search__panel input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  outline: none;
}

.zs-search__panel input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.zs-search__panel input[type="search"]::-webkit-search-cancel-button,
.zs-search__panel input[type="search"]::-webkit-search-decoration,
.zs-nav__mobile-search input[type="search"]::-webkit-search-cancel-button,
.zs-nav__mobile-search input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.zs-search__panel input[type="search"]::-ms-clear,
.zs-search__panel input[type="search"]::-ms-reveal,
.zs-nav__mobile-search input[type="search"]::-ms-clear,
.zs-nav__mobile-search input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.zs-search__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.zs-language__menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.5);
  transform: none;
}

.zs-language__dialog {
  width: min(100%, 980px);
  max-height: min(78vh, 620px);
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.zs-language__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 12px;
  border-bottom: 1px solid #ececec;
}

.zs-language__header h3 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
}

.zs-language__close {
  width: 22px;
  height: 22px;
  color: #666;
  font-size: 26px;
  line-height: 1;
}

.zs-language__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 28px;
  padding: 24px 20px 28px;
  max-height: calc(min(78vh, 620px) - 52px);
  overflow-y: auto;
}

.zs-language__list li {
  position: relative;
  padding-left: 10px;
}

.zs-language__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4d4d4;
}

.zs-language__list a {
  display: block;
  padding: 2px 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--zs-green);
}

.zs-language__list a:hover {
  color: #5da114;
}

.zs-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-right: 14px;
}

.zs-menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--zs-blue);
  transition: transform var(--zs-transition), opacity var(--zs-transition), background-color var(--zs-transition);
}


.zs-footer {
  margin-top: 66px;
  padding-top: 54px;
  background: var(--zs-footer-bg);
}

.zs-footer__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.74fr 0.74fr 1fr;
  gap: 32px;
}

.zs-footer__logo {
  display: inline-block;
  max-width: 168px;
}

.zs-footer__col p {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--zs-text-muted);
}

.zs-socials {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 24px;
}

.zs-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--zs-green);
  border-radius: 50%;
  background: transparent;
  color: var(--zs-green);
}

.zs-socials a svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.zs-socials a:hover {
  color: #fff;
  background: var(--zs-green);
}

.zs-footer__title {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 14px;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: var(--zs-text);
}

.zs-footer__title::after {
  content: "";
  display: none;
}

.zs-footer__links li + li {
  margin-top: 10px;
}

.zs-footer__col:nth-child(2) .zs-footer__links li,
.zs-footer__col:nth-child(3) .zs-footer__links li {
  position: relative;
  padding-left: 14px;
}

.zs-footer__col:nth-child(2) .zs-footer__links li::before,
.zs-footer__col:nth-child(3) .zs-footer__links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #b9b9b9;
  border-right: 1px solid #b9b9b9;
  transform: translateY(-50%) rotate(45deg);
}

.zs-footer__links a {
  font-size: 16px;
  color: var(--zs-text-soft);
}

.zs-footer__links a:hover {
  color: var(--zs-green);
}

.zs-contact-form {
  padding: 0;
  background: transparent;
}

.zs-contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.zs-contact-form legend {
  padding: 0;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--zs-text);
}

.zs-contact-form label {
  display: block;
}

.zs-contact-form__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.zs-contact-form__message {
  margin-top: 8px;
}

.zs-contact-form input,
.zs-contact-form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  background: #fff;
  color: var(--zs-text);
  outline: none;
  font-size: 12px;
}

.zs-contact-form input {
  height: 34px;
  padding: 0 10px;
}

.zs-contact-form textarea {
  height: 78px;
  padding: 10px;
  resize: none;
}

.zs-contact-form input:focus,
.zs-contact-form textarea:focus {
  border-color: var(--zs-green);
}

.zs-contact-form button {
  width: 100%;
  height: 32px;
  margin-top: 10px;
  border-radius: 50px;
  border: 1px solid var(--zs-green);
  background: transparent;
  color: var(--zs-green);
  font-size: 12px;
  font-weight: 500;
}

.zs-contact-form button:hover {
  background: var(--zs-green);
  color: #fff;
}

.zs-contact-form__captcha {
  margin-top: 10px;
}

.zs-contact-form__captcha-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.zs-contact-form__captcha-question {
  color: var(--zs-text);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.zs-contact-form__captcha-refresh {
  width: auto;
  height: auto;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--zs-green);
  font-size: 12px;
  font-weight: 500;
}

.zs-contact-form__captcha-refresh:hover {
  background: transparent;
  color: #333;
}

.zs-contact-form__status {
  min-height: 18px;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.zs-contact-form__status.is-error {
  color: #ff5a4f;
}

.zs-contact-form__status.is-success {
  color: var(--zs-green);
}

.zs-footer__bottom {
  margin-top: 36px;
  padding: 24px 0 30px;
  border-top: 1px solid #e1e1e1;
}

.zs-footer__bottom p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--zs-text-muted);
  text-align: center;
}

.zs-footer__bottom a:hover {
  color: var(--zs-green);
}

.zs-float {
  position: fixed;
  top: 46%;
  right: 0;
  z-index: 40;
  transform: translateY(-50%);
}

.zs-float ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.zs-float li {
  position: relative;
}

.zs-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-height: 56px;
  padding: 8px;
  background: var(--zs-green);
  color: #fff;
  overflow: visible;
  transition: background-color var(--zs-transition), color var(--zs-transition);
}

.zs-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.zs-float__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.zs-float__icon svg * {
  fill: currentColor;
  stroke: none;
}

.zs-float a strong {
  position: absolute;
  right: 56px;
  top: 50%;
  display: flex;
  align-items: center;
  min-width: 180px;
  min-height: 56px;
  padding: 0 14px;
  background: #fff;
  color: var(--zs-text);
  border: 1px solid var(--zs-border);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity var(--zs-transition), right var(--zs-transition), background-color var(--zs-transition), color var(--zs-transition);
  pointer-events: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
}

.zs-float li:hover a {
  background: #fff;
  color: var(--zs-green);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.zs-float li:hover strong {
  right: 55px;
  opacity: 1;
}

.zs-backtop {
  position: fixed;
  right: 18px;
  bottom: 56px;
  z-index: 42;
  width: 56px;
  height: 56px;
  background: #333;
  color: #fff;
  text-transform: lowercase;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--zs-transition), visibility var(--zs-transition), transform var(--zs-transition);
}

.zs-backtop svg {
  width: 18px;
  height: 18px;
}

.zs-backtop.is-visible {
  opacity: 1;
  visibility: visible;
}

.zs-backtop:hover {
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .zs-header__inner {
    min-height: 90px;
  }

  .zs-logo {
    margin-left: 18px;
    margin-right: 18px;
  }

  .zs-nav__list {
    gap: 16px;
  }

  .zs-nav__list > li > a {
    min-height: var(--zs-header-desktop);
    font-size: 11px;
  }

  .zs-submenu {
    padding: 18px 90px 16px 120px;
    column-gap: 24px;
  }

  .zs-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zs-footer__col:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 990px) {
  body {
    padding-top: var(--zs-header-mobile);
  }

  body.zs-nav-open {
    overflow: hidden;
  }

  .zs-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .zs-header__inner {
    min-height: var(--zs-header-mobile);
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
  }

  .zs-header__left {
    flex: 1 1 auto;
    width: auto;
  }

  .zs-logo {
    flex-basis: 112px;
    max-width: 112px;
    margin-left: 12px;
    margin-right: 0;
  }

  .zs-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: 0;
    margin-right: 4px;
    color: var(--zs-green);
  }

  .zs-menu-toggle span {
    width: 18px;
    margin: 2px 0;
    background: var(--zs-green);
  }

  .zs-header__tools {
    align-items: center;
    align-self: center;
    width: auto;
    margin-left: auto;
    border-left: 0;
    border-top: 0;
    overflow: visible;
  }

  .zs-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--zs-header-mobile);
    z-index: 49;
    display: block;
    height: calc(100vh - var(--zs-header-mobile));
    padding: 0 0 18px;
    background: #fff;
    border-top: 1px solid #ececec;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--zs-transition), opacity var(--zs-transition), visibility var(--zs-transition);
  }

  .zs-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .zs-nav__mobile-extra {
    display: block;
    padding: 12px 0 0;
  }

  .zs-nav__mobile-search {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #ececec;
    background: transparent;
  }

  .zs-nav__mobile-search input {
    width: 100%;
    height: 42px;
    padding: 0 48px 0 14px;
    border: 0;
    background: transparent;
    font-size: 15px;
    color: #666;
    outline: none;
  }

  .zs-nav__mobile-search input::placeholder {
    color: #c6c6c6;
  }

  .zs-nav__mobile-search button {
    position: absolute;
    top: 50%;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #cfcfcf;
    transform: translateY(-50%);
  }

  .zs-nav__mobile-search svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .zs-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 0 0;
    border-top: 0;
  }

  .zs-nav__list > li {
    width: 100%;
  }

  .zs-nav__list > li > a {
    width: 100%;
    min-height: 38px;
    padding: 0 36px 0 14px;
    justify-content: flex-start;
    font-size: 18px;
    font-weight: 500;
  }

  .zs-nav__list > li > a::after {
    display: none;
  }

  .zs-has-submenu > a::before {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #4a4a4a;
    border-bottom: 2px solid #4a4a4a;
    transform: translateY(-55%) rotate(45deg);
    transition: transform var(--zs-transition);
  }

  .zs-has-submenu.is-open > a::before {
    transform: translateY(-30%) rotate(225deg);
  }

  .zs-submenu {
    position: static;
    width: 100%;
    padding: 4px 0 8px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
  }

  .zs-has-submenu.is-open .zs-submenu {
    display: block;
  }

  .zs-submenu a {
    padding: 6px 14px 6px 28px;
    font-size: 14px;
  }

  .zs-tool,
  .zs-tool-button,
  .zs-tool-link {
    width: 40px;
    min-width: 40px;
    min-height: 52px;
    padding: 0;
  }

  .zs-tool {
    border-left: 0;
  }

  .zs-header__tools > :first-child {
    border-left: 0;
  }

  .zs-tool-label {
    display: none;
  }

  .zs-follow__panel {
    display: none;
  }

  .zs-follow,
  .zs-search {
    display: none;
  }

  .zs-tool-icon,
  .zs-tool-icon svg {
    width: 18px;
    height: 18px;
  }

  .zs-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .zs-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .zs-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .zs-nav__mobile-socials {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 14px 0;
    margin-top: 18px;
    border-top: 1px solid #ececec;
  }

  .zs-nav__mobile-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #b6b6b6;
  }

  .zs-nav__mobile-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .zs-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .zs-footer__col {
    width: 100%;
  }

  .zs-footer__col:last-child {
    grid-column: auto;
  }

  .zs-contact-form__row {
    grid-template-columns: 1fr;
  }

  .zs-float {
    top: auto;
    right: 12px;
    bottom: 122px;
    transform: none;
  }

  .zs-float a {
    width: 50px;
    min-height: 50px;
  }

  .zs-float a strong {
    display: none;
  }

  .zs-backtop {
    right: 12px;
    bottom: 56px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: var(--zs-header-mobile);
  }

  .zs-container,
  .zs-container--wide {
    width: min(calc(100% - 20px), var(--zs-container));
  }

  .zs-header__left {
    width: auto;
  }

  .zs-logo {
    flex-basis: 92px;
    max-width: 92px;
    margin-left: 12px;
    margin-right: 0;
  }

  .zs-header__tools {
    justify-content: flex-end;
  }

  .zs-language__menu {
    inset: 0;
    width: auto;
    padding: 16px;
  }

  .zs-language__dialog {
    width: 100%;
    max-width: 560px;
    max-height: min(82vh, 680px);
  }

  .zs-language__header {
    padding: 12px 14px;
  }

  .zs-language__header h3 {
    font-size: 12px;
    line-height: 1.35;
  }

  .zs-language__close {
    width: 20px;
    height: 20px;
    font-size: 22px;
  }

  .zs-language__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    padding: 16px 14px 18px;
    max-height: calc(min(82vh, 680px) - 46px);
  }

  .zs-language__list li {
    min-width: 0;
    padding-left: 10px;
  }

  .zs-language__list li::before {
    top: 9px;
    width: 5px;
    height: 5px;
  }

  .zs-language__list a {
    font-size: 13px;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .zs-tool,
  .zs-tool-button,
  .zs-tool-link {
    width: 40px;
    min-width: 40px;
  }

  .zs-search__panel {
    min-height: 74px;
    padding: 0 14px;
  }

  .zs-search__submit {
    margin-right: 10px;
  }

  .zs-search__panel input {
    font-size: 24px;
  }

  .zs-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .zs-footer__col {
    width: 100%;
  }

  .zs-footer {
    margin-top: 44px;
    padding-top: 40px;
  }

  .zs-footer__title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 24px;
    padding: 0 20px 0 0;
  }

  .zs-footer__title::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #4a4a4a;
    border-bottom: 2px solid #4a4a4a;
    transform: translateY(-60%) rotate(45deg);
    transition: transform var(--zs-transition);
  }

  .zs-footer__title.is-open::after {
    transform: translateY(-20%) rotate(225deg);
  }

  .zs-socials {
    flex-wrap: wrap;
  }

  .zs-contact-form legend {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .zs-contact-form__row {
    grid-template-columns: 1fr;
  }

  .zs-contact-form input {
    height: 40px;
  }

  .zs-contact-form textarea {
    height: 96px;
  }
}

@media (max-width: 420px) {
  .zs-language__menu {
    padding: 12px;
  }

  .zs-language__dialog {
    max-height: min(84vh, 700px);
  }

  .zs-language__list {
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: calc(min(84vh, 700px) - 46px);
  }

  .zs-language__list a {
    font-size: 15px;
    line-height: 1.4;
  }
}

