@charset "UTF-8";
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.header {
  border-bottom: 1px solid #E0E0E0;
  padding: 16px 10px;
  position: relative;
  z-index: 100;
  background-color: #FFFFFF;
  position: sticky;
  transition: 0.3s all;
}
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2000;
  position: relative;
}
@media (max-width: 1023px) {
  .header__mobile-toggle {
    display: flex;
  }
}
.header__mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #272727;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.header__mobile-toggle.is-active {
  position: fixed;
  top: 26px;
  right: 24px;
}
.header__mobile-toggle.is-active span {
  background-color: transparent;
}
.header__mobile-toggle.is-active span:first-child {
  transform: translateY(8px) rotate(45deg);
}
.header__mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__mobile-toggle.is-active span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) and (max-width: 1424px) {
  .header__inner {
    position: relative;
  }
}
.header__logo img {
  min-width: 110px;
}
.header__cta {
  display: none !important;
}
@media (min-width: 1024px) {
  .header__cta {
    display: flex !important;
  }
}
.header__nav {
  margin-left: auto;
  padding-right: 16px;
}
@media (min-width: 1180px) {
  .header__nav {
    padding-right: 40px;
  }
}
.header__nav ul {
  display: flex;
  list-style: none;
  gap: 16px;
  margin: 0;
  padding: 0;
}
@media (min-width: 1124px) {
  .header__nav ul {
    gap: 24px;
  }
}
@media (min-width: 1424px) {
  .header__nav li {
    position: relative;
  }
}
.header__nav li.menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}
.header__nav li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23272727' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -3px;
  transition: transform 0.3s ease;
}
.header__nav li.menu-item-has-children.menu-item-active > a:after {
  transform: rotate(-180deg);
}
.header__nav li > a {
  display: inline-block;
  padding: 16px 0;
  position: relative;
  text-decoration: none;
  color: #272727;
  letter-spacing: -0.05px;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 400;
}
.header__nav li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #91FF50;
  transition: width 0.3s ease;
}
.header__nav li > a:hover:before {
  width: 100%;
}
.header__nav li .sub-menu-wrapper {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  min-width: 750px;
  width: fit-content;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}
.header__nav li .sub-menu-wrapper .sub-menu-inner {
  display: flex;
  width: 100%;
}
.header__nav li .sub-menu-wrapper .sub-menu-inner .sub-menu-links {
  width: 65%;
  padding-right: 32px;
}
.header__nav li .sub-menu-wrapper .sub-menu-inner .sub-menu-links .sub-menu-columns {
  display: flex;
  gap: 32px;
  width: max-content;
}
.header__nav li .sub-menu-wrapper .sub-menu-inner .sub-menu-links .sub-menu-columns .sub-menu-column {
  flex: 1;
  min-width: 160px;
}
.header__nav li .sub-menu-wrapper .sub-menu-inner .sub-menu-links .sub-menu-columns .sub-menu-column .sub-menu-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: #272727;
  text-decoration: none;
  display: block;
}
.header__nav li .sub-menu-wrapper .sub-menu-inner .sub-menu-links .sub-menu-columns .sub-menu-column ul {
  display: block;
  margin: 0;
  padding: 0;
}
.header__nav li .sub-menu-wrapper .sub-menu-inner .sub-menu-links .sub-menu-columns .sub-menu-column ul li {
  margin-bottom: 16px;
}
.header__nav li .sub-menu-wrapper .sub-menu-inner .sub-menu-links .sub-menu-columns .sub-menu-column ul li a {
  font-size: 1rem;
  padding: 0 0 6px !important;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}
.header__nav li .sub-menu-wrapper .sub-menu-inner .sub-menu-blog {
  width: 35%;
  min-width: 370px;
  padding-left: 32px;
}
.header__nav li .sub-menu-wrapper .sub-menu-inner .sub-menu-blog h4 {
  font-size: 1.125rem !important;
  margin-bottom: 32px;
  font-weight: 700;
}
.header__nav li .sub-menu-wrapper .sub-menu-inner .sub-menu-blog .newest-post-shortcode {
  margin: 0;
}
.header__nav li.menu-item-active .sub-menu-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  margin-top: 0;
}
@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #FFFFFF;
  z-index: 1000;
  visibility: hidden;
  transition: left 0.4s ease-in-out, visibility 0.1s ease 0.3s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  will-change: left, visibility;
}
.mobile-menu.is-active {
  left: 0;
  visibility: visible;
  transition: left 0.4s ease, visibility 0s ease;
}
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  background: linear-gradient(155deg, rgb(255, 255, 255) 18%, rgba(145, 255, 80, 0.18) 78%);
}
.is-active .mobile-menu__inner {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.mobile-menu__logo img {
  max-width: 120px;
}
.mobile-menu__close {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.mobile-menu__close span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #272727;
  position: absolute;
  top: 50%;
}
.mobile-menu__close span:first-child {
  transform: rotate(45deg);
}
.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}
.mobile-menu__nav {
  flex: 1;
  margin-bottom: 64px;
  overflow-y: auto;
}
.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu__item {
  margin-bottom: 24px;
}
.mobile-menu__item:last-child {
  margin-bottom: 0;
}
.mobile-menu__item--has-children {
  margin-bottom: 24px;
}
.mobile-menu__item--has-children .mobile-menu__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding-left: 24px;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
}
.mobile-menu__item--has-children.is-open {
  margin-bottom: 24px;
}
.mobile-menu__item--has-children.is-open .mobile-menu__submenu {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  padding-top: 24px;
}
.mobile-menu__item--has-children.is-open .mobile-menu__toggle span {
  transform: rotate(225deg);
}
.mobile-menu__item-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu__link {
  color: #272727;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  display: block;
  position: relative;
}
.mobile-menu__toggle {
  background: transparent;
  border: none;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.mobile-menu__toggle span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #272727;
  border-bottom: 2px solid #272727;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  position: absolute;
  top: 4px;
  left: 2px;
}
.mobile-menu__submenu {
  list-style: none;
  margin: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu__subitem {
  margin-bottom: 24px;
}
.mobile-menu__subitem:last-child {
  margin-bottom: 0;
}
.mobile-menu__sublink {
  color: #272727;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 400;
}
.mobile-menu__sublink:active {
  color: #91FF50;
}
.mobile-menu__sublink.current-menu-item {
  color: #91FF50;
}
.mobile-menu__footer {
  margin-top: auto;
  padding-top: 24px;
}
.mobile-menu__cta {
  width: 100%;
  justify-content: center;
}

body.mobile-menu-open {
  overflow: hidden;
}
@media (min-width: 1024px) {
  body.mobile-menu-open {
    overflow: auto;
  }
}

.footer {
  background-color: #FFFFFF;
  padding: 64px 0;
}
.footer--gray {
  background-color: #F8F8F8;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .footer__content {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .footer__content {
    flex-direction: row;
  }
}
.footer__company {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 100%;
  position: relative;
  min-width: 250px;
  max-width: 290px;
}
.footer__logo {
  font-size: 1.75rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 24px;
  text-decoration: none;
  color: #272727;
}
.footer__logo-highlight {
  color: #91FF50;
}
.footer__company-info {
  margin-bottom: 24px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #272727;
}
.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.footer__social a:hover {
  transform: translateY(-3px);
}
.footer__social img {
  width: 24px;
  height: 24px;
}
.footer__menus {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 2;
}
@media (min-width: 768px) {
  .footer__menus {
    width: 100%;
    justify-content: flex-start;
    gap: 32px;
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .footer__menus {
    gap: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__menus {
    gap: 120px;
    justify-content: flex-end;
  }
}
.footer__menu-column {
  min-width: 120px;
  max-width: 190px;
}
.footer__menu-column:first-child {
  margin-top: 0;
}
.footer__menu-column:last-child, .footer__menu-column:nth-last-child(2) {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .footer__menu-column:last-child, .footer__menu-column:nth-last-child(2) {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .footer__menu-column {
    width: 40%;
  }
}
@media (min-width: 1024px) {
  .footer__menu-column {
    width: max-content;
  }
}
.footer__menu-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #91FF50;
  letter-spacing: 0;
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu li {
  margin-bottom: 8px;
}
.footer__google-badge {
  width: 82px;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}
.footer__copyright {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #E0E0E0;
  font-size: 0.875rem;
  color: #8B8B8B;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copyright {
    text-align: left;
  }
}

.hero-home {
  padding: 100px 0;
  display: flex;
  align-items: center;
}
.hero-home__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-home .label {
  margin-bottom: 12px;
  color: #272727;
}
.hero-home__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}
.hero-home__text {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-home__heading {
  margin-bottom: 40px;
  text-align: center;
}
.hero-home__heading span {
  color: #8B8B8B;
}
.hero-home__paragraph {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-home__paragraph {
    font-size: 1.125rem;
    max-width: 85%;
  }
}
.hero-home__boxes {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .hero-home__boxes {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-home__box {
  background-color: #FFFFFF;
  padding: 32px;
  display: flex;
  max-width: 500px;
  position: relative;
  min-height: 240px;
  border-radius: 16px;
  gap: 24px;
  padding: 24px;
}
@media (min-width: 768px) {
  .hero-home__box {
    padding: 40px;
  }
}
.hero-home__box:hover .hero-home__box-link {
  transform: translateY(-5px);
}
.hero-home__box-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero-home__box-title {
    font-size: 1.75rem;
  }
}
.hero-home__box-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.hero-home__box-link {
  background-color: #272727;
  transition: transform 0.3s ease;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-home__box-link {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
}
.hero-home__box-link svg {
  color: #91FF50;
  transform: rotate(-40deg);
}

.case-studies {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 768px) {
  .case-studies {
    padding: 150px 0;
  }
}
.case-studies__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .case-studies__container {
    gap: 100px;
  }
}
.case-studies__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-studies__title .text-secondary {
  color: #8B8B8B;
}
.case-studies__desc {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-top: 16px;
}
@media (min-width: 768px) {
  .case-studies__desc {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 20px;
  }
}
.case-studies__wrapper {
  position: relative;
  width: 100%;
}
.case-studies__swiper {
  overflow: hidden;
}
.case-studies__slide {
  background-color: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
@media (min-width: 768px) {
  .case-studies__slide {
    flex-direction: row;
    gap: 32px;
    padding: 40px;
  }
}
@media (min-width: 1024px) {
  .case-studies__slide {
    gap: 100px;
    padding: 64px;
  }
}
.case-studies__slide-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .case-studies__slide-inner {
    width: 50%;
    margin-bottom: 0;
  }
}
.case-studies__logo {
  max-width: 150px;
  margin-bottom: 24px;
}
.case-studies__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.case-studies__slide-desc {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .case-studies__slide-desc {
    margin-bottom: 48px;
  }
}
.case-studies__results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 24px;
}
@media (max-width: 400px) {
  .case-studies__results {
    gap: 10px;
  }
}
.case-studies__result-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-studies__result-value {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -1.5px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .case-studies__result-value {
    font-size: 2.25rem;
    letter-spacing: -0.64px;
  }
}
.case-studies__result-desc {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.case-studies__image {
  width: 100%;
}
@media (min-width: 768px) {
  .case-studies__image {
    width: 50%;
    height: auto;
    max-height: 550px;
  }
}
.case-studies__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .case-studies__image img {
    height: 100%;
    object-position: center;
    aspect-ratio: unset;
  }
}
.case-studies__navigation {
  position: absolute;
  display: flex;
  gap: 16px;
  z-index: 10;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.case-studies__button-prev, .case-studies__button-next {
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(39, 39, 39, 0.1);
  border-radius: 50%;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
.case-studies__button-prev:hover, .case-studies__button-next:hover {
  background-color: #91FF50;
  border-color: #91FF50;
}
.case-studies__button-prev .my-arrow, .case-studies__button-next .my-arrow {
  width: 20px;
  height: 20px;
  color: #272727;
}
.case-studies__button-prev .my-arrow {
  transform: rotate(180deg);
}
.case-studies__pagination {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
}
.case-studies__pagination .swiper-pagination-bullet {
  background-color: rgba(39, 39, 39, 0.3);
  margin: 0 5px;
  transition: all 0.3s ease;
}
.case-studies__pagination .swiper-pagination-bullet-active {
  background-color: #91FF50;
}
.case-studies__placeholder {
  text-align: center;
  padding: 32px;
  border-radius: 10px;
  color: #8B8B8B;
}
.case-studies__column-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .case-studies__column-layout {
    gap: 64px;
  }
}
.case-studies__column-layout .case-studies__slide {
  width: 100%;
}
.case-studies__button {
  margin-top: 24px;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .case-studies__button {
    margin-top: 32px;
  }
}
.cases-single-page .case-studies__container {
  gap: 32px;
}
@media (min-width: 768px) {
  .cases-single-page .case-studies__container {
    gap: 60px;
  }
}
.cases-single-page .case-studies__slide {
  box-shadow: 0 4px 24px rgba(39, 39, 39, 0.05);
}

.co-robimy {
  padding: 64px 0;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .co-robimy {
    padding: 150px 0;
  }
}
.co-robimy__title {
  margin-top: 12px;
}
.co-robimy__button-wrapper {
  margin-top: 32px;
}
.co-robimy__box {
  background-color: #F8F8F8;
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .co-robimy__box {
    padding: 40px;
  }
}
.co-robimy__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}
.co-robimy__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.co-robimy__box-title {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .co-robimy__box-title {
    margin-bottom: 40px;
  }
}
.co-robimy__box-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #8B8B8B;
}
@media (min-width: 1024px) {
  .co-robimy__mobile-view {
    display: none;
  }
}
.co-robimy__mobile-header {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .co-robimy__mobile-header {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .co-robimy__mobile-header .co-robimy__button-wrapper {
    margin-top: 0;
  }
}
.co-robimy__swiper-container {
  position: relative;
}
.co-robimy__navigation {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.co-robimy .swiper-slide {
  height: auto;
}
.co-robimy__desktop-view {
  display: none;
}
@media (min-width: 1024px) {
  .co-robimy__desktop-view {
    display: block;
  }
}
.co-robimy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 40px;
}
.co-robimy__grid-cell.co-robimy__grid-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.co-robimy__grid-cell.co-robimy__grid-header .co-robimy__button-wrapper {
  margin-top: 64px;
}

.cta-baner {
  padding: 32px 0;
}
@media (min-width: 1024px) {
  .cta-baner {
    padding: 150px 0;
  }
}
.cta-baner__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .cta-baner__container {
    padding: 100px 80px;
  }
}
.cta-baner__title {
  max-width: 800px;
  margin-bottom: 64px;
}
.cta-baner__title span {
  color: #8B8B8B;
}

.dla-kogo {
  padding: 64px 0;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .dla-kogo {
    padding: 40px 0 150px;
  }
}
.dla-kogo__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .dla-kogo__container {
    flex-direction: row;
    gap: 40px;
  }
}
.dla-kogo__header {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .dla-kogo__header {
    margin-bottom: 100px;
  }
}
.dla-kogo__header h2 {
  margin-bottom: 24px;
  margin-top: 12px;
}
.dla-kogo__box {
  flex: 1;
  background-color: #F8F8F8;
  padding: 40px;
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
}
.dla-kogo__box:hover {
  transform: translateY(-10px);
}
.dla-kogo__box img {
  width: 32px;
  height: 32px;
  margin-bottom: 32px;
}
.dla-kogo__box-title {
  margin-bottom: 16px;
}
.dla-kogo__box-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-bottom: 64px;
}
.dla-kogo__box .btn {
  margin-top: auto;
}

.eksperci-z-ekspertami {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .eksperci-z-ekspertami {
    padding: 150px 0;
  }
}
@media (min-width: 768px) {
  .eksperci-z-ekspertami__container {
    gap: 64px;
  }
}
@media (min-width: 1024px) {
  .eksperci-z-ekspertami__container {
    display: flex;
    align-items: flex-start;
    gap: 150px;
  }
}
.eksperci-z-ekspertami__header {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .eksperci-z-ekspertami__header {
    width: 40%;
    margin-bottom: 0;
  }
}
.eksperci-z-ekspertami__title {
  margin-top: 12px;
  margin-bottom: 32px;
}
.eksperci-z-ekspertami__title span {
  color: #8B8B8B;
}
.eksperci-z-ekspertami__description {
  margin-bottom: 64px;
  color: #272727;
  font-size: 1rem;
  line-height: 1.5;
}
.eksperci-z-ekspertami__experts-wrapper {
  position: relative;
}
@media (min-width: 1024px) {
  .eksperci-z-ekspertami__experts-wrapper {
    width: 60%;
  }
}
.eksperci-z-ekspertami__navigation {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .eksperci-z-ekspertami__navigation {
    display: none;
  }
}
.eksperci-z-ekspertami__expert {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) {
  .eksperci-z-ekspertami__expert {
    flex-direction: row;
    gap: 24px;
  }
}
.eksperci-z-ekspertami__image {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .eksperci-z-ekspertami__image {
    width: 35%;
    margin-bottom: 0;
  }
}
.eksperci-z-ekspertami__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.eksperci-z-ekspertami__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .eksperci-z-ekspertami__content {
    width: 65%;
  }
}
.eksperci-z-ekspertami__position {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #8B8B8B;
  margin-bottom: 4px;
}
.eksperci-z-ekspertami__name {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 500;
}
.eksperci-z-ekspertami__bio {
  color: #8B8B8B;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.5;
}
.eksperci-z-ekspertami__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: color 0.3s ease;
}
.eksperci-z-ekspertami__link svg {
  width: 28px;
  height: 28px;
  color: #91FF50;
  color-scheme: #91FF50;
  transition: transform 0.3s ease;
}
.eksperci-z-ekspertami__link:hover svg {
  transform: translateX(3px);
}
.eksperci-z-ekspertami .swiper {
  overflow: hidden;
}
@media (min-width: 768px) {
  .eksperci-z-ekspertami .swiper {
    overflow: visible;
  }
}
.eksperci-z-ekspertami .swiper-slide {
  height: auto;
}
@media (min-width: 768px) {
  .eksperci-z-ekspertami .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }
  .eksperci-z-ekspertami .swiper-slide {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

.eksperci-z-ekspertami.eksperci-modified .eksperci-z-ekspertami__experts {
  overflow: visible;
}
.eksperci-z-ekspertami.eksperci-modified .swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
  transform: none !important;
  transition-property: none !important;
}
.eksperci-z-ekspertami.eksperci-modified .swiper-slide {
  width: 100% !important;
  margin-right: 0 !important;
}
.eksperci-z-ekspertami.eksperci-modified .eksperci-z-ekspertami__navigation {
  display: none;
}

.eksperci-modified .eksperci-z-ekspertami__container {
  flex-direction: column !important;
}
.eksperci-modified .eksperci-z-ekspertami__header {
  width: 100%;
}
.eksperci-modified .eksperci-z-ekspertami__header > * {
  text-align: center;
}
.eksperci-modified .eksperci-z-ekspertami__experts-wrapper {
  width: 100% !important;
}
.eksperci-modified .eksperci-z-ekspertami__experts-wrapper .swiper-wrapper {
  display: grid !important;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .eksperci-modified .eksperci-z-ekspertami__experts-wrapper .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.eksperci-modified .btn {
  display: none !important;
}
.eksperci-modified .eksperci-z-ekspertami__description {
  margin-bottom: 0 !important;
}

.jakie-branze {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 768px) {
  .jakie-branze {
    padding: 150px 0;
  }
}
.jakie-branze__header {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .jakie-branze__header {
    margin-bottom: 100px;
  }
}
.jakie-branze__header .label {
  margin-bottom: 12px;
}
.jakie-branze__header h2 {
  margin-bottom: 24px;
}
.jakie-branze__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .jakie-branze__content {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .jakie-branze__content {
    gap: 100px;
  }
}
.jakie-branze__image {
  flex: 1;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .jakie-branze__image {
    margin-bottom: 0;
    max-width: 30%;
  }
}
.jakie-branze__image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  max-height: 540px;
}
.jakie-branze__list {
  flex: 1;
}
@media (min-width: 768px) {
  .jakie-branze__list {
    flex: 1.5;
  }
}
.jakie-branze__grid {
  display: none;
}
@media (min-width: 768px) {
  .jakie-branze__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .jakie-branze__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.jakie-branze__swiper {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .jakie-branze__swiper {
    display: none;
    height: auto;
  }
}
.jakie-branze__swiper .swiper-wrapper {
  height: auto;
}
.jakie-branze__swiper .swiper-slide {
  height: auto;
}
.jakie-branze__slide-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.jakie-branze__navigation {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  bottom: 0;
  left: 0;
  width: 100%;
}
.jakie-branze__item {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.jakie-branze__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .jakie-branze__item {
    margin-bottom: 0;
  }
}
.jakie-branze__item-icon img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  object-fit: contain;
}
.jakie-branze__item-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2;
  color: #272727;
}
.jakie-branze__item-desc {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  max-width: 90%;
}
.jakie-branze__item-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.konferencje {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 768px) {
  .konferencje {
    padding: 150px 0;
  }
}
@media (min-width: 1024px) {
  .konferencje__container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 64px;
  }
}
.konferencje__header {
  margin-bottom: 64px;
  width: 100%;
}
@media (min-width: 1024px) {
  .konferencje__header {
    text-align: center;
    margin-bottom: 0;
  }
}
.konferencje__title {
  margin-top: 12px;
  margin-bottom: 32px;
}
.konferencje__title span {
  color: #8B8B8B;
}
.konferencje__description {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  max-width: 760px;
}
@media (min-width: 1024px) {
  .konferencje__description {
    margin: 0 auto;
  }
}
.konferencje__gallery-wrapper {
  position: relative;
}
@media (min-width: 1024px) {
  .konferencje__gallery-wrapper {
    flex: 0 0 60%;
  }
}
.konferencje__gallery {
  width: 100%;
}
@media (min-width: 768px) {
  .konferencje__gallery {
    margin: 0;
    padding: 0;
  }
}
.konferencje__image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .konferencje__image {
    height: 320px;
    aspect-ratio: unset;
  }
}
@media (min-width: 1024px) {
  .konferencje__image {
    height: 420px;
  }
}
.konferencje__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.konferencje__image:hover img {
  transform: scale(1.05);
}
.konferencje__navigation {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .konferencje__navigation {
    display: none;
  }
}
.konferencje .swiper {
  overflow: hidden;
}
@media (min-width: 768px) {
  .konferencje .swiper {
    overflow: visible;
  }
}
.konferencje .swiper-slide {
  height: auto;
}
@media (min-width: 768px) {
  .konferencje {
    /* Row 1: three items (1–3), each spans 2 tracks */
    /* Row 2: two centered items (4–5), each spans 2 tracks */
  }
  .konferencje .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    transform: none !important;
  }
  .konferencje .swiper-slide {
    width: auto !important;
  }
  .konferencje .swiper-slide:nth-child(1) {
    grid-column: 1/span 2;
  }
  .konferencje .swiper-slide:nth-child(2) {
    grid-column: 3/span 2;
  }
  .konferencje .swiper-slide:nth-child(3) {
    grid-column: 5/span 2;
  }
  .konferencje .swiper-slide:nth-child(4) {
    grid-column: 1/span 3;
  }
  .konferencje .swiper-slide:nth-child(5) {
    grid-column: 4/span 3;
  }
}

.konkursy {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 768px) {
  .konkursy {
    padding: 140px 0;
  }
}
@media (min-width: 768px) {
  .konkursy__container {
    display: flex;
    align-items: flex-start;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .konkursy__container {
    gap: 100px;
  }
}
.konkursy__content {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .konkursy__content {
    width: 50%;
    margin-bottom: 0;
  }
}
.konkursy .label {
  text-align: center;
}
@media (min-width: 768px) {
  .konkursy .label {
    text-align: left;
  }
}
.konkursy__title {
  margin-top: 12px;
  text-align: center;
}
@media (min-width: 768px) {
  .konkursy__title {
    text-align: left;
  }
}
.konkursy__title span {
  color: #8B8B8B;
}
.konkursy__awards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .konkursy__awards {
    width: 50%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
.konkursy__award {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.konkursy__award img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.liczby {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .liczby {
    padding: 150px 0;
  }
}
.liczby__header {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .liczby__header {
    display: flex;
    justify-content: space-between;
    gap: 64px;
  }
}
.liczby__header-left {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .liczby__header-left {
    width: 55%;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .liczby__header-right {
    width: 45%;
    max-width: 500px;
  }
}
.liczby__container {
  flex-direction: row;
}
@media (min-width: 768px) {
  .liczby__container {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1024px) {
  .liczby__container {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }
}
.liczby__title {
  margin-top: 12px;
}
.liczby__title span {
  color: #8B8B8B;
}
.liczby__description {
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.5;
  color: #272727;
}
.liczby__media {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .liczby__media {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .liczby__media {
    width: 50%;
    margin-bottom: 0;
  }
}
.liczby__video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: #8B8B8B;
}
.liczby__video {
  height: 100%;
  width: 100%;
}
.liczby__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.liczby__video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #8B8B8B;
}
.liczby__video-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.8;
}
.liczby__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
}
.liczby__play-button svg {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}
.liczby__play-button:hover svg {
  transform: scale(1.1);
}
.liczby__stats-wrapper {
  position: relative;
}
@media (min-width: 768px) {
  .liczby__stats-wrapper {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .liczby__stats-wrapper {
    width: 50%;
  }
}
.liczby__stats-grid {
  display: none;
}
@media (min-width: 768px) {
  .liczby__stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 32px;
  }
}
.liczby__swiper {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .liczby__swiper {
    display: none;
    height: auto;
  }
}
.liczby__swiper .swiper-wrapper {
  height: auto;
}
.liczby__swiper .swiper-slide {
  height: auto;
}
.liczby__slide-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .liczby__slide-content {
    gap: 24px;
  }
}
.liczby__navigation {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .liczby__navigation {
    display: none;
  }
}
.liczby__stat {
  background-color: #F8F8F8;
  padding: 24px;
  border-radius: 24px;
  height: auto;
  margin-bottom: 16px;
}
.liczby__stat:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .liczby__stat {
    margin-bottom: 0;
  }
}
.liczby__value {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -1.5px;
  line-height: 1.3;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .liczby__value {
    font-size: 2.25rem;
    letter-spacing: -0.64px;
  }
}
.liczby__stat-desc {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.liczby .swiper-slide {
  height: auto;
}
@media (min-width: 768px) {
  .liczby .swiper-slide {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

.loga-klientow {
  padding: 64px 0;
  background-color: #FFFFFF;
}
@media (min-width: 1024px) {
  .loga-klientow {
    padding: 150px 0;
  }
}
.loga-klientow__grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .loga-klientow__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .loga-klientow__grid {
    display: grid;
    gap: 64px;
    align-items: center;
    grid-template-columns: repeat(5, 1fr);
  }
}
.loga-klientow__swiper {
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .loga-klientow__swiper {
    display: none;
  }
}
.loga-klientow__swiper .swiper-pagination {
  margin-top: 24px;
  position: static;
}
.loga-klientow__swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #8B8B8B;
  opacity: 0.3;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.loga-klientow__swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8B8B8B;
  opacity: 1;
}
.loga-klientow__item {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.loga-klientow__item:hover {
  transform: translateY(-5px);
}
.loga-klientow .swiper-wrapper {
  align-items: center;
}
.loga-klientow__logo {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.loga-klientow__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.nasze-podcasty {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .nasze-podcasty {
    padding: 150px 0;
  }
}
.nasze-podcasty__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .nasze-podcasty__container {
    flex-direction: row;
    gap: 60px;
  }
}
@media (min-width: 1024px) {
  .nasze-podcasty__container {
    gap: 150px;
  }
}
.nasze-podcasty__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .nasze-podcasty__left {
    width: 40%;
  }
}
.nasze-podcasty__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .nasze-podcasty__right {
    width: 60%;
  }
}
.nasze-podcasty__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nasze-podcasty__title {
  margin-top: 8px;
}
.nasze-podcasty__title span {
  color: #8B8B8B;
}
.nasze-podcasty__description {
  font-size: 1rem;
  line-height: 1.5;
  color: #272727;
  margin-bottom: 24px;
}
.nasze-podcasty__image {
  display: none;
}
@media (min-width: 768px) {
  .nasze-podcasty__image {
    display: flex;
    max-height: 290px;
    justify-content: center;
    margin-top: auto;
  }
}
.nasze-podcasty__image img {
  width: 100%;
  object-position: top;
  max-width: 400px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .nasze-podcasty__image img {
    max-width: 100%;
  }
}
.nasze-podcasty__episodes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .nasze-podcasty__episodes {
    margin-top: 0;
  }
}
.nasze-podcasty__episode {
  padding: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .nasze-podcasty__episode {
    padding: 40px;
  }
}
.nasze-podcasty__episode:not(:nth-child(even)) {
  background-color: #F8F8F8;
}
.nasze-podcasty__episode:first-child {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.nasze-podcasty__episode:last-child {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.nasze-podcasty__episode:nth-child(even) {
  background-color: #FFFFFF;
}
.nasze-podcasty__episode .nasze-podcasty__episode-play svg {
  transition: transform 0.3s ease;
}
.nasze-podcasty__episode:hover .nasze-podcasty__episode-play svg {
  transform: translateY(-5px);
}
.nasze-podcasty__episode-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
}
@media (min-width: 768px) {
  .nasze-podcasty__episode-link {
    flex-direction: row;
    align-items: center;
  }
}
.nasze-podcasty__episode-content {
  flex: 1;
}
.nasze-podcasty__episode-title {
  margin-bottom: 8px;
}
.nasze-podcasty__episode-brand {
  color: #8B8B8B;
  text-transform: uppercase;
  font-weight: 700;
}
.nasze-podcasty__episode-play {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.nasze-podcasty__episode-play svg {
  width: 36px;
  height: 36px;
  color: #272727;
  transition: color 0.3s ease;
}

.opinie {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 768px) {
  .opinie {
    padding: 150px 0;
  }
}
.opinie__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .opinie__container {
    gap: 100px;
  }
}
.opinie__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 600px;
}
@media (min-width: 768px) {
  .opinie__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
  }
}
.opinie__title-wrapper {
  flex: 1;
}
.opinie__title span {
  color: #8B8B8B;
}
@media (min-width: 768px) {
  .opinie__navigation {
    display: flex;
    gap: 24px;
  }
}
.opinie__navigation--mobile {
  display: flex;
  margin-top: 32px;
  gap: 24px;
}
@media (min-width: 768px) {
  .opinie__navigation--mobile {
    display: none;
  }
}
.opinie__navigation--desktop {
  display: none;
}
@media (min-width: 768px) {
  .opinie__navigation--desktop {
    display: flex;
  }
}
.opinie__wrapper {
  position: relative;
  overflow: hidden;
}
.opinie__swiper {
  overflow: hidden;
}
@media (min-width: 768px) {
  .opinie__swiper {
    overflow: visible;
  }
}
.opinie__item {
  height: 100%;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .opinie__item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.opinie__item-header {
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .opinie__item-header {
    padding: 40px;
  }
}
.opinie__logo {
  max-width: 150px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .opinie__logo {
    margin-bottom: 24px;
  }
}
.opinie__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 550px;
}
.opinie__company-name {
  color: #272727;
}
.opinie__company-desc {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-top: 24px;
}
.opinie__media {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 24px;
}
.opinie__media--image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .opinie__media--image img {
    aspect-ratio: unset;
  }
}
.opinie__media--video {
  position: relative;
}
.opinie__media--video video {
  width: 100%;
  height: auto;
  display: block;
}
.opinie__media--video .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.opinie__media--video .play-button svg {
  width: 20px;
  height: 20px;
  fill: #272727;
  margin-left: 3px;
}
.opinie__media--video .play-button:hover {
  background: #FFFFFF;
  transform: translate(-50%, -50%) scale(1.1);
}
.opinie__content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .opinie__content {
    padding: 32px;
  }
}
.opinie__quote-title {
  margin-bottom: 24px;
}
.opinie__quote {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .opinie__quote {
    margin-bottom: 32px;
  }
}
.opinie__revenue {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 64px;
}
@media (min-width: 768px) {
  .opinie__revenue {
    margin-bottom: 24px;
    margin-top: 0;
  }
}
.opinie__revenue-label {
  font-size: 0.9rem;
  color: #8B8B8B;
}
.opinie__revenue-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: #272727;
}
.opinie__author {
  margin-top: auto;
}
.opinie__author-name {
  font-weight: 600;
  color: #272727;
  line-height: 1.5;
}
.opinie__author-position {
  color: #8B8B8B;
}
.opinie .swiper-slide {
  height: auto;
}
@media (min-width: 768px) {
  .opinie .swiper-slide {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

.zespol {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .zespol {
    padding: 150px 0;
  }
}
.zespol__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .zespol__container {
    gap: 60px;
  }
}
.zespol__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .zespol__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 100px;
  }
}
.zespol__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .zespol__left {
    width: 40%;
  }
}
.zespol__right {
  flex: 1;
  position: relative;
}
@media (min-width: 768px) {
  .zespol__right {
    width: 60%;
  }
}
.zespol__title span {
  color: #8B8B8B;
}
.zespol__desc {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-top: 20px;
}
.zespol__wrapper {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .zespol__wrapper {
    overflow: visible;
  }
}
.zespol__swiper .swiper-slide {
  height: auto;
}
.zespol__member {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.zespol__image {
  width: 100%;
  aspect-ratio: 1/1.2;
  border-radius: 24px;
  overflow: hidden;
}
.zespol__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.zespol__image:hover img {
  transform: scale(1.03);
}
.zespol__name {
  margin-top: 20px;
}
.zespol__position {
  font-size: 1rem;
  letter-spacing: -0.05px;
  color: #8B8B8B;
}
.zespol__navigation {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .zespol__navigation {
    margin-top: 64px;
    justify-content: flex-start;
  }
}
.zespol__navigation--mobile {
  display: flex;
}
@media (min-width: 768px) {
  .zespol__navigation--mobile {
    display: none;
  }
}
.zespol__navigation--desktop {
  display: none;
}
@media (min-width: 768px) {
  .zespol__navigation--desktop {
    display: flex;
  }
}
.zespol__placeholder {
  text-align: center;
  padding: 32px;
  background-color: #F8F8F8;
  border-radius: 10px;
  color: #8B8B8B;
}

.oferty-pracy {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 1024px) {
  .oferty-pracy {
    padding: 150px 0;
  }
}
.oferty-pracy__header {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .oferty-pracy__header {
    text-align: center;
    margin-bottom: 120px;
  }
}
.oferty-pracy__title {
  margin-bottom: 40px;
  margin-top: 12px;
}
.oferty-pracy__description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.oferty-pracy__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .oferty-pracy__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .oferty-pracy__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.oferty-pracy__item {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 1024px) {
  .oferty-pracy__item {
    padding: 40px;
  }
}
.oferty-pracy__item:hover {
  transform: translateY(-5px);
}
.oferty-pracy__item-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 32px;
}
.oferty-pracy__item-icon img {
  width: 100%;
  height: 100%;
}
.oferty-pracy__item-title {
  margin-bottom: 32px;
}
.oferty-pracy__salary {
  font-size: 1rem;
  font-weight: 400;
  color: #6C6C6C;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.oferty-pracy__details {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.oferty-pracy__detail {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  line-height: 1.5;
}
.oferty-pracy__detail-icon {
  width: 14px;
  height: 14px;
  margin-right: 12px;
  flex-shrink: 0;
}
.oferty-pracy__button {
  margin-top: auto;
  align-self: flex-start;
}
.oferty-pracy__no-offers {
  text-align: center;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 24px;
  color: #8B8B8B;
}

.hero-page {
  padding: 64px 0;
  display: flex;
  align-items: center;
  min-height: 560px;
}
@media (min-width: 768px) {
  .hero-page {
    padding: 100px 0 150px;
  }
}
.hero-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-page .label {
  margin-bottom: 12px;
}
.hero-page__heading {
  margin-bottom: 64px;
  text-align: center;
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .hero-page__heading {
    font-size: 4rem;
  }
}
.hero-page__heading span {
  color: #8B8B8B;
  display: block;
}
@media (min-width: 768px) {
  .hero-page__heading span {
    display: inline;
  }
}
.cytat-prezesa {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 768px) {
  .cytat-prezesa {
    padding: 150px 0;
  }
}
.cytat-prezesa__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .cytat-prezesa__content {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 1024px) {
  .cytat-prezesa__content {
    gap: 80px;
  }
}
.cytat-prezesa__quote-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(242, 255, 235) 86%, rgb(238, 255, 227) 100%);
  padding: 32px;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .cytat-prezesa__quote-wrapper {
    width: 70%;
    padding: 80px 40px;
  }
}
@media (min-width: 1024px) {
  .cytat-prezesa__quote-wrapper {
    padding: 80px;
  }
}
.cytat-prezesa__quote-icon {
  display: flex;
  gap: 16px;
  position: absolute;
  top: -35px;
  width: auto;
  height: 46px;
  right: 10%;
}
@media (min-width: 768px) {
  .cytat-prezesa__quote-icon {
    height: 97px;
    top: -50px;
  }
}
.cytat-prezesa__quote-icon img {
  width: 100%;
  height: 100%;
}
.cytat-prezesa__quote {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
@media (min-width: 1024px) {
  .cytat-prezesa__quote {
    font-size: 2rem;
    letter-spacing: -1.5px;
  }
}
.cytat-prezesa__author {
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: -0.5px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .cytat-prezesa__image-wrapper {
    width: 30%;
  }
}
.cytat-prezesa__image {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .cytat-prezesa__image {
    aspect-ratio: unset;
  }
}

.quote-width-100 .cytat-prezesa__quote-wrapper {
  width: 100% !important;
}
.quote-width-100 .cytat-prezesa__quote {
  font-size: 1.25rem !important;
}
@media (min-width: 1024px) {
  .quote-width-100 .cytat-prezesa__quote {
    font-size: 1.5rem !important;
  }
}

.nasza-wizja {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .nasza-wizja {
    padding: 150px 0;
  }
}
.nasza-wizja__header {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .nasza-wizja__header {
    margin-bottom: 100px;
  }
}
.nasza-wizja__header .label {
  margin-bottom: 12px;
}
.nasza-wizja__title span {
  color: #8B8B8B;
}
.nasza-wizja__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .nasza-wizja__content {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }
}
.nasza-wizja__image-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
@media (min-width: 1024px) {
  .nasza-wizja__image-wrapper {
    width: 40%;
  }
}
@media (min-width: 768px) {
  .nasza-wizja__image-wrapper {
    aspect-ratio: unset;
  }
}
.nasza-wizja__image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 100%;
}
@media (min-width: 768px) {
  .nasza-wizja__image {
    max-height: 600px;
  }
}
.nasza-wizja__boxes {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .nasza-wizja__boxes {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .nasza-wizja__boxes {
    width: 60%;
  }
}
.nasza-wizja__box {
  flex: 1;
  background-color: #F8F8F8;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .nasza-wizja__box {
    padding: 40px;
  }
}
.nasza-wizja__box:first-child {
  flex: 60%;
}
.nasza-wizja__box:last-child {
  flex: 40%;
}
.nasza-wizja__box-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}
.nasza-wizja__box-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nasza-wizja__box-title {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .nasza-wizja__box-title {
    margin-bottom: 64px;
  }
}
.nasza-wizja__box-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}

.nasza-wizja.bg-beige .nasza-wizja__box {
  background-color: #FFFFFF;
}

.zdjecie-pelna-szerokosc {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nasze-wartosci {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .nasze-wartosci {
    padding: 150px 0;
  }
}
.nasze-wartosci__header {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .nasze-wartosci__header {
    margin-bottom: 100px;
  }
}
.nasze-wartosci__header .label {
  margin-bottom: 12px;
  text-align: left;
}
@media (min-width: 768px) {
  .nasze-wartosci__header .label {
    text-align: center;
  }
}
.nasze-wartosci__title {
  font-size: 2rem;
  line-height: 1.3;
  text-align: left;
}
@media (min-width: 768px) {
  .nasze-wartosci__title {
    font-size: 2.5rem;
    text-align: center;
  }
}
.nasze-wartosci__title span {
  color: #8B8B8B;
}
.nasze-wartosci__desktop {
  display: none;
}
@media (min-width: 768px) {
  .nasze-wartosci__desktop {
    display: block;
  }
}
.nasze-wartosci__grid {
  display: grid;
  gap: 80px;
}
@media (min-width: 768px) {
  .nasze-wartosci__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nasze-wartosci__mobile {
  position: relative;
}
@media (min-width: 768px) {
  .nasze-wartosci__mobile {
    display: none;
  }
}
.nasze-wartosci__swiper {
  overflow: hidden;
  padding-bottom: 24px;
}
.nasze-wartosci__item {
  height: auto;
  display: flex;
  gap: 24px;
}
.nasze-wartosci__item-content {
  display: flex;
  flex-direction: column;
}
.nasze-wartosci__item-icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-bottom: 16px;
}
.nasze-wartosci__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nasze-wartosci__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.nasze-wartosci__item-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.nasze-wartosci__navigation {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.nasze-wartosci__prev, .nasze-wartosci__next {
  cursor: pointer;
}

.proces-dzialania {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 1024px) {
  .proces-dzialania {
    padding: 150px 0;
  }
}
.proces-dzialania__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .proces-dzialania__content {
    flex-direction: row;
    gap: 60px;
  }
}
@media (min-width: 1024px) {
  .proces-dzialania__content {
    gap: 150px;
  }
}
.proces-dzialania__left {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .proces-dzialania__left {
    width: 50%;
  }
}
.proces-dzialania__right {
  width: 100%;
}
@media (min-width: 768px) {
  .proces-dzialania__right {
    width: 50%;
  }
}
.proces-dzialania__title {
  margin-top: 12px;
  margin-bottom: 32px;
}
.proces-dzialania__title span {
  color: #8B8B8B;
}
.proces-dzialania__description {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-bottom: 64px;
}
.proces-dzialania__boxes {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .proces-dzialania__boxes {
    margin-top: 60px;
  }
}
.proces-dzialania__box {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
}
@media (min-width: 768px) {
  .proces-dzialania__box {
    padding: 32px;
  }
}
.proces-dzialania__box-title {
  margin-top: 0;
  margin-bottom: 32px;
}
.proces-dzialania__box-content {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.proces-dzialania__image {
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .proces-dzialania__image {
    aspect-ratio: unset;
  }
}
@media (min-width: 1024px) {
  .proces-dzialania__image {
    margin-top: 100px;
  }
}
.proces-dzialania__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.proces-dzialania__phases {
  display: flex;
  flex-direction: column;
  position: relative;
}
.proces-dzialania__phase {
  position: relative;
  padding-bottom: 64px;
  display: flex;
  gap: 20px;
}
.proces-dzialania__phase:last-child {
  padding-bottom: 0;
}
.proces-dzialania__phase:last-child .proces-dzialania__phase-line {
  width: 0px;
}
@media (min-width: 768px) {
  .proces-dzialania__phase {
    gap: 40px;
  }
}
.proces-dzialania__phase-title {
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .proces-dzialania__phase-title {
    font-size: 2rem;
  }
}
.proces-dzialania__phase-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.proces-dzialania__phase-line {
  height: 80%;
  width: 2px;
  background-color: #E0E0E0;
  margin-top: 24px;
}
.proces-dzialania__phase-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proces-dzialania__phase-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.proces-dzialania__phase-icon img {
  width: 32px;
  min-width: 32px;
  height: 32px;
  object-fit: contain;
}
.proces-dzialania__phase-subtitle {
  font-weight: 700;
  color: #8B8B8B;
  text-transform: uppercase;
}
.proces-dzialania__phase-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.proces-dzialania__placeholder {
  padding: 20px;
  background-color: #FFFFFF;
  text-align: center;
  font-style: italic;
  border-radius: 16px;
}

.proces-dzialania.bg-white .proces-dzialania__box {
  background-color: #F8F8F8;
}

.kontakt-sekcja {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .kontakt-sekcja {
    padding: 150px 0;
  }
}
.kontakt-sekcja__wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 942px) {
  .kontakt-sekcja__wrapper {
    flex-direction: row;
    gap: 124px;
  }
}
.kontakt-sekcja__content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 942px) {
  .kontakt-sekcja__content {
    width: 50%;
  }
}
.kontakt-sekcja__title {
  margin-top: 12px;
}
.kontakt-sekcja__title span {
  color: #8B8B8B;
}
.kontakt-sekcja__text {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.kontakt-sekcja__form {
  width: 100%;
  background-color: #F8F8F8;
  border-radius: 24px;
  padding: 32px;
}
@media (min-width: 942px) {
  .kontakt-sekcja__form {
    width: 50%;
  }
}
.kontakt-sekcja__form-title {
  margin-bottom: 32px;
}
.kontakt-sekcja__form .wpcf7-form {
  display: flex;
  flex-direction: column;
}
.kontakt-sekcja__form .contact-form-wrapper > div, .kontakt-sekcja__form .contact-form-wrapper > p {
  margin-bottom: 24px;
}
.kontakt-sekcja__form .contact-form-wrapper > div:last-child, .kontakt-sekcja__form .contact-form-wrapper > p:last-child {
  margin-bottom: 0;
}
.kontakt-sekcja__form .actions {
  display: flex;
  gap: 24px;
}
.kontakt-sekcja__form .contact-form-row {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .kontakt-sekcja__form .contact-form-row {
    flex-direction: row;
  }
}
.kontakt-sekcja__form .form-consent {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.kontakt-sekcja__form label {
  display: block;
  margin-bottom: 12px;
  color: rgba(39, 39, 39, 0.7);
  font-size: 0.875rem;
}
.kontakt-sekcja__form input[type=text],
.kontakt-sekcja__form input[type=email],
.kontakt-sekcja__form input[type=tel],
.kontakt-sekcja__form textarea {
  background-color: #FFFFFF;
}
.kontakt-sekcja__form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 100px;
  width: fit-content;
  color: #FFFFFF;
  background-color: #272727;
  border: 1px solid #272727;
  padding: 16px 32px;
}
.kontakt-sekcja__form .wpcf7-submit:hover {
  background-color: transparent;
  color: #272727;
}
.kontakt-sekcja__form .wpcf7-submit:hover svg {
  transform: translateX(5px);
  color: #272727;
}
.kontakt-sekcja__form .wpcf7-spinner {
  margin-left: 16px;
}
.kontakt-sekcja__form .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #e74c3c;
}
.kontakt-sekcja__form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px;
  font-size: 0.875rem;
  border-radius: 4px;
}
.kontakt-sekcja__contact-info {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  gap: 16px;
}
@media (min-width: 1024px) {
  .kontakt-sekcja__contact-info {
    margin-top: auto;
  }
}
.kontakt-sekcja__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.kontakt-sekcja__contact-icon img {
  width: 20px;
  height: 20px;
}
.kontakt-sekcja__contact-text a {
  color: rgba(39, 39, 39, 0.7);
}
.kontakt-sekcja__person {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 48px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .kontakt-sekcja__person {
    gap: 24px;
  }
}
.kontakt-sekcja__person-image {
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .kontakt-sekcja__person-image {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
}
.kontakt-sekcja__person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kontakt-sekcja__person-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kontakt-sekcja__person-position {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}

.kontakt-sekcja.bg-beige .kontakt-sekcja__form {
  background-color: #FFFFFF;
}
.kontakt-sekcja.bg-beige input[type=text],
.kontakt-sekcja.bg-beige input[type=email],
.kontakt-sekcja.bg-beige input[type=tel],
.kontakt-sekcja.bg-beige textarea {
  background-color: #F8F8F8;
}

.statystyki {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .statystyki {
    padding: 150px 0;
  }
}
.statystyki__header {
  margin-bottom: 64px;
  display: flex;
  gap: 32px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .statystyki__header {
    margin-bottom: 100px;
  }
}
@media (min-width: 1024px) {
  .statystyki__header {
    gap: 100px;
    flex-direction: row;
  }
}
.statystyki__header-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1024px) {
  .statystyki__header-content {
    width: 50%;
  }
}
.statystyki__text {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.statystyki__title {
  margin-top: 12px;
}
.statystyki__title span {
  color: #8B8B8B;
}
.statystyki__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .statystyki__container {
    flex-direction: row;
    gap: 64px;
    justify-content: space-between;
  }
}
.statystyki__item {
  width: 100%;
}
@media (min-width: 768px) {
  .statystyki__item {
    width: calc(50% - 32px);
  }
}
@media screen and (min-width: 1250px) {
  .statystyki__item {
    min-width: 245px;
  }
}
.statystyki__value {
  font-size: 2.5rem;
  font-weight: 600;
  color: #272727;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .statystyki__value {
    font-size: 4rem;
  }
}
.statystyki__text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
@media (min-width: 1024px) {
  .statystyki__text {
    width: 50%;
  }
}

.sekcja-bloki {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 768px) {
  .sekcja-bloki {
    padding: 150px 0;
  }
  .sekcja-bloki .sekcja-bloki.blocks-swiper .swiper-slide {
    height: auto;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .sekcja-bloki .sekcja-bloki.blocks-swiper .swiper-slide {
    transition: opacity 0.3s ease;
  }
  .sekcja-bloki .sekcja-bloki.blocks-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.7;
  }
  .sekcja-bloki .sekcja-bloki.blocks-swiper .sekcja-bloki__item {
    height: 100%;
  }
}
.sekcja-bloki__header {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .sekcja-bloki__header {
    margin-bottom: 100px;
  }
}
.sekcja-bloki__title {
  margin-top: 12px;
}
.sekcja-bloki__title span {
  color: #8B8B8B;
}
.sekcja-bloki__description {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  max-width: 800px;
  margin-top: 32px;
}
.sekcja-bloki__grid {
  display: none;
  grid-template-columns: repeat(var(--grid-columns, 4), 1fr);
  grid-template-rows: repeat(var(--grid-rows, 1), auto);
  gap: 32px;
}
@media (min-width: 768px) {
  .sekcja-bloki__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sekcja-bloki__grid {
    grid-template-columns: repeat(var(--grid-columns, 4), 1fr);
  }
}
.sekcja-bloki__item {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}
@media (min-width: 1024px) {
  .sekcja-bloki__item {
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .sekcja-bloki__item {
    padding: 40px;
  }
}
.sekcja-bloki__item:hover {
  transform: translateY(-5px);
}
.sekcja-bloki__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sekcja-bloki__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.sekcja-bloki__item-text {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.sekcja-bloki__swiper-container {
  display: block;
  position: relative;
}
@media (min-width: 768px) {
  .sekcja-bloki__swiper-container {
    display: none;
  }
}
.sekcja-bloki.blocks-swiper .sekcja-bloki__grid {
  display: none;
}
.sekcja-bloki.blocks-swiper .sekcja-bloki__swiper-container {
  display: block;
}
@media (min-width: 768px) {
  .sekcja-bloki.blocks-swiper .sekcja-bloki__swiper-container {
    display: block;
    overflow: hidden;
    padding-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  .sekcja-bloki.blocks-swiper .sekcja-bloki__swiper-container {
    padding-bottom: 0;
  }
}
.sekcja-bloki.blocks-swiper .sekcja-bloki__navigation {
  display: flex;
}
@media (min-width: 1024px) {
  .sekcja-bloki.blocks-swiper .sekcja-bloki__navigation {
    display: none;
  }
}
.sekcja-bloki__navigation {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.sekcja-bloki.bg-white {
  background-color: #FFFFFF;
}
.sekcja-bloki.bg-white .sekcja-bloki__item {
  background-color: #F8F8F8;
}

.sekcja-bloki.blocks-swiper .swiper-slide {
  height: auto;
}
@media (min-width: 768px) {
  .sekcja-bloki.blocks-swiper .swiper-slide {
    transition: opacity 0.3s ease;
  }
  .sekcja-bloki.blocks-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.7;
  }
  .sekcja-bloki.blocks-swiper .sekcja-bloki__item {
    height: 100%;
  }
}

.blocks-modified div.sekcja-bloki__item {
  background-color: transparent !important;
  padding: 0 !important;
}
.blocks-modified .sekcja-bloki__grid {
  gap: 80px 64px;
}

.blocks-centered .sekcja-bloki__header {
  text-align: center !important;
}

.columns-2-3 .sekcja-bloki__grid {
  grid-template-columns: repeat(6, 1fr) !important;
}
.columns-2-3 .sekcja-bloki__item {
  grid-column: span 2 !important;
}
.columns-2-3 .sekcja-bloki__item:nth-child(2), .columns-2-3 .sekcja-bloki__item:first-child {
  grid-column: span 3 !important;
}

.sekcja-bloki-wrapped {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .sekcja-bloki-wrapped {
    padding: 150px 0;
  }
}
.sekcja-bloki-wrapped .container {
  overflow-x: hidden;
}
.sekcja-bloki-wrapped__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .sekcja-bloki-wrapped__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
  }
}
@media (min-width: 1024px) {
  .sekcja-bloki-wrapped__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.sekcja-bloki-wrapped__header {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  margin-bottom: 24px;
  min-width: 0;
}
@media (min-width: 1024px) {
  .sekcja-bloki-wrapped__header {
    margin-bottom: 0;
  }
  [data-columns="1"] .sekcja-bloki-wrapped__header {
    grid-column: 1/span 1;
    width: 100%;
  }
  [data-columns="2"] .sekcja-bloki-wrapped__header {
    grid-column: 1/span 2;
    width: 100%;
  }
  [data-columns="3"] .sekcja-bloki-wrapped__header {
    grid-column: 1/span 3;
    width: 100%;
  }
}
.sekcja-bloki-wrapped__title {
  margin-top: 12px;
}
.sekcja-bloki-wrapped__title span {
  color: #8B8B8B;
}
.sekcja-bloki-wrapped__description {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
@media (min-width: 1024px) {
  .sekcja-bloki-wrapped__description {
    margin-top: 64px;
  }
}
.sekcja-bloki-wrapped__box {
  background-color: #F8F8F8;
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .sekcja-bloki-wrapped__box {
    padding: 30px;
  }
  [data-columns="1"] .sekcja-bloki-wrapped__box.desktop-only:nth-of-type(2) {
    grid-column: 2;
  }
  [data-columns="1"] .sekcja-bloki-wrapped__box.desktop-only:nth-of-type(3) {
    grid-column: 3;
  }
  [data-columns="1"] .sekcja-bloki-wrapped__box.desktop-only:nth-of-type(n+4) {
    grid-column: auto;
  }
  [data-columns="2"] .sekcja-bloki-wrapped__box.desktop-only:nth-of-type(2) {
    grid-column: 3;
  }
  [data-columns="2"] .sekcja-bloki-wrapped__box.desktop-only:nth-of-type(n+3) {
    grid-column: auto;
  }
}
@media (min-width: 1024px) {
  .sekcja-bloki-wrapped__box {
    padding: 40px;
  }
}
.sekcja-bloki-wrapped__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.sekcja-bloki-wrapped__icon img {
  width: 100%;
  height: auto;
}
.sekcja-bloki-wrapped__box-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}
.sekcja-bloki-wrapped__box-title {
  margin-bottom: 24px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
@media (min-width: 1024px) {
  .sekcja-bloki-wrapped__box-title {
    margin-bottom: 40px;
  }
}
.sekcja-bloki-wrapped__box-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.sekcja-bloki-wrapped .desktop-only {
  display: none;
}
@media (min-width: 1024px) {
  .sekcja-bloki-wrapped .desktop-only {
    display: block;
  }
}
.sekcja-bloki-wrapped .mobile-only {
  display: block;
}
@media (min-width: 1024px) {
  .sekcja-bloki-wrapped .mobile-only {
    display: none;
  }
}
.sekcja-bloki-wrapped__swiper-container {
  position: relative;
  padding-bottom: 80px;
  grid-column: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.sekcja-bloki-wrapped__swiper-container .swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.sekcja-bloki-wrapped__swiper-container .swiper-wrapper {
  width: 100%;
  display: flex;
}
.sekcja-bloki-wrapped__swiper-container .swiper-slide {
  width: 100% !important;
  box-sizing: border-box;
  padding: 0;
}
.sekcja-bloki-wrapped__navigation {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: flex;
  gap: 24px;
  margin-top: 32px;
  z-index: 10;
}
.sekcja-bloki-wrapped .swiper-slide .sekcja-bloki-wrapped__box {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  height: 100%;
}

.sekcja-tekst-zdjecie {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 1024px) {
  .sekcja-tekst-zdjecie {
    padding: 150px 0;
  }
}
.sekcja-tekst-zdjecie__wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .sekcja-tekst-zdjecie__wrapper {
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .sekcja-tekst-zdjecie__wrapper {
    gap: 150px;
  }
}
.sekcja-tekst-zdjecie__content {
  width: 100%;
}
@media (min-width: 768px) {
  .sekcja-tekst-zdjecie__content {
    width: 50%;
  }
}
.sekcja-tekst-zdjecie__heading {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .sekcja-tekst-zdjecie__heading {
    margin-bottom: 64px;
  }
}
.sekcja-tekst-zdjecie__title {
  margin-top: 12px;
  margin-bottom: 32px;
}
.sekcja-tekst-zdjecie__title span {
  color: #8B8B8B;
}
@media (min-width: 1024px) {
  .sekcja-tekst-zdjecie__title {
    margin-bottom: 64px;
  }
}
.sekcja-tekst-zdjecie ul li {
  padding-bottom: 20px;
}
.sekcja-tekst-zdjecie ul li:last-child {
  padding-bottom: 0;
}
.sekcja-tekst-zdjecie__text {
  color: rgba(39, 39, 39, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}
.sekcja-tekst-zdjecie__text p {
  margin-bottom: 24px;
}
.sekcja-tekst-zdjecie__text p:last-child {
  margin-bottom: 0;
}
.sekcja-tekst-zdjecie__image {
  width: 100%;
}
@media (min-width: 768px) {
  .sekcja-tekst-zdjecie__image {
    width: 50%;
  }
}
.sekcja-tekst-zdjecie__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.sekcja-co-robimy {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .sekcja-co-robimy {
    padding: 150px 0;
  }
}
.sekcja-co-robimy__header {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .sekcja-co-robimy__header {
    margin-bottom: 100px;
  }
}
.sekcja-co-robimy__title {
  margin-top: 12px;
}
.sekcja-co-robimy__title span {
  color: #8B8B8B;
}
.sekcja-co-robimy__blocks {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.sekcja-co-robimy__block {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .sekcja-co-robimy__block {
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .sekcja-co-robimy__block {
    gap: 100px;
  }
}
.sekcja-co-robimy__image {
  width: 100%;
  height: 100%;
  background-color: #F8F8F8;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sekcja-co-robimy__image {
    width: 50%;
  }
}
.sekcja-co-robimy__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sekcja-co-robimy__placeholder {
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  background-color: #F8F8F8;
}
.sekcja-co-robimy__content {
  width: 100%;
}
@media (min-width: 768px) {
  .sekcja-co-robimy__content {
    width: 50%;
  }
}
.sekcja-co-robimy__block-title {
  margin-top: 12px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .sekcja-co-robimy__block-title {
    margin-bottom: 40px;
  }
}
.sekcja-co-robimy__block-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .sekcja-co-robimy__block-text {
    margin-bottom: 64px;
  }
}
.sekcja-co-robimy__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 100px;
  width: fit-content;
  color: #FFFFFF;
  background-color: #272727;
  border: 1px solid #272727;
  padding: 16px 32px;
}
.sekcja-co-robimy__button:hover {
  background-color: transparent;
  color: #272727;
}
.sekcja-co-robimy__button:hover svg {
  transform: translateX(5px);
  color: #272727;
}

.slider-loga {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .slider-loga {
    padding: 150px 0;
  }
}
.slider-loga .swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slider-loga__slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-loga__image-wrapper {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
}
@media (min-width: 768px) {
  .slider-loga__image-wrapper {
    height: 55px;
    padding: 0 16px;
  }
}
.slider-loga__image {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.blok-ikonka {
  padding-bottom: 32px;
}
.blok-ikonka .container {
  padding: 0 !important;
}
.blok-ikonka__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.blok-ikonka__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .blok-ikonka__icon {
    width: 40px;
    height: 40px;
  }
}
.blok-ikonka__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.blok-ikonka__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #272727;
  margin: 0;
}
@media (min-width: 768px) {
  .blok-ikonka__title {
    font-size: 1.25rem;
  }
}

.dlaczego-warto {
  padding: 64px 0;
}
.dlaczego-warto__header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) {
  .dlaczego-warto__header {
    margin-bottom: 24px;
  }
}
.dlaczego-warto__title {
  max-width: 600px;
  margin-bottom: 32px;
  margin-top: 12px;
}
.dlaczego-warto__title span {
  color: #8B8B8B;
}
.dlaczego-warto__content {
  width: 100%;
}
.dlaczego-warto__grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
@media (min-width: 1024px) {
  .dlaczego-warto__grid {
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .dlaczego-warto__grid {
    display: grid;
  }
}
.dlaczego-warto__grid .dlaczego-warto__header {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}
.dlaczego-warto__box {
  padding: 24px;
  background-color: #F8F8F8;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .dlaczego-warto__box {
    padding: 40px;
  }
}
.dlaczego-warto__box:hover {
  transform: translateY(-5px);
}
.dlaczego-warto__icon {
  margin-bottom: 16px;
}
.dlaczego-warto__icon img {
  width: 32x;
  height: 32x;
}
.dlaczego-warto__box-title {
  margin-bottom: 40px;
}
.dlaczego-warto__box-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  line-height: 1.6;
  color: #8B8B8B;
}
@media (min-width: 768px) {
  .dlaczego-warto__swiper-container {
    display: none;
  }
}
.dlaczego-warto__swiper-container .swiper {
  height: 100%;
}
.dlaczego-warto__swiper-container .dlaczego-warto__header {
  margin-bottom: 32px;
}
.dlaczego-warto__nav {
  display: flex;
  margin-top: 32px;
  gap: 24px;
  width: 100%;
}

.nasze-brandy {
  padding: 50px 0;
  background-color: #FFFFFF;
}
.nasze-brandy__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .nasze-brandy__grid {
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .nasze-brandy__grid {
    gap: 100px;
    flex-wrap: nowrap;
  }
}
.nasze-brandy__item {
  width: 220px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.nasze-brandy__item:hover {
  transform: translateY(-5px);
}
.nasze-brandy__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.kontakt-hero {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .kontakt-hero {
    padding: 100px 0;
  }
}
.kontakt-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .kontakt-hero__inner {
    flex-direction: row;
  }
}
.kontakt-hero__col-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .kontakt-hero__col-1 {
    width: 50%;
  }
}
.kontakt-hero__col-1 h2 {
  margin-top: 12px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .kontakt-hero__col-1 h2 {
    margin-bottom: 0;
  }
}
.kontakt-hero__col-1 h2 span {
  color: #8B8B8B;
}
.kontakt-hero__col-2 {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .kontakt-hero__col-2 {
    width: 50%;
  }
}
.kontakt-hero__col-2 p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}

.kontakt-main {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 768px) {
  .kontakt-main {
    padding: 100px 0;
  }
}
.kontakt-main__content {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .kontakt-main__content {
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .kontakt-main__content {
    gap: 100px;
  }
}
.kontakt-main__left {
  flex: 1;
  min-width: 300px;
}
.kontakt-main__right {
  flex: 1;
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .kontakt-main__right {
    padding: 40px;
  }
}
.kontakt-main__contact-details {
  margin-bottom: 48px;
}
.kontakt-main__contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.kontakt-main__contact-item:last-child {
  margin-bottom: 0;
}
.kontakt-main__icon {
  width: 16px;
  height: 16px;
  margin-right: 16px;
  display: flex;
  align-items: center;
}
.kontakt-main__icon img {
  width: 100%;
  height: auto;
}
.kontakt-main__contact-link {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.kontakt-main__person {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  padding: 24px;
  gap: 24px;
  border-radius: 24px;
  margin-bottom: 64px;
}
.kontakt-main__person-photo {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.kontakt-main__person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kontakt-main__person-name {
  margin-bottom: 8px;
}
.kontakt-main__person-position {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.kontakt-main__map {
  height: 0;
  padding-bottom: 60%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.kontakt-main__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.kontakt-main__form-title {
  margin-bottom: 32px;
}
.kontakt-main__form .wpcf7-form {
  display: flex;
  flex-direction: column;
}
.kontakt-main__form .contact-form-wrapper > div, .kontakt-main__form .contact-form-wrapper > p {
  margin-bottom: 24px;
}
.kontakt-main__form .contact-form-wrapper > div:last-child, .kontakt-main__form .contact-form-wrapper > p:last-child {
  margin-bottom: 0;
}
.kontakt-main__form .actions {
  display: flex;
  gap: 24px;
}
.kontakt-main__form .contact-form-row {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .kontakt-main__form .contact-form-row {
    flex-direction: row;
  }
}
.kontakt-main__form .form-consent {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.kontakt-main__form label {
  display: block;
  margin-bottom: 12px;
  color: rgba(39, 39, 39, 0.7);
  font-size: 0.875rem;
}
.kontakt-main__form input[type=text],
.kontakt-main__form input[type=email],
.kontakt-main__form input[type=tel],
.kontakt-main__form textarea {
  background-color: #F8F8F8;
}
.kontakt-main__form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 100px;
  width: fit-content;
  color: #FFFFFF;
  background-color: #272727;
  border: 1px solid #272727;
  padding: 16px 32px;
}
.kontakt-main__form .wpcf7-submit:hover {
  background-color: transparent;
  color: #272727;
}
.kontakt-main__form .wpcf7-submit:hover svg {
  transform: translateX(5px);
  color: #272727;
}
.kontakt-main__form .wpcf7-spinner {
  margin-left: 16px;
}
.kontakt-main__form .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #e74c3c;
}
.kontakt-main__form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px;
  font-size: 0.875rem;
  border-radius: 4px;
}

.giganci-rynku {
  padding: 40px 0;
  background-color: #FFFFFF;
}
@media (min-width: 1024px) {
  .giganci-rynku {
    padding: 80px 0;
  }
}
.giganci-rynku__heading {
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .giganci-rynku__heading {
    gap: 40px;
    margin-bottom: 100px;
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .giganci-rynku__heading {
    gap: 100px;
  }
}
.giganci-rynku__heading-left {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .giganci-rynku__heading-left {
    width: 100%;
  }
}
.giganci-rynku__title {
  margin-top: 12px;
}
.giganci-rynku__title span {
  color: #8B8B8B;
}
.giganci-rynku__description {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
@media (min-width: 768px) {
  .giganci-rynku__description {
    width: 100%;
  }
}
.giganci-rynku__content {
  margin-top: 40px;
}
.giganci-rynku__desktop {
  display: none;
  flex-direction: column;
}
@media (min-width: 768px) {
  .giganci-rynku__desktop {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .giganci-rynku__desktop {
    gap: 100px;
    flex-direction: row;
  }
}
.giganci-rynku__mobile {
  display: block;
}
@media (min-width: 768px) {
  .giganci-rynku__mobile {
    display: none;
  }
}
.giganci-rynku__company {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.giganci-rynku__logo {
  margin-bottom: 64px;
}
.giganci-rynku__logo img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  object-position: left;
}
.giganci-rynku__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .giganci-rynku__stats {
    gap: 40px;
    flex-direction: row;
  }
}
.giganci-rynku__stat-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.giganci-rynku__stat-value {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -1.5px;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .giganci-rynku__stat-value {
    font-size: 2.25rem;
    letter-spacing: -0.64px;
  }
}
.giganci-rynku__stat-desc {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.giganci-rynku__nav {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 44px;
}
.giganci-rynku__placeholder {
  padding: 20px;
  background-color: #F8F8F8;
  text-align: center;
  font-style: italic;
}

.jakie-marketplace {
  padding: 64px 0;
  background-color: #F8F8F8;
  text-align: center;
}
@media (min-width: 1024px) {
  .jakie-marketplace {
    padding: 150px 0;
  }
}
.jakie-marketplace__header {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .jakie-marketplace__header {
    margin-bottom: 100px;
  }
}
.jakie-marketplace__title {
  margin-top: 12px;
}
.jakie-marketplace__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .jakie-marketplace__logos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .jakie-marketplace__logos {
    gap: 100px;
  }
}
.jakie-marketplace__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
.jakie-marketplace__logo img {
  max-height: 36px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
@media (min-width: 502px) {
  .jakie-marketplace__logo img {
    max-height: 42px;
  }
}
.jakie-marketplace__logo:hover img {
  transform: scale(1.05);
}
.jakie-marketplace__placeholder {
  padding: 20px;
  background-color: #F8F8F8;
  text-align: center;
  font-style: italic;
}

.dla-kogo-marketplace {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .dla-kogo-marketplace {
    padding: 150px 0;
  }
}
.dla-kogo-marketplace__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .dla-kogo-marketplace__inner {
    flex-direction: row;
    gap: 24px;
  }
}
.dla-kogo-marketplace__header {
  width: 100%;
}
@media (min-width: 768px) {
  .dla-kogo-marketplace__header {
    width: 50%;
  }
}
.dla-kogo-marketplace__header h2 {
  margin-top: 12px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .dla-kogo-marketplace__header h2 {
    margin-bottom: 0;
  }
}
.dla-kogo-marketplace__header h2 span {
  color: #8B8B8B;
}
.dla-kogo-marketplace__content {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
@media (min-width: 768px) {
  .dla-kogo-marketplace__content {
    width: 50%;
  }
}

.dlaczego-marketplace {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 1024px) {
  .dlaczego-marketplace {
    padding: 150px 0;
  }
}
.dlaczego-marketplace__header {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .dlaczego-marketplace__header {
    margin-bottom: 100px;
  }
}
.dlaczego-marketplace__title {
  margin-top: 12px;
}
.dlaczego-marketplace__title span {
  color: #8B8B8B;
}
.dlaczego-marketplace__grid {
  display: none;
}
@media (min-width: 768px) {
  .dlaczego-marketplace__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
  }
}
.dlaczego-marketplace__swiper-container {
  display: block;
}
@media (min-width: 768px) {
  .dlaczego-marketplace__swiper-container {
    display: none;
  }
}
.dlaczego-marketplace__box {
  height: 100%;
}
.dlaczego-marketplace__icon {
  margin-bottom: 16px;
}
.dlaczego-marketplace__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.dlaczego-marketplace__box-title {
  margin-bottom: 32px;
}
.dlaczego-marketplace__box-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #8B8B8B;
}
.dlaczego-marketplace__nav {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.pomoc-marketplace {
  padding: 64px 0;
  background-color: #FFFFFF;
}
@media (min-width: 1024px) {
  .pomoc-marketplace {
    padding: 150px 0;
  }
}
.pomoc-marketplace__header {
  margin-bottom: 64px;
}
@media (min-width: 502px) {
  .pomoc-marketplace__header {
    margin-bottom: 100px;
  }
}
.pomoc-marketplace__title {
  margin-top: 12px;
}
.pomoc-marketplace__title span {
  color: #8B8B8B;
}
.pomoc-marketplace__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .pomoc-marketplace__content {
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .pomoc-marketplace__content {
    gap: 100px;
  }
}
.pomoc-marketplace__image-col {
  width: 100%;
}
@media (min-width: 768px) {
  .pomoc-marketplace__image-col {
    width: 40%;
    max-width: 400px;
  }
}
.pomoc-marketplace__image {
  border-radius: 24px;
  overflow: hidden;
}
.pomoc-marketplace__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .pomoc-marketplace__image img {
    aspect-ratio: 3/4;
  }
}
.pomoc-marketplace__services-col {
  width: 100%;
}
@media (min-width: 768px) {
  .pomoc-marketplace__services-col {
    width: 60%;
  }
}
.pomoc-marketplace__grid {
  display: none;
}
@media (min-width: 768px) {
  .pomoc-marketplace__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (min-width: 1024px) {
  .pomoc-marketplace__grid {
    gap: 32px 64px;
  }
}
.pomoc-marketplace__swiper-container {
  display: block;
}
@media (min-width: 768px) {
  .pomoc-marketplace__swiper-container {
    display: none;
  }
}
.pomoc-marketplace__swiper-slide-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pomoc-marketplace__service-item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pomoc-marketplace__service-icon img {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.pomoc-marketplace__service-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #272727;
}
.pomoc-marketplace__nav {
  display: flex;
  gap: 24px;
  margin-top: 64px;
}

.hero-case {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .hero-case {
    padding: 150px 0;
  }
}
@media (min-width: 768px) {
  .hero-case__container {
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .hero-case__container {
    display: flex;
    align-items: flex-start;
    gap: 100px;
  }
}
.hero-case__content {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .hero-case__content {
    width: 50%;
    margin-bottom: 0;
  }
}
.hero-case__title {
  margin-bottom: 32px;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .hero-case__title {
    font-size: 3rem !important;
  }
}
.hero-case__title span {
  color: #8B8B8B;
  display: block;
}
@media (min-width: 768px) {
  .hero-case__title span {
    display: inline;
  }
}
.hero-case__text {
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
@media (min-width: 1024px) {
  .hero-case__text {
    margin-bottom: 64px;
  }
}
.hero-case__button {
  display: inline-flex;
  margin-top: 24px;
}
.hero-case__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .hero-case__stats {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .hero-case__stats--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
.hero-case__stat {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  height: 100%;
}
@media (min-width: 1024px) {
  .hero-case__stat {
    padding: 32px;
    gap: 0;
    flex-direction: column;
  }
}
.hero-case__stat-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero-case__stat-icon {
    margin-bottom: 32px;
  }
}
.hero-case__stat-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-case__stat-title {
  margin-bottom: 16px;
}
.hero-case__stat-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}

.profil-opis {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .profil-opis {
    padding: 150px 0;
  }
}
@media (min-width: 1024px) {
  .profil-opis__container {
    display: flex;
    gap: 64px;
  }
}
.profil-opis__left {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .profil-opis__left {
    width: 50%;
    margin-bottom: 0;
  }
}
.profil-opis__title {
  margin-top: 12px;
  margin-bottom: 32px;
}
.profil-opis__title span {
  color: #8B8B8B;
}
.profil-opis__text {
  margin-bottom: 32px;
  color: #272727;
  font-size: 1rem;
  line-height: 1.5;
}
.profil-opis__image {
  margin-top: 32px;
  border-radius: 24px;
  min-height: 350px;
  overflow: hidden;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .profil-opis__image {
    aspect-ratio: unset;
  }
}
@media (min-width: 1024px) {
  .profil-opis__image {
    margin-top: auto;
  }
}
.profil-opis__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.profil-opis__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .profil-opis__right {
    width: 50%;
  }
}
.profil-opis__box {
  background-color: #F8F8F8;
  border-radius: 16px;
  padding: 24px;
}
@media (min-width: 1024px) {
  .profil-opis__box {
    padding: 40px;
  }
}
.profil-opis__box-title {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .profil-opis__box-title {
    margin-bottom: 32px;
  }
}
.profil-opis__sections {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 502px) {
  .profil-opis__sections--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.profil-opis__section {
  color: #272727;
  font-size: 1rem;
  line-height: 1.5;
}
.profil-opis__section h4, .profil-opis__section h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
}
.profil-opis__section ul, .profil-opis__section ol {
  padding-left: 1.25rem;
  margin-top: 0;
  margin-bottom: 16px;
}
.profil-opis__section ul li, .profil-opis__section ol li {
  margin-bottom: 0.5rem;
}
.profil-opis__section ul li:last-child, .profil-opis__section ol li:last-child {
  margin-bottom: 0;
}
.profil-opis__section p {
  margin-top: 0;
  margin-bottom: 16px;
}
.profil-opis__section p:last-child {
  margin-bottom: 0;
}

.profil-opis.bg-beige .profil-opis__box {
  background-color: #FFFFFF !important;
}

.pain-points {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 768px) {
  .pain-points {
    padding: 150px 0;
  }
}
.pain-points__header {
  margin: 0 0 64px 0;
}
@media (min-width: 768px) {
  .pain-points__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .pain-points__header-left {
    max-width: 50%;
  }
}
.pain-points__header-left .label {
  margin-bottom: 12px;
}
.pain-points__header-text {
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
@media (min-width: 768px) {
  .pain-points__header-text {
    max-width: 40%;
    margin-top: 0;
  }
}
.pain-points__title {
  margin-top: 12px;
}
.pain-points__title span {
  color: #8B8B8B;
}
@media (min-width: 768px) {
  .pain-points__title {
    text-align: left;
  }
}
.pain-points__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .pain-points__content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "left-boxes image right-boxes";
    gap: 40px;
    align-items: stretch;
  }
}
.pain-points__image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  order: 1;
}
@media (min-width: 768px) {
  .pain-points__image {
    grid-area: image;
    order: unset;
    width: auto;
    max-width: 250px;
  }
}
@media (min-width: 1024px) {
  .pain-points__image {
    max-width: 400px;
  }
}
.pain-points__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.pain-points__boxes-desktop {
  display: none;
}
@media (min-width: 768px) {
  .pain-points__boxes-desktop {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .pain-points__boxes-left {
    grid-area: left-boxes;
  }
}
@media (min-width: 768px) {
  .pain-points__boxes-right {
    grid-area: right-boxes;
  }
}
.pain-points__boxes-mobile {
  width: 100%;
  order: 2;
}
@media (min-width: 768px) {
  .pain-points__boxes-mobile {
    display: none;
  }
}
.pain-points__box {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  height: 100%;
}
@media (min-width: 1024px) {
  .pain-points__box {
    padding: 40px;
  }
}
.pain-points__box-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .pain-points__box-icon {
    margin-bottom: 40px;
  }
}
.pain-points__box-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.pain-points__box-title {
  margin-bottom: 16px;
}
.pain-points__box-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.pain-points__navigation {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .pain-points__navigation {
    display: none;
  }
}
.pain-points .swiper {
  overflow: hidden;
}
.pain-points .swiper-slide {
  height: auto;
}

.pain-points.bg-white .pain-points__box {
  background-color: #F8F8F8 !important;
}

.cytat {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .cytat {
    padding: 150px 0;
  }
}
.cytat__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .cytat__inner {
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .cytat__inner {
    gap: 150px;
  }
}
.cytat__header {
  max-width: 800px;
  margin-bottom: 64px;
}
.cytat__title {
  margin-top: 12px;
  margin-bottom: 0;
}
.cytat__title span {
  color: #8B8B8B;
}
.cytat__quote-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgb(246, 244, 244) 0%, rgb(242, 255, 235) 86%, rgb(238, 255, 227) 100%);
  padding: 32px;
  border-radius: 24px;
  max-width: 770px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cytat__quote-wrapper {
    padding: 80px 40px;
  }
}
@media (min-width: 1024px) {
  .cytat__quote-wrapper {
    padding: 80px;
  }
}
.cytat__quote-icon {
  display: flex;
  gap: 16px;
  position: absolute;
  top: -35px;
  width: auto;
  height: 46px;
  right: 10%;
}
@media (min-width: 768px) {
  .cytat__quote-icon {
    height: 97px;
    top: -50px;
  }
}
.cytat__quote-icon img {
  width: 100%;
  height: 100%;
}
.cytat__quote {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.03em;
}
@media (min-width: 1024px) {
  .cytat__quote {
    font-size: 2rem;
    letter-spacing: -1.5px;
  }
}

.sekcja-dwa-bloki {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .sekcja-dwa-bloki {
    padding: 150px 0;
  }
}
.sekcja-dwa-bloki__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .sekcja-dwa-bloki__container {
    flex-direction: row;
    gap: 64px;
  }
}
@media (min-width: 1024px) {
  .sekcja-dwa-bloki__container {
    gap: 150px;
  }
}
.sekcja-dwa-bloki__block {
  width: 100%;
}
@media (min-width: 768px) {
  .sekcja-dwa-bloki__block {
    width: 50%;
  }
}
.sekcja-dwa-bloki__title {
  margin-top: 12px;
}
.sekcja-dwa-bloki__title span {
  color: #8B8B8B;
}
.sekcja-dwa-bloki__content {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-top: 32px;
}

.wyniki {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .wyniki {
    padding: 150px 0;
  }
}
.wyniki__header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 32px auto;
}
.wyniki__title {
  margin-top: 12px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .wyniki__title {
    margin-bottom: 40px;
  }
}
.wyniki__title span {
  color: #8B8B8B;
}
.wyniki__tabs-wrapper {
  margin-bottom: 32px;
  overflow-x: auto;
  -ms-overflow-style: none;
  /* Hide scrollbar for IE and Edge */
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .wyniki__tabs-wrapper {
    margin-bottom: 100px;
  }
}
.wyniki__tabs-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari and Opera */
}
.wyniki__tabs {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  white-space: nowrap;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .wyniki__tabs {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.wyniki__tab {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #FFFFFF;
  color: #272727;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  padding: 14px 32px;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wyniki__tab.active {
  background-color: #272727;
  color: #FFFFFF;
  border-color: #272727;
}
.wyniki__tab:hover {
  background-color: #F8F8F8;
}
.wyniki__tab:hover.active {
  background-color: #272727;
}
.wyniki__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .wyniki__content {
    flex-direction: row;
    align-items: stretch;
  }
}
.wyniki__image {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  overflow: hidden;
  max-height: 500px;
}
@media (min-width: 768px) {
  .wyniki__image {
    width: 45%;
    margin-bottom: 0;
    display: none;
  }
}
@media (min-width: 1024px) {
  .wyniki__image {
    display: flex;
    width: 45%;
    margin-bottom: 0;
  }
}
.wyniki__image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  object-fit: cover;
}
.wyniki__boxes-wrapper {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .wyniki__boxes-wrapper {
    width: 55%;
  }
}
.wyniki__boxes {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.wyniki__boxes.active {
  position: relative;
  opacity: 1;
  pointer-events: all;
}
.wyniki__boxes-wrapper {
  position: relative;
}
@media (min-width: 768px) {
  .wyniki__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .wyniki__slide {
    height: auto;
  }
}
@media (min-width: 768px) {
  .wyniki__boxes-swiper {
    overflow: visible;
  }
}
.wyniki__box {
  background-color: #F8F8F8;
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .wyniki__box {
    height: 100%;
  }
}
.wyniki__box-title {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -1.5px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.wyniki__box-text {
  color: #8B8B8B;
  font-size: 1rem;
  line-height: 1.5;
}
.wyniki__navigation {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .wyniki__navigation {
    display: none !important;
  }
}
.wyniki .swiper {
  overflow: hidden;
}
@media (min-width: 768px) {
  .wyniki .swiper {
    overflow: visible;
    flex: 1;
  }
}
.wyniki .swiper-slide {
  height: auto;
}
@media (min-width: 768px) {
  .wyniki .swiper-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 24px;
    transform: none !important;
    transition: none !important;
  }
  .wyniki .swiper-slide {
    width: calc(50% - 24px / 2) !important;
    margin-right: 0 !important;
    height: max-content !important;
    transform: none !important;
    flex-shrink: 0;
  }
}

.wyniki.bg-beige .wyniki__box {
  background-color: #FFFFFF !important;
}

.research {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 768px) {
  .research {
    padding: 150px 0;
  }
}
.research__header {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .research__header {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 100px;
  }
}
.research__header-left {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .research__header-left {
    width: 50%;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .research__header-right {
    width: 50%;
  }
}
.research__title {
  margin-top: 12px;
  margin-bottom: 0;
}
.research__title span {
  color: #8B8B8B;
}
.research__description {
  color: #8B8B8B;
  font-size: 1rem;
  line-height: 1.6;
}
.research__columns {
  position: relative;
}
@media (min-width: 768px) {
  .research__columns {
    display: grid;
  }
}
.research__column {
  height: auto;
}
@media (min-width: 768px) {
  .research__column {
    width: 100%;
  }
}
.research__column-title {
  margin-bottom: 32px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .research__column-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
.research__blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.research__block {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px;
  border-radius: 16px;
  background-color: #FFFFFF;
}
@media (min-width: 1024px) {
  .research__block {
    padding: 32px;
  }
}
.research__block-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.research__block-icon img {
  width: 100%;
  height: auto;
}
.research__navigation {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .research__navigation {
    display: none;
  }
}
.research .swiper {
  overflow: hidden;
}
@media (min-width: 768px) {
  .research .swiper {
    overflow: visible;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .research .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    transform: none !important;
    transition: none !important;
  }
}
@media (min-width: 1024px) {
  .research .swiper-wrapper {
    gap: 100px;
  }
}
.research .swiper-slide {
  height: auto;
}
@media (min-width: 768px) {
  .research .swiper-slide {
    margin-right: 0 !important;
    transform: none !important;
    grid-column: auto;
    width: 100% !important;
  }
}

.na-jakich-marketplace {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 1024px) {
  .na-jakich-marketplace {
    padding: 150px 0;
  }
}
.na-jakich-marketplace__header {
  margin-bottom: 64px;
  text-align: center;
}
@media (min-width: 1024px) {
  .na-jakich-marketplace__header {
    margin-bottom: 100px;
  }
}
.na-jakich-marketplace__title {
  margin-top: 12px;
}
.na-jakich-marketplace__title span {
  color: #8B8B8B;
}
.na-jakich-marketplace__grid {
  display: none;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  max-width: 950px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .na-jakich-marketplace__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 942px) {
  .na-jakich-marketplace__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.na-jakich-marketplace__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}
.na-jakich-marketplace__item:hover {
  transform: translateY(-5px);
}
.na-jakich-marketplace__logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.na-jakich-marketplace__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.na-jakich-marketplace__name {
  margin-bottom: 8px;
}
.na-jakich-marketplace__subtitle {
  color: rgba(39, 39, 39, 0.7);
}
.na-jakich-marketplace__swiper-container {
  display: block;
  position: relative;
  padding: 0 0 64px;
}
@media (min-width: 768px) {
  .na-jakich-marketplace__swiper-container {
    display: none;
  }
}
.na-jakich-marketplace__navigation {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.na-jakich-marketplace .na-jakich-marketplace-swiper {
  overflow: hidden;
}
.na-jakich-marketplace .na-jakich-marketplace-swiper .swiper-slide {
  height: auto;
}

.rozwiazania-performance {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .rozwiazania-performance {
    padding: 150px 0;
  }
}
.rozwiazania-performance__header {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .rozwiazania-performance__header {
    margin-bottom: 100px;
  }
}
.rozwiazania-performance__title {
  margin-top: 12px;
}
.rozwiazania-performance__title span {
  color: #8B8B8B;
}
.rozwiazania-performance__grid {
  display: none;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .rozwiazania-performance__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .rozwiazania-performance__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
  }
}
.rozwiazania-performance__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rozwiazania-performance__label {
  color: #91FF50;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rozwiazania-performance__item-title {
  max-width: 350px;
}
.rozwiazania-performance__swiper-container {
  display: block;
  position: relative;
  padding: 0 0 64px;
}
@media (min-width: 768px) {
  .rozwiazania-performance__swiper-container {
    display: none;
  }
}
.rozwiazania-performance__navigation {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.dlaczego-ugc {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 1024px) {
  .dlaczego-ugc {
    padding: 150px 0;
  }
}
.dlaczego-ugc__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px;
}
@media (min-width: 768px) {
  .dlaczego-ugc__header {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .dlaczego-ugc__header {
    margin-bottom: 100px;
  }
}
.dlaczego-ugc__title {
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}
.dlaczego-ugc__title span {
  color: #8B8B8B;
}
@media (min-width: 768px) {
  .dlaczego-ugc__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .dlaczego-ugc__title {
    font-size: 3rem;
  }
}
.dlaczego-ugc__button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 100px;
  width: fit-content;
  color: #FFFFFF;
  background-color: #272727;
  border: 1px solid #272727;
  padding: 16px 32px;
}
.dlaczego-ugc__button:hover {
  background-color: transparent;
  color: #272727;
}
.dlaczego-ugc__button:hover svg {
  transform: translateX(5px);
  color: #272727;
}
.dlaczego-ugc__boxes {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .dlaczego-ugc__boxes {
    flex-direction: row;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .dlaczego-ugc__boxes {
    gap: 40px;
    margin-bottom: 100px;
  }
}
.dlaczego-ugc__box {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  width: 100%;
}
@media (min-width: 768px) {
  .dlaczego-ugc__box {
    width: calc(50% - 24px / 2);
  }
}
@media (min-width: 1024px) {
  .dlaczego-ugc__box {
    padding: 40px;
  }
}
.dlaczego-ugc__box-label {
  display: block;
  color: #8B8B8B;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.dlaczego-ugc__box-title {
  margin-bottom: 24px;
}
.dlaczego-ugc__box-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-bottom: 40px;
}
.dlaczego-ugc__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 502px) {
  .dlaczego-ugc__stats {
    flex-direction: row;
    gap: 64px;
  }
}
.dlaczego-ugc__stat {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dlaczego-ugc__stat-value {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -1.5px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .dlaczego-ugc__stat-value {
    font-size: 2.25rem;
    letter-spacing: -0.64px;
  }
}
.dlaczego-ugc__stat-label {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.dlaczego-ugc__bottom-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .dlaczego-ugc__bottom-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .dlaczego-ugc__bottom-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.dlaczego-ugc__bottom-stat {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dlaczego-ugc__bottom-value {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #272727;
}
@media (min-width: 1024px) {
  .dlaczego-ugc__bottom-value {
    font-size: 4rem;
  }
}
.dlaczego-ugc__bottom-label {
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(39, 39, 39, 0.7);
}

.wspolpracuj {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .wspolpracuj {
    padding: 150px 0;
  }
}
.wspolpracuj .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .wspolpracuj .container {
    gap: 60px;
  }
}
@media (min-width: 768px) {
  .wspolpracuj__wrapper {
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .wspolpracuj__wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
  }
}
.wspolpracuj__content {
  max-width: 100%;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .wspolpracuj__content {
    max-width: 70%;
  }
}
@media (min-width: 1024px) {
  .wspolpracuj__content {
    max-width: 40%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.wspolpracuj__boxes-container {
  width: 100%;
}
@media (min-width: 1024px) {
  .wspolpracuj__boxes-container {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.wspolpracuj__title {
  margin-top: 12px;
  margin-bottom: 24px;
}
.wspolpracuj__title span {
  color: #8B8B8B;
}
@media (min-width: 1024px) {
  .wspolpracuj__title {
    margin-bottom: 32px;
  }
}
.wspolpracuj__description {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  max-width: 100%;
}
@media (min-width: 1024px) {
  .wspolpracuj__description {
    max-width: 90%;
  }
}
.wspolpracuj__boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .wspolpracuj__boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .wspolpracuj__boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.wspolpracuj .desktop-boxes {
  display: none;
}
@media (min-width: 768px) {
  .wspolpracuj .desktop-boxes {
    display: grid;
  }
}
.wspolpracuj .mobile-boxes {
  display: block;
}
@media (min-width: 768px) {
  .wspolpracuj .mobile-boxes {
    display: none;
  }
}
.wspolpracuj__box {
  background-color: #F8F8F8;
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 180px;
}
@media (min-width: 1024px) {
  .wspolpracuj__box {
    padding: 40px;
  }
}
.wspolpracuj__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}
.wspolpracuj__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.wspolpracuj__swiper-container {
  position: relative;
  padding-bottom: 80px;
}
.wspolpracuj__navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 16px;
}

.materialy {
  padding: 64px 0;
  background-color: #F8F8F8;
}
@media (min-width: 1024px) {
  .materialy {
    padding: 100px 0;
  }
}
.materialy .container {
  display: flex;
  flex-direction: column;
}
.materialy__title {
  margin-top: 12px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .materialy__title {
    margin-bottom: 100px;
  }
}
.materialy__boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .materialy__boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.materialy .desktop-boxes {
  display: none;
}
@media (min-width: 768px) {
  .materialy .desktop-boxes {
    display: grid;
  }
}
.materialy .mobile-boxes {
  display: block;
}
@media (min-width: 768px) {
  .materialy .mobile-boxes {
    display: none;
  }
}
.materialy__box {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 120px;
}
@media (min-width: 1024px) {
  .materialy__box {
    padding: 40px;
  }
}
.materialy__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
}
.materialy__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.materialy__swiper-container {
  position: relative;
  padding-bottom: 80px;
}
.materialy__navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 24px;
}
.materialy__videos {
  margin-top: 64px;
}
@media (min-width: 768px) {
  .materialy__videos {
    margin-top: 100px;
  }
}
@media (min-width: 768px) {
  .materialy__videos .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .materialy__videos .swiper-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.materialy__video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background-color: #272727;
}
@media (min-width: 768px) {
  .materialy__video {
    aspect-ratio: 9/16;
    max-width: 100%;
  }
}
.materialy__video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.materialy__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #272727;
  z-index: 2;
  width: 48px;
  height: 48px;
}
.materialy__video-play svg {
  width: 100%;
  height: 100%;
}

.faq {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .faq {
    padding: 150px 0;
  }
}
.faq .container {
  gap: 64px;
}
@media (min-width: 768px) {
  .faq .container {
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .faq .container {
    display: flex;
    gap: 100px;
  }
}
.faq__content {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .faq__content {
    width: 50%;
    margin-bottom: 0;
  }
}
.faq__title {
  margin-top: 12px;
  margin-bottom: 32px;
}
.faq__title span {
  color: #8B8B8B;
}
.faq__description {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .faq__description {
    margin-bottom: 64px;
  }
}
.faq__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  .faq__questions {
    width: 50%;
  }
}
.faq__item {
  border-bottom: 1px solid #D3D3D3;
}
.faq__item.active .faq__icon {
  background-color: #91FF50;
}
.faq__item.active .faq__icon svg {
  transform: rotate(180deg);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 32px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2C2C2C;
  font-family: "Plus Jakarta Sans";
}
.faq__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  transition: background-color 0.3s ease;
}
.faq__icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.faq__answer {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}
.faq__answer-content {
  padding: 0 0 32px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}

.faq--no-title {
  padding: 0 !important;
}
.faq--no-title .container {
  padding: 0 !important;
}
.faq--no-title .faq__questions {
  width: 100% !important;
}

.post-card {
  height: 100%;
}
.post-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.3s ease;
}
.post-card__link:hover .post-card__img {
  transform: scale(1.05);
}
.post-card__image {
  position: relative;
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.post-card__category {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #FFFFFF;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 500;
}
.post-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.post-card__title {
  margin-bottom: 24px !important;
}
.post-card__date {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #8B8B8B;
  text-transform: uppercase;
}
.post-card__excerpt {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}

.job-offer {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .job-offer {
    padding: 150px 0;
  }
}
.job-offer__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .job-offer__inner {
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .job-offer__inner {
    gap: 100px;
  }
}
.job-offer__content {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .job-offer__content {
    width: 50%;
    margin-bottom: 0;
  }
}
.job-offer__content .label {
  margin-bottom: 12px;
}
.job-offer__content h2 {
  margin-bottom: 32px;
  color: #272727 !important;
}
.job-offer__content li {
  padding-bottom: 5px;
}
.job-offer__content ul {
  padding-left: 15px;
}
.job-offer__content h3,
.job-offer__content h4,
.job-offer__content h5,
.job-offer__content h6 {
  margin-bottom: 24px;
  margin-top: 40px;
  color: #272727 !important;
}
.job-offer__form-container {
  width: 100%;
}
@media (min-width: 768px) {
  .job-offer__form-container {
    width: 50%;
  }
}
.job-offer__form {
  background-color: #F8F8F8;
  border-radius: 24px;
  padding: 32px 24px;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .job-offer__form {
    padding: 40px;
  }
}
.job-offer__form h4 {
  margin-bottom: 32px;
}
.job-offer__form .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 0.8125rem;
  margin-top: 4px;
}
.job-offer__form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.875rem;
}
.job-offer__form .wpcf7-response-output.wpcf7-validation-errors {
  border-color: #dc3232;
  color: #dc3232;
  background-color: rgba(220, 50, 50, 0.05);
}
.job-offer__form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #91FF50;
  color: #272727;
  background-color: rgba(145, 255, 80, 0.2);
}
.job-offer__form .ajax-loader {
  margin-left: 8px !important;
}
.job-offer__form .wpcf7-form-control-wrap {
  display: block;
}
.job-offer__form .form-group {
  margin-bottom: 24px;
}
.job-offer__form .form-group:last-of-type {
  margin-bottom: 0;
}
.job-offer__form .form-group label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.job-offer__form .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .job-offer__form .form-row {
    flex-direction: row;
    gap: 24px;
    margin-bottom: 0;
  }
  .job-offer__form .form-row .form-group {
    width: 50%;
  }
}
.job-offer__form .file-upload .file-upload-area {
  position: relative;
  border: 2px dashed rgba(39, 39, 39, 0.1);
  border-radius: 8px;
  padding: 24px;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-offer__form .file-upload .file-upload-area:hover, .job-offer__form .file-upload .file-upload-area:focus-within {
  border-color: #91FF50;
}
.job-offer__form .file-upload .file-upload-area > p {
  width: 100%;
  height: 100%;
  position: absolute;
}
.job-offer__form .file-upload .file-upload-area > p span {
  width: 100%;
  height: 100%;
}
.job-offer__form .file-upload .file-upload-area input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.job-offer__form .file-upload .file-upload-area .upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.job-offer__form .file-upload .file-upload-area .upload-placeholder .upload-icon {
  background-image: url("../icons/upload.svg");
  width: 40px;
  height: 40px;
  display: block;
  margin-bottom: 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.job-offer__form .file-upload .file-upload-area .upload-placeholder p {
  color: #8B8B8B;
  font-size: 0.875rem;
  max-width: 300px;
  margin: 0 auto;
}
.job-offer__form .file-upload .wpcf7-file:focus + .upload-placeholder .upload-icon, .job-offer__form .file-upload .wpcf7-file:active + .upload-placeholder .upload-icon {
  opacity: 0.7;
}
.job-offer__form .file-upload .file-selected {
  text-align: center;
  margin-top: 8px;
  font-size: 0.75rem;
  color: #8B8B8B;
  word-break: break-word;
}
.job-offer__form .file-upload .file-selected:empty {
  display: none;
}
.job-offer__form .consent p {
  font-size: 0.875rem !important;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.job-offer__form .submit-button input[type=submit] {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 100px;
  width: fit-content;
  color: #FFFFFF;
  background-color: #272727;
  border: 1px solid #272727;
  padding: 16px 32px;
}
.job-offer__form .submit-button input[type=submit]:hover {
  background-color: transparent;
  color: #272727;
}
.job-offer__form .submit-button input[type=submit]:hover svg {
  transform: translateX(5px);
  color: #272727;
}
.job-offer__form .submit-button input[type=submit]::after {
  content: "";
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  background-image: url("../icons/arrow-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.job-offer__form .submit-button input[type=submit]:hover::after {
  transform: translateX(5px);
}

.single-oferta-pracy footer {
  background-color: #F8F8F8 !important;
}

.post-page {
  padding: 32px 0;
}
@media (min-width: 768px) {
  .post-page {
    padding: 50px 0 0;
  }
}
.post-page__featured {
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .post-page__featured {
    margin-bottom: 100px;
  }
}
.post-page__featured-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.post-page__content-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .post-page__content-wrap {
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .post-page__content-wrap {
    gap: 100px;
    padding-bottom: 100px;
  }
}
.post-page__main {
  width: 100%;
}
@media (min-width: 768px) {
  .post-page__main {
    width: 65%;
  }
}
.post-page__sidebar {
  width: 100%;
}
@media (min-width: 768px) {
  .post-page__sidebar {
    width: 35%;
  }
}
.post-page__meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .post-page__meta {
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .post-page__meta {
    margin-bottom: 64px;
    flex-direction: row;
  }
}
.post-page__author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background-color: #F8F8F8;
  padding: 24px;
}
@media (min-width: 768px) {
  .post-page__author {
    padding: 32px;
    gap: 24px;
  }
}
.post-page__author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.post-page__author-info {
  display: flex;
  flex-direction: column;
}
.post-page__author-name {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.48px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.post-page__author-position {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.post-page__share {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.post-page__share-label {
  text-align: left;
}
@media (min-width: 1024px) {
  .post-page__share-label {
    text-align: right;
  }
}
.post-page__share-buttons {
  display: flex;
  gap: 24px;
}
.post-page__share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.post-page__title {
  font-size: 2rem;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .post-page__title {
    font-size: 2.5rem;
  }
}
.post-page__content {
  font-size: 1rem;
  line-height: 1.6;
  color: #272727;
}
.post-page__content p {
  margin-bottom: 1.5rem;
}
.post-page__content h2,
.post-page__content h3,
.post-page__content h4,
.post-page__content h5 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.post-page__content ul,
.post-page__content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.post-page__content ul li,
.post-page__content ol li {
  margin-bottom: 0.5rem;
}
.post-page__content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 1.5rem 0;
}
.post-page__content .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
}
.post-page__content iframe {
  height: 100%;
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 16/9;
}
.post-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.post-page__content table th,
.post-page__content table td {
  padding: 0.75rem;
  border: 1px solid #8B8B8B;
  text-align: left;
}
.post-page__content table th {
  background-color: #F8F8F8;
  font-weight: 600;
}
.post-page__content table tr:nth-child(even) {
  background-color: #8B8B8B;
}
.post-page__toc {
  background-color: #F8F8F8;
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 40px;
}
@media (min-width: 768px) {
  .post-page__toc {
    padding: 40px;
  }
}
.post-page__toc-title {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.48px;
  line-height: 1.3;
  margin-bottom: 24px;
}
.post-page__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.post-page__toc-item {
  margin-bottom: 0;
}
.post-page__toc-link {
  color: #434343;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  line-height: 1.4;
}
.post-page__toc-link:hover {
  color: #91FF50;
}
.post-page__related {
  background-color: #F8F8F8;
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .post-page__related {
    padding: 150px 0;
  }
}
.post-page__related-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .post-page__related-header {
    margin-bottom: 100px;
  }
}
.post-page__related-title {
  margin-top: 12px;
}
.post-page__related-title--gray {
  color: #8B8B8B;
}
.post-page__related-nav {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .post-page__related-nav {
    display: none;
  }
}
@media (min-width: 768px) {
  .post-page__related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .post-page__related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.post-page__related-item {
  height: 100%;
}
.post-page__related-pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.post-page__related-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #8B8B8B;
  opacity: 1;
  margin: 0 4px;
}
.post-page__related-pagination .swiper-pagination-bullet-active {
  background-color: #91FF50;
}
@media (min-width: 768px) {
  .post-page__related-pagination {
    display: none;
  }
}
.post-page .swiper {
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .post-page .swiper {
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .post-page .swiper {
    overflow: visible;
  }
}
.post-page .swiper-disabled .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  transform: translate3d(0, 0, 0) !important;
}
.post-page .swiper-disabled .swiper-slide {
  width: 100% !important;
  margin-right: 0 !important;
}

.blog-page-header {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .blog-page-header {
    padding: 100px 0;
  }
}
.blog-page-header__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .blog-page-header__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media (min-width: 768px) {
  .blog-page-header__left {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .blog-page-header__left {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .blog-page-header__right {
    width: 50%;
  }
}
.blog-page-header__right p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
}
.blog-page-header__title {
  max-width: 450px;
}
.blog-page-header__title span {
  color: #8B8B8B;
}
.blog-page-categories {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .blog-page-categories {
    margin-bottom: 100px;
  }
}
.blog-page-categories__wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
@media (min-width: 502px) {
  .blog-page-categories__wrapper {
    flex-wrap: wrap;
  }
}
.blog-page-categories__wrapper::-webkit-scrollbar {
  display: none;
}
.blog-page-category-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  white-space: nowrap;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1px solid #E0E0E0;
  background-color: #FFFFFF;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-page-category-btn:hover, .blog-page-category-btn.active {
  background-color: #272727;
  color: #FFFFFF;
  border-color: #272727;
}
.blog-page-posts {
  margin-bottom: 64px;
}
.blog-page-posts__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px 40px;
  margin-bottom: 64px;
  transition: opacity 0.3s ease;
}
.blog-page-posts__wrapper.loading {
  opacity: 0.5;
  pointer-events: none;
}
@media (min-width: 768px) {
  .blog-page-posts__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .blog-page-posts__wrapper {
    grid-template-columns: repeat(6, 1fr);
  }
  .blog-page-posts__wrapper .blog-page-posts__item:nth-child(1),
  .blog-page-posts__wrapper .blog-page-posts__item:nth-child(2) {
    grid-column: span 3;
  }
  .blog-page-posts__wrapper .blog-page-posts__item:nth-child(n+3) {
    grid-column: span 2;
  }
}
.blog-page-posts__item {
  transition: opacity 0.3s ease;
}
.blog-page-posts__item.hidden {
  display: none;
}
@media (min-width: 942px) {
  .blog-page-posts__item--large {
    grid-column: span 1;
  }
}
.blog-page-posts__no-results {
  text-align: center;
  padding: 64px 0;
}
.blog-page-posts__no-results p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.7);
  font-size: 1.25rem;
}
.blog-page-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.blog-page-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(39, 39, 39, 0.15);
  text-decoration: none;
  color: #272727;
  font-weight: 500;
  transition: all 0.3s ease;
}
.blog-page-pagination .page-numbers:hover {
  background-color: rgba(39, 39, 39, 0.05);
}
.blog-page-pagination .page-numbers.current {
  background-color: #272727;
  color: #FFFFFF;
  border-color: #272727;
}
.blog-page-pagination .page-numbers.prev svg, .blog-page-pagination .page-numbers.next svg {
  width: 24px;
  height: 24px;
}
.blog-page-pagination .page-numbers.dots {
  border: none;
}

.blog .footer {
  background-color: #F8F8F8;
}

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.05px;
  color: #272727;
}

ul,
ol {
  list-style-position: inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1 {
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: -0.64px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -1.5px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.5rem;
    letter-spacing: -0.64px;
  }
}

h3 {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -1px;
  line-height: 1.3;
}

h4 {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.48px;
  line-height: 1.3;
}

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

a {
  color: #272727;
  text-decoration: none;
  transition: color 0.2s;
}

button:focus, button:focus-visible {
  outline: none !important;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 100px;
  font-size: 0.875rem;
  background-color: #FFFFFF;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
  border-color: #91FF50;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: #8B8B8B;
}

textarea {
  min-height: 120px;
  resize: none;
  border-radius: 8px !important;
}

.container {
  max-width: 1328px;
  padding-inline: 24px;
  width: 100%;
  margin: 0 auto;
}

.label {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-highlight {
  color: #8B8B8B;
}

.gradient-bg {
  background: radial-gradient(circle, rgb(255, 255, 255) 12%, rgba(145, 255, 80, 0.16) 100%);
}

.bg-beige {
  background-color: #F8F8F8 !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.section-aspect img {
  aspect-ratio: 1 !important;
  object-fit: cover;
}

.padding-100 {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .padding-100 {
    padding: 100px 0 !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 100px;
  width: fit-content;
}
.btn--primary {
  color: #FFFFFF;
  background-color: #272727;
  border: 1px solid #272727;
  padding: 16px 32px;
}
.btn--primary:hover {
  background-color: transparent;
  color: #272727;
}
.btn--primary:hover svg {
  transform: translateX(5px);
  color: #272727;
}
.btn--primary svg {
  color: #91FF50;
}
.btn--secondary {
  color: #272727;
  background-color: #FFFFFF;
  border: 1px solid #272727;
  padding: 16px 32px;
}
.btn--secondary:hover {
  background-color: #272727;
  color: #FFFFFF;
}
.btn svg,
.btn img {
  transition: transform 0.3s ease;
}

.btn-swiper {
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(39, 39, 39, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
}
.btn-swiper:hover {
  background-color: #272727;
}
.btn-swiper:hover svg {
  color: #91FF50;
}
.btn-swiper--prev {
  transform: rotate(180deg);
}

.btn-swiper svg {
  color: #272727;
}

.fade-in {
  opacity: 0.2;
  transform: scale(0.98);
  /* start a little smaller */
  animation: fadeScale 0.5s ease-out forwards;
}

@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
    /* grow to normal size */
  }
}
