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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #373737;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .container {
    padding-inline: 20px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding-block: 80px;
}
@media (max-width: 768px) {
  .section {
    padding-block: 48px;
  }
}
@media (max-width: 480px) {
  .section {
    padding-block: 40px;
  }
}
.section--no-pt {
  padding-top: 0;
}
.section--no-pb {
  padding-bottom: 0;
}

.section__title {
  font-family: "PT Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3.625rem);
  font-weight: 400;
  line-height: 1.2;
  color: #003DA5;
  margin: 0;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }
}
.section__title strong {
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 32px;
}
.grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid--2col {
    grid-template-columns: 1fr;
  }
}
.grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid--3col {
    grid-template-columns: 1fr;
  }
}
.grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid--4col {
    grid-template-columns: 1fr;
  }
}

:root {
  --header-total-height: 116px;
}

@media (max-width: 1200px) {
  :root {
    --header-total-height: 84px;
  }
}
@media (max-width: 880px) {
  :root {
    --header-total-height: 72px;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding-top: 20px;
}
.site-header__bar {
  margin-inline: 32px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  transition: margin 300ms ease, border-radius 300ms ease, box-shadow 300ms ease;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  padding-inline: 32px;
}
.site-header__logo {
  font-family: "PT Sans", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #003DA5;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.site-header__logo strong {
  font-weight: 700;
}
.site-header__logo img {
  display: block;
  max-height: 30px;
  width: auto;
}
.site-header.is-sticky .site-header__bar {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
  .site-header {
    padding-top: 12px;
  }
  .site-header__bar {
    margin-inline: 16px;
  }
  .site-header__inner {
    height: 72px;
    padding-inline: 24px;
  }
  .site-header__logo img {
    max-height: 24px;
  }
}
@media (max-width: 880px) {
  .site-header {
    padding-top: 0;
  }
  .site-header__bar {
    margin-inline: 0;
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  }
  .site-header__inner {
    height: 72px;
    padding-inline: 20px;
  }
  .site-header__logo img {
    max-height: 30px;
    max-width: 200px;
  }
}

.footer-files {
  padding-top: 80px;
  margin-bottom: -46.5px;
}
.footer-files__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .footer-files__inner {
    padding-inline: 20px;
  }
}
.footer-files__heading {
  color: #003DA5;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  margin-block-end: 40px;
}
.footer-files__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-files__item {
  flex: 1;
  min-width: 0;
}
.footer-files__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 93px;
  padding: 24px 16px;
  background-color: #003DA5;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 300ms ease;
  line-height: 1.4;
}
.footer-files__btn:hover {
  background-color: #29376D;
}
@media (max-width: 1024px) {
  .footer-files__list {
    flex-wrap: wrap;
  }
  .footer-files__item {
    flex: 1 1 calc(50% - 24px / 2);
  }
}
@media (max-width: 640px) {
  .footer-files {
    padding-top: 64px;
  }
  .footer-files__heading {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .footer-files__list {
    gap: 16px;
  }
  .footer-files__item {
    flex: 1 1 100%;
  }
}

.site-footer {
  padding-top: 96px;
  padding-bottom: 64px;
  background-color: #FEDD00;
  color: #29376D;
}
.site-footer__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .site-footer__inner {
    padding-inline: 20px;
  }
}
.site-footer__inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.site-footer__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-footer__logo-img {
  display: block;
  max-height: 74px;
  width: auto;
}
.site-footer__company {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
}
.site-footer__company-name {
  font-weight: 700;
  margin-block-end: 0;
}
.site-footer__address {
  font-style: normal;
}
.site-footer__contact {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
}
.site-footer__contact p {
  margin-block-end: 0;
}
.site-footer__contact a {
  color: #29376D;
  text-decoration: underline;
}
.site-footer__nip {
  margin-block-end: 16px !important;
}
.site-footer__copy {
  flex-shrink: 0;
  font-size: 18px;
  text-align: right;
}
@media (max-width: 1024px) {
  .site-footer__inner {
    flex-wrap: wrap;
    gap: 32px;
  }
  .site-footer__copy {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 640px) {
  .site-footer__inner {
    flex-direction: column;
    gap: 24px;
  }
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__list a {
  font-family: "PT Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #003DA5;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
  transition: color 300ms ease;
}
.site-nav__list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #29376D;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 500ms ease;
}
.site-nav__list a:hover, .site-nav__list a:focus-visible {
  color: #29376D;
}
.site-nav__list a:hover::after, .site-nav__list a:focus-visible::after {
  transform: scaleX(1);
}
.site-nav__list li.active > a {
  color: #29376D;
}
.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.site-nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #003DA5;
  transform-origin: center;
  transition: transform 300ms ease, opacity 300ms ease;
}
.site-nav__toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav__toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-nav__toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1200px) {
  .site-nav__list {
    gap: 16px;
  }
  .site-nav__list a {
    font-size: 16px;
  }
}
@media (max-width: 880px) {
  .site-nav__toggle {
    display: flex;
  }
  .site-nav__list {
    position: fixed;
    top: var(--header-total-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background-color: #003DA5;
    padding: 48px 32px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease;
  }
  .site-nav__list.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav__list li {
    width: 100%;
    text-align: center;
  }
  .site-nav__list li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .site-nav__list a {
    display: block;
    font-size: 18px;
    color: #FFFFFF !important;
    padding: 16px 16px;
    letter-spacing: 0.05em;
    border-radius: 8px;
    white-space: normal;
    transition: background-color 300ms ease, color 300ms ease;
  }
  .site-nav__list a::after {
    display: none;
  }
  .site-nav__list a:hover, .site-nav__list a:focus-visible {
    opacity: 1;
    background-color: #FEDD00;
    color: #29376D !important;
  }
}

.post-content {
  padding-block: 96px;
}
@media (max-width: 768px) {
  .post-content {
    padding-block: 64px;
  }
}
.post-content .container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .post-content .container {
    padding-inline: 20px;
  }
}
.post-content__title {
  font-size: 48px;
  font-weight: 700;
  color: #003DA5;
  line-height: 1.2;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .post-content__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.post-content__body {
  max-width: 72ch;
  color: #373737;
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .post-content__body {
    font-size: 16px;
  }
}
.post-content__body p {
  margin-bottom: 24px;
}
.post-content__body p:last-child {
  margin-bottom: 0;
}
.post-content__body h2 {
  font-size: 32px;
  font-weight: 700;
  color: #003DA5;
  margin-top: 64px;
  margin-bottom: 24px;
}
.post-content__body h3 {
  font-size: 24px;
  font-weight: 600;
  color: #003DA5;
  margin-top: 48px;
  margin-bottom: 16px;
}
.post-content__body ul,
.post-content__body ol {
  padding-left: 32px;
  margin-bottom: 24px;
}
.post-content__body ul li,
.post-content__body ol li {
  margin-bottom: 8px;
}
.post-content__body a {
  color: #003DA5;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-content__body a:hover {
  opacity: 0.75;
}
.post-content__body strong {
  font-weight: 700;
}
.post-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-block: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background-color: #003DA5;
  color: #FFFFFF;
}
.btn--primary:hover {
  opacity: 0.85;
}
.btn--secondary {
  background-color: #FEDD00;
  color: #FFFFFF;
}
.btn--secondary:hover {
  opacity: 0.85;
}
.btn--outline {
  background-color: transparent;
  border: 2px solid #003DA5;
  color: #003DA5;
}
.btn--outline:hover {
  background-color: #003DA5;
  color: #FFFFFF;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__label {
  font-size: 14px;
  font-weight: 500;
  color: #373737;
}
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid #6B7280;
  border-radius: 8px;
  font-size: 16px;
  color: #373737;
  background-color: #FFFFFF;
  transition: border-color 150ms ease;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: #003DA5;
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}

@keyframes hero-hex-border-in {
  0% {
    transform: scale(0.68);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-hexagons-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-home {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero-home__bg {
  position: absolute;
  inset: -3%;
  z-index: 0;
  will-change: transform;
}
.hero-home__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-home__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(254, 221, 0, 0.91);
}
.hero-home__deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.hero-home__deco--tr {
  top: 0;
  right: 0;
  width: 14vw;
  height: 100%;
}
.hero-home__deco--tr::before, .hero-home__deco--tr::after {
  content: "";
  position: absolute;
  right: 0;
  background: #003DA5;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hero-home__deco--tr::before {
  width: 28vw;
  aspect-ratio: 200/231;
  top: 0;
  transform: translate(50%, -50%);
}
.hero-home__deco--tr::after {
  width: 18vw;
  aspect-ratio: 200/231;
  bottom: 0;
  transform: translate(50%, 50%);
}
.hero-home__slider {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: 100dvh;
}
.hero-home__slide {
  grid-area: 1/1;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100dvh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  padding-top: var(--header-total-height);
  padding-left: clamp(40px, 5.5vw, 120px);
}
.hero-home__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-home__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 50%;
  flex-shrink: 0;
  padding-block: 64px;
  padding-right: 64px;
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(24px);
}
.hero-home__content.is-entering {
  animation: hero-content-in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero-home__logo-img {
  height: 56px;
  width: auto;
}
.hero-home__heading {
  margin: 0;
  font-family: "PT Sans", sans-serif;
  font-size: clamp(1.25rem, 2.9vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: #003DA5;
}
.hero-home__heading strong {
  font-size: clamp(2rem, 4.6vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
}
.hero-home__desc {
  font-family: "PT Sans", sans-serif;
  font-size: clamp(0.9rem, 1.35vw, 1.625rem);
  line-height: 1.52;
  color: #373737;
  max-width: 52ch;
  margin: 0;
}
.hero-home__cta {
  gap: 8px;
}
.hero-home__cta-icon {
  flex-shrink: 0;
}
.hero-home .btn--primary {
  transition-duration: 300ms;
}
.hero-home .btn--primary:hover {
  opacity: 1;
  background-color: #29376D;
}
.hero-home__hexagons {
  position: relative;
  align-self: stretch;
  flex-shrink: 0;
  width: 40vw;
  margin-right: 15vw;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translateY(18px);
}
.hero-home__hexagons.is-entering {
  animation: hero-hexagons-in 1.1s 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero-home__hex {
  position: absolute;
}
.hero-home__hex--top {
  width: 28vw;
  aspect-ratio: 200/231;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.hero-home__hex--bottom {
  width: 16vw;
  aspect-ratio: 200/231;
  bottom: calc(50% - 16.17vw);
  left: 0;
}
.hero-home__hex--bottom .hero-home__hex-border.is-visible {
  animation-delay: 0.35s;
}
.hero-home__hex-border {
  position: absolute;
  inset: -4.3%;
  z-index: 1;
  transform: scale(0.68);
  opacity: 0;
  transform-origin: center center;
}
.hero-home__hex-border.is-visible {
  animation: hero-hex-border-in 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-home__hex-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
}
.hero-home__hex-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-home__nav {
  position: absolute;
  right: 2vw;
  top: calc(50% + var(--header-total-height) / 2);
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-home__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #003DA5;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: background-color 300ms ease;
  padding: 0;
}
.hero-home__nav-btn:hover {
  background: #29376D;
}
@media (max-width: 768px) {
  .hero-home__logo {
    margin-bottom: 1rem;
  }
  .hero-home__deco {
    display: none;
  }
  .hero-home__slide {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 96px;
  }
  .hero-home__content {
    width: 100%;
    padding-right: 0;
    padding-top: 48px;
    padding-bottom: 16px;
    gap: 12px;
  }
  .hero-home__hexagons {
    display: none;
  }
  .hero-home__heading {
    font-size: 2.2rem;
  }
  .hero-home__heading strong {
    font-size: 3rem;
  }
  .hero-home__desc {
    font-size: 1.2rem;
  }
  .hero-home__nav {
    top: auto;
    right: 0;
    left: 0;
    bottom: 48px;
    transform: none;
    flex-direction: row;
    justify-content: center;
  }
  .hero-home__nav-btn svg {
    transform: rotate(-90deg);
  }
  .hero-home .btn {
    margin-top: 1rem;
  }
}

.fc-opisowa {
  background: #FFFFFF;
  overflow: clip;
}

.fc-opisowa__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .fc-opisowa__inner {
    padding-inline: 20px;
  }
}

.fc-opisowa__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
@media (max-width: 1024px) {
  .fc-opisowa__columns {
    grid-template-columns: 1fr;
  }
}

.fc-opisowa__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fc-opisowa__heading-img img {
  max-width: 80%;
}
.fc-opisowa__heading-img-el {
  max-width: 100%;
  height: auto;
  display: block;
}

.fc-opisowa__description {
  margin: 0;
  font-family: "PT Sans", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #2f2f2f;
  max-width: 58ch;
}
.fc-opisowa__description p {
  margin: 0 0 16px;
}
.fc-opisowa__description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .fc-opisowa__description {
    font-size: 16px;
    max-width: 100%;
  }
}

.fc-opisowa__variant-label {
  margin: 10px 0 0;
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #003DA5;
}

.fc-opisowa__variants {
  display: flex;
  margin-top: -10px;
}
.fc-opisowa__variants ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-radius: 20px;
  border: 2px solid #FEDD00;
}

.fc-opisowa__variant {
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #3c3c3c;
  line-height: 1.75;
  padding: 4px 40px;
}
.fc-opisowa__variant + .fc-opisowa__variant {
  border-left: 2px solid #FEDD00;
  margin-left: -2px;
}
.fc-opisowa__variant--active {
  border-color: #FEDD00;
  border-radius: 20px;
}
@media (max-width: 640px) {
  .fc-opisowa__variant {
    padding: 4px 32px;
  }
}

.fc-opisowa__right-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-opisowa__right-image-el {
  width: 100%;
  height: auto;
  max-height: clamp(300px, 40vw, 640px);
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .fc-opisowa__timeline {
    position: relative;
  }
  .fc-opisowa__timeline::before, .fc-opisowa__timeline::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .fc-opisowa__timeline::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF, transparent);
  }
  .fc-opisowa__timeline::after {
    right: 0;
    background: linear-gradient(to right, transparent, #FFFFFF);
  }
  .fc-opisowa__timeline.has-fade-left::before {
    opacity: 1;
  }
  .fc-opisowa__timeline.has-fade-right::after {
    opacity: 1;
  }
}

.fc-opisowa__swipe-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.fc-opisowa__swipe-hint.is-hidden {
  opacity: 0;
}

.fc-opisowa__swipe-hint-icon {
  display: block;
  width: 40px;
  height: 40px;
  color: #003DA5;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.22));
  animation: opisowa-swipe 2s ease-in-out infinite;
}

@keyframes opisowa-swipe {
  0%, 100% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(-10px);
  }
}
.fc-opisowa__timeline-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.fc-opisowa__timeline-brand {
  font-family: "PT Sans", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 400;
  color: #003DA5;
  white-space: nowrap;
  flex-shrink: 0;
}
.fc-opisowa__timeline-brand--right {
  margin-left: auto;
}

.fc-opisowa__timeline-arrows {
  flex: 1;
  height: clamp(20px, 2.5vw, 36px);
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 44' fill='none'%3E%3Cpath d='M6 2 L24 22 L6 42' stroke='%23eaeaea' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' opacity='.6'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: left center;
}
@media (max-width: 768px) {
  .fc-opisowa__timeline-arrows {
    display: none;
  }
}

@media (max-width: 768px) {
  .fc-opisowa__timeline-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 16px;
    cursor: grab;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .fc-opisowa__timeline-scroll.is-dragging {
    cursor: grabbing;
  }
  .fc-opisowa__timeline-scroll img {
    -webkit-user-drag: none;
    pointer-events: none;
  }
}

.fc-opisowa__timeline-body {
  position: relative;
}

.fc-opisowa__track {
  position: relative;
  height: 36px;
  margin-bottom: 32px;
}

.fc-opisowa__track-rail {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #d0d0d0;
  transform: translateY(-50%);
  border-radius: 9999px;
}

.fc-opisowa__track-fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 5px;
  background: #003DA5;
  transform: translateY(-50%);
  border-radius: 9999px;
  will-change: width;
}

.fc-opisowa__year {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: "PT Sans", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.625rem);
  font-weight: 700;
  color: #c5c5c5;
  white-space: nowrap;
  line-height: 1;
  will-change: color;
  background: #FFFFFF;
  padding: 4px 16px;
}

.fc-opisowa__packages {
  display: flex;
  align-items: center;
}

.fc-opisowa__package {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  padding-inline: 16px;
  padding-top: 24px;
  opacity: 0;
  will-change: opacity;
}
@media (max-width: 1024px) {
  .fc-opisowa__package {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .fc-opisowa__package {
    height: 160px;
  }
}

.fc-opisowa__package-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .fc-opisowa__timeline-header {
    flex-wrap: nowrap;
    gap: 8px;
    min-width: 580px;
  }
  .fc-opisowa__track,
  .fc-opisowa__packages {
    min-width: 580px;
  }
  .fc-opisowa__packages {
    align-items: center;
  }
  .fc-opisowa__package {
    flex: 1;
    height: 160px;
    min-width: 80px;
  }
}
.fc-cechy {
  position: relative;
  background-color: #FEDD00;
}

.fc-cechy__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.fc-cechy__parallax {
  position: absolute;
  inset: -20% 0;
  will-change: transform;
}

.fc-cechy__parallax-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.1;
}

.fc-cechy__inner {
  position: relative;
  z-index: 1;
}

.fc-cechy__title {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .fc-cechy__title {
    padding-inline: 20px;
  }
}
.fc-cechy__title {
  text-align: center;
}
.fc-cechy__slider-area {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1460px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .fc-cechy__slider-area {
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 32px;
    padding-inline: 0;
  }
}

.fc-cechy__swiper {
  flex: 1;
  min-width: 0;
}
@media (max-width: 640px) {
  .fc-cechy__swiper {
    order: 0;
    flex: 0 0 100%;
  }
}

.fc-cechy__arrow {
  flex-shrink: 0;
  width: 80px;
  height: 68px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 150ms ease;
}
.fc-cechy__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 640px) {
  .fc-cechy__arrow {
    order: 1;
    width: 60px;
    height: 50px;
    margin-inline: 5px;
  }
}

.fc-cechy__arrow-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 73px;
  height: 60px;
}
@media (max-width: 640px) {
  .fc-cechy__arrow-diamond {
    width: 56px;
    height: 46px;
    background-size: contain;
  }
}
.fc-cechy__arrow-diamond {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='73' height='60' viewBox='0 0 73 60' fill='none'%3E%3Cpath d='M-1.30311e-06 29.8018L17.9787 59.545L18.0178 59.6135L54.0633 59.6135L72.042 29.8801L72.0909 29.8018L54.1025 0.0683913L54.0633 -0.000112989L18.0276 -0.000111414L0.0489601 29.7333L-1.30311e-06 29.8018Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 150ms ease;
}
.fc-cechy__arrow-diamond svg {
  color: #003DA5;
  flex-shrink: 0;
}
.fc-cechy__arrow:hover .fc-cechy__arrow-diamond {
  opacity: 0.85;
}

.fc-cechy__slide {
  height: auto;
  display: flex;
}

.fc-cechy__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 0 32px;
  width: 100%;
}
@media (max-width: 768px) {
  .fc-cechy__card {
    gap: 32px;
    padding: 32px 24px;
  }
}

.fc-cechy__hexagon {
  position: relative;
  width: 140px;
  height: 169px;
  background: #003DA5;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='169' viewBox='0 0 140 169' fill='none'%3E%3Cpath d='M69.8191 0L0.160451 42.0223L0 42.1139V126.365L69.6358 168.387L69.8191 168.501L139.455 126.456L139.615 126.365V42.1368L69.9796 0.11444L69.8191 0Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='169' viewBox='0 0 140 169' fill='none'%3E%3Cpath d='M69.8191 0L0.160451 42.0223L0 42.1139V126.365L69.6358 168.387L69.8191 168.501L139.455 126.456L139.615 126.365V42.1368L69.9796 0.11444L69.8191 0Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .fc-cechy__hexagon {
    width: 110px;
    height: 133px;
  }
}

.fc-cechy__icon {
  width: 72px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .fc-cechy__icon {
    width: 56px;
    height: 56px;
  }
}

.fc-cechy__desc {
  color: #003DA5;
  font-size: 1.375rem;
  line-height: 1.5;
  max-width: 380px;
}
.fc-cechy__desc strong {
  font-weight: 700;
}
.fc-cechy__desc p {
  margin: 0;
}
@media (max-width: 1024px) {
  .fc-cechy__desc {
    font-size: 1.125rem;
  }
}

.fc-drug-info__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .fc-drug-info__inner {
    padding-inline: 20px;
  }
}

.fc-drug-info__heading {
  text-align: center;
}

.fc-drug-info__layout {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
@media (max-width: 768px) {
  .fc-drug-info__layout {
    flex-direction: column;
    gap: 32px;
  }
}

.fc-drug-info__nav {
  flex: 0 0 352px;
}
@media (max-width: 1024px) {
  .fc-drug-info__nav {
    flex: 0 0 300px;
  }
}
@media (max-width: 768px) {
  .fc-drug-info__nav {
    flex: none;
    width: 100%;
  }
}

.fc-drug-info__list {
  list-style: none;
  margin: 0;
  padding: 16px;
  background: rgba(240, 240, 240, 0.85);
  border-radius: 16px;
  overflow: hidden;
}

.fc-drug-info__item + .fc-drug-info__item {
  border-top: 1px solid #d5d5d5;
}
.fc-drug-info__item:last-child {
  border-bottom: none;
}
.fc-drug-info__item.is-active {
  border-bottom: none;
  border-top: 0;
}
.fc-drug-info__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
  min-height: 69px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 150ms ease;
}
.is-active .fc-drug-info__btn {
  background: #FFFFFF;
  border-radius: 16px;
  min-height: 69px;
}

.fc-drug-info__btn-label {
  font-family: "PT Sans", sans-serif;
  font-size: 18px;
  color: #000000;
  line-height: 1;
}
.is-active .fc-drug-info__btn-label {
  font-weight: 700;
}

.fc-drug-info__btn-arrow {
  color: #000000;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 150ms ease;
}
.is-active .fc-drug-info__btn-arrow {
  opacity: 1;
}

.fc-drug-info__panels {
  flex: 1;
  min-width: 0;
}

.fc-drug-info__pane {
  display: none;
}
.fc-drug-info__pane.is-active {
  display: block;
}

.fc-drug-info__content {
  font-family: "PT Sans", sans-serif;
  font-size: 18px;
  line-height: 2;
  color: #000000;
}
@media (max-width: 640px) {
  .fc-drug-info__content {
    font-size: 16px;
  }
}
.fc-drug-info__content p {
  margin: 0 0 16px;
}
.fc-drug-info__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .fc-drug-info__list {
    display: flex;
    flex-direction: column;
  }
  .fc-drug-info__item {
    display: none;
  }
  .fc-drug-info__item.is-active {
    display: block;
    order: -1;
  }
  .fc-drug-info__btn-arrow {
    opacity: 1;
    transform: rotate(90deg);
    transition: transform 150ms ease;
  }
  .fc-drug-info__nav.is-open .fc-drug-info__item {
    display: block;
  }
  .fc-drug-info__nav.is-open .is-active .fc-drug-info__btn-arrow {
    transform: rotate(-90deg);
  }
}
.fc-faq {
  background-color: #f2f2f2;
}
.fc-faq__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .fc-faq__inner {
    padding-inline: 20px;
  }
}
.fc-faq__title {
  text-align: center;
}
.fc-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 768px) {
  .fc-faq__grid {
    grid-template-columns: 1fr;
  }
}
.fc-faq__item {
  background-color: rgba(255, 254, 254, 0.85);
  border-radius: 20px;
  overflow: hidden;
  padding: 32px;
}
@media (max-width: 768px) {
  .fc-faq__item {
    padding: 24px 24px;
  }
}
.fc-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #000000;
}
.fc-faq__question-text {
  font-family: "PT Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.fc-faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #000000;
  transition: transform 300ms ease;
}
.fc-faq__item--open .fc-faq__icon {
  transform: rotate(180deg);
}
.fc-faq__answer {
  overflow: hidden;
  transition: height 300ms ease;
}
.fc-faq__answer[hidden] {
  display: block;
  height: 0;
  visibility: hidden;
}
.fc-faq__answer-inner {
  padding: 16px 0 0;
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
}
.fc-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

.fc-video__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .fc-video__inner {
    padding-inline: 20px;
  }
}
.fc-video__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000000;
  cursor: pointer;
}
.fc-video__player--playing {
  cursor: default;
}
.fc-video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 300ms ease;
}
.fc-video__player--playing .fc-video__poster {
  opacity: 0;
  pointer-events: none;
}
.fc-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fc-video__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.fc-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 139px;
  height: 139px;
  border-radius: 9999px;
  background-color: rgba(0, 61, 165, 0.8);
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}
.fc-video__player:hover .fc-video__play, .fc-video__player:focus-within .fc-video__play {
  background-color: rgb(0, 61, 165);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.fc-video__player--playing .fc-video__play {
  display: none;
}
.fc-video__play-icon {
  margin-left: 6px;
}
@media (max-width: 768px) {
  .fc-video__play {
    width: 88px;
    height: 88px;
  }
  .fc-video__play-icon {
    width: 32px;
    height: 32px;
    margin-left: 4px;
  }
}

.error-404 {
  padding-block: 128px;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .error-404 {
    padding-block: 80px;
  }
}
.error-404 .container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .error-404 .container {
    padding-inline: 20px;
  }
}
.error-404 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.error-404__code {
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  color: #003DA5;
  letter-spacing: -4px;
  opacity: 0.12;
  margin-bottom: -64px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .error-404__code {
    font-size: 100px;
    margin-bottom: -48px;
  }
}
.error-404__title {
  font-size: 48px;
  font-weight: 700;
  color: #003DA5;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .error-404__title {
    font-size: 32px;
  }
}
.error-404__description {
  font-size: 18px;
  color: #6B7280;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 64px;
}
/*# sourceMappingURL=main.min.css.map */
