@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");
:root {
  --bg-color:     #fff;
  --fg-color:     #444455;
  --fg-second:    #68B2F5;
  --fg-second-hover:    #7dbdf8;
  --fg-contrast:  #446;
  --bg-contrast:  #e5e5e5;
  --distinctive: rgb(255, 166, 0);
  --darkest: #777;
  --brightest: white;
  --fontPrimary: 'Teko', sans-serif;
  --fontSecondary: 'Roboto', sans-serif;
}

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

.container1 {
  background-color: var(--bg-contrast);
  padding: 1rem;
}

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

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

.invisible {
  display: none !important;
}

.burger-container {
  position: fixed;
  /* left: calc(100vw + 5rem); */
  left: 1.5rem;
  top: -101%;
  /* bottom: 2rem; */
  right: 2rem;
  height: auto;
  background-color: var(--fg-color);
  z-index: 1100;
  border-radius: 0.75rem;
  display: block;
  border: solid 1px var(--fg-contrast);
  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: 400;
}

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

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

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

.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: 400;
  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: 400;
  margin-left: 1rem;
}

.edit-small {
  width: 80px;
}

.edit-smaller {
  width: 70px;
}

.pin {
  padding: 0 0.5rem;
}

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

.nav-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;
  background-color: var(--bg-color);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#68B2F5), to(#f7fbfe));
  background-image: linear-gradient(180deg, #68B2F5, #f7fbfe);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.nav-bar ul li {
  padding: 2rem 1.5rem;
}

.nav-bar.nav-dark {
  background-color: var(--bg-contrast);
}

.nav-bar > img {
  padding-bottom: 2rem;
}

.logo {
  height: 150px;
  padding: 2rem 6rem 1rem 1rem;
  width: 200px;
}

.logo img {
  height: 100px;
}

.logo-dark {
  padding: 1rem;
}

.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;
}

.menu-oferty {
  display: none;
  border-radius: 5px;
  position: absolute;
  z-index: 300;
  margin-top: 1px;
  background-color: var(--brightest);
  opacity: .9;
}

.menu-oferty ul {
  list-style: none;
  padding-left: 0;
  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-oferty ul li {
  padding: 0;
}

.menu-oferty ul li a {
  padding: 1px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 100%;
  display: block;
  padding: 1rem 2rem 1rem 1rem;
}

.menu-oferty ul li a:hover {
  background-color: #eee;
  color: var(--fg-second);
}

.menu-oferty ul li:last-child a {
  border-end-end-radius: 5px;
  border-end-start-radius: 5px;
}

.menu-oferty ul li:last-child a:hover {
  border-end-end-radius: 5px;
  border-end-start-radius: 5px;
}

.naver:hover {
  padding-top: 20px;
  padding-bottom: 20px;
}

.naver:hover .menu-oferty {
  display: block;
}

.stickit {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 101;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#68B2F5), to(#f7fbfe));
  background-image: linear-gradient(180deg, #68B2F5, #f7fbfe);
}

.burger {
  height: 8rem;
}

.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 {
  display: none;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

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

.nav-tel {
  display: block;
  padding-right: 1rem;
  margin-bottom: 0.5rem;
}

.nav-tel-mini {
  display: none;
  padding: 0 0.5rem 0 3rem;
}

.container-top {
  color: initial;
}

.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: center;
      -ms-flex-align: center;
          align-items: center;
}

/*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: 400;
  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: 400;
  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: 400;
  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: left;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.1ch;
  padding: 2rem;
  -webkit-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}

h3 {
  text-align: left;
  font-size: 2.5rem;
  font-weight: 400;
  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-second);
}

.pb-0 {
  padding-top: 0.1rem;
  padding-bottom: 0rem;
}

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

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

.bander {
  position: relative;
}

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

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

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

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

a.menu-text {
  color: var(--fg-second) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a.menu-text: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: 35vh;
  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 img {
  z-index: -1111;
  position: absolute;
}

.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;
}

*, *::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: 400;
  color: var(--fg-color);
}

.logo_sm {
  height: 60px;
  -webkit-filter: grayscale(99%);
          filter: grayscale(99%);
}

.tel1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 3rem;
}

/* 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 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 420px;
  min-width: 400px;
  border-radius: .25rem;
  height: 420px;
  overflow: hidden;
  border: solid 1px var(--fg-color);
  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(--brightest);
  color: var(--fg-color);
}

.list-bot-item1 {
  background-color: var(--bg-contrast);
  color: var(--fg-contrast);
  height: 20%;
  padding: 1rem;
  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;
}

.list-bot-item2 {
  height: 28%;
  padding: 1rem;
  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;
}

.list-bot-item3 {
  height: 32%;
  padding: 1rem;
  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;
}

.list-bot-item4 {
  background-color: var(--bg-contrast);
  color: var(--fg-contrast);
  height: 20%;
  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;
}

.list-image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 260px;
  background-color: var(--bg-color);
}

.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 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 li a {
  color: var(--fg-second);
}

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

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

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

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

.inner {
  border-radius: 0.25rem;
  background-color: var(--fg-color);
  position: relative;
  width: 400px;
  height: 270px;
  overflow: hidden;
  border: solid 1px var(--fg-second);
  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(--fg-color);
  color: var(--brightest);
  z-index: 2;
  height: 80px;
}

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

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

.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;
}

.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.cards2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 890px;
  margin: 0 auto;
}

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

.swiper-slide3 {
  text-align: center;
  font-size: 18px;
  /* 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;
}

/* MEDIA QUERIES */
@media (max-width: 1180px) {
  .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;
  }
}

@media (max-width: 825px) {
  html {
    font-size: 50%;
  }
  .parallax {
    height: 33vh;
    background-position: 60% 0%;
  }
  .nav-menu {
    display: none;
  }
  .nav-tel-mini {
    display: block;
  }
  .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;
  }
  .s-panel {
    height: auto;
    overflow-y: auto;
  }
  .s-panel.open {
    left: 5vw;
    width: 93vw;
  }
  .magnify.open {
    left: calc(5vw - 9px);
  }
  .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;
  }
  .list-image-container {
    width: 100%;
    height: 260px;
  }
  .list-image {
    width: 100%;
    height: auto;
  }
  .list-bot {
    height: 160px;
  }
  .list-bot-item2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .parallax-video-container {
    height: 3vh;
  }
  .logo {
    height: 120px;
    padding: 2rem 6rem 1rem 1rem;
    width: 150px;
  }
  .logo img {
    height: 95px;
  }
  .wyszukaj-panel {
    max-width: 100% !important;
    max-height: 200px !important;
  }
  .list-offer {
    min-width: auto;
  }
}

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