@charset "UTF-8";
:root {
  --gap: 8px;
  --border-radius: 30px;
  --primary: #5B6670;
  --secondary: #5b6670;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #666666;
  --background: #F1F1F1;
  --bgdarkshadow: #999999;
  --bglight: #f8f8f8;
  --bglightless: #f0f0f0;
  --bgshadow: #e9e9e9;
  --transparent-white: rgba(255, 255, 255, 0.95);
  --transparent-dark: rgba(0, 0, 0, 0.7);
  --box-shadow: 0px 10px 20px 0px rgba(169.99999999999997, 169.99999999999997, 169.99999999999997, 0.27);
  --transition: 0.4s;
}
@media screen and (min-width: 668px) {
  :root {
    --gap: 15px;
  }
}

@keyframes pulse {
  100% {
    background-position: 200% 0%;
  }
}
.loading {
  display: flex;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}

.loading .loading__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  background: var(--background);
  height: 20rem;
  width: 25rem;
  border-radius: 2rem;
  padding: 4rem 2.5rem 4rem 2.5rem;
  margin: 3rem 0;
}

line {
  display: block;
  height: 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(to right, var(--white) 60%, rgba(255, 255, 255, 0.4) 80%, var(--white) 100%);
  background-size: 200%;
  background-position: 0% 0%;
  animation: pulse 1s ease-in-out infinite;
}

box {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 0.75rem;
  background: linear-gradient(to right, var(--white) 50%, rgba(255, 255, 255, 0.4) 75%, var(--white) 100%);
  background-size: 200%;
  background-position: 0% 0%;
  animation: pulse 1s ease-in-out infinite;
}

#l1 {
  width: 100%;
}

#l2 {
  width: 8rem;
}

#l3 {
  width: 15rem;
}

#l4 {
  width: 10rem;
}

.error-404 {
  min-height: 400px;
  align-items: center;
  margin: 5rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.error-404__image {
  border-radius: 100%;
}

.error-404__icon svg {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.archive #primary {
  flex-direction: column;
}

.has-kp-primary-color,
.has-keif-primary-color {
  color: var(--primary);
}

.has-kp-secondary-color,
.has-keif-secondary-color {
  color: var(--secondary);
}

.has-background-background-color {
  background-color: #F1F1F1;
}

.has-background-uuu-color {
  background-color: #ddffdd;
}

.has-background-aaa-color {
  background-color: #ddddff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.2rem;
}

ul,
ol {
  margin: 0;
}

b,
strong {
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  color: var(--black);
  font-weight: 600;
}

h1.head__title--1 {
  font-weight: 400;
  color: var(--black);
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}
@media screen and (min-width: 668px) {
  h1.head__title--1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  h1.head__title--1 {
    font-size: 4rem;
  }
}

h2.head__title--2 {
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1rem;
  justify-content: flex-start;
}

h3.head__title--3 {
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.col--1 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.col--2 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.col--3 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.col--4 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.col--5 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.col--6 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.col--7 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--7 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--7 {
    grid-template-columns: repeat(7, 1fr);
  }
}

.col--8 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--8 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--8 {
    grid-template-columns: repeat(8, 1fr);
  }
}

.col--9 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--9 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--9 {
    grid-template-columns: repeat(9, 1fr);
  }
}

.col--10 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--10 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--10 {
    grid-template-columns: repeat(10, 1fr);
  }
}

.col--11 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--11 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--11 {
    grid-template-columns: repeat(11, 1fr);
  }
}

.col--12 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 668px) {
  .col--12 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .col--12 {
    grid-template-columns: repeat(12, 1fr);
  }
}

.col--fr--1 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--1 {
    grid-template-columns: 1fr 1fr;
  }
}
.col--fr--2 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--2 {
    grid-template-columns: 2fr 1fr;
  }
}
.col--fr--3 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--3 {
    grid-template-columns: 3fr 1fr;
  }
}
.col--fr--4 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--4 {
    grid-template-columns: 4fr 1fr;
  }
}
.col--fr--5 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--5 {
    grid-template-columns: 5fr 1fr;
  }
}
.col--fr--6 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--6 {
    grid-template-columns: 6fr 1fr;
  }
}
.col--fr--7 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--7 {
    grid-template-columns: 7fr 1fr;
  }
}
.col--fr--8 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--8 {
    grid-template-columns: 8fr 1fr;
  }
}
.col--fr--9 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--9 {
    grid-template-columns: 9fr 1fr;
  }
}
.col--fr--10 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--10 {
    grid-template-columns: 10fr 1fr;
  }
}
.col--fr--11 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--11 {
    grid-template-columns: 11fr 1fr;
  }
}
.col--fr--12 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 668px) {
  .col--fr--12 {
    grid-template-columns: 12fr 1fr;
  }
}
body,
body.page,
body.post {
  background: #f6f6f6;
  background-image: url(../img/budynek-glowny-background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  overflow-x: hidden;
}

#page {
  animation: pageTransition 1s ease-out forwards;
  opacity: 0;
}

.page-template-page-blocks .page__content {
  display: flex;
  flex-direction: column;
}

body:after {
  content: "";
  background-image: url("../img/100lat-uek.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 300px 345px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: logoTransition 0.7s ease-in-out;
  transform: scale(0);
}

.d-none {
  display: none !important;
}

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

button,
a {
  color: var(--black);
  word-break: auto-phrase;
}
button:focus,
a:focus {
  outline: 0px solid var(--black);
  color: var(--black);
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--black);
  color: var(--black);
}
button:visited,
a:visited {
  color: var(--black);
}
button:active,
a:active {
  color: var(--black);
}
button:hover,
a:hover {
  color: var(--black);
}

iframe {
  border-radius: 30px;
}

.btn {
  background: none;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.25rem;
  display: inline-flex;
  padding: 0.4rem 1.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

a.btn--success,
.btn--success {
  border: 2px solid var(--primary);
  border-radius: var(--border-radius);
  color: var(--primary);
}

a.btn--success:hover,
.btn--success:hover {
  color: var(--white);
  background: var(--primary);
}

a.btn--info,
.btn--info {
  border: 2px solid var(--primary);
  background: var(--primary);
  border-radius: var(--border-radius);
  color: var(--white);
}

.btn--dropdown {
  padding: 0 0.4rem;
}

.btn--close {
  border: 1px solid var(--black);
  border-radius: var(--border-radius);
}

.container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (min-width: 1200px) {
  .container {
    padding: 0;
  }
}

.container--full {
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
}

.header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background: var(--bglight);
  gap: var(--gap);
}
@media screen and (min-width: 668px) {
  .header {
    background: none;
    flex-wrap: nowrap;
    padding: 0 1rem;
  }
}
.header__nav {
  display: flex;
}
.header__section {
  display: flex;
  flex: auto;
  z-index: 99;
  align-items: center;
  gap: var(--gap);
}
@media screen and (min-width: 1200px) {
  .header__section {
    flex: 2;
  }
}
.header__section--right {
  justify-content: flex-end;
  display: flex;
}
.header__logo {
  object-fit: contain;
  object-position: left;
}
.header__logo__title {
  display: none;
}
@media screen and (min-width: 668px) {
  .header__logo {
    max-height: 70px;
  }
}
.header__container {
  position: relative;
}
.header__container--hidden {
  display: none;
}
@media screen and (min-width: 668px) {
  .header__container--hidden {
    display: flex;
  }
}
.header__button {
  border: none;
  background: var(--white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1rem;
  border-radius: 100%;
  box-shadow: var(--box-shadow);
  padding: 1rem;
  cursor: pointer;
  z-index: 99;
}
.header__button--hidden {
  display: none;
}
@media screen and (min-width: 668px) {
  .header__button--hidden {
    display: flex;
  }
}

.menu {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
  order: 1;
  flex: 1;
}
@media screen and (min-width: 668px) {
  .menu {
    justify-content: flex-end;
    width: auto;
    flex: none;
  }
}
@media screen and (min-width: 1200px) {
  .menu {
    order: 0;
    padding: 0.25rem 1.5rem;
    flex: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .menu__toggle {
    display: none;
  }
}
.menu__container {
  display: none;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}
@media screen and (min-width: 1200px) {
  .menu__container {
    display: flex;
    padding: 0.25rem 1.5rem;
  }
}
.menu.toggled .menu__container {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding-top: 8rem;
  font-size: 1.6rem;
  background: var(--white);
  overflow-y: auto;
  max-height: 100vh;
}
.menu.toggled .menu__list {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex-wrap: nowrap;
}
.menu.toggled .submenu__list {
  flex-direction: column;
  padding: 1rem;
}
.menu__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
@media screen and (min-width: 668px) {
  .menu__list {
    flex-direction: row;
    gap: 1rem;
  }
}
.menu__list.focus .menu__link {
  outline: 0;
}
.menu__list .menu__item {
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu__list .menu__item > .menu__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem;
  color: black;
  text-decoration: none;
}
.menu__list .menu__item > .menu__link.btn--menu {
  margin-left: -0.5rem;
}
.menu__list .menu__item > .menu__link.btn--menu > .menu__icon {
  display: flex;
  align-items: center;
}
.menu__list .menu__item > .menu__link.btn--menu > .menu__icon .icon {
  width: 1rem;
  height: 1rem;
}
.menu__list .submenu__list {
  display: none;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 0.5rem;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  border: 1px solid var(--background);
  flex-basis: 100%;
}
@media screen and (min-width: 1200px) {
  .menu__list .submenu__list {
    position: absolute;
    top: 100%;
    flex: 1;
  }
}
.menu__list .submenu__list .submenu__list {
  top: 0;
}
@media screen and (min-width: 1200px) {
  .menu__list .submenu__list .submenu__list {
    left: 100%;
  }
}
.menu__list .submenu__list .menu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 400px;
  width: 100%;
  padding: 0.5rem;
  color: black;
  text-decoration: none;
  outline: none;
}

body.user-is-tabbing .menu__list .menu__link:focus,
body.user-is-tabbing .menu__list .submenu__list .menu__link:focus {
  outline: 2px solid var(--black);
  border-radius: var(--border-radius);
  background: var(--background);
}

.menu__list .menu__link:hover,
.menu__list.submenu__list .menu__link:hover {
  background: var(--background);
  outline: 0;
  border-radius: var(--border-radius);
}

.footer {
  background-color: var(--transparent-white);
  background-image: url(../img/budynek-glowny-background-black.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 3rem 0;
  background-blend-mode: lighten;
}
.footer__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__section p {
  margin: 0;
}
.footer__container {
  display: grid;
  gap: 4rem;
}
.footer .footer__menu {
  align-items: flex-start;
  justify-content: flex-start;
}
.footer .footer__menu__container {
  padding: 0;
  background: none;
  box-shadow: none;
}
.footer .footer__menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.footer .footer__menu .menu__item {
  margin: 0;
}
.footer .footer__menu .menu__link {
  text-decoration: none;
  padding: 0;
  text-transform: none;
  font-size: 0.875rem;
  padding: 0.25rem;
}
.footer .socials__list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 1rem;
}
.footer .socials__link {
  display: flex;
  border: 1px solid var(--bgdarkshadow);
  padding: 5px;
  border-radius: 30px;
  transition: var(--transition);
}
.footer .socials__link:hover {
  transform: translateY(-5px);
  fill: var(--secondary);
  border-color: var(--secondary);
}
.footer .footer__declaration {
  padding: 1rem 0;
  text-decoration: none;
  display: flex;
}
.footer__logos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__logos--grayscale {
  filter: grayscale(1);
  transition: var(--transition);
}
.footer__logos--grayscale:hover {
  filter: none;
}

.page__header {
  flex-direction: column;
  margin: 3rem auto;
  margin-top: 0;
}
.page__excerpt {
  margin: 0;
}
.page__content {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: var(--white);
  margin-bottom: 5rem;
  box-shadow: var(--box-shadow);
}
.page__content p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.page__content ol, .page__content ul {
  margin: 0;
  margin-bottom: 2rem;
}

.post__content {
  padding: 1rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}
@media screen and (min-width: 668px) {
  .post__content {
    padding: 2rem;
  }
}

#post {
  padding: 3rem 1rem;
  gap: 3rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 668px) {
  #post {
    display: grid;
  }
}
#post .breadcrumb {
  margin-top: 0;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1200px) {
  #post {
    padding: 3rem 0rem;
  }
}
#post .posts .post {
  position: relative;
  margin: 0;
  margin-bottom: 2rem;
}
#post .posts .post__img {
  display: flex;
  border-radius: var(--border-radius);
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}
#post .posts .post__title {
  margin-top: 1rem;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.1rem;
}
#post .posts .post__link {
  text-decoration: none;
  font-size: 1.1rem;
}
#post .posts .post__link:focus {
  display: block;
  padding: 1rem;
  outline: 2px solid var(--black);
  border-radius: var(--border-radius);
}
#post .posts .post__link--img {
  overflow: hidden;
  border-radius: var(--border-radius);
  display: flex;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}
#post .posts .post__link:hover .post__img {
  transform: scale(1.15);
}
#post .posts .post__description {
  font-size: 0.825rem;
  margin: 0;
}
#post .posts .post__category__list {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: var(--white);
  z-index: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 25px;
  font-size: 0.825rem;
  box-shadow: var(--box-shadow);
}
#post .posts .post__category__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
#post .posts .post__date {
  margin: 0;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#post .posts .post__date__text {
  font-size: 0.825rem;
}
#post .posts .post .icon {
  width: 0.825rem;
  height: 0.825rem;
}
#post .post p {
  margin-top: 0;
}
#post .post h1,
#post .post h2,
#post .post h3,
#post .post h4,
#post .post h5,
#post .post h6 {
  margin-top: 0;
  font-weight: 500;
  line-height: 120%;
}
#post .post__container {
  padding: 0;
}
@media screen and (min-width: 668px) {
  #post .post__container {
    padding: 0 2rem;
  }
}
#post .post__content {
  margin-top: -6rem;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: var(--white);
  position: relative;
}
#post .post__header {
  display: flex;
  flex-direction: column;
}
#post .post__thumbnail {
  width: 100%;
  height: 400px;
  max-height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
  order: 0;
  box-shadow: var(--box-shadow);
  border: 0px;
}
#post .post__title {
  font-size: 1.2rem;
  order: 2;
  padding: 0;
  margin-top: 0;
}
@media screen and (min-width: 668px) {
  #post .post__title {
    font-size: 1.8rem;
  }
}
#post .post__excerpt {
  order: 2;
}
#post .post__meta {
  order: 1;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
#post .post__meta .icon {
  width: 1rem;
  height: 1rem;
  stroke: var(--primary);
}
#post .post__meta__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--gap);
}
#post .post__meta__item {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.posts .post__img {
  border-radius: var(--border-radius);
  height: 130px;
  object-fit: cover;
  width: 100%;
  background: var(--white);
  box-shadow: var(--box-shadow);
}

.site {
  padding-top: 1rem;
  transition: var(--transition) ease;
}
@media screen and (min-width: 1200px) {
  .site.shifted {
    transform: translateX(400px);
  }
}

.aside {
  left: -400px;
  transition: var(--transition) ease-in-out;
  z-index: 99;
  width: 400px;
  height: 100%;
  position: fixed;
  left: -400px;
  top: 0;
  background: var(--white);
  box-shadow: var(--box-shadow);
  padding: 1rem;
}
.aside__toggle {
  order: 1;
}
@media screen and (min-width: 668px) {
  .aside__toggle {
    order: 0;
  }
}
.aside.open {
  left: 0;
  max-width: 100%;
  width: 400px;
  overflow: auto;
}
.aside .dropdown.open {
  gap: 0;
  padding: 0;
}
.aside .dropdown__list {
  gap: var(--gap);
}
.aside .dropdown__item {
  text-align: left;
  gap: 0.5rem 1rem;
}
.aside .dropdown__link {
  padding: 0;
  word-break: normal;
}
.aside .dropdown__children.open {
  padding-left: 2rem;
  margin: 0;
}
.aside .dropdown__children .dropdown__item {
  padding: 0;
  border-left: 1px solid var(--bgdarkshadow);
  text-align: left;
}
.aside .dropdown__children .dropdown__item .dropdown__children.open {
  padding-left: 1rem;
}
.aside .dropdown__children .dropdown__link {
  padding: 0.25rem 0;
  padding-left: 1rem;
}
.aside .dropdown__children--aside {
  flex-direction: column;
}
.aside .dropdown--close {
  right: 1rem;
}

/* Style dla dropdowna */
.dropdown {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem;
  border-radius: var(--border-radius);
}
.dropdown.open {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--white);
}
.dropdown.open.wcag {
  padding-top: 4rem;
  gap: 2rem;
  text-align: center;
}
.dropdown__title {
  margin: 0;
  margin-bottom: 1rem;
}
.dropdown--accordion {
  position: relative;
  top: 0;
  right: auto;
}
.dropdown__children {
  position: relative;
  top: 0;
  right: auto;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  width: 100%;
  padding: 1rem 0;
}
.dropdown__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 3rem;
}
.dropdown__list--wcag {
  padding: 0;
}
.dropdown__item {
  min-width: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0;
  text-align: center;
}
.dropdown__item [aria-expanded=true] .icon {
  transform: rotate(180deg);
}
.dropdown__btn {
  flex: 0;
}
.dropdown__link {
  display: block;
  width: 100%;
  padding: 0;
  flex: 5;
  text-decoration: none;
}
.dropdown__link--wcag {
  background: none;
}
.dropdown__link:hover {
  background-color: #f0f0f0;
}
.dropdown--close {
  background: none;
  border: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: auto;
  margin: 0 auto;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem;
  font-weight: 300;
}
.dropdown--close:focus {
  outline: none;
  box-shadow: 0 0 0 2px #0056b3;
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--transparent-dark);
  z-index: 999;
  top: 0;
  left: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal.open {
  display: flex;
}
.modal__content {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  min-width: 200px;
  min-height: 200px;
}
.modal__content--full {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--black);
  position: relative;
  z-index: 2;
  border-radius: 0px;
}
.modal__content--full:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--transparent-dark);
  background-image: url(../img/budynek-glowny-background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.1;
  z-index: -1;
}
.modal--close {
  background: none;
  border: none;
  position: absolute;
  top: 2rem;
  right: 2rem;
  left: auto;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem;
  font-weight: 300;
}
.modal--close:focus {
  outline: none;
  box-shadow: 0 0 0 2px #0056b3;
}
.modal--search .modal--close {
  filter: invert(1);
}

.search__form {
  display: flex;
  width: 100%;
}
.search__label--hidden {
  width: 0;
  visibility: hidden;
}
.search__submit {
  cursor: pointer;
  border-bottom: 1px solid var(--gray);
}
.search__submit:hover:focus {
  border-bottom: 1px solid var(--gray);
}
.search__field, .search__submit {
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--gray);
}
@media screen and (min-width: 668px) {
  .search__field, .search__submit {
    padding: 1rem;
  }
}
.search__field:focus, .search__field:focus-visible, .search__submit:focus, .search__submit:focus-visible {
  border: none;
  outline: none;
}
.search__field svg, .search__submit svg {
  filter: invert(1);
}
.search__field {
  flex: auto;
  border-bottom: 1px solid var(--gray);
  color: var(--white);
  font-weight: 600;
}
@media screen and (min-width: 668px) {
  .search__field {
    font-size: 2rem;
  }
}
.search__field:focus, .search__field:focus-visible {
  border-bottom: 1px solid var(--white);
  color: var(--white);
}
.search__form:focus-within > .search__field, .search__form:focus-within > .search__submit {
  border-bottom: 1px solid var(--white);
}

.container .institutes {
  width: 100%;
  margin-bottom: 5rem;
}
.container .institutes__list {
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
.container .institutes__list .institutes__list {
  padding-left: 1rem;
}
.container .institutes__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.container .institutes__link {
  text-decoration: none;
  border-radius: var(--border-radius);
  background-color: var(--white);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: var(--gap);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.container .institutes__link:hover {
  transform: scale(0.95);
}
.container .institutes__icon {
  display: flex;
  align-items: center;
}

.search__content {
  flex-direction: column;
}

/* Przyciski */
#contrast-black-white {
  background: var(--black);
  color: var(--white);
}

#contrast-white-black {
  background: var(--white);
  color: var(--black);
}

#contrast-yellow-black {
  background: yellow;
  color: var(--black);
}

#contrast-black-yellow {
  background-color: var(--black) !important;
  color: yellow !important;
}

/* Powiększanie tekstu */
.font-bigger :not(.wcag *) {
  font-size: 102% !important;
}

.font-biggest :not(.wcag *) {
  font-size: 105% !important;
}

/* Kontrast */
.contrast-black-white :not(.wcag *) {
  background-color: var(--black) !important;
  color: white !important;
}

.contrast-white-black :not(.wcag *) {
  background-color: var(--white) !important;
  color: var(--black) !important;
}

.contrast-yellow-black :not(.wcag *) {
  background-color: var(--black) !important;
  color: yellow !important;
}

.contrast-black-yellow :not(.wcag *) {
  background-color: yellow !important;
  color: var(--black) !important;
}

.contrast-black-white *,
.contrast-white-black *,
.contrast-yellow-black *,
.contrast-black-yellow * {
  box-shadow: none !important;
}

/* Animacja zanikania i przesunięcia */
@keyframes pageTransition {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Animacja zanikania i przesunięcia */
@keyframes logoTransition {
  0% {
    position: fixed;
    z-index: 9999;
    transform: scale(1);
    display: flex;
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    display: flex;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate(0, -100%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate(0, -200%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate(-200%, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate(100%, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate(200%, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(0, 100%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate(0, 200%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate(-100%, -100%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate(100%, -100%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate(-100%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate(100%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translate(0, 100%);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
    transform: translate(0, 200%);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translate(-100%, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
    transform: translate(-200%, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
    transform: translate(100%, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
    transform: translate(200%, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translate(0, -100%);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
    transform: translate(0, -200%);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate(-100%, -100%);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate(100%, -100%);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate(-100%, 100%);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate(100%, 100%);
  }
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}
.fadeIn {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeIn 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInDown {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInDown 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInDownBig {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInDownBig 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInLeft {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInLeft 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInLeftBig {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInLeftBig 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInRight {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInRight 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInRightBig {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInRightBig 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInUp {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInUp 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInUpBig {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInUpBig 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInTopLeft {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInTopLeft 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInTopRight {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInTopRight 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInBottomLeft {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInBottomLeft 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeInBottomRight {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeInBottomRight 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOut {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOut 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutDown {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutDown 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutDownBig {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutDownBig 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutLeft {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutLeft 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutLeftBig {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutLeftBig 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutRight {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutRight 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutRightBig {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutRightBig 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutUp {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutUp 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutUpBig {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutUpBig 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutTopLeft {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutTopLeft 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutTopRight {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutTopRight 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutBottomLeft {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutBottomLeft 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeOutBottomRight {
  opacity: 0;
  transform: translate(0, 0);
  animation: fadeOutBottomRight 1s ease-in-out;
  animation-fill-mode: forwards;
}

[data-animation] {
  opacity: 0;
}/*# sourceMappingURL=style.css.map */