@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NunitoSans-400.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/NunitoSans-600.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/NunitoSans-700.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/Montserrat-700.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../font/Montserrat-800.ttf") format("truetype");
}

:root {
  --zs-color-accent: #ff6a19;
  --zs-color-accent-dark: #ff5400;
  --zs-color-text: #6d6d6d;
  --zs-color-heading: #1b1d21;
  --zs-color-dark: #081428;
  --zs-color-dark-2: #111b2f;
  --zs-color-line: #e5e8ef;
  --zs-color-muted: #98a0b3;
  --zs-color-bg: #f4f7fb;
  --zs-color-card: #ffffff;
  --zs-shadow-lg: 0 24px 50px rgba(10, 18, 35, 0.12);
  --zs-shadow-md: 0 16px 40px rgba(13, 24, 43, 0.1);
  --zs-shadow-sm: 0 8px 26px rgba(13, 24, 43, 0.08);
  --zs-radius-xl: 30px;
  --zs-radius-lg: 22px;
  --zs-radius-md: 16px;
  --zs-wrap: min(1200px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--zs-color-text);
  background: #ffffff;
  font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.875;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--zs-color-accent);
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--zs-color-accent-dark);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
ul,
figure,
h1,
h2,
h3 {
  margin: 0;
}

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

.zs-wrap {
  width: var(--zs-wrap);
  margin: 0 auto;
}

.zs-grid {
  display: grid;
  gap: 32px;
}

.zs-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zs-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zs-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zs-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--zs-color-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
}

.zs-main-title,
.zs-mid-title,
.zs-logo-title {
  color: var(--zs-color-heading);
  font-family: "Montserrat", "Nunito Sans", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.zs-main-title {
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.18;
}

.zs-mid-title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.zs-main-title-left {
  max-width: 680px;
}

.zs-section-title {
  text-align: center;
  margin-bottom: 46px;
}

.zs-section-title-left {
  text-align: left;
}

.zs-section-title-light .zs-main-title {
  color: #ffffff;
}

.zs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

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

.zs-btn-primary {
  color: #ffffff;
  background: var(--zs-color-accent);
  box-shadow: 0 16px 32px rgba(255, 106, 25, 0.28);
}

.zs-btn-primary:hover {
  color: #ffffff;
  background: var(--zs-color-accent-dark);
}

.zs-btn-secondary {
  color: #ffffff;
  background: var(--zs-color-dark);
  box-shadow: 0 12px 30px rgba(8, 20, 40, 0.24);
}

.zs-btn-secondary:hover {
  color: #ffffff;
  background: var(--zs-color-accent);
}

.zs-btn-light {
  color: var(--zs-color-dark);
  background: #ffffff;
}

.zs-btn-light:hover {
  color: #ffffff;
  background: var(--zs-color-accent);
}

.zs-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 14px 32px rgba(17, 26, 45, 0.08);
}

.zs-site {
  padding-top: 140px;
}

.zs-topbar {
  max-height: 40px;
  overflow: hidden;
  background: #141d38;
  border-bottom: 0;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transform-origin: top center;
  transition: max-height 0.32s ease, opacity 0.24s ease, transform 0.32s ease, visibility 0.24s ease;
}

.zs-header.is-scrolled .zs-topbar {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  pointer-events: none;
}

.zs-topbar-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 40px;
  gap: 24px;
}

.zs-topbar-socials,
.zs-topbar-links {
  display: flex;
  align-items: center;
}

.zs-topbar-socials {
  gap: 0;
}

.zs-topbar-socials li {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.zs-topbar-socials li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.zs-topbar-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.zs-topbar-socials a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.zs-topbar-socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.zs-topbar-links {
  gap: 0;
  justify-content: flex-end;
}

.zs-topbar-links li+li {
  margin-left: 28px;
}

.zs-topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.zs-topbar-links a:hover {
  color: #ffffff;
}

.zs-icon-circle {
  width: 22px;
  height: 22px;
  color: var(--zs-color-accent);
}

.zs-icon-topbar {
  width: 15px;
  height: 15px;
  color: #ffffff;
  flex: 0 0 15px;
}

.zs-icon-topbar svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.zs-icon-circle svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.zs-nav-shell {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid #eceff4;
}

.zs-nav-row {
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  min-height: 100px;
  gap: 28px;
}

.zs-logo-title {
  font-size: 0;
}

.zs-logo-title a {
  display: inline-flex;
  align-items: center;
}

.zs-logo-title img {
  width: 100px;
}

.zs-nav {
  min-width: 0;
}

.zs-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.zs-menu>li {
  position: relative;
}

.zs-menu>li>a,
.zs-menu>li>button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 100px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #263347;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.zs-menu>li>button::after,
.zs-submenu>li>button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #b9bec8;
  margin-top: 1px;
  transition: border-top-color 0.2s ease;
}

.zs-menu>li:hover>a,
.zs-menu>li:hover>button {
  color: #0c5297;
}

.zs-submenu>li:hover>a,
.zs-submenu>li:hover>button {
  color: #0c5297;
}

.zs-submenu>li:hover>a::before,
.zs-submenu>li:hover>button::before {
  width: 14px;
  margin-right: 4px;
  opacity: 1;
  transform: translateX(0);
}

.zs-menu>li.zs-current>a,
.zs-menu>li.zs-current>button,
.zs-menu>li.zs-has-submenu:hover>a,
.zs-menu>li.zs-has-submenu:hover>button {
  position: relative;
  color: #0c5297;
}

.zs-menu>li.zs-current>a::after,
.zs-menu>li.zs-current>button::before,
.zs-menu>li:not(.zs-current)>a::before,
.zs-menu>li:not(.zs-current)>button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 42px;
  height: 3px;
  background: #0c5297;
  transform: translateX(-50%);
}

.zs-menu>li:not(.zs-current)>a::before,
.zs-menu>li:not(.zs-current)>button::before {
  width: 100%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.zs-menu>li.zs-current>a::after,
.zs-menu>li.zs-current>button::before {
  width: 42px;
}

.zs-menu>li:not(.zs-current):hover>a::before,
.zs-menu>li:not(.zs-current):hover>button::before {
  transform: translateX(-50%) scaleX(1);
  transform-origin: left center;
}

.zs-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding: 22px 0 20px;
  background: #ffffff;
  border-top: 0;
  box-shadow: 0 18px 32px rgba(17, 26, 45, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  z-index: 10;
}

.zs-submenu>li {
  position: relative;
}

.zs-submenu>li>a,
.zs-submenu>li>button {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 10px 40px;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  text-align: left;
}

.zs-submenu>li>button {
  justify-content: space-between;
}

.zs-submenu>li.zs-has-submenu>a {
  position: relative;
  padding-right: 54px;
}

.zs-submenu>li>a::before,
.zs-submenu>li>button::before {
  content: "//";
  display: inline-block;
  width: 0;
  margin-right: 0;
  color: #2f9df7;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(-6px);
  transition:
    width 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    margin-right 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.zs-submenu>li>button::after {
  margin-top: 0;
  margin-left: auto;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #b9bec8;
  border-right: 0;
}

.zs-submenu>li.zs-has-submenu>a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #b9bec8;
  transform: translateY(-50%);
  transition: border-left-color 0.2s ease;
}

.zs-submenu>li:hover>a::after,
.zs-submenu>li:hover>button::after {
  border-left-color: #0c5297;
}

.zs-submenu-right>.zs-submenu {
  top: -25px;
  left: calc(100% + 1px);
}

.zs-has-submenu:hover>.zs-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.zs-nav-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zs-tool-btn,
.zs-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1d2433;
}

.zs-tool-btn:hover,
.zs-mobile-toggle:hover {
  color: var(--zs-color-accent);
  background: transparent;
}

.zs-tool-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zs-tool-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.zs-tool-btn-icon-close {
  display: none;
}

[data-search-open][aria-expanded="true"] .zs-tool-btn-icon-search {
  display: none;
}

[data-search-open][aria-expanded="true"] .zs-tool-btn-icon-close {
  display: inline-flex;
}

[data-search-open][aria-expanded="true"],
[data-search-open][aria-expanded="true"]:hover {
  color: #1d2433;
}

.zs-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.zs-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.zs-search-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 30;
  pointer-events: none;
  background: transparent;
}

.zs-search-panel-inner {
  display: flex;
  justify-content: flex-end;
  padding: 0;
}

.zs-search-form {
  display: flex;
  gap: 0;
  width: 300px;
  margin-top: 0;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 26, 45, 0.12);
  pointer-events: auto;
}

.zs-search-form input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 14px;
  border: 0;
  background: #f3f4f6;
  color: #7b8798;
  outline: none;
}

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

.zs-search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  color: #ffffff;
  background: #0c5297;
  font-weight: 800;
}

.zs-search-form button svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

.zs-search-form button:hover {
  background: #3c9fe0;
}

.zs-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.zs-mobile-drawer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s ease, visibility 0s linear 0.38s;
}

.zs-mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.38s ease, visibility 0s linear 0s;
}

.zs-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 32, 0.66);
}

.zs-mobile-overlay {
  opacity: 0;
  transition: opacity 0.34s ease;
}

.zs-mobile-drawer.is-open .zs-mobile-overlay {
  opacity: 1;
}

.zs-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #ffffff;
  box-shadow: var(--zs-shadow-lg);
}

.zs-mobile-panel {
  width: min(300px, calc(100% - 28px));
  padding: 24px 30px 36px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.zs-mobile-drawer.is-open .zs-mobile-panel {
  transform: translateX(0);
}

.zs-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #1b2436;
  line-height: 1;
}

.zs-mobile-logo {
  display: inline-flex;
  margin-bottom: 35px;
}

.zs-mobile-logo {
  display: none;
}

.zs-mobile-menu>li {
  border-bottom: 1px solid var(--zs-color-line);
}

.zs-mobile-menu a,
.zs-mobile-menu button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  color: #1c2436;
  border: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.zs-mobile-menu button::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #a9b3c3;
  transition: transform 0.25s ease;
}

.zs-mobile-menu li.is-open>button::after {
  transform: rotate(90deg);
}

.zs-mobile-menu ul {
  display: none;
  padding: 0 0 12px 16px;
}

.zs-mobile-menu li.is-open>ul {
  display: block;
}

.zs-mobile-menu ul a {
  padding: 10px 0;
  color: #5c667a;
  font-size: 15px;
  font-weight: 700;
}

.zs-mobile-menu ul ul {
  padding: 6px 0 0 14px;
}

.zs-mobile-menu ul ul a {
  padding: 8px 0;
  color: #717b8f;
  font-size: 14px;
  font-weight: 600;
}

.zs-mobile-panel .zs-drawer-close {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  color: #1d2433;
}

.zs-mobile-panel .zs-drawer-close svg {
  width: 26px;
  height: 26px;
}

.zs-panel-heading {
  margin-bottom: 18px;
  color: #0c1628;
  font-size: 20px;
  font-family: "Montserrat", "Nunito Sans", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.zs-socials,
.zs-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zs-socials a,
.zs-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--zs-color-accent);
}

.zs-socials a:nth-child(1) {
  background: #55c1f8;
}

.zs-socials a:nth-child(2) {
  background: #4e67d8;
}

.zs-socials a:nth-child(3) {
  background: #ff2f39;
}

.zs-socials a:nth-child(4) {
  background: #fb8b43;
}

.zs-socials a svg,
.zs-footer-socials a svg {
  width: 18px;
  height: 18px;
}

.zs-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
}

.zs-footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0c5297 0%, #0c5297 100%);
}

.zs-footer-inner {
  position: relative;
  z-index: 1;
  padding: 85px 0 34px;
}

.zs-grid-footer {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 34px;
}

.zs-footer-brand p {
  margin-top: 16px;
  max-width: 315px;
  color: #ffffff;
}

.zs-footer-brand img {
  display: block;
  width: 100px;
  height: auto;
}

.zs-footer-list h2 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 400;
}

.zs-footer-list li+li {
  margin-top: 8px;
}

.zs-footer-list a {
  color: #ffffff;
}

.zs-footer-list a:hover,
.zs-footer-copy a:hover {
  color: #0c5297;
}

.zs-footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.zs-footer-socials-label {
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
}

.zs-footer-socials a {
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.zs-footer-socials a:hover {
  color: #d7c9ff;
  opacity: 0.88;
}

.zs-footer-socials a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.zs-footer-copy {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  color: #ffffff;
}

.zs-footer-copy a {
  color: #0c5297;
}

@media (max-width: 1279px) {
  .zs-menu {
    gap: 18px;
  }

  .zs-menu>li>a,
  .zs-menu>li>button {
    font-size: 13px;
  }

  .zs-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .zs-nav {
    display: none;
  }

  .zs-mobile-toggle {
    display: inline-flex;
  }

  .zs-nav-row {
    grid-template-columns: 1fr auto;
  }

  .zs-logo-box {
    max-width: 160px;
  }

  .zs-grid-2,
  .zs-grid-3,
  .zs-grid-4,
  .zs-grid-footer {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 767px) {
  .zs-footer-brand img {
    width: 124px;
  }

  .zs-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 70;
  }

  .zs-site {
    padding-top: 60px;
  }

  .zs-wrap {
    width: min(100% - 24px, 100%);
  }

  .zs-topbar {
    display: none;
  }

  .zs-topbar-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    min-height: auto;
    padding: 6px 0;
  }

  .zs-topbar-socials {
    margin-bottom: 6px;
  }

  .zs-topbar-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
  }

  .zs-topbar-links li+li {
    margin-left: 0;
  }

  .zs-nav-row {
    grid-template-columns: 1fr auto;
    min-height: 60px;
    gap: 18px;
  }

  .zs-logo-title img {
    width: 80px;
  }

  .zs-nav-tools {
    gap: 14px;
  }

  .zs-tool-btn,
  .zs-mobile-toggle {
    width: 30px;
    height: 60px;
    min-width: 30px;
    color: #1d2433;
  }

  .zs-tool-btn svg {
    width: 24px;
    height: 24px;
  }

  .zs-mobile-toggle {
    gap: 5px;
  }

  .zs-mobile-toggle span {
    width: 28px;
    height: 3px;
    border-radius: 999px;
  }

  .zs-nav-shell {
    border-bottom: 0;
  }

  .zs-search-form {
    flex-direction: row;
    width: min(calc(100% - 48px), 328px);
    margin-top: 0;
    padding: 28px 26px;
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(17, 26, 45, 0.16);
  }

  .zs-search-form input {
    height: 46px;
    padding: 0 18px;
    background: #f2f2f2;
  }

  .zs-search-form button {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .zs-search-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 35;
    padding-top: 0;
  }

  .zs-search-panel-inner {
    justify-content: center;
  }

  .zs-main-title {
    font-size: 34px;
  }

  .zs-mid-title {
    font-size: 30px;
  }

  .zs-footer-inner {
    padding: 70px 0 28px;
  }
}