@import url(./reset.css);
@import url(./bootstrap.css);
.text-center {
  text-align: center;
}

.swiper {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  visibility: hidden;
  opacity: 0;
}
.swiper.swiper-initialized {
  visibility: visible;
  opacity: 1;
}

body {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
  background-color: #fff;
  color: #000000;
  position: relative;
}
@media (max-width: 767px) {
  body {
    font-size: 13px;
  }
}
body .nakladka {
  display: none;
  z-index: 7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  background-color: #000000;
}
body.block {
  overflow: hidden;
}

@media (max-width: 991px) {
  .container {
    padding: 0 24px;
    max-width: unset;
  }
}

section {
  position: relative;
}
section .container {
  position: relative;
  z-index: 2;
}
section .section_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section .section_bg img,
section .section_bg video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
section .section_bg_onlywideo {
  position: relative;
  top: auto;
  left: auto;
  height: auto;
}
section .section_bg_onlywideo video {
  height: auto;
  object-fit: unset;
}
section .section_anchor {
  position: absolute;
  top: -96px;
  left: 0;
}
@media (max-width: 991px) {
  section .section_anchor {
    top: -120px;
  }
}

.text-center {
  text-align: center;
}

/* PART 1 - Before Lazy Load */
img[data-lazyloaded] {
  opacity: 0;
}

/* PART 2 - Upon Lazy Load */
img.litespeed-loaded {
  -webkit-transition: opacity 0.5s linear 0.2s;
  -moz-transition: opacity 0.5s linear 0.2s;
  transition: opacity 0.5s linear 0.2s;
  opacity: 1;
}

.ladowanie {
  width: 100%;
  padding: 64px 0;
  background-color: var(--color-1);
  text-align: center;
  border-bottom: solid 1px #fff;
}
@media (max-width: 767px) {
  .ladowanie {
    padding: 48px 0;
  }
}
.ladowanie p {
  margin-bottom: 12px;
  color: #fff;
  font-size: 20px;
}
@media (max-width: 767px) {
  .ladowanie p {
    font-size: 16px;
  }
}
.ladowanie .loader {
  width: 48px;
  height: 48px;
  border: 4px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@media (max-width: 767px) {
  .ladowanie .loader {
    width: 36px;
    height: 36px;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tekst {
  margin-top: 96px;
}
@media (max-width: 1199px) {
  .tekst {
    margin-top: 72px;
  }
}
@media (max-width: 991px) {
  .tekst {
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  .tekst {
    margin-top: 48px;
  }
}
.tekst p {
  margin-bottom: 24px;
}
.tekst p,
.tekst h1,
.tekst h2,
.tekst h3,
.tekst h4,
.tekst h5,
.tekst ol,
.tekst ul,
.tekst blockquote {
  display: block;
  width: 100%;
  word-wrap: break-word;
}
.tekst strong {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.tekst h1,
.tekst h2 {
  font-size: 42px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  display: inline-block;
  margin: 0 0 24px 0;
  width: 100%;
  display: block;
}
.tekst h1::before,
.tekst h2::before {
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 10px;
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199px) {
  .tekst h1::before,
.tekst h2::before {
    height: 12px;
  }
}
@media (max-width: 991px) {
  .tekst h1::before,
.tekst h2::before {
    height: 9px;
  }
}
@media (max-width: 767px) {
  .tekst h1::before,
.tekst h2::before {
    height: 6px;
  }
}
@media (max-width: 1199px) {
  .tekst h1,
.tekst h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .tekst h1,
.tekst h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .tekst h1,
.tekst h2 {
    font-size: 24px;
  }
}
.tekst h1::before, .tekst h1::after,
.tekst h2::before,
.tekst h2::after {
  display: none;
}
.tekst h3 {
  font-size: 32px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .tekst h3 {
    font-size: 20px;
  }
}
.tekst h4 {
  font-size: 24px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .tekst h4 {
    font-size: 18px;
  }
}
.tekst p {
  margin: 0 0 24px 0;
}
.tekst ol {
  margin: 0 0 24px 0;
}
.tekst ol li {
  list-style: decimal;
  list-style-position: inside;
  margin-top: 10px;
}
.tekst ol ol,
.tekst ol ul {
  padding-left: 12px;
}
.tekst a {
  position: relative;
  color: var(--color-1);
  word-wrap: break-word;
}
.tekst a:before {
  background-color: var(--color-1);
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -2px;
  display: block;
  height: 1px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.tekst a:hover:before {
  width: 0;
}
.tekst ul {
  margin: 0 0 24px 0;
}
.tekst ul li {
  padding: 0 0 0 12px;
  position: relative;
  margin-top: 12px;
  display: block;
}
.tekst ul li:before {
  position: absolute;
  left: 0;
  top: 12px;
  background-color: var(--color-1);
  width: 4px;
  height: 4px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  content: "";
  margin: auto;
}
.tekst ul li ol {
  padding-left: 12px;
}
.tekst ul li ol li::before {
  display: none;
}
.tekst ul li ul {
  padding-left: 15px;
}
.tekst img {
  max-width: 100%;
  height: auto;
}
.tekst img.aligncenter {
  clear: both;
  margin: 0 auto;
  display: block;
}
.tekst img.alignleft {
  margin: 0;
  display: block;
  float: left;
}
.tekst img.alignright {
  margin: 0;
  display: block;
  float: right;
}
.tekst iframe {
  display: block;
  width: 100%;
  height: 600px;
}
@media (max-width: 1199px) {
  .tekst iframe {
    height: 550px;
  }
}
@media (max-width: 1199px) {
  .tekst iframe {
    height: 500px;
  }
}
@media (max-width: 1199px) {
  .tekst iframe {
    height: 450px;
  }
}

.tekst_fotoprawo,
.tekst_fotolewo {
  margin-top: 96px;
}
@media (max-width: 1199px) {
  .tekst_fotoprawo,
.tekst_fotolewo {
    margin-top: 72px;
  }
}
@media (max-width: 991px) {
  .tekst_fotoprawo,
.tekst_fotolewo {
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  .tekst_fotoprawo,
.tekst_fotolewo {
    margin-top: 48px;
  }
}
.tekst_fotoprawo_tekst p,
.tekst_fotolewo_tekst p {
  margin-bottom: 24px;
}
.tekst_fotoprawo_tekst p,
.tekst_fotoprawo_tekst h1,
.tekst_fotoprawo_tekst h2,
.tekst_fotoprawo_tekst h3,
.tekst_fotoprawo_tekst h4,
.tekst_fotoprawo_tekst h5,
.tekst_fotoprawo_tekst ol,
.tekst_fotoprawo_tekst ul,
.tekst_fotoprawo_tekst blockquote,
.tekst_fotolewo_tekst p,
.tekst_fotolewo_tekst h1,
.tekst_fotolewo_tekst h2,
.tekst_fotolewo_tekst h3,
.tekst_fotolewo_tekst h4,
.tekst_fotolewo_tekst h5,
.tekst_fotolewo_tekst ol,
.tekst_fotolewo_tekst ul,
.tekst_fotolewo_tekst blockquote {
  display: block;
  width: 100%;
  word-wrap: break-word;
}
.tekst_fotoprawo_tekst strong,
.tekst_fotolewo_tekst strong {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.tekst_fotoprawo_tekst h1,
.tekst_fotoprawo_tekst h2,
.tekst_fotolewo_tekst h1,
.tekst_fotolewo_tekst h2 {
  font-size: 42px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  display: inline-block;
  margin: 0 0 24px 0;
  width: 100%;
  display: block;
}
.tekst_fotoprawo_tekst h1::before,
.tekst_fotoprawo_tekst h2::before,
.tekst_fotolewo_tekst h1::before,
.tekst_fotolewo_tekst h2::before {
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 10px;
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199px) {
  .tekst_fotoprawo_tekst h1::before,
.tekst_fotoprawo_tekst h2::before,
.tekst_fotolewo_tekst h1::before,
.tekst_fotolewo_tekst h2::before {
    height: 12px;
  }
}
@media (max-width: 991px) {
  .tekst_fotoprawo_tekst h1::before,
.tekst_fotoprawo_tekst h2::before,
.tekst_fotolewo_tekst h1::before,
.tekst_fotolewo_tekst h2::before {
    height: 9px;
  }
}
@media (max-width: 767px) {
  .tekst_fotoprawo_tekst h1::before,
.tekst_fotoprawo_tekst h2::before,
.tekst_fotolewo_tekst h1::before,
.tekst_fotolewo_tekst h2::before {
    height: 6px;
  }
}
@media (max-width: 1199px) {
  .tekst_fotoprawo_tekst h1,
.tekst_fotoprawo_tekst h2,
.tekst_fotolewo_tekst h1,
.tekst_fotolewo_tekst h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .tekst_fotoprawo_tekst h1,
.tekst_fotoprawo_tekst h2,
.tekst_fotolewo_tekst h1,
.tekst_fotolewo_tekst h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .tekst_fotoprawo_tekst h1,
.tekst_fotoprawo_tekst h2,
.tekst_fotolewo_tekst h1,
.tekst_fotolewo_tekst h2 {
    font-size: 24px;
  }
}
.tekst_fotoprawo_tekst h1::before, .tekst_fotoprawo_tekst h1::after,
.tekst_fotoprawo_tekst h2::before,
.tekst_fotoprawo_tekst h2::after,
.tekst_fotolewo_tekst h1::before,
.tekst_fotolewo_tekst h1::after,
.tekst_fotolewo_tekst h2::before,
.tekst_fotolewo_tekst h2::after {
  display: none;
}
.tekst_fotoprawo_tekst h3,
.tekst_fotolewo_tekst h3 {
  font-size: 32px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .tekst_fotoprawo_tekst h3,
.tekst_fotolewo_tekst h3 {
    font-size: 20px;
  }
}
.tekst_fotoprawo_tekst h4,
.tekst_fotolewo_tekst h4 {
  font-size: 24px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .tekst_fotoprawo_tekst h4,
.tekst_fotolewo_tekst h4 {
    font-size: 18px;
  }
}
.tekst_fotoprawo_tekst p,
.tekst_fotolewo_tekst p {
  margin: 0 0 24px 0;
}
.tekst_fotoprawo_tekst ol,
.tekst_fotolewo_tekst ol {
  margin: 0 0 24px 0;
}
.tekst_fotoprawo_tekst ol li,
.tekst_fotolewo_tekst ol li {
  list-style: decimal;
  list-style-position: inside;
  margin-top: 10px;
}
.tekst_fotoprawo_tekst ol ol,
.tekst_fotoprawo_tekst ol ul,
.tekst_fotolewo_tekst ol ol,
.tekst_fotolewo_tekst ol ul {
  padding-left: 12px;
}
.tekst_fotoprawo_tekst a,
.tekst_fotolewo_tekst a {
  position: relative;
  color: var(--color-1);
  word-wrap: break-word;
}
.tekst_fotoprawo_tekst a:before,
.tekst_fotolewo_tekst a:before {
  background-color: var(--color-1);
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -2px;
  display: block;
  height: 1px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.tekst_fotoprawo_tekst a:hover:before,
.tekst_fotolewo_tekst a:hover:before {
  width: 0;
}
.tekst_fotoprawo_tekst ul,
.tekst_fotolewo_tekst ul {
  margin: 0 0 24px 0;
}
.tekst_fotoprawo_tekst ul li,
.tekst_fotolewo_tekst ul li {
  padding: 0 0 0 12px;
  position: relative;
  margin-top: 12px;
  display: block;
}
.tekst_fotoprawo_tekst ul li:before,
.tekst_fotolewo_tekst ul li:before {
  position: absolute;
  left: 0;
  top: 12px;
  background-color: var(--color-1);
  width: 4px;
  height: 4px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  content: "";
  margin: auto;
}
.tekst_fotoprawo_tekst ul li ol,
.tekst_fotolewo_tekst ul li ol {
  padding-left: 12px;
}
.tekst_fotoprawo_tekst ul li ol li::before,
.tekst_fotolewo_tekst ul li ol li::before {
  display: none;
}
.tekst_fotoprawo_tekst ul li ul,
.tekst_fotolewo_tekst ul li ul {
  padding-left: 15px;
}
.tekst_fotoprawo_tekst img,
.tekst_fotolewo_tekst img {
  max-width: 100%;
  height: auto;
}
.tekst_fotoprawo_tekst img.aligncenter,
.tekst_fotolewo_tekst img.aligncenter {
  clear: both;
  margin: 0 auto;
  display: block;
}
.tekst_fotoprawo_tekst img.alignleft,
.tekst_fotolewo_tekst img.alignleft {
  margin: 0;
  display: block;
  float: left;
}
.tekst_fotoprawo_tekst img.alignright,
.tekst_fotolewo_tekst img.alignright {
  margin: 0;
  display: block;
  float: right;
}
.tekst_fotoprawo_tekst iframe,
.tekst_fotolewo_tekst iframe {
  display: block;
  width: 100%;
  height: 600px;
}
@media (max-width: 1199px) {
  .tekst_fotoprawo_tekst iframe,
.tekst_fotolewo_tekst iframe {
    height: 550px;
  }
}
@media (max-width: 1199px) {
  .tekst_fotoprawo_tekst iframe,
.tekst_fotolewo_tekst iframe {
    height: 500px;
  }
}
@media (max-width: 1199px) {
  .tekst_fotoprawo_tekst iframe,
.tekst_fotolewo_tekst iframe {
    height: 450px;
  }
}
.tekst_fotoprawo_foto,
.tekst_fotolewo_foto {
  position: relative;
  width: 100%;
  height: 100%;
}
.tekst_fotoprawo_foto.bezramki::after,
.tekst_fotolewo_foto.bezramki::after {
  display: none;
}
.tekst_fotoprawo_foto::after,
.tekst_fotolewo_foto::after {
  width: 100%;
  height: 100%;
  border: solid 2px var(--color-1);
  top: 24px;
  right: 24px;
  display: block;
  position: absolute;
  content: "";
}
.tekst_fotoprawo_foto img,
.tekst_fotolewo_foto img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .tekst_fotoprawo_foto img,
.tekst_fotolewo_foto img {
    height: auto;
    object-fit: unset;
    position: relative;
    top: auto;
    left: auto;
    margin-top: 24px;
  }
}
@media (max-width: 991px) {
  .tekst_fotoprawo_foto,
.tekst_fotolewo_foto {
    height: auto;
  }
}
.tekst_fotoprawo_button,
.tekst_fotolewo_button {
  display: inline-block;
  padding: 12px 48px 12px 24px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  background-color: var(--color-1);
  color: #fff;
}
.tekst_fotoprawo_button::before, .tekst_fotoprawo_button::after,
.tekst_fotolewo_button::before,
.tekst_fotolewo_button::after {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.tekst_fotoprawo_button::before,
.tekst_fotolewo_button::before {
  background-image: url("../images/ico_arrow_white.svg");
}
.tekst_fotoprawo_button::after,
.tekst_fotolewo_button::after {
  background-image: url("../images/ico_arrow_dark.svg");
}
.tekst_fotoprawo_button::before,
.tekst_fotolewo_button::before {
  opacity: 1;
}
.tekst_fotoprawo_button::after,
.tekst_fotolewo_button::after {
  opacity: 0;
}
.tekst_fotoprawo_button:hover,
.tekst_fotolewo_button:hover {
  background-color: #f7f7f7;
  color: var(--color-1);
}
.tekst_fotoprawo_button:hover::before,
.tekst_fotolewo_button:hover::before {
  opacity: 0;
}
.tekst_fotoprawo_button:hover::after,
.tekst_fotolewo_button:hover::after {
  opacity: 1;
}
.tekst_fotoprawo_tlo,
.tekst_fotolewo_tlo {
  padding: 96px 0;
  background-color: #f7f7f7;
}
@media (max-width: 1199px) {
  .tekst_fotoprawo_tlo,
.tekst_fotolewo_tlo {
    padding: 72px 0;
  }
}
@media (max-width: 991px) {
  .tekst_fotoprawo_tlo,
.tekst_fotolewo_tlo {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .tekst_fotoprawo_tlo,
.tekst_fotolewo_tlo {
    padding: 48px 0;
  }
}

@media (max-width: 991px) {
  .tekst_fotolewo .row {
    flex-direction: column-reverse;
  }
}

.baner {
  position: relative;
}
.baner .container {
  position: relative;
  z-index: 3;
  text-align: center;
}
.baner_h1 {
  font-size: 42px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  display: inline-block;
  margin-top: 64px;
  color: #fff;
}
.baner_h1::before {
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 10px;
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199px) {
  .baner_h1::before {
    height: 12px;
  }
}
@media (max-width: 991px) {
  .baner_h1::before {
    height: 9px;
  }
}
@media (max-width: 767px) {
  .baner_h1::before {
    height: 6px;
  }
}
@media (max-width: 1199px) {
  .baner_h1 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .baner_h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .baner_h1 {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .baner_h1 {
    margin-top: 56px;
  }
}
@media (max-width: 767px) {
  .baner_h1 {
    margin-top: 48px;
  }
}
.baner_h1::before {
  display: none;
}
.baner_okruszki {
  font-size: 12px;
  margin: 24px 0 36px 0;
  text-transform: lowercase;
}
@media (max-width: 767px) {
  .baner_okruszki {
    margin: 24px 0;
  }
}
.baner_okruszki span {
  color: #fff;
}
.baner_okruszki a {
  color: rgba(255, 255, 255, 0.25);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.baner_okruszki a:hover {
  color: #fff;
}
.baner_nakladka {
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--color-1));
  position: absolute;
  left: 0;
  top: 0;
}
.baner_baner {
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
}

.kontakt {
  position: relative;
  margin-bottom: 48px;
}
.kontakt .row {
  align-items: center;
}
.kontakt_naglowek {
  font-size: 42px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  display: inline-block;
  color: #000000;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
}
.kontakt_naglowek::before {
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 10px;
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199px) {
  .kontakt_naglowek::before {
    height: 12px;
  }
}
@media (max-width: 991px) {
  .kontakt_naglowek::before {
    height: 9px;
  }
}
@media (max-width: 767px) {
  .kontakt_naglowek::before {
    height: 6px;
  }
}
@media (max-width: 1199px) {
  .kontakt_naglowek {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .kontakt_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .kontakt_naglowek {
    font-size: 24px;
  }
}
.kontakt_moduldane {
  margin-top: 96px;
  margin-bottom: 96px;
  text-align: center;
}
@media (max-width: 1199px) {
  .kontakt_moduldane {
    margin-top: 72px;
  }
}
@media (max-width: 991px) {
  .kontakt_moduldane {
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  .kontakt_moduldane {
    margin-top: 48px;
  }
}
@media (max-width: 1199px) {
  .kontakt_moduldane {
    margin-bottom: 72px;
  }
}
@media (max-width: 991px) {
  .kontakt_moduldane {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .kontakt_moduldane {
    margin-bottom: 48px;
  }
}
.kontakt_moduldane .kontakt_dane {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.kontakt_moduldane .kontakt_dane li {
  margin: 12px;
  display: block;
}
.kontakt_moduldane .kontakt_dane li a,
.kontakt_moduldane .kontakt_dane li p {
  font-size: 20px;
  position: relative;
  padding-left: 36px;
  display: inline-block;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (max-width: 767px) {
  .kontakt_moduldane .kontakt_dane li a,
.kontakt_moduldane .kontakt_dane li p {
    font-size: 16px;
  }
}
.kontakt_moduldane .kontakt_dane li a::before,
.kontakt_moduldane .kontakt_dane li p::before {
  content: "";
  width: 24px;
  height: 24px;
  top: 6px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  display: block;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (max-width: 767px) {
  .kontakt_moduldane .kontakt_dane li a::before,
.kontakt_moduldane .kontakt_dane li p::before {
    top: 0;
  }
}
.kontakt_moduldane .kontakt_dane li a:hover,
.kontakt_moduldane .kontakt_dane li p:hover {
  opacity: 0.5;
}
.kontakt_moduldane .kontakt_dane_telefon::before {
  background-image: url("../images/ico_contact_phone_dark.svg");
}
.kontakt_moduldane .kontakt_dane_mail::before {
  background-image: url("../images/ico_contact_mail_dark.svg");
}
.kontakt_moduldane .kontakt_dane_adres::before {
  background-image: url("../images/ico_contact_place.svg");
}
.kontakt_moduldane .kontakt_pozostale p {
  margin-bottom: 24px;
}
.kontakt_moduldane .kontakt_pozostale p,
.kontakt_moduldane .kontakt_pozostale h1,
.kontakt_moduldane .kontakt_pozostale h2,
.kontakt_moduldane .kontakt_pozostale h3,
.kontakt_moduldane .kontakt_pozostale h4,
.kontakt_moduldane .kontakt_pozostale h5,
.kontakt_moduldane .kontakt_pozostale ol,
.kontakt_moduldane .kontakt_pozostale ul,
.kontakt_moduldane .kontakt_pozostale blockquote {
  display: block;
  width: 100%;
  word-wrap: break-word;
}
.kontakt_moduldane .kontakt_pozostale strong {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.kontakt_moduldane .kontakt_pozostale h1,
.kontakt_moduldane .kontakt_pozostale h2 {
  font-size: 42px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  display: inline-block;
  margin: 0 0 24px 0;
  width: 100%;
  display: block;
}
.kontakt_moduldane .kontakt_pozostale h1::before,
.kontakt_moduldane .kontakt_pozostale h2::before {
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 10px;
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199px) {
  .kontakt_moduldane .kontakt_pozostale h1::before,
.kontakt_moduldane .kontakt_pozostale h2::before {
    height: 12px;
  }
}
@media (max-width: 991px) {
  .kontakt_moduldane .kontakt_pozostale h1::before,
.kontakt_moduldane .kontakt_pozostale h2::before {
    height: 9px;
  }
}
@media (max-width: 767px) {
  .kontakt_moduldane .kontakt_pozostale h1::before,
.kontakt_moduldane .kontakt_pozostale h2::before {
    height: 6px;
  }
}
@media (max-width: 1199px) {
  .kontakt_moduldane .kontakt_pozostale h1,
.kontakt_moduldane .kontakt_pozostale h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .kontakt_moduldane .kontakt_pozostale h1,
.kontakt_moduldane .kontakt_pozostale h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .kontakt_moduldane .kontakt_pozostale h1,
.kontakt_moduldane .kontakt_pozostale h2 {
    font-size: 24px;
  }
}
.kontakt_moduldane .kontakt_pozostale h1::before, .kontakt_moduldane .kontakt_pozostale h1::after,
.kontakt_moduldane .kontakt_pozostale h2::before,
.kontakt_moduldane .kontakt_pozostale h2::after {
  display: none;
}
.kontakt_moduldane .kontakt_pozostale h3 {
  font-size: 32px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .kontakt_moduldane .kontakt_pozostale h3 {
    font-size: 20px;
  }
}
.kontakt_moduldane .kontakt_pozostale h4 {
  font-size: 24px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .kontakt_moduldane .kontakt_pozostale h4 {
    font-size: 18px;
  }
}
.kontakt_moduldane .kontakt_pozostale p {
  margin: 0 0 24px 0;
}
.kontakt_moduldane .kontakt_pozostale ol {
  margin: 0 0 24px 0;
}
.kontakt_moduldane .kontakt_pozostale ol li {
  list-style: decimal;
  list-style-position: inside;
  margin-top: 10px;
}
.kontakt_moduldane .kontakt_pozostale ol ol,
.kontakt_moduldane .kontakt_pozostale ol ul {
  padding-left: 12px;
}
.kontakt_moduldane .kontakt_pozostale a {
  position: relative;
  color: var(--color-1);
  word-wrap: break-word;
}
.kontakt_moduldane .kontakt_pozostale a:before {
  background-color: var(--color-1);
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -2px;
  display: block;
  height: 1px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.kontakt_moduldane .kontakt_pozostale a:hover:before {
  width: 0;
}
.kontakt_moduldane .kontakt_pozostale ul {
  margin: 0 0 24px 0;
}
.kontakt_moduldane .kontakt_pozostale ul li {
  padding: 0 0 0 12px;
  position: relative;
  margin-top: 12px;
  display: block;
}
.kontakt_moduldane .kontakt_pozostale ul li:before {
  position: absolute;
  left: 0;
  top: 12px;
  background-color: var(--color-1);
  width: 4px;
  height: 4px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  content: "";
  margin: auto;
}
.kontakt_moduldane .kontakt_pozostale ul li ol {
  padding-left: 12px;
}
.kontakt_moduldane .kontakt_pozostale ul li ol li::before {
  display: none;
}
.kontakt_moduldane .kontakt_pozostale ul li ul {
  padding-left: 15px;
}
.kontakt_moduldane .kontakt_pozostale img {
  max-width: 100%;
  height: auto;
}
.kontakt_moduldane .kontakt_pozostale img.aligncenter {
  clear: both;
  margin: 0 auto;
  display: block;
}
.kontakt_moduldane .kontakt_pozostale img.alignleft {
  margin: 0;
  display: block;
  float: left;
}
.kontakt_moduldane .kontakt_pozostale img.alignright {
  margin: 0;
  display: block;
  float: right;
}
.kontakt_moduldane .kontakt_pozostale iframe {
  display: block;
  width: 100%;
  height: 600px;
}
@media (max-width: 1199px) {
  .kontakt_moduldane .kontakt_pozostale iframe {
    height: 550px;
  }
}
@media (max-width: 1199px) {
  .kontakt_moduldane .kontakt_pozostale iframe {
    height: 500px;
  }
}
@media (max-width: 1199px) {
  .kontakt_moduldane .kontakt_pozostale iframe {
    height: 450px;
  }
}
.kontakt_modulformularz {
  margin-top: 96px;
}
@media (max-width: 1199px) {
  .kontakt_modulformularz {
    margin-top: 72px;
  }
}
@media (max-width: 991px) {
  .kontakt_modulformularz {
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  .kontakt_modulformularz {
    margin-top: 48px;
  }
}
.kontakt_modulformularz .kontakt_formularz {
  background-color: #f7f7f7;
  padding: 48px;
}
@media (max-width: 991px) {
  .kontakt_modulformularz .kontakt_formularz {
    margin-bottom: 24px;
    padding: 24px;
  }
}

.mapa {
  height: 450px;
}
@media (max-width: 1199px) {
  .mapa {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .mapa {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .mapa {
    height: 300px;
  }
}
.mapa iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(100%);
}

.wpcf7 h2 {
  font-size: 42px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  display: inline-block;
  color: #000000;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
}
.wpcf7 h2::before {
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 10px;
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199px) {
  .wpcf7 h2::before {
    height: 12px;
  }
}
@media (max-width: 991px) {
  .wpcf7 h2::before {
    height: 9px;
  }
}
@media (max-width: 767px) {
  .wpcf7 h2::before {
    height: 6px;
  }
}
@media (max-width: 1199px) {
  .wpcf7 h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .wpcf7 h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .wpcf7 h2 {
    font-size: 24px;
  }
}
.wpcf7 input:not(.wpcf7-submit),
.wpcf7 textarea:not(.wpcf7-submit),
.wpcf7 select:not(.wpcf7-submit) {
  margin: 0 0 24px 0;
  display: block;
  background-color: #fff;
  border: none;
  height: 50px;
  line-height: 50px;
  position: relative;
  width: 100%;
  font-size: 15px;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 0 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  resize: none;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wpcf7 input:not(.wpcf7-submit),
.wpcf7 textarea:not(.wpcf7-submit),
.wpcf7 select:not(.wpcf7-submit) {
    font-size: 14px;
    padding: 0 12px;
  }
}
.wpcf7 input::-webkit-input-placeholder,
.wpcf7 textarea::-webkit-input-placeholder,
.wpcf7 select::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 575px) {
  .wpcf7 input::-webkit-input-placeholder,
.wpcf7 textarea::-webkit-input-placeholder,
.wpcf7 select::-webkit-input-placeholder {
    font-size: 14px;
  }
}
.wpcf7 input::-webkit-input-placeholder,
.wpcf7 textarea::-webkit-input-placeholder,
.wpcf7 select::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 575px) {
  .wpcf7 input::-webkit-input-placeholder,
.wpcf7 textarea::-webkit-input-placeholder,
.wpcf7 select::-webkit-input-placeholder {
    font-size: 14px;
  }
}
.wpcf7 input::-moz-placeholder,
.wpcf7 textarea::-moz-placeholder,
.wpcf7 select::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 575px) {
  .wpcf7 input::-moz-placeholder,
.wpcf7 textarea::-moz-placeholder,
.wpcf7 select::-moz-placeholder {
    font-size: 14px;
  }
}
.wpcf7 input:-ms-input-placeholder,
.wpcf7 textarea:-ms-input-placeholder,
.wpcf7 select:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 575px) {
  .wpcf7 input:-ms-input-placeholder,
.wpcf7 textarea:-ms-input-placeholder,
.wpcf7 select:-ms-input-placeholder {
    font-size: 14px;
  }
}
.wpcf7 input:-webkit-autofill,
.wpcf7 textarea:-webkit-autofill,
.wpcf7 select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}
.wpcf7 input:focus::-webkit-input-placeholder,
.wpcf7 textarea:focus::-webkit-input-placeholder,
.wpcf7 select:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.wpcf7 input:focus:-moz-placeholder,
.wpcf7 textarea:focus:-moz-placeholder,
.wpcf7 select:focus:-moz-placeholder {
  opacity: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.wpcf7 input:focus::-moz-placeholder,
.wpcf7 textarea:focus::-moz-placeholder,
.wpcf7 select:focus::-moz-placeholder {
  opacity: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.wpcf7 input:focus:-ms-input-placeholder,
.wpcf7 textarea:focus:-ms-input-placeholder,
.wpcf7 select:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.wpcf7 input.wpcf7-submit,
.wpcf7 textarea.wpcf7-submit,
.wpcf7 select.wpcf7-submit {
  cursor: pointer;
  display: inline-block;
  padding: 12px 48px 12px 24px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  background-color: var(--color-1);
  color: #fff;
  margin-top: 24px;
}
.wpcf7 input.wpcf7-submit::before, .wpcf7 input.wpcf7-submit::after,
.wpcf7 textarea.wpcf7-submit::before,
.wpcf7 textarea.wpcf7-submit::after,
.wpcf7 select.wpcf7-submit::before,
.wpcf7 select.wpcf7-submit::after {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.wpcf7 input.wpcf7-submit::before,
.wpcf7 textarea.wpcf7-submit::before,
.wpcf7 select.wpcf7-submit::before {
  background-image: url("../images/ico_arrow_white.svg");
}
.wpcf7 input.wpcf7-submit::after,
.wpcf7 textarea.wpcf7-submit::after,
.wpcf7 select.wpcf7-submit::after {
  background-image: url("../images/ico_arrow_dark.svg");
}
.wpcf7 input.wpcf7-submit::before,
.wpcf7 textarea.wpcf7-submit::before,
.wpcf7 select.wpcf7-submit::before {
  opacity: 1;
}
.wpcf7 input.wpcf7-submit::after,
.wpcf7 textarea.wpcf7-submit::after,
.wpcf7 select.wpcf7-submit::after {
  opacity: 0;
}
.wpcf7 input.wpcf7-submit:hover,
.wpcf7 textarea.wpcf7-submit:hover,
.wpcf7 select.wpcf7-submit:hover {
  background-color: #f7f7f7;
  color: var(--color-1);
}
.wpcf7 input.wpcf7-submit:hover::before,
.wpcf7 textarea.wpcf7-submit:hover::before,
.wpcf7 select.wpcf7-submit:hover::before {
  opacity: 0;
}
.wpcf7 input.wpcf7-submit:hover::after,
.wpcf7 textarea.wpcf7-submit:hover::after,
.wpcf7 select.wpcf7-submit:hover::after {
  opacity: 1;
}
.wpcf7 input.wpcf7-submit:disabled,
.wpcf7 textarea.wpcf7-submit:disabled,
.wpcf7 select.wpcf7-submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid {
  color: #b50f0f;
  border-color: #b50f0f;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #b50f0f;
  font-size: 10px;
  line-height: 16px;
  margin: 0;
  text-align: left;
  position: absolute;
  left: 24px;
  bottom: 2px;
}
.wpcf7 textarea:not(.wpcf7-submit) {
  display: block;
  height: 120px;
  padding: 12px 24px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .wpcf7 textarea:not(.wpcf7-submit) {
    padding: 12px;
  }
}
.wpcf7 .wpcf7-spinner {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  background-color: #fff;
  opacity: 0.8;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  height: 100%;
  border-radius: 0;
  margin: 0;
}
.wpcf7 .wpcf7-spinner::before {
  display: none;
}
.wpcf7 br {
  display: none !important;
}
.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.wpcf7 .wpcf7-acceptance {
  display: block;
}
.wpcf7 .wpcf7-acceptance span.wpcf7-list-item {
  margin: 12px 0 !important;
  cursor: pointer;
}
.wpcf7 .wpcf7-acceptance span.wpcf7-list-item input {
  display: none;
}
@media (max-width: 991px) {
  .wpcf7 .wpcf7-acceptance span.wpcf7-list-item {
    text-align: left;
  }
}
.wpcf7 .wpcf7-acceptance span.wpcf7-list-item label {
  padding: 0 0 0 36px;
  display: block;
  float: right;
  font-size: 11px;
  line-height: 1.2;
  position: relative;
  cursor: pointer;
  color: #000000;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.wpcf7 .wpcf7-acceptance span.wpcf7-list-item label a {
  color: var(--color-1);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.wpcf7 .wpcf7-acceptance span.wpcf7-list-item label a:hover {
  color: #000000;
}
.wpcf7 .wpcf7-acceptance span.wpcf7-list-item label:before {
  width: 24px;
  height: 24px;
  content: "";
  border: solid 1px #000000;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 4px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.wpcf7 .wpcf7-acceptance span.wpcf7-list-item label.ok {
  color: #000000;
}
.wpcf7 .wpcf7-acceptance span.wpcf7-list-item label.ok:before {
  border-color: var(--color-1);
  background-color: var(--color-1);
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 12px 0 0 0;
  padding: 12px;
  border: none;
  color: #fff;
  background: #b50f0f;
  text-align: center;
}
.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  background-color: #2faf0f;
}
.wpcf7 .codedropz-btn-wrap {
  text-align: center;
  padding-top: 12px;
}
.wpcf7 .codedropz-btn-wrap .cd-upload-btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  background-color: var(--color-1);
  color: #fff;
}
.wpcf7 .codedropz-btn-wrap .cd-upload-btn:hover {
  background-color: #f7f7f7;
  color: var(--color-1);
}

footer {
  display: block;
  background-color: #000000;
  padding: 12px 0;
}
footer .col-12 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 991px) {
  footer .col-12 {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
footer p,
footer a {
  font-size: 11px;
}
footer p {
  color: #fff;
}
footer a {
  color: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
footer a:hover {
  color: #fff;
}

.faq {
  margin-top: 96px;
}
@media (max-width: 1199px) {
  .faq {
    margin-top: 72px;
  }
}
@media (max-width: 991px) {
  .faq {
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  .faq {
    margin-top: 48px;
  }
}
.faq_naglowek {
  font-size: 42px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  display: inline-block;
}
.faq_naglowek::before {
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 10px;
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199px) {
  .faq_naglowek::before {
    height: 12px;
  }
}
@media (max-width: 991px) {
  .faq_naglowek::before {
    height: 9px;
  }
}
@media (max-width: 767px) {
  .faq_naglowek::before {
    height: 6px;
  }
}
@media (max-width: 1199px) {
  .faq_naglowek {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .faq_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .faq_naglowek {
    font-size: 24px;
  }
}
.faq_pytanie {
  background-color: #f7f7f7;
}
.faq_pytanie_pytanie {
  position: relative;
  font-size: 24px;
  margin-top: 24px;
  padding: 12px 64px 12px 24px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--color-1);
  cursor: pointer;
}
@media (max-width: 1199px) {
  .faq_pytanie_pytanie {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .faq_pytanie_pytanie {
    font-size: 16px;
  }
}
.faq_pytanie_pytanie::before {
  width: 12px;
  height: 3px;
  content: "";
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  background-color: var(--color-1);
}
.faq_pytanie_pytanie::after {
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 12px;
  right: 12px;
  content: "";
  display: block;
  background-image: url("../images/ico_faq_open.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (max-width: 1199px) {
  .faq_pytanie_pytanie::after {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 767px) {
  .faq_pytanie_pytanie::after {
    width: 24px;
    height: 24px;
  }
}
.faq_pytanie_pytanie_opened::after {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.faq_pytanie_odpowiedz {
  display: none;
  padding: 0 24px;
}
.faq_pytanie_odpowiedz p {
  margin-bottom: 24px;
}
.faq_pytanie_odpowiedz p,
.faq_pytanie_odpowiedz h1,
.faq_pytanie_odpowiedz h2,
.faq_pytanie_odpowiedz h3,
.faq_pytanie_odpowiedz h4,
.faq_pytanie_odpowiedz h5,
.faq_pytanie_odpowiedz ol,
.faq_pytanie_odpowiedz ul,
.faq_pytanie_odpowiedz blockquote {
  display: block;
  width: 100%;
  word-wrap: break-word;
}
.faq_pytanie_odpowiedz strong {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.faq_pytanie_odpowiedz h1,
.faq_pytanie_odpowiedz h2 {
  font-size: 42px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  display: inline-block;
  margin: 0 0 24px 0;
  width: 100%;
  display: block;
}
.faq_pytanie_odpowiedz h1::before,
.faq_pytanie_odpowiedz h2::before {
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 10px;
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199px) {
  .faq_pytanie_odpowiedz h1::before,
.faq_pytanie_odpowiedz h2::before {
    height: 12px;
  }
}
@media (max-width: 991px) {
  .faq_pytanie_odpowiedz h1::before,
.faq_pytanie_odpowiedz h2::before {
    height: 9px;
  }
}
@media (max-width: 767px) {
  .faq_pytanie_odpowiedz h1::before,
.faq_pytanie_odpowiedz h2::before {
    height: 6px;
  }
}
@media (max-width: 1199px) {
  .faq_pytanie_odpowiedz h1,
.faq_pytanie_odpowiedz h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .faq_pytanie_odpowiedz h1,
.faq_pytanie_odpowiedz h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .faq_pytanie_odpowiedz h1,
.faq_pytanie_odpowiedz h2 {
    font-size: 24px;
  }
}
.faq_pytanie_odpowiedz h1::before, .faq_pytanie_odpowiedz h1::after,
.faq_pytanie_odpowiedz h2::before,
.faq_pytanie_odpowiedz h2::after {
  display: none;
}
.faq_pytanie_odpowiedz h3 {
  font-size: 32px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .faq_pytanie_odpowiedz h3 {
    font-size: 20px;
  }
}
.faq_pytanie_odpowiedz h4 {
  font-size: 24px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .faq_pytanie_odpowiedz h4 {
    font-size: 18px;
  }
}
.faq_pytanie_odpowiedz p {
  margin: 0 0 24px 0;
}
.faq_pytanie_odpowiedz ol {
  margin: 0 0 24px 0;
}
.faq_pytanie_odpowiedz ol li {
  list-style: decimal;
  list-style-position: inside;
  margin-top: 10px;
}
.faq_pytanie_odpowiedz ol ol,
.faq_pytanie_odpowiedz ol ul {
  padding-left: 12px;
}
.faq_pytanie_odpowiedz a {
  position: relative;
  color: var(--color-1);
  word-wrap: break-word;
}
.faq_pytanie_odpowiedz a:before {
  background-color: var(--color-1);
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -2px;
  display: block;
  height: 1px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.faq_pytanie_odpowiedz a:hover:before {
  width: 0;
}
.faq_pytanie_odpowiedz ul {
  margin: 0 0 24px 0;
}
.faq_pytanie_odpowiedz ul li {
  padding: 0 0 0 12px;
  position: relative;
  margin-top: 12px;
  display: block;
}
.faq_pytanie_odpowiedz ul li:before {
  position: absolute;
  left: 0;
  top: 12px;
  background-color: var(--color-1);
  width: 4px;
  height: 4px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  content: "";
  margin: auto;
}
.faq_pytanie_odpowiedz ul li ol {
  padding-left: 12px;
}
.faq_pytanie_odpowiedz ul li ol li::before {
  display: none;
}
.faq_pytanie_odpowiedz ul li ul {
  padding-left: 15px;
}
.faq_pytanie_odpowiedz img {
  max-width: 100%;
  height: auto;
}
.faq_pytanie_odpowiedz img.aligncenter {
  clear: both;
  margin: 0 auto;
  display: block;
}
.faq_pytanie_odpowiedz img.alignleft {
  margin: 0;
  display: block;
  float: left;
}
.faq_pytanie_odpowiedz img.alignright {
  margin: 0;
  display: block;
  float: right;
}
.faq_pytanie_odpowiedz iframe {
  display: block;
  width: 100%;
  height: 600px;
}
@media (max-width: 1199px) {
  .faq_pytanie_odpowiedz iframe {
    height: 550px;
  }
}
@media (max-width: 1199px) {
  .faq_pytanie_odpowiedz iframe {
    height: 500px;
  }
}
@media (max-width: 1199px) {
  .faq_pytanie_odpowiedz iframe {
    height: 450px;
  }
}

.opinie {
  margin-top: 96px;
  padding-bottom: 32px;
}
@media (max-width: 1199px) {
  .opinie {
    margin-top: 72px;
  }
}
@media (max-width: 991px) {
  .opinie {
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  .opinie {
    margin-top: 48px;
  }
}

.hero {
  position: relative;
  padding: 160px 0 130px 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero {
    padding: 140px 0 110px 0;
  }
}
@media (max-width: 991px) {
  .hero {
    padding: 120px 0 90px 0;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 80px 0 50px 0;
  }
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero_h1 {
  font-size: 42px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  display: inline-block;
  color: #fff;
}
.hero_h1::before {
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 10px;
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199px) {
  .hero_h1::before {
    height: 12px;
  }
}
@media (max-width: 991px) {
  .hero_h1::before {
    height: 9px;
  }
}
@media (max-width: 767px) {
  .hero_h1::before {
    height: 6px;
  }
}
@media (max-width: 1199px) {
  .hero_h1 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .hero_h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .hero_h1 {
    font-size: 24px;
  }
}
.hero_h1::before {
  background-color: var(--color-1);
}
.hero_h2 {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: block;
  color: #fff;
  font-size: 24px;
  border-left: solid 2px #fff;
  line-height: 1.6;
  padding: 6px 0 6px 24px;
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .hero_h2 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .hero_h2 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero_h2 {
    font-size: 14px;
  }
}
.hero_button {
  display: inline-block;
  padding: 12px 48px 12px 24px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  background-color: #fff;
  color: var(--color-1);
  margin-top: 48px;
}
.hero_button::before, .hero_button::after {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.hero_button::before {
  background-image: url("../images/ico_arrow_white.svg");
}
.hero_button::after {
  background-image: url("../images/ico_arrow_dark.svg");
}
.hero_button::before {
  opacity: 0;
}
.hero_button::after {
  opacity: 1;
}
.hero_button:hover {
  background-color: var(--color-1);
  color: #fff;
}
.hero_button:hover::before {
  opacity: 1;
}
.hero_button:hover::after {
  opacity: 0;
}
@media (max-width: 767px) {
  .hero_button {
    margin-top: 32px;
  }
}
.hero_gradient {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--color-1));
}
.hero_karuzela {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero_karuzela .swiperhero {
  width: 100%;
  height: 100%;
}
.hero_karuzela .swiperhero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.oferta {
  z-index: 2;
  margin-top: -96px;
}
@media (max-width: 767px) {
  .oferta {
    margin-top: -80px;
  }
}
.oferta .row {
  justify-content: center;
}
.oferta_col {
  width: 20%;
  padding: 0 12px;
  margin-top: 72px;
}
@media (max-width: 1199px) {
  .oferta_col {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .oferta_col {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .oferta_col {
    width: 50%;
    margin-top: 64px;
  }
}
@media (max-width: 575px) {
  .oferta_col {
    margin-top: 48px;
  }
}
.oferta_inside {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  position: relative;
  padding: 48px 12px 49px 12px;
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  .oferta_inside {
    padding: 36px 12px 37px 12px;
  }
}
.oferta_inside::before {
  position: absolute;
  z-index: 1;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: solid 1px var(--color-1);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
}
.oferta_inside_ico {
  display: block;
  width: 72px;
  height: 72px;
  margin: auto;
  top: -36px;
  left: 0;
  right: 0;
  background-color: var(--color-1);
  z-index: 2;
  padding: 16px;
  position: absolute;
}
@media (max-width: 767px) {
  .oferta_inside_ico {
    width: 48px;
    height: 48px;
    padding: 8px;
    top: -24px;
  }
}
.oferta_inside_ico img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.oferta_inside_nazwa {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--color-1);
  margin: 0 0 12px 0;
}
@media (max-width: 767px) {
  .oferta_inside_nazwa {
    font-size: 16px;
    margin: 0 0 6px 0;
  }
}
@media (max-width: 575px) {
  .oferta_inside_nazwa {
    font-size: 14px;
    line-height: 1.2;
  }
}
.oferta_inside_wstep {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
}
@media (max-width: 575px) {
  .oferta_inside_wstep {
    font-size: 10px;
    line-height: 1.2;
  }
}
.oferta_inside_button {
  display: inline-block;
  padding: 12px 48px 12px 24px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  background-color: var(--color-1);
  color: #fff;
  width: 140px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 50px;
  text-align: center;
  height: 50px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: auto;
  z-index: 2;
}
.oferta_inside_button::before, .oferta_inside_button::after {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.oferta_inside_button::before {
  background-image: url("../images/ico_arrow_white.svg");
}
.oferta_inside_button::after {
  background-image: url("../images/ico_arrow_dark.svg");
}
.oferta_inside_button::before {
  opacity: 1;
}
.oferta_inside_button::after {
  opacity: 0;
}
.oferta_inside_button:hover {
  background-color: #f7f7f7;
  color: var(--color-1);
}
.oferta_inside_button:hover::before {
  opacity: 0;
}
.oferta_inside_button:hover::after {
  opacity: 1;
}
@media (max-width: 575px) {
  .oferta_inside_button {
    display: none;
  }
}
.oferta_inside_button::before {
  background-image: url("../images/ico_show_white.svg");
}
.oferta_inside_button::after {
  background-image: url("../images/ico_show_dark.svg");
}

.statystyki {
  margin-top: 96px;
}
@media (max-width: 1199px) {
  .statystyki {
    margin-top: 72px;
  }
}
@media (max-width: 991px) {
  .statystyki {
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  .statystyki {
    margin-top: 48px;
  }
}
.statystyki_naglowek {
  font-size: 42px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}
.statystyki_naglowek::before {
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 10px;
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199px) {
  .statystyki_naglowek::before {
    height: 12px;
  }
}
@media (max-width: 991px) {
  .statystyki_naglowek::before {
    height: 9px;
  }
}
@media (max-width: 767px) {
  .statystyki_naglowek::before {
    height: 6px;
  }
}
@media (max-width: 1199px) {
  .statystyki_naglowek {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .statystyki_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .statystyki_naglowek {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .statystyki_naglowek {
    margin-bottom: 0;
  }
}
.statystyki_margin {
  margin-top: 24px;
}
.statystyki_box {
  width: 100%;
  height: 100%;
  background-color: var(--color-1);
  position: relative;
  padding: 36px 24px 24px 24px;
  display: block;
  color: #fff;
}
.statystyki_box::before {
  position: absolute;
  z-index: 1;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: solid 1px #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
}
.statystyki_box_liczba, .statystyki_box_tekst {
  font-size: 42px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
  line-height: 1;
}
@media (max-width: 1199px) {
  .statystyki_box_liczba, .statystyki_box_tekst {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .statystyki_box_liczba, .statystyki_box_tekst {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .statystyki_box_liczba, .statystyki_box_tekst {
    font-size: 24px;
  }
}
.statystyki_box_dopisek {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  line-height: 1;
}
@media (max-width: 1199px) {
  .statystyki_box_dopisek {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .statystyki_box_dopisek {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .statystyki_box_dopisek {
    font-size: 16px;
  }
}
.statystyki_box_opis {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  position: relative;
  z-index: 2;
}
.statystyki_box_img {
  position: absolute;
  top: 24px;
  bottom: 24px;
  right: 24px;
  height: calc(100% - 48px);
  width: auto;
  display: block;
  z-index: 1;
  opacity: 0.1 !important;
}

.menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 9;
  background-color: #fff;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  border-bottom: solid 1px rgba(var(--color-1), 10%);
}
@media (max-width: 991px) {
  .menu {
    height: 80px;
  }
}
.menu_top {
  display: block;
  background-color: var(--color-1);
  color: #fff;
}
@media (max-width: 991px) {
  .menu_top {
    display: none;
  }
}
.menu_top_lista {
  padding: 0;
  align-items: center;
  height: 30px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu_top_lista p a {
  font-size: 12px;
  position: relative;
  padding-left: 24px;
  display: inline-block;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.menu_top_lista p a::before {
  content: "";
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  display: block;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.menu_top_lista p a.menu_top_lista_telefon::before {
  background-image: url("../images/ico_contact_phone_white.svg");
}
.menu_top_lista p a.menu_top_lista_mail::before {
  background-image: url("../images/ico_contact_mail_white.svg");
}
.menu_top_lista p a:hover {
  opacity: 0.5;
}
.menu_bottom {
  height: 80px;
  width: 100%;
  display: block;
}
.menu_inside {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 12px 0;
  align-items: center;
  height: 80px;
  width: 100%;
}
.menu_inside_logo {
  display: block;
  width: auto;
  height: 100%;
  position: relative;
  z-index: 2;
}
.menu_inside_logo img {
  display: block;
  width: auto;
  height: 100%;
}
.menu_inside_burger {
  position: relative;
  display: none;
  z-index: 2;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .menu_inside_burger {
    display: flex;
  }
}
.menu_inside_burger_1, .menu_inside_burger_2, .menu_inside_burger_3 {
  width: 100%;
  position: absolute;
  margin: auto;
  height: 2px;
  background-color: var(--color-1);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.menu_inside_burger_1 {
  top: 3px;
}
.menu_inside_burger_2 {
  top: 0;
  bottom: 0;
}
.menu_inside_burger_3 {
  bottom: 3px;
}
.menu_inside_burger_clicked .menu_inside_burger_1 {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 0;
  top: 0;
}
.menu_inside_burger_clicked .menu_inside_burger_2 {
  width: 0;
}
.menu_inside_burger_clicked .menu_inside_burger_3 {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
}
.menu_inside_lista {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .menu_inside_lista {
    flex-direction: column;
    background-color: #fff;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: flex-end;
    padding: 80px 24px;
  }
}
@media (max-width: 991px) {
  .menu_inside_lista_opened {
    display: flex;
  }
}
.menu_inside_lista li {
  display: block;
  margin-right: 72px;
}
@media (max-width: 1399px) {
  .menu_inside_lista li {
    margin-right: 48px;
  }
}
@media (max-width: 1199px) {
  .menu_inside_lista li {
    margin-right: 24px;
  }
}
@media (max-width: 991px) {
  .menu_inside_lista li {
    margin-right: 0;
    margin: 24px 0;
  }
}
.menu_inside_lista li:last-child {
  margin-right: 0;
}
.menu_inside_lista li a {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  color: var(--color-1);
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .menu_inside_lista li a {
    font-size: 18px;
  }
}
.menu_inside_lista li a:hover {
  opacity: 0.5;
}
.menu_inside_lista li.menu_inside_lista_element_button a {
  display: inline-block;
  padding: 12px 48px 12px 24px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  background-color: var(--color-1);
  color: #fff;
}
.menu_inside_lista li.menu_inside_lista_element_button a::before, .menu_inside_lista li.menu_inside_lista_element_button a::after {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.menu_inside_lista li.menu_inside_lista_element_button a::before {
  background-image: url("../images/ico_arrow_white.svg");
}
.menu_inside_lista li.menu_inside_lista_element_button a::after {
  background-image: url("../images/ico_arrow_dark.svg");
}
.menu_inside_lista li.menu_inside_lista_element_button a::before {
  opacity: 1;
}
.menu_inside_lista li.menu_inside_lista_element_button a::after {
  opacity: 0;
}
.menu_inside_lista li.menu_inside_lista_element_button a:hover {
  background-color: #f7f7f7;
  color: var(--color-1);
}
.menu_inside_lista li.menu_inside_lista_element_button a:hover::before {
  opacity: 0;
}
.menu_inside_lista li.menu_inside_lista_element_button a:hover::after {
  opacity: 1;
}
.menu_inside_lista li.menu_inside_lista_element_button a:hover {
  opacity: 1;
}
.menu_separator {
  height: 96px;
}
@media (max-width: 1199px) {
  .menu_separator {
    height: 72px;
  }
}
@media (max-width: 991px) {
  .menu_separator {
    height: 64px;
  }
}
@media (max-width: 767px) {
  .menu_separator {
    height: 48px;
  }
}

.grecaptcha-badge {
  z-index: 8;
}

.suwak-kwota {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: #f7f7f7;
  outline: none;
  margin: 8px 0;
  cursor: pointer;
}
.suwak-kwota::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: #f7f7f7;
}
.suwak-kwota::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-1);
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(var(--color-1), 0.25);
  margin-top: -7px;
  cursor: pointer;
}
.suwak-kwota::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: #f7f7f7;
}
.suwak-kwota::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-1);
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(var(--color-1), 0.25);
  cursor: pointer;
}
.suwak-kwota::-ms-track {
  height: 6px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.suwak-kwota::-ms-fill-lower, .suwak-kwota::-ms-fill-upper {
  background: #f7f7f7;
  border-radius: 999px;
}
.suwak-kwota::-ms-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-1);
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(var(--color-1), 0.25);
  cursor: pointer;
}

label[for=suwak-kwota] {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

#suwak-kwota-wartosc {
  font-weight: 700;
  white-space: nowrap;
  font-size: 24px;
  text-align: center;
}

.tekst .wpcf7 {
  padding: 48px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .tekst .wpcf7 {
    padding: 24px;
  }
}

.tekst.nieglowna {
  margin: 192px 0;
}
@media (max-width: 1199px) {
  .tekst.nieglowna {
    margin: 144px 0;
  }
}
@media (max-width: 991px) {
  .tekst.nieglowna {
    margin: 128px 0;
  }
}
@media (max-width: 767px) {
  .tekst.nieglowna {
    margin: 96px 0;
  }
}