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

html {
  font-size: 16px;
}

body.zs-body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #1b1b1b;
  padding-top: var(--zs-header-offset, 0px);
  scroll-padding-top: var(--zs-header-offset, 0px);
}

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

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

button,
input {
  font: inherit;
}

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

.zs-wrap {
  width: 100%;
  padding-right: 4%;
  padding-left: 4%;
}

.zs-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.zs-topbar {
  background: linear-gradient(90deg, #2f8ce9 0%, #3289df 100%);
  color: #fff;
  overflow: hidden;
  max-height: 4rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: max-height 0.35s ease, opacity 0.28s ease, transform 0.35s ease, visibility 0.35s ease;
}

.zs-header.is-compact {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

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

.zs-topbar,
.zs-topbar a,
.zs-topbar span,
.zs-topbar li {
  font-weight: 300 !important;
}

.zs-topbar__inner {
  min-height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.zs-topbar__list {
  width: 73%;
  display: flex;
  align-items: center;
  gap: 5%;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.3;
  white-space: nowrap;
}

.zs-topbar__list li {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.zs-topbar__tools {
  width: 27%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.8rem;
}

.zs-search {
  width: 62%;
  display: flex;
  align-items: center;
  min-height: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.zs-search input {
  width: calc(100% - 1.8rem);
  height: 2rem;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  outline: 0;
  font-size: 1rem;
  font-weight: 300;
}

.zs-search input::placeholder {
  color: rgba(255, 255, 255, 0.95);
}

.zs-search button {
  width: 1.8rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.zs-search__icon {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  fill: #fff;
  flex: 0 0 auto;
}

.zs-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.8rem;
  min-height: 2.6rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  transition: background-color 0.3s ease;
}

.zs-contact-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.zs-navbar {
  background: #fff;
  border-bottom: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.zs-navbar__inner {
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zs-navbar__main {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.zs-logo {
  width: 12rem;
  flex: 0 0 auto;
  margin: 0;
  display: flex;
  align-items: center;
}

.zs-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.zs-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.zs-main-nav {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  margin-left: 1.5%;
}

.zs-nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.zs-nav-item {
  position: relative;
}

.zs-nav-item > a,
.zs-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  height: 7rem;
  padding: 0 1rem;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.zs-nav-item > a::before,
.zs-nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.92rem;
  width: 40px;
  height: 2px;
  background: #2f86de;
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.24s ease, transform 0.28s ease;
}

.zs-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.08rem;
  flex: 0 0 auto;
  transition: transform 0.28s ease;
}

.zs-nav-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.zs-nav-item--active > a,
.zs-nav-item > a:hover,
.zs-nav-link:hover,
.zs-nav-item.is-open > .zs-nav-link {
  color: #2f86de;
}

.zs-nav-item--active > a::before,
.zs-nav-item > a:hover::before,
.zs-nav-link:hover::before,
.zs-nav-item.is-open > .zs-nav-link::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.zs-nav-item.is-open > .zs-nav-link .zs-nav-arrow {
  transform: rotate(180deg);
}

.zs-submenu-outer {
  --zs-panel-height: 0px;
  position: absolute;
  top: calc(100% - 0.5rem);
  left: 0;
  min-width: 16rem;
  height: 0;
  overflow: hidden;
  opacity: 0;
  background: #fff;
  border-top: 2px solid #2f86de;
  border-radius: 0 0 0.45rem 0.45rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-1rem) scaleY(0.68);
  transform-origin: top center;
  transition: height 0.32s ease, opacity 0.24s ease, transform 0.32s ease;
  pointer-events: none;
}

.zs-nav-item.is-open > .zs-submenu-outer {
  height: var(--zs-panel-height);
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: auto;
}

.zs-submenu {
  padding: 0.82rem 0;
  margin: 0;
  list-style: none;
}

.zs-submenu li + li {
  border-top: 1px solid #ececec;
}

.zs-submenu a {
  display: block;
  padding: 0.86rem 1.08rem;
  color: #333;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.35rem;
  background: #fff;
  transition: background-color 0.28s ease, color 0.28s ease;
}

.zs-submenu a:hover {
  color: #2f86de;
  background: #f6faff;
}

.zs-language {
  width: auto;
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.change-language {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  width: max-content;
  margin-left: 0;
}

.change-language-title {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 0;
  padding: 0.45rem 0 0.45rem 0.12rem;
  color: #222;
  font-size: 0.82rem;
  font-weight: 300;
  cursor: pointer;
  outline: none;
}

.change-language-title span {
  line-height: 1.3;
  overflow: hidden;
}

.change-language-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.28rem;
  transition: transform 0.4s ease;
}

.change-language-title i svg {
  width: 0.62rem;
  height: 0.62rem;
  fill: currentColor;
}

.country-flag {
  width: 22px;
  height: 16px;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex: none;
}

.country-flag img {
  display: block;
  width: 22px;
  height: 16px;
  object-fit: cover;
}

.change-language-cont {
  position: absolute;
  top: 120%;
  right: 0;
  width: 372px;
  padding-top: 0.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  transform: translateY(0.3rem);
  z-index: 30;
}

.change-language.is-open .change-language-cont,
.change-language:hover .change-language-cont {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.change-language.is-open .change-language-title i,
.change-language:hover .change-language-title i {
  transform: rotate(180deg);
}

.prisna-wp-translate-seo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0.72rem 0.8rem;
  border-radius: 0.35rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.language-flag {
  display: flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.3rem 0.4rem;
  color: #222;
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 0.2rem;
}

.language-flag span {
  display: block;
  overflow: hidden;
  word-break: break-word;
}

.language-flag:hover,
.language-flag.is-current {
  color: #2f86de;
  background: #f6faff;
}

.zs-nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.4rem;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.zs-nav-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 1.45rem;
  height: 2px;
  background: #2f86de;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.zs-nav-toggle span:nth-child(1) {
  top: calc(50% - 0.42rem);
  transform: translateX(-50%);
}

.zs-nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%);
}

.zs-nav-toggle span:nth-child(3) {
  top: calc(50% + 0.42rem);
  transform: translateX(-50%);
}

.zs-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.zs-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.zs-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.zs-footer {
  color: #fff;
}

.zs-footer__top {
  background: linear-gradient(90deg, #2f83d9 0%, #3f88d4 100%);
}

.zs-footer__top-inner {
  display: grid;
  grid-template-columns: repeat(6, auto);
  justify-content: space-between;
  align-items: start;
  gap: 2rem 1.1rem;
  padding: 5rem 0;
}

.zs-footer__company {
  max-width: 18rem;
}

.zs-footer__logo {
  display: inline-flex;
  width: 12rem;
}

.zs-footer__logo img {
  width: 100%;
  display: block;
}

.zs-footer__company-line {
  width: 12rem;
  height: 1px;
  margin: 1rem 0 0.95rem;
  background: rgba(255, 255, 255, 0.72);
}

.zs-footer__company p {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 300;
}

.zs-footer__links h2 {
  display: inline-block;
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

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

.zs-footer__links li + li {
  margin-top: 0.55rem;
}

.zs-footer__links a {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 300;
  transition: opacity 0.25s ease;
}

.zs-footer__links a:hover {
  opacity: 0.78;
}

.zs-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.zs-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  color: #fff;
}

.zs-footer__social svg {
  width: 1rem;
  height: 1rem;
  display: block;
  fill: currentColor;
}

.zs-footer__social--youtube {
  background: #f15b4b;
}

.zs-footer__social--linkedin {
  background: #0a66c2;
}

.zs-footer__addresses {
  background: #6c6969;
}

.zs-footer__addresses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.zs-footer__address-card {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.zs-footer__address-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
}

.zs-footer__address-icon svg {
  width: 2rem;
  height: 2rem;
  display: block;
  fill: currentColor;
}

.zs-footer__address-card h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
}

.zs-footer__address-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 300;
}

.zs-footer__address-lines p + p {
  margin-top: 0.08rem;
}

.zs-footer__address-phone {
  margin-top: 0.9rem !important;
}

.zs-footer__address-phone strong {
  color: #fff;
  font-weight: 700;
}

.zs-footer__bottom {
  background: #6c6969;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.zs-footer__bottom .zs-wrap {
  padding-top: 1.9rem;
  padding-bottom: 2rem;
  text-align: center;
}

.zs-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 300;
}

.zs-footer__bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 300;
}

.zs-footer__bottom-links a:hover {
  opacity: 0.8;
}

@media (min-width: 1921px) {
  html {
    font-size: 18px;
  }
}

@media (max-width: 1280px) {
  .zs-topbar__list {
    width: 69%;
    gap: 1.4%;
    font-size: 0.7rem;
  }

  .zs-topbar__tools {
    width: 31%;
  }

  .zs-main-nav {
    width: 76%;
  }

  .zs-nav-item > a,
  .zs-nav-link {
    padding: 0 0.62rem;
    font-size: 0.84rem;
  }

  .zs-footer__top-inner {
    gap: 2.5rem;
  }

  .zs-footer__company p,
  .zs-footer__links a,
  .zs-footer__address-card p,
  .zs-footer__bottom p,
  .zs-footer__bottom-links {
    font-size: 1rem;
  }

  .zs-footer__address-card h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 1024px) {
  .zs-topbar__list {
    width: 66%;
  }

  .zs-topbar__list li:last-child {
    display: none;
  }

  .zs-topbar__tools {
    width: 34%;
  }

  .zs-main-nav {
    width: 72%;
  }

  .zs-language {
    width: auto;
    margin-left: auto;
  }

  .zs-footer__top-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    justify-content: stretch;
  }

  .zs-footer__company {
    grid-column: 1 / -1;
    max-width: none;
  }

  .zs-footer__logo,
  .zs-footer__company-line {
    width: 9rem;
  }

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

  .zs-footer__address-card {
    gap: 0.8rem;
  }
}

@media (max-width: 640px) {
  .zs-footer__top-inner {
    grid-template-columns: 1fr;
  }
}

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

  .zs-navbar__inner {
    position: relative;
    min-height: 4.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "logo lang toggle"
      "nav nav nav";
    grid-template-rows: minmax(4.4rem, auto) auto;
    align-items: center;
    column-gap: 0.8rem;
    row-gap: 0;
  }

  .zs-nav-toggle {
    display: block;
    grid-area: toggle;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }

  .zs-language {
    grid-area: lang;
    align-self: center;
    width: auto;
    margin-left: 0;
    display: flex;
    align-items: center;
  }

  .zs-navbar__main {
    display: contents;
  }

  .zs-logo {
    grid-area: logo;
    align-self: center;
    display: flex;
    align-items: center;
  }

  .zs-main-nav {
    grid-area: nav;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    margin-left: 0;
    transition: max-height 0.35s ease;
  }

  .zs-main-nav.is-open {
    max-height: 80vh;
  }

  .zs-nav-list {
    display: block;
    padding: 0.25rem 0 1rem;
  }

  .zs-nav-item > a,
  .zs-nav-link {
    width: 100%;
    justify-content: space-between;
    height: auto;
    min-height: 2.9rem;
    padding: 0.8rem 0;
  }

  .zs-nav-item > a::before,
  .zs-nav-link::before {
    display: none;
  }

  .zs-submenu-outer {
    position: static;
    min-width: 100%;
    margin-bottom: 0.2rem;
    box-shadow: none;
    border-radius: 0;
    background: #f6f9fd;
  }

  .zs-submenu {
    padding: 0.2rem 0;
  }

  .zs-submenu a {
    padding: 0.75rem 0.75rem 0.75rem 1rem;
  }

  .change-language,
  .change-language-title {
    display: inline-flex;
    align-items: center;
  }

  .change-language-title {
    min-height: 2.6rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }

  .zs-footer__top-inner,
  .zs-footer__addresses-grid {
    grid-template-columns: 1fr;
  }

  .zs-footer__top-inner {
    gap: 2rem;
    padding: 2rem 0 2.2rem;
  }

  .zs-footer__logo,
  .zs-footer__company-line {
    width: 7.5rem;
  }

  .zs-footer__company p {
    font-size: 1rem;
  }

  .zs-footer__links h2 {
    font-size: 1.3rem;
  }

  .zs-footer__address-card h3 {
    font-size: 1.35rem;
  }

  .zs-footer__address-card {
    grid-template-columns: 1.6rem minmax(0, 1fr);
  }

  .zs-footer__address-icon,
  .zs-footer__address-icon svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}

@media (max-width: 640px) {
  .zs-wrap {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .zs-logo img {
    width: 100%;
  }

  .change-language {
    margin-left: 0.65rem;
  }

  .change-language-title span {
    display: none;
  }

  .change-language-cont {
    width: 15rem;
    right: -0.5rem;
  }

  .prisna-wp-translate-seo {
    grid-template-columns: 1fr;
  }

  .zs-footer__company p,
  .zs-footer__links a,
  .zs-footer__address-card p,
  .zs-footer__bottom p,
  .zs-footer__bottom-links {
    font-size: 0.9rem;
  }

  .zs-footer__top-inner {
    padding: 1.6rem 0 1.8rem;
  }

  .zs-footer__logo,
  .zs-footer__company-line {
    width: 6rem;
  }

  .zs-footer__links h2,
  .zs-footer__address-card h3 {
    font-size: 1.15rem;
  }

  .zs-footer__addresses-grid {
    gap: 1.25rem;
    padding: 1.75rem 0;
  }

  .zs-footer__address-card {
    grid-template-columns: 1.35rem minmax(0, 1fr);
    gap: 0.7rem;
  }

  .zs-footer__address-icon,
  .zs-footer__address-icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .zs-footer__social {
    width: 1.9rem;
    height: 1.9rem;
  }
}
