@charset "UTF-8";
/**
@author: Ján Priskin
@copyright www.priskin.sk
**/
:root {
  --vh-offset: 0px;
  --vh: 1vh;
}

@font-face {
  font-family: 'Cooper Hewitt';
  src: url("../fonts/CooperHewitt-Heavy.woff2") format("woff2"), url("../fonts/CooperHewitt-Heavy.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cooper Hewitt';
  src: url("../fonts/CooperHewitt-Book.woff2") format("woff2"), url("../fonts/CooperHewitt-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url("../fonts/Oswald-HeavyItalic.woff2") format("woff2"), url("../fonts/Oswald-HeavyItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

html,
body {
  height: 100%;
  width: 100%;
  font: normal normal 18px "Cooper Hewitt", serif;
  color: #193348;
}

body {
  margin: 0;
  overflow-x: hidden;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
}

@media screen and (min-width: 3000px) {
  body {
    zoom: calc((100% / 15) * 25);
  }
}

/* ------ */
p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

p a {
  text-decoration: underline;
}

p a:hover {
  text-decoration: none;
}

/* ------ */
hr {
  border: 0;
  background: #000;
  display: block;
  height: 1px;
  margin: 20px 0;
}

/* ------ */
/* CLICKABLES */
a, a:hover, a:focus,
button, button:hover, button:focus,
input[type=submit], input[type=submit]:hover, input[type=submit]:focus {
  text-decoration: none;
  outline: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

[href^="mailto:"] {
  white-space: nowrap;
}

a {
  color: #1ebcd8;
}

a:hover, a:focus {
  text-decoration: underline;
  color: #1ebcd8;
}

/* rounded icon */
a.icon:hover {
  background: #126e7e;
}

.icon {
  border-radius: 50%;
  background: #1ebcd8;
  width: 36px;
  height: 36px;
  line-height: 30px;
  display: inline-block;
  margin-right: 13px;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.icon img {
  max-width: 23px;
  max-height: 20px;
  -o-object-fit: unset;
     object-fit: unset;
}

.icon.in img {
  max-height: 17px;
  margin-top: -2px;
}

.icon-link {
  margin-bottom: 13px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

/* ------ */
/* HEADINGS */
.h1, h1,
.h2, h2,
.h3, h3,
.h4, h4,
.h5, h5,
.h6, h6 {
  margin: 0;
  font-weight: bold;
}

h1, .h1 {
  text-transform: uppercase;
  margin-bottom: 1.15rem;
  font-size: 26px;
  font-size: 1.44444rem;
  font-family: "Oswald", "Cooper Hewitt", serif;
  color: #1ebcd8;
}

h2,
h3 {
  font-size: 1rem;
}

.h2 {
  font-size: 20px;
  font-size: 1.11111rem;
}

@media screen and (min-width: 768px) {
  h1, .h1 {
    margin-bottom: 1.5rem;
    font-size: 38px;
    font-size: 2.11111rem;
  }
  .h2 {
    font-size: 26px;
    font-size: 1.44444rem;
  }
}

/* ------ */
.table {
  border-top: 1px solid #000;
  font-size: 15px;
}

.table th, .table td {
  border-color: #000;
  padding: .45rem 0;
}

@media screen and (min-width: 768px) {
  .table {
    font-size: 1rem;
  }
}

/* ------ */
/* FORM ELEMENTS */
.form-control {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 0 !important;
  border: 0;
  background: #FFF;
  min-height: 35px;
  height: auto;
  padding: 0 .25rem;
  font-size: 20px;
  font-size: 1.11111rem;
  color: #000;
  resize: vertical;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.form-control::-webkit-input-placeholder {
  color: #193348;
}

.form-control:-moz-placeholder {
  color: #193348;
}

.form-control::-moz-placeholder {
  color: #193348;
}

.form-control:-ms-input-placeholder {
  color: #193348;
}

.form-control.is-valid::-webkit-input-placeholder {
  color: #028402;
}

.form-control.is-valid:-moz-placeholder {
  color: #028402;
}

.form-control.is-valid::-moz-placeholder {
  color: #028402;
}

.form-control.is-valid:-ms-input-placeholder {
  color: #028402;
}

.form-control.is-invalid::-webkit-input-placeholder {
  color: #e93631;
}

.form-control.is-invalid:-moz-placeholder {
  color: #e93631;
}

.form-control.is-invalid::-moz-placeholder {
  color: #e93631;
}

.form-control.is-invalid:-ms-input-placeholder {
  color: #e93631;
}

.form-control:focus {
  background: #FFF;
}

textarea.form-control {
  min-height: 35px;
}

.btn {
  border-radius: 3px;
  border: 0;
  min-height: 43px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  place-items: center;
  place-content: center;
  padding: .3612rem 1.75rem .275rem;
  text-transform: uppercase;
  text-decoration: none !important;
  font-size: 20px;
  font-size: 1.11111rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn:before {
  display: none;
}

.btn-default {
  background: #1ebcd8;
  color: #FFF !important;
}

.btn-default:hover, .btn-default:focus, .btn-default:active {
  background: #193348;
}

.btn-primary {
  background: #193348;
  color: #FFF !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: #1ebcd8;
}

.btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
}

/* custom checkbox */
.ccheck {
  display: inline-block;
  position: relative;
  padding-top: 5px;
  padding-left: 34px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Show the checkmark when checked */
  /* checkmark */
  /* Create a custom checkbox */
}

.ccheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.ccheck:hover input ~ .checkmark:after {
  border-color: #1ebcd8;
  opacity: 1;
}

.ccheck input:checked ~ .checkmark:after {
  opacity: 1;
}

.ccheck .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #1ebcd8;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.ccheck .checkmark {
  border-radius: 3px;
  border: 2px solid #1ebcd8;
  background-color: #FFF;
  height: 19px;
  width: 19px;
  position: absolute;
  top: 7px;
  left: 0;
  /* Create the checkmark/indicator (hidden when not checked) */
}

.ccheck .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
}

/* ------ */
/* BOOTSTRAP GRID */
.container {
  max-width: 1480px;
  position: relative;
}

@media screen and (min-width: 1600px) {
  .container {
    padding: 0;
  }
}

/* ------ */
.slick-slider {
  height: 300px;
  max-height: 85vh;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  height: 100%;
}

.slick-slider .slick-slide {
  position: relative;
}

.slick-slider img {
  border-right: 1px solid #FFF;
  max-width: 100vw;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-slider .slick-arrow {
  border: 0;
  background: #1ebcd8 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='20.3' height='27.7' viewBox='0 0 20.3 27.7'%3e%3cpath d='M5.8 27.7L0 21.6l8.1-7.8L0 6.1 5.8 0l14.5 13.8L5.8 27.7z'/%3e%3c/svg%3e") center no-repeat;
  background-size: auto 15px;
  width: 54px;
  height: 43px;
  text-indent: -999em;
  position: absolute;
  z-index: 1;
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

.slick-slider .slick-arrow:hover {
  background-color: #1895ab;
}

.slick-slider .slick-prev {
  right: 111px;
}

.slick-slider .slick-next {
  right: 52px;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.slick-slider .slick-dots {
  list-style: none;
  margin: auto;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  place-content: center;
}

.slick-slider .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 2px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.slick-slider .slick-dots li button {
  border-radius: 50%;
  border: 0;
  background: #FFF;
  width: 13px;
  height: 13px;
  display: block;
  margin: auto;
  padding: 0;
  text-indent: -999em;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.slick-slider .slick-dots li.slick-active button {
  background: #1ebcd8;
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 360px) and (orientation: portrait) {
  .slick-slider {
    height: 500px;
  }
}

@media screen and (min-width: 667px) {
  .slick-slider {
    height: 500px;
  }
}

@media screen and (min-width: 768px) {
  .slick-slider {
    height: 533px;
  }
}

/* ------ */
.img-desc {
  background: rgba(255, 255, 255, 0.75);
  max-width: 330px;
  margin: auto;
  padding: 10px;
  text-align: left;
  color: #000;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 9;
}

.img-desc .h1 {
  display: block;
  margin: 0 !important;
  font-size: 1rem;
  color: #1ebcd8;
}

/* ------ */
/* COOKIEBAR */
#cookiebar {
  border-radius: 0;
  background: #000;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-size: 0.72222rem;
  color: #FFF;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
}

#cookiebar a {
  text-decoration: underline;
  color: #1ebcd8;
}

#cookiebar #cookiebutton {
  background: #1ebcd8;
  height: 34px;
  display: inline-block;
  margin: 0 10px;
  line-height: 34px;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.72222rem;
  color: #FFF;
  text-decoration: none;
}

#cookiebar #cookiebutton:hover, #cookiebar #cookiebutton:focus {
  background-color: #1895ab;
  color: #FFF;
}

/* ------ */
/* MENU - TOGGLE */
#menu-toggle {
  width: 40px;
  height: 40px;
  padding: 6px;
  position: fixed;
  top: 7px;
  right: 10px;
  z-index: 9;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
}

#menu-toggle .nav-icon {
  position: relative;
}

#menu-toggle span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #1ebcd8;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#menu-toggle span:nth-of-type(1) {
  top: 0;
}

#menu-toggle span:nth-of-type(2),
#menu-toggle span:nth-of-type(3) {
  top: 11px;
}

#menu-toggle span:nth-of-type(4) {
  top: 22px;
}

#menu-toggle.open span:nth-of-type(1),
#menu-toggle.open span:nth-of-type(4) {
  width: 0%;
  top: 11px;
  left: 50%;
}

#menu-toggle.open span:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

#menu-toggle.open span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (min-width: 1024px) {
  #menu-toggle {
    display: none !important;
  }
}

/* ------- */
/* NAVBAR */
#navbar {
  background: #193348;
  width: 100%;
  height: 55px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  padding: 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#navbar .logo {
  width: 165px;
  display: block;
  position: absolute;
  top: 12px;
}

#navbar .logo img {
  display: block;
  width: 100%;
  height: 100%;
}

#navbar .by-psn {
  margin-left: 13px;
  position: absolute;
  top: 13px;
  right: 59px;
  display: none;
}

#navbar.open #main-menu {
  opacity: 1;
  visibility: visible;
  right: 0;
}

@media screen and (min-width: 360px) {
  #navbar {
    padding-right: 59px;
  }
  #navbar .by-psn {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  #navbar {
    height: 93px;
    padding: 0 30px;
  }
  #navbar .logo {
    width: 200px;
    position: static;
  }
  #navbar .by-psn {
    top: 27px;
    right: 30px;
  }
  #navbar nav {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-right: 110px;
  }
}

@media screen and (min-width: 1200px) {
  #navbar {
    padding: 0 59px;
  }
  #navbar .logo {
    width: 283px;
  }
  #navbar .by-psn {
    right: 59px;
  }
}

/* ------- */
/* MAIN MENU */
#main-menu {
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 55px);
  list-style: none;
  margin: 0;
  padding: 15px 30px 15px;
  text-transform: uppercase;
  text-align: left;
  font-size: 20px;
  font-size: 1.11111rem;
  color: #FFF;
  position: absolute;
  top: 55px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#main-menu > li {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#main-menu > li > a {
  width: 100%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  font-size: inherit;
  color: inherit;
  position: relative;
  word-break: normal;
}

#main-menu > li > a.active, #main-menu > li > a:hover {
  color: #1ebcd8;
}

@media screen and (min-width: 1024px) {
  #main-menu {
    background: none;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    -webkit-box-pack: end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 17px;
    font-size: 0.94444rem;
    position: relative;
    top: 0;
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }
  #main-menu > li {
    width: auto;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0;
  }
  #main-menu > li > a {
    padding: 0 10px;
  }
}

@media screen and (min-width: 1200px) {
  #main-menu > li > a {
    padding: 0 16px;
  }
}

@media screen and (min-width: 1300px) {
  #main-menu {
    font-size: 20px;
    font-size: 1.11111rem;
  }
}

/* ------- */
/* HEADER */
#header {
  width: 100%;
  height: 100vh;
  margin-top: 55px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
}

#header:before {
  content: "";
  background: rgba(255, 255, 255, 0.68);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#header .holder {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  place-content: center;
  margin: auto;
  padding: 0 60px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-transform: translateY(-59%);
      -ms-transform: translateY(-59%);
          transform: translateY(-59%);
}

#header h1 {
  margin-bottom: 40px;
  line-height: 1.18;
  color: #193348;
}

#header h1 strong {
  display: block;
  text-transform: none;
  letter-spacing: -4px;
  font-size: 48px;
  font-size: 2.66667rem;
  color: #1ebcd8;
}

#header .btn {
  -ms-flex-item-align: center;
      align-self: center;
}

#header .bg-image,
#header .bg-video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

@media screen and (min-width: 1024px) {
  #header {
    margin-top: 93px;
  }
  #header .holder {
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #header h1 {
    margin-bottom: 106px;
    font-size: 36px;
    font-size: 2rem;
  }
  #header h1 strong {
    font-size: 135px;
    font-size: 7.5rem;
  }
}

/* ------- */
/* PROJEKT */
.prostory .row:nth-child(2) {
  border-top: 1px solid #FFF;
}

.prostory .row:nth-child(2) .text-block {
  background: #193348;
  color: #FFF;
}

.prostory .text-block {
  width: 100%;
  height: 100%;
  padding: 30px 15px;
}

.prostory .text-block .h1 {
  margin-bottom: 36px;
}

.prostory .text-block p {
  margin-bottom: 56px;
}

.prostory img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 576px) {
  .prostory .text-block {
    padding: 30px;
  }
}

@media screen and (min-width: 720px) {
  .prostory .text-block {
    padding: 60px 38px 20px 37px;
  }
}

@media screen and (min-width: 1024px) {
  .prostory .text-block {
    padding: 116px 110px 82px 58px;
    position: static;
  }
  .prostory .row:nth-child(2) .col:nth-of-type(2) {
    -webkit-box-ordinal-group: 2;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .prostory .row:nth-child(2) .col:nth-of-type(1) {
    -webkit-box-ordinal-group: 3;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .prostory .row:nth-child(2) .text-block {
    background: #193348;
    padding-left: 101px;
    color: #FFF;
  }
}

@media screen and (min-width: 1600px) {
  .prostory .text-block {
    min-height: 600px;
    padding-right: 220px;
  }
}

/* ------ */
#nabidka {
  border-top: 1px solid #FFF;
  background: #E6ECF2;
  position: relative;
}

#nabidka:before, #nabidka:after {
  content: "";
  background: #FFF;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: .85;
}

#nabidka:before {
  left: 0;
}

#nabidka:after {
  right: 0;
  opacity: 0;
}

#nabidka .list-floors {
  list-style: none;
  padding: 30px 0;
  margin: 0 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
     -moz-box-orient: vertical;
     -moz-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

#nabidka .list-floors li {
  padding: 15px;
  text-align: center;
}

#nabidka .list-floors li + li {
  border-bottom: 1px solid #1ebcd8;
}

#nabidka .list-floors li:nth-child(1) {
  bottom: 48px;
  left: 40px;
}

#nabidka .list-floors li:nth-child(1):before {
  top: 71%;
  left: calc(100% + 15px);
}

#nabidka .list-floors li:nth-child(2) {
  bottom: 138px;
  right: 20px;
}

#nabidka .list-floors li:nth-child(2):before {
  top: 71%;
  right: calc(100% + 10px);
}

#nabidka .list-floors li:nth-child(3) {
  bottom: 143px;
  left: 40px;
}

#nabidka .list-floors li:nth-child(3):before {
  top: 64%;
  left: calc(100% + 15px);
}

#nabidka .list-floors li:nth-child(4) {
  bottom: 275px;
  right: 20px;
}

#nabidka .list-floors li:nth-child(4):before {
  top: 91%;
  right: calc(100% + 10px);
}

#nabidka .list-floors li:nth-child(5) {
  bottom: 260px;
  left: 40px;
}

#nabidka .list-floors li:nth-child(5):before {
  top: 90%;
  left: calc(100% + 15px);
}

#nabidka .list-floors li:nth-child(6) {
  bottom: 378px;
  right: 20px;
}

#nabidka .list-floors li:nth-child(6):before {
  top: 64%;
  right: calc(100% + 10px);
}

#nabidka .list-floors strong {
  display: inline-block;
  padding-bottom: 7px;
  text-transform: uppercase;
  font-family: "Oswald", "Cooper Hewitt", serif;
  font-size: 20px;
  font-size: 1.11111rem;
  color: #1ebcd8;
}

#nabidka img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

@media screen and (min-width: 1024px) {
  #nabidka:before, #nabidka:after {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #FFF), to(transparent));
    background: linear-gradient(to right, #FFF 50%, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
    width: 50%;
    z-index: 0;
    opacity: .85;
  }
  #nabidka:after {
    -webkit-transform: scale(-1);
        -ms-transform: scale(-1);
            transform: scale(-1);
  }
  #nabidka .list-floors {
    margin: 0;
    padding: 0;
    display: block;
  }
  #nabidka .list-floors li {
    border: 0 !important;
    width: 240px;
    padding: 0;
    text-align: left;
    position: absolute;
    z-index: 1;
  }
  #nabidka .list-floors li:before {
    content: "";
    background: #1ebcd8;
    width: 50px;
    height: 1px;
    position: absolute;
  }
  #nabidka .list-floors li:nth-child(1),
  #nabidka .list-floors li:nth-child(3),
  #nabidka .list-floors li:nth-child(5) {
    text-align: right;
  }
  #nabidka img {
    height: 533px;
    position: static;
  }
}

@media screen and (min-width: 1200px) {
  #nabidka:before, #nabidka:after {
    width: 40%;
  }
  #nabidka .list-floors li:before {
    width: 160px;
  }
}

@media screen and (min-width: 1300px) {
  #nabidka:before, #nabidka:after {
    opacity: .5;
  }
  #nabidka .list-floors li:before {
    width: 200px;
  }
}

@media screen and (min-width: 1400px) {
  #nabidka .list-floors li:before {
    width: 250px;
  }
}

@media screen and (min-width: 1600px) {
  #nabidka:before, #nabidka:after {
    display: none;
  }
}

@media screen and (min-width: 1920px) {
  #nabidka .list-floors {
    width: 100%;
    max-width: 1500px;
    height: 100%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }
  #nabidka img {
    max-width: 100%;
    -o-object-fit: none;
       object-fit: none;
  }
}

/* ------ */
/* VYMERY */
#vymery {
  border: 1px solid #FFF;
  border-width: 1px 0;
  position: relative;
}

#vymery .h1 {
  color: #FFF;
}

#vymery .text-block {
  background: rgba(30, 188, 216, 0.81);
  width: 100%;
  height: 100%;
  padding: 60px 55px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #193348;
  position: relative;
  z-index: 1;
}

#vymery .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#vymery .count {
  margin-bottom: 15px;
  font-family: "Oswald", "Cooper Hewitt", serif;
  font-size: 40px;
  font-size: 2.22222rem;
}

#vymery .input-group-text {
  position: absolute;
  top: 0;
  left: 0;
}

#vymery .input-group-text:last-of-type {
  left: auto;
  right: 0;
}

#vymery .form-range {
  margin-top: 25px;
}

#vymery .btn:hover {
  background: #000;
}

@media (min-width: 560px) and (orientation: landscape) and (min-width: 920px) {
  #vymery .input-group {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #vymery .input-group-text {
    position: static;
  }
  #vymery .form-range {
    width: 65%;
    margin: 0 10px;
  }
}

@media screen and (min-width: 1024px) {
  #vymery .h1 {
    margin-bottom: 12px;
  }
  #vymery .text-block {
    padding: 106px 55px 96px;
  }
  #vymery .count {
    font-size: 80px;
    font-size: 4.44444rem;
  }
}

@media screen and (min-width: 1600px) {
  #vymery .input-group-text {
    font-size: 1rem;
  }
}

/* ------ */
.in-block {
  width: 100%;
  margin-bottom: 20px;
  padding: 15px 0;
}

.in-block .label {
  margin-bottom: 2px;
  overflow: hidden;
}

.in-block .label .count,
.in-block .label .rate {
  float: right;
}

.in-block .cradio {
  display: inline-block;
}

.in-block .input-group {
  margin-top: 14px;
}

.in-block .input-group-text {
  font-size: 14px;
  font-size: 0.77778rem;
  color: #FFF;
}

.input-group {
  margin-top: 20px;
}

.input-group-text {
  border-radius: 0;
  border: 0;
  background: none;
  padding: 0;
  font-size: 15px;
  font-size: 0.83333rem;
  color: #193348;
}

.form-range {
  -webkit-appearance: none;
  width: 100%;
  overflow: hidden;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 50%;
  background: #193348;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  cursor: pointer;
}

.form-range::-moz-range-thumb {
  border-radius: 50%;
  background: #193348;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  cursor: pointer;
}

.form-range::-webkit-slider-runnable-track {
  border-radius: 30px;
  border: 1px solid #FFF;
  background: #FFF;
  width: 100%;
  height: 30px;
  padding: 0 1px;
  cursor: pointer;
}

.form-range::-moz-range-track {
  border-radius: 30px;
  border: 1px solid #FFF;
  background: #FFF;
  width: 100%;
  height: 30px;
  padding: 0 1px;
  cursor: pointer;
}

/* ------ */
/* GALERIE */
#galerie {
  border-top: 1px solid #FFF;
  padding: 0;
  position: relative;
}

#galerie .img-desc {
  background: rgba(255, 255, 255, 0.75);
  max-width: 330px;
  margin: auto;
  padding: 10px;
  text-align: left;
  color: #000;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 9;
}

#galerie .img-desc .h1 {
  display: block;
  margin: 0 !important;
  font-size: 1rem;
  color: #1ebcd8;
}

#galerie .slick-slider .slick-arrow {
  border-radius: 0 5px 5px 0;
  top: 25px;
}

#galerie .slick-slider .slick-prev {
  right: 79px;
}

#galerie .slick-slider .slick-next {
  right: 25px;
}

@media screen and (min-width: 568px) {
  #galerie .slick-slider .slick-arrow {
    top: 50%;
  }
  #galerie .slick-slider .slick-prev {
    right: 50%;
  }
  #galerie .slick-slider .slick-next {
    left: 50%;
  }
}

/* ------ */
/* CONTACT */
#kontakt {
  border-top: 1px solid #FFF;
}

#kontakt .flash.info {
  margin-bottom: 20px;
  font-weight: bold;
}

#kontakt a {
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}

#kontakt form {
  width: 100%;
  height: 100%;
  padding: 30px 15px;
}

#kontakt form .h1 {
  margin-bottom: 50px;
}

#kontakt form .row {
  margin: 0 -11px;
}

#kontakt form .row > [class*=col] {
  padding-right: 11px;
  padding-left: 11px;
}

#kontakt .form-control {
  border-bottom: 1px solid #1ebcd8;
  background: none;
  margin-bottom: 45px;
}

#kontakt .ccheck {
  margin: -3px 0 43px;
  text-align: left;
}

#kontakt .btn {
  min-width: 219px;
}

#kontakt #gdpr_info {
  font-size: 13px;
}

#kontakt #map {
  background: #f0f0f2;
  height: 100vh;
  height: calc(100vh - (55px - var(--vh-offset)));
  max-height: 720px;
}

@media screen and (min-width: 600px) {
  #kontakt .form {
    padding: 30px;
  }
}

@media screen and (min-width: 768px) {
  #kontakt form {
    padding: 42px 38px 20px 37px;
  }
}

@media screen and (min-width: 1024px) {
  #kontakt form {
    padding: 120px 80px 82px 59px;
    position: static;
  }
}

/* ------ */
#login {
  margin-top: 120px;
  margin-bottom: 120px;
  text-align: center;
}

#login .content {
  width: 100%;
  margin: 0 auto;
}

#login table {
  margin: 0 auto;
}

#login label {
  padding-right: 10px;
}

#login .btn {
  width: 100%;
}

/* ------ */
/* FOOTER */
#footer {
  background: #193348;
  background-size: cover;
  padding: 30px;
  text-align: center;
  color: #FFF;
  position: relative;
  z-index: 1;
}

#footer [class^=col]:first-of-type .holder {
  margin-top: -10px;
}

#footer .holder {
  display: inline-block;
}

#footer .logo {
  max-width: none;
  width: 109px;
  height: 39px;
  margin-bottom: 28px;
  display: inline-block;
}

#footer .logo img {
  max-width: 100%;
  height: auto;
}

#footer p {
  line-height: 1.2;
}

#footer .social {
  margin-bottom: 15px;
  display: block;
}

#footer .social .icon {
  margin: 0 8px 5px 0;
}

#footer .icon-link {
  margin-bottom: 13px;
}

#footer .icon-link img {
  margin-top: -1px;
}

#footer [data-toggle] {
  text-transform: lowercase;
}

#footer a {
  text-decoration: underline;
  color: inherit;
}

#footer .title {
  display: block;
  font-weight: normal;
}

#footer form {
  max-width: 252px;
  padding-top: 8px;
}

#footer .input-group {
  padding-top: 15px;
}

#footer .form-control {
  border-radius: 3px !important;
  background: #FFF;
  height: 39px;
  padding-left: 9px;
  font-size: 18px;
  font-size: 1rem;
}

#footer .btn {
  background: none;
  height: 39px;
  width: 33px;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  place-content: center;
  position: absolute;
  right: 0;
  z-index: 3;
}

#footer .btn .svg {
  width: 7px;
}

#footer .btn path {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#footer .btn:hover path {
  fill: #193348;
}

#footer small {
  display: block;
  margin-top: 15px;
  line-height: 1.2;
  font-size: 14px;
  font-size: 0.77778rem;
  color: #8195a5;
}

@media screen and (min-width: 600px) {
  #footer {
    padding: 30px 15px;
    text-align: left;
  }
  #footer .footer-top {
    text-align: center;
  }
}

@media screen and (min-width: 960px) {
  #footer {
    min-height: 291px;
    padding: 74px 30px 30px;
  }
}

@media screen and (min-width: 1300px) {
  #footer .holder {
    display: block;
  }
  #footer form {
    float: right;
  }
}

@media screen and (min-width: 1600px) {
  #footer {
    padding-left: 59px;
    padding-right: 59px;
  }
}

@media screen and (min-width: 1920px) {
  #footer .col-lg-3 {
    padding-left: 50px;
    padding-right: 50px;
  }
  #footer .col-lg-3:first-of-type {
    padding-left: 15px;
  }
  #footer .col-lg-3:last-of-type {
    padding-right: 15px;
  }
}

/* ----------- */
/* ------ */
main {
  background: #FFF;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

section {
  position: relative;
}

/* ------ */
.por {
  z-index: 1;
}

.por img,
.por video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------ */

/*# sourceMappingURL=style.css.map */
