@import url(./reset.css);
@import url(./bootstrap.css);
@import url(./swiper-bundle.min.css);
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  background-color: #fff;
  color: #12100B;
  position: relative;
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  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: #12100B;
}
body.block {
  overflow: hidden;
}

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

.flex_aligncenter {
  align-items: center;
}

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

.swiper {
  opacity: 0;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.swiper-initialized {
  opacity: 1;
}

/* 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: #3475e9;
  text-align: center;
  border-bottom: solid 1px #fff;
  display: none;
}
@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);
  }
}

.menu {
  display: block;
  position: fixed;
  z-index: 9;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(36, 50, 66, 0.05);
  -webkit-box-shadow: 0 2px 12px 0 rgba(36, 50, 66, 0.05);
  height: 100px;
}
@media (max-width: 991px) {
  .menu {
    height: 70px;
  }
}
.menu_separator {
  display: block;
  width: 100%;
  height: 100px;
}
@media (max-width: 991px) {
  .menu_separator {
    height: 70px;
  }
}
.menu .container,
.menu .row,
.menu .col-12 {
  height: 100%;
}
.menu_inside {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.menu_inside_logo {
  width: auto;
  height: 30px;
  display: inline-block;
}
@media (max-width: 991px) {
  .menu_inside_logo {
    height: 20px;
  }
}
.menu_inside_logo img {
  width: auto;
  display: block;
  height: 100%;
}
.menu_inside_burger {
  width: 70px;
  height: 70px;
  display: none;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .menu_inside_burger {
    display: block;
  }
}
.menu_inside_burger span {
  display: block;
  right: 0;
  margin: auto;
  width: 24px;
  height: 2px;
  background-color: #12100B;
  position: absolute;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.menu_inside_burger span:nth-child(1) {
  top: 24px;
  bottom: 44px;
}
.menu_inside_burger span:nth-child(2) {
  top: 0;
  bottom: 0;
}
.menu_inside_burger span:nth-child(3) {
  top: 44px;
  bottom: 24px;
}
.menu_inside_burger_clicked span:nth-child(1) {
  top: 0;
  bottom: 0;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu_inside_burger_clicked span:nth-child(2) {
  width: 0;
}
.menu_inside_burger_clicked span:nth-child(3) {
  top: 0;
  bottom: 0;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.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;
    align-items: flex-end;
    position: fixed;
    top: 70px;
    width: 100%;
    height: calc(100% - 70px);
    background: white;
    right: 0;
    z-index: 8;
    justify-content: flex-start;
    display: none;
    padding: 0 24px;
  }
}
@media (max-width: 991px) {
  .menu_inside_lista_opened {
    display: flex;
  }
}
.menu_inside_lista li {
  margin-right: 48px;
}
@media (max-width: 991px) {
  .menu_inside_lista li {
    margin-right: 0;
    margin-top: 24px;
  }
}
.menu_inside_lista li:last-child {
  margin-right: 0;
}
.menu_inside_lista li a {
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.menu_inside_lista li a:not(.menu_inside_lista_button):hover {
  color: #3475e9;
}
.menu_inside_lista_button {
  padding: 12px 36px;
  display: inline-block;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  text-align: center;
  color: #3475e9;
  border: solid 2px #3475e9;
}
.menu_inside_lista_button:hover {
  background-color: #3475e9;
  color: #fff;
}
@media (max-width: 991px) {
  .menu_inside_lista_button {
    padding: 8px 24px;
  }
}

.tekst_error {
  padding: 200px 0;
}
@media (max-width: 991px) {
  .tekst_error {
    padding: 100px 0;
  }
}
.tekst_error svg {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 48px auto;
}
.tekst_error a {
  padding: 12px 36px;
  display: inline-block;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  text-align: center;
  color: #3475e9;
  border: solid 2px #3475e9;
}
.tekst_error a:hover {
  background-color: #3475e9;
  color: #fff;
}
.tekst_error a:hover {
  color: #fff !important;
}
.tekst_error a::before {
  display: none !important;
}

.tekst {
  padding: 96px 0;
}
.tekst * {
  word-break: break-word;
}
.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%;
}
.tekst strong {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.tekst h1,
.tekst h2 {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .tekst h1,
.tekst h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .tekst h1,
.tekst h2 {
    font-size: 24px;
  }
}
.tekst h3 {
  font-size: 32px;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .tekst h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .tekst h3 {
    font-size: 20px;
  }
}
.tekst h4 {
  font-size: 24px;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .tekst h4 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tekst h4 {
    font-size: 16px;
  }
}
.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:not(.button_primary) {
  position: relative;
  color: #3475e9;
}
.tekst a:not(.button_primary):before {
  background-color: #3475e9;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -6px;
  display: block;
  height: 1px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.tekst a:not(.button_primary):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: #3475e9;
  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;
  }
}
@media (max-width: 1199px) {
  .tekst {
    padding: 72px 0;
  }
}
@media (max-width: 991px) {
  .tekst {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .tekst {
    padding: 56px 0;
  }
}
@media (max-width: 575px) {
  .tekst {
    padding: 48px 0;
  }
}

.stopka {
  padding: 24px 0;
}
.stopka_separator {
  width: 100%;
  height: 1px;
  background-color: #f5f5f5;
  margin: 24px 0;
}
.stopka_kolumna h3 {
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .stopka_kolumna ul {
    margin-bottom: 24px;
  }
}
.stopka_kolumna ul li {
  display: block;
  margin-top: 12px;
}
.stopka_kolumna ul li a {
  font-size: 13px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.stopka_kolumna ul li a:hover {
  color: #3475e9;
}
.stopka_kolumna_ostatnia {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100%;
}
.stopka_sociale {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .stopka_sociale {
    justify-content: center;
  }
}
.stopka_sociale li {
  display: block;
  margin-right: 24px;
}
.stopka_sociale li:last-child {
  margin-right: 0;
}
.stopka_sociale li a {
  display: block;
  width: auto;
  height: 24px;
}
.stopka_sociale li a svg {
  width: auto;
  height: 100%;
}
.stopka_sociale li a svg path {
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  opacity: 0.5;
}
.stopka_sociale li a:hover svg path {
  opacity: 1;
  fill: #3475e9;
}
.stopka_appki {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .stopka_appki {
    justify-content: center;
  }
}
.stopka_appki a {
  display: block;
  width: auto;
  height: 36px;
  margin-right: 24px;
  background-color: #f5f5f5;
  padding: 8px 12px;
  border-radius: 4px;
}
.stopka_appki a:last-child {
  margin-right: 0;
}
.stopka_appki a svg {
  width: auto;
  height: 100%;
}
.stopka_appki a svg path {
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.stopka_appki a:hover svg path {
  fill: #3475e9;
}
.stopka_copy {
  display: flex;
  font-size: 13px;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
}
.stopka_copy img {
  margin-right: 12px;
  width: 24px;
}
.stopka_copy p {
  width: calc(100% - 36px);
}
.stopka_linki {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-self: flex-end;
}
@media (max-width: 991px) {
  .stopka_linki {
    margin-top: 12px;
    justify-self: flex-start;
  }
}
.stopka_linki li {
  display: block;
  margin-left: 48px;
}
@media (max-width: 1199px) {
  .stopka_linki li {
    margin-left: 24px;
  }
}
@media (max-width: 991px) {
  .stopka_linki li {
    margin: 12px 12px 0 0;
  }
}
.stopka_linki li a {
  font-size: 13px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.stopka_linki li a:hover {
  color: #3475e9;
}

.cta {
  padding: 48px 0;
  text-align: center;
}
@media (max-width: 1199px) {
  .cta {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .cta {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .cta {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .cta {
    padding: 24px 0;
  }
}
.cta_naglowek {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  max-width: 75%;
  margin: auto;
}
@media (max-width: 1199px) {
  .cta_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .cta_naglowek {
    font-size: 24px;
  }
}
.cta_tresc {
  max-width: 75%;
  margin: 24px auto 0 auto;
  font-size: 24px;
}
@media (max-width: 1199px) {
  .cta_tresc {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .cta_tresc {
    font-size: 16px;
  }
}
.cta_button {
  margin: 24px auto 0 auto;
  padding: 12px 36px;
  display: inline-block;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  background-image: linear-gradient(to right, #11a974, #3877b8);
}
@media (max-width: 1199px) {
  .cta_button {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .cta_button {
    font-size: 16px;
  }
}
.cta_button:hover {
  opacity: 0.7;
}

.dlakogo {
  padding: 48px 0;
}
@media (max-width: 1199px) {
  .dlakogo {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .dlakogo {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .dlakogo {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .dlakogo {
    padding: 24px 0;
  }
}
.dlakogo_naglowek {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}
@media (max-width: 1199px) {
  .dlakogo_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .dlakogo_naglowek {
    font-size: 24px;
  }
}
.dlakogo_lista {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.dlakogo_lista li {
  padding: 24px 36px;
  position: relative;
  display: block;
  text-align: center;
  box-sizing: border-box;
  width: 20%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .dlakogo_lista li {
    padding: 12px;
  }
}
.dlakogo_lista li::before {
  z-index: -1;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  top: 12px;
  left: 12px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  content: "";
  position: absolute;
}
@media (max-width: 767px) {
  .dlakogo_lista li::before {
    height: 100%;
    top: 0;
  }
}
.dlakogo_lista li img {
  margin: 12px auto;
  width: auto;
  height: 64px;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .dlakogo_lista li img {
    height: 48px;
  }
}
.dlakogo_lista li h3 {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .dlakogo_lista li h3 {
    font-size: 18px;
  }
}
.dlakogo_lista li p {
  opacity: 0.75;
}
@media (max-width: 1199px) {
  .dlakogo_lista li {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .dlakogo_lista li {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .dlakogo_lista li {
    width: 100%;
  }
}

.dlaczego {
  padding: 48px 0;
}
@media (max-width: 1199px) {
  .dlaczego {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .dlaczego {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .dlaczego {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .dlaczego {
    padding: 24px 0;
  }
}
.dlaczego_naglowek {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}
@media (max-width: 1199px) {
  .dlaczego_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .dlaczego_naglowek {
    font-size: 24px;
  }
}
.dlaczego_lista {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.dlaczego_lista li {
  padding: 24px 36px;
  position: relative;
  display: block;
  text-align: center;
  box-sizing: border-box;
  margin-top: 24px;
  width: 25%;
}
@media (max-width: 767px) {
  .dlaczego_lista li {
    padding: 12px;
  }
}
.dlaczego_lista li::before {
  z-index: -1;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  top: 12px;
  left: 12px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  content: "";
  position: absolute;
}
@media (max-width: 767px) {
  .dlaczego_lista li::before {
    height: 100%;
    top: 0;
  }
}
.dlaczego_lista li img {
  margin: 12px auto;
  width: auto;
  height: 64px;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .dlaczego_lista li img {
    height: 48px;
  }
}
.dlaczego_lista li h3 {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .dlaczego_lista li h3 {
    font-size: 18px;
  }
}
.dlaczego_lista li p {
  opacity: 0.75;
}
@media (max-width: 1199px) {
  .dlaczego_lista li {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .dlaczego_lista li {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .dlaczego_lista li {
    width: 100%;
  }
}

.kontakt {
  padding: 48px 0;
  background-color: #12100B;
  color: #fff;
  text-align: center;
}
@media (max-width: 1199px) {
  .kontakt {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .kontakt {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .kontakt {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .kontakt {
    padding: 24px 0;
  }
}
.kontakt_tresc h2 {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #df8eaa;
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .kontakt_tresc h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .kontakt_tresc h2 {
    font-size: 24px;
  }
}
.kontakt_tresc p {
  font-size: 24px;
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .kontakt_tresc p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .kontakt_tresc p {
    font-size: 16px;
  }
}
.kontakt_cta {
  margin-top: 24px;
}
.kontakt_cta_button {
  padding: 12px 36px;
  display: inline-block;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  text-align: center;
  color: #fff;
  border: solid 2px #fff;
}
.kontakt_cta_button:hover {
  background-color: #df8eaa;
  border: solid 2px #df8eaa;
  color: #fff;
}
.kontakt .wpcf7 {
  text-align: left;
  max-width: 600px;
  margin: 24px auto;
}
.kontakt .wpcf7-form {
  position: relative;
}
.kontakt .wpcf7 label p {
  font-size: 15px;
  margin-bottom: 6px;
  padding-left: 12px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.kontakt .wpcf7 .formularz_blok {
  width: 100%;
  display: block;
}
.kontakt .wpcf7 input:not(.wpcf7-submit),
.kontakt .wpcf7 textarea:not(.wpcf7-submit),
.kontakt .wpcf7 select:not(.wpcf7-submit) {
  margin: 0 0 12px 0;
  display: block;
  background-color: #fff;
  border: none;
  height: 50px;
  line-height: 50px;
  position: relative;
  width: 100%;
  font-size: 16px;
  color: #12100B;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  padding: 0 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  resize: none;
  box-sizing: border-box;
}
.kontakt .wpcf7 input::-webkit-input-placeholder,
.kontakt .wpcf7 textarea::-webkit-input-placeholder,
.kontakt .wpcf7 select::-webkit-input-placeholder {
  color: #12100B;
  opacity: 0.5;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.kontakt .wpcf7 input::-webkit-input-placeholder,
.kontakt .wpcf7 textarea::-webkit-input-placeholder,
.kontakt .wpcf7 select::-webkit-input-placeholder {
  color: #12100B;
  opacity: 0.5;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.kontakt .wpcf7 input::-moz-placeholder,
.kontakt .wpcf7 textarea::-moz-placeholder,
.kontakt .wpcf7 select::-moz-placeholder {
  color: #12100B;
  opacity: 0.5;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.kontakt .wpcf7 input:-ms-input-placeholder,
.kontakt .wpcf7 textarea:-ms-input-placeholder,
.kontakt .wpcf7 select:-ms-input-placeholder {
  color: #12100B;
  opacity: 0.5;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.kontakt .wpcf7 input:-webkit-autofill,
.kontakt .wpcf7 textarea:-webkit-autofill,
.kontakt .wpcf7 select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}
.kontakt .wpcf7 input:focus::-webkit-input-placeholder,
.kontakt .wpcf7 textarea:focus::-webkit-input-placeholder,
.kontakt .wpcf7 select:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.kontakt .wpcf7 input:focus:-moz-placeholder,
.kontakt .wpcf7 textarea:focus:-moz-placeholder,
.kontakt .wpcf7 select:focus:-moz-placeholder {
  opacity: 0;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.kontakt .wpcf7 input:focus::-moz-placeholder,
.kontakt .wpcf7 textarea:focus::-moz-placeholder,
.kontakt .wpcf7 select:focus::-moz-placeholder {
  opacity: 0;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.kontakt .wpcf7 input:focus:-ms-input-placeholder,
.kontakt .wpcf7 textarea:focus:-ms-input-placeholder,
.kontakt .wpcf7 select:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.kontakt .wpcf7 input.wpcf7-submit,
.kontakt .wpcf7 textarea.wpcf7-submit,
.kontakt .wpcf7 select.wpcf7-submit {
  padding: 12px 36px;
  display: inline-block;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  text-align: center;
  background-color: #df8eaa;
  color: #fff;
  font-size: 20px;
  width: 100%;
  border: 0;
  padding: 12px 24px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 1199px) {
  .kontakt .wpcf7 input.wpcf7-submit,
.kontakt .wpcf7 textarea.wpcf7-submit,
.kontakt .wpcf7 select.wpcf7-submit {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .kontakt .wpcf7 input.wpcf7-submit,
.kontakt .wpcf7 textarea.wpcf7-submit,
.kontakt .wpcf7 select.wpcf7-submit {
    font-size: 16px;
  }
}
.kontakt .wpcf7 input.wpcf7-submit:disabled,
.kontakt .wpcf7 textarea.wpcf7-submit:disabled,
.kontakt .wpcf7 select.wpcf7-submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.kontakt .wpcf7 input.wpcf7-not-valid,
.kontakt .wpcf7 textarea.wpcf7-not-valid,
.kontakt .wpcf7 select.wpcf7-not-valid {
  color: #c71a1a;
  border-color: #c71a1a;
}
.kontakt .wpcf7 .wpcf7-not-valid-tip {
  color: #c71a1a;
  font-size: 10px;
  line-height: 16px;
  margin: 0;
  text-align: left;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 24px;
}
.kontakt .wpcf7 textarea:not(.wpcf7-submit) {
  display: block;
  height: 60px;
  padding: 12px 0;
  line-height: 1.7;
}
.kontakt .wpcf7 .wpcf7-spinner {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  background-color: #df8eaa;
  opacity: 0.8;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  height: 100%;
  border-radius: 0;
  margin: 0;
}
.kontakt .wpcf7 .wpcf7-spinner::before {
  display: none;
}
.kontakt .wpcf7 br {
  display: none !important;
}
.kontakt .wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.kontakt .wpcf7 .wpcf7-acceptance {
  display: block;
}
.kontakt .wpcf7 .wpcf7-acceptance span.wpcf7-list-item {
  margin: 12px 0 24px 0 !important;
  cursor: pointer;
}
@media (max-width: 767px) {
  .kontakt .wpcf7 .wpcf7-acceptance span.wpcf7-list-item {
    margin: 0 0 12px 0 !important;
  }
}
.kontakt .wpcf7 .wpcf7-acceptance span.wpcf7-list-item input {
  display: none;
}
@media (max-width: 991px) {
  .kontakt .wpcf7 .wpcf7-acceptance span.wpcf7-list-item {
    text-align: left;
  }
}
.kontakt .wpcf7 .wpcf7-acceptance span.wpcf7-list-item label {
  padding: 0 0 0 32px;
  display: block;
  float: right;
  font-size: 12px;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
  color: #fff;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.kontakt .wpcf7 .wpcf7-acceptance span.wpcf7-list-item label:before {
  width: 16px;
  height: 16px;
  content: "";
  border: solid 1px #fff;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 4px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.kontakt .wpcf7 .wpcf7-acceptance span.wpcf7-list-item label.ok {
  color: #fff;
}
.kontakt .wpcf7 .wpcf7-acceptance span.wpcf7-list-item label.ok:before {
  border-color: #df8eaa;
  background-color: #df8eaa;
}
.kontakt .wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 12px 0 0 0;
  padding: 12px;
  border: none;
  color: #fff;
  background: #c71a1a;
  text-align: center;
}
.kontakt .wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  background-color: #14a57a;
}

.wyniki {
  padding: 48px 0;
  background-color: #12100B;
  color: #fff;
  text-align: center;
}
@media (max-width: 1199px) {
  .wyniki {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .wyniki {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .wyniki {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .wyniki {
    padding: 24px 0;
  }
}
.wyniki_naglowek {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .wyniki_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .wyniki_naglowek {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .wyniki_naglowek {
    margin-bottom: 0;
  }
}
.wyniki_liczba {
  display: block;
  text-align: center;
  margin-top: 24px;
}
.wyniki_liczba_liczba {
  color: #df8eaa;
  font-size: 64px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .wyniki_liczba_liczba {
    font-size: 48px;
  }
}
.wyniki_liczba_tresc {
  font-size: 20px;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .wyniki_liczba_tresc {
    font-size: 16px;
    margin-top: 6px;
  }
}

.opinie {
  padding: 48px 0;
}
@media (max-width: 1199px) {
  .opinie {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .opinie {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .opinie {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .opinie {
    padding: 24px 0;
  }
}
.opinie_naglowek {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 1199px) {
  .opinie_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .opinie_naglowek {
    font-size: 24px;
  }
}
.opinie .swiper-slide {
  height: auto;
  padding: 12px;
}
.opinie .opinie_opinia {
  display: block;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  padding: 24px;
  height: 100%;
  position: relative;
  padding-bottom: 48px;
}
.opinie .opinie_opinia_autor {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.opinie .opinie_opinia_autor img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .opinie .opinie_opinia_autor img {
    width: 24px;
    height: 24px;
  }
}
.opinie .opinie_opinia_autor span {
  font-size: 24px;
  text-align: left;
}
@media (max-width: 767px) {
  .opinie .opinie_opinia_autor span {
    font-size: 20px;
  }
}
.opinie .opinie_opinia_opinia {
  padding: 24px 0 0 0;
}
.opinie .opinie_opinia_opinia p {
  margin-bottom: 12px;
}
.opinie .opinie_opinia_zrodlo {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: right;
  margin-top: 12px;
  display: none;
}
.opinie .opinie_opinia_gwiazdki {
  display: block;
  width: auto;
  height: 16px;
  left: 0;
  right: 0;
  bottom: 24px;
  margin: auto;
  position: absolute;
}

.faq {
  padding: 48px 0;
}
@media (max-width: 1199px) {
  .faq {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .faq {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .faq {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .faq {
    padding: 24px 0;
  }
}
.faq_naglowek {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 1199px) {
  .faq_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .faq_naglowek {
    font-size: 24px;
  }
}
.faq_tekst {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 1199px) {
  .faq_tekst {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .faq_tekst {
    font-size: 16px;
  }
}
.faq_box {
  margin-top: 24px;
  padding: 12px 24px;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
}
@media (max-width: 767px) {
  .faq_box {
    padding: 12px;
  }
}
.faq_box_pytanie {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  cursor: pointer;
  position: relative;
  padding-right: 48px;
}
@media (max-width: 767px) {
  .faq_box_pytanie {
    padding-right: 36px;
    font-size: 16px;
  }
}
.faq_box_pytanie::before, .faq_box_pytanie::after {
  width: 20px;
  height: 2px;
  background-color: #3475e9;
  content: "";
  top: 24px;
  display: block;
  position: absolute;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
@media (max-width: 767px) {
  .faq_box_pytanie::before, .faq_box_pytanie::after {
    width: 14px;
    top: 12px;
  }
}
.faq_box_pytanie::before {
  right: 0;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.faq_box_pytanie::after {
  right: 13px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .faq_box_pytanie::after {
    right: 9px;
  }
}
.faq_box_pytanie_active::before {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.faq_box_pytanie_active::after {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 1199px) {
  .faq_box_pytanie {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .faq_box_pytanie {
    font-size: 16px;
  }
}
.faq_box_odpowiedz {
  display: none;
  padding-top: 12px;
}
.faq_box_odpowiedz p, .faq_box_odpowiedz h3, .faq_box_odpowiedz h4, .faq_box_odpowiedz li {
  margin-bottom: 12px;
}
.faq_box_odpowiedz h3 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.faq_box_odpowiedz ul li {
  padding-left: 16px;
  position: relative;
}
.faq_box_odpowiedz ul li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-color: #3475e9;
  top: 10px;
  left: 0;
  position: absolute;
  content: "";
}
.faq_box_odpowiedz ol li {
  list-style-type: decimal;
  list-style-position: inside;
}

.kroki {
  padding: 48px 0;
  text-align: center;
}
@media (max-width: 1199px) {
  .kroki {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .kroki {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .kroki {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .kroki {
    padding: 24px 0;
  }
}
.kroki_naglowek {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  max-width: 75%;
  margin: auto;
}
@media (max-width: 1199px) {
  .kroki_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .kroki_naglowek {
    font-size: 24px;
  }
}
.kroki_krok {
  padding: 24px 0;
  text-align: center;
}
.kroki_krok_numer {
  width: 96px;
  height: 96px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  font-size: 48px;
  line-height: 96px;
  text-align: center;
  display: block;
  color: #fff;
  background-color: #df8eaa;
  margin: auto;
}
@media (max-width: 991px) {
  .kroki_krok_numer {
    width: 72px;
    height: 72px;
    font-size: 36px;
    line-height: 72px;
  }
}
@media (max-width: 767px) {
  .kroki_krok_numer {
    width: 64px;
    height: 64px;
    font-size: 32px;
    line-height: 64px;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .kroki_krok_numer {
    width: 48px;
    height: 48px;
    font-size: 24px;
    line-height: 48px;
  }
}
.kroki_krok_tresc {
  display: inline-block;
  text-align: left;
}
@media (max-width: 767px) {
  .kroki_krok_tresc {
    text-align: center;
  }
}
.kroki_krok_tresc h3 {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 24px 0 12px 0;
}
@media (max-width: 767px) {
  .kroki_krok_tresc h3 {
    margin: 12px 0 0 0;
  }
}
@media (max-width: 767px) {
  .kroki_krok_tresc ul {
    display: inline-block;
  }
}
.kroki_krok_tresc ul li {
  position: relative;
  margin-top: 12px;
  display: block;
  padding-left: 36px;
}
@media (max-width: 767px) {
  .kroki_krok_tresc ul li {
    text-align: left;
  }
}
.kroki_krok_tresc ul li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 24px;
  height: 24px;
  top: 0;
  background-image: url("../images/ico_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.kroki_cta {
  margin: 24px auto 0 auto;
  padding: 12px 36px;
  display: inline-block;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  background-image: linear-gradient(to right, #11a974, #3877b8);
}
@media (max-width: 1199px) {
  .kroki_cta {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .kroki_cta {
    font-size: 16px;
  }
}
.kroki_cta:hover {
  opacity: 0.7;
}

.hero {
  position: relative;
  padding: 96px 0;
}
@media (max-width: 1199px) {
  .hero {
    padding: 72px 0;
  }
}
@media (max-width: 991px) {
  .hero {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 56px 0;
  }
}
@media (max-width: 575px) {
  .hero {
    padding: 48px 0;
  }
}
.hero::before {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background-image: linear-gradient(to right, rgba(250, 247, 245, 0.9) 60%, rgba(250, 247, 245, 0) 100%);
}
.hero .container {
  z-index: 3;
  position: relative;
}
.hero_foto {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  z-index: 1;
}
.hero_tresc_1 p strong {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #14a57a;
}
.hero_tresc_1 h2 {
  margin-bottom: 48px;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 767px) {
  .hero_tresc_1 h2 {
    margin-bottom: 24px;
  }
}
.hero_tresc_1 h1 {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 1199px) {
  .hero_tresc_1 h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .hero_tresc_1 h1 {
    font-size: 24px;
  }
}
.hero_cta {
  padding: 12px 36px;
  display: inline-block;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  background-image: linear-gradient(to right, #11a974, #3877b8);
  margin-top: 12px;
}
@media (max-width: 1199px) {
  .hero_cta {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .hero_cta {
    font-size: 16px;
  }
}
.hero_cta:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .hero_tresc_2 ul {
    display: inline-block;
  }
}
.hero_tresc_2 ul li {
  position: relative;
  margin-top: 12px;
  display: block;
  padding-left: 36px;
}
@media (max-width: 767px) {
  .hero_tresc_2 ul li {
    text-align: left;
  }
}
.hero_tresc_2 ul li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 24px;
  height: 24px;
  top: 0;
  background-image: url("../images/ico_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.grafikatekst {
  padding: 48px 0;
  background-color: #faf7f5;
}
@media (max-width: 1199px) {
  .grafikatekst {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .grafikatekst {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .grafikatekst {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .grafikatekst {
    padding: 24px 0;
  }
}
.grafikatekst_naglowek {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  max-width: 75%;
  margin: auto;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .grafikatekst_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .grafikatekst_naglowek {
    font-size: 24px;
  }
}
.grafikatekst_grafika {
  width: 100%;
  height: 100%;
}
.grafikatekst_grafika img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grafikatekst_box {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .grafikatekst_box {
    margin-top: 24px;
  }
}
.grafikatekst_box h3 {
  font-size: 24px;
}
@media (max-width: 991px) {
  .grafikatekst_box h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .grafikatekst .flex_aligncenter {
    flex-direction: column-reverse;
  }
}

.cennik {
  padding: 48px 0;
}
@media (max-width: 1199px) {
  .cennik {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .cennik {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .cennik {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .cennik {
    padding: 24px 0;
  }
}
.cennik_naglowek {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 1199px) {
  .cennik_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .cennik_naglowek {
    font-size: 24px;
  }
}
.cennik_wstep {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 1199px) {
  .cennik_wstep {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .cennik_wstep {
    font-size: 16px;
  }
}
.cennik_box {
  margin-top: 24px;
  text-align: center;
  padding-top: 40px;
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .cennik_box {
    height: auto;
    padding-top: 0;
  }
}
.cennik_box_wyroznienie {
  display: inline-block;
  background-color: #12100B;
  color: #fff;
  padding: 0 12px;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 70%;
}
@media (max-width: 767px) {
  .cennik_box_wyroznienie {
    max-width: unset;
    left: auto;
    right: auto;
    top: auto;
    position: relative;
  }
}
.cennik_box_inside {
  display: block;
  border: solid 1px rgba(18, 16, 11, 0.5);
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .cennik_box_inside {
    height: auto;
  }
}
.cennik_box_inside_wyrozniony {
  border-color: #12100B;
  background-color: #fafafa;
}
.cennik_box_inside_wyrozniony .cennik_box_inside_body {
  border-color: #12100B;
}
.cennik_box_inside_head {
  padding: 24px;
}
.cennik_box_inside_head h3 {
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .cennik_box_inside_head h3 {
    font-size: 20px;
  }
}
.cennik_box_inside_head h4 {
  font-size: 48px;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .cennik_box_inside_head h4 {
    font-size: 32px;
  }
}
.cennik_box_inside_head p {
  font-size: 18px;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .cennik_box_inside_head p {
    font-size: 15px;
  }
}
.cennik_box_inside_head img {
  display: block;
  width: 64px;
  height: auto;
  margin: 12px auto 0 auto;
}
@media (max-width: 575px) {
  .cennik_box_inside_head img {
    width: 48px;
  }
}
.cennik_box_inside_body {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: solid 1px rgba(18, 16, 11, 0.2);
  padding: 12px;
}
.cennik_box_inside_body_indyw {
  height: calc(100% - 152px);
}
@media (max-width: 767px) {
  .cennik_box_inside_body_indyw {
    height: auto;
    padding: 48px 0;
  }
}
.cennik_box_inside_body_indywidualny {
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.cennik_box_inside_body_indywidualny p {
  margin: 12px;
}
.cennik_box_inside_body_indywidualny_cta {
  padding: 12px 36px;
  display: inline-block;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(to right, #11a974, #3877b8);
}
.cennik_box_inside_body_indywidualny_cta:hover {
  opacity: 0.7;
}
.cennik_box_inside_body ul li {
  padding-left: 32px;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 12px;
  text-align: left;
}
.cennik_box_inside_body ul li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 24px;
  height: 24px;
  top: 0;
  background-image: url("../images/ico_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.cennik_box_inside_body ul li p {
  text-align: left;
}
.cennik_box_inside_body ul li img {
  width: 24px;
  height: auto;
  display: inline-block;
  margin-left: 6px;
}
.cennik_box_inside_body ul li span {
  display: block;
  width: 100%;
  opacity: 0.5;
  font-style: italic;
  text-align: left;
}
.cennik_box_inside_body ul li.niedostepny p, .cennik_box_inside_body ul li.niedostepny img {
  opacity: 0.5;
}
.cennik_box_inside_body ul li.niedostepny::before {
  background-image: url("../images/ico_false.svg");
  background-size: 12px auto;
  background-position: center;
}

.kluczowe {
  padding: 48px 0;
  background-color: #faf7f5;
}
@media (max-width: 1199px) {
  .kluczowe {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .kluczowe {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .kluczowe {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .kluczowe {
    padding: 24px 0;
  }
}
.kluczowe_naglowek {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  max-width: 75%;
  margin: auto;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .kluczowe_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .kluczowe_naglowek {
    font-size: 24px;
  }
}
.kluczowe_karuzela {
  display: block;
  position: relative;
  padding: 0 96px;
}
@media (max-width: 767px) {
  .kluczowe_karuzela {
    padding: 0 48px;
  }
}
.kluczowe .swiper_kluczowe_next, .kluczowe .swiper_kluczowe_prev {
  display: block;
  width: 36px;
  height: 36px;
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
@media (max-width: 767px) {
  .kluczowe .swiper_kluczowe_next, .kluczowe .swiper_kluczowe_prev {
    width: 24px;
    height: 24px;
  }
}
.kluczowe .swiper_kluczowe_next::before, .kluczowe .swiper_kluczowe_next::after, .kluczowe .swiper_kluczowe_prev::before, .kluczowe .swiper_kluczowe_prev::after {
  display: block;
  width: 36px;
  height: 2px;
  content: "";
  background-color: #3475e9;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
@media (max-width: 767px) {
  .kluczowe .swiper_kluczowe_next::before, .kluczowe .swiper_kluczowe_next::after, .kluczowe .swiper_kluczowe_prev::before, .kluczowe .swiper_kluczowe_prev::after {
    width: 24px;
  }
}
.kluczowe .swiper_kluczowe_next:hover::before, .kluczowe .swiper_kluczowe_next:hover::after, .kluczowe .swiper_kluczowe_prev:hover::before, .kluczowe .swiper_kluczowe_prev:hover::after {
  background-color: #df8eaa;
}
.kluczowe .swiper_kluczowe_prev {
  left: 0;
}
.kluczowe .swiper_kluczowe_prev::before {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -24px;
}
@media (max-width: 767px) {
  .kluczowe .swiper_kluczowe_prev::before {
    top: -16px;
  }
}
.kluczowe .swiper_kluczowe_prev::after {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 24px;
}
@media (max-width: 767px) {
  .kluczowe .swiper_kluczowe_prev::after {
    top: 16px;
  }
}
.kluczowe .swiper_kluczowe_next {
  right: 0;
}
.kluczowe .swiper_kluczowe_next::before {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -24px;
}
@media (max-width: 767px) {
  .kluczowe .swiper_kluczowe_next::before {
    top: -16px;
  }
}
.kluczowe .swiper_kluczowe_next::after {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 24px;
}
@media (max-width: 767px) {
  .kluczowe .swiper_kluczowe_next::after {
    top: 16px;
  }
}
.kluczowe_box {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}
.kluczowe_box_inside {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(36, 50, 66, 0.05);
  -webkit-box-shadow: 0 2px 12px 0 rgba(36, 50, 66, 0.05);
  padding: 12px;
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 2;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border: solid 2px #3475e9;
}
@media (max-width: 767px) {
  .kluczowe_box_inside {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
  }
}
.kluczowe_box_inside h3 {
  display: block;
  width: 100%;
  font-size: 20px;
}
@media (max-width: 991px) {
  .kluczowe_box_inside h3 {
    font-size: 18px;
  }
}
.kluczowe_box_inside_ikona {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.kluczowe_box_inside_ikona img {
  width: 64px;
  margin: auto;
}
.kluczowe_box_inside_tresc {
  width: 70%;
}
.kluczowe_box_inside_tresc ul li {
  position: relative;
  margin-top: 6px;
  display: block;
  padding-left: 32px;
}
@media (max-width: 767px) {
  .kluczowe_box_inside_tresc ul li {
    text-align: left;
  }
}
.kluczowe_box_inside_tresc ul li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  top: 0;
  background-image: url("../images/ico_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.kluczowe_box_screen {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
}

.mozliwosci {
  padding: 48px 0;
  background-color: #fafafa;
}
@media (max-width: 1199px) {
  .mozliwosci {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .mozliwosci {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .mozliwosci {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .mozliwosci {
    padding: 24px 0;
  }
}
.mozliwosci_naglowek {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 1199px) {
  .mozliwosci_naglowek {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .mozliwosci_naglowek {
    font-size: 24px;
  }
}
.mozliwosci_tekst {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 1199px) {
  .mozliwosci_tekst {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .mozliwosci_tekst {
    font-size: 16px;
  }
}
.mozliwosci_lista {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.mozliwosci_lista .mozliwosci_menu {
  margin: 6px;
  display: block;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  padding: 6px 12px;
  background-color: #fff;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.mozliwosci_lista .mozliwosci_menu_current, .mozliwosci_lista .mozliwosci_menu:hover {
  background-color: #3475e9;
  color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0);
}
.mozliwosci_element {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 850px;
  margin: 24px auto 0 auto;
  background-color: #fff;
}
.mozliwosci_element_tresc {
  width: 75%;
  display: block;
  padding: 24px;
}
.mozliwosci_element_tresc h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.mozliwosci_element_tresc ul li {
  position: relative;
  margin-top: 8px;
  display: block;
  padding-left: 36px;
}
@media (max-width: 767px) {
  .mozliwosci_element_tresc ul li {
    text-align: left;
  }
}
.mozliwosci_element_tresc ul li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 24px;
  height: 24px;
  top: 0;
  background-image: url("../images/ico_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.mozliwosci_element_ikona {
  width: 25%;
  background-color: #3475e9;
  object-fit: cover;
  display: block;
  position: relative;
  border-radius: 24px 0 0 24px;
}
.mozliwosci_element_ikona img {
  display: block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.mozliwosci_element_current {
  display: flex;
}

.tekst_grafikalewo,
.tekst_grafikaprawo {
  padding: 48px 0;
  background-color: #faf7f5;
}
@media (max-width: 1199px) {
  .tekst_grafikalewo,
.tekst_grafikaprawo {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .tekst_grafikalewo,
.tekst_grafikaprawo {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .tekst_grafikalewo,
.tekst_grafikaprawo {
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .tekst_grafikalewo,
.tekst_grafikaprawo {
    padding: 24px 0;
  }
}
.tekst_grafikalewo_box *,
.tekst_grafikaprawo_box * {
  word-break: break-word;
}
.tekst_grafikalewo_box p,
.tekst_grafikaprawo_box p {
  margin-bottom: 24px;
}
.tekst_grafikalewo_box p,
.tekst_grafikalewo_box h1,
.tekst_grafikalewo_box h2,
.tekst_grafikalewo_box h3,
.tekst_grafikalewo_box h4,
.tekst_grafikalewo_box h5,
.tekst_grafikalewo_box ol,
.tekst_grafikalewo_box ul,
.tekst_grafikalewo_box blockquote,
.tekst_grafikaprawo_box p,
.tekst_grafikaprawo_box h1,
.tekst_grafikaprawo_box h2,
.tekst_grafikaprawo_box h3,
.tekst_grafikaprawo_box h4,
.tekst_grafikaprawo_box h5,
.tekst_grafikaprawo_box ol,
.tekst_grafikaprawo_box ul,
.tekst_grafikaprawo_box blockquote {
  display: block;
  width: 100%;
}
.tekst_grafikalewo_box strong,
.tekst_grafikaprawo_box strong {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.tekst_grafikalewo_box h1,
.tekst_grafikalewo_box h2,
.tekst_grafikaprawo_box h1,
.tekst_grafikaprawo_box h2 {
  font-size: 42px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .tekst_grafikalewo_box h1,
.tekst_grafikalewo_box h2,
.tekst_grafikaprawo_box h1,
.tekst_grafikaprawo_box h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .tekst_grafikalewo_box h1,
.tekst_grafikalewo_box h2,
.tekst_grafikaprawo_box h1,
.tekst_grafikaprawo_box h2 {
    font-size: 24px;
  }
}
.tekst_grafikalewo_box h3,
.tekst_grafikaprawo_box h3 {
  font-size: 32px;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .tekst_grafikalewo_box h3,
.tekst_grafikaprawo_box h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .tekst_grafikalewo_box h3,
.tekst_grafikaprawo_box h3 {
    font-size: 20px;
  }
}
.tekst_grafikalewo_box h4,
.tekst_grafikaprawo_box h4 {
  font-size: 24px;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 24px 0;
}
@media (max-width: 1199px) {
  .tekst_grafikalewo_box h4,
.tekst_grafikaprawo_box h4 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tekst_grafikalewo_box h4,
.tekst_grafikaprawo_box h4 {
    font-size: 16px;
  }
}
.tekst_grafikalewo_box p,
.tekst_grafikaprawo_box p {
  margin: 0 0 24px 0;
}
.tekst_grafikalewo_box ol,
.tekst_grafikaprawo_box ol {
  margin: 0 0 24px 0;
}
.tekst_grafikalewo_box ol li,
.tekst_grafikaprawo_box ol li {
  list-style: decimal;
  list-style-position: inside;
  margin-top: 10px;
}
.tekst_grafikalewo_box ol ol,
.tekst_grafikalewo_box ol ul,
.tekst_grafikaprawo_box ol ol,
.tekst_grafikaprawo_box ol ul {
  padding-left: 12px;
}
.tekst_grafikalewo_box a:not(.button_primary),
.tekst_grafikaprawo_box a:not(.button_primary) {
  position: relative;
  color: #3475e9;
}
.tekst_grafikalewo_box a:not(.button_primary):before,
.tekst_grafikaprawo_box a:not(.button_primary):before {
  background-color: #3475e9;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -6px;
  display: block;
  height: 1px;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.tekst_grafikalewo_box a:not(.button_primary):hover:before,
.tekst_grafikaprawo_box a:not(.button_primary):hover:before {
  width: 0;
}
.tekst_grafikalewo_box ul,
.tekst_grafikaprawo_box ul {
  margin: 0 0 24px 0;
}
.tekst_grafikalewo_box ul li,
.tekst_grafikaprawo_box ul li {
  padding: 0 0 0 12px;
  position: relative;
  margin-top: 12px;
  display: block;
}
.tekst_grafikalewo_box ul li:before,
.tekst_grafikaprawo_box ul li:before {
  position: absolute;
  left: 0;
  top: 12px;
  background-color: #3475e9;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  content: "";
  margin: auto;
}
.tekst_grafikalewo_box ul li ol,
.tekst_grafikaprawo_box ul li ol {
  padding-left: 12px;
}
.tekst_grafikalewo_box ul li ol li::before,
.tekst_grafikaprawo_box ul li ol li::before {
  display: none;
}
.tekst_grafikalewo_box ul li ul,
.tekst_grafikaprawo_box ul li ul {
  padding-left: 15px;
}
.tekst_grafikalewo_box img,
.tekst_grafikaprawo_box img {
  max-width: 100%;
  height: auto;
}
.tekst_grafikalewo_box img.aligncenter,
.tekst_grafikaprawo_box img.aligncenter {
  clear: both;
  margin: 0 auto;
  display: block;
}
.tekst_grafikalewo_box img.alignleft,
.tekst_grafikaprawo_box img.alignleft {
  margin: 0;
  display: block;
  float: left;
}
.tekst_grafikalewo_box img.alignright,
.tekst_grafikaprawo_box img.alignright {
  margin: 0;
  display: block;
  float: right;
}
.tekst_grafikalewo_box iframe,
.tekst_grafikaprawo_box iframe {
  display: block;
  width: 100%;
  height: 600px;
}
@media (max-width: 1199px) {
  .tekst_grafikalewo_box iframe,
.tekst_grafikaprawo_box iframe {
    height: 550px;
  }
}
@media (max-width: 1199px) {
  .tekst_grafikalewo_box iframe,
.tekst_grafikaprawo_box iframe {
    height: 500px;
  }
}
@media (max-width: 1199px) {
  .tekst_grafikalewo_box iframe,
.tekst_grafikaprawo_box iframe {
    height: 450px;
  }
}
.tekst_grafikalewo_grafika,
.tekst_grafikaprawo_grafika {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .tekst_grafikalewo_grafika,
.tekst_grafikaprawo_grafika {
    height: auto;
  }
}
.tekst_grafikalewo_grafika img,
.tekst_grafikaprawo_grafika img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .tekst_grafikalewo_grafika img,
.tekst_grafikaprawo_grafika img {
    height: auto;
    object-fit: unset;
  }
}

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