@charset "UTF-8";
/* =========================
   MINIMUM (zmienne używane w sekcjach)
   ========================= */
html {
  --accent-color-10: #A8E831;
  --second-color-10: #021627;
  --blue-color-10: #005DA4;
  --blue-color-5: #0075C9;
  --blue-color-2: #0088E8;
  --blue-color-1: rgba(0, 136, 232, .1);
  --tile-background-color: rgba(2, 22, 39, .05);
  --tile-dark-background-color: #0216270D;
  --regular-font-size: 1rem;
  --regular-line-height: 140%;
}

/* =========================
   TYPO / BASE używane w sekcjach
   ========================= */
h2, .heading-2 {
  font-size: 2.8125rem;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  h2, .heading-2 {
    font-size: 1.75rem;
  }
}

h3, .heading-3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 24px;
}

p {
  margin-bottom: 24px;
}
p strong {
  font-weight: 600;
}

p, li, a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
}

a:hover {
  color: var(--accent-color-10);
}

/* =========================
   BUTTONS (hero + CTA)
   ========================= */
.btn-accent-regular:has(.double) {
  overflow: hidden;
}
.btn-accent-regular:has(.double) * {
  transition: all 0.7s;
}
.btn-accent-regular:has(.double) span:not(.double) {
  position: relative;
}
.btn-accent-regular:has(.double) span.double {
  position: absolute;
  left: 0;
  bottom: -85px;
  width: 100%;
  height: 100%;
}
.btn-accent-regular:has(.double):hover span:not(.double) {
  transform: translateY(-50px);
}
.btn-accent-regular:has(.double):hover span.double {
  bottom: -49px;
}
.btn-accent-regular:has(.double):hover .button-arrow-wrapper {
  width: 24px;
  overflow: hidden;
  position: relative;
}
.btn-accent-regular:has(.double):hover .button-arrow-wrapper .double {
  position: absolute;
  left: 0%;
  top: 3px;
}
.btn-accent-regular:has(.double):hover .button-arrow-wrapper img:not(.double) {
  transform: translateX(100%);
}
@media (max-width: 1599px) {
  .btn-accent-regular:has(.double):hover span:not(.double) {
    transform: translateY(-3.125rem);
  }
  .btn-accent-regular:has(.double):hover span.double {
    bottom: -3.1475rem;
  }
  .btn-accent-regular:has(.double):hover .button-arrow-wrapper {
    width: 24px;
    overflow: hidden;
    position: relative;
  }
  .btn-accent-regular:has(.double):hover .button-arrow-wrapper .double {
    position: absolute;
    left: 0%;
    top: 0.0275rem;
  }
  .btn-accent-regular:has(.double):hover .button-arrow-wrapper img:not(.double) {
    transform: translateX(100%);
  }
}
.btn-accent-regular:has(.double) .button-arrow-wrapper {
  width: 24px;
  overflow: hidden;
  position: relative;
}
.btn-accent-regular:has(.double) .button-arrow-wrapper .double {
  position: absolute;
  left: -100%;
  top: 3px;
}

.btn-accent-regular {
  background-color: var(--accent-color-10);
  color: rgba(2, 22, 39, 0.8);
  font-size: var(--regular-font-size);
  font-weight: 600;
  border-radius: 4px;
  height: 3rem;
  display: flex;
  align-items: center;
  padding: 0 16px;
  min-width: -moz-max-content;
  min-width: max-content;
  border: 0;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  transition: all 0.5s;
}
.btn-accent-regular.white-bg {
  background-color: #fff;
  color: var(--blue-color-10) !important;
}
.btn-accent-regular.white-bg span {
  color: var(--blue-color-10);
}
.btn-accent-regular.big {
  height: 3rem;
  font-size: 1.1875rem;
  font-weight: 600;
  padding: 0 16px;
}
@media (max-width: 1749px) {
  .btn-accent-regular.big {
    font-size: 1rem;
  }
}
@media (max-width: 1549px) {
  .btn-accent-regular.big {
    font-size: 0.85rem;
  }
}
@media (max-width: 1499px) {
  .btn-accent-regular.big {
    font-size: 0.85rem;
  }
}
@media (max-width: 1199px) {
  .btn-accent-regular.big {
    font-size: 1.125rem;
  }
}
@media (max-width: 575px) {
  .btn-accent-regular.big {
    height: 3.4rem;
  }
}
.btn-accent-regular.white-outline {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}
.btn-accent-regular.white-outline img {
  filter: brightness(0) invert(1);
}
.btn-accent-regular.white-outline:hover {
  color: var(--accent-color-10);
  background: rgba(250, 250, 250, 0.1);
}

.btn-accent-regular:hover {
  color: #222;
}

/* =========================
   SHARED COMPONENTS
   ========================= */
a.link-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.post-category {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue-color-1);
  color: var(--blue-color-2);
  border-radius: 2px;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  padding: 0 16px;
  font-weight: 600;
  font-size: 0.875rem;
}

.title-with-button {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.title-with-button h2 {
  margin-bottom: 0;
}
.title-with-button .accordion-read-more {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  color: var(--blue-color-5);
  justify-content: end;
  margin-top: 24px;
}
@media (max-width: 575px) {
  .title-with-button .accordion-read-more {
    display: none;
  }
}

.right-col .accordion-wrapper {
  margin-left: -24px;
  width: calc(100% + 48px);
}
@media (max-width: 991px) {
  .right-col .accordion-wrapper {
    margin-top: 40px;
  }
}

button.accordion-button {
  line-height: 160%;
}

.accordion-wrapper .accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.accordion-wrapper .accordion-item {
  background-color: transparent;
  border: 0;
  transition: all 0.3s;
}
.accordion-wrapper .accordion-item:not(:last-child) .accordion-button.collapsed {
  border-bottom: 1px solid rgba(27, 27, 27, 0.2);
}
.accordion-wrapper .accordion-item .accordion-header button {
  font-size: 1.375rem;
}
@media (max-width: 991px) {
  .accordion-wrapper .accordion-item .accordion-header button {
    font-size: 1.1875rem;
    font-weight: 500;
  }
}
.accordion-wrapper .accordion-item .accordion-read-more {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  color: var(--blue-color-5);
  justify-content: end;
  margin-top: 24px;
}
.accordion-wrapper .accordion-item .accordion-button {
  color: #0F0F0F;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 24px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.accordion-wrapper .accordion-item .accordion-button:after {
  background-size: 35px;
  width: 20px;
  height: 20px;
}
.accordion-wrapper .accordion-item .accordion-button.collapsed {
  padding: 13px 24px 13px 24px !important;
}
.accordion-wrapper .accordion-item .accordion-body {
  padding: 0;
  margin: 0 24px 8px 24px;
  padding-top: 0;
  padding-bottom: 24px;
}
.accordion-wrapper .accordion-item .accordion-body p {
  color: rgba(2, 22, 39, 0.8);
}
.accordion-wrapper .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}
.accordion-wrapper .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url(../img/opened-accord.svg);
  background-size: contain;
}
.accordion-wrapper .accordion-item .accordion-button.collapsed::after {
  background-image: url(../img/outline-accord.svg);
  background-size: contain;
}
.accordion-wrapper .accordion-item:not(:has(.show)) {
  background-color: transparent;
  border-radius: 4px;
}
.accordion-wrapper .accordion-item:has(.show), .accordion-wrapper .accordion-item:hover {
  background-color: #EDF2F5;
  border-radius: 4px;
}
.accordion-wrapper .accordion-item .accordion-button {
  box-shadow: none;
  background-color: transparent;
}
.accordion-wrapper .accordion-item:has(.show) .accordion-button:after {
  filter: brightness(0);
}

.col-2-text {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 575px) {
  .col-2-text {
    gap: 10px;
  }
}
.col-2-text .left-col, .col-2-text .right-col {
  width: calc(50% - 20px);
}
@media (max-width: 991px) {
  .col-2-text .left-col, .col-2-text .right-col {
    width: 100%;
  }
}
.col-2-text .left-col p:last-child, .col-2-text .right-col p:last-child {
  margin-bottom: 0;
}
.col-2-text .left-col {
  padding-right: 100px;
}
@media (max-width: 991px) {
  .col-2-text .left-col {
    padding-right: 0;
  }
}
.col-2-text.big p {
  font-size: 1.5625rem;
  line-height: 145%;
}
.col-2-text.big p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .col-2-text.big p {
    font-size: 1rem;
  }
}

/* =========================
   HERO SECTION
   ========================= */
.hero-section {
  padding-top: 19rem;
  padding-bottom: 11rem;
  position: relative;
  overflow: visible;
}
@media (max-width: 991px) {
  .hero-section {
    padding-bottom: 383px;
    padding-top: 184px;
  }
}
.hero-section.hero-404 h1, .hero-section.hero-404 p {
  color: #021627 !important;
}
.hero-section .content-wrapper {
  max-width: 577px;
  position: relative;
  z-index: 4;
}
.hero-section .content-wrapper * {
  color: #fff;
}
.hero-section .content-wrapper h1 {
  margin-bottom: 16px;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 4.4375rem;
  line-height: 115%;
}
@media (max-width: 575px) {
  .hero-section .content-wrapper h1 {
    font-size: 2.8125rem;
  }
}
.hero-section .content-wrapper p, .hero-section .content-wrapper li {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1.5625rem !important;
  line-height: 145%;
}
.hero-section .content-wrapper p strong, .hero-section .content-wrapper p b, .hero-section .content-wrapper li strong, .hero-section .content-wrapper li b {
  font-weight: 600;
}
.hero-section .content-wrapper .button-wrapper {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}
@media (max-width: 575px) {
  .hero-section .content-wrapper .button-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .hero-section .content-wrapper .button-wrapper a {
    width: 100%;
  }
}
.hero-section .hero-image, .hero-section .hero-image-mobile {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .hero-section .hero-image, .hero-section .hero-image-mobile {
    clip-path: polygon(0 0, 100% 0, 100% 62%, 0 79%);
  }
}
.hero-section .hero-image-main {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  z-index: 2;
}
@media (max-width: 991px) {
  .hero-section .hero-image-main {
    clip-path: polygon(0 47%, 100% 23%, 100% 100%, 0% 100%);
  }
}
.hero-section .hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(50% + 100px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .hero-section .hero-image-main {
    width: 100%;
    height: 30rem;
    bottom: 0;
    top: unset;
  }
}
.hero-section .hero-decor {
  position: absolute;
  right: calc(16% + 100px);
  bottom: 0;
  z-index: 3;
  max-height: 82%;
}
@media (max-width: 991px) {
  .hero-section .hero-decor {
    width: 350px !important;
    right: calc(100% - 350px) !important;
  }
}
@media (max-width: 1540px) {
  .hero-section .content-wrapper {
    max-width: 469px;
  }
  .hero-section .hero-decor {
    width: 500px;
    right: 20%;
  }
}
@media (max-width: 1199px) {
  .hero-section .hero-image, .hero-section .hero-image-mobile {
    border-bottom-left-radius: 0;
    width: 100%;
    height: 100%;
    right: unset;
    bottom: unset;
    left: 0;
    top: 0;
  }
  .hero-section .hero-decor {
    width: 440px;
    right: 10%;
  }
}
@media (max-width: 991px) {
  .hero-section .content-wrapper {
    max-width: 500px;
  }
  .hero-section .hero-decor {
    width: 600px;
  }
}

/* =========================
   SERVICES PICTURE TILES
   ========================= */
.services-picture-tiles {
  background-color: #FAFAFA;
  padding-top: 7.5rem;
  padding-bottom: 7.125rem;
}
@media (max-width: 575px) {
  .services-picture-tiles {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.services-picture-tiles .picture-tiles-wrapper {
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 767px) {
  .services-picture-tiles .picture-tiles-wrapper {
    margin-top: 56px;
  }
}
.services-picture-tiles .picture-tiles-wrapper .tile {
  background-color: var(--tile-background-color);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.services-picture-tiles .picture-tiles-wrapper .tile .image-wrapper {
  overflow: hidden;
  pointer-events: none;
}
.services-picture-tiles .picture-tiles-wrapper .tile .image-wrapper .service-image {
  transition: all 0.3s;
}
.services-picture-tiles .picture-tiles-wrapper .tile:hover .service-image {
  transform: scale(1.01);
}
.services-picture-tiles .picture-tiles-wrapper .tile a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.services-picture-tiles .picture-tiles-wrapper .tile:nth-child(n) {
  width: calc(60% - 12px);
}
.services-picture-tiles .picture-tiles-wrapper .tile:nth-child(2), .services-picture-tiles .picture-tiles-wrapper .tile:nth-child(3) {
  width: calc(40% - 12px);
}
@media (max-width: 1199px) {
  .services-picture-tiles .picture-tiles-wrapper .tile:nth-child(n) {
    width: calc(50% - 12px);
  }
  .services-picture-tiles .picture-tiles-wrapper .tile:nth-child(2), .services-picture-tiles .picture-tiles-wrapper .tile:nth-child(3) {
    width: calc(50% - 12px);
  }
}
@media (max-width: 991px) {
  .services-picture-tiles .picture-tiles-wrapper .tile:nth-child(n) {
    width: 100%;
  }
  .services-picture-tiles .picture-tiles-wrapper .tile:nth-child(2), .services-picture-tiles .picture-tiles-wrapper .tile:nth-child(3) {
    width: 100%;
  }
}
.services-picture-tiles .picture-tiles-wrapper .tile .service-image {
  width: 100%;
  height: 378px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .services-picture-tiles .picture-tiles-wrapper .tile .service-image {
    height: 227px;
  }
}
.services-picture-tiles .picture-tiles-wrapper .tile:hover .bottom-info {
  pointer-events: none;
}
.services-picture-tiles .picture-tiles-wrapper .tile:hover .bottom-info img {
  transform: translate(100%, -100%);
}
.services-picture-tiles .picture-tiles-wrapper .tile:hover .bottom-info .arrow-button:before {
  left: 5px;
  bottom: -5px;
}
.services-picture-tiles .picture-tiles-wrapper .tile .bottom-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  gap: 16px;
}
.services-picture-tiles .picture-tiles-wrapper .tile .bottom-info .heading-2 {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 140%;
  color: var(--second-color-10);
  margin-bottom: 0;
}
@media (max-width: 440px) {
  .services-picture-tiles .picture-tiles-wrapper .tile .bottom-info .heading-2 {
    font-size: 1.1875rem;
  }
}
.services-picture-tiles .picture-tiles-wrapper .tile .bottom-info .arrow-button {
  background-color: var(--accent-color-10);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 54px;
  min-width: 54px;
  position: relative;
  overflow: hidden;
}
.services-picture-tiles .picture-tiles-wrapper .tile .bottom-info .arrow-button img {
  transition: all 0.3s;
}
.services-picture-tiles .picture-tiles-wrapper .tile .bottom-info .arrow-button:before {
  content: url(../img/arrow-button.svg);
  position: absolute;
  left: -80%;
  bottom: -90%;
  transition: all 0.3s;
}

/* =========================
   ICON INFO TILES
   ========================= */
.icon-info-tiles {
  padding-top: 7.5rem;
  padding-bottom: 9rem;
}
@media (max-width: 575px) {
  .icon-info-tiles {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.icon-info-tiles.dark-bg {
  background-color: var(--tile-dark-background-color);
}
.icon-info-tiles .right-col a:not(.btn-accent-regular), .icon-info-tiles .left-col a:not(.btn-accent-regular) {
  text-decoration: underline;
  color: var(--blue-color-10);
  font-weight: 700;
}
@media (min-width: 1400px) {
  .icon-info-tiles .right-col p, .icon-info-tiles .left-col p {
    font-size: 1.1875rem;
  }
}
.icon-info-tiles .right-col:not(:has(.accordion-body)) img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.icon-info-tiles .icon-tiles-wrapper {
  margin-top: 7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 767px) {
  .icon-info-tiles .icon-tiles-wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .icon-info-tiles .icon-tiles-wrapper {
    width: calc(100% + 24px);
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    overscroll-behavior-x: contain;
  }
  .icon-info-tiles .icon-tiles-wrapper::-webkit-scrollbar {
    display: none;
  }
  .icon-info-tiles .icon-tiles-wrapper {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .icon-info-tiles .icon-tiles-wrapper .tile:last-child {
    margin-right: 48px;
  }
}
.icon-info-tiles .icon-tiles-wrapper .tile {
  position: relative;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
  width: calc(33% - 13px);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
.icon-info-tiles .icon-tiles-wrapper .tile a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.icon-info-tiles .icon-tiles-wrapper .tile .icon-image {
  margin-bottom: 40px;
}
.icon-info-tiles .icon-tiles-wrapper .tile .info .heading-3 {
  font-weight: 600;
  font-size: 19px;
  line-height: 150%;
  margin-bottom: 4px;
}
.icon-info-tiles .icon-tiles-wrapper .tile .info p {
  margin-bottom: 0;
  color: #212529;
}
.icon-info-tiles .icon-tiles-wrapper .tile .arrow-button {
  transition: all 0.3s;
  margin-bottom: -10px;
}
.icon-info-tiles .icon-tiles-wrapper .tile:not(:has(.icon-image)) {
  background-color: var(--blue-color-5);
  align-items: end;
  background-image: url(../img/icon-card-decor.svg);
  background-position: left bottom;
  background-size: 98%;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.icon-info-tiles .icon-tiles-wrapper .tile:not(:has(.icon-image)) * {
  color: #fff;
}
.icon-info-tiles .icon-tiles-wrapper .tile:not(:has(.icon-image)) .heading-3 {
  font-size: 1.375rem;
  line-height: 140%;
  max-width: 150px;
  text-align: right;
}
.icon-info-tiles .icon-tiles-wrapper .tile:not(:has(.icon-image)) .arrow-button {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  filter: brightness(0) invert(1);
}
.icon-info-tiles .icon-tiles-wrapper .tile:not(:has(.icon-image)) .arrow-button img {
  transition: all 0.3s;
}
.icon-info-tiles .icon-tiles-wrapper .tile:not(:has(.icon-image)) .arrow-button:before {
  content: url(../img/arrow-button.svg);
  position: absolute;
  left: -80%;
  bottom: -90%;
  transition: all 0.3s;
}
.icon-info-tiles .icon-tiles-wrapper .tile:hover:not(:has(.icon-image)) {
  background-size: 101%;
}
.icon-info-tiles .icon-tiles-wrapper .tile:hover:not(:has(.icon-image)) img {
  transform: translate(100%, -100%);
}
.icon-info-tiles .icon-tiles-wrapper .tile:hover:not(:has(.icon-image)) .arrow-button:before {
  left: 5px;
  bottom: -5px;
}
@media (max-width: 991px) {
  .icon-info-tiles .icon-tiles-wrapper .tile {
    width: auto !important;
    flex: 0 0 78% !important;
    max-width: 78% !important;
    scroll-snap-align: start;
  }
}
@media (max-width: 575px) {
  .icon-info-tiles .icon-tiles-wrapper .tile {
    flex-basis: 86% !important;
    max-width: 86% !important;
  }
}

/* =========================
   INFINITE TEXT SECTIONS
   ========================= */
.infinite-text-sections {
  overflow: visible !important;
  background-color: #FAFAFA;
  padding-top: 9rem;
  padding-bottom: 9rem;
}
@media (max-width: 575px) {
  .infinite-text-sections {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection {
  display: flex;
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection:first-child {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection:first-child {
    margin-top: 40px;
  }
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection:not(:first-child) {
  margin-top: 150px;
}
@media (max-width: 991px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection:not(:first-child) {
    margin-top: 40px;
  }
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection .left-col {
  width: 695px;
}
@media (max-width: 1599px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection .left-col {
    width: 595px;
  }
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection .right-col {
  width: calc(100% - 695px);
}
@media (max-width: 1599px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection .right-col {
    width: calc(100% - 595px);
  }
}
@media (max-width: 1199px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection .right-col {
    margin-top: 48px;
  }
}
@media (min-width: 992px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection:nth-child(even) .left-col {
    order: 2;
  }
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection:nth-child(even) .left-col {
  margin-right: 0;
  margin-left: 140px;
}
@media (max-width: 1199px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection:nth-child(even) .left-col {
    margin-left: 70px;
  }
}
@media (max-width: 991px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection:nth-child(even) .left-col {
    margin-left: 0px;
    margin-top: 0 !important;
  }
}
@media (max-width: 991px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection:nth-child(even) .left-col:has(.accent-title) {
    margin-top: 48px;
  }
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection:nth-child(even) .left-col:not(:has(.accent-title)) {
    margin-top: 40px;
  }
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection .left-col p:last-child, .infinite-text-sections .infinite-text-sections-wrapper .single-subsection .right-col p:last-child {
  margin-bottom: 0;
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection .left-col {
  margin-right: 140px;
}
@media (max-width: 1199px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection .left-col {
    margin-right: 70px;
  }
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection .left-col img {
  border-radius: 4px;
  aspect-ratio: 625/740;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  position: sticky;
  top: 150px;
}
@media (max-width: 575px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection .left-col img {
    aspect-ratio: 382/452;
  }
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection .accordion-button {
  gap: 16px;
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection .accordion-wrapper {
  margin-top: 64px;
}
@media (max-width: 991px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection .accordion-wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection .accordion-wrapper {
    margin-left: -24px;
    width: calc(100% + 48px);
  }
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection .heading-3 {
  font-size: 2.125rem;
  line-height: 140%;
  font-weight: 600;
  margin-bottom: 24px;
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection .heading-2 {
  margin-bottom: 0 !important;
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection p {
  font-size: 1.1875rem;
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection .accordion-wrapper .heading-3 {
  margin-bottom: 0 !important;
}
.infinite-text-sections .infinite-text-sections-wrapper .single-subsection .accordion-wrapper p {
  font-size: 1rem;
}
@media (max-width: 991px) {
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection {
    flex-direction: column;
  }
  .infinite-text-sections .infinite-text-sections-wrapper .single-subsection .left-col, .infinite-text-sections .infinite-text-sections-wrapper .single-subsection .right-col {
    width: 100%;
  }
}

/* =========================
   CTA (na screenie jest to sekcja „big-cta-section”)
   ========================= */
.big-cta-section {
  background-size: cover;
}
.big-cta-section .content-wrapper {
  background-color: #FAFAFA;
  border-radius: 4px;
  margin-top: 7rem;
  margin-bottom: 7rem;
  margin-left: auto;
  padding: 5rem;
  max-width: 41rem;
}
@media (max-width: 991px) {
  .big-cta-section .content-wrapper {
    max-width: 100%;
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .big-cta-section .content-wrapper {
    padding: 64px 32px;
  }
}
.big-cta-section .content-wrapper p {
  font-size: 1.1875rem;
}
.big-cta-section .content-wrapper .button-wrapper {
  margin-top: 48px;
  gap: 16px;
}
@media (max-width: 575px) {
  .big-cta-section .content-wrapper .button-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .big-cta-section .content-wrapper .button-wrapper a {
    width: 100%;
  }
}

/* =========================
   BLOG THUMBNAILS
   ========================= */
.blog-thumbnails-section {
  background-color: #FAFAFA;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media (max-width: 575px) {
  .blog-thumbnails-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.blog-thumbnails-section .blog-tiles-wrapper {
  margin-top: 48px;
  display: flex;
  gap: 1.5rem;
}
.blog-thumbnails-section .blog-tiles-wrapper .blog-tile {
  position: relative;
  width: calc(33% - 16px);
}
.blog-thumbnails-section .blog-tiles-wrapper .blog-tile .image-wrapper {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 490/320;
  margin-bottom: 40px;
}
.blog-thumbnails-section .blog-tiles-wrapper .blog-tile .image-wrapper img.post-thumb {
  transition: all 0.7s;
}
.blog-thumbnails-section .blog-tiles-wrapper .blog-tile:hover img.post-thumb {
  transform: scale(1.03);
}
.blog-thumbnails-section .blog-tiles-wrapper .blog-tile p {
  color: rgba(2, 22, 39, 0.8);
}
.blog-thumbnails-section .blog-tiles-wrapper .blog-tile .heading-3 {
  color: #021627;
  display: block;
  margin-bottom: 24px;
}
.blog-thumbnails-section .blog-tiles-wrapper .blog-tile .read-more {
  color: var(--blue-color-5);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  .blog-thumbnails-section .blog-tiles-wrapper {
    width: calc(100% + 24px);
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }
  .blog-thumbnails-section .blog-tiles-wrapper::-webkit-scrollbar {
    display: none;
  }
  .blog-thumbnails-section .blog-tiles-wrapper {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .blog-thumbnails-section .blog-tiles-wrapper .blog-tile:last-child {
    margin-right: 48px;
  }
}
@media (max-width: 991px) {
  .blog-thumbnails-section .blog-tiles-wrapper .blog-tile {
    width: auto !important;
    flex: 0 0 78% !important;
    max-width: 78% !important;
    scroll-snap-align: start;
  }
}
@media (max-width: 575px) {
  .blog-thumbnails-section .blog-tiles-wrapper .blog-tile {
    flex-basis: 86% !important;
    max-width: 86% !important;
  }
}/*# sourceMappingURL=home-sections.css.map */