@charset "UTF-8";
/* ==========================================================
   VARIABLES – NÁPOVĚDA (JAK TO POUŽÍVAT V TOMTO PROJEKTU)
   ==========================================================

   ----------------------------------------------------------
   1) DESIGN TOKENS (BARVY, FONTY, VELIKOSTI)
   ----------------------------------------------------------
   Tyto proměnné jsou NAPOJENÉ na CSS custom properties
   definované v header.inc.php (:root { --... }).

   SCSS je jen POUŽÍVÁ – nikdy je zde nepřepisuj.

   PŘÍKLADY:
   ----------------------------------------------------------
   color: $text-color;
   background: $main-background;
   font-family: $font;
   font-family: $font-header;
   font-size: $font-size;
   font-size: $font-size-desktop;

   NIKDY:
   ----------------------------------------------------------
   $text-color: #000;
   $font: Arial;


   ----------------------------------------------------------
   2) BREAKPOINTY (TECHNICKÉ)
   ----------------------------------------------------------
   Breakpointy jsou pevné hodnoty v px.
   Media queries se NEPÍŠÍ ručně – používá se mixin mq().

   DEFINOVANÉ ROZSAHY:
   ----------------------------------------------------------
   Mobile:        0 – {$mqMobileTo}
   Big mobile:    {$mqBigMobile} – {$mqBigMobileTo}
   Fold:          {$mqFold} – {$mqFoldTo}
   Tablet:        {$mqTablet} – {$mqTabletTo}
   Desktop:       {$mqSmallDesktop}+

   Layout max:    {$layout-max}px


   ----------------------------------------------------------
   3) MEDIA QUERY PROMĚNNÉ (POUŽÍVAT JEN TYTO)
   ----------------------------------------------------------
   ✔ $media-mobile
   ✔ $media-bigMobile
   ✔ $media-fold
   ✔ $media-tablet
   ✔ $media-desktop
   ✔ $media-layout-max

   PŘÍKLADY POUŽITÍ:
   ----------------------------------------------------------

   // Fold zařízení (např. Samsung Z Fold otevřený)
   @include mq($media-fold) {
     font-size: 17px;
     padding: 16px 20px;
   }

   // Tablet layout
   @include mq($media-tablet) {
     display: grid;
     grid-template-columns: 1fr 1fr;
   }

   // Desktop a větší
   @include mq($media-desktop) {
     max-width: $layout-max;
     margin: 0 auto;
   }


   ----------------------------------------------------------
   4) ORIENTACE
   ----------------------------------------------------------
   Používej jen přes připravené proměnné:

   @include mq($landscape) {
     height: 100vh;
   }

   @include mq($portrait) {
     padding-bottom: 40px;
   }


   ----------------------------------------------------------
   5) CO SEM NEPATŘÍ
   ----------------------------------------------------------
   ❌ žádné CSS selektory
   ❌ žádné @media
   ❌ žádné !important
   ❌ žádné barvy/fonty natvrdo
   ❌ žádná logika specifická pro konkrétní stránku


   ----------------------------------------------------------
   6) CÍL TOHOTO SOUBORU
   ----------------------------------------------------------
   - jeden zdroj pravdy pro breakpointy
   - jednotná logika responsive chování
   - design řízený administrací (CSS variables)
   - snadné kopírování mezi projekty

   ========================================================== */
/* ==========================================================
   DESIGN TOKENS (napojené na :root z header.inc.php)
   ========================================================== */
/* ==========================================================
   BREAKPOINTS (technické konstanty)
   ========================================================== */
/* Mobile */
/* Big mobile (větší telefony) */
/* Fold devices (Samsung Z Fold apod.) */
/* Tablet */
/* Desktop */
/* Layout */
/* ==========================================================
   MEDIA QUERY STRINGS
   (pro mixiny mq(), tableMedia(), alignOn()…)
   ========================================================== */
/* Orientace */
/* ==========================================================
    POUŽITÍ
   ========================================================== 

SVG sprite
.ico {
  @include svg-icon-base(20px);
}

Media query
@include mq($mqTablet) {
  font-size: 18px;
}

HTML:

<a class="btn" href="tel:+420123456789">
  <svg class="ico" aria-hidden="true">
    <use href="/img/sprite.svg#phone"></use>
  </svg>
  Zavolat
</a>


SCSS:

.ico { @include svg-icon-base(20px); } // nebo 1em
// pro linku/stroke ikony:
// .ico { @include svg-icon-base(20px); @include svg-icon-stroke(2); }

Když chceš mít velikosti jako utility třídy
.ico--16 { @include svg-icon-size(16px); }
.ico--24 { @include svg-icon-size(24px); }


Jestli mi pošleš ukázku tvého sprite.svg (aspoň 1 symbol), řeknu ti i jak nastavit fill/stroke ve sprite, aby to šlo 100% ovládat přes CSS bez boje.


*/
/* ==========================================================
   LAYOUT & HELPERS
   ========================================================== */
/* ==========================================================
   MEDIA QUERY
   (počítá s proměnnými z _variables.scss)
   ========================================================== */
/* ==========================================================
   SVG ICONS (SPRITE READY)
   ========================================================== */
/* ==========================================================
   ACCESSIBILITY
   ========================================================== */
/* ==========================================================
   BACKGROUNDS & EFFECTS
   ========================================================== */
/* ==========================================================
   INTERACTION
   ========================================================== */
/* ==========================================================
   Normalize / Reset (moderní, bez legacy IE)
   - sem nepatří barvy ani fonty (to řeší base/typography)
   ========================================================== */
/* lepší box model */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* základ */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/* obrázky/media */
img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

/* formuláře a tlačítka dědí fonty */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* odstranění defaultního “klik” stylu na iOS */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/* konzistentní tabulky */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* odstraní extra mezery u seznamů */
ul, ol {
  margin: 0;
  padding: 0;
}

/* rozumné chování hr */
hr {
  height: 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

/* ==========================================================
   Typography
   - fonty a textové styly (barvy/font-family sem, ne do normalize)
   ========================================================== */
html {
  font-family: var(--font);
  font-size: var(--font-size);
  line-height: 1.55;
  color: var(--text-color);
  min-height: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: inherit;
  min-height: 100%;
  background: var(--page-background);
}

/* ==========================================================
   Volitelné: když máš FIXED header, odsadí obsah
   - uprav hodnotu podle reálné výšky headeru
   ========================================================== */
/*
body {
  padding-top: 63px;
}
*/
/* Desktop font-size (pokud v adminu nastavuješ zvlášť) */
@media only screen and (min-width: 1024px) {
  html {
    font-size: var(--font-size-desktop);
  }
}
/* Nadpisy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  line-height: 1.2;
  margin: 2em 0 1em 0;
  color: inherit;
}

/* Rozumné velikosti nadpisů (můžeš si upravit) */
h1 {
  font-size: 2rem;
  color: var(--color-h1);
}

h2 {
  font-size: 1.6rem;
  color: var(--color-h2);
}

h3 {
  font-size: 1.3rem;
  color: var(--color-h3);
}

h4 {
  font-size: 1.15rem;
  color: var(--color-h4);
}

h5 {
  font-size: 1.05rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1em;
}

small {
  font-size: 0.875em;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

/* Odkazy – default nechávám nenápadné, ať si je styluješ v komponentách */
a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 2px;
}

/* Code */
code, kbd, pre, samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

pre {
  overflow: auto;
  margin: 0 0 1em;
}

/* Seznamy */
ul, ol {
  margin: 0 0 1em 1.2em;
  padding: 0;
}

li {
  margin: 0.2em 0;
}

/* Citace */
blockquote {
  margin: 0 0 1em;
  padding: 1em 2em;
  border-left: 4px solid rgba(0, 0, 0, 0.12);
}

/* Tabulky – základní textové chování (layout řeší tables.scss) */
table {
  font-size: 1em;
}

/* Obrázky v textu */
figure {
  margin: 0 0 1em;
}

figcaption {
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 0.4em;
}

/* Přístupnost */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

a.callto {
  font-weight: 700;
  color: var(--callto-color);
}

a.mailto {
  font-weight: 700;
  color: var(--mailto-color);
}

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

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}

@media only screen and (min-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}
/* ==========================================================
   Visibility / display
   ========================================================== */
.displayNone {
  display: none !important;
}

.displayInlineBlock {
  display: inline-block;
}

/* zobrazí se až od FOLD / TABLET – použij podle potřeby */
.mobileNoShow {
  display: none;
}
@media (min-width: 700px) {
  .mobileNoShow {
    display: block;
  }
}

/* ==========================================================
   Float helpers (legacy – používat jen v obsahu)
   ========================================================== */
.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

/* ==========================================================
   Text alignment
   ========================================================== */
.textAlignLeft {
  text-align: left;
}

.textAlignRight {
  text-align: right;
}

.textAlignCenter {
  text-align: center;
}

/* aliasy – kdybys je měl už v obsahu */
.alignLeft,
.alignRight {
  text-align: center;
}

@media (min-width: 700px) {
  .alignLeft {
    text-align: left;
  }
  .alignRight {
    text-align: right;
  }
}
/* ==========================================================
   Center helper
   ========================================================== */
.center {
  text-align: center;
}
.center .table {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================
   Circle image helper
   ========================================================== */
.circle {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

/* reset floatu na mobile */
img.circle.floatLeft,
img.circle.floatRight {
  float: none;
  margin: 0 auto 20px;
}

@media (min-width: 700px) {
  img.circle.floatLeft {
    float: left;
    margin: 0 30px 20px 0;
  }
  img.circle.floatRight {
    float: right;
    margin: 0 0 20px 30px;
  }
}
/* ==========================================================
   Definition list tweak
   ========================================================== */
dl dt {
  margin: 1em 0;
}

label {
  display: block;
  padding: 7px 0;
}

.form-item {
  margin: 10px 0;
}

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  border-radius: 5px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  color: var(--text-color);
  outline: none;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* submit = použij tvůj .btn, ale kdyby někde bylo čisté input submit */
input[type=submit] {
  width: auto;
  cursor: pointer;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  min-height: 43px;
  background: var(--header-background);
  background-size: 100%;
  font-family: var(--font-header);
  z-index: 52;
}
@media (min-width: 768px) {
  header {
    background: var(--header-background-desktop);
  }
  header.header--main-menu--full-width .wrapper {
    display: block;
  }
}
header.scroll {
  background: var(--header-background-scroll);
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
header .wrapper {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 1024px) {
  header .wrapper {
    padding: 0 5px 5px;
  }
}

/* ==========================================================
   MAIN MENU – mobile first
   ========================================================== */
.main-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--main-menu-background-mobile);
}
@media (min-width: 768px) {
  .main-menu.main-menu--transparent {
    background: transparent;
  }
}
.main-menu {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 10px 16px 16px;
  display: none;
  z-index: 50;
}

/* otevření menu (hamburger) */
.main-menu.is-open,
body.is-open .main-menu {
  display: block;
}

/* ==========================================================
   TOP LEVEL LIST
   ========================================================== */
.main-menu .paragraph-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.main-menu .paragraph-menu > li {
  position: relative;
}

/* ==========================================================
   TOP LEVEL LINKS
   ========================================================== */
.main-menu .paragraph-menu > li > a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--menu-link-radius);
  font-family: var(--font-header);
  font-size: 16px;
  line-height: 1.2;
  color: var(--menu-link-mobile);
  text-decoration: none;
}

.main-menu .paragraph-menu > li > a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.main-menu .paragraph-menu > li > a:hover {
  color: var(--menu-link-mobile-hover);
}

/* aktivní položka – MOBILE */
.main-menu .paragraph-menu > li.current > a {
  color: var(--menu-link-mobile-active);
  -webkit-box-shadow: inset 0 -2px 0 0 var(--menu-link-mobile-line);
          box-shadow: inset 0 -2px 0 0 var(--menu-link-mobile-line);
}

/* ==========================================================
   SUB MENU – MOBILE
   ========================================================== */
.main-menu .subMenu {
  list-style: none;
  margin: 6px 0 0;
  padding: 6px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}

/* otevření subMenu na mobilu (JS přidá .is-open) */
.main-menu li.wSub.is-open > .subMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-menu .subMenu li a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--menu-link-mobile);
  text-decoration: none;
}

.main-menu .subMenu li a:hover {
  color: var(--menu-link-mobile-hover);
  background: rgba(0, 0, 0, 0.06);
}

/* ==========================================================
   DESKTOP MENU
   ========================================================== */
@media (min-width: 768px) {
  .header--main-menu--full-width .main-menu {
    display: block;
  }
  .header--main-menu--full-width .main-menu .paragraph-menu {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main-menu {
    position: static;
    display: block !important;
    background: var(--main-menu-background-desktop);
    border-radius: var(--main-menu-border-radius-desktop);
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: var(--main-menu-padding-desktop);
  }
  .main-menu .paragraph-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
  }
  .main-menu .paragraph-menu > li > a {
    padding: 10px 12px;
    color: var(--menu-link-desktop);
  }
  .main-menu .paragraph-menu > li > a:hover {
    color: var(--menu-link-desktop-hover);
    -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.04);
  }
  /* aktivní položka – DESKTOP */
  .main-menu .paragraph-menu > li.current > a {
    color: var(--menu-link-desktop-active);
    -webkit-box-shadow: inset 0 -2px 0 0 var(--menu-link-desktop-active-line-bottom);
            box-shadow: inset 0 -2px 0 0 var(--menu-link-desktop-active-line-bottom);
    background: var(--menu-link-desktop-active-background);
  }
  /* ======================================================
     SUB MENU – DESKTOP (hover)
     ====================================================== */
  .main-menu .subMenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    min-width: 220px;
    display: none;
    background: var(--header-background);
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 8px;
    z-index: 100;
  }
  .main-menu li.wSub:hover > .subMenu {
    display: block;
  }
  .main-menu .subMenu li a {
    font-size: 14px;
    padding: 8px 12px;
    color: var(--submenu-link-desktop);
  }
  .main-menu .subMenu li a:hover {
    color: var(--submenu-link-desktop-hover);
    background: transparent;
  }
}
/* ==========================================================
   SUB MENU ARROW
   ========================================================== */
.main-menu li.wSub > a {
  position: relative;
  padding-right: 36px;
}

.main-menu li.wSub > a::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.main-menu li.wSub.is-open > a::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}

@media (min-width: 768px) {
  .main-menu li.wSub:hover > a::after {
    -webkit-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
  }
}
.footer {
  padding: 30px 10px;
  color: var(--footer-link-color);
  background: var(--page-background);
  text-align: center;
  line-height: 1.6;
  position: relative;
  /* container v patičce */
}
.footer .container {
  max-width: 1220px;
  margin: 0 auto;
}
.footer {
  /* rozdělovací čára */
}
.footer hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  margin: 24px 0;
}
.footer {
  /* odkazy */
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer h2 {
  color: var(--footer-header-color);
}
.footer {
  /* kontakt “tabulka” – lepší jako grid */
}
.footer .table-kontakty {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: left;
}
@media only screen and (min-width: 700px) and (max-width: 767px) {
  .footer .table-kontakty {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .footer .table-kontakty {
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
.footer {
  /* Social + copy řádek */
}
.footer .social {
  margin: 14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.footer .social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.footer .copy {
  font-size: 0.95em;
  opacity: 0.95;
}
.footer {
  /* desktop: social a copy vedle sebe */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer .social-copy-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
    text-align: left;
  }
  .footer .social {
    margin: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.footer {
  /* webmaster separator bez hacků */
}
.footer .webmaster {
  display: inline;
  opacity: 0.95;
}
.footer .webmaster i {
  display: inline;
  font-style: normal;
  padding: 0 10px;
  opacity: 0.7;
}
.footer .webmaster br {
  display: none;
}
.footer .webmaster {
  /* na úplně malých šířkách klidně odřádkuj */
}
@media (max-width: 699px) {
  .footer .webmaster {
    display: block;
    margin-top: 6px;
  }
  .footer .webmaster i {
    display: none;
  }
  .footer .webmaster br {
    display: inline;
  }
}

main[role=main] {
  padding: 0;
  position: relative;
  line-height: 1.6;
  font-weight: 400;
  background: var(--main-background);
}
main[role=main] .wrapper {
  padding: 20px 20px 60px 20px;
}
main[role=main] img {
  max-width: 100%;
  height: auto;
}
main[role=main] .parent-menu li a {
  font-weight: 700;
  font-size: 150%;
}

.paragraph {
  text-align: center;
  padding: 64px 0 0;
  margin: 0;
}
.paragraph.uvod {
  overflow: hidden;
}
.paragraph .paragraphInner {
  max-width: 1220px;
  margin: 0 auto;
  background: var(--page-background);
}
.paragraph .inner {
  font-size: 120%;
  color: var(--text-color);
  padding: 0 10px 15px;
  line-height: 1.55;
}
.paragraph .inner img.inline {
  max-width: 100%;
  margin: 0 0 30px;
  min-width: 260px;
}
.paragraph {
  /* listy v paragraph (styl odrážek) */
}
.paragraph ul {
  margin: 0;
  padding: 0 0 30px;
}
.paragraph ul li {
  position: relative;
  list-style: none;
  margin: 6px 0 6px 22px;
  text-align: left;
}
.paragraph ul li::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 7px;
  width: 15px;
  height: 7px;
  /* místo natvrdo #f67f2d */
  border-bottom: 5px solid var(--accent, #f67f2d);
}

.logo {
  position: relative;
  overflow: hidden;
  text-align: left;
  font-family: var(--font-header);
  display: block;
}
.logo a,
.logo a:link {
  display: block;
  text-decoration: none;
  font-size: 1.6em;
  font-weight: 300;
  color: var(--logo-a);
  text-transform: none;
  height: 40px;
  width: auto;
  max-width: 210px;
}
@media (min-width: 480px) {
  .logo a,
  .logo a:link {
    height: 50px;
  }
}
@media (min-width: 1280px) {
  .logo a,
  .logo a:link {
    height: 100px;
  }
}
@media (min-width: 768px) {
  .logo a,
  .logo a:link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 420px;
  }
}
.logo img,
.logo svg {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  max-height: 100%;
}
.logo {
  /*
    font-size: 15px;
    font-weight: 300;
    width: 120px;
    display: block;
    padding: 0 0 0 50px;
    text-align: center;
    line-height: 20px;
  */
}
.logo span {
  vertical-align: top;
  font-size: 15px;
  font-weight: 300;
  width: 120px;
  display: inline-block;
  padding: 6px 0 0 0;
  text-align: center;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--logo-a);
  text-decoration: none;
}
.logo span strong {
  font-weight: 300;
  font-size: 138%;
}
@media (min-width: 768px) {
  .logo span {
    padding: 4px 0 0 6px;
    width: 130px;
  }
}
@media (min-width: 1024px) {
  .logo span {
    font-size: 28px;
    padding: 8px 0 5px 15px;
    width: auto;
    line-height: 36px;
  }
  .logo span strong {
    font-size: 100%;
  }
}

/* Když máš na headeru třídu .scroll */
.scroll .logo img {
  max-width: 230px;
}
@media (min-width: 768px) {
  .scroll .logo img {
    max-width: inherit;
  }
}

#menu-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 40px 0 0;
  position: relative;
  width: auto;
  height: 34px;
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: var(--menu-btn);
  font-size: var(--font-size-btn);
  font-family: var(--font-header);
  font-weight: 600;
}
#menu-btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
#menu-btn {
  /* schovat hamburger od zvoleného breakpointu */
}
@media (min-width: 768px) {
  #menu-btn {
    display: none;
  }
}
#menu-btn span {
  display: block;
  position: absolute;
  top: 15px;
  right: 0;
  width: 30px;
  height: 4px;
  border-radius: 1px;
  background: trasparent;
}
#menu-btn span:before, #menu-btn span:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  background: var(--menu-btn);
  -webkit-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
          transition-delay: 0.3s, 0s;
}
#menu-btn span:before {
  width: calc(100% - 7px);
  top: -6px;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}
#menu-btn span:after {
  bottom: -6px;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}
#menu-btn.is-active span {
  background: 0;
}
#menu-btn.is-active span:before, #menu-btn.is-active span:after {
  -webkit-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s;
}
#menu-btn.is-active span:before {
  width: 100%;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#menu-btn.is-active span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.paragraph-nadpis {
  padding: 70px 0 0;
  background: var(--subpage-paragraph-bgcolor-nadpis-mobile, #edf2f7);
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .paragraph-nadpis {
    padding: 150px 0 0;
  }
}
@media only screen and (min-width: 1024px) {
  .paragraph-nadpis {
    padding: 150px 0 0;
    background: var(--subpage-paragraph-bgcolor-nadpis-desktop);
  }
}
.paragraph-nadpis h1 {
  position: relative;
  display: inline-block;
  font-size: 26px;
  line-height: 1.3;
  padding: 8px 5px 0;
  margin: 0 0 30px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .paragraph-nadpis h1 {
    font-size: 38px;
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 1024px) {
  .paragraph-nadpis h1 {
    font-size: 50px;
    margin-bottom: 35px;
  }
}
.paragraph-nadpis h1.text-transformlowercase {
  color: white;
  text-transform: lowercase;
}

/* Subpage varianta */
.subpage .paragraph-nadpis {
  position: relative;
  margin: 0 0 50px;
}
@media only screen and (min-width: 480px) and (max-width: 699px) {
  .subpage .paragraph-nadpis {
    margin: 0 auto 60px;
    max-width: 1220px;
  }
}
@media only screen and (min-width: 1024px) {
  .subpage .paragraph-nadpis {
    text-align: left;
    background: var(--subpage-paragraph-bgcolor-nadpis-desktop);
  }
}
.subpage .paragraph-nadpis {
  /* gradient řeším čistým CSS – žádný starý mixin */
  background-image: -webkit-gradient(linear, left top, right top, from(var(--subpage-paragraph-bgcolor-grad-left-nadpis-mobile, transparent)), to(var(--subpage-paragraph-bgcolor-grad-right-nadpis-mobile, transparent)));
  background-image: linear-gradient(to right, var(--subpage-paragraph-bgcolor-grad-left-nadpis-mobile, transparent), var(--subpage-paragraph-bgcolor-grad-right-nadpis-mobile, transparent));
}
.subpage .paragraph-nadpis h2 {
  position: relative;
  color: var(--subpage-paragraph-color-nadpis-mobile, var(--text-color));
  font-weight: 700;
}
@media only screen and (min-width: 1024px) {
  .subpage .paragraph-nadpis h2 {
    color: var(--subpage-paragraph-color-nadpis-desktop, var(--text-color));
    padding: 0 90px 0 0;
    font-size: 68px;
  }
}

ul.tabs {
  display: block;
  list-style: none;
  padding: 0 0 0 1em;
  margin: 20px auto 0;
  max-width: 1220px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}
ul.tabs li {
  display: inline-block;
}
ul.tabs li a {
  display: block;
  padding: 0 1em;
  line-height: 1.55;
  border-radius: 8px 8px 0 0;
  margin-right: 5px;
  text-decoration: none;
}
ul.tabs li a:hover {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}
ul.tabs li a.is-active {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.fix-iframe {
  position: relative;
  width: 100%;
  text-align: left;
}
.fix-iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.fix-iframe img {
  width: 100%;
  height: auto;
  display: block;
}

.hashtag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  border: 1px solid var(--accent, #ffc107);
  padding: 6px 15px 7px;
  margin: 3px 2px;
}
.hashtag::before {
  content: "#";
  font-size: 20px;
  line-height: 1;
  position: relative;
  top: 1px;
  color: var(--accent, #ffc107);
}

@media only screen and (min-width: 480px) and (max-width: 699px) {
  .social-icons {
    text-align: left;
    margin-left: 5px;
    margin-right: 5px;
  }
}

.social-ico {
  position: relative;
  background: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 7px;
  width: 30px;
  height: 30px;
  margin: 0 10px;
  vertical-align: top;
}
.social-ico svg {
  width: 30px;
  height: 30px;
  display: block;
}
.social-ico.fb svg {
  width: 26px;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  border: 0;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background-color: var(--btn-background-color);
  color: var(--btn-color);
}
.btn.btn-big {
  padding: 16px 25px;
  font-size: 1.1em;
}
.btn:hover {
  background-color: var(--btn-background-color-hover);
  text-decoration: none;
}

#block-contactblock {
  position: relative;
  padding: 10px 40px 40px;
  margin: 20px 0;
  /* na větších šířkách může být vedle něčeho */
}
@media only screen and (min-width: 480px) and (max-width: 699px) {
  #block-contactblock {
    float: left;
  }
}
@media only screen and (min-width: 480px) and (max-width: 699px) {
  #block-contactblock label {
    float: left;
    min-width: 80px;
    text-align: left;
    padding-right: 20px;
  }
}
#block-contactblock input[type=text],
#block-contactblock input[type=email],
#block-contactblock textarea {
  border-radius: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #333;
}
#block-contactblock textarea {
  min-height: 126px;
}
#block-contactblock .form-actions {
  text-align: right;
}
#block-contactblock #edit-preview {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 8px 10px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

tr > :first-child {
  border-left: 0;
}

th {
  background: var(--table-color);
  color: #fff;
  font-weight: 600;
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

/* align atributy + views třídy */
th[align=right], th.views-align-right,
td[align=right], td.views-align-right {
  text-align: right;
}

th[align=center], th.views-align-center,
td[align=center], td.views-align-center {
  text-align: center;
}

tr:last-child td {
  border-bottom: 0;
}

.table {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .table {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
.table .table-row {
  padding: 15px 0;
}
.table .table-cell {
  display: block;
  padding: 0 5px;
}
@media only screen and (min-width: 480px) and (max-width: 699px) {
  .table .table-cell {
    padding: 0 15px;
  }
}
.table .table-cell p {
  margin: 5px 0;
}
.table .table-cell .buttons {
  padding: 5px 0 0;
}
.table {
  /* dvě buňky vedle sebe (bez floatu) */
}
@media only screen and (min-width: 1024px) {
  .table.two-cell {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================
   Cards grid – univerzální mřížka pro seznamy karet
   funguje pro:
   - .blocks > li (ruční bloky)
   - .search-results > li (i18n Special Pages)
   ========================================================== */
.blocks,
.search-results {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}

/* 2 sloupce mezi MobileTo–BigMobileTo */
@media (min-width: 360px) and (max-width: 699px) {
  .blocks,
  .search-results {
    -ms-grid-columns: minmax(0, 1fr) 10px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
/* 3 sloupce od Fold (700+) */
@media (min-width: 700px) {
  .blocks,
  .search-results {
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
/* ==========================================================
   Card item – kostra (bez skinu)
   ========================================================== */
.blocks > li,
.blocks > .item,
.search-results > li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.blocks > li div,
.blocks > .item div,
.search-results > li div,
.blocks > li p,
.search-results > li p {
  position: relative;
}

/* základní spacing nadpisů v kartě (volitelné) */
.blocks > li h2,
.blocks > li h3,
.blocks > .item h2,
.blocks > .item h3,
.search-results > li h2,
.search-results > li h3 {
  margin: 0 0 10px;
  position: relative;
}

/* obrázek jen pro ruční .blocks (když máš .image) */
.blocks > li .image,
.blocks > .item .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.blocks > li .image img,
.blocks > .item .image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 9/6;
}

/* ==========================================================
   i18n Special Pages – chytré centrování (volitelné)
   ========================================================== */
@media (min-width: 700px) {
  .search-results:has(> li:only-child) {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-columns: minmax(0, 420px);
    grid-template-columns: minmax(0, 420px);
  }
  .search-results:has(> li:nth-child(2):last-child) {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-columns: (minmax(0, 320px))[2];
    grid-template-columns: repeat(2, minmax(0, 320px));
  }
  .search-results:has(> li:nth-child(4):last-child) > li:nth-child(4) {
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media (min-width: 360px) and (max-width: 699px) {
  .search-results:has(> li:nth-child(3):last-child) > li:nth-child(3) {
    grid-column: 1/-1;
    -ms-grid-column-align: center;
        justify-self: center;
    max-width: 320px;
    width: 100%;
  }
}
.benefits {
  padding: 60px 0;
  background: #fcfcfe;
  text-align: center;
}
/* jen úprava vzhledu karet v benefits */
.blocks--benefits .block {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
}
.blocks--benefits .block h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin: 10px 0 0;
}

/* ==========================================================
   Section wrappers – reusable “skiny” pro karty v sekci
   Použij na wrapper: .section section--xxx

    <section class="section section--boxed">
        <ul class="search-results">...</ul>
    </section>

   ========================================================== */
.section {
  padding: 40px 0;
}

/* helper: zacílí oba typy seznamů */
.section :is(.blocks, .search-results) > li {
  /* žádný default skin – ať si vybereš variantu */
}

/* ------------------------------------------
   BOXED – border + radius
   ------------------------------------------ */
.section--boxed :is(.blocks, .search-results) > li {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 16px;
}

/* ------------------------------------------
   SOFT – jemné pozadí, menší border
   ------------------------------------------ */
.section--soft {
  background: #fcfcfe;
}

.section--soft :is(.blocks, .search-results) > li {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 18px;
}

/* ------------------------------------------
   SHADOW – “karta” se stínem (bez borderu)
   ------------------------------------------ */
.section--shadow :is(.blocks, .search-results) > li {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------
   TIGHT – menší padding v sekci (když je toho hodně)
   ------------------------------------------ */
.section--tight {
  padding: 20px 0;
}

/*
<span class="icon-wrap">
  <svg class="icon icon--lg" aria-hidden="true">
    <use href="/assets/icons/sprite.svg#i-phone"></use>
  </svg>
  <span>+420 123 456 789</span>
</span>
*/
.icon {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  fill: currentColor;
  width: 24px;
  height: 24px;
  overflow: visible;
  pointer-events: none;
}

.icon--sm {
  width: 16px;
  height: 16px;
}

.icon--md {
  width: 24px;
  height: 24px;
}

.icon--lg {
  width: 30px;
  height: 30px;
}

.icon--xl {
  width: 48px;
  height: 48px;
}

.icon--em {
  width: 1em;
  height: 1em;
}

.icon-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.icon-wrap .icon {
  pointer-events: none;
}

.main-menu .paragraph-menu > li > a {
  position: relative;
  padding-left: 34px;
}

.main-menu .paragraph-menu > li > a::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: currentColor;
}

.main-menu .paragraph-menu > li.index a::before {
  mask: url("../icons/home.svg") no-repeat center/contain;
  -webkit-mask: url("../icons/home.svg") no-repeat center/contain;
}
.main-menu .paragraph-menu > li.nase-sluzby a::before {
  mask: url("../icons/book.svg") no-repeat center/contain;
  -webkit-mask: url("../icons/book.svg") no-repeat center/contain;
}
.main-menu .paragraph-menu > li.reference a::before {
  mask: url("../icons/photo.svg") no-repeat center/contain;
  -webkit-mask: url("../icons/photo.svg") no-repeat center/contain;
}
.main-menu .paragraph-menu > li.co-je-virtualni-prohlidka a::before {
  mask: url("../icons/eye.svg") no-repeat center/contain;
  -webkit-mask: url("../icons/eye.svg") no-repeat center/contain;
}
.main-menu .paragraph-menu > li.o-nas a::before {
  mask: url("../icons/peoples.svg") no-repeat center/contain;
  -webkit-mask: url("../icons/peoples.svg") no-repeat center/contain;
}
.main-menu .paragraph-menu > li.cenik a::before {
  mask: url("../icons/calculator.svg") no-repeat center/contain;
  -webkit-mask: url("../icons/calculator.svg") no-repeat center/contain;
}
.main-menu .paragraph-menu > li.kontakty a::before {
  mask: url("../icons/mail.svg") no-repeat center/contain;
  -webkit-mask: url("../icons/mail.svg") no-repeat center/contain;
}

.cbox-parent,
.gallery-fancybox {
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .cbox-parent,
  .gallery-fancybox {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }
}

.gallery-thumb a {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 0;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.gallery-thumb a::before {
  content: "";
  position: absolute;
  inset: 0;
}

.gallery-thumb a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.gallery-thumb a:hover::before {
  display: none;
}

.gallery-thumb a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row img {
  max-width: 100%;
  height: auto;
}

.col,
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-auto,
.col-md,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col,
.col-md {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
            flex: 0 0 8.333333%;
    max-width: calc(8.333333% - 30px);
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: calc(16.666667% - 30px);
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: calc(25% - 30px);
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: calc(33.333333% - 30px);
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
    max-width: calc(41.666667% - 30px);
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: calc(50% - 30px);
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
            flex: 0 0 58.333333%;
    max-width: calc(58.333333% - 30px);
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
    max-width: calc(66.666667% - 30px);
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: calc(75% - 30px);
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    max-width: calc(83.333333% - 30px);
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
            flex: 0 0 91.666667%;
    max-width: calc(91.666667% - 30px);
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: calc(100% - 30px);
  }
}
/* ==========================================================
   Plugin override: CarouselCreator
   Source: /plugins/carouselcreator/
   ========================================================== */
/* GetSimple plugin: CarouselCreator */
.slider-container {
  padding: 68px 0 0;
}

/* rezervy pro další override */
.slider-container .slider-item-content {
  /* override zde */
}

/* ==========================================================
   Plugin override: company-slider (Slick)
   ========================================================== */
.slick-slider .slick-slide {
  max-height: 300px;
}

/* šipky */
.slick-slider .slick-arrow {
  color: #2d3748;
}
.slick-slider .slick-arrow::before {
  font-size: 42px;
}

/* tečky */
.slick-slider.slick-dotted .slick-dots {
  bottom: 0;
}
.slick-slider.slick-dotted .slick-dots li button::before {
  background: #000;
  border-radius: 50%;
}

#menu-btn {
  font-weight: 300;
  font-size: 18px;
}

.perex {
  font-size: 130%;
}

.header-contact,
.google-business-fotograf {
  display: none;
  position: absolute;
  top: 5px;
  right: 360px;
  text-decoration: none;
  font-weight: bold;
  font-size: 28px;
}

@media (min-width: 768px) {
  .header-contact,
  .google-business-fotograf {
    display: block;
  }
  .header-contact {
    font-size: 22px;
    top: 10px;
    right: 40%;
  }
  .google-business-fotograf {
    top: 0;
    right: 5px;
    text-align: right;
  }
  .google-business-fotograf img {
    width: 90%;
    display: inline-block;
  }
}
@media (min-width: 1280px) {
  .google-business-fotograf {
    top: 0;
    right: 5px;
  }
}
.section--reference .blocks li {
  overflow: hidden;
}
.section--reference .blocks li img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  right: 0;
  z-index: 0;
}
.section--reference .blocks li h2 {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.58);
  color: white;
  font-size: 90%;
  text-align: center;
  margin: 0;
  padding: 10px 0;
  font-weight: normal;
}
.section--reference .blocks li h2 a {
  text-decoration: none;
}

/*
@use 'pages/frontpage';

@use 'vendors/fancybox';

@use 'overrides/custom';
*/
/*# sourceMappingURL=main.css.map */