@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --primary: #5E9083;
  --secondary: #E4DACC;
  --tertiary: #AB936B;
  --quaternary: #C7D4D0;
  --white: #FFFFFF;
  --black: #000000;

  --border-radius: 30px;

  --background: #F6F6F6;

  --gap: 0.5rem;

  --transition: 0.4s;

  --box-shadow: 0px 0px 20px #e0e0e0;
}

body.post,
body.page {
  margin-bottom: 0;
  padding-bottom: 0;
}

body {
  overflow: auto !important;
  scrollbar-width: thin;
  /* Dla Firefox */
  height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Plus Jakarta Sans";
}

main {
  will-change: transform;
}

/* Stylowanie paska scrollbar (Chrome/Safari) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}




/* Animacja zanikania i przesunięcia */
@keyframes pageTransition {
  0% {
    opacity: 1;

  }

  30% {
    opacity: 0;

  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/* Animacja zanikania i przesunięcia */
@keyframes test {
  0% {
    position: fixed;
    z-index: 9999;
    transform: scale(1);
    display: flex;
  }

  50% {
    transform: scale(0.9);


  }

  100% {
    transform: scale(1);
    display: flex;


  }
}

#page {
  animation: pageTransition 1.5s ease-in-out;

}



/* 
body:after {
  content: "";
  background-image:  url("https://malekaprysy.emjay97.smallhost.pl/wp-content/uploads/2025/03/logo.webp");

  background-size: 200px 100px; 
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
} */

body:after {
  content: "";
  background-image: url("https://malekaprysy.emjay97.smallhost.pl/wp-content/uploads/2025/03/logo.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 200px 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: test 1s ease-in-out;
  transform: scale(0);
}


@media screen and (min-width:668px) {
  body:after {
    background-size: 400px 200px;
  }
}

@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 */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.d-none {
  display: none !important;
}


.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: 1400px) {
  .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: 1400px) {
  .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: 1400px) {
  .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: 1400px) {
  .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: 1400px) {
  .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: 1400px) {
  .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: 1400px) {
  .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: 1400px) {
  .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: 1400px) {
  .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: 1400px) {
  .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: 1400px) {
  .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: 1400px) {
  .col--12 {
    grid-template-columns: repeat(12, 1fr);
  }
}






a {
  text-decoration: none;
  color: var(--black);
}




.container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0 1rem;
}


@media screen and (min-width: 1400px) {
  .container {
    padding: 0;
  }
}

.container--full {
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
}















/* Animacja rozwijania menu */
@keyframes expandMenu {
  0% {
    opacity: 0;
    transform: translateY(-100%);

  }

  100% {
    transform: translateY(0);
    opacity: 1;

  }
}

/* Animacja zwijania menu */
@keyframes shrinkMenu {
  0% {
    opacity: 0;
    transform: translateY(-100%);

  }

  100% {
    transform: translateY(0);
    opacity: 1;

  }
}




.home .header {
  max-width: none;

  flex: auto;
}

@media screen and (min-width:668px) {
  .home .header.sticky {
    padding: 1rem 5rem;
    max-width: 100%;

  }
}











.home .header .menu {
  /* margin-right:6rem; */
}




.header {
  position: relative;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding: 0.5rem;
  background: var(--bglight);
  gap: 1rem;
  transition: width 0.75s ease-in-out;
}


.header.sticky {
  width: 100%;

  background-color: var(--white);
  padding: 0 0.5rem;
  opacity: 1;
  top: 0;
  position: sticky;
  top: 0;
}

.header.sticky .menu {
  margin: 0;

}


.header.sticky .menu__container {
  width: auto;
  margin: 0;
}

.header.not-sticky {

  opacity: 1;
  align-items: flex-start;

}



@media screen and (min-width: 668px) {


  .header {
    justify-content: flex-end;

    display: flex;
    align-items: center;
    background: none;
    flex-wrap: wrap;
    padding: 0;

    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
  }

  .header.not-sticky {}

}

.header__nav {
  display: flex;
}

.header__section {
  display: flex;
  flex: auto;
  z-index: 99;
  align-items: center;
  gap: var(--gap);
}

@media screen and (min-width: 1400px) {
  .header__section {
    flex: 1;
  }

  .header.not-sticky {
    animation: expandMenu 0.75s ease-in-out;
  }

  .header.sticky {
    position: fixed;
    animation: shrinkMenu 0.75s ease-in-out;
  }
}

.header__section--right {
  justify-content: flex-end;
  display: flex;
}

.header__logo {
  flex:auto;
  /* flex: 3; */
  /* background-color: rgba(255, 255, 255, 0.8);
  border-radius: 120px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 60px; */
  display: none;
}

.header .header__logo {
  display: flex;
}

@media screen and (min-width:668px) {
  .home .header .header__logo {
    display: none;
  }

  .header.sticky .header__logo {
    display: flex;
  }

  .header__logo .custom-logo {
    padding: 2rem;
  }
}

.header .header__logo .custom-logo {
  height: 60px;
  padding: 0;
  width: auto;
}

.header.sticky .header__logo .custom-logo {
  /* height: 80px; */
  padding: 0;
  width: auto;
}

.header__logo .custom-logo {
  padding: 0;
}

.header__logo__title {
  display: none;
}

.header__container {
  position: relative;
  gap:1rem;
}

.header__container--hidden {
  display: none;
}

@media screen and (min-width: 668px) {
  .header__container--hidden {
    display: flex;
  }

  .header .header__logo .custom-logo {
    height: 200px;
  }

  .header.sticky .header__logo .custom-logo {
    height:80px;
  }
}

.home .header__container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
  padding: inherit;
  padding: 0;
}


.header__content {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  flex: 6;
}

.home .menu {
  background: var(--white);
}

.sticky .menu {
  background: var(--white);
  align-items: center;
}

.menu {
  order: 1;
  display: inline-flex;
  justify-content: flex-end;
  width: auto;
  align-items: center;
  border-radius: var(--border-radius);
}





.menu__toggle {
  border-radius: var(--border-radius);
  border: 2px solid var(--secondary);
  background: var(--white);
  z-index: 2;
}

.menu__toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--tertiary);
}

@media screen and (min-width: 668px) {
  .home .menu {
    margin-top: 2.25rem;
    margin-right: 5.5rem;
    background: var(--white);

  }



}

@media screen and (min-width: 1400px) {

  .header__content {
    flex: 6;
    gap: 0rem;
    align-items: center;
  }

  .menu {
    order: 0;
    flex: 6;
    align-items: center;
    background: var(--secondary);

    /* flex: 8; */
  }

  .home .menu {
    flex: none;
  }

  .menu__toggle {
    display: none;
  }


}

.menu__submenu {
  padding: 0.5rem;
  margin: 0;
  background: var(--white);
  /* box-shadow: var(--box-shadow); */
  border-radius: var(--border-radius);
  float: left;
  position: absolute;
  top: 100%;
  z-index: 99999;
  list-style: none;
  flex-basis: 100%;
}

.menu .menu__item {
  display: inline-flex;
  flex-wrap: wrap;

}



.menu .menu__item:first-child() {
  margin-top: 0;
}

.menu .menu__item:last-child {
  margin-bottom: 0;
}

.menu .menu__item .menu__link {
  transition: var(--transition);
  padding: 0.5rem 1.5rem;
  color: var(--black);
  border-radius: var(--border-radius);
  text-decoration: none;
  background-color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu .current_page_item.menu__item .menu__link,
.menu .current_page_parent.menu__item .menu__link
 {
    background: var(--secondary);
    border: 1px solid var(--white);
}

/* .menu .menu__item .menu__link--active {
    background: var(--background);
  }
  .menu .menu__item .menu__link[aria-current=page] {
    background: var(--background);
  } */
.menu .menu__item .menu__link:visited {
  color: var(--black);
}

.menu .menu__item .menu__link:hover {
  background: var(--background);
}

.menu .menu__item-object-custom {
  flex: auto;
  align-items: center;
  flex: 0;
}

.menu .menu__item.btn--primary .menu__link {
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 0.25rem 1rem;
  padding-left: 0.25rem;
  text-transform: uppercase;
}

.menu .menu__item.btn--primary .menu__link:before {
  content: url('../img/logo_min.svg');
  margin-right: 1rem;
  padding: 0.25rem;
  background: var(--white);
  border-radius: 100%;
  width: 46px;
  height: 46px;
}



.menu .menu__item button {
  flex: 0;
}

.menu__container {
  padding: 0.75rem;
  border-radius: var(--border-radius);
  /* box-shadow: var(--box-shadow); */
  /* background-color: var(--white); */
  display: none;
}

.menu__list {
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
}


@media screen and (min-width: 1400px) {

  .menu__container {
    display: flex;
    position: relative;
    top: auto;
    right: auto;
    width: 100%;

  }

  .menu .menu__item.btn--primary .menu__link {
    margin-right: 1rem;
  }


  .menu .menu__item-object-custom {
    flex: auto;
  }

  .menu .menu__item.btn--primary .menu__link:before {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
  }


}

.menu.toggled .menu__container {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding-top: 8rem;
  font-size: 1.6rem;
  background: var(--white);
}

@media screen and (min-width: 668px) {
  .menu.toggled .menu__container {
    padding-top: 4rem;
  }
}

.menu.toggled .menu__container .menu__list {
  width: 100%;
  text-align: center;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.menu.toggled .menu__container .menu__list .menu__submenu {
  position: relative;
}



.sticky .menu__phone {
  display: none;
}

.menu__phone {
  flex: 100%;
  display: inline-flex;
  justify-content: flex-end;
  display: none;


}

@media screen and (min-width:668px) {
  .menu__phone {
    display: flex;
    align-items: center;
  }

}

.menu__phone__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  padding-right: 1rem;
  border: 1px solid var(--tertiary);
  border-radius: 60px;
  font-size: 1.6rem;
  color: var(--tertiary);
  font-weight: 600;
  transition: var(--transition);
  transform: scale(1);
}


.menu__phone__link:hover {
  color: var(--tertiary);
  transform: scale(0.95);
}

.menu__phone .phone__icon {
  display: inline-flex;
  border-radius: 100%;
  background-color: var(--tertiary);
  width: 42px;
  height: 42px;
  padding: 0.25rem;
  font-weight: 400;
  color: var(--white);
  align-items: center;
  justify-content: center;
}



.footer {
  background: var(--white);
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;

}

.footer__menu {
  justify-content: flex-start;
}

.footer__menu__container {
  padding: 0;
  background: none;
  box-shadow: none;
}

.footer__menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__menu__link {
  text-decoration: none;
  padding: 0;

}

.footer__section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
}



.footer__section:first-child {
  flex-direction: column;
  line-height: 2.6rem;
  font-size: 1.4rem;

}

.footer__section:first-child a {
  letter-spacing: 2px;

}

.footer__section:nth-child(2) h4 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary);
  margin: 0;
  text-align: center;

}

.footer__section:nth-child(2) a {
  display: flex;
  font-size: 1.4rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 600;
}




.footer__section:nth-child(2) img {
  position: relative;
  border-radius: 100%;
  width: 32px;
  height: 32px;

}



.footer__section:last-child a {
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: var(--black);
}

.footer__logo__link,
.footer__logo__info {
  flex: 1;
}

.footer__logo__link {
  display: flex;
  justify-content: center;
}

.footer__title {
  margin: 0;
  font-size: 1.6rem;
  text-align: center;

}

.footer p {
  text-align: center;


  padding: 0;
  margin: 0;
}

.footer a {
  color: var(--tertiary);
}

.footer__copyright {
  border-top: 1px solid var(--tertiary);
  padding: 1rem;
  letter-spacing: 3px;
  gap: 0.5rem;
  display: flex;
}

.footer__copyright a {
  font-weight: 600;
}


@media screen and (min-width:668px) {

  .footer__section:nth-child(2) a {
    font-size: 1.6rem;
  }



  .footer__container {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 1rem;
    padding: 1rem 0;

  }


  .footer__section:first-child {
    text-align: left;
    flex-direction: row;
    ;
  }

  .footer__section:nth-child(2) {
    text-align: center;
  }


  .footer__section:last-child {
    text-align: right;
  }

  .footer__section {
    gap: 0 1rem;
    padding: 1rem 0;
  }

  .footer__title {
    text-align: inherit;
  }

  .footer p {
    text-align: inherit;

  }
}

/* Pages */
.page-template-default:not(.home) {
  padding-top: 2rem;
}

@media screen and (min-width:668px) {
  .page-template-default:not(.home), .blog,
  .page-template-default:not(.home), .archive {
    padding-top: 15rem;
  }
}






/* LOADING */

@keyframes pulse {
  100% {
    background-position: 200% 0%;
  }
}


.loading {
  display: flex;
  flex-direction: column;
  gap: 1rem 2rem;
  width: 100%;
}

.loading .loading__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;

  background: var(--background);
  height: 20rem;
  width: 100%;
  border-radius: 2rem;
  padding: 4rem 2.5rem 4rem 2.5rem;
}

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;
}


@media screen and (min-width:668px) {

  .loading {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .loading .loading__item {
    flex: 1;
  }
}

.btn {
  transition: var(--transition);
}

.btn:hover {
  transform: scale(0.9);
}


.btn--booksy {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  border: 1px solid var(--tertiary);
  gap: 1rem;
  color: var(--white)
}

.btn--booksy .btn__link {
  color: var(--black);
  text-transform: uppercase;
  font-size: 1.2rem;
}

.btn--booksy svg {
  border-radius: 100%;
  background-color: var(--primary);
}


/* Tabela */

.table {
  margin-bottom: 5rem;
}

.table:last-child {
  margin-bottom: 0;
}

.table__title {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 400;
}
.table__link, .table__link:visited{
  color: var(--primary);
  transition:var(--transition);
}

.table__link:hover{
  color:var(--black);
}

.table {
  border-radius: 30px;
  border-collapse: collapse;
  background-color: var(--background);
  /* Jasnoszary */
}

.table table,
.table th,
.table td {
  border: none;
  text-align: left;
}


.table th,
.table td {
  padding: 1rem 1.5rem;
  transition: var(--transition);
}


.table th:first-child,
.table td:first-child {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}


.table th:last-child,
.table td:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}


.table th {

  text-transform: uppercase;
}

.table tr:hover td {
  background: var(--quaternary);

}


.table__cell__description{
  display:none;
  padding:1rem;
  border-radius: var(--border-radius);
  border-radius:30px;
  position:absolute;
  background:var(--white);
  transition:var(--transition);
  
}

.table__cell__icon:hover + .table__cell__description{
  display:flex;
  max-width: 400px;
  box-shadow:var(--box-shadow);
}




/* Zabieg - template */
.zabieg-template {
  background-color: var(--background);
}

.offer {
  margin-bottom: 5rem;
}

.offer p {
  margin-top: 0;
}

.offer {
  margin-top: 20rem;
}

.offer__header {
  display: grid;
  gap: 2rem;

}


@media screen and (min-width:668px) {
  .offer__header {
    grid-template-columns: 3fr 2fr;
  }
}

.offer__aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer__featured {

  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 600px;
  object-fit: contain;
}

.offer__featured img {
  height: 100%;
}

.offer__gallery__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  /* odstęp między elementami */
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer__gallery__item{
  overflow: hidden;
    background: var(--secondary);
  border-radius: var(--border-radius);
  border: 3px solid var(--white);
}

.offer__gallery__item:first-child {
  grid-column: span 2;

}


.offer__gallery__item:first-child .offer__gallery__img {
  height: 500px;
}

.offer__gallery__img {

  display: flex;
  justify-content: center;
  align-items: flex-end;
  object-fit: cover;
  width: 100%;
  height: 250px;
  transition:var(--transition);
}

.offer__gallery__img:hover{
  transform:scale(1.1);
}

.offer__gallery__item:nth-child(even) .offer__gallery__img {
  background-color: var(--quaternary);
}


.offer .table__title {
  display: none;
}
.offer .table:before{
  content:"Cennik";
  padding:0.5rem 1.5rem;
  font-size:1.6rem;
  font-weight: 600;
  border-bottom:1px solid var(--secondary);
  width:100%;
  margin-bottom:1rem;
  display:flex;
}
.offer .table {
  display: block;
  /* background-color: var(--secondary); */
  background-color: transparent;
  border-radius: 30px;
}


.offer__title {
  color: var(--black);
  text-transform: uppercase;
  margin: 0;
}


.offer__description {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
}


.offer__terms {
  padding: 1rem 0;
}

.offer__term__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer__term__item {
  display: inline-flex;
  padding: 0;
  margin: 0;
  border-radius: var(--border-radius);
  padding: 0.25rem 1rem;
  border: 1px solid var(--primary);
  color: var(--primary)
}

.term__button {
  display: inline-flex;
  margin: 1rem 0;
  background: var(--primary);
  border-radius: var(--border-radius);
  padding: 0.6rem 2rem;
  border: 1px solid var(--primary);
  color: var(--white);
  text-transform: uppercase;
}

.term__button:hover, .term__button:visited {
  color: var(--white);
}



.offer__tabs {
  background-color: var(--white);
  /* border: 1px solid var(--quaternary); */
  padding: 2rem;
  border-radius: var(--border-radius);
  /* box-shadow: 5px 5px 20px var(--secondary); */

}

.offer__menu {
  margin-bottom: 2rem;
}

.offer__menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.offer__menu__item {
  margin: 0;
  padding: 0;
}

.offer__menu__btn {
  background-color: var(--white);
  color: var(--tertiary);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--tertiary);
  cursor: pointer;
}

.offer__menu__btn.active {
  background-color: var(--tertiary);
  color: var(--white);
}


.offer__menu__section ul {
  margin: 0;
}
















/* Jarro - template */
/* .zabieg-template-jarro {
  background-color: var(--white);
}

.jarro .alignright, .jarro .alignleft{
  width:50%;
}

.jarro {
  margin-bottom: 5rem;
  display:flex;
  flex-direction: column;
}

.jarro p {
  margin-top: 0;
}

.jarro {
  margin-top: 20rem;
}

.jarro__header, .jarro__container {
  display: grid;
  

}

.jarro__header{
  align-items: center;
  gap:5rem;
}


@media screen and (min-width:668px) {
  .jarro__header,.jarro__container {
    grid-template-columns: 2fr 5fr;
  }
}

.jarro__aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding:2rem 0;
  
}

.jarro__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width:calc(100% + 3rem);
  margin-left:-3rem;
  z-index: 2;
}

.jarro__featured {
  background: var(--secondary);
  border-radius: var(--border-radius);
  border: 3px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 600px;
  object-fit: contain;
}

.jarro__featured img {
  height: 100%;
}

.jarro__gallery__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  /* odstęp między elementami */
  list-style: none;
  padding: 0;
  margin: 0;
}



.jarro__gallery__item:first-child {
  grid-column: span 2;

}


.jarro__gallery__item:first-child .jarro__gallery__img {
  height: 500px;
}

.jarro__gallery__img {
  background: var(--secondary);
  border-radius: var(--border-radius);
  border: 3px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  object-fit: cover;
  width: 100%;
  height: 250px;
}

.jarro__gallery__item:nth-child(even) .jarro__gallery__img {
  background-color: var(--quaternary);
}

.jarro .table__title {
  display: none;
}

.jarro .table {
  display: block;
  /* background-color: var(--secondary); */
  border-radius: 30px;
}


.jarro__title {
  color: var(--black);
  text-transform: uppercase;
  margin: 0;
  font-weight: 300;
}


.jarro__description {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
}


.jarro__terms {
  padding: 1rem 0;
}

.jarro__term__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jarro__term__item {
  display: inline-flex;
  padding: 0;
  margin: 0;
  border-radius: var(--border-radius);
  padding: 0.25rem 1rem;
  border: 1px solid var(--primary);
  color: var(--primary)
}

.jarro__button, .jarro__button:visited {
  display: inline-flex;
  margin: 1rem 0;
  border-radius: var(--border-radius);
  padding: 0.6rem 2rem;
  border: 1px solid var(--tertiary);
  color: var(--tertiary);
  align-self: flex-start;
  gap:1rem;
}

.jarro__button:hover {
  color: var(--white);
}

.jarro__button__icon{
  width:1rem;
  height:1rem;
  
}

.jarro__tabs {
  background-color: var(--primary);
  /* border: 1px solid var(--quaternary); */
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 5px 5px 20px var(--secondary);
  padding-right: 5rem;
  height: 100%;

}

.jarro__menu {
  margin-bottom: 2rem;
}

.jarro__menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.jarro__menu__item {
  margin: 0;
  padding: 0;
  width:100%;

}

.jarro__menu__btn {
  color: var(--secondary);
  background:none;
  border-radius: 60px;
  padding: 1.75rem 1rem;
  border: none;
  cursor: pointer;
  width:100%;
  display:flex;
  align-items: center;
  gap:2rem;
  padding-left: 3rem;

}

.jarro__menu__btn.active {
  background-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.jarro__menu__title{
  border-bottom:1px dotted var(--secondary);
  padding-bottom: 0.5rem;
}

.dashicons.jarro__menu__icon{
font-size:1.8rem;
display:inline-flex;
align-items: center;

}
.jarro__menu__section{
  background-color: var(--background);
  border-radius:60px;
  border:0.8rem solid var(--white);
  padding:2rem;
  min-height: 700px;
  height: 100%;
  max-height: 80vh;
  overflow: auto;

}
.jarro__menu__section ul {
  margin: 0;
}

.jarro__menu__section::-webkit-scrollbar {
  width:50px;
}

.jarro__menu__section::-webkit-scrollbar-thumb {
  border: 22px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 9999px;
  background-color: var(--secondary);
}





 */














.breadcrumb {
  justify-content: flex-start;
  /* justify-content: center; */
  padding: 1rem 0;
  font-size:0.825rem;
  margin-top:3rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;

}

.breadcrumb__link, .breadcrumb__link:visited{
  border-radius:var(--border-radius);
  padding:0.25rem 1rem;
  border:1px solid var(--bgdarkshadow);
  text-decoration: none;
  display:inline-flex;
  align-items: center;
  color:var(--black);

}

.breadcrumb__separator {
  margin: 0 0.5rem;
  display:flex;
}

.breadcrumb__separator svg{
  width:1rem;
  height:1rem;
}

.breadcrumb__link:hover,
.breadcrumb__link:focus {
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  font-weight: bold;
  color: var(--primary);
}


.breadcrumb__icon{
  display:flex;
  align-items: center;
  margin-right:0.5rem;
}
.breadcrumb__icon svg{
  width:0.825rem;
  height:20px;
}





/* Cursor settings  */

/* 

*,
*:before,
*:after {
  box-sizing: border-box;
}


.pen__subheading {
  margin-bottom: 0;
}
.pen__subheading a {
  color: #52A3B6;
}
.pen__subheading a:hover, .pen__subheading a:focus {
  color: #7dbac8;
}




html,
html *,
body,
body * {
  cursor: none;
}

.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  z-index:99999;
}

.cursor-dot-outline {
  width: 40px;
  height: 40px;
  background-color: #AA936B55;
   z-index:99999;
} */