@charset "UTF-8";
html {
  font-family: "Montserrat", sans-serif;
}

#container {
  overflow: visible !important;
}

.no-border {
  outline: 0;
  text-decoration: none;
}

.pulsating-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 30px;
  height: 30px;
}
.pulsating-circle i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #F9081F;
}
.pulsating-circle:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  background-color: #F9081F;
  -webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.pulsating-circle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@-webkit-keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
.footer-div {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  min-height: 60px;
}
.footer-div .left, .footer-div .right {
  position: absolute;
  top: 50% !important;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  transform: translateY(-50%) !important;
}
.footer-div .left .button, .footer-div .right .button {
  position: relative !important;
  width: 40px !important;
  height: 40px !important;
  background: #fff;
  color: #d5dadd;
  border-radius: 6px;
}
.footer-div .left .button .element, .footer-div .right .button .element {
  position: relative !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.footer-div .left .button .element:hover > div i, .footer-div .right .button .element:hover > div i {
  color: #212529;
}
.footer-div .left .button .element > div, .footer-div .right .button .element > div {
  position: relative !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: lowercase;
  font-size: 0.6428571429em;
  color: #6c757d;
  cursor: pointer !important;
}
.footer-div .left .button .element > div i, .footer-div .right .button .element > div i {
  position: relative !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #6c757d;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s ease-in-out !important;
  padding: 2px 0px;
}
.footer-div .left {
  left: 20px !important;
}
.footer-div .right {
  right: 20px !important;
}

.hidden {
  display: none;
}

.header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 35px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #353d45;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.header .main-navigation {
  position: relative !important;
  width: auto !important;
  height: auto !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out !important;
}
.header .main-navigation .item {
  position: relative !important;
  background: transparent !important;
  padding: 0px 16px;
  cursor: pointer;
}
.header .main-navigation .item::after {
  position: absolute;
  position: absolute;
  content: "";
  width: 1px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #525f6d;
}
.header .main-navigation .item:nth-of-type(1)::after {
  display: none;
}
.header .main-navigation .item > div {
  position: relative !important;
  color: white !important;
  font-size: 13px !important;
  border: 0px !important;
  font-weight: 700;
  text-transform: none;
  padding: 3px 5px !important;
  line-height: unset !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
}
.header .main-navigation .item.active > div {
  background-color: #ce3031;
  border-radius: 2.5px;
}
.header .main-navigation .item.unactive {
  opacity: 0.2;
  cursor: default !important;
}
.header .main-navigation .item.unactive > div {
  cursor: default !important;
}
.header .main-navigation.mobile {
  position: absolute !important;
  padding: 10px 0px;
  flex-direction: column;
  justify-content: flex-start;
  top: 35px;
  background-color: rgba(30, 34, 39, 0.85);
  width: 100% !important;
  left: -100% !important;
  transition: all 0.2s ease-in-out !important;
}
.header .main-navigation.mobile .item {
  padding: 4px 0px;
}
.header .main-navigation.mobile .item::after {
  display: none;
}
.header .main-navigation.mobile.active {
  display: flex;
  left: 0px !important;
  transition: all 0.25s ease-in-out !important;
}

.bottom-nav-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 34px;
}
.bottom-nav-icon > div {
  width: auto !important;
  height: 34px !important;
  font-size: 13px;
  color: #2e333a !important;
  text-align: center !important;
  padding: 0px 0px !important;
  background-color: white;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px 0px 0px !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
}
.bottom-nav-icon > div::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: #ce3031;
  content: "";
  padding: 0px 10px 0px 10px !important;
  height: 100%;
  border-right: 1px solid #e9e9e9;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer !important;
  background-color: white;
}
.bottom-nav-icon.active > div {
  background-color: #ce3031;
  color: white !important;
}

.bottom-nav {
  position: absolute;
  left: 20px;
  bottom: 70px;
  width: auto;
  height: auto;
  border-radius: 4px;
  background-color: #ededed;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  display: inline-block;
  overflow: hidden;
}
.bottom-nav .block-container {
  position: relative !important;
  width: auto;
  max-height: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: max-height 0.5s ease-in-out;
}
.bottom-nav .block-container .item {
  position: relative !important;
  top: unset !important;
  left: unset !important;
  background: transparent !important;
  padding: 0px 16px;
  cursor: pointer;
}
.bottom-nav .block-container .item i {
  color: #9ca4ad;
  padding-right: 6px;
}
.bottom-nav .block-container .item::after {
  position: absolute;
  position: absolute;
  content: "";
  width: 1px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #525f6d;
}
.bottom-nav .block-container .item:nth-of-type(1)::after {
  display: none;
}
.bottom-nav .block-container .item > div {
  position: relative !important;
  color: #000 !important;
  font-size: 13px !important;
  border: 0px !important;
  font-weight: 700;
  text-transform: none;
  line-height: 35px;
  cursor: pointer !important;
}
.bottom-nav .block-container .item.unactive {
  opacity: 0.2;
  cursor: default !important;
}
.bottom-nav .block-container .item.unactive > div {
  cursor: default !important;
}
.bottom-nav .block-container .item:hover > div {
  color: #ce3031 !important;
}
.bottom-nav .block-container.active {
  max-height: 200px;
}
.bottom-nav .block-container.mobile {
  flex-direction: column;
  align-items: flex-start;
}
.bottom-nav .block-container.mobile .item::after {
  display: none;
}

.compas img {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border: 1px solid #fff;
}

.botton-right-nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.botton-right-nav .item {
  position: relative !important;
  width: auto !important;
  height: auto !important;
  padding-right: 10px;
}
.botton-right-nav .item:nth-last-child(1) {
  padding-right: 0px;
}
.botton-right-nav .item.floorpl.active > div {
  background-color: #ce3031 !important;
}
.botton-right-nav .item.floorpl.active > div i {
  color: white !important;
}
.botton-right-nav .item > div {
  position: relative !important;
  width: 34px !important;
  height: 34px !important;
  padding: 5px !important;
  background-color: white !important;
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
}
.botton-right-nav .item > div i {
  color: #353d45;
  font-size: 20px;
  cursor: pointer !important;
}

.hamburger {
  position: absolute;
  top: 4.5px !important;
  left: 11px !important;
  width: 26px !important;
  height: 26px !important;
  display: none;
  justify-content: center;
  align-items: center;
}
.hamburger:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: white !important;
  border-radius: 4px !important;
}
.hamburger:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../../assets/icons/menu.svg) !important;
  background-size: 15px 11px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.hamburger.active {
  display: flex;
}
.hamburger.open:before {
  background: red !important;
}
.hamburger.open:after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  background-image: url(../../assets/icons/close.svg) !important;
}

@media (hover: hover) and (pointer: fine) {
  .botton-right-nav .item > div:hover {
    background-color: #ce3031 !important;
  }
  .botton-right-nav .item > div:hover i {
    color: white;
  }

  .bottom-nav-icon > div:hover {
    background-color: #ce3031;
    color: white !important;
  }

  .arrow:hover {
    background: rgba(0, 0, 0, 0.7);
  }
}
.arrow {
  position: absolute !important;
  width: 38px !important;
  height: 38px !important;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  transition: all 0.2s ease-in-out !important;
}
.arrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: white;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer !important;
}
.arrow.left {
  left: 20px !important;
  right: auto;
}
.arrow.left:before {
  content: "";
}
.arrow.right {
  right: 20px !important;
  left: auto;
}
.arrow.right:before {
  content: "";
}

/* TIMELINE */
/* Media Queries */
/* Card sizing */
/* Colors */
/* Calculations */
/* Placeholders */
@media (min-width: 1000px) {
  #timeline .demo-card:nth-child(even) .head::after, #timeline .demo-card:nth-child(odd) .head::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }

  #timeline .demo-card:nth-child(even) .head::before, #timeline .demo-card:nth-child(odd) .head::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #bdbdbd;
    border-radius: 9px;
    box-shadow: 0px 0px 2px 8px rgba(0, 0, 0, 0.8);
  }
}
/* Some Cool Stuff */
.demo-card:nth-child(1) {
  order: 1;
}

.demo-card:nth-child(2) {
  order: 8;
}

.demo-card:nth-child(3) {
  order: 2;
}

.demo-card:nth-child(4) {
  order: 9;
}

.demo-card:nth-child(5) {
  order: 3;
}

.demo-card:nth-child(6) {
  order: 10;
}

.demo-card:nth-child(7) {
  order: 4;
}

.demo-card:nth-child(8) {
  order: 11;
}

.demo-card:nth-child(9) {
  order: 5;
}

.demo-card:nth-child(10) {
  order: 12;
}

.demo-card:nth-child(11) {
  order: 6;
}

.demo-card:nth-child(12) {
  order: 13;
}

.demo-card:nth-child(13) {
  order: 7;
}

.demo-card:nth-child(14) {
  order: 14;
}

/* Border Box */
* {
  box-sizing: border-box;
}

/* Fonts */
#timeline {
  width: inherit;
  padding: 100px 0;
  border-top: 1px solid rgba(191, 191, 191, 0.4);
  border-bottom: 1px solid rgba(191, 191, 191, 0.4);
}
#timeline h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 20px;
  color: white;
}
#timeline p.leader {
  text-align: center;
  max-width: 90%;
  margin: auto;
  margin-bottom: 45px;
}
#timeline .demo-card-wrapper {
  position: relative;
  margin: auto;
}
@media (min-width: 1000px) {
  #timeline .demo-card-wrapper {
    display: flex;
    flex-flow: column wrap;
    width: 1170px;
    height: 3610px;
    margin: 0 auto;
  }
}
#timeline .demo-card-wrapper::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid rgba(191, 191, 191, 0.4);
}
@media (min-width: 1000px) {
  #timeline .demo-card-wrapper::after {
    border-left: 1px solid #bdbdbd;
  }
}
#timeline .demo-card {
  position: relative;
  display: block;
  margin: 10px auto 80px;
  max-width: 94%;
  z-index: 2;
}
@media (min-width: 480px) {
  #timeline .demo-card {
    max-width: 60%;
    box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
  }
}
@media (min-width: 720px) {
  #timeline .demo-card {
    max-width: 40%;
  }
}
@media (min-width: 1000px) {
  #timeline .demo-card {
    max-width: 450px;
    height: 400px;
    margin: 90px;
    margin-top: 45px;
    margin-bottom: 45px;
  }
  #timeline .demo-card:nth-child(odd) {
    margin-right: 45px;
  }
  #timeline .demo-card:nth-child(odd) .head::after {
    border-left-width: 15px;
    border-left-style: solid;
    left: 100%;
  }
  #timeline .demo-card:nth-child(odd) .head::before {
    left: 491.5px;
  }
  #timeline .demo-card:nth-child(even) {
    margin-left: 45px;
  }
  #timeline .demo-card:nth-child(even) .head::after {
    border-right-width: 15px;
    border-right-style: solid;
    right: 100%;
  }
  #timeline .demo-card:nth-child(even) .head::before {
    right: 489.5px;
  }
  #timeline .demo-card:nth-child(2) {
    margin-top: 180px;
  }
}
#timeline .demo-card .head {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 400;
}
#timeline .demo-card .head .number-box {
  display: inline;
  float: left;
  margin: 15px;
  padding: 10px;
  font-size: 35px;
  line-height: 35px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.17);
}
#timeline .demo-card .head h2 {
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: inherit;
  letter-spacing: 2px;
  margin: 0;
  padding-bottom: 6px;
  line-height: 1.4rem;
  white-space: pre-wrap;
}
@media (min-width: 480px) {
  #timeline .demo-card .head h2 {
    font-size: 130%;
    line-height: 1.4rem;
  }
}
#timeline .demo-card .head h2 span {
  display: block;
  font-size: 0.6rem;
  margin: 0;
}
@media (min-width: 480px) {
  #timeline .demo-card .head h2 span {
    font-size: 0.8rem;
  }
}
#timeline .demo-card .body {
  background: #fff;
  border: 1px solid rgba(191, 191, 191, 0.4);
  border-top: 0;
  white-space: pre-wrap;
}
@media (min-width: 1000px) {
  #timeline .demo-card .body {
    height: auto;
  }
}
#timeline .demo-card .body p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 15px;
  padding: 0px 20px;
}
#timeline .demo-card .body img {
  display: block;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease-in-out !important;
  cursor: pointer;
}
#timeline .demo-card .body .image {
  position: relative;
  width: auto;
  height: auto;
  cursor: pointer;
}
#timeline .demo-card .body .image:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: white;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 0.25s;
  -webkit-transition: all 0.25s;
}
#timeline .demo-card .body .image:hover:after {
  opacity: 1;
}

sup {
  vertical-align: super !important;
  font-size: 70% !important;
}

.murovanie {
  background-color: #ce3031;
}
.murovanie > .head::after {
  border-color: #ce3031 !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
}

.beton {
  background-color: #46b8e9 !important;
}
.beton .head::after {
  border-color: #46b8e9 !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
}

.zem {
  background-color: #2E333A !important;
}
.zem .head::after {
  border-color: #2E333A !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
}

.close {
  width: 34px;
  height: 34px;
  background-color: #ce3031;
  border-radius: 50%;
}
.close:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  background-image: url(../../assets/icons/close.svg) !important;
  background-size: 15px 11px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.time {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.navigation {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: auto !important;
  height: auto !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
}
.navigation > div {
  position: relative !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  align-items: center;
  color: #fff !important;
  background-color: transparent !important;
  border: none !important;
  padding: 6px !important;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}

.floorplan {
  position: absolute !important;
  top: 50%;
  right: -400px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  transition: all 0.2s ease-in-out !important;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.floorplan.active {
  right: 0px !important;
}

@media (max-width: 800px) {
  .floorplan {
    right: -80%;
    width: 80%;
    height: 50%;
  }
}