/*
 * Globals
 */
.nostyled {
  list-style: none;
  padding: 0;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear_zero {
  clear: both;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.decoration {
  position: absolute;
  display: block;
  overflow: hidden;
}
/* =============================================================================

	6) LESS

   ========================================================================== */
/* -------------------- FONTS -------------------- */
@font-face {
  font-family: 'Thabit Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Thabit Regular'), url('../font/Thabit.woff') format('woff');
}
@font-face {
  font-family: 'Thabit Oblique';
  font-style: normal;
  font-weight: normal;
  src: local('Thabit Oblique'), url('../font/Thabit-Oblique.woff') format('woff');
}
@font-face {
  font-family: 'Thabit Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Thabit Bold'), url('../font/Thabit-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Thabit Bold Oblique';
  font-style: normal;
  font-weight: normal;
  src: local('Thabit Bold Oblique'), url('../font/Thabit-BoldOblique.woff') format('woff');
}
.bungee-shade-regular {
  font-family: "Bungee Shade", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.bungee-regular {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.bungee-inline-regular {
  font-family: "Bungee Inline", sans-serif;
  font-weight: 400;
  font-style: normal;
}
:root {
  --headerH: 100px;
}
[id] {
  scroll-margin-top: calc(var(--headerH) + 12px);
}
/* plynulejší zmenšování loga/přechody */
header {
  transition: background 0.25s ease, box-shadow 0.25s ease, padding-top 0.25s ease;
}
/* (volitelné) jemný border na fixed headeru */
header.scrolled {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
/* header musí být vždy viditelný */
header.sticky {
  opacity: 1 !important;
}
/* když je fixed, vyjeď nad všechen obsah */
header.scrolled {
  z-index: 9999;
}
/* pro jistotu: žádné "náhodné" nulování výšky */
header .wrapper {
  display: flex;
  align-items: center;
}
/* -------------------- BASE -------------------- */
html {
  text-align: center;
}
body {
  background: #FAF3F3;
  position: relative;
  text-align: left;
  color: #393939;
  font-family: "Thabit Regular", sans-serif;
  font-weight: normal;
  font-size: 18px;
}
* {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3 {
  font-family: "Bungee Shade", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-family: "Bungee Inline", sans-serif;
}
div.clear {
  clear: both;
}
br.mobile {
  display: none;
}
a,
a:hover {
  color: #1A9C4D;
  text-decoration: none;
  box-shadow: 0 -1px 0 0 #1a9c4d inset, 0 -2px 0 0 #1a9c4d inset;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a:hover,
a:hover:hover {
  box-shadow: none;
}
a.more {
  box-shadow: none;
}
a.more span {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  box-shadow: 0 -1px 0 0 #1a9c4d inset, 0 -2px 0 0 #1a9c4d inset;
}
a.more span:hover {
  box-shadow: none;
}
p,
ul,
ol {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}
p strong,
ul strong,
ol strong,
a.more {
  font-family: 'Thabit Bold', sans-serif;
}
.card:hover,
ul.cards li:hover,
ul.gallery li:hover {
  transform: scale(1.01);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.25);
}
/* -------------------- MODAL -------------------- */
/* čisté JS řešení: .visible vše ovládá */
.modal-window {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  display: none;
  overflow: auto;
  /* zobraz jen skutečný obsah, ne všechny divy */
}
.modal-window.visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}
.modal-window .bg {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(86, 86, 86, 0.7);
  content: ' ';
}
.modal-window.visible .bg {
  display: block;
}
.modal-window > .modal-content {
  display: none;
  position: relative;
  width: 48%;
  max-height: 85%;
  margin: 40px auto;
  padding: 20px 7% 40px 5%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  text-align: left;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.modal-window > .modal-content div.text {
  position: relative;
  z-index: 2;
}
.modal-window > .modal-content div.text img {
  width: 100%;
  margin-bottom: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.modal-window.visible > .modal-content {
  display: block;
}
/* sticky horní lišta uvnitř modálu */
.modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  /* křížek doprava */
  padding: 8px;
  /* volitelné: podbarvení, ať je čitelné nad obsahem při scrollu */
  background: linear-gradient(#ffffff, rgba(255, 255, 255, 0.9));
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 0;
}
.modal-close {
  align-self: flex-end;
  color: #fff;
  position: sticky;
  top: -100px;
  margin-right: -12%;
  width: 32px;
  height: 32px;
  display: block;
  background-color: #565656;
  background-image: url(../img/close.svg);
  background-repeat: no-repeat;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  text-decoration: none;
  z-index: 1000;
  cursor: pointer;
  box-shadow: none;
}
.modal-close:hover {
  background-color: #1A9C4D;
}
.modal-window div:not(:last-of-type) {
  margin-bottom: 15px;
}
.modal-content h2 {
  font-size: 28px;
  font-family: "Bungee", sans-serif;
  margin-bottom: 20px;
}
.modal-content h4 {
  font-family: 'Thabit Bold';
  font-size: 18px;
  margin-bottom: 10px;
}
.modal-content p,
.modal-content ol,
.modal-content ul {
  font-size: 16px;
  line-height: 1.5;
}
.modal-content ol,
.modal-content ul {
  margin-left: 20px;
}
.modal-content ol li,
.modal-content ul li {
  margin-bottom: 10px;
}
.modal-content em {
  font-family: 'Thabit Oblique';
}
.modal-content em strong {
  font-family: 'Thabit Bold Oblique';
}
.modal-content .btn {
  width: 80%;
  display: block;
  padding: 40px 10%;
  font-size: 16px;
  letter-spacing: .32px;
  text-transform: uppercase;
  text-align: center;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background: #565656;
  color: #fff;
}
.modal-content .btn:hover {
  background: #F5DE4E;
  cursor: pointer;
}
/* drobnosti */
a:hover {
  box-shadow: none;
  text-decoration: none;
}
.button,
input[type=submit] {
  display: inline-block;
  padding: 10px 20px;
  background: #a97193;
  box-shadow: 0 3px 0 #843e68;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}
.button:hover,
input[type=submit]:hover {
  color: #fff;
  background: #843e68;
  box-shadow: 0 3px 0 #843e68;
  cursor: pointer;
}
.button:active,
input[type=submit]:active {
  color: #fff;
  background: #843e68;
  cursor: pointer;
  box-shadow: 0 2px 0 #843e68;
}
.hide {
  display: none;
}
.show_hide {
  display: inline-block;
}
/* -------------------- HEADER -------------------- */
header {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 60px;
}
header div.wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header a.logo {
  box-shadow: none;
}
header a.logo:hover {
  opacity: .85;
}
header a.logo span {
  text-indent: -9999px;
  display: inline-block;
}
header a.logo h1 {
  margin-bottom: 0;
}
header a.logo img {
  width: 250px;
}
header nav {
  font-size: 15px;
  font-family: "Bungee", sans-serif;
}
header nav label,
header nav #hamburger {
  display: none;
  color: #000;
}
header nav .contact {
  width: 200px;
  padding-top: 8px;
}
header nav .contact img {
  width: 45px;
  float: left;
  margin-right: 5px;
  margin-top: -8px;
  border: 1px solid #eee;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  border-radius: 45px;
}
header nav .contact a {
  box-shadow: none;
  color: #343638;
}
header nav .contact a:hover {
  box-shadow: 0 -1px 0 0 #843e68 inset, 0 -2px 0 0 #843e68 inset;
}
header nav ul li {
  font-size: 18px;
  list-style: none;
  display: inline-block;
}
header nav ul li a {
  box-shadow: none;
  color: #393939;
  padding: 8px 15px;
  position: relative;
  display: inline-block;
  z-index: 5;
  text-decoration: none;
}
header nav ul li a:hover {
  color: #000;
  background: #F2DE01;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 3;
  width: 100%;
  max-width: none;
  z-index: 4;
  padding-top: 10px;
}
header.scrolled div.wrapper {
  width: 1100px;
  margin: 0 auto;
}
header.scrolled div.wrapper ul {
  margin-bottom: 0;
}
header.scrolled .logo img {
  width: 150px;
}
header.sticky.reference-page {
  padding: 20px 0;
}
header.sticky.reference-page div.wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
header.sticky.reference-page div.wrapper ul.navbar-collapse {
  margin-bottom: 0;
}
.web-wrapper {
  background: #faf3f3 url(../img/bg-top.png) top center no-repeat;
  background-size: contain;
  width: 1100px;
  margin: -187px auto 0 auto;
  padding-top: 187px;
}
section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
section .cta {
  margin: 30px auto 120px;
  text-align: center;
  display: inline-block;
}
section .cta a.button {
  padding: 20px 40px;
  font-size: 20px;
}
/* -------------------- O NÁS -------------------- */
section#onas {
  display: flex;
  gap: 130px;
  align-items: flex-start;
  padding-top: 80px;
}
section#onas .about {
  flex: 1 1 auto;
}
section#onas .partners {
  flex: 0 0 220px;
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 40px 50px;
}
section#onas .partners h3 {
  border-bottom: 1px dashed #D9D9D9;
  margin-bottom: 0;
}
section#onas .partners img {
  margin-top: 40px;
}
section#onas .partners p {
  line-height: 1.3;
  margin: 20px 0 0;
}
section#onas .partners p strong {
  display: block;
}
section#onas .partners p a {
  font-family: 'Thabit Bold';
}
/* -------------------- SLUŽBY -------------------- */
section#sluzby {
  padding-top: 80px;
}
section#sluzby .services {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
section#sluzby .services nav.bookmarks {
  flex: 0 0 180px;
  min-width: 150px;
  margin-top: 25px;
}
section#sluzby .services nav.bookmarks span {
  background: #E1DFE3;
  display: block;
  margin-bottom: 10px;
  padding: 22px 0;
  width: 100%;
  text-align: center;
  font-family: "Bungee", sans-serif;
  font-size: 18px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
section#sluzby .services nav.bookmarks span:hover {
  background: #D9D9D9 !important;
  transition: 0.3s;
}
section#sluzby .services nav.bookmarks .smaller {
  font-size: 15px;
}
section#sluzby .services nav.bookmarks .active {
  background: #F4E33E;
}
section#sluzby .services nav.bookmarks .active:hover {
  background: #F4E33E !important;
}
section#sluzby .services #tab-contents {
  width: 100%;
}
section#sluzby .services #tab-contents .tabtxt.active {
  flex: 1 1 auto;
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 60px 35px;
  -webkit-box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
}
section#sluzby .services #tab-contents .tabtxt.active .text {
  flex: 1 1 auto;
  min-width: 0;
}
section#sluzby .services #tab-contents .tabtxt.active .text ul,
section#sluzby .services #tab-contents .tabtxt.active .text ol {
  margin-left: 40px;
}
section#sluzby .services #tab-contents .tabtxt.active .text ul li,
section#sluzby .services #tab-contents .tabtxt.active .text ol li {
  margin-bottom: 10px;
}
section#sluzby .services #tab-contents .tabtxt.active .sidebar {
  flex: 0 0 320px;
  width: auto !important;
  align-self: flex-start;
}
section#sluzby .services #tab-contents .tabtxt.active .sidebar img {
  display: block;
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}
/* -------------------- LIDÉ -------------------- */
section#lide {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  padding-top: 80px;
  margin-bottom: 80px;
}
section#lide .osoba {
  flex: 1 1 35%;
  min-width: 280px;
}
section#lide .osoba h2 {
  font-size: 35px;
  font-family: "Bungee Inline", sans-serif;
  font-weight: 400;
  font-style: normal;
}
section#lide .osoba p {
  color: #333;
}
section#lide .osoba p strong {
  font-weight: bold;
}
section#lide .osoba p a {
  margin-top: .5rem;
  font-weight: bold;
}
/* -------------------- REFERENCE -------------------- */
section#reference {
  background: #f4e25e url(../img/bg-top.png) top center no-repeat;
  background-size: cover;
  width: 100%;
  max-width: none;
  text-align: center;
}
section#reference .wrapper {
  width: 100%;
  max-width: 1024px;
  padding: 80px 0;
  margin: 0 auto;
}
section#reference .wrapper h2 {
  font-family: "Bungee Inline", sans-serif;
  font-size: 60px;
  font-weight: 400;
  font-style: normal;
}
section#reference .wrapper .soutez {
  background: #FFFFFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
  padding: 40px 60px;
  display: flex;
  text-align: left;
  width: 72%;
  margin: 40px auto;
  align-items: center;
  gap: 40px;
}
section#reference .wrapper .soutez img {
  width: 109px;
  height: 48px;
}
section#reference .wrapper .soutez p {
  flex: 1 1 auto;
  margin: 0;
  line-height: 1.4;
}
section#reference .wrapper ul.cards {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
section#reference .wrapper ul.cards li {
  flex: 0 0 calc(40%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  list-style: none;
  height: 230px;
  -webkit-box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.02);
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.2);
}
section#reference .wrapper ul.cards li a {
  display: flex;
  height: 100%;
  width: 100%;
  color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  align-items: center;
  position: relative;
  box-shadow: none;
}
section#reference .wrapper ul.cards li a span.black {
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: #333;
  position: absolute;
  z-index: 2;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
section#reference .wrapper ul.cards li a span.bg {
  width: 100%;
  height: 100%;
  opacity: 1;
  background: #000;
  position: absolute;
  z-index: 1;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
section#reference .wrapper ul.cards li a h3 {
  font-size: 40px;
  font-family: "Bungee Inline", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  display: inline-block;
  margin: 0;
  width: 100%;
  position: relative;
  z-index: 3;
}
section#reference .wrapper ul.cards li a:hover span.bg {
  opacity: 0.95;
}
section#reference .wrapper ul.cards li:nth-child(5) {
  margin-left: auto;
  margin-right: auto;
}
section#reference .wrapper ul.cards li.vyznamne span.bg {
  background: url(../img/reference-vyznamne.jpg) top center no-repeat;
  background-size: cover;
}
section#reference .wrapper ul.cards li.pevna span.bg {
  background: url(../img/reference-pevna.jpg) top center no-repeat;
  background-size: cover;
}
section#reference .wrapper ul.cards li.plyn span.bg {
  background: url(../img/reference-plyn.jpg) top center no-repeat;
  background-size: cover;
}
section#reference .wrapper ul.cards li.cerpadla span.bg {
  background: url(../img/reference-cerpadla.jpg) top center no-repeat;
  background-size: cover;
}
section#reference .wrapper ul.cards li.ostatni span.bg {
  background: url(../img/reference-ostatni.jpg) top center no-repeat;
  background-size: cover;
}
/* Po filtrování nechci nikdy "visibility:hidden" od WOW.js */
.zakazka,
.zakazka.wow {
  visibility: visible !important;
}
section#reference.seznam-reference {
  background-attachment: fixed;
  background-size: contain;
}
section#reference.seznam-reference div.wrapper {
  width: 55%;
  text-align: left;
  max-width: none;
}
section#reference.seznam-reference div.top ul li {
  margin-bottom: 20px;
}
section#reference.seznam-reference div.top ul li strong {
  display: block;
}
section#reference.seznam-reference div.top,
section#reference.seznam-reference div.zakazka {
  background: #FFFFFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
  padding: 40px 5%;
  text-align: left;
  width: 90%;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}
section#reference.seznam-reference div.top img,
section#reference.seznam-reference div.zakazka img {
  width: 109px;
  height: 48px;
}
section#reference.seznam-reference div.top p,
section#reference.seznam-reference div.zakazka p {
  flex: 1 1 auto;
  margin: 0 0 40px 0;
  line-height: 1.4;
}
section#reference.seznam-reference div.top ul,
section#reference.seznam-reference div.zakazka ul {
  margin-left: 20px;
}
section#reference.seznam-reference div.top ul.gallery,
section#reference.seznam-reference div.zakazka ul.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  margin-left: 0;
}
section#reference.seznam-reference div.top ul.gallery li,
section#reference.seznam-reference div.zakazka ul.gallery li {
  display: flex;
}
section#reference.seznam-reference div.top ul.gallery li:hover,
section#reference.seznam-reference div.zakazka ul.gallery li:hover {
  box-shadow: none;
}
section#reference.seznam-reference div.top ul.gallery a,
section#reference.seznam-reference div.zakazka ul.gallery a {
  box-shadow: none;
}
section#reference.seznam-reference div.top ul.gallery a img,
section#reference.seznam-reference div.zakazka ul.gallery a img {
  width: 150px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  height: auto;
}
section#reference.seznam-reference div.top ul.gallery a img:hover,
section#reference.seznam-reference div.zakazka ul.gallery a img:hover {
  opacity: 0.95;
}
section#reference.seznam-reference div.top h3,
section#reference.seznam-reference div.zakazka h3 {
  margin-bottom: 20px;
  padding-right: 17%;
}
section#reference.seznam-reference div.top h3 small,
section#reference.seznam-reference div.zakazka h3 small {
  font-family: 'Thabit Oblique';
  font-size: 18px;
  display: block;
  margin-top: 5px;
  text-transform: none;
}
section#reference.seznam-reference div.top span.tag,
section#reference.seznam-reference div.zakazka span.tag {
  padding-top: 155px;
  background: #1A9C4D;
  width: 200px;
  height: 45px;
  display: block;
  position: absolute;
  top: -100px;
  right: -100px;
  transform: rotate(45deg);
  text-align: center;
  color: #fff;
  font-family: 'Thabit Bold';
  font-size: 16px;
}
section#reference.seznam-reference div.top span.tag.pevna,
section#reference.seznam-reference div.zakazka span.tag.pevna {
  background: #715748;
  padding-top: 140px;
  height: 60px;
}
section#reference.seznam-reference div.top span.tag.plyn,
section#reference.seznam-reference div.zakazka span.tag.plyn {
  background: #FFE000;
  color: #333;
}
section#reference.seznam-reference div.top span.tag.cerpadla,
section#reference.seznam-reference div.zakazka span.tag.cerpadla {
  background: #3895D3;
}
section#reference.seznam-reference div.top span.tag.ostatni,
section#reference.seznam-reference div.zakazka span.tag.ostatni {
  background: #ccc;
  color: #333;
}
section#reference.seznam-reference div.filters ul li {
  display: inline-block;
  border: 2px solid #000000;
  padding: 5px 15px;
  margin-right: 0px;
  margin-left: 0;
  margin-bottom: 10px;
  font-family: "Bungee Inline", sans-serif;
  font-size: 14px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
section#reference.seznam-reference div.filters ul li:hover {
  cursor: pointer;
  background: #fff;
}
section#reference.seznam-reference div.filters ul li.active {
  border: 2px solid #000000;
  background: #000;
  color: #fff;
}
div.cta {
  margin-top: 0;
}
div.cta h2 {
  font-size: 40px;
  width: 60%;
  margin: 0 auto 40px auto;
}
div.cta a {
  font-size: 28px;
  font-family: 'Bungee';
}
div.cta strong {
  display: block;
  margin-bottom: 40px;
}
/* -------------------- KONTAKT -------------------- */
section#kontakt {
  padding: 80px 0 75px;
  background: #FAF3F3;
}
section#kontakt .contacts_wrapper {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
section#kontakt .contacts_wrapper .person {
  flex: 1 1 30%;
  min-width: 280px;
}
section#kontakt .contacts_wrapper .person h3 {
  color: #1A9C4D;
  margin: 0 0 5px;
}
section#kontakt .contacts_wrapper .person strong {
  margin: 0 0 24px;
  display: inline-block;
  color: #333;
  font-family: 'Thabit Bold Oblique';
}
section#kontakt .contacts_wrapper .person h4 {
  margin: 0 0 10px;
  font-family: 'Thabit Bold Oblique';
}
section#kontakt .contacts_wrapper .person p.phone {
  margin-bottom: 0;
}
section#kontakt .contacts_wrapper .person p.phone a {
  color: #393939;
  box-shadow: none;
  font-family: 'Thabit Bold Oblique';
}
section#kontakt .contacts_wrapper .person address {
  margin-bottom: 24px;
}
section#kontakt .place {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
section#kontakt .place a.ottova {
  flex: 1 1 30%;
  max-width: 350px;
  position: relative;
  box-shadow: none;
  color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
}
section#kontakt .place a.ottova:hover {
  opacity: 0.95;
}
section#kontakt .place a.ottova img {
  width: 100%;
  position: absolute;
  z-index: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
section#kontakt .place a.ottova h3 {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  padding: 0 40px;
  font-size: 30px;
  text-align: center;
}
section#kontakt .place a.ottova h3 strong {
  margin-top: 100px;
  display: block;
  height: 40px;
}
section#kontakt .place .map {
  flex: 1 1 auto;
}
section#kontakt .place .map h4 {
  font-size: 28px;
  margin-bottom: 0;
  font-family: "Bungee Inline", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
section#kontakt .place .map iframe {
  margin-top: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  min-height: 425px;
}
/* -------------------- FOOTER -------------------- */
footer section {
  border-top: 1px dashed #D9D9D9;
  margin: 0 auto 80px;
  padding-top: 20px;
  font-size: 28px;
  color: #000;
  font-family: "Bungee Hairline", sans-serif;
  text-align: center;
}
/* -------------------- TABS (NAV/CONTENTS) -------------------- */
#tab-nav span.tabnav {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
#tab-nav span.active {
  background: #FCF19F;
  color: #333;
}
#tab-contents .tabtxt {
  display: none;
}
#tab-contents .active {
  display: block;
}
/* -------------------- MEDIA -------------------- */
@media (max-width: 1100px) {
  section {
    width: 100%;
    padding: 40px 0;
    max-width: none;
  }
  header {
    width: 90%;
    padding: 40px 5%;
    max-width: none;
  }
  header.scrolled {
    padding: 10px 5% 0 5%;
    width: 90%;
  }
  header.scrolled div.wrapper {
    width: 100%;
  }
  section#reference.seznam-reference div.wrapper {
    width: 80%;
  }
  header.scrolled.reference-page {
    width: 90%;
    padding: 10px 5% 0 5%;
  }
  div.web-wrapper {
    width: 90%;
    padding: 0 5% 40px 5%;
    margin-top: -207px !important;
    padding-top: 207px;
  }
  section#kontakt div.contacts_wrapper,
  section#kontakt div.place {
    width: 90%;
    padding: 0 5% 40px 5%;
  }
}
@media (max-width: 990px) {
  header {
    width: 94%;
    padding: 40px 3%;
  }
  header a.logo img {
    width: 200px;
    padding: 10px 0;
  }
  header nav ul li {
    font-size: 16px;
  }
  header nav ul li a {
    padding: 5px 8px;
  }
  div.web-wrapper {
    width: 94%;
    padding: 0 3% 40px 3%;
    margin-top: -207px !important;
    padding-top: 207px;
  }
  .modal-window > .modal-content {
    width: 75%;
    padding: 20px 15% 40px 5%;
  }
  .modal-close {
    right: -15%;
    margin-right: -25%;
  }
  h2 {
    font-size: 30px;
  }
  p,
  ul,
  ol {
    font-size: 16px;
    line-height: 1.5;
  }
  section#onas {
    gap: 5%;
    padding-top: 0px;
  }
  section#onas div.about {
    flex: 0 1 100%;
  }
  section#onas div.partners {
    flex: 1 1 auto;
  }
  section#sluzby div.services nav.bookmarks {
    flex: 0 0 150px;
  }
  section#sluzby div.services nav.bookmarks span.tabnav {
    padding: 10px 10px;
    width: 90%;
    padding: 10px 5%;
  }
}
@media (max-width: 900px) {
  section#sluzby div.services #tab-contents div.tabtxt.active {
    flex-direction: column;
  }
  section#reference.seznam-reference div.wrapper {
    width: 90%;
    padding-top: 20px;
  }
  section#kontakt div.place {
    flex-direction: column;
    gap: 0;
  }
  section#kontakt div.place a.ottova {
    order: 2;
    flex: 1 1 100%;
    margin: 0 auto;
  }
  section#kontakt div.place div.map {
    order: 1;
    flex: 1 1 100%;
    width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 700px) {
  header div.wrapper {
    justify-content: space-between;
  }
  header a.logo img,
  header header.scrolled a.logo img {
    width: 140px;
  }
  header #page-nav li {
    font-size: 13px;
  }
  header #page-nav li span {
    margin: -3px 0 0 0;
  }
  header #page-nav li.cta a {
    font-size: 13px;
    padding: 5px;
  }
  header .headline {
    width: 80%;
    padding: 20px 5%;
    left: 5%;
  }
  header .headline h1 {
    font-size: 25px;
  }
  header .headline p {
    font-size: 14px;
  }
  footer section {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  section#onas {
    flex-direction: column;
  }
  section#onas div.partners {
    width: 90%;
    padding: 40px 5%;
  }
  section#lide {
    margin-bottom: 0;
    gap: 40px;
    padding-top: 40px;
  }
  section#lide .osoba h2 {
    font-size: 30px;
  }
  section#reference .wrapper h2 {
    font-size: 30px;
  }
  section#reference {
    flex-direction: column;
    width: 90%;
    padding: 40px 5%;
  }
  section#reference div.wrapper ul.cards {
    flex-direction: column;
  }
  section#reference div.wrapper ul.cards li {
    height: auto;
    flex: 1 1 100%;
    width: 100%;
  }
  section#reference div.wrapper ul.cards li a {
    min-height: 200px;
  }
  section#reference.seznam-reference div.wrapper {
    width: 100%;
  }
  /* Show Hamburger */
  #page-nav {
    margin-top: 0;
    position: relative;
  }
  #page-nav label {
    display: inline-block;
    color: #333;
    background: #fff;
    font-style: normal;
    font-size: 40px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 1px 10px 5px 10px;
  }
  #page-nav label:hover {
    cursor: pointer;
    color: #1A9C4D;
    transition: 0.3s;
  }
  /* Break down menu items into vertical */
  #page-nav ul {
    position: absolute;
    top: 50px;
    right: 00px;
    background: #fff;
    min-width: 200px;
    -webkit-border-radius: 10px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-topright: 0;
    border-radius: 10px;
    border-top-right-radius: 0;
    z-index: 10;
  }
  #page-nav ul li {
    display: block;
    background: #fff;
    color: #000;
    margin: 0;
    padding: 0;
    font-size: 16px;
    text-align: left;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  #page-nav ul li a {
    color: #000;
    display: block;
    padding: 12px 0 8px 20px;
  }
  #page-nav ul li a:hover {
    background: #f4e25e;
  }
  #page-nav ul.navbar-collapse {
    display: none;
  }
  #page-nav ul li.home {
    margin-top: 0;
    float: none;
  }
  #page-nav ul li.home a {
    font-size: 16px;
  }
  /* Toggle show/hide menu on checkbox click */
  #page-nav ul {
    display: none;
  }
  #page-nav input:checked ~ ul {
    display: block;
  }
}
@media (max-width: 580px) {
  section#reference.seznam-reference div.top ul.gallery,
  section#reference.seznam-reference div.zakazka ul.gallery {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  section#reference.seznam-reference div.top ul.gallery li,
  section#reference.seznam-reference div.zakazka ul.gallery li {
    flex: 0 1 calc(50% - 10px);
  }
  section#reference.seznam-reference div.top ul.gallery li a,
  section#reference.seznam-reference div.zakazka ul.gallery li a {
    width: 100%;
  }
  section#reference.seznam-reference div.top ul.gallery li a img,
  section#reference.seznam-reference div.zakazka ul.gallery li a img {
    width: 100%;
    height: 100%;
  }
  section#reference div.wrapper {
    padding: 20px 0;
  }
  section#reference div.wrapper div.soutez {
    flex-direction: column;
    width: 80%;
    padding: 40px 10%;
  }
  section#sluzby h2 {
    text-align: center;
  }
  section#sluzby .services {
    display: block;
  }
  section#sluzby .services nav.bookmarks .smaller {
    font-size: 18px;
  }
  section#sluzby .services span.tabnav {
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    border-radius: 10px !important;
  }
  section#sluzby .services #tab-contents .tabtxt.active {
    padding: 40px 5%;
  }
  #page-nav ul.navbar-collapse .hide-mobile {
    display: none;
  }
  section#lide div.osoba {
    width: 90%;
    padding: 0 5%;
  }
}
@media (max-width: 550px) {
  section#reference.seznam-reference div.zakazka h3 {
    padding-right: 25%;
  }
}
@media (max-width: 420px) {
  header a.logo img {
    width: 120px;
  }
  section#kontakt {
    padding-bottom: 20px;
  }
  section#kontakt div.place div.map {
    margin-bottom: 20px;
  }
  section#kontakt div.place a.ottova {
    max-width: none;
    width: 100%;
  }
  footer section {
    font-size: 20px;
  }
  section#reference.seznam-reference div.filters ul li {
    padding: 4px 8px;
    margin: 0 0 5px -5px;
  }
  div.cta h2,
  div.cta a {
    font-size: 26px;
  }
  section#kontakt div.place a.ottova {
    margin: 0 auto 150px auto;
  }
}
@media (max-width: 380px) {
  section#kontakt .place a.ottova h3 {
    font-size: 22px;
    margin-top: 50px;
  }
}
