@charset "UTF-8";
tr.reserved a, .hotspot-default.leaflet-interactive.reserved {
  pointer-events: none;
}

.current_page_item a:after {
  width: 100% !important;
  left: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", sans-serif;
  color: #00263E;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mainWrapper {
  flex: 1;
  display: flex;
  align-items: flex-start;
  align-items: stretch;
}

main {
  width: 100%;
  padding-top: 120px;
}

.sectionWidth {
  max-width: 1730px;
  width: 100%;
  margin: auto;
  padding: 50px 20px;
}
.sectionWidth.w-100 {
  max-width: inherit;
  width: 100%;
}

header {
  width: 100%;
  background: #fff;
  position: fixed;
  z-index: 999;
  box-shadow: 0px 4px 55px 0px rgba(0, 0, 0, 0.12);
  transition: background-color 0.25s;
}

.logoLight {
  display: none;
}

h1 {
  font-family: "Teodor";
  font-size: clamp(30px, 6vw, 88px);
  color: #fff;
  text-align: center;
  margin: 0;
}

h2 {
  font-family: "Teodor";
  font-size: clamp(25px, 6vw, 44px);
  margin: 0;
}

h3 {
  font-size: clamp(21px, 4vw, 33px);
  margin: 0;
}

h4 {
  font-size: clamp(18px, 6vw, 27px);
  font-weight: 400;
  margin: 0;
}

p, li {
  font-size: clamp(16px, 6vw, 21px);
  line-height: 155.8%;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

nav {
  max-width: 1730px;
  padding: 30px 20px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navWrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  z-index: 10;
  line-height: 0;
}
.logo img {
  width: 100%;
  max-width: 300px;
  height: 60px;
}
.logo a {
  line-height: 0;
}

a.login path {
  transition: fill 0.25s;
}
a.login:hover path {
  fill: #CECECE;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 3.2px;
  z-index: 21;
}
.burger span {
  display: block;
  width: 30px;
  height: 3.2px;
  margin-bottom: 5.2px;
  position: relative;
  z-index: 1;
  transform-origin: 0 0;
  transition: 0.4s;
  background-color: #00263E;
}
.burger.is-active span:nth-child(1) {
  transform: translate(4.5px, 0px) rotate(41deg);
  background-color: #fff;
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-15px);
}
.burger.is-active span:nth-child(3) {
  transform: translate(3px, 3.5px) rotate(-42deg);
  background-color: #fff;
}

.menu {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.menu li {
  list-style-type: none;
}
.menu li:first-child {
  margin-left: 0;
}
.menu li a {
  text-decoration: none;
  font-size: 21px;
  font-weight: 400;
  color: #00263E;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}
.menu li a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #00263E;
  transition: width 0.25s ease 0s, left 0.25s ease 0s;
  width: 0;
}
.menu li a:hover:after {
  width: 100%;
  left: 0;
}

.menu.active {
  z-index: 20;
  display: none;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0, 38, 62, 0.93);
  width: 100%;
  min-height: 100vh;
  top: 0;
  left: 0;
  padding: 80px 0;
  animation-name: animaceMenuA;
  animation-duration: 0.5s;
}
@keyframes animaceMenuA {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu.active li {
  margin: 0;
}
.menu.active li a {
  font-size: 25px;
  color: #fff;
}
.menu.active li a:after {
  background-color: #fff;
}
.menu.active li.current_page_item a:after {
  background-color: #fff;
}

body.home .cover .sectionWidth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home main {
  padding-top: 0;
}

.transparentHeader header {
  background-color: transparent;
  box-shadow: none;
  transition: background-color 0.25s;
}
.transparentHeader header .burger span {
  background-color: #fff;
}
.transparentHeader header .menu li a:after {
  background-color: #fff;
}
.transparentHeader header a.login path {
  fill: #fff;
}
.transparentHeader header a.login:hover path {
  fill: #CECECE;
}
.transparentHeader header .menu li a {
  color: #fff;
}
.transparentHeader header .logoDark {
  display: none;
}
.transparentHeader header .logoLight {
  display: block;
}

.coverImg img {
  width: 100%;
  height: 100%;
  display: block;
  max-height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.coverText {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
}
.coverText p {
  max-width: 1200px;
}

.cover {
  min-height: 570px;
}
.cover.center {
  display: flex;
  align-items: center;
  text-align: center;
}

.fancybox.video {
  padding: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.fancybox.video .sectionWidth {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 50px auto;
  padding: 0;
}
.fancybox.video iframe {
  width: 100%;
  height: 90%;
  position: absolute;
  left: 0;
  top: 0;
}
.fancybox.video button.carousel__button.is-close {
  top: 0;
  z-index: 50;
  background-color: #00263E;
  width: 50px;
  height: 50px;
}
.fancybox.video button.carousel__button.is-close svg {
  width: 30px;
}

.coverHp {
  min-height: 730px;
  background-image: url(../images/main/hp-bg.svg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.coverHp h1 {
  text-shadow: 0px 0px 33px rgba(0, 0, 0, 0.33);
}
.coverHp .sectionWidth {
  padding: 120px 20px;
}

.coverContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.coverContent p {
  text-align: center;
}

.bgImg {
  width: 100%;
  height: 100%;
}
.bgImg img, .bgImg video {
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.benefits .container {
  display: flex;
  gap: 100px;
}
.benefits .wrapper {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  width: 33%;
}
.benefits .wrapper .spotlight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
}
.benefits .wrapper:nth-child(2) {
  position: relative;
}
.benefits .wrapper:nth-child(2):before {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #CECECE;
  position: absolute;
  left: -50px;
  top: 0;
}
.benefits .wrapper:nth-child(2)::after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #CECECE;
  position: absolute;
  right: -50px;
  top: 0;
}
.benefits .textWrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-template-financing .benefits .wrapper {
  width: 46%;
}
.page-template-financing .benefits .wrapper:nth-child(2)::after {
  display: none;
}

.actualityBanner p {
  max-width: 480px;
}

.logoBg {
  right: 0;
  bottom: 0;
}
.logoBg img {
  display: block;
}

.textImg {
  display: flex;
  align-items: center;
  gap: 5%;
}
.textImg .wrapper {
  width: 50%;
  overflow: hidden;
}
.textImg .image img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  min-height: 550px;
  max-height: 750px;
  height: 100%;
  width: 100%;
}
.textImg .image {
  position: relative;
}
.textImg .text {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.source {
  position: absolute;
  z-index: 1;
  background: #00263e;
  bottom: 15px;
  right: 15px;
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
}

.contact .sectionWidth, .locationInformation .sectionWidth {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contactContainer, .locationInformation .container {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.contactContainer .wrapper, .locationInformation .container .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  min-width: 400px;
}
.contactContainer li, .locationInformation .container li {
  list-style: none;
}
.contactContainer a, .locationInformation .container a {
  color: #00263E;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 10px;
  transition: color 0.25s;
}
.contactContainer a svg path, .locationInformation .container a svg path {
  transition: fill 0.25s;
}
.contactContainer a:hover, .locationInformation .container a:hover {
  color: #CECECE;
}
.contactContainer a:hover svg path, .locationInformation .container a:hover svg path {
  fill: #CECECE;
}

.locationInformation .info img {
  margin-bottom: 20px;
}

.cooperation .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.cooperation .logos {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}
.cooperation .imgWrapper {
  height: 90px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cooperation .logoWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cooperation .logoWrapper img {
  max-height: 100%;
}

.projects .sectionWidth {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.articleGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.articleGrid.more {
  display: none;
}
.articleGrid .link {
  text-decoration: none;
  font-size: clamp(16px, 6vw, 21px);
  display: flex;
  gap: 10px;
  align-items: center;
}
.articleGrid .link h3 {
  color: #00263E;
  transition: color 0.25s;
}
.articleGrid .link:hover h3 {
  color: #CECECE;
}

.moreButton {
  margin: auto;
  cursor: pointer;
}
.moreButton span svg {
  transition: transform 0.25s;
  width: inherit;
}
.moreButton span.close svg {
  transform: rotate(180deg);
}

.articleWrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.articleWrapper .thumbnailWrapper img {
  max-width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.articleWrapper .contentWrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bg-form {
  padding-left: 20px;
  padding-right: 20px;
}

.wpcf7-not-valid-tip {
  font-size: 15px !important;
  font-weight: 600;
  margin-bottom: -20px !important;
  padding: 0 !important;
  margin-top: 5px !important;
}

.contactFormWrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contactFormWrapper .wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hiden input {
  color: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.checkboxWrapper {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}
.checkboxWrapper a {
  color: #fff;
}
.checkboxWrapper p {
  font-size: 15px;
}

form {
  max-width: 500px;
  margin: auto;
  margin-top: 40px;
}
form p {
  line-height: inherit;
}
form br {
  display: none;
}
form .wrapper > p {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
form select {
  cursor: pointer;
}
form input, form textarea, form select {
  width: 100%;
  color: #fff;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 10px;
}
form input::-moz-placeholder, form textarea::-moz-placeholder, form select::-moz-placeholder {
  color: #fff;
}
form input::placeholder, form textarea::placeholder, form select::placeholder {
  color: #fff;
}
form .button {
  justify-content: center;
  margin: auto;
}
form input:-webkit-autofill, form input:-webkit-autofill:hover, form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
form option {
  background: #00263E;
}
form input, form select {
  border-bottom: 2px solid #fff;
}
form textarea {
  border: 2px solid #fff;
  border-radius: 5px;
  margin-top: 10px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #00263E !important;
  text-align: center !important;
  padding: 10px !important;
  background: #ffffff !important;
  font-weight: 600;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  text-align: center;
  margin-bottom: 0;
  margin-top: 10px;
  font-weight: 600;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #00263E !important;
  background: #00263E !important;
  color: #fff !important;
}

.error404 main .sectionWidth, .page-template-thankyouPage main .sectionWidth {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.error404 main .sectionWidth h1, .page-template-thankyouPage main .sectionWidth h1 {
  font-size: clamp(50px, 6vw, 100px);
  color: #00263E;
}
.error404 main .sectionWidth .button, .page-template-thankyouPage main .sectionWidth .button {
  margin-top: 20px;
}
.error404 main .sectionWidth .f-23, .page-template-thankyouPage main .sectionWidth .f-23 {
  font-size: clamp(16px, 6vw, 23px) !important;
}

.postContent .sectionWidth {
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.postContent .sectionWidth h1 {
  text-align: left;
}
.postContent .linkToActuality a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: clamp(16px, 6vw, 21px);
}

.date {
  text-transform: uppercase;
}

.actualityPage .sectionWidth {
  max-width: 1100px;
  margin: auto;
  display: grid;
  gap: 40px;
}

.actualityPage .postContainer {
  height: 300px;
  overflow: hidden;
  background-color: #fff;
  color: #00263E;
  display: flex;
  align-items: center;
}
.actualityPage .postContainer a h3 {
  transition: color 0.25s;
}
.actualityPage .postContainer a:hover h3 {
  color: #CECECE;
}
.actualityPage .wrapper {
  width: 50%;
}
.actualityPage .text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
}
.actualityPage a {
  text-decoration: none;
  color: #00263E;
}
.actualityPage .image {
  overflow: hidden;
}
.actualityPage .image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  display: block;
}
.actualityPage .link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.socials {
  display: flex;
  gap: 20px;
}
.socials a {
  text-decoration: none;
}
.socials a path {
  transition: fill 0.25s;
}
.socials a:hover path {
  fill: #CECECE;
}

.footerMenu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footerMenu li {
  list-style-type: none;
}
.footerMenu a {
  text-decoration: none;
  font-size: 18px;
  color: #00263E;
  display: inline-block;
  position: relative;
  padding-bottom: 0px;
}
.footerMenu a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #00263E;
  transition: width 0.25s ease 0s, left 0.25s ease 0s;
  width: 0;
}
.footerMenu a:hover:after {
  width: 100%;
  left: 0;
}

footer .sectionWidth {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
  flex-wrap: wrap;
}

.footerWrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.copy {
  display: flex;
  font-size: clamp(16px, 6vw, 21px);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.copy p {
  display: flex;
  gap: 20px;
  font-size: 18px;
}

.gap-5 {
  gap: 5px !important;
}

.coverContainer {
  display: flex;
  align-items: center;
}

.cover .image {
  display: block;
  overflow: hidden;
  height: 100%;
}
.cover .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 570px;
  display: block;
  top: 0;
  right: 0;
}
.cover .content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 40px 20px 40px 5%;
}
.cover .content p {
  max-width: 730px;
}

.ow-auto {
  overflow-wrap: auto;
}

.vicinity {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.ch-tm-section {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  overflow: auto;
}
.ch-tm-section.active {
  position: static;
  left: auto;
  opacity: 1;
  pointer-events: auto;
}

.ch-tm-tiles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 6vw, 60px);
  padding-left: 20px;
  padding-right: 20px;
}

.ch-tm-tile {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: clamp(5px, 6vw, 10px) clamp(25px, 6vw, 40px);
  border-radius: 50px;
  font-size: clamp(16px, 6vw, 21px);
  border: 2px solid #00263E;
  background-color: #fff;
  transition: background-color 0.25s, color 0.25s;
}
.ch-tm-tile svg {
  width: clamp(25px, 6vw, 30px);
  height: clamp(25px, 6vw, 30px);
}
.ch-tm-tile svg path {
  transition: fill 0.25s;
}
.ch-tm-tile p {
  line-height: 0;
}
.ch-tm-tile.active {
  background-color: #00263E;
  color: #fff;
}
.ch-tm-tile.active svg path {
  fill: #fff;
}

.textImgContainer .textImg.dark {
  background-color: #00263E;
  color: #fff;
}
.textImgContainer .textImg.dark .source {
  left: 15px;
  right: auto;
}
.textImgContainer .textImg.dark .button.primary {
  background-color: #fff;
  border-color: #fff;
}
.textImgContainer .textImg.dark .button.primary:hover {
  background-color: #00263E;
}
.textImgContainer .textImg.light {
  flex-direction: row-reverse;
}
.textImgContainer .button.primary {
  min-width: -moz-max-content;
  min-width: max-content;
}
.textImgContainer .halfContent {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 20px;
}
.textImgContainer .image {
  width: 45%;
}

.coverTim h1 {
  text-align: left;
}

.contentText {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  max-width: 1300px;
  margin: auto;
}
.timeline::after {
  content: "";
  width: 80%;
  height: 1px;
  background-color: #00263E;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.timeline .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline .wrapper p {
  width: 360px;
}
.timeline .wrapper .imgWrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
}
.timeline .wrapper img {
  filter: drop-shadow(0px 4px 44px rgba(220, 232, 240, 0.75));
}

.fancybox__nav .carousel__button, .fancybox__toolbar .carousel__button {
  background-color: #00263E;
  transition: opacity 0.5s;
  opacity: 0.75;
}
.fancybox__nav .carousel__button:hover, .fancybox__toolbar .carousel__button:hover {
  opacity: 1;
}

.carousel__viewport, .fancybox__counter, .carousel__button.fancybox__button--zoom {
  display: none;
}

.fancybox__toolbar__items--right {
  gap: 10px;
}

.gallerySlider img {
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
}
.gallerySlider .label {
  bottom: 0;
  left: 0;
  background-color: #00263E;
  padding: 20px;
  color: #fff;
  text-transform: uppercase;
  min-width: 200px;
  text-align: center;
}
.gallerySlider .slick-next {
  right: 5px;
}
.gallerySlider .slick-next:before {
  content: url(../images/main/sliderArrowRprimary.svg);
}
.gallerySlider .slick-prev {
  left: 5px;
}
.gallerySlider .slick-prev:before {
  content: url(../images/main/sliderArrowLprimary.svg);
}

.gallerySliders h2 {
  text-align: center;
}
.gallerySliders h3 {
  margin: 40px 0 20px;
}
.gallerySliders .slick-list {
  box-shadow: 0px 4px 44px 0px rgba(148, 166, 177, 0.44);
  height: 460px;
}
.gallerySliders img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 460px;
}

.gallerySlider {
  padding: 0 100px;
  max-width: 1100px;
  margin: auto;
}

.standardsCover .coverContainer {
  justify-content: flex-end;
}
.standardsCover .content {
  padding: 40px 20px;
}

.energyDemand .textImg .image img {
  max-width: 100%;
}
.energyDemand .textImg li {
  list-style: inside;
}
.energyDemand h2 {
  margin-bottom: 50px;
}
.energyDemand ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.downloadContainer {
  display: flex;
  gap: 30px clamp(40px, 20vw, 150px);
  flex-wrap: wrap;
}

.pdfLink {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: #00263E;
  width: -moz-max-content;
  width: max-content;
  font-size: clamp(16px, 20vw, 21px);
  font-style: normal;
  font-weight: 600;
}
.pdfLink img {
  width: clamp(20px, 20vw, 56px);
}

.developerPage .cover {
  flex-direction: column;
  background: none !important;
  color: #fff;
}
.developerPage .cover p {
  max-width: 1030px;
}

.company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 2px solid #fff;
}
.company .counter-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1424px;
  margin: auto;
}
.company .counter-block .wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.company .counter-block span {
  font-size: clamp(25px, 6vw, 44px);
  font-family: "Teodor";
}

.pricelistPage tr td:last-child a {
  font-weight: 600;
}
.pricelistPage tr td:last-child a {
  color: #92C76D;
}
.pricelistPage tr.reserved td:last-child a {
  color: #F49426;
}
.pricelistPage tr.sold td:last-child a {
  color: #BE3D3D !important;
}

table {
  width: 100%;
  min-width: 500px;
}

.tableWrapper {
  overflow: auto;
  padding: 20px 10px;
}

td, th {
  text-align: center;
}
td a, th a {
  display: block;
  padding: 10px;
  color: #00263E;
  text-decoration: none;
}

tr {
  font-size: 20px;
  transition: background-color 0.25s;
}
tr:nth-child(odd).reserved:hover {
  background-color: #F7FBFE;
}
tr:nth-child(even).reserved:hover {
  background-color: #fff;
}
tr:not(:first-child):hover {
  background-color: #CECECE;
}
tr:nth-child(odd) {
  background-color: #F7FBFE;
}
tr:first-child {
  background-color: #fff;
  font-size: 25px;
}
tr:first-child th {
  padding-bottom: 30px;
}

.searchandfilter li[data-sf-field-input-type=checkbox] label, .searchandfilter li[data-sf-field-input-type=radio] label, .searchandfilter li[data-sf-field-input-type=range-checkbox] label, .searchandfilter li[data-sf-field-input-type=range-radio] label {
  padding-left: 5px !important;
}

.filter .container form {
  max-width: 100%;
}
.filter .container form > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.filter .container form > ul > li {
  max-width: 430px;
  width: 100%;
}
.filter .container input[type=checkbox] {
  cursor: pointer;
}
.filter .container h4 {
  font-size: clamp(20px, 5vw, 33px);
  font-weight: 600;
  margin-bottom: 10px;
}
.filter .container .wrapper {
  max-width: 600px;
  width: 100%;
}
.filter form {
  margin: 0;
}
.filter form input, .filter form textarea, .filter form select {
  width: auto;
  border: 2px solid #00263E;
  border-radius: 5px;
  color: #00263E;
}
.filter .sf-field-post-meta-dispozice ul, .filter .sf-field-post-meta-patro ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}

.search-filter-results p {
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 50px auto;
  font-size: 25px;
  font-weight: 600;
  padding: 10px 0;
  border-top: 1px solid #00263E;
  border-bottom: 1px solid #00263E;
  max-width: 1730px;
}

.sf-meta-range.sf-meta-range-slider {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, 1fr);
}
.sf-meta-range.sf-meta-range-slider span {
  grid-column-start: 7;
  grid-column-end: 7;
  display: grid;
  justify-items: center;
  align-items: center;
}
.sf-meta-range.sf-meta-range-slider label:first-child {
  grid-column-start: 1;
  grid-column-end: 7;
  display: grid;
  position: relative;
}
.sf-meta-range.sf-meta-range-slider label:first-child::after {
  content: "Kč";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0%, -50%);
}
.sf-meta-range.sf-meta-range-slider label:nth-child(3) {
  grid-column-start: 8;
  grid-column-end: 14;
  display: grid;
  position: relative;
}
.sf-meta-range.sf-meta-range-slider label:nth-child(3)::after {
  content: "Kč";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0%, -50%);
}

.searchandfilter .sf-range-max, .searchandfilter .sf-range-min {
  max-width: 100%;
  width: 100%;
}

.searchandfilter .noUi-handle {
  border: none;
  box-shadow: none;
  background-color: #00263E;
  cursor: pointer;
}

.searchandfilter .noUi-horizontal .noUi-handle:after, .searchandfilter .noUi-horizontal .noUi-handle:before {
  display: none;
}

.searchandfilter .meta-slider {
  height: 4px;
  max-width: 100%;
  border: none;
  background: #CECECE;
  box-shadow: none;
  grid-column-start: 1;
  grid-column-end: 14;
  padding: 0 12px;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -13px;
}

.searchandfilter .noUi-connect {
  background-color: #00263E;
}

.searchandfilter .noUi-horizontal .noUi-handle {
  width: 25px;
  height: 25px;
  top: -10px;
}

.searchandfilter li[data-sf-field-input-type=checkbox] label {
  font-size: clamp(16px, 5vw, 21px);
  cursor: pointer;
}

.searchandfilter .sf-range-max, .searchandfilter .sf-range-min {
  padding-right: 30px;
}

.pricelistDetailMenu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 10%;
}
.pricelistDetailMenu li {
  list-style-type: none;
}
.pricelistDetailMenu li.selected a {
  background-color: #00263E;
  cursor: context-menu;
  color: #fff;
  background-color: #00263E;
}
.pricelistDetailMenu a {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  width: clamp(150px, 15vw, 200px);
  padding: clamp(5px, 4vw, 10px);
  border-radius: 40px;
  font-size: clamp(16px, 5vw, 20px);
  font-weight: 400;
  text-decoration: none;
  border: 1px solid;
  transition: background-color 0.25s, color 0.25s;
  color: #00263E;
  background-color: transparent;
  border-color: #00263E;
}
.pricelistDetailMenu a:hover, .pricelistDetailMenu a:active {
  color: #fff;
  background-color: #00263E;
}

.links {
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 30px;
  max-width: 1200px;
}
.links .print {
  cursor: pointer;
}
.links a {
  color: #00263E;
  text-decoration: none;
  font-size: clamp(16px, 3vw, 21px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.links a span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.5s;
}
.links a:hover span {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.page .table table {
  max-width: 900px;
  margin: auto;
  min-width: auto;
}
.page .table tr:nth-child(even) {
  background-color: #fff;
}
.page .table tr:nth-child(even):hover {
  background-color: #fff;
}
.page .table tr:nth-child(odd) {
  background-color: #F7FBFE;
}
.page .table tr:nth-child(odd):hover {
  background-color: #F7FBFE;
}
.page .table .bg-gray {
  font-weight: 600;
}
.page .table td:first-child, .page .table th:first-child {
  font-weight: 600;
}
.page .table td, .page .table th {
  padding: 10px;
}
.page .table tr:first-child {
  background-color: #F7FBFE;
  font-size: 20px;
}
.page .table tr:first-child:hover {
  background-color: #F7FBFE;
}

.page.block {
  display: block !important;
}

.coverTable {
  max-width: 1100px;
  margin: 50px auto 0;
  font-size: 18px;
}
.coverTable table {
  width: 100%;
  min-width: auto;
}
.coverTable tr:nth-child(odd) {
  background: rgba(148, 166, 177, 0.24);
  color: #fff;
}
.coverTable tr:nth-child(even) {
  background: #00263E;
  color: #fff;
}
.coverTable td {
  padding: 5px 10px;
  font-size: clamp(14px, 4vw, 18px);
}
.coverTable td:first-child {
  text-align: left;
  font-weight: 600;
  padding: 10px 0 10px 20%;
}
.coverTable td:last-child {
  text-align: left;
  padding: 10px 20% 10px 0px;
}

.pricelistDetailContent .image {
  margin: 50px auto;
}
.pricelistDetailContent .image img {
  box-shadow: 0px 0px 22px 0px rgba(0, 38, 62, 0.12);
  display: block;
  max-width: 100%;
  margin: auto;
  max-height: 600px;
}
.pricelistDetailContent h2 {
  text-align: center;
  margin-bottom: 50px;
}

.termsfeed-com---palette-light .cc-cp-foot-byline {
  opacity: 0;
}
.termsfeed-com---palette-light .cc-cp-foot-byline a {
  display: none;
}

body .termsfeed-com---palette-light .cc-nb-changep, body .termsfeed-com---palette-light .cc-cp-body-content {
  background-color: white !important;
}

.termsfeed-com---palette-light .cc-nb-changep {
  background-color: #eaeaea !important;
  color: #0A003D !important;
  border-radius: 50px;
  min-width: 170px;
}

#termsfeed-com---nb {
  bottom: 3vh;
  top: auto;
}

.termsfeed-com---palette-light .cc-nb-text, .termsfeed-com---palette-light .cc-nb-title, .termsfeed-com---palette-light .cc-pc-head-title-headline, .termsfeed-com---palette-light .cc-cp-body-content-entry-title, .termsfeed-com---palette-light .cc-cp-body-content-entry-text, .termsfeed-com---palette-light .cc-cp-body-tabs-item[active=true] button, .termsfeed-com---reset label, .termsfeed-com---palette-light .cc-cp-foot-byline, .termsfeed-com---palette-light .cc-cp-body-tabs-item-link, .termsfeed-com---palette-light .cc-pc-head-lang select {
  color: #0A003D !important;
  font-family: "Poppins", sans-serif !important;
}

.termsfeed-com---palette-light .cc-pc-head-lang select {
  cursor: pointer;
  font-weight: 600;
}

.termsfeed-com---palette-light .cc-cp-body-content-entry a {
  color: #00263E !important;
}

.termsfeed-com---nb .cc-nb-main-container {
  background: white !important;
}

.cc-cp-foot-byline {
  display: none !important;
}

.termsfeed-com---palette-light .cc-pc-head-close:focus, body .termsfeed-com---palette-light .cc-cp-body-tabs-item-link:focus {
  border: none !important;
  box-shadow: none !important;
}

.termsfeed-com---pc-dialog .cc-cp-body-content-entry, body .termsfeed-com---palette-light .cc-cp-body-tabs-item[active=true] {
  background: white !important;
}

.termsfeed-com---palette-light .cc-nb-okagree:hover, .termsfeed-com---palette-light .cc-cp-foot-save:hover {
  background-color: white !important;
  color: #00263E !important;
  box-shadow: 0 0 2px #00263E;
}

body .termsfeed-com---palette-light .cc-pc-head-lang select:focus, .termsfeed-com---palette-light .cc-nb-changep:focus {
  box-shadow: none !important;
  border: none !important;
}

.cc-pc-head-close {
  color: #00263E !important;
  font-weight: 600 !important;
}

/********* mapa ******/
.mapp-title {
  font-size: clamp(16px, 6vw, 21px);
  font-family: "Work Sans", sans-serif;
  color: #00263E !important;
  text-align: left;
}

.mapp-item.mapp-selected {
  background: rgba(0, 38, 62, 0.368627451) !important;
}

.mapp-list .mapp-item {
  border: none !important;
}

.mapp-wrapper {
  min-height: 650px !important;
}

.mapp-layout {
  border: none !important;
}

.mapp-dir-wrapper, .mapp-body {
  display: none !important;
}

.mapp-iw .mapp-title {
  padding: 10px;
  text-align: center;
}

.mapp-iw .mapp-info .mapp-template {
  justify-content: center;
}

.mapp-items {
  background: #F7FBFE !important;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
}

.mapp-sidebar {
  border: none !important;
}

.mapp-list .mapp-info .mapp-template {
  gap: 15px;
}

.mapp-item {
  width: 50%;
  min-width: 300px;
}

.mapp-sidebar.mapp-sidebar-open {
  width: 50%;
}

.map.w-50p {
  width: 100% !important;
}

.grecaptcha-badge {
  display: none !important;
}

iframe {
  border: none;
}

.map.w-50p {
  position: relative;
  overflow: hidden;
}

.vicinity .map p {
  position: absolute;
  width: 100%;
  height: 120% !important;
  top: -20%;
}

.energyDemand .textImg {
  display: flex;
  align-items: flex-start;
}

.energyDemand .textImg .image img {
  max-width: 390px !important;
  min-height: inehrit;
  -o-object-fit: contain;
     object-fit: contain;
}

.sold {
  fill-opacity: 0.5 !important;
  fill: #BE3D3D !important;
  stroke: #BE3D3D !important;
  stroke-opacity: 0 !important;
}

#hotspot-356 .hotspot-default.sold:hover, #hotspot-356 .hotspot-default.sold:focus, #hotspot-356 .hotspot-default.hotspot-active.sold {
  fill-opacity: 0.5 !important;
  fill: #BE3D3D !important;
  stroke: #BE3D3D !important;
  stroke-opacity: 0 !important;
}

.reserved {
  fill-opacity: 0.7 !important;
  fill: #F49426 !important;
  stroke: #F49426 !important;
  stroke-opacity: 0 !important;
}

#hotspot-356 .hotspot-default.reserved:hover, #hotspot-356 .hotspot-default.reserved:focus, #hotspot-356 .hotspot-default.hotspot-active.reserved {
  fill-opacity: 0.7 !important;
  fill: #F49426 !important;
  stroke: #F49426 !important;
  stroke-opacity: 0 !important;
}

.energyDemand h4 {
  font-size: clamp(16px, 2vw, 22px) !important;
}

path[name="12"] {
  stroke-width: 1;
  fill: red;
  fill-opacity: 0.5;
  stroke: red;
}

.page .table table td {
  width: 200px;
}

.mapp-sidebar.mapp-sidebar-open {
  background: #F7FBFE;
}

.mapp-list {
  max-width: 797.5px;
  width: 100%;
  margin: 0 0 0 auto;
}

.mapp-list .mapp-item {
  transition: background-color 0.25s;
}

/****/
.filter .container form > ul > li:first-child {
  max-width: 500px;
}

/*** POPUP ***/
.pum-theme-594 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close {
  right: 10px;
  top: 10px;
}

.pum-theme-594 .pum-container, .pum-theme-lightbox .pum-container {
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.pum-container.pum-responsive img {
  display: block;
}

html.pum-open.pum-open-overlay.pum-open-scrollable body > :not([aria-modal=true]) {
  padding: 0 !important;
}

/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page-numbers {
  color: #fff !important;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s, color 0.5s;
}

a.page-numbers:hover {
  background: #fff;
  color: #00263E !important;
}

.page-numbers.current {
  border: 1px solid #fff;
}

.next, .prev {
  display: none;
}

/* ---- Gallery ---- */
.gallery {
  -moz-column-count: 2;
  column-count: 2;
  gap: 30px;
}

.gallerySpace {
  border-bottom: 30px solid #fff;
}

.gallery__item {
  display: block;
  break-inside: avoid;
  -moz-column-break-inside: avoid;
  page-break-inside: avoid;
  overflow: hidden;
}
.gallery__item:hover img {
  transform: scale(1.1);
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.25s;
}

.timeContainer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.timeWrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.timeWrapper img {
  max-width: 900px;
  width: 100%;
}

#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .intImageBg, #section-standardy-bytu-1kk-a-2kk-koupelna .intImageBg {
  min-width: 450px;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .intImage, #section-standardy-bytu-1kk-a-2kk-koupelna .intImage {
  min-width: 450px;
}

.intImageBg {
  max-width: 100%;
  min-width: 600px;
}

.intImage {
  position: relative;
  display: block;
  min-width: 600px;
}
.intImage .plus-wrapper {
  position: absolute;
  display: flex;
  align-items: center;
}
.intImage .plus-wrapper .plusIcon {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.intImage .plus-wrapper .plusIcon:hover .tooltip, .intImage .plus-wrapper .plusIcon:focus-within .tooltip {
  opacity: 1;
}
.intImage .plus-wrapper .plusIcon:hover {
  background-color: #00263E;
  transition: background-color 0.25s;
}
.intImage .plus-wrapper .plusIcon:hover path {
  fill: #fff;
  transition: fill 0.25s;
}
.intImage .tooltip {
  background: #fff;
  opacity: 0;
  z-index: -5;
  font-size: 20px;
  text-align: left;
}

.plus-wrapper .tooltip {
  pointer-events: none;
}

.plusIcon:hover + .tooltip,
.plusIcon:focus + .tooltip { /* klávesnice */
  opacity: 1;
  z-index: 1;
  transition: opacity 0.25s;
}

.plusIcon:hover,
.plusIcon:focus {
  z-index: 2;
}

#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-1, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-1 {
  left: 10%;
  top: 7%;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-1 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-1 .tooltip {
  padding: 15px 15px 15px 35px;
  margin-left: -25px;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-2, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-2 {
  top: 38%;
  left: 8%;
  margin-left: -25px;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-2 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-2 .tooltip {
  padding: 15px 15px 15px 35px;
  margin-left: -25px;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-3, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-3 {
  top: 12%;
  right: 30%;
  flex-direction: row-reverse;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-3 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-3 .tooltip {
  padding: 15px 35px 15px 15px;
  margin-right: -25px;
  text-align: right;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-4, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-4 {
  top: 4%;
  right: 13%;
  flex-direction: row-reverse;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-4 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-4 .tooltip {
  padding: 15px 35px 15px 15px;
  margin-right: -25px;
  text-align: right;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-5, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-5 {
  top: 24%;
  right: 3%;
  flex-direction: row-reverse;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-5 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-5 .tooltip {
  padding: 15px 35px 15px 15px;
  margin-right: -25px;
  text-align: right;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-6, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-6 {
  top: 43%;
  right: 10%;
  flex-direction: row-reverse;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-6 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-6 .tooltip {
  padding: 15px 35px 15px 15px;
  margin-right: -25px;
  text-align: right;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-7, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-7 {
  bottom: 23%;
  right: 14%;
  flex-direction: row-reverse;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-7 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-7 .tooltip {
  padding: 15px 35px 15px 15px;
  margin-right: -25px;
  text-align: right;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-8, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-8 {
  bottom: 11%;
  right: 30%;
  flex-direction: row-reverse;
}
#section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-8 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-8 .tooltip {
  padding: 15px 35px 15px 15px;
  margin-right: -25px;
  text-align: right;
}

#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .intImage {
  margin: auto;
  width: -moz-max-content;
  width: max-content;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-1 {
  left: 30%;
  top: 40%;
  flex-direction: column;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-1 .tooltip {
  padding: 35px 15px 15px 15px;
  margin-top: -25px;
  text-align: center;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-2 {
  top: 46%;
  right: 12%;
  margin-right: -25px;
  flex-direction: row-reverse;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-2 .tooltip {
  padding: 15px 35px 15px 15px;
  margin-right: -25px;
  text-align: right;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-3 {
  top: 54%;
  left: 30%;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-3 .tooltip {
  padding: 15px 15px 15px 35px;
  margin-left: -25px;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-4 {
  bottom: 15%;
  left: 25%;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-4 .tooltip {
  padding: 15px 15px 15px 35px;
  margin-left: -25px;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-5 {
  bottom: 17%;
  left: 33%;
  flex-direction: column;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-5 .tooltip {
  padding: 35px 15px 15px 15px;
  margin-top: -25px;
  text-align: center;
  max-width: 400px;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-6 {
  bottom: 3%;
  left: 50%;
}
#section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-6 .tooltip {
  padding: 15px 15px 15px 35px;
  margin-left: -25px;
}

#section-standardy-bytu-1kk-a-2kk-koupelna .intImage {
  margin: auto;
  width: -moz-max-content;
  width: max-content;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-1 {
  left: 30%;
  top: 40%;
  flex-direction: column;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-1 .tooltip {
  padding: 35px 15px 15px 15px;
  margin-top: -25px;
  text-align: center;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-2 {
  top: 46%;
  right: 12%;
  margin-right: -25px;
  flex-direction: row-reverse;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-2 .tooltip {
  padding: 15px 35px 15px 15px;
  margin-right: -25px;
  text-align: right;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-3 {
  top: 54%;
  left: 30%;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-3 .tooltip {
  padding: 15px 15px 15px 35px;
  margin-left: -25px;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-4 {
  bottom: 16%;
  left: 10%;
  flex-direction: column;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-4 .tooltip {
  padding: 35px 15px 15px 15px;
  margin-top: -25px;
  text-align: center;
  max-width: 400px;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-5 {
  bottom: 22%;
  left: 41%;
  flex-direction: column;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-5 .tooltip {
  padding: 35px 15px 15px 15px;
  margin-top: -25px;
  text-align: center;
  max-width: 400px;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-6 {
  bottom: 3%;
  left: 50%;
}
#section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-6 .tooltip {
  padding: 15px 15px 15px 35px;
  margin-left: -25px;
}

.standardSection {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.menuChange {
  width: 100%;
  border-bottom: 1px solid #00263E;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.menuChange li {
  padding: 15px;
  list-style: none;
  cursor: pointer;
}
.menuChange li.active {
  border-bottom: 2px solid #00263E;
}

.sectionMenuChange {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.sectionMenuChange li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 1px solid #00263E;
  padding: 10px 15px;
}
.sectionMenuChange li img {
  width: 35px;
}
.sectionMenuChange li.active {
  background-color: #00263E;
  color: #fff;
}

.changeMenu li,
.sectionMenuChange li {
  cursor: pointer;
  list-style: none;
}

.appearance {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.appearance .changeMenu {
  width: 100%;
  border-bottom: 1px solid #00263E;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.appearance .changeMenu li {
  padding: 15px;
}
.appearance .changeMenu li.active {
  border-bottom: 2px solid #00263E;
}

.sectionChangeMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.sectionChangeMenu li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 1px solid #00263E;
  padding: 10px 15px;
}
.sectionChangeMenu li img {
  width: 35px;
}
.sectionChangeMenu li.active {
  background-color: #00263E;
  color: #fff;
}

.menuSections {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.changeMenu li,
.sectionChangeMenu li {
  cursor: pointer;
  list-style: none;
}

.changeImg img {
  max-width: 100%;
  display: block;
  max-height: clamp(300px, 35vw, 800px);
  margin: auto;
}

.fancybox, .timeContainer .arrow:last-child {
  display: none;
}

.page-template-standards .energyDemand .textImg .image img {
  max-width: 250px !important;
  min-height: auto !important;
  max-height: -moz-max-content !important;
  max-height: max-content !important;
}

.fancybox.video iframe {
  animation-name: animateVideo;
  animation-duration: 1s;
}
@keyframes animateVideo {
  0% {
    transform: translateY(120%);
  }
  100% {
    transform: translateY(0);
  }
}

.fancybox.video {
  overflow: hidden;
}

.error404, .page-template-thankyouPage {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.error404 main, .page-template-thankyouPage main {
  flex: 1;
  padding-top: 0;
  transition: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #F2F3F3;
}

.lineX {
  width: 100%;
  height: 2px;
  background-color: #CECECE;
}

.lineY {
  height: auto;
  width: 1px;
  background-color: #CECECE;
}

.link.underline, .articleWrapper .link span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.5s;
  color: #00263E;
}
.link.underline:hover, .articleWrapper .link span:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.buttonWrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  min-width: 210px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid;
  transition: background-color 0.25s, color 0.25s;
}
.button path {
  transition: stroke 0.25s, fill 0.25s;
}
.button.primary {
  color: #00263E;
  background-color: transparent;
  border-color: #00263E;
}
.button.primary path {
  stroke: #00263E;
}
.button.primary:hover, .button.primary:active {
  color: #fff;
  background-color: #00263E;
}
.button.primary:hover path, .button.primary:active path {
  stroke: #fff;
}
.button.light {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.button.light path {
  stroke: #fff;
}
.button.light.play path {
  stroke: transparent;
  fill: #fff;
}
.button.light:hover, .button.light:active {
  color: #00263E;
  background-color: #fff;
}
.button.light:hover path, .button.light:active path {
  fill: #00263E;
}
.button.primaryBg {
  color: #fff;
  background-color: #00263E;
  border-color: #00263E;
}
.button.primaryBg path {
  stroke: #fff;
}
.button.primaryBg:hover, .button.primaryBg:active {
  color: #00263E;
  background-color: transparent;
  border-color: #00263E;
}
.button.primaryBg:hover path, .button.primaryBg:active path {
  stroke: #00263E;
}
.button.lightBg {
  color: #00263E;
  background-color: #fff;
  border-color: #fff;
}
.button.lightBg path {
  stroke: #00263E;
}
.button.lightBg:hover, .button.lightBg:active {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.button.lightBg:hover path, .button.lightBg:active path {
  stroke: #fff;
}

.font-p {
  font-family: "Teodor" !important;
}

.font-s {
  font-family: "Work Sans", sans-serif !important;
}

.f-64 {
  font-size: 64px !important;
}

.f-47 {
  font-size: 47px !important;
}

.f-40 {
  font-size: 40px !important;
}

.f-39 {
  font-size: 39px !important;
}

.f-38 {
  font-size: 38px !important;
}

.f-37 {
  font-size: 37px !important;
}

.f-36 {
  font-size: 36px !important;
}

.f-35 {
  font-size: 35px !important;
}

.f-34 {
  font-size: 34px !important;
}

.f-33 {
  font-size: 33px !important;
}

.f-32 {
  font-size: 32px !important;
}

.f-31 {
  font-size: 31px !important;
}

.f-30 {
  font-size: 30px !important;
}

.f-29 {
  font-size: 29px !important;
}

.f-28 {
  font-size: 28px !important;
}

.f-27 {
  font-size: 27px !important;
}

.f-26 {
  font-size: 26px !important;
}

.f-25 {
  font-size: 25px !important;
}

.f-24 {
  font-size: 24px !important;
}

.f-23 {
  font-size: 23px !important;
}

.f-22 {
  font-size: 22px !important;
}

.f-21 {
  font-size: 21px !important;
}

.f-20 {
  font-size: 20px !important;
}

.f-19 {
  font-size: 19px !important;
}

.f-18 {
  font-size: 18px !important;
}

.f-17 {
  font-size: 17px !important;
}

.f-16 {
  font-size: 16px !important;
}

.f-15 {
  font-size: 15px !important;
}

.f-14 {
  font-size: 14px !important;
}

.f-13 {
  font-size: 13px !important;
}

.f-12 {
  font-size: 12px !important;
}

.f-11 {
  font-size: 11px !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.lh-0 {
  line-height: 0;
}

.tt-up {
  text-transform: uppercase !important;
}

.tt-in {
  text-transform: initial !important;
}

.tt-low {
  text-transform: lowercase !important;
}

.tt-cap {
  text-transform: capitalize !important;
}

.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.w-100 {
  width: 100%;
}

.w-400 {
  width: 400px;
}

.w-30p {
  width: 30% !important;
  min-width: 640px;
}

.w-70p {
  width: 70% !important;
}

.w-50p {
  width: 50%;
}

.mw-100 {
  max-width: 100%;
}

.halfContent {
  max-width: 865px;
  width: 100%;
}

.gap-30 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.h-100 {
  height: 100vh;
}

.br-20 {
  border-radius: 20px;
}

.br-10 {
  border-radius: 10px;
}

.anchor {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.hiden {
  overflow: hidden;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.ml-a {
  margin-left: auto;
}

.mr-a {
  margin-right: auto;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

.c-primary {
  color: #00263E !important;
}

.c-secondary {
  color: #F7FBFE !important;
}

.c-ternary {
  color: trasnparent !important;
}

.c-light {
  color: #fff !important;
}

.c-dark {
  color: #000 !important;
}

.bg-primary {
  background: #00263E !important;
  color: #fff;
}

.bg-form {
  background: rgba(0, 38, 62, 0.93) !important;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 1100px;
  margin: auto;
}
.bg-form h2 {
  text-align: center;
}

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

.bg-ternary {
  background: trasnparent !important;
}

.bg-light {
  background: #fff !important;
}

.bg-dark {
  background: #000 !important;
}

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

/* MEDIA */
@media (max-width: 1700px) {
  main {
    padding-top: 80px;
  }
  h1 {
    font-size: clamp(30px, 6vw, 60px);
  }
  h2 {
    font-size: clamp(25px, 6vw, 35px);
  }
  .company .counter-block span {
    font-size: clamp(25px, 6vw, 40px);
  }
  h3 {
    font-size: clamp(21px, 4vw, 27px);
  }
  h4 {
    font-size: clamp(18px, 4vw, 25px);
  }
  tr:first-child th {
    font-size: clamp(18px, 6vw, 20px);
  }
  p, li, .articleGrid .link, .postContent .linkToActuality a, tr, .mapp-title, .page .table tr:first-child {
    font-size: clamp(16px, 6vw, 18px);
  }
  tr:first-child th {
    padding-bottom: 20px;
  }
  .button {
    font-size: 18px;
  }
  .menu li a {
    font-size: 19px;
  }
  .footerMenu a, .copy p {
    font-size: 16px;
  }
  .menu, .navWrapper {
    gap: 30px;
  }
  .textImg .text, .cover .content {
    gap: 30px;
  }
  .articleWrapper .contentWrapper {
    gap: 15px;
  }
  .coverContent {
    gap: 30px;
  }
  .articleGrid, .benefits .textWrapper {
    gap: 30px;
  }
  .contactContainer .wrapper, .locationInformation .container .wrapper {
    gap: 20px;
  }
  .projects .sectionWidth, .contact .sectionWidth, .locationInformation .sectionWidth {
    gap: 40px;
  }
  .contactContainer .wrapper, .locationInformation .container .wrapper {
    min-width: 330px;
  }
  .cover {
    min-height: 400px;
  }
  .cover .image img {
    height: 400px;
  }
  .infoSlider .img {
    height: 500px;
  }
  .coverHp {
    min-height: 500px;
  }
  .articleWrapper .thumbnailWrapper img {
    height: 200px;
  }
  .moreButton svg {
    height: 8px;
  }
  .infoSlider .imgWrapper {
    height: 570px;
  }
  .logo img {
    max-width: 100%;
    height: 50px;
  }
  .logoBg {
    right: calc(50% - 700px);
  }
  .logoBg img {
    width: 200px;
  }
  .w-30p {
    min-width: 450px;
  }
  .w-400 {
    width: auto;
  }
  .infoSlider .contentBox {
    max-width: 660px;
  }
  .company .counter-block {
    max-width: 1150px;
  }
  .circle {
    width: 200px;
    height: 200px;
  }
  nav {
    padding: 20px;
  }
  .infoSlider .contentBox {
    top: 170px;
  }
}
@media (max-width: 1370px) {
  .mapp-item {
    width: 100%;
  }
  .mapp-items {
    padding: 40px 10px !important;
  }
  .mapp-title {
    font-size: 16px !important;
  }
  .mapp-item {
    min-width: 250px;
  }
}
@media (max-width: 1300px) {
  main {
    padding-top: 80px;
  }
  nav {
    padding: 15px 20px;
  }
  .logo img {
    max-width: 200px;
    height: 50px;
  }
  h1 {
    font-size: clamp(30px, 6vw, 50px);
  }
  h2 {
    font-size: clamp(25px, 6vw, 30px);
  }
  .company .counter-block span {
    font-size: clamp(25px, 3vw, 40px);
  }
  h4 {
    font-size: clamp(18px, 4vw, 20px);
  }
  p, li, .articleGrid .link {
    font-size: 16px;
  }
  .button {
    font-size: 16px;
    min-width: 170px;
  }
  .menu li a {
    font-size: 16px;
  }
  .footerMenu a, .copy p {
    font-size: 14px;
  }
  .projects .sectionWidth, .contact .sectionWidth, .locationInformation .sectionWidth {
    gap: 30px;
  }
  .menu, .navWrapper {
    gap: 25px;
  }
  .contactContainer .wrapper, .locationInformation .container .wrapper {
    gap: 10px;
  }
  .company .counter-block .wrapper {
    gap: 10px;
  }
  .login svg {
    width: 23px;
  }
  .moreButton svg {
    height: 6px;
  }
  .circle {
    width: 170px;
    height: 170px;
  }
  .timeline .wrapper p {
    width: 280px;
  }
}
@media (max-width: 1200px) {
  .mapPricelist {
    display: none;
  }
  .contactContainer .wrapper {
    min-width: 300px;
  }
  .contactContainer {
    gap: 15px;
  }
  .ch-tm-tiles {
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 780px;
    margin: auto;
    justify-content: center;
  }
  .ch-tm-tile {
    justify-content: center;
    min-width: -moz-max-content;
    min-width: max-content;
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 1000px) {
  .coverTim h1 {
    text-align: center;
  }
  .coverTim p {
    text-align: center;
  }
  .coverTim .image {
    display: none;
  }
  .intImage {
    max-width: 768px;
    margin: 0 auto;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-1, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-1 {
    left: 7%;
    top: 1%;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-1 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-1 .tooltip {
    padding: 15px 15px 15px 35px;
    margin-left: -25px;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-2, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-2 {
    top: 38%;
    left: 7%;
    margin-left: -25px;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-2 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-2 .tooltip {
    padding: 15px 15px 15px 35px;
    margin-left: -25px;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-3, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-3 {
    top: 12%;
    right: 30%;
    flex-direction: row-reverse;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-3 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-3 .tooltip {
    padding: 15px 35px 15px 15px;
    margin-right: -25px;
    text-align: right;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-4, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-4 {
    top: 4%;
    right: 13%;
    flex-direction: row-reverse;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-4 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-4 .tooltip {
    padding: 15px 35px 15px 15px;
    margin-right: -25px;
    text-align: right;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-5, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-5 {
    bottom: auto;
    left: auto;
    right: 3%;
    top: 40%;
    flex-direction: row-reverse;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-5 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-5 .tooltip {
    padding: 15px 35px 15px 15px;
    margin-right: -25px;
    text-align: right;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-6, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-6 {
    top: 30%;
    right: 10%;
    flex-direction: row-reverse;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-6 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-6 .tooltip {
    padding: 15px 35px 15px 15px;
    margin-right: -25px;
    text-align: right;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-7, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-7 {
    bottom: 23%;
    right: 14%;
    flex-direction: row-reverse;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-7 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-7 .tooltip {
    padding: 15px 35px 15px 15px;
    margin-right: -25px;
    text-align: right;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-8, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-8 {
    bottom: 11%;
    right: 30%;
    flex-direction: row-reverse;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-obyvaci-pokoj .plus-wrapper-8 .tooltip, #section-standardy-bytu-1kk-a-2kk-obyvaci-pokoj .plus-wrapper-8 .tooltip {
    padding: 15px 35px 15px 15px;
    margin-right: -25px;
    text-align: right;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-1 {
    left: 27%;
    top: 40%;
    flex-direction: column;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-1 .tooltip {
    padding: 30px 10px 10px 10px;
    margin-top: -25px;
    text-align: center;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-2 {
    top: 25%;
    right: 13%;
    margin-right: -25px;
    flex-direction: row-reverse;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-2 .tooltip {
    padding: 10px 30px 10px 10px;
    margin-right: -25px;
    text-align: right;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-3 {
    top: 51%;
    left: 30%;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-3 .tooltip {
    padding: 10px 10px 10px 30px;
    margin-left: -25px;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-4 {
    bottom: 15%;
    left: 21%;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-4 .tooltip {
    padding: 10px 10px 10px 30px;
    margin-left: -25px;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-5 {
    bottom: 6%;
    left: 33%;
    flex-direction: column;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-5 .tooltip {
    padding: 30px 10px 10px 10px;
    margin-top: -25px;
    text-align: center;
    max-width: 210px;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-6 {
    bottom: 3%;
    left: 53%;
  }
  #section-standardy-bytu-3kk-4kk-a-5kk-koupelna .plus-wrapper-6 .tooltip {
    padding: 10px 10px 10px 30px;
    margin-left: -25px;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-1 {
    left: 27%;
    top: 40%;
    flex-direction: column;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-1 .tooltip {
    padding: 30px 10px 10px 10px;
    margin-top: -25px;
    text-align: center;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-2 {
    top: 25%;
    right: 13%;
    margin-right: -25px;
    flex-direction: row-reverse;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-2 .tooltip {
    padding: 10px 30px 10px 10px;
    margin-right: -25px;
    text-align: right;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-3 {
    top: 51%;
    left: 30%;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-3 .tooltip {
    padding: 10px 10px 10px 30px;
    margin-left: -25px;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-4 {
    bottom: 10%;
    left: 10%;
    flex-direction: column;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-4 .tooltip {
    padding: 35px 15px 15px 15px;
    margin-top: -25px;
    text-align: center;
    width: 200px;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-5 {
    bottom: 17%;
    left: 40%;
    flex-direction: column;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-5 .tooltip {
    padding: 30px 10px 10px 10px;
    margin-top: -25px;
    text-align: center;
    max-width: 400px;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-6 {
    bottom: 3%;
    left: 53%;
  }
  #section-standardy-bytu-1kk-a-2kk-koupelna .plus-wrapper-6 .tooltip {
    padding: 10px 10px 10px 30px;
    margin-left: -25px;
  }
  .intImage .plus-wrapper svg {
    width: 15px;
  }
  .intImage .plus-wrapper .plusIcon {
    width: 40px;
    height: 40px;
  }
  .intImageBg {
    max-height: 450px;
  }
  .intImage .tooltip {
    font-size: 15px;
    max-width: 260px;
  }
  .textImgContainer .image {
    width: 100%;
  }
  .textImgContainer .halfContent {
    gap: 30px;
    padding: 40px 20px;
  }
  .textImgContainer .textImg.light, .textImgContainer .textImg.dark {
    flex-direction: column;
  }
  .pb-100 {
    padding-bottom: 60px !important;
  }
  .pt-100 {
    padding-top: 20px !important;
  }
  .burger {
    display: flex;
  }
  .menu {
    display: none;
  }
  .menu.active {
    display: flex;
  }
  .result tr th:nth-child(5), .result tr td:nth-child(5) {
    display: none;
  }
  tr {
    font-size: clamp(12px, 2vw, 16px);
  }
  .page .table tr, .page .table tr:first-child {
    font-size: clamp(14px, 2vw, 16px) !important;
  }
  tr:first-child th {
    font-size: clamp(14px, 2vw, 18px);
  }
  .carousel__button.fancybox__button--zoom {
    display: block;
  }
  .fancybox.video .sectionWidth {
    width: 100%;
    height: 100%;
    max-width: 640px;
    max-height: 400px;
    margin: 100px auto;
  }
  .lineY {
    height: 1px;
    width: 90%;
    margin: auto;
  }
  .actualityPage .postContainer {
    height: auto;
    max-width: 500px;
    margin: auto;
  }
  .actualityPage .text {
    padding: 20px;
  }
  .actualityPage .image img {
    height: 200px;
  }
  .actualityPage .wrapper {
    width: 100%;
  }
  .actualityPage .postContainer {
    flex-direction: column;
  }
  .locationPage .coverContainer {
    flex-direction: column;
    text-align: center;
  }
  .locationPage .coverContainer .image {
    display: none;
  }
  .locationPage .coverContainer .content {
    align-items: center;
  }
  .footerMenu a, .copy p {
    font-size: 12px;
  }
  .footerMenu {
    gap: 10px 15px;
  }
  .articleGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .articleWrapper {
    max-width: 500px;
    margin: auto;
  }
  .w-30p {
    min-width: inherit;
  }
  .articleWrapper .contentWrapper, .articleWrapper {
    gap: 10px;
  }
  .menu.active li a {
    font-size: 20px;
  }
  .menu, .navWrapper {
    gap: 20px;
  }
  .company .counter-block {
    gap: 30px 20px;
    justify-content: center;
  }
  .company .counter-block .wrapper {
    width: 45%;
    align-items: center;
    min-width: 270px;
  }
  .energyDemand .textImg .image img {
    max-width: 350px;
  }
  .benefits .container {
    flex-direction: column;
    gap: 0px;
  }
  .benefits .wrapper .spotlight h2 br {
    display: none !important;
  }
  .benefits .wrapper {
    padding: 20px;
    width: 100%;
    gap: 30px;
  }
  .page-template-financing .benefits .wrapper {
    width: 100%;
  }
  .articleGrid, .benefits .textWrapper {
    gap: 30px;
  }
  .benefits .wrapper:nth-child(2):before {
    height: 1px;
    width: 100%;
    left: 0;
  }
  .benefits .wrapper:nth-child(2)::after {
    height: 1px;
    width: 100%;
    right: 0;
    bottom: 0;
    top: inherit;
  }
  .benefits, .benefits .wrapper {
    padding: 20px 0;
  }
  .infoSlider .textImg:nth-child(even) {
    flex-direction: column;
  }
  .infoSlider .textImg:nth-child(even) .halfContent {
    margin: 0;
    padding: 0;
  }
  .infoSlider .textImg:nth-child(even) .wrapper {
    width: 100% !important;
  }
  .infoSlider .textImg:nth-child(even) .text {
    padding: 40px 20px !important;
  }
  .infoSlider .textImg {
    height: auto;
  }
  .energyDemand .textImg {
    flex-direction: column;
    gap: 40px;
  }
  .energyDemand .textImg img {
    max-height: inherit !important;
    max-width: 200px;
  }
  .energyDemand .textImg .wrapper {
    width: 100% !important;
  }
  .energyDemand .textImg .text {
    padding: 0 !important;
  }
  .cover {
    min-height: 290px;
  }
  .standardsCover {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
  .standardsCover .content.w-50p {
    width: 100% !important;
    text-align: center;
  }
  .standardsCover .content {
    align-items: center;
    gap: 20px;
  }
  .standardsCover .image {
    display: none;
  }
  .content.w-70p {
    width: 100% !important;
  }
  .w-50p {
    width: 100%;
  }
  .cover .content {
    padding: 40px 20px 40px 20px;
  }
  .map.w-50p {
    width: 100% !important;
    height: 250px;
  }
  .textImg {
    flex-direction: column;
  }
  .textImg .image img {
    min-height: inherit;
    height: 250px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .textImg .source {
    padding: 5px;
    font-size: 10px;
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    text-align: center;
  }
  .textImg .wrapper {
    width: 100%;
  }
  .textImg .wrapper.text {
    padding: 40px 20px;
  }
  .contactContainer .wrapper:first-child::after, .locationInformation .container .wrapper:first-child::after {
    height: 1px;
    width: 100%;
    top: auto;
    right: 0;
    bottom: -30px;
  }
  .contactContainer, .locationInformation .container {
    flex-direction: column;
  }
  .contactContainer, .locationInformation .container {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .infoSlider .contentBox {
    top: 0;
    position: inherit;
    max-width: 100%;
  }
  .gallerySliders img, .gallerySliders .slick-list {
    height: 300px;
  }
  .coverTable td:first-child, .coverTable td:last-child {
    padding: 10px 20px;
  }
  .infoSlider .afterArrow {
    display: flex;
  }
  .infoSlider .imgWrapper, .infoSlider .img {
    height: 140px;
  }
  .infoSlider .sliderWrapper {
    padding: 0;
  }
  .infoSlider .headlineWrapper {
    margin-bottom: 20px;
  }
  .headlineWrapper img {
    display: none;
  }
  .infoSlider .contentBox {
    padding: 20px;
  }
  .infoSlider .slick-prev, .infoSlider .slick-next {
    top: 30px;
  }
  .infoSliderWrapper {
    padding: 70px 0 0;
  }
  .contentBox {
    height: 200px;
    transition: height 0.5s;
  }
  .contentBox.moreText {
    height: auto;
    transition: height 0.5s;
    padding-bottom: 60px;
  }
  .timeline .wrapper p {
    font-size: 12px;
  }
  .timeline .wrapper img {
    width: 70px;
  }
  .timeline .wrapper p {
    width: 210px;
  }
  .timeline .wrapper .imgWrapper {
    padding: 10px;
  }
  .gallerySlider {
    padding: 50px 0 0 0;
  }
  .gallerySlider .slick-prev, .gallerySlider .slick-next {
    top: 10px;
  }
  .gallerySlider .slick-prev {
    left: calc(50% - 80px);
  }
  .gallerySlider .slick-next {
    right: calc(50% - 80px);
  }
  .infoSlider .slick-prev {
    left: calc(50% - 80px);
  }
  .infoSlider .slick-next {
    right: calc(50% - 80px);
  }
  .gallerySlider .label {
    padding: 10px;
  }
  .gallerySlider .label p {
    font-size: 12px;
  }
  .gallerySlider .label {
    min-width: 130px;
  }
  .result tr th:nth-child(4), .result tr td:nth-child(4) {
    display: none;
  }
  tr:first-child th {
    padding-bottom: 10px;
  }
  .result .sectionWidth {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .gallery {
    -moz-column-count: 1;
    column-count: 1;
  }
}
@media (max-width: 700px) {
  .timeline .wrapper p {
    width: 180px;
  }
  .sectionChangeMenu {
    gap: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .sectionChangeMenu li img {
    width: 25px;
  }
  .changeMenu li, .sectionChangeMenu li {
    font-size: 16px;
  }
  .changeImg img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 600px) {
  .timeline {
    flex-direction: column;
    gap: 20px;
  }
  tr:first-child th {
    font-size: clamp(12px, 2vw, 18px);
  }
  .timeline::after {
    display: none;
  }
  .timeline .wrapper .imgWrapper {
    padding: 0 30px 0 0;
  }
  .timeline .wrapper {
    display: grid;
    max-width: 300px;
    margin: auto;
  }
  .timeline .wrapper p {
    max-width: 130px;
  }
  .timeline .wrapper p:first-child {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 1;
    display: grid;
  }
  .timeline .wrapper p:nth-child(3) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 2;
  }
  .timeline .wrapper .imgWrapper {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .coverTable td:first-child, .coverTable td:last-child {
    padding: 10px 15px;
  }
  .coverTable {
    margin: 40px -20px 0;
  }
}
@media (max-width: 500px) {
  .mapp-mini .mapp-sidebar {
    width: 100%;
  }
  .mapp-wrapper {
    min-height: 400px !important;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 450px) {
  .sectionChangeMenu {
    grid-template-columns: 1fr 1fr;
  }
  .sectionChangeMenu li img {
    width: 25px;
  }
  .changeMenu li, .sectionChangeMenu li {
    font-size: 16px;
  }
}
iframe .SfQLQb-dIxMhd-bN97Pc-b3rLgd.SfQLQb-QClCJf-giiMnc .i4ewOd-pzNkMb-tJHJj, .wpcf7-response-output {
  display: none !important;
}/*# sourceMappingURL=style.css.map */