@charset "UTF-8";
@import url("http://fonts.cdnfonts.com/css/carlito");
:root {
  --bg-color: #fff;
  --fg-color: #333;
  --fg-second: #666;
  --fg-contrast: #fff;
  --bg-contrast: #333;
  --distinctive: blue;
  --darkest: black;
  --brightest: white;
}

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

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

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

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

.invisible {
  display: none;
}

.burger-container {
  position: fixed;
  /* left: calc(100vw + 5rem); */
  left: 1.5rem;
  top: 1.5rem;
  /* bottom: 2rem; */
  right: 2rem;
  height: auto;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1100;
  border-radius: 0.5rem;
  display: none;
  border: solid 1px var(--fg-color);
  padding: 1rem 2rem;
}
.burger-container.open {
  display: block;
}

.menu-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.menu-mobile > div {
  width: 100px;
}

.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 2rem 0 0;
  list-style: none;
  font-size: 3rem;
  line-height: 3.5rem;
}
.nav-menu-mobile > li > a {
  text-decoration: none;
  color: var(--fg-color);
  font-weight: 700;
}
.nav-menu-mobile .bander::after {
  top: 3.2rem;
}

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

.nav-submenu-mobile {
  list-style: none;
  line-height: 3rem;
}

.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-contrast);
  font-size: 2rem;
  padding: 0.5rem 2rem;
  height: 4rem;
  border-radius: 0.3rem;
  cursor: pointer;
}

.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;
  background-color: var(--distinctive);
  color: var(--fg-contrast);
  font-size: 2rem;
  padding: 1rem 2rem;
  height: 4rem;
  border-radius: 0.3rem;
  cursor: pointer;
  text-decoration: none;
  margin: 2rem 1rem;
}
.btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.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);
}
.magnify .magnify-around {
  position: absolute;
  top: -70%;
  left: -85%;
  opacity: 0;
  -webkit-filter: drop-shadow(0px 0px 2px white);
          filter: drop-shadow(0px 0px 2px white);
  pointer-events: none;
  -webkit-animation-name: around;
          animation-name: around;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes around {
  0% {
    -webkit-transform: rotate(-120deg);
            transform: rotate(-120deg);
    opacity: 0;
  }
  3% {
    -webkit-transform: rotate(0deg) translate(0px);
            transform: rotate(0deg) translate(0px);
    opacity: 0.8;
  }
  5% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
  6% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
  11% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
  25% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
  26% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
}

@keyframes around {
  0% {
    -webkit-transform: rotate(-120deg);
            transform: rotate(-120deg);
    opacity: 0;
  }
  3% {
    -webkit-transform: rotate(0deg) translate(0px);
            transform: rotate(0deg) translate(0px);
    opacity: 0.8;
  }
  5% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
  6% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
  11% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
  25% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
  26% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: rotate(20deg) translate(0px);
            transform: rotate(20deg) translate(0px);
    opacity: 0.9;
  }
}
.search-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
.search-div div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.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: 700;
  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;
}

.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: 700;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--bg-color);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.nav-bar ul li {
  padding: 0 1.5rem;
}
.nav-bar.nav-dark {
  background-color: var(--bg-contrast);
}

.logo {
  height: 120px;
  padding: 1rem 10rem 1rem 1rem;
  width: 250px;
}

.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: 1.8rem;
  color: var(--darkest);
  text-decoration: none;
  font-family: Carlito, Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.menu-oferty {
  display: none;
  border-radius: 5px;
  position: absolute;
  z-index: 300;
  margin-top: 10px;
  background-color: var(--brightest);
  opacity: 0.8;
}
.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 1rem;
}
.menu-oferty ul li a:hover {
  background-color: #ccc;
}
.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: sticky;
  top: 0;
  z-index: 101;
}

.stickit-sm {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: 60px;
  opacity: 0.9;
}
.stickit-sm .logo {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: 70px;
  padding: 1rem 10rem 1rem 1rem;
  width: 100px;
}
.stickit-sm .logo img {
  height: 45px;
  margin: 0;
}
.stickit-sm .nav-tel {
  height: 45px;
}
.stickit-sm .burger {
  height: 45px;
  margin: 0;
}

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

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

/*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: 700;
  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: 4.25rem;
  font-weight: 700;
  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;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.1ch;
  padding: 2rem;
}

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

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

.text-light {
  color: var(--brightest);
  font-size: 1.8rem;
  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;
}

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

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

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

.badge {
  color: var(--distinctive);
  padding: 0rem 0.5rem;
  margin: 0 1rem;
  border: solid 1px var(--distinctive);
  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 #444;
  /* 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: 0.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: blue;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  25% {
    border-color: transparent;
  }
  35% {
    border-color: blue;
  }
}
.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/apartnemt_1.jpg");
}

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

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

.parallax-video {
  height: auto;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.parallax-video video {
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1111;
}

.white {
  background-color: white;
}

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

* {
  scrollbar-color: blue #88f;
}

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

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

*::-webkit-scrollbar-thumb {
  background-color: red;
  border-radius: 5px;
  border: 1px solid white;
}

html {
  font-size: 62.5%;
}

body {
  padding: 0;
  margin: 0;
  background-color: var(--bg-color);
  font-family: Carlito, Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

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

.list-offer {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 1000px;
  border-radius: 1rem;
  height: 260px;
  overflow: hidden;
  border: solid 1px var(--fg-color);
  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: 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 {
  width: 400px;
  position: relative;
  overflow: hidden;
}

.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.3);
          transform: scale(1.3);
}
.list-image:hover {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

/* 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: grid;
  grid-template-columns: 1fr 1fr;
  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;
}
.oferta-grid div:nth-last-child(2), .oferta-grid div:last-child {
  border: none;
}

/* 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: 1rem;
  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: 1rem;
  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;
}
.image:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.bot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  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;
}
.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: 1100px;
  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.75rem;
  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;
}

/* MEDIA QUERIES */
@media (max-width: 760px) {
  html {
    font-size: 50%;
  }
  .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;
  }
  .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;
  }
}
@media (max-width: 990px) {
  .nav-tel {
    display: none;
  }
  .disappear {
    display: none;
  }
  .text-light {
    padding: 0 2rem;
    font-size: 1.5rem;
  }
  .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;
  }
}