:root {
  --green: #58a533;
  --green-soft: #eaf6e7;
  --teal: #0b7d73;
  --teal-dark: #064d4a;
  --ink: #102033;
  --muted: #5f6d78;
  --line: #dbe6e6;
  --soft: #f3f8f7;
  --white: #ffffff;
  --footer: #101b27;
  --shadow: 0 18px 48px rgba(12, 49, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-modern {
  min-width: 320px;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  -webkit-text-size-adjust: 100%;
}

.site-modern img,
.site-modern svg {
  max-width: 100%;
}

.site-modern img {
  height: auto;
}

.site-modern a {
  color: var(--teal);
  text-decoration: none;
}

.site-modern a:hover,
.site-modern a:focus {
  color: var(--teal-dark);
  text-decoration: underline;
}

.site-modern .container {
  width: min(100% - 48px, 1160px) !important;
  max-width: 1160px;
  padding: 0 !important;
  margin: 0 auto !important;
}

.site-modern .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin: 0 !important;
}

.site-modern [class*="grid_"] {
  float: none !important;
  box-sizing: border-box;
  min-width: 0;
  margin: 0 !important;
}

.site-modern .grid_12 {
  flex: 0 0 100%;
  width: 100% !important;
}

.site-modern .grid_8 {
  flex: 0 0 calc(66.666% - 12px);
  width: calc(66.666% - 12px) !important;
}

.site-modern .grid_6 {
  flex: 0 0 calc(50% - 12px);
  width: calc(50% - 12px) !important;
}

.site-modern .grid_4 {
  flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px) !important;
}

.site-modern .wrapper,
.site-modern .extra_wrap {
  overflow: visible;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white) !important;
  padding: 8px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.06);
  backdrop-filter: blur(14px);
}

.site-header-main {
  background: var(--white);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 112px;
  padding: 18px 0 !important;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-logo img {
  display: block;
  width: 307px;
  max-width: min(307px, 52vw);
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-modern .btn,
.phone-link,
.order-link,
.site-menu-toggle,
.site-modern input[type="submit"].btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-modern .btn:hover,
.phone-link:hover,
.order-link:hover,
.site-menu-toggle:hover,
.site-modern input[type="submit"].btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.site-modern .btn,
.site-modern .btn-primary,
.order-link,
.site-modern input[type="submit"].btn {
  width: auto;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: var(--white) !important;
  padding: 11px 18px;
  margin: 0;
}

.site-modern .btn:hover,
.site-modern .btn-primary:hover,
.order-link:hover,
.site-modern input[type="submit"].btn:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: var(--white) !important;
}
.site-modern .btn-light {
  border-color: rgba(255, 255, 255, 0.75);
  background: var(--white);
  color: var(--teal-dark) !important;
}

.site-modern .btn-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--teal-dark) !important;
}

.phone-link {
  gap: 9px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--teal-dark) !important;
  padding: 10px 15px;
}

.phone-link svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: var(--teal);
  flex: 0 0 auto;
}

.site-menu-toggle {
  display: none;
  width: 46px;
  min-width: 46px;
  padding: 0;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.site-menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .site-menu-toggle span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .site-menu-toggle span:nth-child(3) {
  opacity: 0;
}

body.nav-open .site-menu-toggle span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.site-modern .mnav,
.site-modern .select-menu {
  display: none !important;
}

.site-nav .sf-menu,
.site-nav .sf-menu * {
  list-style: none;
}

.site-nav .sf-menu {
  display: flex !important;
  align-items: stretch;
  gap: 0;
  min-height: 0;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-nav .sf-menu > li {
  position: relative;
  float: none !important;
  margin: 0;
  background: transparent !important;
}

.site-nav .sf-menu > li > span {
  display: none !important;
}

.site-nav .sf-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-left: 1px solid var(--line);
  color: var(--ink) !important;
  padding: 13px 17px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
}

.site-nav .sf-menu > li:last-child > a {
  border-right: 1px solid var(--line);
}

.site-nav .sf-menu > li.current > a,
.site-nav .sf-menu > li > a:hover,
.site-nav .sf-menu > li.sfHover > a,
.site-nav .sf-menu > li:hover > a {
  background: var(--white);
  color: var(--teal) !important;
  text-decoration: none;
}

.site-nav .sf-menu > li.has-submenu > a::after {
  content: '';
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.site-nav .sf-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 45;
  display: none;
  min-width: 230px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-nav .sf-menu li:hover > ul,
.site-nav .sf-menu li.sfHover > ul {
  display: block !important;
  visibility: visible !important;
}

.site-nav .sf-menu ul li {
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
}

.site-nav .sf-menu ul a {
  min-height: 0;
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  white-space: normal;
}

.site-nav .sf-menu ul a:hover,
.site-nav .sf-menu ul li.sfHover > a {
  background: var(--soft);
  color: var(--teal-dark) !important;
  text-decoration: none;
}

.site-modern h1,
.site-modern h2,
.site-modern h3,
.site-modern h4,
.site-modern h5,
.site-modern h6,
.site-modern p {
  margin-top: 0;
  letter-spacing: 0;
}

.site-modern h2,
.site-modern h3,
.site-modern h4,
.site-modern h5,
.site-modern h6 {
  color: var(--ink);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.site-modern h2 {
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 1.18;
}

.site-modern h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.22;
}

.site-modern h4 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.3;
}

.site-modern h5,
.site-modern h6 {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.45;
}

.site-modern p {
  margin-bottom: 16px;
}

#content {
  padding: 54px 0 70px;
  background: linear-gradient(180deg, var(--soft), var(--white) 220px);
}

.site-modern #content > .container > .row + .row {
  margin-top: 26px !important;
}

.site-modern #content .border_box,
.site-modern #content .row > .grid_4,
.site-modern #content .row > .grid_8 {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
}

.site-modern #content .grid_12 > .border_box:has(> .row) {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.site-modern #content .border_box .border_box {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.site-modern #content .border_box.m_40 {
  margin-bottom: 20px !important;
}

.site-modern .icon_tetle {
  display: flex;
  align-items: center;
  min-height: 0;
  gap: 14px;
  margin-bottom: 14px;
  padding: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
}

.site-modern .icon_tetle span {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 50%;
  background: #e8f4ee;
  color: var(--teal);
  font-size: 24px;
  line-height: 1;
}

.site-modern .nadpis,
.site-modern .textnadpis {
  color: var(--ink);
  font-weight: 700;
}

.site-modern .list {
  margin: 0 0 18px;
  padding: 0;
}

.site-modern .list li {
  margin-top: 9px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.site-modern .list li::before {
  color: var(--teal);
}

.site-modern .list a {
  color: var(--teal-dark);
}

.site-modern address {
  margin: 0;
  font-style: normal;
}

.site-modern address dl {
  margin: 0;
}

.site-modern address dd {
  display: grid;
  grid-template-columns: minmax(90px, .8fr) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.site-modern address dd > span:first-child {
  color: var(--muted);
  font-weight: 700;
}

.site-modern table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}

.site-modern table td,
.site-modern table th {
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.site-modern input,
.site-modern textarea,
.site-modern select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.site-modern textarea {
  min-height: 150px;
}

.site-modern iframe {
  display: block;
  max-width: 100%;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-modern #content img {
  border-radius: 8px;
}

.site-modern.page-code-1 .site-header {
  position: relative;
}

.site-modern.page-code-1 .site-header > .wrapper > .container {
  width: 100% !important;
  max-width: none;
  padding: 0 !important;
}

.site-modern.page-code-1 .site-header > .wrapper .row {
  display: block;
  gap: 0;
}

.site-modern.page-code-1 .sslide,
.site-modern.page-code-1 .sslide .grid_12 {
  width: 100% !important;
  margin: 0 !important;
}

.site-modern.page-code-1 .camera_wrap {
  float: none !important;
  min-height: 380px !important;
  margin: 0 !important;
  border-radius: 0;
  background: var(--teal-dark);
  box-shadow: none;
  overflow: hidden;
}

.site-modern.page-code-1 .camera_wrap::before,
.site-modern.page-code-1 .camera_wrap::after {
  display: none !important;
}

.site-modern.page-code-1 .camera_fakehover,
.site-modern.page-code-1 .camera_target,
.site-modern.page-code-1 .camera_target_content,
.site-modern.page-code-1 .cameraContent {
  min-height: 380px !important;
}
.site-modern.page-code-1 .camera_target_content,
.site-modern.page-code-1 .cameraContent,
.site-modern.page-code-1 .camera_caption1,
.site-modern.page-code-1 .camera_caption2,
.site-modern.page-code-1 .camera_caption3,
.site-modern.page-code-1 .caption_content {
  opacity: 1 !important;
  visibility: visible !important;
}

.site-modern.page-code-1 .camera_target_content {
  z-index: 5 !important;
}

.site-modern.page-code-1 .camera_target::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6, 38, 46, 0.88), rgba(6, 38, 46, 0.62) 44%, rgba(6, 38, 46, 0.08) 100%);
  pointer-events: none;
}

.site-modern.page-code-1 .camera_caption2,
.site-modern.page-code-1 .camera_caption1,
.site-modern.page-code-1 .camera_caption3 {
  top: 0 !important;
  left: 0 !important;
  z-index: 3;
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
}

.site-modern.page-code-1 .caption_content {
  width: min(100% - 48px, 1160px);
  max-width: 1160px;
  height: 100%;
  margin: 0 auto;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.site-modern.page-code-1 .camera_caption2 .caption_content h3,
.site-modern.page-code-1 .camera_caption1 .caption_content h3,
.site-modern.page-code-1 .camera_caption3 .caption_content h3 {
  max-width: 690px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: 36px;
  line-height: 1.12;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.site-modern.page-code-1 .camera_caption2 .caption_content h4,
.site-modern.page-code-1 .camera_caption1 .caption_content h4,
.site-modern.page-code-1 .camera_caption3 .caption_content h4 {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}
.site-modern.page-code-1 .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-modern.page-code-1 .hero-actions .btn {
  min-height: 46px;
}

.site-modern.page-code-1 .camera_pag {
  width: min(100% - 48px, 1160px);
  left: 50%;
  right: auto;
  bottom: 28px;
  transform: translateX(-50%);
  text-align: left;
}

.site-modern.page-code-1 #content {
  padding-top: 28px;
}

.site-modern.page-code-1 #content .grid_12 > .border_box:has(> .row) {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.site-modern.page-code-1 #content .border_box > .row {
  align-items: flex-start;
}

.site-modern.page-code-1 #content .border_box > .row > .grid_12:first-child {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
}

.site-modern.page-code-1 #content .border_box > .row > .grid_4 {
  padding: 20px;
}

.site-modern.page-code-1 #content .border_box > .row > .grid_4 .icon_tetle {
  gap: 16px;
  margin-bottom: 12px;
  font-size: 24px;
}

.site-modern.page-code-1 #content .border_box > .row > .grid_4 .icon_tetle span {
  flex-basis: 44px;
  width: 44px;
  height: 44px;
  font-size: 22px;
}

.site-modern.page-code-1 #content .border_box > .row > .grid_4 p {
  font-size: 15px;
  line-height: 1.5;
}

.site-modern.page-code-1 #content .border_box > .row > .grid_4 .btn {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 15px;
}

.site-footer {
  background: var(--footer);
  color: #d7dee6;
  padding: 58px 0 28px;
  border-top: 8px solid var(--teal);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .9fr) minmax(220px, .8fr);
  gap: 42px;
  align-items: start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.25;
}

.footer-brand span,
.footer-contact span {
  display: block;
  color: #c5ced8;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: #e9f8f5;
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.footer-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 8px 14px;
  color: var(--white) !important;
  font-size: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #b9c3cf;
  font-size: 14px;
}

.footer-bottom a {
  color: #b8f0a1;
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-modern .grid_8,
  .site-modern .grid_6,
  .site-modern .grid_4 {
    flex-basis: 100%;
    width: 100% !important;
  }

  .site-modern #content .row > .grid_4,
  .site-modern #content .row > .grid_8 {
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .site-logo img {
    width: 260px;
  }

  .site-actions .order-link {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .site-modern .container {
    width: min(100% - 32px, 1160px) !important;
  }

  .site-header {
    position: sticky;
  }

  .site-header-inner {
    min-height: 76px;
    padding: 14px 0 !important;
    gap: 12px;
  }

  .site-logo img {
    width: 210px;
    max-width: calc(100vw - 150px);
  }

  .site-actions {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .phone-link {
    width: 46px;
    min-width: 46px;
    padding: 0;
  }

  .phone-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: block;
    padding: 8px 0 14px;
  }

  .site-nav .sf-menu {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
  }

  .site-nav .sf-menu > li,
  .site-nav .sf-menu ul,
  .site-nav .sf-menu ul li {
    width: 100%;
  }

  .site-nav .sf-menu a {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    padding: 12px 14px;
    font-size: 16px;
    white-space: normal;
  }

  .site-nav .sf-menu > li:last-child > a {
    border-right: 1px solid var(--line);
  }

  .site-nav .sf-menu ul {
    position: static !important;
    display: none !important;
    min-width: 0;
    padding: 6px 0 0 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav .sf-menu li.is-submenu-open > ul {
    display: grid !important;
    gap: 6px;
  }

  .site-nav .sf-menu li:hover > ul:not(.force-open) {
    display: none !important;
  }

  .site-nav .sf-menu li.is-submenu-open:hover > ul {
    display: grid !important;
  }

  #content {
    padding: 34px 0 48px;
  }

  .site-modern h2,
  .site-modern h3 {
    font-size: 25px;
  }

  .site-modern h4,
  .site-modern .icon_tetle {
    font-size: 20px;
  }

  .site-modern #content .border_box,
  .site-modern #content .row > .grid_4,
  .site-modern #content .row > .grid_8,
  .site-modern.page-code-1 #content .border_box > .row > .grid_12:first-child {
    padding: 20px;
  }

  .site-modern.page-code-1 .camera_wrap,
  .site-modern.page-code-1 .camera_fakehover,
  .site-modern.page-code-1 .camera_target,
  .site-modern.page-code-1 .camera_target_content,
  .site-modern.page-code-1 .cameraContent {
    min-height: 450px !important;
  }

  .site-modern.page-code-1 .camera_target::after {
    background: linear-gradient(180deg, rgba(6, 38, 46, 0.9), rgba(6, 38, 46, 0.72) 62%, rgba(6, 38, 46, 0.34));
  }

  .site-modern.page-code-1 .caption_content {
    width: min(100% - 32px, 1160px);
    padding: 54px 0;
  }

  .site-modern.page-code-1 .camera_caption2 .caption_content h3,
  .site-modern.page-code-1 .camera_caption1 .caption_content h3,
  .site-modern.page-code-1 .camera_caption3 .caption_content h3 {
    font-size: 34px;
  }

  .site-modern.page-code-1 .camera_caption2 .caption_content h4,
  .site-modern.page-code-1 .camera_caption1 .caption_content h4,
  .site-modern.page-code-1 .camera_caption3 .caption_content h4 {
    font-size: 16px;
  }

  .site-modern address dd {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 480px) {
  .site-logo img {
    width: 178px;
    max-width: calc(100vw - 132px);
  }

  .site-modern .btn,
  .site-modern input[type="submit"].btn {
    width: 100%;
  }

  .site-modern.page-code-1 #content .border_box > .row > .grid_4 .btn {
    width: 100%;
  }
}
/* Production corrections: one width for header, menu, slider and content. */
body.site-modern {
  --site-shell: min(100% - 48px, 1568px);
}

body.site-modern .container,
body.site-modern .site-header .container,
body.site-modern .site-nav .container,
body.site-modern .site-footer .container,
body.site-modern.page-code-1 .site-header > .wrapper > .container,
body.site-modern.page-code-1 .caption_content {
  width: var(--site-shell) !important;
  max-width: 1568px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.site-modern .site-header-inner {
  min-height: 112px;
}

body.site-modern .site-logo img {
  width: 305px;
  max-width: min(305px, 46vw);
}

body.site-modern .site-actions {
  margin-left: auto;
}

body.site-modern .phone-link,
body.site-modern .order-link {
  min-height: 50px;
  font-size: 17px;
}

body.site-modern .phone-link {
  min-width: 218px;
  padding-inline: 22px;
}

body.site-modern .phone-link svg {
  display: none !important;
}

body.site-modern .phone-link::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.site-modern .order-link {
  min-width: 154px;
}

body.site-modern.page-code-1 .sslide,
body.site-modern.page-code-1 .sslide .grid_12 {
  width: 100% !important;
}

body.site-modern.page-code-1 .camera_wrap {
  width: 100% !important;
  height: clamp(220px, 21vw, 430px) !important;
  min-height: 0 !important;
  border-radius: 0;
}

body.site-modern.page-code-1 .camera_fakehover,
body.site-modern.page-code-1 .camera_target,
body.site-modern.page-code-1 .camera_target_content,
body.site-modern.page-code-1 .cameraContent {
  height: clamp(220px, 21vw, 430px) !important;
  min-height: 0 !important;
}

body.site-modern.page-code-1 .caption_content {
  height: 100%;
  padding: 42px 0 !important;
}

body.site-modern.page-code-1 .camera_caption2 .caption_content h3,
body.site-modern.page-code-1 .camera_caption1 .caption_content h3,
body.site-modern.page-code-1 .camera_caption3 .caption_content h3 {
  max-width: 700px;
  font-size: 34px !important;
  line-height: 1.16 !important;
}

body.site-modern.page-code-1 .camera_caption2 .caption_content h4,
body.site-modern.page-code-1 .camera_caption1 .caption_content h4,
body.site-modern.page-code-1 .camera_caption3 .caption_content h4 {
  max-width: 620px;
  font-size: 17px !important;
}

body.site-modern.page-code-1 .camera_pag {
  width: var(--site-shell) !important;
  max-width: 1568px !important;
  left: 50% !important;
  right: auto !important;
  bottom: 18px !important;
  transform: translateX(-50%) !important;
  text-align: left !important;
}

body.site-modern #content h2 {
  color: var(--ink) !important;
  font-size: 32px !important;
  line-height: 1.2 !important;
  margin: 0 0 20px !important;
}

body.site-modern #content h3 {
  color: var(--ink) !important;
  font-size: 28px !important;
  line-height: 1.24 !important;
  margin: 0 0 16px !important;
}

body.site-modern #content h4 {
  color: var(--ink) !important;
  font-size: 20px !important;
  line-height: 1.32 !important;
  margin: 0 0 14px !important;
}

body.site-modern #content h5,
body.site-modern #content h6 {
  color: var(--teal) !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
  margin: 22px 0 8px !important;
}

body.site-modern #content p,
body.site-modern #content li,
body.site-modern #content td,
body.site-modern #content th {
  font-size: 16px !important;
  line-height: 1.62 !important;
}

body.site-modern #content .grid_8,
body.site-modern #content .grid_4,
body.site-modern #content .border_box {
  overflow-wrap: anywhere;
}

body.site-modern #content .row > .grid_8,
body.site-modern #content .row > .grid_4 {
  align-self: flex-start;
}

body.site-modern #content .row > .grid_8 p:last-child,
body.site-modern #content .row > .grid_4 p:last-child,
body.site-modern #content .border_box p:last-child {
  margin-bottom: 0;
}

body.site-modern .icon_tetle {
  align-items: flex-start !important;
  gap: 14px !important;
  padding-left: 0 !important;
}

body.site-modern .icon_tetle span[class^="fa-"],
body.site-modern .icon_tetle span[class*=" fa-"] {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 48px !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #eaf6ef !important;
  color: var(--teal) !important;
  font-family: Roboto, Arial, Helvetica, sans-serif !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

body.site-modern .icon_tetle span[class^="fa-"]::before,
body.site-modern .icon_tetle span[class*=" fa-"]::before {
  content: "" !important;
  display: block;
  width: 24px;
  height: 24px;
  background: currentColor;
}

body.site-modern .icon_tetle span.fa-info::before {
  content: "i" !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  color: currentColor !important;
  font-family: Roboto, Arial, Helvetica, sans-serif !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

body.site-modern .icon_tetle span.fa-calendar::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M4 10h16M5 5h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M4 10h16M5 5h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.site-modern .icon_tetle span.fa-bell::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9'/%3E%3Cpath d='M10 21h4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9'/%3E%3Cpath d='M10 21h4'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.site-modern .fa-desktop {
  display: inline-flex;
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 2px;
  color: var(--teal-dark);
  vertical-align: -2px;
}

body.site-modern .fa-desktop::before {
  content: "" !important;
}

body.site-modern .site-footer nav.footer-links {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.site-modern .site-footer .footer-main {
  grid-template-columns: minmax(280px, 1.15fr) minmax(280px, .95fr) minmax(260px, .75fr);
}

body.site-modern .site-footer .footer-links a,
body.site-modern .site-footer .footer-contact a {
  color: #e9f8f5 !important;
}

body.site-modern .site-footer .footer-bottom a {
  color: #b8f0a1 !important;
}

@media (max-width: 900px) {
  body.site-modern {
    --site-shell: min(100% - 32px, 1568px);
  }

  body.site-modern .site-header-inner {
    min-height: 76px;
  }

  body.site-modern .site-logo img {
    width: 196px;
    max-width: calc(100vw - 148px);
  }

  body.site-modern .phone-link {
    width: 48px;
    min-width: 48px;
    padding: 0 !important;
  }

  body.site-modern .phone-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  body.site-modern.page-code-1 .camera_wrap,
  body.site-modern.page-code-1 .camera_fakehover,
  body.site-modern.page-code-1 .camera_target,
  body.site-modern.page-code-1 .camera_target_content,
  body.site-modern.page-code-1 .cameraContent {
    height: clamp(190px, 42vw, 280px) !important;
  }

  body.site-modern.page-code-1 .caption_content {
    padding: 32px 0 !important;
  }

  body.site-modern.page-code-1 .camera_caption2 .caption_content h3,
  body.site-modern.page-code-1 .camera_caption1 .caption_content h3,
  body.site-modern.page-code-1 .camera_caption3 .caption_content h3 {
    font-size: 26px !important;
  }

  body.site-modern.page-code-1 .camera_caption2 .caption_content h4,
  body.site-modern.page-code-1 .camera_caption1 .caption_content h4,
  body.site-modern.page-code-1 .camera_caption3 .caption_content h4 {
    font-size: 15px !important;
  }

  body.site-modern #content h2,
  body.site-modern #content h3 {
    font-size: 26px !important;
  }

  body.site-modern #content h4,
  body.site-modern .icon_tetle {
    font-size: 21px !important;
  }
}

@media (max-width: 480px) {
  body.site-modern .site-logo img {
    width: 178px;
    max-width: calc(100vw - 132px);
  }

  body.site-modern #content h2,
  body.site-modern #content h3 {
    font-size: 24px !important;
  }
}
/* Homepage info cards: keep title labels on one line and center the icon. */
body.site-modern.page-code-1 #content .border_box > .row > .grid_4 .icon_tetle {
  align-items: center !important;
  white-space: nowrap;
}

body.site-modern.page-code-1 #content .border_box > .row > .grid_4 .icon_tetle span[class^="fa-"],
body.site-modern.page-code-1 #content .border_box > .row > .grid_4 .icon_tetle span[class*=" fa-"] {
  align-self: center !important;
}
/* Page layout correction: calmer readable width and predictable subpage grids. */
body.site-modern {
  --site-shell: min(100% - 56px, 1180px);
}

body.site-modern .container,
body.site-modern .site-header .container,
body.site-modern .site-nav .container,
body.site-modern .site-footer .container,
body.site-modern.page-code-1 .site-header > .wrapper > .container,
body.site-modern.page-code-1 .caption_content {
  width: var(--site-shell) !important;
  max-width: 1180px !important;
}

body.site-modern:not(.page-code-1) #content {
  padding-top: 42px;
}

body.site-modern.page-code-4 #content > .container > .row > .grid_12 > .row,
body.site-modern.page-code-5 #content > .container > .row > .grid_12 > .row {
  display: grid !important;
  grid-template-columns: minmax(0, 760px) minmax(300px, 360px);
  gap: 32px;
  align-items: start;
  justify-content: center;
}

body.site-modern.page-code-6 #content > .container > .row > .grid_12 > .row {
  display: grid !important;
  grid-template-columns: minmax(320px, 380px) minmax(0, 760px);
  gap: 32px;
  align-items: start;
  justify-content: center;
}

body.site-modern.page-code-4 #content > .container > .row > .grid_12 > .row > .grid_8,
body.site-modern.page-code-4 #content > .container > .row > .grid_12 > .row > .grid_4,
body.site-modern.page-code-5 #content > .container > .row > .grid_12 > .row > .grid_8,
body.site-modern.page-code-5 #content > .container > .row > .grid_12 > .row > .grid_4,
body.site-modern.page-code-6 #content > .container > .row > .grid_12 > .row > .grid_8,
body.site-modern.page-code-6 #content > .container > .row > .grid_12 > .row > .grid_4 {
  width: auto !important;
  flex: none !important;
  min-width: 0;
}

body.site-modern.page-code-4 #content > .container > .row > .grid_12 > .row > .grid_4,
body.site-modern.page-code-5 #content > .container > .row > .grid_12 > .row > .grid_4 {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body.site-modern.page-code-4 #content > .container > .row > .grid_12 > .row > .grid_4 > .border_box,
body.site-modern.page-code-5 #content > .container > .row > .grid_12 > .row > .grid_4 > .border_box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

body.site-modern.page-code-4 #content .grid_8 h4,
body.site-modern.page-code-5 #content .grid_8 h5 {
  margin-top: 0 !important;
}

body.site-modern.page-code-4 #content .grid_8 h4 + p,
body.site-modern.page-code-5 #content .grid_8 h5 + p {
  margin-bottom: 28px;
}

body.site-modern.page-code-2 #content .grid_12 > .border_box > .row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

body.site-modern.page-code-2 #content .grid_12 > .border_box > .row > .grid_12:first-child {
  grid-column: 1 / -1;
  width: auto !important;
  flex: none !important;
}

body.site-modern.page-code-2 #content .grid_12 > .border_box > .row > .grid_4 {
  width: auto !important;
  flex: none !important;
  min-width: 0;
}

body.site-modern.page-code-2 #content .grid_4 .btn {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 12px;
}

body.site-modern.page-code-2 #content .grid_4 .btn + .btn {
  margin-left: 0;
}

body.site-modern.page-code-6 #content .grid_8 iframe {
  width: 100% !important;
  min-height: 420px;
}

body.site-modern.page-code-6 #content .grid_8 img {
  max-width: calc(50% - 14px);
}

@media (max-width: 980px) {
  body.site-modern {
    --site-shell: min(100% - 32px, 1180px);
  }

  body.site-modern.page-code-4 #content > .container > .row > .grid_12 > .row,
  body.site-modern.page-code-5 #content > .container > .row > .grid_12 > .row,
  body.site-modern.page-code-6 #content > .container > .row > .grid_12 > .row,
  body.site-modern.page-code-2 #content .grid_12 > .border_box > .row {
    grid-template-columns: 1fr;
  }

  body.site-modern.page-code-2 #content .grid_12 > .border_box > .row > .grid_12:first-child {
    grid-column: auto;
  }

  body.site-modern.page-code-6 #content .grid_8 img {
    max-width: 100%;
  }
}
/* Sidebar normalization for listing/detail pages. */
body.site-modern.page-code-3 #content > .container > .row > .grid_12 > .row {
  display: grid !important;
  grid-template-columns: minmax(0, 760px) minmax(300px, 360px);
  gap: 32px;
  align-items: start;
  justify-content: center;
}

body.site-modern.page-code-3 #content > .container > .row > .grid_12 > .row > .grid_8,
body.site-modern.page-code-3 #content > .container > .row > .grid_12 > .row > .grid_4 {
  width: auto !important;
  flex: none !important;
  min-width: 0;
}

body.site-modern.page-code-3 #content > .container > .row > .grid_12 > .row > .grid_4,
body.site-modern.page-code-4 #content > .container > .row > .grid_12 > .row > .grid_4,
body.site-modern.page-code-5 #content > .container > .row > .grid_12 > .row > .grid_4 {
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: var(--white) !important;
  box-shadow: var(--shadow) !important;
  padding: 24px !important;
}

body.site-modern.page-code-3 #content > .container > .row > .grid_12 > .row > .grid_4 > .border_box,
body.site-modern.page-code-4 #content > .container > .row > .grid_12 > .row > .grid_4 > .border_box,
body.site-modern.page-code-5 #content > .container > .row > .grid_12 > .row > .grid_4 > .border_box {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.site-modern.page-code-4 #content .sidebar-informace-card,
body.site-modern.page-code-5 #content .sidebar-dalsi-odkazy-card {
  margin-top: 22px !important;
  padding-top: 22px !important;
  border-top: 1px solid var(--line) !important;
}

@media (max-width: 980px) {
  body.site-modern.page-code-3 #content > .container > .row > .grid_12 > .row {
    grid-template-columns: 1fr;
  }
}
