:root {
  font-size: 100%;
  --color-primary: #000;
  --color-secondary: #fff;
  --color-accent: #000;
  --sp-step: 0.625rem;
  --sp-2: calc(var(--sp-step) * .2);
  --sp-4: calc(var(--sp-step) * .4);
  --sp-6: calc(var(--sp-step) * .6);
  --sp-8: calc(var(--sp-step) * .8);
  --sp-10: calc(var(--sp-step) * 1);
  --sp-12: calc(var(--sp-step) * 1.2);
  --sp-14: calc(var(--sp-step) * 1.4);
  --sp-16: calc(var(--sp-step) * 1.6);
  --sp-18: calc(var(--sp-step) * 1.8);
  --sp-20: calc(var(--sp-step) * 2);
  --sp-24: calc(var(--sp-step) * 2.4);
  --sp-28: calc(var(--sp-step) * 2.8);
  --sp-32: calc(var(--sp-step) * 3.2);
  --sp-36: calc(var(--sp-step) * 3.6);
  --sp-40: calc(var(--sp-step) * 4);
  --sp-48: calc(var(--sp-step) * 4.8);
  --sp-56: calc(var(--sp-step) * 5.6);
  --sp-64: calc(var(--sp-step) * 6.4);
  --sp-72: calc(var(--sp-step) * 7.2);
  --sp-80: calc(var(--sp-step) * 8);
  --sp-96: calc(var(--sp-step) * 9.6);
  --sp-112: calc(var(--sp-step) * 11.2);
  --sp-128: calc(var(--sp-step) * 12.8);
  --sp-144: calc(var(--sp-step) * 14.4);
  --sp-160: calc(var(--sp-step) * 16);
  --sp-192: calc(var(--sp-step) * 19.2);
  --fs-10: var(--sp-10);
  --fs-12: var(--sp-12);
  --fs-14: var(--sp-14);
  --fs-16: var(--sp-16);
  --fs-18: var(--sp-18);
  --fs-20: var(--sp-20);
  --fs-24: var(--sp-24);
  --fs-28: var(--sp-28);
  --fs-32: var(--sp-32);
  --fs-36: var(--sp-36);
  --fs-40: var(--sp-40);
  --fs-48: var(--sp-48);
  --fs-56: var(--sp-56);
  --fs-64: var(--sp-64);
  --fs-72: var(--sp-72);
  --fs-80: var(--sp-80);
  --fs-96: var(--sp-96);
  --fs-112: var(--sp-112);
  --fs-128: var(--sp-128);
  --fs-144: var(--sp-144);
  --fs-160: var(--sp-160);
  --fs-192: var(--sp-192);
  --fs-h1: clamp(var(--fs-40), calc(2vw + 1rem), var(--fs-72));
  --fs-h2: clamp(var(--fs-32), calc(2vw + 1rem), var(--fs-64));
  --fs-h3: clamp(var(--fs-24), calc(2vw + 1rem), var(--fs-56));
  --fs-h4: clamp(var(--fs-20), calc(2vw + 1rem), var(--fs-48));
  --fs-h5: clamp(var(--fs-16), calc(2vw + 1rem), var(--fs-40));
  --fs-h6: clamp(var(--fs-14), calc(2vw + 1rem), var(--fs-32));
  --font-family-base: "Poppins", sans-serif;
  --font-family-heading: "radix", sans-serif;
  --fs-p: var(--fs-16);
  --fs-li: var(--fs-16);
  --lh-p: 1.5;
  --lh-li: 1.5;
  --p-margin: var(--sp-24) 0;
  --li-margin: var(--sp-12) 0;
}

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

* {
  margin: 0;
  padding: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition: none;
  }
}
body,
html {
  height: 100%;
  scroll-behavior: smooth;
}

/**
  FUNCTIONS
 */
.footer {
  background-color: #E0F541;
  padding: 8rem 0 0;
}
.footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "motto langs" "empty contact";
  gap: 4.8rem;
}
.footer .heading {
  font-size: 5.2rem;
  max-width: 71rem;
  font-weight: 400;
  line-height: 1.1;
  grid-area: motto;
}
.footer__contact-data {
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-base);
  font-size: 4rem;
  justify-self: end;
  grid-area: contact;
}
.footer__contact-data a {
  color: black;
  text-decoration: none;
}
.footer__contact-data a:hover {
  text-decoration: underline;
}
.footer__bottom {
  margin-top: 7.2rem;
  padding: 4rem 0;
  border-top: 1px solid #000;
}
.footer__bottom .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom .logo-sign {
  width: 5.8rem;
}
.footer__logo {
  width: 38rem;
  height: auto;
}
.footer__langs {
  grid-area: langs;
  justify-self: end;
  align-self: start;
  background-color: black;
  border-radius: 1.7rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.footer__langs:has(.lang-item-pl) li a:after {
  right: 0.8rem;
}
.footer__langs:has(.lang-item-en) li a {
  justify-content: end;
}
.footer__langs:has(.lang-item-en) li a:after {
  left: 0.8rem;
}
.footer__langs li a {
  color: white;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-family: var(--font-family-heading);
  font-weight: 200;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  width: 7.8rem;
  height: 3.4rem;
  padding: 1rem 0.8rem 0.8rem 0.6rem;
}
.footer__langs li a:after {
  transition: all 0.3s ease;
  width: 1.8rem;
  height: 1.8rem;
  content: "";
  position: absolute;
  top: 0.8rem;
  background-color: white;
  border-radius: 0.9rem;
}
.footer__langs li a:hover:after {
  width: 2.4rem;
}
.footer.alt .container {
  column-gap: 9rem;
  grid-template-columns: 1fr auto max-content;
  grid-template-areas: "decor . ." "left right map";
}
.footer.alt .footer__info-decor {
  grid-area: decor;
}
.footer.alt .footer__info-left {
  grid-area: left;
}
.footer.alt .footer__info-right {
  grid-area: right;
}
.footer.alt .footer__info-map {
  grid-area: map;
}
.footer.alt .footer__info-single {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer.alt .footer__info-single:not(:first-child) {
  margin-top: 4rem;
}
.footer.alt .footer__info-single span {
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.3;
  text-transform: uppercase;
}
.footer.alt .footer__info-single div {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.1rem;
}
.footer.alt .footer__info-single div a {
  color: inherit;
  text-decoration: none;
}
.footer.alt .footer__info-single div a:hover {
  text-decoration: underline;
}
.footer.alt .circle-btn:after {
  background-color: rgba(0, 0, 0, 0.1);
}
.footer.alt .footer__bottom {
  margin-top: 16rem;
}
.footer.alt .footer__bottom .footer__langs {
  align-self: unset;
}

@view-transition {
  navigation: auto;
}
*:focus, *:active {
  outline: none;
}

* {
  box-sizing: border-box;
}

::selection {
  background: #DCFA21;
  color: #1900D3;
}

::-moz-selection {
  background: #DCFA21;
  color: #1900D3;
}

html {
  margin-top: 0 !important;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  scroll-behavior: smooth;
  background-color: #F5F4F4;
}

body {
  min-height: 100vh;
  font-family: var(--font-family-base);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#wpadminbar {
  display: none;
}

p:empty {
  display: none;
}

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