* {
  margin: 0;
  padding: 0;
  /*max-width: 100vw;*/
  box-sizing: border-box;
  scroll-margin: 70px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow: hidden;
  background: #FFFFFF;
  font-family: "Archivo", sans-serif;
  color: black;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: color 0.15s, font-weight 0.15s;
}

a:not(.button, .logo)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

a.block::after, a.social::after, a.btn-cont::after {
  display: none;
}

img {
  display: block;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #FFF;
  font-size: 16px;
  line-height: 128%;
  border-radius: 100px;
  background: #69999F;
  transition: 0.15s;
  padding: 14px 20px;
  cursor: pointer;
}
.button:hover {
  background: linear-gradient(85deg, #2F3D4A 1.6%, #2F6369 100.84%);
}
.button.transparent {
  border: 1px solid #2F3D4A;
  color: #2F3D4A;
  background: transparent;
}
.button.transparent:hover {
  border-color: transparent;
  color: white !important;
  background: #69999F !important;
}

section {
  padding: 100px 64px;
  position: relative;
}

h1 {
  color: #FFF;
  text-align: center;
  font-size: 96px;
  font-weight: 400;
  line-height: 96%;
  letter-spacing: -2.88px;
  width: fit-content;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 64px;
  z-index: 10;
}
.nav > div {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease-out;
  height: 50px;
  padding: 8px 22px 8px 16px;
  padding: 8px 24px;
  flex-shrink: 0;
  border-radius: 100px;
  border-radius: 28px;
  background: #FFF;
  box-shadow: 0 -1px 16px 0 rgba(47, 61, 74, 0.1);
}
.nav .links {
  display: flex;
  gap: 24px;
}
.nav .links a {
  white-space: nowrap;
  color: #2F3D4A;
  font-size: 14px;
  font-weight: 400;
  line-height: 128%;
}
.nav .links:nth-of-type(2) a {
  color: rgb(105, 153, 159);
}
.nav.scrolled, .nav.open {
  border-radius: 0 0 20px 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.nav .burger {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  height: 36px;
  width: 36px;
  cursor: pointer;
  transition: 0.24s ease;
  z-index: 5;
  border-radius: 100px;
  background: #69999F;
  padding: 10px;
}
.nav .burger span {
  display: block;
  height: 2px;
  background: white;
  width: 12px;
  flex-shrink: 0;
  transition: 0.24s ease;
}
.nav.open .burger span:nth-of-type(1) {
  transform: rotate(45deg);
  margin-bottom: 0px;
}
.nav.open .burger span:nth-of-type(2) {
  transform: rotate(-45deg);
  margin-top: -5px;
}
.nav.open .burger span:nth-of-type(3) {
  display: none;
}

.hero {
  color: white;
  position: relative;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), url("img/bg-hero.webp") lightgray -24.335px -47px/103.38% 110.478% no-repeat;
  inset: 0;
  padding: 24px;
  padding: 100px 0 290px;
}
.hero .container {
  max-width: 1728px;
  padding: 0 64px;
  margin: 0 auto;
}
.hero p {
  color: white !important;
  font-size: 16px;
}
.buttons {
  display: flex;
  gap: 24px;
}
.buttons .button {
  border-color: #FEF5F0;
  color: #FFF;
  background: transparent;
}
.buttons .button.white {
  color: #2F3D4A;
  background: #FFF;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  max-width: 872px;
}
.column p {
  color: #65737C;
}

h1 {
  position: relative;
  display: inline-block;
  margin-top: 100px;
  z-index: 2;
}

.hero .title {
  position: relative;
}

.rotating-svg {
  position: absolute;
  top: 50px;
  right: 0;
  width: 250px;
  height: 250px;
  animation: spin 90s linear infinite;
  transform-origin: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
h2 {
  font-size: 96px;
  font-weight: 400;
  line-height: 96%;
  letter-spacing: -2.88px;
  background: linear-gradient(85deg, #2F3D4A 1.6%, var(--Color-1, #2F6369) 100.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  color: #2F3D4A;
  font-size: 50px;
  font-weight: 400;
  line-height: 96%;
  letter-spacing: -1.5px;
}

h4 {
  color: #2F3D4A;
  font-size: 28px;
  font-weight: 400;
  line-height: 104%;
  letter-spacing: -0.56px;
}

h5 {
  color: #2F3D4A;
  font-size: 24px;
  font-weight: 400;
  line-height: 104%;
  letter-spacing: -0.48px;
}

p {
  color: #2F3D4A;
  font-size: 14px;
  line-height: 128%;
}

.o-nas {
  padding: 0 64px;
  max-width: 1728px;
  margin: -170px auto 0;
}
.o-nas .blocks {
  display: flex;
  gap: 1px;
  border-radius: 24px;
  position: relative;
  background: white;
  background: #E4E9EB;
  overflow: hidden;
}
.o-nas .blocks .block {
  width: calc((100% - 2px) / 3);
}
.o-nas .blocks .block .heading {
  padding: 24px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  height: 168px;
  align-items: flex-start;
  border-right: 1.5px solid #65737C;
  margin-right: -0.75px;
  cursor: pointer;
}
.o-nas .blocks .block .heading .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.o-nas .blocks .block .heading .top p {
  color: #69999F;
}
.o-nas .blocks .block .heading .top svg {
  cursor: pointer;
}
.o-nas .blocks .block .heading .title {
  color: #2F3D4A;
  font-size: 28px;
  line-height: 104%;
  letter-spacing: -0.56px;
  max-width: 256px;
}
.o-nas .blocks .block .bottom {
  width: 100%;
  object-fit: cover;
  height: 100%;
  object-position: 20% 20%;
}
.o-nas .blocks .block:last-of-type .heading {
  border: none;
  margin-right: 0;
}
.o-nas .blocks .block .more {
  height: 0;
  overflow: hidden;
  transition: all 0.25s ease-out, background-color 0s;
}
.o-nas .blocks .block .more p {
  opacity: 0;
  transition: opacity 0.1s;
}
.o-nas .blocks .block.open {
  width: 100%;
  background: white;
  background: #E4E9EB;
}
.o-nas .blocks .block.open .heading {
  cursor: auto;
  background: #E4E9EB;
}
.o-nas .blocks .block.open .heading .top p {
  order: 2;
}
.o-nas .blocks .block.open .heading .top svg {
  rotate: -90deg;
}
.o-nas .blocks .block.open .more {
  padding: 24px 24px 50px;
  height: auto;
  background: #E4E9EB;
  border-radius: 0 0 24px 24px;
}
.o-nas .blocks .block.open .more .content {
  display: flex;
  gap: 72px;
}
.o-nas .blocks .block.open .more .content p {
  font-size: 16px;
  opacity: 1;
}
.o-nas .blocks .block.open .more .content.text {
  gap: 24px;
  flex-direction: column;
}
.o-nas .blocks .block.open .more .content ul {
  padding-left: 20px;
}
.o-nas .blocks .block.open .more .content ul li {
  border-bottom: 1px solid #C9D4D5;
  padding: 20px 0 16px;
}
.o-nas .blocks .block.open .more .content.list {
  display: block;
}
.o-nas .blocks .block.open .more .content .item {
  border-bottom: 1px solid #C9D4D5;
  width: 100%;
}
.o-nas .blocks .block.open .more .content .item .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 16px;
  font-size: 16px;
  cursor: pointer;
}
.o-nas .blocks .block.open .more .content .item .top svg {
  transition: rotate 0.15s ease-out;
}
.o-nas .blocks .block.open .more .content .item .more-text {
  height: 0;
  overflow: hidden;
  transition: 0.25s ease-out;
}
.o-nas .blocks .block.open .more .content .item .more-text p {
  font-size: 16px;
}
.o-nas .blocks .block.open .more .content .item.see .top > svg {
  rotate: 45deg;
}
.o-nas .blocks .block.open .more .content .item.see .more-text {
  padding: 20px 0 16px;
  display: block;
  height: auto;
}
.o-nas .blocks .block.open .bottom {
  max-height: 500px;
  object-fit: cover;
}
.o-nas .blocks .block.open:not(.first) .bottom {
  display: none;
}
.o-nas .blocks .block.open.second, .o-nas .blocks .block.open.third {
  background: white;
}
.o-nas .blocks.active .block:not(.open) {
  width: 0%;
}

.partners {
  display: flex;
  padding: 100px 0;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  align-self: stretch;
}
.partners .column {
  padding: 0 64px;
}
.partners .logos {
  width: 100%;
  overflow: hidden;
}
.partners .logos .logos-container {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: scroll 60s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.partners .logos .logos-container .logo {
  width: 164px;
  height: 164px;
  flex-shrink: 0;
  border-radius: 24px;
  background: #C9D4D5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 128%;
}
@keyframes scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.zarzad {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1728px;
  margin: auto;
}
.zarzad .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.zarzad .top p {
  color: #65737C;
  font-size: 16px;
  max-width: 250px;
}
.zarzad .ppl {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 30px;
}
.zarzad .ppl .person {
  display: flex;
  width: 295px;
  width: calc(25% - 18px);
  padding: 24px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  border-radius: 24px;
  background: linear-gradient(359deg, #2F3D4A 0.45%, rgba(112, 145, 176, 0) 99.45%), var(--background);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 59/72;
}
.zarzad .ppl .person h5 {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 128%;
  margin-bottom: 8px;
}
.zarzad .ppl .person p {
  color: #FFF;
  font-size: 16px;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 75px;
  max-width: 1728px;
  margin: 0 auto;
}
.service .blocks {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 50px;
  margin: 0 auto;
  width: 100%;
}
.service .blocks .block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: calc((100% - 32px) / 3);
  text-align: center;
}
.service .blocks .block p {
  max-width: 264px;
}
.service .blocks .block h4 {
  max-width: 200px;
}

.join .column {
  margin: auto;
}
.join .blocks {
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 64px;
  column-gap: 50px;
  max-width: 1600px;
}
.join .blocks .block {
  display: flex;
  gap: 12px;
  align-items: center;
  width: calc((100% - 100px) / 3);
}
.join .blocks .block .icon {
  flex-shrink: 0;
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: #C9D4D5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.join .blocks .block:nth-of-type(4), .join .blocks .block:nth-of-type(5) {
  width: calc(50% - 25px);
}

.wiedza {
  height: 560px;
  display: flex;
  gap: 80px;
  max-width: 1728px;
  margin: auto;
}
.wiedza .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 250px;
  height: 100%;
  flex-shrink: 0;
}
.wiedza .left .column {
  text-align: left;
  align-items: flex-start;
}
.wiedza .left .column p {
  color: #65737C;
  font-size: 16px;
  line-height: 128%;
}
.wiedza .articles {
  position: relative;
  flex: 1;
  min-width: 0;
}
.wiedza .articles .embla__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding-left: 50px;
}
.wiedza .articles .embla__container {
  display: flex;
  gap: 24px;
  padding-right: 50px;
}
.wiedza .articles::before, .wiedza .articles::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.wiedza .articles::before {
  left: 0;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}
.wiedza .articles::after {
  right: 0;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}
.wiedza .articles.is-start::before {
  opacity: 0;
}
.wiedza .articles.is-end::after {
  opacity: 0;
}

.article {
  display: flex;
  width: 533px;
  height: 360px;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.article img {
  width: 295px;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: top right;
}
.article .text-side {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 10px;
  gap: 24px;
  align-items: flex-start;
}
.article .text-side .top {
  display: flex;
  flex-direction: column;
}
.article .text-side .top h5 {
  margin: 8px 0 12px;
}
.article .text-side .top p {
  color: #65737C;
  font-size: 16px;
}
.article .text-side .button {
  margin-top: auto;
}

.date {
  color: #65737C;
  font-size: 14px;
  line-height: 128%;
}

.news {
  gap: 130px;
}
.news .articles {
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: -55px;
  position: static;
  gap: 24px;
  display: flex;
}
.news .articles .article {
  border-top: 1px solid #C9D4D5;
  height: calc(50% - 12px);
  align-items: flex-start;
  padding-top: 24px;
}
.news .articles .article h5 {
  margin: 0 0 12px;
}
.kontakt h2 {
  max-width: 1100px;
  text-align: center;
  margin: 0 auto 120px;
}
.kontakt .checkbox-row {
  display: flex;
  gap: 8px;
  width: calc((100% - 64px) / 3);
}
.kontakt .checkbox-row label {
  cursor: pointer;
}
.kontakt .checkbox-row input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid #69999F;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}
.kontakt .checkbox-row input[type=checkbox]:checked {
  border: none;
  background-size: cover;
  background: url("img/checked.svg") no-repeat center;
}
.kontakt .sent {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.kontakt .sent .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 100%;
}
.kontakt .sent .content .icon svg {
  width: 40px;
  height: 40px;
}
.kontakt .sent .content p {
  font-size: 20px;
}
.kontakt .sent .content .loader {
  display: flex;
}
.kontakt .sent .content .loader svg,
.kontakt .sent .content .loader span {
  position: relative;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.kontakt .sent .content .loader svg {
  z-index: 2;
  animation-name: swap-left;
}
.kontakt .sent .content .loader span {
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #69999F;
  animation-name: swap-right;
}
@keyframes swap-left {
  0%, 20% {
    transform: translateX(0);
  }
  50%, 70% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes swap-right {
  0%, 20% {
    transform: translateX(0);
  }
  50%, 70% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.kontakt form {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}
.kontakt form .button {
  width: auto;
  border: none;
}
.kontakt .row {
  display: flex;
  gap: 32px;
  width: 100%;
}
.kontakt .input-container {
  position: relative;
  width: 100%;
  outline: none;
}
.kontakt .input-container input, .kontakt .input-container textarea {
  width: 100%;
  padding: 10px 10px 32px 10px;
  border: none;
  border-bottom: 1px solid #C9D4D5;
  outline: none;
  color: #2F3D4A;
  font-size: 24px;
  line-height: 104%;
  letter-spacing: -0.48px;
  height: 67px;
  font-family: "Archivo", sans-serif;
}
.kontakt .input-container input:focus, .kontakt .input-container textarea:focus {
  border-color: #69999F;
}
.kontakt .input-container label {
  position: absolute;
  left: 10px;
  top: 10px;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  color: #2F3D4A;
  font-size: 24px;
  line-height: 104%;
  letter-spacing: -0.48px;
}
.kontakt .input-container.active label {
  top: -32px;
}
.kontakt .input-container input:-webkit-autofill,
.kontakt .input-container input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
  font-size: 20px !important;
}
.kontakt .input-container textarea {
  height: 146px;
  resize: vertical;
}

footer {
  background: linear-gradient(85deg, #2F3D4A 1.6%, #2F6369 100.84%);
  padding: 64px;
  height: 410px;
}
footer .content {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: auto;
  height: 100%;
}
footer .left {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
footer .right {
  display: flex;
  gap: 100px;
}
footer .right > div {
  display: flex;
  flex-direction: column;
  height: 144px;
  gap: 24px;
}
footer .right > div h6 {
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
footer .right > div > div {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
footer .right > div > div p, footer .right > div > div a {
  color: #C9D4D5;
  font-size: 14px;
  line-height: 128%;
}
footer .right > div > div a {
  position: relative;
  display: inline-block;
}
footer .right > div > div a::before {
  content: attr(data-text);
  font-weight: 700;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  display: block;
}
footer .column {
  width: fit-content;
}
footer .socials {
  gap: 24px;
  display: flex;
}
footer .socials path {
  transition: 0.1s ease-out;
}
footer .socials .social:hover path {
  fill: #69999F;
}
footer .socials .social:nth-child(2):hover path {
  stroke: #69999F;
  fill: transparent;
}
footer .links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: self-start;
}
footer .links a {
  color: #C9D4D5;
  font-size: 14px;
  line-height: 128%;
}

.mobile {
  display: none;
}

.wiedza-main {
  display: flex;
  gap: 64px;
  flex-direction: column;
  align-items: center;
  max-width: 1600px;
  margin: auto;
}
.wiedza-main h1 {
  background: linear-gradient(85deg, #2F3D4A 1.6%, #2F6369 100.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wiedza-main .column > p {
  font-size: 16px;
}
.wiedza-main .articles {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.wiedza-main .articles .article {
  width: calc(50% - 32px);
  align-items: flex-start;
}

.wpis {
  max-width: 1728px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.wpis h1 {
  max-width: 872px;
  margin: 100px auto 0;
  background: linear-gradient(85deg, #2F3D4A 1.6%, var(--Color-1, #2F6369) 100.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wpis .paragraph {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wpis .paragraph p {
  color: #65737C;
  font-size: 16px;
}
.wpis .paragraph img {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5/2;
}

@media (max-width: 1200px) {
  .wiedza-main .articles .article {
    flex-direction: column;
    height: auto;
    gap: 24px;
  }
  .wiedza-main .articles .article img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 1000px) {
  h1, h2 {
    font-size: 64px;
  }
  .nav > div {
    flex-wrap: wrap;
    gap: 32px;
  }
  .nav .burger {
    display: flex;
  }
  .nav .links {
    opacity: 0;
    order: 3;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    pointer-events: none;
    transition: opacity 0.15s;
    transition-delay: 0s;
  }
  .nav .links:first-of-type {
    flex-direction: column;
    margin-bottom: 0;
  }
  .nav.open > div {
    padding-bottom: 335px;
  }
  .nav.open .links {
    opacity: 1;
    display: flex;
    pointer-events: auto;
    transition-delay: 0.2s;
  }
  .o-nas .blocks {
    flex-direction: column;
  }
  .o-nas .blocks .block {
    width: 100%;
  }
  .o-nas .blocks .block .heading .top svg {
    rotate: 180deg;
    transition: rotate 0.15s;
  }
  .o-nas .blocks .block.open .heading .top svg {
    rotate: 0deg;
  }
  .o-nas .blocks .block.open .heading .top p {
    order: unset;
  }
  .o-nas .blocks .block.open .more {
    padding: 0 20px 40px;
    border-radius: 0;
  }
  .o-nas .blocks .block.open .more .content {
    flex-direction: column;
    gap: 24px;
  }
  .o-nas .blocks.active .block:not(.open) {
    width: 100%;
  }
  .partners {
    gap: 54px;
  }
  .zarzad .ppl {
    padding: 0;
  }
  .zarzad .ppl .person {
    width: calc((100% - 48px) / 3);
  }
  .service {
    gap: 50px;
  }
  .service .service .blocks .block {
    width: calc((100% - 16px) / 2);
  }
  .join .blocks .block {
    width: calc((100% - 50px) / 2);
  }
  .join .blocks .block:nth-of-type(5) {
    width: 100%;
  }
  .wiedza {
    flex-direction: column;
    height: auto;
    gap: 50px;
  }
  .wiedza .left {
    width: 100%;
    gap: 24px;
  }
  .wiedza .articles {
    margin-left: -50px;
  }
  .news .articles {
    margin: 0 !important;
  }
  .news .articles .article {
    flex-direction: column;
    width: 100%;
  }
  .news .articles .article .text-side {
    padding: 0;
  }
  .news .articles .article .date {
    margin-left: auto;
  }
  .kontakt h2 {
    margin-bottom: 50px;
  }
  .kontakt .input-container label {
    font-size: 18px;
  }
  .kontakt .input-container input, .kontakt .input-container textarea {
    font-size: 18px;
  }
  .kontakt .input-container.active label {
    top: -24px;
  }
  .kontakt .row {
    flex-direction: column;
  }
  .kontakt .checkbox-row {
    width: 100%;
  }
  footer {
    height: auto;
    padding: 42px 32px;
  }
  footer .column {
    padding: 0;
  }
  footer .left {
    gap: 24px;
  }
  footer .left .column > svg {
    width: 225.879px;
    height: 52px;
  }
  footer .right {
    text-align: center;
  }
  footer .right > div {
    height: auto;
    max-width: 200px;
  }
  footer .links.desktop {
    display: none;
  }
  footer .links.mobile {
    display: flex;
    text-align: center;
    align-items: center;
  }
  footer .content {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
}
@media (max-width: 800px) {
  .hero {
    background-position-x: center;
  }
  .zarzad .ppl .person {
    width: calc((100% - 24px) / 2);
  }
  .service .blocks .block {
    width: calc((100% - 16px) / 2);
  }
}
@media (max-width: 600px) {
  section {
    padding: 50px 20px;
  }
  h1, h2 {
    font-size: 46px;
    letter-spacing: -1.38px;
  }
  h3 br {
    display: none;
  }
  .buttons, .button {
    width: 100% !important;
  }
  .column, .o-nas,
  .partners .column {
    padding: 0 20px;
  }
  .rotating-svg {
    top: 20px;
    right: -40px;
    width: 210px;
    height: 210px;
  }
  .column p {
    text-align: center;
  }
  .hero p {
    font-size: 14px;
  }
  .hero .container {
    padding: 0 20px;
  }
  .nav {
    padding: 20px;
  }
  .zarzad {
    gap: 24px;
  }
  .zarzad .top {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
  .zarzad .top p {
    max-width: 100%;
  }
  .zarzad .ppl {
    transition: 0.4s ease-in-out;
    max-height: 0px;
    overflow: hidden;
    margin-bottom: -24px;
  }
  .zarzad .ppl.show {
    max-height: 4530px;
    margin-bottom: 26px;
  }
  .zarzad .ppl .person {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .zarzad .mobile {
    display: flex;
  }
  .join .blocks .block {
    width: 100% !important;
  }
  .service .blocks {
    gap: 24px;
  }
  .service .blocks .block {
    width: 100%;
  }
  .service .blocks .block h4, .service .blocks .block p {
    max-width: unset;
  }
  .join .blocks {
    gap: 50px;
  }
  .join .blocks .block {
    flex-direction: column;
    text-align: center;
  }
  .wiedza {
    height: auto;
    flex-direction: column;
  }
  .wiedza .left {
    height: auto;
    align-items: center;
  }
  .wiedza .left .column {
    padding: 0;
    align-items: center;
  }
  .article {
    align-items: start;
    flex-direction: column;
    height: auto;
    gap: 24px;
    width: 300px;
  }
  .article img {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .wiedza .articles {
    margin-left: -20px;
  }
  .wiedza .articles::before, .wiedza .articles::after {
    width: 20px;
  }
  .wiedza .articles .embla__viewport {
    padding-left: 20px;
  }
  .news {
    gap: 24px;
  }
  .news .article {
    width: auto;
  }
  .kontakt .sent .content {
    flex-direction: column;
    text-align: center;
  }
  footer .right {
    gap: 24px;
    justify-content: space-between;
  }
  .wiedza-main {
    gap: 50px;
  }
  .wiedza-main .articles {
    flex-direction: column;
    gap: 40px;
  }
  .wiedza-main .articles .article {
    width: 100%;
  }
}

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