@charset "UTF-8";
/**
@author: Ján Priskin
@copyright www.priskin.sk
**/
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;900&display=swap");
:root {
  --vh-offset: 0px;
  --vh: 1vh;
}

@-webkit-keyframes move {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes shrink {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes shrink {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@font-face {
  font-family: "ITC New Baskerville Std";
  src: url("../fonts/NewBaskervilleStd-Roman.woff2") format("woff2"), url("../fonts/NewBaskervilleStd-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ------ */
html,
body {
  width: 100%;
  height: 100%;
  font: normal 400 14px "Fira Sans", sans-serif;
  color: #082d41;
}

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: 166.6666666667%;
  }
}

/* ------ */
p {
  margin-bottom: 2rem;
  line-height: 1.55;
}
p a {
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}

b, strong {
  font-weight: 800;
}

/* ------ */
hr {
  border: 0;
  background: #082d41;
  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-in-out;
  transition: all 0.25s ease-in-out;
}

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

a {
  color: #082d41;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #000;
}

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

h1, .h1 {
  display: inline-block;
  margin: 0 auto 2.025rem;
  letter-spacing: 8px;
  font-weight: 300;
  font-size: 20px;
  font-size: 1.4285714286rem;
  color: #69c5d3;
}
@media screen and (min-width: 600px) {
  h1, .h1 {
    letter-spacing: 14px;
    font-size: 22px;
    font-size: 1.5714285714rem;
  }
}
@media screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 28px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  h1, .h1 {
    letter-spacing: 8px;
  }
}
@media screen and (min-width: 1600px) {
  h1, .h1 {
    letter-spacing: 14px;
  }
}

.h2 {
  margin-bottom: 25px;
  font-weight: normal;
  letter-spacing: 3px;
  font-size: 16px;
  font-size: 1.1428571429rem;
  color: #69c5d3;
}

/* ------ */
/* FORM ELEMENTS */
.form-group {
  margin-bottom: 1.35rem;
}

.form-control {
  border-radius: 0 !important;
  border: 1px solid #69c5d3;
  border-width: 0 0 1px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: none;
  height: auto;
  margin-bottom: 29px;
  padding: 0.57rem 2px;
  text-transform: uppercase;
  font: normal 400 16px "Fira Sans", sans-serif;
  letter-spacing: 2px;
  color: #082d41;
  resize: vertical;
}
.form-control::-webkit-input-placeholder {
  color: #082d41;
}
.form-control:-moz-placeholder {
  color: #082d41;
}
.form-control::-moz-placeholder {
  color: #082d41;
}
.form-control:-ms-input-placeholder {
  color: #082d41;
}
.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: #e20613;
}
.form-control.is-invalid:-moz-placeholder {
  color: #e20613;
}
.form-control.is-invalid::-moz-placeholder {
  color: #e20613;
}
.form-control.is-invalid:-ms-input-placeholder {
  color: #e20613;
}
.form-control:focus {
  border-color: #082d41;
  background: none;
}

.btn {
  border-radius: 0;
  border: 1px solid #082d41;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: #082d41;
  padding: 0.3rem 1.5rem 0.2rem;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 16px;
  font-size: 1.1428571429rem;
  color: #FFF;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  outline: none !important;
  cursor: pointer;
}
.btn:hover, .btn:focus, .btn:active {
  border-color: #69c5d3;
  background: #69c5d3;
  color: #FFF;
}

.btn-secondary {
  border-color: #69c5d3;
  background: #69c5d3;
  color: #082d41;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  border-color: #FFF;
  background: #FFF;
  color: #082d41;
}

/* custom checkbox */
.ccheck {
  display: inline-block;
  position: relative;
  padding-top: 5px;
  padding-left: 31px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* 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, .ccheck:hover input ~ .checkmark:after {
  border-color: #082d41;
  opacity: 1;
}
.ccheck input:checked ~ .checkmark:after {
  opacity: 1;
}
.ccheck .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #69c5d3;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.ccheck .checkmark {
  border: 1px solid #69c5d3;
  background-color: none;
  height: 19px;
  width: 19px;
  position: absolute;
  top: 4px;
  left: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.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;
  }
}
@media screen and (min-width: 2500px) {
  .container {
    max-width: none;
  }
}

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

.form-row > .col, .form-row > [class*=col-] {
  padding-right: 10px;
  padding-left: 10px;
}

/* ------ */
.bg-white {
  background: #FFF !important;
}

.bg-gray {
  background: #aab1b4 !important;
}

.bg-secondary {
  background: #69c5d3 !important;
}

/* ------ */
iframe[name=google_conversion_frame] {
  position: absolute;
  bottom: 0;
}

/* ------ */
.table {
  border-top: 1px solid #69c5d3;
  color: #082d41;
}
.table td {
  border-color: #69c5d3;
}

/* ------ */
.nav-tabs {
  border: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav-tabs .nav-link {
  border: 0;
  background: none;
  margin: 2px 35px 5px;
  padding: 2px 0 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.1428571429rem;
  color: #69c5d3;
  position: relative;
  overflow: hidden;
}
.nav-tabs .nav-link:after {
  content: "";
  border-bottom: 1px solid #69c5d3;
  width: 0;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.nav-tabs .nav-link:hover:after {
  width: 33%;
}
.nav-tabs .nav-link.active {
  color: #69c5d3;
}
.nav-tabs .nav-link.active:after {
  width: calc(100% - 3px);
}

/* ------ */
.arrows {
  border-radius: 50%;
  background: #7bd7e5;
  width: 54px;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
  cursor: pointer;
  display: none;
}
.arrows.half {
  top: auto;
  bottom: -77px;
  z-index: 1;
}
.arrows .arrow {
  background: #69c5d3;
  width: 100%;
  height: 27px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.arrows .arrow:before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='3.4' height='6.3' viewBox='0 0 3.4 6.3'%3E%3Cpolygon points='0.3,6.3 0,6 2.8,3.1 0,0.3 0.3,0 3.4,3.1'/%3E%3C/svg%3E") 50% no-repeat;
  background-size: 9px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.arrows .arrow.arrow-up:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.arrows .arrow:hover {
  background: #082d41;
}
@media screen and (min-width: 1024px) {
  .arrows {
    width: 77px;
    height: 77px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .arrows .arrow {
    height: 38px;
  }
  .arrows .arrow:before {
    background-size: 13px;
  }
}

/* ------ */
/* COOKIEBAR */
#cookiebar {
  border-radius: 0;
  background: #FFF;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: none;
}
#cookiebar a {
  text-decoration: underline;
  color: #000;
}
#cookiebar #cookiebutton {
  background: #082d41;
  width: 120px;
  height: 34px;
  display: inline-block;
  margin: 0 10px;
  line-height: 34px;
  font-weight: bold;
  color: #FFF;
  text-decoration: none;
}
#cookiebar #cookiebutton:hover, #cookiebar #cookiebutton:focus {
  background-color: #020e14;
  color: #000;
}

/* ------ */
/* MENU - TOGGLE */
#menu-toggle {
  width: 40px;
  height: 40px;
  padding: 7px;
  position: absolute;
  top: 7px;
  right: 10px;
  z-index: 9;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
#menu-toggle .nav-icon {
  position: relative;
}
#menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #FFF;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#menu-toggle span:nth-child(1) {
  top: 0;
}
#menu-toggle.open span:nth-child(1), #menu-toggle.open span:nth-child(4),
#menu-toggle span:nth-child(2),
#menu-toggle span:nth-child(3) {
  top: 9px;
}
#menu-toggle span:nth-child(4) {
  top: 18px;
}
#menu-toggle.open span:nth-child(1), #menu-toggle.open span:nth-child(4) {
  width: 0%;
  left: 50%;
}
#menu-toggle.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#menu-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 568px) {
  #menu-toggle {
    right: 20px;
  }
}
@media screen and (min-width: 1180px) {
  #menu-toggle {
    display: none;
  }
}

/* ------ */
/* NAVBAR */
#navbar {
  background: #082d41;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  font-size: 14px;
  font-size: 1rem;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  z-index: 9;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#navbar .languages {
  margin: 0;
  padding-left: 60px;
  list-style: none;
}
#navbar .languages li {
  display: inline-block;
  margin: 0;
}
#navbar .languages li + li:before {
  content: "-";
  display: inline-block;
  margin-right: 2px;
}
#navbar .languages a {
  padding: 5px;
  text-decoration: none;
  color: inherit;
}
#navbar .languages a.active, #navbar .languages a:hover {
  font-weight: bold;
}
#navbar .logo {
  height: 35px;
  position: absolute;
  top: 7px;
  left: 20px;
  z-index: 1;
}
#navbar .logo img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 568px) {
  #navbar {
    padding: 0 30px;
  }
  #navbar .logo {
    left: 30px;
  }
}
@media screen and (min-width: 1180px) {
  #navbar {
    height: 80px;
    padding: 0 30px;
  }
  #navbar .w-100 {
    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;
    z-index: 9;
  }
  #navbar .languages {
    padding-left: 0;
  }
  #navbar .logo {
    height: 55px;
    position: static;
  }
}
@media screen and (min-width: 1280px) {
  #navbar {
    height: 80px;
  }
}
@media screen and (min-width: 1360px) {
  #navbar {
    padding: 0 76px 0 78px;
  }
}

/* ------ */
/* MENU */
#main-menu {
  border-top: 1px solid #082d41;
  background: #69c5d3;
  width: 100%;
  max-height: calc(100vh - 50px);
  margin: 0;
  padding: 10px;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.1428571429rem;
  color: inherit;
  display: none;
  float: left;
  position: absolute;
  top: 100%;
  right: 0;
  overflow: auto;
}
[lang=cs] #main-menu {
  letter-spacing: 2px;
}
#main-menu li {
  padding: 0;
}
#main-menu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: inherit;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#main-menu a:after {
  content: "";
  border-bottom: 1px solid transparent;
  width: calc(100% - 3px);
  position: absolute;
  inset: auto 0px 2px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#main-menu .active a:after,
#main-menu a:hover:after {
  border-color: #69c5d3;
}
@media screen and (min-width: 560px) {
  #main-menu {
    width: 50%;
  }
}
@media screen and (min-width: 1180px) {
  #main-menu {
    border: 0;
    background: none;
    max-width: none;
    max-height: none;
    width: auto;
    display: block !important;
    padding: 0;
    position: static;
    overflow: hidden;
  }
  #main-menu li {
    border: 0;
    display: inline-block;
    padding: 0 8px;
  }
  #main-menu li:first-child {
    padding-left: 0;
  }
  #main-menu li:last-of-type {
    padding-right: 0;
  }
  #main-menu a {
    padding: 1px 0 4px;
  }
}
@media screen and (min-width: 1600px) {
  #main-menu {
    letter-spacing: 2px;
  }
  [lang=cs] #main-menu {
    letter-spacing: 4px;
  }
  #main-menu li {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1920px) {
  #main-menu li {
    padding: 0 31px;
  }
}

/* ------ */
/* HEADER */
#header {
  height: 100vh;
  height: calc(100vh - var(--vh-offset));
  position: relative;
  overflow: hidden;
}
#header .bg-img {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
  z-index: 0;
}
/* ------ */
#home {
  width: 100%;
  height: calc(100vh - var(--vh-offset));
  padding: 50px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#home .logo {
  max-width: 175px;
  margin-bottom: 30px;
}
#home img {
  max-width: 100%;
}
#home h1 {
  margin-bottom: 0;
  line-height: 1.45;
  color: #082d41;
}
#home .arrows {
  top: auto;
  bottom: -54px;
}
#home .arrows .arrow {
  background: #FFF;
}
#home .arrows .arrow:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2369c5d3' width='3.4' height='6.3' viewBox='0 0 3.4 6.3'%3E%3Cpolygon points='0.3,6.3 0,6 2.8,3.1 0,0.3 0.3,0 3.4,3.1'/%3E%3C/svg%3E");
}
#home .arrows .arrow:hover {
  background: #082d41;
}
@media screen and (min-width: 400px) and (orientation: landscape) {
  #home {
    padding: 90px 40px 30px;
  }
  #home .logo {
    max-width: 100px;
  }
}
@media screen and (min-width: 400px) and (orientation: portrait) {
  #home {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 720px) {
  #home {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  #home {
    padding-bottom: 100px;
  }
  #home .logo {
    max-width: none;
    margin-bottom: 75px;
  }
}
@media screen and (min-width: 1024px) {
  #home {
    padding: 100px 30px;
  }
  #home .logo {
    max-width: none;
    margin-bottom: 75px;
  }
  #home h1 {
    margin-bottom: 34px;
  }
  #home .arrows {
    bottom: -77px;
  }
}
@media screen and (min-width: 1600px) {
  #home {
    padding: 130px 30px 100px;
  }
  #home .logo {
    margin-bottom: 200px;
  }
}

/* ------ */
.serpa {
  width: 700px;
  height: 700px;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 1rem;
  color: #FFF;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 4;
  overflow: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: default;
}
.serpa div {
  background: #69c5d3;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: absolute;
  top: 140px;
  right: 170px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.serpa div span:nth-child(2) {
  display: none;
  font-size: 14px;
  font-size: 1rem;
}
.serpa div a {
  text-decoration: none;
  color: inherit;
}
.serpa strong {
  display: block;
  font-weight: normal;
  font-size: 26px;
  font-size: 1.8571428571rem;
  color: inherit;
}
@media screen and (min-width: 667px) {
  .serpa {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
@media screen and (min-width: 720px) {
  .serpa {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@media screen and (min-width: 1024px) {
  .serpa {
    letter-spacing: 2px;
    font-size: 16px;
    font-size: 1.1428571429rem;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media screen and (min-width: 1180px) {
  .serpa {
    top: 80px;
  }
}

/* ------ */
.hypo {
  position: absolute;
  top: calc(50px + 15px);
  right: 15px;
  z-index: 9;
}
.hypo img {
  border: 0 !important;
  max-height: 115px;
}
@media screen and (min-width: 568px) {
  .hypo {
    right: 45px;
  }
}
@media screen and (min-width: 768px) {
  .hypo {
    top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .hypo {
    top: 129px;
    right: 54px;
  }
  .hypo img {
    max-height: 163px;
  }
}

/* ------ */
/* FOOTER */
#footer {
  background: #FFF url("../img/footer.jpg") 0 0 no-repeat;
  background-size: cover;
  padding: 40px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#footer .text-center {
  max-width: 149px;
  margin: 0 auto 30px;
}
#footer .logo {
  width: 100px;
  display: block;
  margin: 0 auto 24px;
}
#footer .logo-psn {
  width: 75px;
  display: block;
  margin: 0 auto 24px;
}
#footer img {
  max-width: 100%;
  display: block;
}
#footer p {
  margin: 0 0 30px;
  line-height: 2;
  letter-spacing: 3px;
}
#footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  letter-spacing: 3px;
}
#footer li {
  line-height: 2;
  text-transform: lowercase;
}
#footer li:first-letter {
  text-transform: uppercase;
}
#footer a {
  text-decoration: underline;
  color: inherit;
}
#footer .social {
  height: 100%;
  display: block;
  padding-bottom: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .social .icon {
  display: inline-block;
  margin: 10px 5px;
}
#footer .social .icon:hover .svg {
  fill: #082d41;
}
#footer .social .svg {
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#footer .holder {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer [data-toggle] {
  display: block;
  text-transform: lowercase;
}
#footer [data-toggle]:first-letter {
  text-transform: uppercase;
}
#footer form {
  max-width: 237px;
  margin: auto;
}
#footer form .title {
  margin: 30px 0 15px;
  display: block;
}
#footer form .btn {
  border: 0;
  background: none;
  height: 30px;
  padding: 0 3px;
  position: absolute;
  right: 0;
  z-index: 3;
}
#footer form .btn:before, #footer form .btn:after {
  display: none;
}
#footer form .btn .svg {
  width: 24px;
  height: 9px;
  fill: #69c5d3;
  stroke: #69c5d3;
}
#footer form .btn:hover .svg {
  fill: #082d41;
  stroke: #082d41;
}
#footer .form-control {
  border-color: #69c5d3;
  font-size: inherit;
}
#footer .form-control::-webkit-input-placeholder {
  color: inherit;
}
#footer .form-control:-moz-placeholder {
  color: inherit;
}
#footer .form-control::-moz-placeholder {
  color: inherit;
}
#footer .form-control:-ms-input-placeholder {
  color: inherit;
}
#footer small {
  max-width: 237px;
  display: block;
  margin: 15px auto 0;
  line-height: 1.4;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.8571428571rem;
}
@media screen and (min-width: 1024px) {
  #footer {
    padding: 57px 80px 51px;
    text-align: left;
  }
  #footer .text-center {
    margin: 0;
  }
  #footer .logo {
    width: 147px;
  }
  #footer .logo-psn {
    margin-bottom: 0;
  }
  #footer p {
    margin: 8px 0 0;
  }
  #footer .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 14px;
    padding-bottom: 5px;
  }
  #footer .social .icon {
    margin: 0;
  }
  #footer ul {
    margin-top: 7px;
  }
  #footer form {
    max-width: none;
    margin: 14px 0 0;
  }
  #footer form .title {
    margin: 0 0 33px;
  }
}
@media screen and (min-width: 1200px) {
  #footer small {
    margin: -10px 0 0;
  }
}

/* ------ */
/* LOKALITA */
.map-wrapper {
  height: 100%;
  min-height: 400px;
  max-height: 100vh;
  position: relative;
}
.map-wrapper address {
  background: #FFF;
  margin: 0;
  padding: 10px 24px;
  font-weight: bold;
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 9;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .map-wrapper address {
    font-size: 20px;
    bottom: 30px;
    left: 30px;
  }
}
@media screen and (min-width: 992px) {
  .map-wrapper address {
    bottom: 40px;
    left: 40px;
  }
}

#map {
  height: 100%;
}

/* ------ */
/* TIMELINE */
.timeline {
  padding: 30px 0 0;
  grid-template-columns: auto;
  grid-template-rows: auto;
  position: relative;
}
.timeline .timeline-item {
  margin-bottom: 30px;
  position: relative !important;
  z-index: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.timeline .timeline-item:hover:not(.disabled) .timeline-img, .timeline .timeline-item.active .timeline-img {
  color: #69c5d3;
}
.timeline .timeline-item:hover:not(.disabled) .timeline-img:before, .timeline .timeline-item.active .timeline-img:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.timeline .timeline-item.active + .timeline-content {
  display: block;
}
.timeline .timeline-img {
  width: 103px;
  height: 103px;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  font-family: "ITC New Baskerville Std";
  font-size: 72px;
  font-size: 5.1428571429rem;
  color: #082d41;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.timeline .timeline-img:before {
  content: "";
  background: url("../img/icons/circle.svg") center no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.timeline .timeline-content {
  display: none;
  padding: 0 0 10px;
  text-align: center;
  position: relative;
}
.timeline .timeline-content p {
  margin: 0;
  bottom: 0;
  opacity: 1;
  visibility: visible;
  display: block;
}
.timeline .timeline-title {
  display: block;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  font-size: 1.1428571429rem;
  font-weight: normal;
  color: #69c5d3;
}
@media screen and (min-width: 560px) {
  .timeline {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(2, [col-start] 1fr);
  }
  .timeline .timeline-content {
    grid-column: 1/5;
    grid-row: 2/2 !important;
  }
}
@media screen and (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(4, [col-start] 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .timeline {
    grid-gap: 15px;
  }
  .timeline .timeline-item.active + .timeline-content {
    bottom: 0;
    opacity: 1;
  }
  .timeline .timeline-img {
    width: 90px;
    height: 90px;
  }
  .timeline .timeline-content {
    display: block;
    text-align: left;
    position: relative;
    bottom: -50%;
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .timeline .timeline-title {
    max-width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .timeline {
    max-width: 525px;
  }
  .timeline .timeline-img {
    width: 103px;
    height: 103px;
  }
}
@media screen and (min-width: 1600px) {
  .timeline {
    grid-gap: 51px 70px;
  }
  .timeline .timeline-item,
.timeline .timeline-img {
    margin-bottom: 0;
  }
}

/* ------ */
/* FINANCOVANI */
@media screen and (min-width: 1152px) {
  #koupe .col-text {
    padding-top: 80px;
  }
}

/* ------ */
/* GALERIE */
#galerie {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: calc(50px + 40px) 30px 30px;
  text-align: center;
  color: #FFF;
}
#galerie [class^=col] {
  padding-bottom: 30px;
}
#galerie .thumb {
  display: block;
  position: relative;
}
#galerie .thumb:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
#galerie .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
}
#galerie .tab-content {
  padding-top: 30px;
}
@media screen and (min-width: 1152px) {
  #galerie {
    padding: calc(80px + 60px) 59px 75px;
  }
  #galerie .row {
    margin: 0 -25px;
  }
  #galerie [class^=col] {
    padding: 25px;
  }
  #galerie .tab-content {
    padding-top: 0;
  }
}
@media screen and (min-width: 2560px) {
  #galerie .container {
    max-width: 1600px;
  }
}

/* ------ */
/* STANDARDY */
#standards {
  padding: calc(50px + 40px) 0 0;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 400;
}
#standards .container {
  max-width: 1080px;
}
#standards .nav-tabs {
  margin-top: 52px;
}
#standards .tab-content {
  margin-top: 14px;
}
#standards img {
  width: 100%;
}
@media screen and (min-width: 1152px) {
  #standards {
    padding: calc(80px + 60px) 0 0;
  }
}

.points {
  position: relative;
  overflow: hidden;
}
.points a {
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}
.points .point {
  position: absolute;
  width: 26px;
  height: 26px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
}
.points .point.point-1 {
  top: 37%;
  left: 22%;
}
.points .point.point-2 {
  top: 89%;
  left: 30%;
}
.points .point.point-3 {
  top: 36%;
  left: 43%;
}
.points .point.point-4 {
  top: 16%;
  left: 78%;
}
.points .point.point-5 {
  top: 55%;
  left: 88%;
}
.points .point.point-6 {
  top: 27%;
  left: 17%;
}
.points .point.point-7 {
  top: 89%;
  left: 45%;
}
.points .point.point-8 {
  top: 40%;
  left: 66.8%;
}
.points .point.point-9 {
  top: 90.5%;
  left: 85%;
}
.points .point.point-10 {
  top: 76.5%;
  left: 92%;
}
.points .point.point-11 {
  top: 90%;
  left: 78%;
}
.points .marker {
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: block;
  position: relative;
  overflow: hidden;
}
.points .marker:before {
  content: "";
  background: #69c5d3;
  position: absolute;
  inset: 0;
  opacity: 0.7;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.points .marker:after {
  content: "";
  background: url("../img/icons/point2.png") center no-repeat;
  background-size: 15px;
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.points .text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  background: rgba(255, 255, 255, 0.75);
  width: 160px;
  padding: 6px;
  text-align: center;
  letter-spacing: 0;
  color: #082d41;
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.points .text p {
  margin: 0;
  line-height: 1.25;
}
.points .top-left {
  bottom: calc(100% + 16px);
  right: 0;
}
.points .top-center {
  bottom: calc(100% + 16px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.points .top-right {
  bottom: calc(100% + 16px);
  left: 0;
}
.points .bottom-left {
  top: calc(100% + 16px);
  right: 0;
}
.points .bottom-center {
  top: calc(100% + 16px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.points .bottom-right {
  top: calc(100% + 16px);
  left: 0;
}
.points .left {
  top: 50%;
  right: calc(100% + 16px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.points .right {
  top: 50%;
  left: calc(100% + 16px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.points .active,
.points .point:hover {
  overflow: visible;
  z-index: 3;
}
.points .active .marker:before,
.points .point:hover .marker:before {
  opacity: 1;
}
.points .active .marker:after,
.points .point:hover .marker:after {
  -webkit-transform: rotate(179deg);
          transform: rotate(179deg);
}
.points .active .text,
.points .point:hover .text {
  opacity: 1;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
@media (max-width: 400px) {
  .points .point-6 .text {
    left: 40px;
  }
}
@media screen and (min-width: 666px) {
  .points .point {
    width: 33px;
    height: 33px;
  }
  .points .marker {
    width: 33px;
    height: 33px;
  }
  .points .marker:after {
    background-size: 20px;
  }
}
@media screen and (min-width: 720px) {
  .points .text {
    width: 200px;
    padding: 9px 20px;
    letter-spacing: 1px;
  }
}
@media screen and (min-width: 920px) {
  .points .point {
    width: 51px;
    height: 51px;
  }
  .points .point.point-6 {
    top: 27%;
    left: 14%;
  }
  .points .point.point-7 {
    top: 91%;
    left: 36%;
  }
  .points .point.point-11 {
    top: 93%;
    left: 78%;
  }
  .points .marker {
    width: 51px;
    height: 51px;
  }
  .points .marker:after {
    background-size: auto;
  }
  .points .text {
    font-size: 1rem;
  }
}

/* ------ */
/* CONTACT */
#contact {
  padding: calc(50px + 40px) 30px 30px;
  letter-spacing: 2px;
  text-align: center;
}
#contact .fp-tableCell {
  display: block;
}
#contact .container {
  max-width: 1220px;
}
#contact .flash.info {
  margin-bottom: 36px;
  font-weight: bold;
}
#contact a {
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}
#contact form {
  max-width: 1188px;
  margin: 50px auto 0;
}
#contact .ccheck {
  margin: 22px 0 0;
}
#contact #gdpr_info {
  font-size: 14px;
  font-size: 1rem;
}
#contact .btn {
  margin-top: 19px;
}
@media screen and (min-width: 1152px) {
  #contact {
    padding: calc(80px + 60px) 59px 91px;
  }
}
@media screen and (min-width: 1600px) {
  #contact {
    height: auto !important;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/* ------ */
#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%;
}

/* ------ */
/* CENIK - BUILDINGS */
#building {
  background: #FFF;
  width: 100%;
  padding-top: 50px;
  position: relative;
}
#building .house {
  background: #FFF url("../img/footer.jpg") 0 0 no-repeat;
  text-align: center;
}
#building .house .holder {
  display: inline-block;
  background: #082d41;
  height: 100%;
  margin: auto;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}
#building .house .holder:before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#082d41));
  background: linear-gradient(to bottom, transparent 0%, #082d41 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000e2e40", endColorstr="#0e2e40",GradientType=0 );
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 1;
}
#building .house svg {
  max-width: 100%;
  height: auto;
  max-height: calc((100vh - var(--vh-offset)) - 50px);
  display: inline;
}
#building .house .quick-detail {
  color: #FFF;
}
#building .building-floor {
  opacity: 0;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.25s opacity;
  transition: 0.25s opacity;
}
#building .building-floor.active, #building .building-floor:hover, #building .building-floor:focus {
  opacity: 0.83 !important;
}
#building .building-floor .path {
  cursor: pointer;
  position: relative;
  z-index: 100;
  fill: #69c5d3;
}
#building .building-floor a {
  position: relative;
  display: block;
}
#building .floors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#building .floors .holder {
  margin: auto;
  padding: 30px 30px 80px;
}
#building .floors .quick-detail > * {
  display: none;
}
#building .floors svg {
  max-width: 100%;
  height: 100%;
  max-height: 100vh;
}
#building .floor-map {
  background: #FFF;
  max-width: 405px;
  display: none;
}
#building .floor-map svg {
  width: 100%;
  height: 100%;
  display: block;
}
#building .floor-map.active {
  display: inline-block;
}
#building .floor-map .flats * {
  fill: #082d41;
  opacity: 0;
}
#building .floor-map .flats *.active {
  opacity: 1;
}
#building .floor-map .flats *.sold {
  background: #aab1b4;
  opacity: 1;
}
#building .floor-map .overlays * {
  opacity: 0;
}
#building .floor-map .overlays *.sold {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}
#building .floor-map .overlays *.sold polygon {
  fill: #aab1b4;
  mix-blend-mode: multiply;
  cursor: default;
  pointer-events: none;
  opacity: 1;
}
#building .quick-detail {
  width: 100%;
  letter-spacing: 2px;
  text-align: center;
  font-weight: normal;
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 2;
}
#building .quick-detail p {
  margin: 0;
  line-height: 1.3;
  position: static;
  opacity: 1;
}
#building .quick-detail strong {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.1428571429rem;
}
#building .floors-list {
  height: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: 2px;
  color: #69c5d3;
  position: absolute;
  bottom: 23%;
  right: 8%;
  z-index: 9;
}
#building .floors-list a {
  color: inherit;
}
#building .switch-floor {
  text-decoration: none;
}
#building .arrows {
  display: none;
}
@media screen and (min-width: 568px) {
  #building .floors-list {
    bottom: 25%;
  }
}
@media screen and (min-width: 720px) {
  #building .floors-list {
    bottom: 18%;
    right: 12%;
  }
}
@media (max-width: 1024px) {
  #building .house .holder svg {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  #building .house .holder {
    display: block;
    padding-bottom: 0;
  }
  #building .house .holder:before {
    display: none;
  }
  #building .house svg {
    max-width: none;
    width: auto;
    height: 100%;
    max-height: calc((100vh - var(--vh-offset)) - 80px);
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
  #building .floors svg {
    max-height: 66vh;
  }
  #building .floor-map.active {
    display: block;
  }
  #building .quick-detail {
    letter-spacing: 3px;
  }
  #building .quick-detail p {
    line-height: 1.75;
  }
  #building .floors-list {
    height: 75%;
    font-size: 18px;
    font-size: 1.2857142857rem;
    bottom: 10%;
    right: 15%;
  }
  #building .arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1152px) {
  #building {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  #building .house svg {
    -webkit-transform: translateX(-6%);
            transform: translateX(-6%);
  }
}
@media screen and (min-width: 1440px) {
  #building .floors-list {
    right: 8%;
  }
}
@media screen and (min-width: 1600px) {
  #building .floor-map {
    max-width: 500px;
  }
  #building [data-floor="6"] {
    max-width: 90%;
  }
  #building .floors svg {
    max-height: 80vh;
  }
  #building .quick-detail {
    bottom: 40px;
  }
}
@media screen and (min-width: 1920px) {
  #building .floors-list {
    right: 13%;
  }
}
@media screen and (min-width: 2560px) {
  #building .floors-list {
    right: 15%;
  }
}

/* ------ */
.control:last-child {
  margin-right: 0;
}

/* CENIK - TABULKA - desktop */
#byty {
  background: #FFF url("../img/cenik-bg.png") 0 0 no-repeat;
  background-size: 100% auto;
  padding: 80px 50px 50px;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}
#byty .lead {
  font-size: inherit;
}
#byty header + .reset-filter {
  position: absolute;
  top: 25px;
  right: 15px;
  display: none;
}
#byty table {
  border: 0;
  text-align: initial;
  letter-spacing: 1px;
  font-size: 13px;
}
#byty thead tr:first-child th {
  font-weight: normal;
  font-size: 10px;
  position: sticky;
  top: 0;
  z-index: 1;
}
#byty th {
  border: 0;
  background: #FFF;
  padding: 15px 10px;
  vertical-align: top;
  text-transform: uppercase;
  word-break: normal;
}
#byty th em {
  font-style: normal;
}
#byty td {
  padding: 7px 10px;
}
#byty td a {
  color: #082d41;
}
#byty .spacer {
  border-color: #FFF !important;
  background: #FFF;
  width: 15px;
}
#byty .form-control {
  border: 1px solid #082d41;
  font-size: 14px;
  font-size: 1rem;
}
#byty .energy {
  max-width: 200px;
  display: block;
  margin: 50px auto;
}

.t-byty__item {
  opacity: 0.5;
  pointer-events: none;
}

.detailLink {
  pointer-events: auto;
  opacity: 1;
  background: #69c5d3;
}

@media screen and (min-width: 1024px) {
  .t-byty tbody tr:hover td:not(.spacer),
.t-byty tbody tr .hover td:not(.spacer) {
    background: #69c5d3;
    cursor: pointer;
    position: relative;
  }
  .t-byty tbody tr:hover td:not(.spacer) a,
.t-byty tbody tr .hover td:not(.spacer) a {
    color: inherit !important;
    -webkit-transition: none;
    transition: none;
  }
  .t-byty tbody tr:hover td:not(.spacer):before,
.t-byty tbody tr .hover td:not(.spacer):before {
    content: "";
    border-top: 1px solid #69c5d3;
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    z-index: 1;
  }
  .t-byty tbody tr:hover td:not(.spacer):after,
.t-byty tbody tr .hover td:not(.spacer):after {
    content: "";
    border-bottom: 1px solid #69c5d3;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 1;
  }

  #byty {
    overflow: visible;
  }

  #byty .spacer {
    display: none;
  }

  #byty [data-floor="22"],
#byty [data-floor="44"] {
    background: rgba(170, 177, 180, 0.15);
  }

  #byty header + .reset-filter {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  #byty .h1 {
    margin-bottom: 32px;
  }
  #byty .t-byty {
    font-size: 11px;
    font-size: 0.7857142857rem;
  }
  #byty .t-byty tr {
    border: 0;
  }
  #byty thead tr:first-child th {
    font-size: inherit;
  }
  #byty .t-byty tbody td {
    border-bottom: 1px solid #69c5d3;
  }
  #byty .spacer {
    display: table-cell;
  }
  #byty td {
    padding: 5px;
  }
  #byty .spacer {
    width: 60px;
  }
}
@media screen and (min-width: 1360px) {
  #byty {
    padding-top: calc(80px + 30px);
  }

  #byty .t-byty {
    font-size: 12px;
    font-size: 0.8571428571rem;
  }
}
@media screen and (min-width: 1440px) {
  #byty .t-byty {
    font-size: 13px;
    font-size: 0.9285714286rem;
  }
}
@media screen and (min-width: 1600px) {
  #byty {
    padding: calc(80px + 64px) 159px 97px;
  }
  #byty .t-byty {
    font-size: 1rem;
  }
  #byty td {
    padding: 14px 10px;
  }
}
@media screen and (min-width: 1920px) {
  #byty {
    font-size: 14px;
    font-size: 1rem;
  }
  #byty thead tr:first-child th {
    font-size: 16px;
    font-size: 1.1428571429rem;
  }
}
/* ------ */
/* CENIK - TABULKA - mobile */
.table td {
  border: 0;
  border-bottom: 1px solid #69c5d3;
  padding: 10.5px 0.75rem;
}

.t-byty {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  clear: both;
  margin: 0 0 16px;
  empty-cells: show;
}
.t-byty th, .t-byty td {
  padding: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.t-byty th {
  font-weight: 300;
}

.t-byty__actions {
  text-align: right;
  font-size: 0;
  white-space: nowrap;
}

.t-byty__price {
  white-space: nowrap;
}

@media (max-width: 1019px) {
  #byty table {
    text-align: inherit;
  }

  .t-byty td {
    border: 0;
    background: none !important;
  }

  .t-byty__head {
    display: none;
  }

  .t-byty__body {
    display: block;
  }

  .t-byty__item {
    background: #FFF;
    display: block;
    position: relative;
    margin: 0 -15px 1px;
    border: 0 solid transparent;
    border-width: 28px 15px 32px;
  }

  .t-byty__name {
    display: block;
    padding: 0;
    font-weight: 500;
    font-size: 22px;
    font-size: 1.5714285714rem;
  }
  .t-byty__name a {
    color: inherit !important;
  }

  .t-byty__cell {
    display: inline;
    padding: 0;
    font-size: 14px;
    font-size: 1rem;
    margin: 0 0 0 0;
    color: #949b9c;
  }

  .t-byty__cell-hidden {
    display: none;
  }

  .t-byty__price {
    display: block;
    padding: 20px 0 0;
    font-size: 20px;
    font-size: 1.4285714286rem;
  }

  .t-byty__state {
    padding: 0;
    position: absolute;
    top: 4px;
    right: 0;
    text-transform: uppercase;
    font-size: 18px;
    font-size: 1.2857142857rem;
  }

  .t-byty__actions {
    padding: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .t-byty__actions .btn {
    display: block;
  }

  .t-byty__actions .btn + .btn {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1420px) {
  td.t-byty__actions {
    display: none;
  }
}
/* ------ */
#priceForm {
  background: #082d41;
  padding: 20px 20px 0;
  position: fixed;
  top: 50%;
  left: 15px;
  right: 15px;
  z-index: 9;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#priceForm .close {
  text-shadow: none;
  position: absolute;
  top: 10px;
  right: 20px;
  opacity: 1;
}
#priceForm th {
  display: none;
}
#priceForm td {
  background: none !important;
  padding: 5px 0;
}
#priceForm textarea.form-control {
  height: 150px;
}
@media screen and (min-width: 960px) {
  #priceForm {
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

/* ------ */
#show-all {
  display: none;
}

#toggle-separate-filter {
  background: #e6e5e5;
  margin-bottom: 12px;
}

#toggle-separate-filter:hover {
  background: #028402;
  color: #FFF;
}

#separate-filter .filter-wrapper {
  display: none;
  margin-top: 8px;
  padding: 0 5px;
  font-size: 0.85rem;
}
#separate-filter .form-control {
  margin: 10px 0;
}
#separate-filter br {
  display: none;
}
@media screen and (min-width: 420px) {
  #separate-filter .filter-wrapper {
    width: 50%;
    float: left;
  }
}
@media screen and (min-width: 560px) {
  #separate-filter .filter-wrapper {
    width: 33.3334%;
  }
}
@media screen and (min-width: 720px) {
  #separate-filter .filter-wrapper {
    width: 25%;
  }
}
@media screen and (min-width: 1024px) {
  #separate-filter {
    display: none;
  }
}

/* ------ */
/* DETAIL */
body.detail .section .col-text:before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
body.detail .section:nth-of-type(2n) .col-text:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
body.detail .link {
  display: inline-block;
  margin: 36px 0 0;
  padding-left: 21px;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2px;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.1428571429rem;
  color: #69c5d3;
  position: relative;
}
body.detail .link:before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2369c5d3' width='3.4' height='4.5' viewBox='0 0 3.4 4.5'%3E%3Cpath d='M3.1,0l0.3,0.2l-2.8,2l2.8,2L3.1,4.5L0,2.2L3.1,0z'/%3E%3C/svg%3E") 0 0 no-repeat;
  background-size: 9px;
  width: 10px;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
}
body.detail .col-text.simple {
  padding-top: 45px;
}
body.detail .text-block:not(.simple) > div {
  padding-bottom: 30px;
}
body.detail .text-block:not(.simple) strong {
  display: block;
  margin: 43px 0 4px;
}
body.detail .files-list {
  border-bottom: 1px solid #69c5d3;
  list-style: none;
  margin: 0 0 60px;
  padding: 0 16px 12px;
}
body.detail .files-list li {
  background: url("../img/icons/download.svg") 0 56% no-repeat;
  background-size: auto 20px;
  padding: 4px 0 4px 30px;
  line-height: 1.15;
}
body.detail .files-list a {
  text-decoration: underline;
}
body.detail .title {
  display: block;
  margin-bottom: 44px;
}
body.detail .main-img {
  max-width: 270px;
  height: auto;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 66px;
}
body.detail .frame {
  width: 140px;
  margin: 0 auto 30px;
}
body.detail .frame img {
  max-width: 100%;
  height: 100%;
}
body.detail .left-col {
  padding: 80px 30px 0;
  text-align: center;
  position: relative;
}
body.detail .table td {
  padding-left: 19px;
}
body.detail .table td:nth-of-type(2) {
  padding-right: 19px;
}
body.detail #price-info {
  position: static;
  opacity: 1;
}
body.detail .hh {
  height: auto;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.detail .btn-primary {
  margin: 0 !important;
}
body.detail .contact {
  background: #082d41;
  padding: 45px;
  text-align: center;
}
body.detail .arrows {
  display: none;
}
@media screen and (min-width: 576px) {
  body.detail .link {
    margin: 0;
  }
}
@media screen and (min-width: 667px) {
  body.detail .col-text {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  body.detail .col-text.simple {
    padding-top: 81px;
  }
  body.detail .left-col {
    padding: 100px 100px 50px 79px;
  }
  body.detail .text-block > div {
    padding-bottom: 61px;
  }
  body.detail .lightgallery {
    height: 100vh;
  }
  body.detail h1 {
    margin-bottom: 28px;
  }
  body.detail .arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
  body.detail .left-col {
    padding: 140px 60px 50px;
  }
  body.detail .main-img {
    max-width: none;
  }
}
@media screen and (min-width: 1600px) {
  body.detail .left-col {
    padding-left: 120px;
  }
  body.detail .text-block {
    padding-left: 137px;
  }
  body.detail .text-block.specs {
    padding-left: 140px;
  }
  body.detail .col-text {
    padding-bottom: 0;
  }
  body.detail .bg-img {
    position: static;
  }
  body.detail .frame {
    width: 170px;
    margin: 0;
  }
}
@media screen and (min-width: 1920px) {
  body.detail .frame {
    width: 190px;
  }
}

/* ------ */
.swiper-h {
  height: 100%;
  min-height: 300px;
  max-height: 100vh;
}
.swiper-h .swiper-container {
  height: 100%;
}
.swiper-h .swiper-slide {
  background: #aab1b4;
  width: 100%;
}

.swiper-slide img {
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-slide .img-desc {
  background: rgba(255, 255, 255, 0.85);
  max-width: 330px;
  margin: auto;
  padding: 15px 20px 10px;
  position: absolute;
  top: 15px;
  left: 15px;
}

.swiper-pagination-bullets {
  left: 0;
  right: 0;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.55);
  width: 14px;
  height: 14px;
  margin: 0 4px 0 3px !important;
  display: inline-block;
  position: relative;
  opacity: 1;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #FFF;
}

.arrow-horizontal {
  background-size: auto 25px;
  width: 70px;
  height: 100%;
  margin: 0;
  color: #FFF;
  outline: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0;
}
.arrow-horizontal:after {
  font-size: 45px;
  font-size: 3.2142857143rem;
  color: inherit;
}
.arrow-horizontal:hover {
  opacity: 1;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

@media screen and (min-width: 568px) {
  .swiper-pagination-bullets {
    padding-left: 35px;
    text-align: left;
    bottom: 30px !important;
  }
}
@media screen and (min-width: 768px) {
  .arrow-horizontal {
    height: 100%;
    top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .swiper-slide .img-desc {
    left: 0;
    right: 0;
  }

  .swiper-pagination-bullets {
    padding-left: 75px;
    bottom: 52px !important;
  }
}
/* ------ */
/* popup - banner */
#popup-banner {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
#popup-banner a {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
#popup-banner img {
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

#popup-banner-image-wrapper {
  display: inline-block;
  text-align: center;
  position: relative;
}

#popup-banner-close-button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 32px;
  height: 32px;
  opacity: 0.75;
  line-height: 34px;
  text-align: center;
  font-family: Arial;
  font-size: 40px;
  color: #FFF;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
}
#popup-banner-close-button:hover {
  opacity: 1;
}

/* ----------- */
/* LOCKDOWN */
#lockdown {
  max-width: 1800px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.2857142857rem;
  color: #FFF;
}
#lockdown [class^=col] {
  padding: 30px 40px 30px 30px;
}
#lockdown .col-left {
  background: #009c44;
}
#lockdown .col-right {
  background: #006d36;
}
#lockdown .svg {
  width: auto;
  height: 69px;
  margin-bottom: 9px;
  display: block;
}
#lockdown .svg * {
  fill: #006d36;
}
#lockdown p {
  margin-bottom: 1rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
#lockdown p:last-of-type {
  margin: 0;
}
#lockdown strong {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: inherit;
}
#lockdown strong.big {
  line-height: 1.05;
  font-size: 40px;
  font-size: 2.8571428571rem;
}
@media screen and (min-width: 1024px) {
  #lockdown strong.big {
    font-size: 34px;
    font-size: 2.4285714286rem;
  }
  [lang=ru] #lockdown strong.big {
    font-size: 28px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  #lockdown {
    margin: 0 auto;
  }
  #lockdown [class^=col] {
    padding: 30px 43px 30px 47px;
  }
  #lockdown strong.big {
    font-size: 43px;
    font-size: 3.0714285714rem;
  }
  [lang=ru] #lockdown strong.big {
    font-size: 34px;
    font-size: 2.4285714286rem;
  }
}
@media screen and (min-width: 1300px) {
  #lockdown strong.big {
    font-size: 47px;
    font-size: 3.3571428571rem;
  }
  [lang=ru] #lockdown strong.big {
    font-size: 37px;
    font-size: 2.6428571429rem;
  }
}
@media screen and (min-width: 1600px) {
  #lockdown {
    border: 60px solid #FFF;
    border-width: 60px 0;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
  }
  #lockdown strong.big {
    font-size: 54px;
    font-size: 3.8571428571rem;
  }
  [lang=ru] #lockdown strong.big {
    font-size: 46px;
    font-size: 3.2857142857rem;
  }
}
@media screen and (min-width: 1920px) {
  #lockdown strong.big {
    font-size: 62px;
    font-size: 4.4285714286rem;
  }
  [lang=ru] #lockdown strong.big {
    font-size: 52px;
    font-size: 3.7142857143rem;
  }
}
@media screen and (min-width: 2560px) {
  #lockdown {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ------ */
/* 404 */
#error {
  padding: calc(50px + 40px) 30px 30px;
  letter-spacing: 2px;
  text-align: center;
}
#error .container {
  max-width: 1220px;
}
#error .error-no {
  font-family: "ITC New Baskerville Std";
  font-size: 100px;
  font-size: 7.1428571429rem;
  color: #69c5d3;
}
#error a {
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}
@media screen and (min-width: 1152px) {
  #error {
    padding: calc(80px + 60px) 59px 91px;
  }
}
@media screen and (min-width: 1600px) {
  #error {
    height: auto !important;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/* ------ */
/* ------ */
#wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}

main {
  background: #FFF;
  min-height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  position: relative;
  z-index: 1;
}
section {
  position: relative;
  z-index: 1;
}

/* ------ */
.bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg-fixed {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 0 0;
}
@supports (-webkit-touch-callout: inherit) {
  .bg-fixed {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }
}

/* ------ */
.section {
  position: relative;
  overflow: hidden;
}
.section.animated .text-block .h1, .section.animated .text-block .h2, .section.animated .text-block p, .section.animated .text-block .btn, .section.animated .text-block .arrows {
  bottom: 0 !important;
  opacity: 1 !important;
}
.section .row {
  height: 100%;
}
.section .col-lg-6 {
  overflow: hidden;
}
.section .col-lg-6 .bg-img {
  -webkit-animation: shrink 30s infinite;
          animation: shrink 30s infinite;
}
.section .col-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
}
.section .col-text:before {
  content: "";
  background: url("../img/section-bg.png") center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.section:nth-of-type(2n) .col-text:before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.section .text-block {
  padding: 50px 30px;
  position: relative;
}
.section .text-block .h1, .section .text-block h2 {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.section .text-block .h2 {
  -webkit-transition: all 1.4s ease;
  transition: all 1.4s ease;
}
.section .text-block p {
  margin-bottom: 22px;
  letter-spacing: 1px;
  font-weight: 400;
  -webkit-transition: all 1.4s ease;
  transition: all 1.4s ease;
}
.section .text-block .btn {
  margin-top: 36px;
  -webkit-transition: all 1.8s ease;
  transition: all 1.8s ease;
}
.section img {
  border-top: 1px solid #FFF;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.sp .section .col-text:before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.sp .section:nth-of-type(2n) .col-text:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (min-width: 400px) and (orientation: landscape) {
  .section img {
    max-height: 100vh;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .section img {
    max-height: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .section {
    height: 100vh !important;
  }
  .section .h1, .section h2, .section p, .section .btn {
    position: relative;
    bottom: -150px;
    opacity: 0;
  }
  .section .text-block {
    padding: 50px 60px;
    text-align: initial;
  }
  .section img {
    max-height: none;
  }
}
@media screen and (min-width: 1280px) {
  .section .text-block {
    padding: 50px 100px 0 79px;
  }
  .section .text-block p {
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 1600px) {
  .section .text-block p {
    padding-right: 100px;
  }
}

/* ------ */
#nabidka {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#nabidka:before {
  content: "";
  background: url("../img/gallery/test.png") 0 0 no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  -webkit-animation: move 120s infinite linear;
          animation: move 120s infinite linear;
}
#nabidka .text-block {
  max-width: 1600px;
  margin: auto;
  text-align: center;
}
#nabidka .text-block p {
  margin-bottom: 53px;
  padding: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
#nabidka .bg-img {
  max-height: none !important;
  position: absolute;
  inset: 0;
  z-index: -1;
}
#nabidka .btn {
  margin-top: 0;
}
#nabidka .arrows {
  margin: 6px auto 89px;
  position: relative;
  top: auto;
  bottom: -150px;
  left: 0;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: bottom 1.4s ease, opacity 1.4s ease;
  transition: bottom 1.4s ease, opacity 1.4s ease;
  opacity: 0;
}
/* ------ */
#standardy {
  border: 0;
}

/* ------ */
.open-in-dialog {
  background: url("../img/open-in-dialog.svg");
  background-size: cover;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin-top: 3px;
  margin-left: 8px;
  vertical-align: top;
}

.modal-title {
  font-size: 1.25rem;
}

/*
.hp.fp-viewing-0 {
	.arrows {
		//display: flex;
		top: 100%;
		//bottom: -54px;

		.arrow {
			background: $white;

			&:before {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2369c5d3' width='3.4' height='6.3' viewBox='0 0 3.4 6.3'%3E%3Cpolygon points='0.3,6.3 0,6 2.8,3.1 0,0.3 0.3,0 3.4,3.1'/%3E%3C/svg%3E");}

			&:hover {background: $primary;}
		}

		.arrow-up {
			display: none;
		}
	}

	@include breakpoint(1024){
		//.arrows {bottom: -77px;}
	}
}
*/
/* SIDEBAR */
.sidebar-links {
  width: 40px;
  max-height: calc(100vh - 50px);
  display: block;
  color: #000;
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 100;
}
@media screen and (min-width: 920px) {
  .sidebar-links {
    display: block;
    max-height: none;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* SIDEBAR buttons */
.katalog-ribbon {
  background: #082d41;
  width: 40px;
  min-height: 130px;
  margin: 5px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  text-decoration: none !important;
  letter-spacing: 1px;
  font-size: 16px;
  font-size: 1.1428571429rem;
  color: #FFF;
  z-index: 40;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
.katalog-ribbon:hover {
  background: #020e14;
  color: #FFF;
}
.katalog-ribbon span {
  padding: 15px 0;
}

/* ------ */
/* INTRO */
.intro {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 20px 40px;
  text-align: center;
  z-index: 11;
  top: 50%;
  left: 50%;
  margin-left: -337.5px;
  margin-top: -180px;
}

.intro .btn-default {
  background: #082d41;
  color: white;
  border: 3px solid #082d41;
  padding-top: 10px;
  padding-bottom: 10px;
}

.intro .btn-default:hover {
  background: #69c5d3;
  color: white;
  border: 3px solid #69c5d3;
}

.intro .h1, .intro .h1 strong {
  display: block;
}

.intro [class^=h] {
  color: #082d41;
}

.intro .h1 {
  margin-top: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
}

.intro .btn {
  display: inline-block;
  font-size: 1rem;
}

@media (min-width: 420px) {
  .intro .h1 {
    font-size: 24px;
  }
}
@media (min-width: 560px) {
  .intro .h1 {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 26px;
  }

  .intro {
    max-width: 675px;
  }
}
@media (max-width: 740px) {
  .intro {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    left: 0;
    margin-top: -101px;
  }
}
@media (min-width: 1280px) {
  .intro {
    max-width: 675px;
  }

  .intro .h1 {
    margin-bottom: 37px;
    font-size: 35px;
    letter-spacing: 8px;
  }
}
.line-through {
  text-decoration: line-through;
}

.action-price {
  color: red;
}
/*# sourceMappingURL=style.css.map */
