@charset "UTF-8";
/*
Theme Name: Rendart Core Theme
Theme URI: https://github.com/RENDART-sp-z-o-o/rendart-core
Author: Rendart
Author URI: https://rendart.pl
Description: Motyw bazowy dla stron deweloperskich Rendart. Wymaga pluginów Rendart Core i Rendart Core Blocks. Projekty nadpisują go motywem potomnym.
Version: 5.11.0
Update URI: https://github.com/RENDART-sp-z-o-o/rendart-core
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: rendart
*/
/* modern-css-reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  line-height: var(--line-height-label);
  text-rendering: optimizelegibility;
  -moz-user-select: none;
       user-select: none;
  padding-bottom: 4rem;
  padding-top: var(--header-height);
}
@media (min-width: 1200px) {
  body {
    padding-bottom: 0;
  }
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

input,
textarea,
select,
[contenteditable=true],
[contenteditable=plaintext-only] {
  -webkit-user-select: text;
  -moz-user-select: text;
       user-select: text;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading,
[class*=heading],
[class*=header] {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  word-wrap: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.rendart-loading-screen {
  background: var(--primary);
  inset: 0;
  position: fixed;
  transform: translate3d(0, 0, 0);
  transition: transform var(--transition);
  will-change: transform;
  z-index: var(--z-loader);
}

.rendart-loading-screen.is-leaving {
  transform: translate3d(0, -100%, 0);
}

.rendart-loading-screen__line {
  background: var(--white);
  bottom: clamp(var(--space-24), 6vw, var(--space-64));
  display: block;
  height: 1px;
  left: clamp(var(--space-24), 6vw, var(--space-64));
  opacity: 0.9;
  position: absolute;
  width: min(20rem, 34vw);
}

.rendart-loading-screen__progress {
  bottom: clamp(var(--space-24), 6vw, var(--space-64));
  color: var(--white);
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 8vw, 9rem);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0;
  line-height: var(--line-height-tight);
  position: absolute;
  right: clamp(var(--space-24), 6vw, var(--space-64));
  text-align: right;
}

body.has-rendart-loading-screen:not(.is-rendart-page-ready) {
  overflow: hidden;
}

body.has-rendart-loading-screen:not(.is-rendart-page-ready) [data-aos] {
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .rendart-loading-screen {
    transition: opacity var(--transition-fast);
  }
  .rendart-loading-screen.is-leaving {
    opacity: 0;
    transform: none;
  }
  .rendart-loading-screen__progress {
    transition: none;
  }
}
@media (max-width: 767px) {
  .rendart-loading-screen__line {
    width: min(11.25rem, 38vw);
  }
}
/* Unified button styles */
:root {
  --btn-color-secondary: var(--button-secondary-color);
  --btn-radius: var(--radius-pill);
  --btn-padding-y: 2rem;
  --btn-padding-x: 2.5rem;
  --btn-font-weight: var(--font-weight-semibold);
  --btn-letter-spacing: var(--letter-spacing-wide);
  --btn-text-transform: uppercase;
  --btn-font-size: var(--wp--preset--font-size--button, 1rem);
}

:where(.c-button,
.wp-element-button,
.wp-block-button__link,
.main-nav .wp-block-navigation-item.nav-cta > .wp-block-navigation-item__content) {
  align-items: center;
  background: var(--btn-bg, var(--btn-bg-primary));
  border: 0;
  border-radius: var(--btn-radius);
  color: var(--btn-color, var(--btn-color-primary));
  cursor: pointer;
  display: inline-flex;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  gap: var(--space-16);
  justify-content: center;
  letter-spacing: var(--btn-letter-spacing);
  line-height: var(--line-height-tight);
  min-height: var(--btn-min-height, auto);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  text-decoration: none;
  text-transform: var(--btn-text-transform);
  transition: filter var(--transition), transform var(--transition-fast);
}

:where(.c-button,
.wp-element-button,
.wp-block-button__link,
.main-nav .wp-block-navigation-item.nav-cta > .wp-block-navigation-item__content):hover,
:where(.c-button,
.wp-element-button,
.wp-block-button__link,
.main-nav .wp-block-navigation-item.nav-cta > .wp-block-navigation-item__content):focus-visible {
  filter: brightness(0.95);
}

.has-global-padding.is-layout-constrained:not(.rendart-construction-progress-pattern)[style*="padding-left:0"][style*="padding-right:0"],
.has-global-padding.is-layout-constrained:not(.rendart-construction-progress-pattern)[style*="padding-right:0"][style*="padding-left:0"] {
  padding-left: var(--wp--custom--page-gutter) !important;
  padding-right: var(--wp--custom--page-gutter) !important;
}

.rendart-construction-progress-pattern {
  --wp--style--global--content-size: var(--content-width-narrow);
}

.rendart-gallery-section-shell {
  margin-inline: auto;
  max-width: var(--content-width-narrow);
  width: 100%;
}

:where(.c-button,
.wp-element-button,
.wp-block-button__link,
.main-nav .wp-block-navigation-item.nav-cta > .wp-block-navigation-item__content):active {
  transform: translateY(1px);
}

:where(.c-button--secondary, .wp-block-button.is-style-outline .wp-block-button__link) {
  --btn-bg: var(--btn-bg-secondary);
  --btn-color: var(--btn-color-secondary);
}

:where(.c-button--secondary, .wp-block-button.is-style-outline .wp-block-button__link):hover,
:where(.c-button--secondary,
.wp-block-button.is-style-outline .wp-block-button__link):focus-visible {
  filter: brightness(0.97);
}

:where(.c-button,
.wp-element-button,
.wp-block-button__link,
.main-nav .wp-block-navigation-item.nav-cta > .wp-block-navigation-item__content):disabled,
:where(.c-button,
.wp-element-button,
.wp-block-button__link,
.main-nav .wp-block-navigation-item.nav-cta > .wp-block-navigation-item__content)[aria-disabled=true],
:where(.c-button,
.wp-element-button,
.wp-block-button__link,
.main-nav .wp-block-navigation-item.nav-cta > .wp-block-navigation-item__content).is-disabled {
  --btn-bg: var(--btn-bg-disabled);
  --btn-color: var(--btn-color-disabled);
  cursor: not-allowed;
  filter: none;
  transform: none;
}

h1,
h2,
h3,
h5,
h6 {
  margin-bottom: var(--space-24);
  margin-top: 0;
}

h4 {
  margin-bottom: var(--space-16);
}

@media (max-width: 991px) {
  .wp-block-column[style*="--wp--preset--spacing--80"] {
    padding-left: var(--wp--custom--page-gutter) !important;
    padding-right: var(--wp--custom--page-gutter) !important;
  }
  .wp-block-group.has-global-padding {
    padding-left: var(--wp--custom--page-gutter) !important;
    padding-right: var(--wp--custom--page-gutter) !important;
  }
  .rendart-construction-progress-pattern {
    padding-left: var(--space-16) !important;
    padding-right: var(--space-16) !important;
  }
  .rendart-gallery-section-shell {
    padding-left: var(--space-16);
    padding-right: var(--space-16);
  }
  .center-mobile {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .center-mobile *,
  .center-mobile p,
  .center-mobile h1,
  .center-mobile h2,
  .center-mobile h3,
  .center-mobile h4,
  .center-mobile h5,
  .center-mobile h6,
  .center-mobile li,
  .center-mobile span,
  .center-mobile a {
    text-align: center !important;
  }
  .center-mobile img,
  .center-mobile svg,
  .center-mobile video,
  .center-mobile canvas,
  .center-mobile iframe {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .wp-block-image.size-full {
    text-align: center !important;
  }
  .wp-block-image.size-full img,
  .wp-block-image.size-full svg,
  .wp-block-image.size-full video,
  .wp-block-image.size-full canvas,
  .wp-block-image.size-full iframe {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .center-mobile.is-layout-flex,
  .center-mobile .is-layout-flex,
  .center-mobile.wp-block-group,
  .center-mobile .wp-block-group,
  .center-mobile.wp-block-columns,
  .center-mobile .wp-block-columns,
  .center-mobile.wp-block-column,
  .center-mobile .wp-block-column {
    align-items: center !important;
    justify-content: center !important;
  }
  h1,
  .wp-block-heading.has-h-1-font-size,
  .has-h-1-font-size.wp-block-heading,
  .has-h-1-font-size {
    line-height: var(--line-height-tight);
  }
  h2,
  .wp-block-heading.has-h-2-font-size,
  .has-h-2-font-size.wp-block-heading,
  .has-h-2-font-size {
    line-height: var(--line-height-tight);
  }
  h3,
  .wp-block-heading.has-h-3-font-size,
  .has-h-3-font-size.wp-block-heading,
  .has-h-3-font-size {
    line-height: var(--line-height-heading);
  }
}
p {
  margin-bottom: var(--space-16);
  margin-top: 0;
}

body:not(.wp-admin):not(.editor-styles-wrapper) ul:not([class]),
body:not(.wp-admin):not(.editor-styles-wrapper) ul.wp-block-list,
body:not(.wp-admin):not(.editor-styles-wrapper) ol {
  margin-bottom: var(--space-24);
  margin-top: 0;
}
body:not(.wp-admin):not(.editor-styles-wrapper) ul:not([class]),
body:not(.wp-admin):not(.editor-styles-wrapper) ul.wp-block-list {
  font-family: var(--font-content);
  font-size: var(--font-size-body);
  font-style: normal;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0;
  line-height: var(--line-height-label);
  list-style: none;
  padding-left: 0;
}
body:not(.wp-admin):not(.editor-styles-wrapper) ul:not([class]) > li,
body:not(.wp-admin):not(.editor-styles-wrapper) ul.wp-block-list > li {
  margin-bottom: 0.35rem;
  padding-left: var(--space-24);
  position: relative;
}
body:not(.wp-admin):not(.editor-styles-wrapper) ul:not([class]) > li::before,
body:not(.wp-admin):not(.editor-styles-wrapper) ul.wp-block-list > li::before {
  background-color: currentcolor;
  border-radius: var(--radius-circle);
  content: "";
  height: 0.625rem;
  left: 0;
  position: absolute;
  top: calc(0.7em - 0.3125rem);
  width: 0.625rem;
}

header.wp-block-template-part {
  margin-top: 0 !important;
}

footer.wp-block-template-part .wp-block-column p {
  margin-top: var(--space-8) !important;
}
