@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:     #FD991D;
  --fg-color:     #3F3D56;
  --distinctive:  #FF5C00;
  --fg-contrast:  #fff;
  --bg-contrast:  #FFD363;
  --fg-second:    #9e6b3a;
  --fg-second-hover:#ae7b4a;
  --darkest: #222;
  --brightest: white;
  --fontPrimary: 'Teko', sans-serif;
  --fontSecondary: 'Roboto', sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0px auto;
}

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

.invisible {
  display: none !important;
}

.oh {
  overflow: hidden;
}

.container-svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 1;
  position: relative;
}

.container-svg svg {
  min-width: 100ch;
}

#sun {
  /* display: none; */
  -webkit-filter: drop-shadow(0 0 1rem crimson);
          filter: drop-shadow(0 0 1rem crimson);
  -webkit-animation: sun-anim 4s ease-in-out 0s infinite alternate both;
          animation: sun-anim 4s ease-in-out 0s infinite alternate both;
}

@-webkit-keyframes sun-anim {
  0% {
    -webkit-filter: drop-shadow(0 0 1rem crimson);
            filter: drop-shadow(0 0 1rem crimson);
  }
  100% {
    -webkit-filter: drop-shadow(0 0 7rem crimson);
            filter: drop-shadow(0 0 7rem crimson);
  }
}

@keyframes sun-anim {
  0% {
    -webkit-filter: drop-shadow(0 0 1rem crimson);
            filter: drop-shadow(0 0 1rem crimson);
  }
  100% {
    -webkit-filter: drop-shadow(0 0 7rem crimson);
            filter: drop-shadow(0 0 7rem crimson);
  }
}

#marker {
  /* motion-path: path("M 5 5 m -4, 0 a 4,4 0 1,0 8,0 a 4,4 0 1,0 -8,0"); */
  offset-path: path("M603.356 321L602 320.76C617.122 268.003 655.124 220.095 709.006 185.861C749.743 160.019 798.193 142.735 849.794 135.638C901.396 128.541 954.451 131.863 1003.96 145.293C1053.48 158.722 1097.82 181.816 1132.81 212.401C1167.81 242.985 1192.31 280.054 1204 320.117L1202.65 320.358C1170.63 210.096 1047.45 133.087 903.093 133.087C760.623 133.087 634.566 212.116 603.356 321Z");
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
  /* animation: move-marker 50s linear infinite alternate both; */
  offset-distance: 3%;
  -webkit-transition: 1s;
  transition: 1s;
}

#marker.open1 {
  offset-distance: 3%;
}

#marker.open2 {
  offset-distance: 15%;
}

#marker.open3 {
  offset-distance: 24%;
}

#marker.open4 {
  offset-distance: 34%;
}

#marker.open5 {
  offset-distance: 42%;
}

@-webkit-keyframes move-marker {
  0% {
    /* motion-offset: 0%; */
    offset-distance: 0%;
  }
  100% {
    /* motion-offset: 100%; */
    offset-distance: 100%;
  }
}

@keyframes move-marker {
  0% {
    /* motion-offset: 0%; */
    offset-distance: 0%;
  }
  100% {
    /* motion-offset: 100%; */
    offset-distance: 100%;
  }
}

#pin {
  /* motion-path: path("M 5 5 m -4, 0 a 4,4 0 1,0 8,0 a 4,4 0 1,0 -8,0"); */
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
  offset-path: path("M602 70H1230");
  /* animation: move-pin 25s linear infinite alternate both; */
  offset-distance: 0%;
  offset-rotate: auto -10deg;
  -webkit-transition: 1s;
  transition: 1s;
}

#pin.open1 {
  offset-distance: 0%;
  offset-rotate: auto -10deg;
}

#pin.open2 {
  offset-distance: 23%;
  offset-rotate: auto -5deg;
}

#pin.open3 {
  offset-distance: 45%;
  offset-rotate: auto 0deg;
}

#pin.open4 {
  offset-distance: 70%;
  offset-rotate: auto 5deg;
}

#pin.open5 {
  offset-distance: 99%;
  offset-rotate: auto 20deg;
}

@-webkit-keyframes move-pin {
  0% {
    /* motion-offset: 0%; */
    offset-distance: 0%;
    offset-rotate: auto -10deg;
  }
  100% {
    /* motion-offset: 100%; */
    offset-distance: 100%;
    offset-rotate: auto 10deg;
  }
}

@keyframes move-pin {
  0% {
    /* motion-offset: 0%; */
    offset-distance: 0%;
    offset-rotate: auto -10deg;
  }
  100% {
    /* motion-offset: 100%; */
    offset-distance: 100%;
    offset-rotate: auto 10deg;
  }
}

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

.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;
  height: 4rem;
  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);
}

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

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

.container-top {
  position: relative;
}

.container-nav {
  position: absolute;
  left: 0;
  top: 0;
  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;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.container-nav .col1 {
  padding: 1rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  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;
}

.container-nav .col1 div:first-child {
  left: 0;
}

.container-nav .col1 div:last-child {
  -webkit-box-flex: 10%;
      -ms-flex: 10%;
          flex: 10%;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 4rem;
  font-size: 2.5rem;
}

.container-nav .logo {
  max-width: 224px;
}

.container-nav .col2 {
  padding-top: 1rem;
}

.container-nav .col3 {
  padding: 1rem;
}

.container-nav .burger {
  padding: 2rem;
  display: none;
}

.nav-tel-mini {
  padding: 2rem;
  margin: 1rem;
  display: none;
}

a.link {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--fg-color);
  margin: 0 1rem;
}

.nav-footer-email {
  padding-right: 1rem;
}

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

.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;
  min-height: 150px;
}

/*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 {
  padding: 0rem;
  font-family: inherit;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 2rem;
  background-color: var(--bg-contrast);
}

.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;
  font-size: 2rem;
  padding-left: 1rem;
}

.edit-dark2 {
  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: 2rem;
  font-weight: 400;
  margin-left: 1rem;
  padding-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: center;
  color: var(--fg-color);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 2rem;
}

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-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: calc(100% - 4px);
  left: 0;
  width: 0%;
  height: 0.4rem;
  background-color: var(--distinctive);
  -webkit-transition: width 0.2s ease-in;
  transition: width 0.2s ease-in;
}

.bander:hover::after {
  width: 100%;
}

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

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

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

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

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

.secondary {
  color: var(--fg-second);
}

/* 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: 2rem;
  background-color: var(--bg-contrast);
  position: relative;
  width: 400px;
  height: 350px;
  overflow: hidden;
  border: solid 0px 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;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.inner:hover {
  -webkit-filter: drop-shadow(0px 0px 3px var(--fg-color));
          filter: drop-shadow(0px 0px 3px var(--fg-color));
  -webkit-transform: skewX(-0.5deg);
          transform: skewX(-0.5deg);
}

.image {
  width: 400px;
  position: absolute;
  top: 0;
  border-radius: 2rem;
  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.05);
          transform: scale(1.05);
}

.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(--fg-color);
  z-index: 2;
  height: 90px;
}

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

.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: 420px !important;
}

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

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

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

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

.swiper-pagination-bullet {
  -webkit-filter: hue-rotate(180deg);
          filter: hue-rotate(180deg);
}

*, *::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);
  min-height: 100vh;
}

/* 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: 2rem;
  height: 400px;
  overflow: hidden;
  border: solid 0px 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;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

.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 {
  height: 40px;
  background-color: var(--bg-contrast);
  color: var(--fg-color);
  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;
  font-size: 2.5rem;
}

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

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

/* MEDIA QUERIES */
@media (max-width: 1060px) {
  .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 img {
    height: 35px;
  }
  .col2 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media (max-width: 980px) {
  html {
    font-size: 56%;
  }
  .logo {
    width: 200px;
  }
  .nav-tel {
    display: none;
  }
  .nav-tel-mini {
    display: block !important;
    width: 60px;
  }
  .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%;
  }
  .disappear {
    display: none;
  }
}

@media (max-width: 825px) {
  html {
    font-size: 50%;
  }
}

@media (max-width: 760px) {
  .col1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .col2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    font-size: 1rem;
  }
  .col2 .menu a.link {
    font-size: 2rem;
  }
  .logo {
    width: 150px;
  }
  .address-top {
    display: none !important;
  }
  .burger {
    display: block !important;
    width: 60px;
  }
  .burger img {
    width: 35px;
  }
  .top-mobile-spacer {
    margin-top: 2rem;
  }
  .list-offer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 420px;
    min-width: 90%;
  }
  .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;
  }
  .list-image-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .napisz {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .napisz > div {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  .swiper-container {
    height: 420px !important;
  }
  .nyc {
    position: relative;
    height: 400px;
    max-width: 640px;
    padding: 1rem;
  }
  .footer-bar {
    min-height: 100px;
  }
  .footer-address {
    display: none;
  }
}

@media print {
  .btn {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */