@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Teko:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;700&display=swap");
:root {
  --bg-color:     #fff;
  --fg-color:     #3F3D56;
  --fg-second:    #729836;
  --fg-second-hover:    #96c24f;
  --fg-contrast:  #fff;
  --bg-contrast:  #729836;
  --distinctive: rgb(255, 166, 0);
  --darkest: #222;
  --brightest: white;
  --fontPrimary: 'Mukta', sans-serif;
  --fontSecondary: 'Roboto', sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0px auto;
  /* position: relative; */
  /* overflow: hidden; */
}

.distinctive {
  color: var(--distinctive);
}

.std-link, .std-link:hover {
  text-decoration: none;
  color: var(--fg-contrast);
  font-weight: 700;
}

.invisible {
  display: none !important;
}

.oh {
  overflow: hidden;
}

hr {
  margin: 1rem 0;
  height: 3px;
  width: 100%;
  background-color: var(--brightest);
  opacity: .2;
  outline: none;
  border: none;
}

.burger-container {
  position: fixed;
  /* left: calc(100vw + 5rem); */
  left: 20%;
  top: -101%;
  /* bottom: 2rem; */
  right: 20%;
  height: auto;
  background-color: var(--fg-color);
  z-index: 1100;
  border-radius: 1rem;
  display: block;
  border: solid 2px var(--brightest);
  padding: 1rem 2rem;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.burger-container.open {
  top: 2rem;
}

.menu-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu-mobile > div {
  width: 100px;
  padding-bottom: 2rem;
}

.nav-menu-mobile {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
  padding: 0 0rem 0 0;
  list-style: none;
  font-size: 3rem;
  line-height: 3.5rem;
}

.nav-menu-mobile > li > a {
  text-decoration: none;
  color: var(--fg-contrast);
  font-weight: 500;
}

.nav-menu-mobile .bander::after {
  top: 3.2rem;
}

.nav-menu-mobile-item {
  font-size: 2.5rem;
  text-decoration: none;
  padding-left: 0rem;
  color: var(--brightest);
  -webkit-transition: .2s;
  transition: .2s;
}

.nav-menu-mobile-item:hover {
  color: var(--distinctive);
}

.nav-submenu-mobile {
  list-style: none;
  line-height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-submenu-mobile div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.close-btn {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.close-btn:hover {
  -webkit-transform: scale(1.1) rotate(90deg);
          transform: scale(1.1) rotate(90deg);
}

.search-btn {
  border: none;
  outline: none;
  background-color: var(--distinctive);
  color: var(--fg-color);
  font-size: 2.25rem;
  padding: 1rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.search-btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  color: var(--fg-contrast);
}

.btn {
  font-family: inherit;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  background-color: var(--distinctive);
  color: var(--fg-color);
  font-size: 2rem;
  padding: 1rem 2rem;
  border-radius: 0.3rem;
  cursor: pointer;
  text-decoration: none;
  margin: 2rem 1rem;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  color: var(--fg-contrast);
}

.lookat {
  position: relative;
  top: 1rem;
  left: 0;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1280px;
  -webkit-transform: translateY(0rem);
          transform: translateY(0rem);
}

.lookat a {
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.lookat a:hover, .lookat a:focus {
  background-color: var(--distinctive);
  color: var(--fg-contrast);
}

.s-panel {
  position: fixed;
  top: calc(30vh + 19px);
  /* right: 100vw; */
  left: 90vw;
  height: auto;
  width: 1000;
  /* max-width: 200px; */
  border-radius: 1rem;
  background-color: white;
  opacity: 0;
  z-index: 99;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  padding: 2rem;
  border: solid 1px var(--fg-color);
}

.s-panel.open {
  left: 25vw;
  /* transform: translate(-50%); */
  opacity: 0.95;
  width: 70vw;
  max-width: 960px;
  pointer-events: initial;
}

.magnify {
  position: fixed;
  top: 30vh;
  left: calc(100vw - 80px);
  cursor: pointer;
  z-index: 100;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0.8;
}

.magnify.open {
  left: calc(25vw - 8px);
  opacity: 1;
}

.magnify.bottom {
  top: calc(100vh - 100px);
}

.search-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  padding: 0 1rem 2rem 1rem;
}

.search-div div:last-child {
  text-align: end;
}

/* panel wyszukiwania */
.lista {
  border: solid 1px var(--fg-color);
  border-radius: 0.3rem;
  padding: 0.6rem;
  font-family: inherit;
  height: 4rem;
  font-size: 1.75rem;
  font-weight: 500;
  min-width: 80px;
}

.edit-container {
  border: solid 1px var(--fg-color);
  border-radius: 0.3rem;
  padding: 0;
  font-family: inherit;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--bg-color);
}

.edit-dark {
  color: var(--fg-contrast);
  background-color: var(--bg-contrast);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.5rem;
}

.edit-noborder, .edit-noborder:focus {
  height: 100%;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 500;
  margin-left: 1rem;
}

.edit-small {
  width: 80px;
}

.edit-smaller {
  width: 70px;
}

.pin {
  padding: 0 0.5rem;
}

.no-right-bd {
  border-right: none;
}

.whole-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}

.bar {
  height: 57px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2rem;
  background-color: #e6e6e6;
}

.bar > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.5rem;
}

.bar > .container img {
  padding-right: 1rem;
}

.nav-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 1280px;
  width: 100%;
  max-height: 310px;
  margin: 0 auto;
}

.nav-bar .nav-logo {
  z-index: 3;
}

.nav-bar .nav-logo .logo {
  z-index: -3;
}

.nav-bar .nav-logo .logo img {
  z-index: -3;
  height: 240px;
}

.nav-bar .nav-space {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.nav-bar .nav-window {
  width: 302px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 302px;
          flex: 0 0 302px;
  z-index: -5;
  -webkit-transform: translateY(57px);
          transform: translateY(57px);
  border: solid 14px #e6e6e6;
  border-top: solid 18px #e6e6e6;
  width: 302px;
  height: 287px;
  overflow: hidden;
}

.nav-bar .nav-window .window {
  position: relative;
}

.nav-bar .nav-window .window img {
  width: 100%;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  position: absolute;
  top: 0;
  left: 0;
}

.nav-bar .nav-svg {
  width: 532px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 532px;
          flex: 0 0 532px;
  position: relative;
}

.svg-houses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(57px);
          transform: translateY(57px);
  z-index: 200;
  position: relative;
}

.stickit {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 101;
}

#sun {
  -webkit-animation: sun-anim 160s linear 0s infinite both;
          animation: sun-anim 160s linear 0s infinite both;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: view-box;
}

#bird1c,
#bird2c,
#bird4c,
#bird6c {
  -webkit-animation: bird-move 60s linear 0s infinite both;
          animation: bird-move 60s linear 0s infinite both;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

#bird3c,
#bird5c,
#bird7c {
  -webkit-animation: bird-move2 60s linear 0s infinite both;
          animation: bird-move2 60s linear 0s infinite both;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

#bird1,
#bird2,
#bird3,
#bird4,
#bird5,
#bird6,
#bird7 {
  -webkit-animation: bird-anim 0.45s linear 0s infinite alternate both;
          animation: bird-anim 0.45s linear 0s infinite alternate both;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes sun-anim {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@keyframes sun-anim {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@-webkit-keyframes bird-anim {
  0% {
    -webkit-transform: skewX(0deg) scaleY(1) scaleX(1.15);
            transform: skewX(0deg) scaleY(1) scaleX(1.15);
  }
  100% {
    -webkit-transform: skewX(45deg) scaleY(0.75) scaleX(1);
            transform: skewX(45deg) scaleY(0.75) scaleX(1);
  }
}

@keyframes bird-anim {
  0% {
    -webkit-transform: skewX(0deg) scaleY(1) scaleX(1.15);
            transform: skewX(0deg) scaleY(1) scaleX(1.15);
  }
  100% {
    -webkit-transform: skewX(45deg) scaleY(0.75) scaleX(1);
            transform: skewX(45deg) scaleY(0.75) scaleX(1);
  }
}

@-webkit-keyframes bird-move {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translate(-500px) translateY(0);
            transform: translate(-500px) translateY(0);
  }
  50.0001% {
    -webkit-transform: translate(500px) translateY(0);
            transform: translate(500px) translateY(0);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@keyframes bird-move {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translate(-500px) translateY(0);
            transform: translate(-500px) translateY(0);
  }
  50.0001% {
    -webkit-transform: translate(500px) translateY(0);
            transform: translate(500px) translateY(0);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes bird-move2 {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  12.5% {
    -webkit-transform: translateX(-120px) translateY(-50px);
            transform: translateX(-120px) translateY(-50px);
  }
  50% {
    -webkit-transform: translate(-500px) translateY(0);
            transform: translate(-500px) translateY(0);
  }
  50.0001% {
    -webkit-transform: translate(400px) translateY(0);
            transform: translate(400px) translateY(0);
  }
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@keyframes bird-move2 {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  12.5% {
    -webkit-transform: translateX(-120px) translateY(-50px);
            transform: translateX(-120px) translateY(-50px);
  }
  50% {
    -webkit-transform: translate(-500px) translateY(0);
            transform: translate(-500px) translateY(0);
  }
  50.0001% {
    -webkit-transform: translate(400px) translateY(0);
            transform: translate(400px) translateY(0);
  }
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

.burger {
  position: absolute;
  left: calc(100% - 8rem);
  top: 130px;
  cursor: pointer;
  z-index: 200;
}

.burger svg {
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

.burger:hover svg {
  -webkit-animation: burger-anim-hover 0.8s ease-in-out 0.15s both;
          animation: burger-anim-hover 0.8s ease-in-out 0.15s both;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.burger svg {
  -webkit-animation: burger-anim 0.8s ease-in-out;
          animation: burger-anim 0.8s ease-in-out;
}

.burger:hover #line2 {
  -webkit-animation: burger-line-hover 0.7s ease-in-out 0s both;
          animation: burger-line-hover 0.7s ease-in-out 0s both;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

.burger #line2 {
  -webkit-animation: burger-line 0.7s ease-in-out 0.15s;
          animation: burger-line 0.7s ease-in-out 0.15s;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes burger-anim-hover {
  0% {
    -webkit-transform: rotateY(0deg) skewX(0deg);
            transform: rotateY(0deg) skewX(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg) skewY(4deg);
            transform: rotateY(180deg) skewY(4deg);
  }
  100% {
    -webkit-transform: rotateY(360deg) skewX(0deg);
            transform: rotateY(360deg) skewX(0deg);
  }
}

@keyframes burger-anim-hover {
  0% {
    -webkit-transform: rotateY(0deg) skewX(0deg);
            transform: rotateY(0deg) skewX(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg) skewY(4deg);
            transform: rotateY(180deg) skewY(4deg);
  }
  100% {
    -webkit-transform: rotateY(360deg) skewX(0deg);
            transform: rotateY(360deg) skewX(0deg);
  }
}

@-webkit-keyframes burger-anim {
  0% {
    -webkit-transform: rotateY(0deg) skewX(0deg);
            transform: rotateY(0deg) skewX(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg) skewY(4deg);
            transform: rotateY(180deg) skewY(4deg);
  }
  100% {
    -webkit-transform: rotateY(360deg) skewX(0deg);
            transform: rotateY(360deg) skewX(0deg);
  }
}

@keyframes burger-anim {
  0% {
    -webkit-transform: rotateY(0deg) skewX(0deg);
            transform: rotateY(0deg) skewX(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg) skewY(4deg);
            transform: rotateY(180deg) skewY(4deg);
  }
  100% {
    -webkit-transform: rotateY(360deg) skewX(0deg);
            transform: rotateY(360deg) skewX(0deg);
  }
}

@-webkit-keyframes burger-line-hover {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(75%);
            transform: translateX(75%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes burger-line-hover {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(75%);
            transform: translateX(75%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes burger-line {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(75%);
            transform: translateX(75%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes burger-line {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(75%);
            transform: translateX(75%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

#tree {
  -webkit-animation: tree-skew 3s ease-in-out 0s infinite alternate both;
          animation: tree-skew 3s ease-in-out 0s infinite alternate both;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  transform-box: fill-box;
}

#tree-up {
  -webkit-animation: tree-skew 2s ease-in-out 0s infinite alternate both;
          animation: tree-skew 2s ease-in-out 0s infinite alternate both;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  transform-box: fill-box;
}

@-webkit-keyframes tree-skew {
  0% {
    -webkit-transform: skewX(0);
            transform: skewX(0);
  }
  50% {
    -webkit-transform: skewX(1deg);
            transform: skewX(1deg);
  }
  100% {
    -webkit-transform: skewX(3deg);
            transform: skewX(3deg);
  }
}

@keyframes tree-skew {
  0% {
    -webkit-transform: skewX(0);
            transform: skewX(0);
  }
  50% {
    -webkit-transform: skewX(1deg);
            transform: skewX(1deg);
  }
  100% {
    -webkit-transform: skewX(3deg);
            transform: skewX(3deg);
  }
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  padding-left: 2rem;
  list-style: none;
}

.nav-item a {
  font-size: 2rem;
  font-weight: 500;
  color: var(--fg-color);
  text-decoration: none;
  font-family: var(--fontPrimary);
  letter-spacing: 1px;
}

.stickit-sm {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: 100%;
  opacity: 1.0;
}

.stickit-sm .logo {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: 100%;
  padding: 1rem 10rem 1rem 1rem;
  width: 100px;
}

.stickit-sm .logo img {
  height: 85px;
  margin: 0;
}

.stickit-sm .nav-tel {
  height: 45px;
}

.stickit-sm .burger {
  height: 45px;
  margin: 0;
}

.burger-div {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.burger-div.close {
  display: none;
}

.footer-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer-bar div:first-child {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.footer-bar h2 {
  line-height: 4.5rem;
  padding-left: 2rem;
  letter-spacing: 1px;
}

.footer-bar h3 {
  line-height: 2.8rem;
  padding-left: 2rem;
  color: #888;
  letter-spacing: 0;
}

.houses-bottom {
  overflow: hidden;
  position: relative;
}

.houses-bottom > img {
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  width: 100%;
  z-index: 1;
}

.houses-bottom .logo-sm-bw {
  position: absolute;
  left: calc(100% - 13rem);
  top: 2rem;
  z-index: 2;
}

.houses-bottom .logo-sm-bw > img {
  width: 12rem;
}

/*Napisz - formularz */
.napisz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
  margin: 1rem;
}

.napisz > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.napisz-container {
  border: solid 1px #333;
  border-radius: 0.3rem;
  padding: 0;
  font-family: inherit;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.wiadomosc {
  height: auto;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

.textarea, .textarea:focus {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  resize: none;
  font-family: inherit;
}

.edit-dark2 {
  color: var(--fg-contrast);
  background-color: var(--bg-contrast);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.5rem;
  width: 200px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  max-width: 200px;
}

.totop {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 0.5rem;
}

.edit-div2 {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  margin-right: 1rem;
}

.edit-noborder2, .edit-noborder2:focus {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 500;
  margin-left: 1rem;
}

.check {
  margin: 1rem;
}

.with-errors {
  border: 1px solid var(--distinctive);
}

.errors-message {
  color: var(--distinctive);
  margin-top: -2rem;
  padding: 0 0.5rem;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  display: block;
  font-size: 1.6rem;
}

.h1 {
  font-size: 10rem;
  font-weight: 500;
  letter-spacing: 0.25ch;
  line-height: 2ch;
  -webkit-filter: drop-shadow(2px 2px 2px var(--darkest));
          filter: drop-shadow(2px 2px 2px var(--darkest));
  color: var(--brightest);
}

.h1a {
  font-size: 8rem;
  font-weight: 500;
  letter-spacing: 0.25ch;
  line-height: 2ch;
  -webkit-filter: drop-shadow(2px 2px 2px var(--darkest));
          filter: drop-shadow(2px 2px 2px var(--darkest));
  color: var(--brightest);
}

h1 {
  padding: 1rem 0;
  margin: 0;
  font-size: 4.25rem;
}

h2 {
  text-align: center;
  color: var(--fg-color);
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0ch;
  padding: 2rem;
}

h3 {
  text-align: left;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1ch;
  margin: 1rem;
}

.text-left {
  text-align: left;
  padding: 0;
  margin: 0 70px;
}

.text-light {
  color: var(--brightest);
  font-size: 2.5rem;
  padding: 0 1rem;
}

.center {
  text-align: center;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ml {
  margin-left: 1ch;
}

.ml2 {
  margin-left: 2.5rem;
}

.mr {
  margin-right: 1ch;
}

.text-smaller {
  font-size: 1.5rem;
}

.mt {
  margin-top: 1ch;
}

.mb {
  margin-bottom: 1ch;
}

.text-spacer {
  font-size: 1rem;
  padding: 0 1.5rem;
  color: var(--fg-contrast);
}

.pb-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  margin: 0;
  line-height: initial;
}

.text-margin {
  margin: 0 1rem;
}

.text {
  font-family: var(--fontSecondary);
  font-size: 1.8rem;
}

.bander {
  position: relative;
}

.bander::after {
  content: '';
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--distinctive);
  -webkit-transform: scale(1, 0) translateY(3px);
          transform: scale(1, 0) translateY(3px);
  -webkit-transition: -webkit-transform 0.1s ease-in;
  transition: -webkit-transform 0.1s ease-in;
  transition: transform 0.1s ease-in;
  transition: transform 0.1s ease-in, -webkit-transform 0.1s ease-in;
}

.bander:hover::after {
  -webkit-transform: scale(1) translateY(-3px);
          transform: scale(1) translateY(-3px);
}

a.lighter {
  color: var(--fg-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a.lighter:hover {
  color: var(--fg-second);
}

a.lighter:hover img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.8;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

.light {
  color: var(--brightest);
}

.badge {
  color: var(--distinctive);
  background-color: var(--fg-color);
  padding: 0rem 0.5rem;
  margin: 0 1rem;
  border: solid 1px var(--fg-color);
  border-radius: 0.25rem;
  display: inline-block;
}

.distributed {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.distributed #tp, .distributed #sw {
  margin-right: 1rem;
}

.opis {
  color: var(--fg-color);
  font-size: 2rem;
  font-weight: 400;
  font-family: Helvetica, sans-serif;
  padding: 1rem;
}

.opis strong {
  font-weight: 700;
}

.opis img {
  max-width: 98% !important;
  width: auto !important;
  height: auto !important;
}

.opis blockquote {
  font-style: italic;
  border-left: solid 5px var(--fg-second);
  padding: 1rem 2rem;
}

.opis p {
  line-height: 3rem;
}

.kontakt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.kontakt .opis {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}

.kontakt .kontakt-mapa {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}

.outlined {
  outline: 2px solid var(--distinctive);
}

.typewriter h1 {
  color: #fff;
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: 0.5ch solid #f00;
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0 0;
  padding: 0;
  /* 0 auto */
  /* Gives that scrolling effect as the typing happens */
  letter-spacing: .25rem;
  /* Adjust as needed */
  -webkit-animation: typing 10s steps(30, end) infinite, blink-caret 0.75s step-end infinite;
          animation: typing 10s steps(30, end) infinite, blink-caret 0.75s step-end infinite;
}

@-webkit-keyframes typing {
  0% {
    width: 0;
    opacity: 1;
  }
  30% {
    width: 100%;
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes typing {
  0% {
    width: 0;
    opacity: 1;
  }
  30% {
    width: 100%;
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  25% {
    border-color: transparent;
  }
  35% {
    border-color: #f00;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  25% {
    border-color: transparent;
  }
  35% {
    border-color: #f00;
  }
}

.parallax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50vh;
  /* max-width: 100vw; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax_1 {
  background-image: url("../img/apartment_1.jpg");
}

.out-right {
  -webkit-transform: translate(100vw);
          transform: translate(100vw);
}

.out-left {
  -webkit-transform: translate(-100vw);
          transform: translate(-100vw);
}

.info2 {
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.25);
}

.parallax-video-container {
  position: relative;
  overflow: hidden;
  height: 55vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.parallax-video-container video {
  z-index: -1111;
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.parallax-video-container .info {
  padding: 3rem;
  position: relative;
  -webkit-animation: flyer 3s linear infinite;
          animation: flyer 3s linear infinite;
}

@-webkit-keyframes flyer {
  0% {
    -webkit-transform: translate(99vw);
            transform: translate(99vw);
  }
  25% {
    -webkit-transform: translate(0vw);
            transform: translate(0vw);
  }
  80% {
    -webkit-transform: translate(0vw);
            transform: translate(0vw);
  }
  100% {
    -webkit-transform: translate(-99vw);
            transform: translate(-99vw);
  }
}

@keyframes flyer {
  0% {
    -webkit-transform: translate(99vw);
            transform: translate(99vw);
  }
  25% {
    -webkit-transform: translate(0vw);
            transform: translate(0vw);
  }
  80% {
    -webkit-transform: translate(0vw);
            transform: translate(0vw);
  }
  100% {
    -webkit-transform: translate(-99vw);
            transform: translate(-99vw);
  }
}

.flyer-text::after {
  content: '';
  -webkit-animation: changeLetter 12s step-start infinite;
          animation: changeLetter 12s step-start infinite;
}

@-webkit-keyframes changeLetter {
  0% {
    content: "MIESZKANIA";
  }
  25% {
    content: "MIESZKANIA";
  }
  50% {
    content: "LOKALE";
  }
  75% {
    content: "DOMY";
  }
  100% {
    content: "DZIAŁKI";
  }
}

@keyframes changeLetter {
  0% {
    content: "MIESZKANIA";
  }
  25% {
    content: "MIESZKANIA";
  }
  50% {
    content: "LOKALE";
  }
  75% {
    content: "DOMY";
  }
  100% {
    content: "DZIAŁKI";
  }
}

.white {
  background-color: white;
}

/* SWIPER */
.arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 4rem;
  max-width: 20px;
}

.arrow img {
  padding: 0.5ch;
}

.arrow_left, .arrow_right, .arrow_left2, .arrow_right2 {
  cursor: pointer;
}

.arrow_left.swiper-button-disabled, .arrow_right.swiper-button-disabled,
.arrow_left2.swiper-button-disabled, .arrow_right2.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.cards {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.swiper-container {
  max-width: 1280px;
}

.swiper-container2 {
  max-width: 1280px;
}

.inner {
  border-radius: 0.25rem;
  background-color: var(--bg-contrast);
  position: relative;
  width: 400px;
  height: 270px;
  overflow: hidden;
  border: solid 1px var(--darkest);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.image {
  width: 400px;
  position: absolute;
  top: 0;
  border-radius: 0.25rem;
  border-end-end-radius: 0rem;
  border-end-start-radius: 0rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.image:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.bot {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  padding: 1rem;
  background-color: var(--bg-contrast);
  color: var(--brightest);
  z-index: 2;
  height: 80px;
}

.bot div {
  font-size: 2.0rem;
}

.bot div:nth-child(2n) {
  text-align: right;
}

/* Swiper Gallery */
.swiper-container3 {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide3 {
  text-align: center;
  font-size: 16px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.swiper-slide3 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
  border: solid 1px var(--fg-second);
}

.mySwiper2 {
  height: 450px;
  width: 100%;
}

.mySwiper {
  height: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide3 {
  width: 20%;
  height: 100%;
  opacity: 0.5;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.nyc {
  position: relative;
  height: 600px;
  max-width: 640px;
  padding: 1rem;
}

.swiperNavColor {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
}

.swiper-pagination {
  height: 5rem;
}

.swiper-container {
  height: 340px !important;
}

.swiper-wrapper {
  height: 300px !important;
}

.swiper-container-o {
  height: 420px !important;
}

.swiper-wrapper-o1 {
  height: 420px !important;
}

.swiper-wrapper-o2 {
  height: 160px !important;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--distinctive) white;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 14px;
}

*::-webkit-scrollbar-track {
  background: white;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--distinctive);
  border-radius: 5px;
  border: 1px solid white;
}

html {
  font-size: 62.5%;
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
  background-color: var(--bg-color);
  font-family: var(--fontPrimary);
  font-size: 2rem;
  font-weight: 500;
  color: var(--fg-color);
}

/* Kategorie */
.kategorie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  max-width: 100%;
}

.kategoria {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 150px;
}

.kategoria a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: var(--fg-color);
}

.kategoria a img {
  padding: 0.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.kategoria a img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* Lista ofert */
.list-offer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0rem;
}

.list-offer {
  max-width: 420px;
  min-width: 400px;
  border-radius: .25rem;
  height: 400px;
  overflow: hidden;
  border: solid 1px var(--fg-color);
  background-color: var(--bg-contrast);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  cursor: pointer;
  margin: 1rem;
}

.list-offer:hover {
  -webkit-filter: drop-shadow(0px 0px 3px var(--fg-color));
          filter: drop-shadow(0px 0px 3px var(--fg-color));
}

.list-bot {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  background-color: var(--bg-contrast);
  color: var(--fg-color);
}

.list-bot-item {
  background-color: var(--bg-contrast);
  color: var(--fg-contrast);
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 40px;
}

.list-image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 360px;
  background-color: var(--bg-contrast);
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.list-image {
  width: 400px;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.list-image:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* Oferta szczegóły */
.offer-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.offer-image-container {
  max-width: 840px;
}

.offer-image-container > img {
  max-width: 640px;
  width: 100%;
}

.oferta-grid {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 40%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  padding: 1rem;
  background-color: var(--bg-color);
  color: var(--fg-color);
  height: 80px;
}

.oferta-grid div {
  border-bottom: dotted 1px var(--fg-second);
  padding: 1rem 0;
}

.oferta-grid div:nth-child(2n) {
  text-align: right;
}

.hero-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.hero-panel .swiper-panel {
  width: 100%;
}

.hero-panel .wyszukaj-panel {
  z-index: 2;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
  max-width: 345px;
  -webkit-transform: translateY(-8rem);
          transform: translateY(-8rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 382px;
}

.hero-panel .wyszukaj-panel .wyszukaj-panel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero-panel .wyszukaj-panel .wyszukaj-panel-header div:nth-child(1) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero-panel .wyszukaj-panel .wyszukaj-panel-header div:nth-child(2) {
  background-color: #1a4f7f;
  width: 6rem;
  height: 6rem;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top-left-radius: 1rem;
}

.hero-panel .wyszukaj-panel .wyszukaj-panel-header div:nth-child(3) {
  background-color: #69b2f5;
  width: 6rem;
  height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-panel .wyszukaj-panel .wyszukaj-panel-body {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#69b2f5), color-stop(#badeff), to(#badeff));
  background-image: linear-gradient(to bottom, #69b2f5, #badeff, #badeff);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero-panel .wyszukaj-panel .wyszukaj-panel-body .wyszukaj-panel-menu {
  list-style: none;
  padding-left: 2rem;
  line-height: 2.5rem;
}

.hero-panel .wyszukaj-panel .wyszukaj-panel-body .wyszukaj-panel-menu li {
  font-size: 2.5rem;
  color: var(--fg-contrast);
}

.hero-panel .wyszukaj-panel .wyszukaj-panel-body .wyszukaj-panel-menu li a {
  text-decoration: none;
  color: var(--fg-second);
}

.hero-panel .wyszukaj-panel .wyszukaj-panel-body .wyszukaj-panel-menu li a:hover {
  color: var(--fg-second-hover);
}

.hero-panel .wyszukaj-panel .panel-body-dark {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--bg-contrast)), to(var(--bg-contrast)));
  background-image: linear-gradient(to bottom, var(--bg-contrast), var(--bg-contrast));
}

.hero-panel .wyszukaj-panel .panel-body-dark li a {
  color: var(--fg-second);
}

.hero-panel .wyszukaj-panel .wyszukaj-panel-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1rem;
}

.panel-body-dark {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--bg-contrast)), to(var(--bg-contrast)));
  background-image: linear-gradient(to bottom, var(--bg-contrast), var(--bg-contrast));
}

.panel-body-dark li a {
  color: var(--fg-second);
}

.panel-body-dark li a:hover, .panel-body-dark li a:focus {
  color: var(--fg-second-hover);
}

.kategorie_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 500px;
}

.kategorie_grid .col ul {
  list-style: none;
  padding-left: 0rem;
}

.align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
}

a.link {
  text-decoration: none;
  color: var(--fg-second);
  font-size: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a.link:hover {
  color: var(--fg-color);
}

/* MEDIA QUERIES */
@media (max-width: 1180px) {
  .nav-window {
    display: none;
  }
  .hero-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .wyszukaj-panel {
    max-width: 100% !important;
    max-height: 200px !important;
  }
  .wyszukaj-panel .wyszukaj-panel-cols {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .wyszukaj-panel-cols {
    padding-left: 10%;
  }
  .swiper-panel {
    min-width: initial;
    max-width: initial;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .cards2 {
    width: 100%;
    max-width: 1000px;
  }
  .nav-tel {
    height: 55px;
  }
}

@media (max-width: 990px) {
  .logo {
    height: 150px;
    padding: 2rem 6rem 1rem 1rem;
    width: 180px;
  }
  .logo img {
    height: 125px;
  }
  .nav-tel {
    display: none;
  }
  .disappear {
    display: none;
  }
  .text-light {
    padding: 0 2rem;
    font-size: 2.25rem;
  }
  .footer-bar .text-light {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .footer-bar .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer-bar > a {
    width: 180px;
  }
  .kategoria {
    -webkit-box-flex: 40%;
        -ms-flex: 40%;
            flex: 40%;
  }
  .offer-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offer-image-container {
    width: 100%;
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .offer-image-container > img {
    width: 100%;
  }
  .nyc {
    position: relative;
    height: 600px;
    width: 100%;
    max-width: 100%;
  }
  .lookat {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
  .kontakt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .logo-sm-bw {
    left: 0;
    top: 0;
  }
}

@media (max-width: 825px) {
  html {
    font-size: 50%;
  }
  .whole-bar {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: auto;
  }
  .burger-container {
    left: 1rem;
    right: 1rem;
  }
  .nav-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: none;
    margin: 0;
  }
  .logo img {
    height: 160px !important;
  }
  .nav-logo {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    height: 120px;
  }
  .burger {
    position: absolute;
    left: calc(100% - 10rem);
    top: -100px;
  }
  .nav-space {
    display: none;
  }
  .nav-window {
    display: none;
  }
  .nav-svg {
    max-width: 100%;
    max-height: 350px;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .svg-houses {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    z-index: 2000;
    position: relative;
    width: 100%;
    max-height: 100%;
    height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
  }
  .svg-houses svg {
    height: 100%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .footer-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-bar h2 {
    font-size: 3rem;
    text-align: center;
  }
  .footer-bar h3 {
    font-size: 2rem;
    text-align: center;
  }
  .parallax {
    height: 33vh;
    background-position: 60% 0%;
  }
  .nav-menu {
    display: none;
  }
  .arrow img {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  .burger-div {
    display: block;
    padding-right: 1ch;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .burger-div:hover {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  .burger-link {
    cursor: pointer;
  }
  .napisz {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .napisz > div {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  .list-offer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 420px;
    max-width: 100%;
  }
  .list-image-container {
    width: 100%;
    height: 260px;
  }
  .list-offer-container {
    width: 100%;
    margin: 0;
  }
  .list-image {
    width: 100%;
    height: auto;
  }
  .list-bot {
    height: 160px;
  }
  .list-offer {
    min-width: auto;
    width: 100%;
  }
}

@media print {
  .parallax {
    display: none;
  }
  .btn {
    display: none;
  }
  .nav-item {
    display: none;
  }
  .nav-tel {
    display: block !important;
  }
  h3 {
    padding-top: 3rem;
  }
}
/*# sourceMappingURL=style.css.map */