@charset "UTF-8";
/* SASS and Global'ish Stuff */
@font-face {
  font-family: "OpenSans";
  src: url("../../fonts/Opensans/static/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../../fonts/Opensans/static/OpenSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: "OpenSans", sans-serif;
}

h2 {
  color: #135AAA;
}

.main-button {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 34px;
  border: 2px solid #135AAA;
  background: #135AAA;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.main-button:hover, .main-button:focus-visible {
  background: #fff;
  color: #135AAA;
  border-color: #135AAA;
}

.back-to-top {
  --size: 56px;
  --ring-w: 4px;
  position: fixed;
  right: 16px;
  bottom: max(90px, env(safe-area-inset-bottom, 0) + 8px);
  inline-size: var(--size);
  aspect-ratio: 1/1; /* trzyma idealne koło na mobile */
  box-sizing: border-box;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  /* SVG ring zawsze wypełnia przycisk */
  /* strzałka wycentrowana nad ringiem */
}
.back-to-top:hover, .back-to-top:focus-visible {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.back-to-top .progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* start od 12:00 */
  transform-origin: 50% 50%;
}
.back-to-top .progress-ring .ring-bg {
  fill: none;
  stroke: rgba(19, 90, 170, 0.18);
  stroke-width: var(--ring-w);
}
.back-to-top .progress-ring .ring-progress {
  fill: none;
  stroke: #135AAA;
  stroke-width: var(--ring-w);
  stroke-linecap: round;
  stroke-dasharray: 0 1; /* JS nadpisze */
  stroke-dashoffset: 0;
}
.back-to-top .arrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  color: #135AAA;
  line-height: 0;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 576px) {
  .back-to-top {
    --size: 50px;
    right: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top, .back-to-top .progress-ring .ring-progress {
    transition: none;
  }
}
.floating-actions {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0) + 8px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1100;
}
.floating-actions .fab {
  inline-size: 60px;
  block-size: 60px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #135AAA;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.floating-actions .fab img {
  display: block;
  max-width: 28px;
  max-height: 28px;
  width: auto;
  height: auto;
}
.floating-actions .fab:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}
.floating-actions .fab:focus-visible {
  outline: 3px solid #135AAA;
  outline-offset: 3px;
}

/* drobna responsywność */
@media (max-width: 576px) {
  .floating-actions {
    right: 12px;
    gap: 10px;
  }
  .floating-actions .fab {
    inline-size: 54px;
    block-size: 54px;
  }
  .floating-actions .fab img {
    max-width: 24px;
    max-height: 24px;
  }
}
/* Panel dostępności */
.a11y-menu {
  position: fixed;
  right: max(84px, env(safe-area-inset-right, 0) + 76px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 8px;
  padding: 10px;
  background: #fff;
  border: 2px solid #135AAA;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1200;
  width: max(180px, 14rem);
}

.a11y-btn {
  display: inline-block;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #135AAA;
  background: #fff;
  color: #135AAA;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.a11y-btn:hover, .a11y-btn:focus-visible {
  background: #135AAA;
  color: #fff;
}

.a11y-reset {
  border-style: dashed;
}

/* ————— Tryby dostępności ————— */
/* Sterowanie wielkością fontu: cały projekt w rem → skalujemy root */
html {
  font-size: var(--a11y-root, 100%);
}

/* klasy tylko jako „znaczniki stanu” (JS je zakłada/zdejmuje) */
html.a11y-font-120 {
  --a11y-root: 120%;
}

html.a11y-font-140 {
  --a11y-root: 140%;
}

/* Podkreśl wszystkie linki w treści */
body.a11y-underline-links a {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

/* Wysoki kontrast: tło czarne, tekst biały */
body.a11y-contrast {
  background: #000 !important;
  color: #fff !important;
}

body.a11y-contrast *:not(svg):not(svg *):not(img):not(video) {
  color: #fff !important;
  border-color: #fff !important;
  background-color: transparent !important;
}

body.a11y-contrast a {
  color: #fff !important;
  text-decoration: underline !important;
}

body.a11y-contrast .floating-actions .fab {
  background: #000 !important;
  border-color: #fff !important;
}

body.a11y-contrast .back-to-top {
  background: #000 !important;
}

body.a11y-contrast .back-to-top .ring-bg {
  stroke: rgba(255, 255, 255, 0.25) !important;
}

body.a11y-contrast .back-to-top .ring-progress,
body.a11y-contrast .back-to-top .arrow {
  color: #fff !important;
  stroke: #fff !important;
}

body.a11y-contrast .a11y-menu {
  background: black !important;
}

body.a11y-contrast .floating-actions .fab img {
  filter: invert(1);
}

body.a11y-contrast .home-slider-wrap .slide-gradient {
  background: linear-gradient(270.09deg, rgba(238, 238, 238, 0) 12.29%, #000000 70%);
}

/* Mobile: przysuń panel bliżej krawędzi i poniżej FABów jeśli mało miejsca */
@media (max-width: 576px) {
  .a11y-menu {
    right: 12px;
    top: auto;
    bottom: calc(env(safe-area-inset-bottom, 0) + 96px);
    transform: none;
  }
}
header {
  /* === Telefon === */
  /* === CTA === */
}
header .navbar {
  padding: 0;
}
header .navbar .nav-container {
  flex-wrap: wrap !important;
  max-width: 100%;
  padding: 0;
  width: 100%;
}
header .navbar .collapse {
  background: #135AAA;
  padding: 0.625rem;
}
header .logo-bar {
  padding: 1rem 0;
}
header .logo-bar__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}
header .logo-bar__main, header .logo-bar__eu {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  min-width: 0;
}
header .logo-bar__divider {
  width: 0.125rem;
  height: 30px;
  align-self: center;
  background: black;
  display: inline-block;
}
header .logo-bar__img {
  height: auto;
  max-height: clamp(2.25rem, 6vw, 5.375rem);
  width: auto;
  object-fit: cover;
  display: block;
}
header .logo-bar__img--main {
  max-height: clamp(2.625rem, 7vw, 3rem);
}
header .logo-bar__img--eu {
  max-height: clamp(1.75rem, 5.5vw, 5.375rem);
}
@media (max-width: 40rem) {
  header .logo-bar__divider {
    display: none;
  }
}
header .header-actions {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
header .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #222F66;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
}
header .phone-link .icon {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
  display: inline-block;
}
header .phone-link__text {
  text-decoration: none;
}
header .phone-link:hover .phone-link__text, header .phone-link:focus-visible .phone-link__text {
  text-decoration: underline;
}
header .header-cta {
  border: 0.125rem solid #222F66;
  border-radius: 1.875rem;
  background: transparent;
  color: #0097D6;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0.5rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.25s ease;
  cursor: pointer;
}
header .header-cta__icon {
  display: inline-flex;
  align-items: center;
}
header .header-cta__icon .dashicons {
  font-size: 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
  color: #0097D6;
  transition: color 0.25s ease;
}
header .header-cta__icon .icon {
  width: 1.375rem;
  height: 1.375rem;
  object-fit: contain;
  transition: filter 0.25s ease;
}
header .header-cta:hover, header .header-cta:focus-visible {
  background: #222F66;
  color: #fff;
  border-color: #222F66;
}
header .header-cta:hover .dashicons, header .header-cta:focus-visible .dashicons {
  color: #fff;
}
header .header-cta:hover .icon, header .header-cta:focus-visible .icon {
  filter: brightness(0) invert(1);
}
@media (max-width: 36rem) {
  header .header-actions {
    gap: 1rem;
  }
  header .phone-link,
  header .header-cta {
    font-size: 1rem;
  }
  header .header-cta {
    padding: 1rem 1.5rem;
  }
}
header .navbar-nav .nav-item .nav-link {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 13vw;
}
.site-footer .top-part {
  position: relative;
  padding: 2.5rem 0;
  background: #d9d9d9;
}
.site-footer .top-part .img-container {
  position: absolute;
  bottom: 0;
  width: 35%;
  left: 0;
  z-index: 0;
}
.site-footer .top-part .img-container img {
  max-width: 100%;
  height: auto;
  display: block;
}
.site-footer .top-part .text-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer .top-part .text-container .call-title {
  width: 100%;
  color: #135AAA;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  line-height: 1.25;
}
.site-footer .top-part .text-container .main-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 0.125rem solid #135AAA;
  background: #135AAA;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 1.875rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.site-footer .top-part .text-container .main-button:hover, .site-footer .top-part .text-container .main-button:focus-visible {
  background: #d9d9d9;
  color: #135AAA;
  border-color: #135AAA;
}
.site-footer .bottom-part {
  background: #135AAA;
  color: #fff;
  padding: 3.75rem 0 1.875rem;
}
.site-footer .bottom-part .logo-container img {
  max-width: 13.75rem;
  height: auto;
  display: block;
}
.site-footer .bottom-part .footer-menu h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}
.site-footer .bottom-part .footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .bottom-part .footer-menu ul li + li {
  margin-top: 0.375rem;
}
.site-footer .bottom-part .footer-menu ul a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}
.site-footer .bottom-part .footer-menu ul a:hover, .site-footer .bottom-part .footer-menu ul a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.site-footer .bottom-part .footer-contact {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.95;
}
.site-footer .bottom-part .footer-contact p {
  margin-bottom: 0.5rem;
}
.site-footer .bottom-part .footer-contact a {
  color: #fff;
  text-decoration: underline;
}
.site-footer .bottom-part .footer-sep {
  border: 0;
  height: 0.125rem;
  background: #fff;
  opacity: 1;
  margin: 1.5rem 0;
  width: 100%;
}
.site-footer .bottom-part .copyright {
  font-size: 0.875rem;
  opacity: 0.9;
}
.site-footer .bottom-part .social-container .social-list {
  display: flex;
  justify-content: flex-end;
  gap: 0.625rem;
}
.site-footer .bottom-part .social-container .social-link {
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  outline: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.site-footer .bottom-part .social-container .social-link:hover, .site-footer .bottom-part .social-container .social-link:focus-visible {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
}
.site-footer .bottom-part .social-container .social-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.site-footer .bottom-part .social-container .social-link__icon .dashicons {
  font-size: 0.9375rem;
  width: 0.9375rem;
  height: 0.9375rem;
  color: #135AAA;
}
.site-footer .bottom-part .social-container .social-link__icon .icon {
  width: 0.9375rem;
  height: 0.9375rem;
  object-fit: contain;
  filter: none;
}
@media (max-width: 48rem) {
  .site-footer .bottom-part .social-container .social-list {
    justify-content: flex-start;
  }
  .site-footer .bottom-part .logo-container img {
    max-width: 11.25rem;
  }
}

.home-slider-section {
  position: relative;
  min-height: 80vh;
  /* pół wysokości (50vh) tła pod sliderem na pełną szerokość */
}
.home-slider-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40vh;
  background: #135AAA;
  z-index: 0;
  pointer-events: none;
}
.home-slider-section .container {
  height: 100%;
}

/* sam slider 90% szerokości, 100vh wysokości, wycentrowany */
.home-slider-wrap {
  position: relative;
  z-index: 1;
  width: 98%;
  height: 80vh;
  left: -2%;
  /* gradient – zaczyna z lewej i rozjaśnia ku środkowi */
  /* przycisk jak wcześniej (odwrócenie kolorów na hover) */
  /* nawigacja: własne obrazki, ukryj domyślną strzałkę ::after */
  /* kropki – 10x10, wycentrowane */
}
.home-slider-wrap .swiper-wrapper,
.home-slider-wrap .swiper-slide {
  height: 100%;
}
.home-slider-wrap .swiper-slide {
  position: relative;
  overflow: hidden;
}
.home-slider-wrap .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.home-slider-wrap .slide-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(270.09deg, rgba(238, 238, 238, 0) 12.29%, #EEEEEE 70%);
  /* jeśli chcesz silniejszy efekt po lewej: background: linear-gradient(90deg, #EEEEEE 0%, rgba(238,238,238,0) 60%); */
}
.home-slider-wrap .slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.home-slider-wrap .text-container {
  max-width: 35%;
  /* lewa strona – naturalnie, bo jesteśmy wewnątrz .container */
}
.home-slider-wrap .slide-title {
  color: #222F66;
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.75rem;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.home-slider-wrap .slide-text {
  color: #222F66;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375rem;
}
.home-slider-wrap .slide-text p {
  margin-bottom: 0.75rem;
}
.home-slider-wrap .swiper-button-prev,
.home-slider-wrap .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.home-slider-wrap .swiper-button-prev::after,
.home-slider-wrap .swiper-button-next::after {
  display: none;
}
.home-slider-wrap .swiper-button-prev img,
.home-slider-wrap .swiper-button-next img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.home-slider-wrap .swiper-button-prev {
  left: 4rem;
}
.home-slider-wrap .swiper-button-next {
  right: 1rem;
}
.home-slider-wrap .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  z-index: 4;
  text-align: center;
}
.home-slider-wrap .swiper-pagination-bullet {
  width: 1.25rem;
  height: 1.25rem;
  background: #0097D6;
  opacity: 1;
  margin: 0 0.375rem !important;
}
.home-slider-wrap .swiper-pagination-bullet-active {
  background: #222F66;
}

/* responsywność – mniejsza typografia na małych ekranach */
@media (max-width: 36rem) {
  .home-slider-wrap .slide-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .home-slider-wrap .slide-text {
    font-size: 0.9375rem;
    line-height: 1.3125rem;
  }
}
.about {
  padding: 3.75rem 0;
}
.about__title {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 3.0625rem;
  text-align: center;
  text-transform: uppercase;
  color: #222F66;
  margin: 0 0 1.25rem;
}
.about__text {
  color: #222F66;
  font-style: normal;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 159.4%;
  text-align: center;
  margin: 0 auto;
  /* estetyczne ograniczenie szerokości bloku tekstu */
  max-width: 56.25rem;
  /* typowe elementy WYSIWYG */
}
.about__text p {
  margin: 0 0 0.75rem;
}
.about__text ul,
.about__text ol {
  display: inline-block;
  /* żeby centrowanie wyglądało lepiej */
  text-align: left;
  margin: 0.5rem 0 0.75rem 1.5rem;
}
.about__text a:not(.main-button) {
  text-decoration: underline;
  color: inherit;
}
.about__text strong,
.about__text b {
  font-weight: 700;
}
@media (max-width: 48rem) {
  .about__title {
    font-size: 1.75rem;
    line-height: 2.375rem;
  }
  .about__text {
    font-size: 0.9375rem;
  }
}

.help-boxes {
  padding: 3.125rem 0;
}

.help-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0;
  position: relative;
  background: #d9d9d9;
}
.help-box .img-container .img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 11.25rem;
  object-fit: cover;
}
.help-box .img-container a {
  display: block;
}
.help-box .text-container {
  background: #d9d9d9;
  padding: 0.9375rem;
}
.help-box .text-container .help-box__title {
  color: #222F66;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 120%;
  margin: 0.25rem 0 0.5rem;
  min-height: 45px;
}
.help-box .text-container .help-box__text {
  color: #606060;
  font-style: normal;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 159.4%;
  margin-bottom: 0.875rem;
  min-height: 170px;
}
.help-box .text-container .help-box__text p {
  margin: 0 0 0.625rem;
}
.help-box .text-container .help-box__text ul,
.help-box .text-container .help-box__text ol {
  margin: 0.5rem 0 0.625rem 1.25rem;
}
.help-box .text-container .help-box__text a {
  color: inherit;
  text-decoration: underline;
}
.help-box .text-container .button-container {
  margin-top: auto;
  height: 55px;
}

/* responsywnie odrobina luzu */
@media (max-width: 36rem) {
  .help-box {
    gap: 0.75rem;
    margin-bottom: 30px;
  }
  .help-box .img-container .img {
    height: 12.5rem;
  }
}
@media (max-width: 992px) {
  .help-box {
    height: auto;
    margin-bottom: 30px;
  }
}
.help-boxes .button-container {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
.help-boxes .button-container .main-button {
  display: inline-block;
  padding: 0.25rem 1.25rem;
  border: 0.0625rem solid #222F66;
  background: transparent;
  color: #222F66;
  font-style: normal;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 159.4%;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  position: absolute;
  bottom: 20px;
}
.help-boxes .button-container .main-button:hover, .help-boxes .button-container .main-button:focus-visible {
  background: #222F66;
  color: #fff;
  border-color: #222F66;
}

.text-photo {
  padding: 3.75rem 0;
  /* styl przycisku (lokalnie). Obsługuję mainbutton i main-button dla spójności */
}
.text-photo .textphoto__title {
  color: #222F66;
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 125.4%;
  text-transform: uppercase;
  margin: 0 0 1rem;
  white-space: pre-line;
}
.text-photo .textphoto__text {
  font-style: normal;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 141.4%;
  color: #606060;
}
.text-photo .textphoto__text p {
  margin-bottom: 0.75rem;
}
.text-photo .textphoto__text ul,
.text-photo .textphoto__text ol {
  margin: 0.5rem 0 0.75rem 1.25rem;
}
.text-photo .textphoto__text a {
  text-decoration: underline;
}
.text-photo .button-container {
  margin-top: 1.25rem;
}
.text-photo .img-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 26.25rem;
  z-index: 1;
  /* ::before — kolorowa łata u dołu po lewej */
  /* ::after — większa łata w prawym dolnym rogu pod obrazem */
}
.text-photo .img-container .cover-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-photo .img-container::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 40%;
  background: #0097D6;
  mix-blend-mode: multiply;
  border-radius: 4.375rem 0rem;
  z-index: 2;
  pointer-events: none;
}
.text-photo .img-container::after {
  content: "";
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  width: 65%;
  height: 65%;
  background: #0097D6;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 48rem) {
  .text-photo .textphoto__title {
    font-size: 1.875rem;
  }
  .text-photo .img-container {
    min-height: 20rem;
  }
}

.boxes {
  padding: 3.125rem 0;
}

.contact-box {
  background: #CDDBF9;
  /* Group 53110 */
  border: 0.25rem solid #CDDBF9;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border-radius: 0.3125rem;
  height: 100%;
  padding: 1.375rem 1.125rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-box:hover, .contact-box:focus-visible {
  background: #fff;
}
.contact-box .icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.375rem;
  /* Dashicons 40x40 i w kolorze $mainblue */
  /* Obrazek 40x40 */
}
.contact-box .icon-container .dashicons {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 2.5rem;
  line-height: 1;
  color: #135AAA;
  display: inline-block;
}
.contact-box .icon-container .icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  display: inline-block;
}
.contact-box .contact-box__title {
  color: #135AAA;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3125rem;
  text-transform: uppercase;
  margin: 0;
}
.contact-box .contact-box__text {
  color: #135AAA;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  text-align: center;
  margin-top: 0.25rem;
}
.contact-box .contact-box__text p {
  margin: 0 0 0.625rem;
}
.contact-box .contact-box__text ul,
.contact-box .contact-box__text ol {
  margin: 0.5rem 0 0.625rem 1.25rem;
  text-align: left;
  display: inline-block;
}
.contact-box .contact-box__text a {
  color: inherit;
  text-decoration: none;
}
.contact-box .contact-box__text a:hover {
  text-decoration: underline;
}

/* drobna responsywność */
@media (max-width: 36rem) {
  .contact-box {
    padding: 1.125rem 0.875rem;
  }
}
.content-section {
  position: relative;
  padding-bottom: 2.5rem;
  /* odstęp 1.875rem pod bannerem */
  /* Galeria: 4 kwadratowe obrazki w rzędzie, .9375rem pion/pion */
}
.content-section__inner {
  position: relative;
  z-index: 2;
  margin-top: 1.875rem;
}
.content-section .banner {
  position: relative;
  width: 100%;
  height: 28.125rem;
  z-index: 1;
  overflow: visible;
  /* pół wysokości ekranu tła $mainblue pod i za bannerem */
}
.content-section .banner__img {
  display: block;
  width: 100%;
  height: 25rem;
  object-fit: cover;
  left: -1.875rem;
  position: relative;
  z-index: 2;
}
.content-section .banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  background: #135AAA;
  z-index: 1;
  pointer-events: none;
}
.content-section .banner.banner--empty {
  background: rgba(0, 0, 0, 0.06);
}
.content-section .breadcrumb {
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.1875rem;
  color: #606060;
  margin-bottom: 0.875rem;
}
.content-section .breadcrumb a {
  color: #606060;
  text-decoration: none;
}
.content-section .breadcrumb a:hover,
.content-section .breadcrumb a:focus-visible {
  text-decoration: underline;
}
.content-section .breadcrumb .sep {
  margin: 0 0.375rem;
}
.content-section .title-container {
  margin-bottom: 1.5rem;
}
.content-section .title-container .page-title {
  font-style: normal;
  font-weight: 400;
  font-size: 2.125rem;
  line-height: 2.0625rem;
  text-transform: uppercase;
  color: #135AAA;
  margin: 0;
  white-space: pre-line;
}
.content-section .text-container {
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5625rem;
  color: #606060;
}
.content-section .text-container p {
  margin: 0 0 0.875rem;
}
.content-section .text-container ul,
.content-section .text-container ol {
  margin: 0.625rem 0 0.875rem 1.25rem;
}
.content-section .text-container a {
  color: #135AAA;
  text-decoration: underline;
}
.content-section .img-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 22.5rem;
  /* after: niebieskie pole pod obrazem (70% x 70%) */
}
.content-section .img-container .content-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* w 100 h 100 object-fit cover */
  position: relative;
  position: absolute;
  z-index: 1;
  border-radius: 0.25rem;
}
.content-section .img-container::after {
  content: "";
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  width: 70%;
  height: 70%;
  background: #0097D6;
  z-index: -1;
  border-radius: 0.25rem;
}
.content-section .extra-content {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.5625rem;
  color: #606060;
}
.content-section .extra-content p {
  margin: 0 0 0.875rem;
}
.content-section .gallery-title {
  margin: 1.75rem 0 0.875rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #222F66;
  text-transform: uppercase;
}
.content-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9375rem;
  margin: 0.9375rem 0;
}
.content-section .gallery-grid .gallery-img {
  width: 100%;
  aspect-ratio: 1/1;
  /* kwadrat */
  object-fit: cover;
  display: block;
  border-radius: 0.25rem;
}
@media (max-width: 62rem) {
  .content-section .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 48rem) {
  .content-section .img-container {
    min-height: 17.5rem;
  }
  .content-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 30rem) {
  .content-section .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Wariant sekcji z paskiem i banerem */
.content-section--v2 {
  /* niebieski pasek 5rem */
  /* kontener banera z tłem pod spodem */
}
.content-section--v2 .breadcrumb {
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.1875rem;
  color: #606060;
  margin: 0.625rem 0 0.375rem;
}
.content-section--v2 .breadcrumb a {
  color: #606060;
  text-decoration: none;
}
.content-section--v2 .breadcrumb a:hover, .content-section--v2 .breadcrumb a:focus-visible {
  text-decoration: underline;
}
.content-section--v2 .breadcrumb .sep {
  margin: 0 0.375rem;
}
.content-section--v2 .page-title {
  font-style: normal;
  font-weight: 400;
  font-size: 2.125rem;
  line-height: 2.0625rem;
  text-transform: uppercase;
  color: #135AAA;
  margin: 0 0 0.875rem;
}
.content-section--v2 .blue-strip {
  height: 5rem;
  width: 100%;
  background: #135AAA;
}
.content-section--v2 .banner-container {
  position: relative;
  /* niebieskie tło pod bannerem: absolute, 50% szerokości i 50% wysokości,
     wyśrodkowane względem okna (wychodzi poza .container) */
}
.content-section--v2 .banner-container::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0; /* tak, by było „pod” obrazem */
  width: 50vw; /* 50% szerokości okna */
  height: 50%; /* 50% wysokości boxa banner-container */
  background: #135AAA;
  z-index: 0;
  pointer-events: none;
}
.content-section--v2 .banner-container .image-container {
  position: relative;
  z-index: 1; /* nad niebieskim tłem */
  width: 100%;
  height: 25rem;
}
.content-section--v2 .banner-container .image-container__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* (poprawka: cover) */
  object-position: center;
}
.content-section--v2 .entry-content {
  margin-top: 1.5rem;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5625rem;
  color: #606060;
}
.content-section--v2 .entry-content p {
  margin: 0 0 0.875rem;
}
.content-section--v2 .entry-content ul, .content-section--v2 .entry-content ol {
  margin: 0.625rem 0 0.875rem 1.25rem;
}
.content-section--v2 .entry-content a {
  color: #135AAA;
  text-decoration: underline;
}
@media (max-width: 48rem) {
  .content-section--v2 .page-title {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  .content-section--v2 .banner-container .image-container {
    height: 18.75rem;
  }
  .content-section--v2 .banner-container::before {
    width: 70vw;
    top: 30%;
  }
}

.developer-credit {
  font-size: 10px;
  text-align: right;
  color: white;
}
.developer-credit a {
  color: inherit;
  text-decoration: none;
}

header .d-desktop-none {
  display: none;
}
@media (max-width: 992px) {
  header .d-desktop-none {
    display: flex;
  }
}

.blog-index {
  /* przycisk konturowy spójny z projektem */
}
.blog-index .page-title {
  font-weight: 400;
  font-size: 34px;
  line-height: 33px;
  text-transform: uppercase;
  color: #135AAA;
  margin: 10px 0 20px;
}
.blog-index .post-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-index .post-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.blog-index .post-card .thumb {
  display: block;
  position: relative;
}
.blog-index .post-card .thumb .thumb__img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-index .post-card .thumb .thumb__placeholder {
  width: 100%;
  height: 220px;
  background: #E9EEF7;
}
.blog-index .post-card .post-body {
  padding: 16px;
}
.blog-index .post-card .post-body .post-meta {
  font-size: 13px;
  color: #606060;
  margin-bottom: 8px;
}
.blog-index .post-card .post-body .post-meta a {
  color: #606060;
  text-decoration: none;
}
.blog-index .post-card .post-body .post-meta a:hover {
  text-decoration: underline;
}
.blog-index .post-card .post-body .post-meta .meta-sep {
  margin: 0 6px;
}
.blog-index .post-card .post-body .post-title {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
}
.blog-index .post-card .post-body .post-title a {
  color: #222F66;
  text-decoration: none;
}
.blog-index .post-card .post-body .post-title a:hover {
  text-decoration: underline;
}
.blog-index .post-card .post-body .post-excerpt {
  color: #606060;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.blog-index .post-card .post-body .post-actions {
  margin-top: auto;
}
.blog-index .pagination-wrap {
  margin: 28px 0 10px;
  text-align: center;
}
.blog-index .pagination-wrap .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  text-decoration: none;
  color: #222F66;
}
.blog-index .pagination-wrap .page-numbers.current {
  background: #135AAA;
  color: #fff;
  border-color: #135AAA;
}
.blog-index .pagination-wrap .page-numbers:hover {
  background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 576px) {
  .blog-index .post-card .thumb .thumb__img,
  .blog-index .post-card .thumb .thumb__placeholder {
    height: 190px;
  }
}
.blog-index .page-title {
  font-weight: 400;
  font-size: 34px;
  line-height: 33px;
  text-transform: uppercase;
  color: #135AAA;
  margin: 10px 0 16px;
}
.blog-index .blog-intro {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 25px;
  color: #606060;
}
.blog-index .blog-intro p {
  margin: 0 0 14px;
}
.blog-index .blog-intro a {
  color: #135AAA;
  text-decoration: underline;
}
.blog-index .blog-intro ul, .blog-index .blog-intro ol {
  margin: 10px 0 14px 20px;
}

@media (max-width: 992px) {
  .text-photo .img-container .cover-img {
    position: absolute;
  }
  .help-box {
    margin-bottom: 20px;
  }
  .home-slider-wrap .text-container {
    max-width: 58%;
  }
  .home-slider-wrap {
    height: 55vh;
  }
  .d-mobile-none {
    display: none;
  }
  .nav-container .container {
    max-width: 100%;
  }
  .nav-container .logo-bar__inner {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  header .logo-bar__img {
    max-height: 80px;
  }
}
@media (max-width: 768px) {
  .alfavox-client-opened, .alfavox-client-video {
    max-width: 100% !important;
    left: 5% !important;
  }
  #alfa-web-client #alfa-client-shape-maximized-video {
    max-width: 100% !important;
  }
  .home-slider-section {
    min-height: 0;
  }
  header .logo-bar__img {
    max-height: 60px;
  }
  header .logo-bar__main {
    order: 1;
  }
  header .navbar-toggler {
    order: 2;
  }
  header .logo-bar__eu {
    order: 3;
  }
  .home-slider-wrap .swiper-button-prev {
    display: none;
  }
  .home-slider-wrap .swiper-button-next {
    display: none;
  }
  .home-slider-wrap {
    height: auto;
  }
  .home-slider-wrap .slide-bg {
    position: static;
    height: 150px;
  }
  .home-slider-wrap .text-container {
    max-width: 100%;
  }
  .home-slider-section::after {
    display: none;
  }
  .home-slider-wrap .slide-content {
    margin-bottom: 80px;
  }
  header .navbar .collapse {
    background: white;
  }
  header .navbar-nav .nav-item .nav-link {
    color: #135AAA;
  }
  header .header-cta {
    padding: 8px 24px;
  }
  .site-footer .top-part .text-container .call-title {
    font-size: 16px;
    margin: 0 0 0.4rem;
  }
  .site-footer .top-part .text-container .main-button {
    font-size: 12px;
    margin-top: 0;
  }
  .site-footer .row {
    gap: 30px;
  }
}
@media (resolution: 120dpi), (resolution: 1.25dppx) {
  /* np. Windows ustawione na 125% skalowania */
  html {
    zoom: 0.8;
  }
}

/*# sourceMappingURL=index.css.map */
