﻿@font-face {
    font-family: "Unbounded";
    src: url("../fonts/Unbounded-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap
}

@font-face {
    font-family: "Unbounded";
    src: url("../fonts/Unbounded-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/IBMPlexSans-Light.woff2") format("woff2");
    font-style: normal;
    font-weight: 300;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/IBMPlexSans-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/IBMPlexSans-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/IBMPlexSans-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap
}

:root {
    --ci-color-gold: #e0b04b;
    --ci-color-black: #000;
    --ci-color-white: #fff;
    --ci-color-gray: #353333;
    --ci-font-family-heading: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ci-font-family-base: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ci-font-weight-light: 300;
    --ci-font-weight-regular: 400;
    --ci-font-weight-medium: 500;
    --ci-font-weight-semibold: 600;
    --ci-font-weight-bold: 700;
    --ci-font-size-h1: clamp(2rem, 6vw, 3rem);
    --ci-font-size-h2: clamp(2rem, 6vw, 3rem);
    --ci-font-size-h3: clamp(1.25rem, 2.2vw, 1.55rem);
    --ci-font-size-body: 1rem;
    --ci-line-height-heading: 1;
    --ci-line-height-body: 1.65;
    --ci-section-padding-y: 3.5rem;
    --ci-section-header-gap: 1rem;
    --ci-section-content-gap: 1.5rem;
    --ci-grid-gap: 1.5rem;
    --ci-card-padding: 1.25rem;
    --ci-card-radius: 1.5rem;
    --ci-button-height: 3.25rem;
    --ci-button-padding-x: 1.5rem;
    --ci-button-radius: 16px;
    --ci-border-color: #e0b04b;
    --ci-header-height: 96px;
    --ci-header-current-height: 96px;
}



body {
    background: var(--ci-color-black);
    color: var(--ci-color-white);
    font-family: var(--ci-font-family-base);
    font-size: var(--ci-font-size-body);
    font-weight: var(--ci-font-weight-regular);
    line-height: var(--ci-line-height-body)
}

h1,
h2,
h3,
h4,
h5,
h6,
.ci-section__title,
.ci-hero__title,
.ci-card__title {
    font-family: var(--ci-font-family-heading);
    font-weight: var(--ci-font-weight-bold)
}

h1,
h2,
h3 {
    line-height: 1.2em !important;
}

p,
li,
blockquote,
figcaption,
input,
textarea,
select,
button,
.ci-card__text,
.ci-section__lead,
.ci-faq__answer,
.ci-review-card,
.ci-contact__details {
    font-family: var(--ci-font-family-base)
}

strong,
b,
.ci-text-bold {
    font-weight: var(--ci-font-weight-semibold)
}

.ci-btn,
.ci-badge,
.main-navigation .main-nav ul li a {
    font-family: var(--ci-font-family-base);
    font-weight: var(--ci-font-weight-medium)
}

body .site-header,
body .main-navigation {
    background: var(--ci-color-black);
    color: var(--ci-color-white);
    border-bottom: 0
}

.main-navigation .main-nav ul li a {
    color: var(--ci-color-white)
}

.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li.current-menu-item>a {
    color: var(--ci-color-gold)
}

.ci-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: #000;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(224, 176, 75, .14);
    transition: padding .28s ease, background-color .28s ease, box-shadow .28s ease
}

.ci-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 96px;
    transition: min-height .28s ease, gap .28s ease
}

.ci-header__brand .custom-logo-link {
    display: inline-flex;
    align-items: center
}

.ci-header__brand .custom-logo {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: contain;
    transition: width .28s ease, height .28s ease, transform .28s ease
}

.ci-header__brand-text {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem
}

.ci-header__nav {
    justify-self: flex-end
}

.ci-header__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.6rem;
    margin: 0;
    padding: 0;
    list-style: none
}

.ci-header__menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: font-size .28s ease
}

.ci-header__menu a:hover,
.ci-header__menu .current-menu-item>a {
    color: var(--ci-color-gold)
}

.ci-header__cta {
    display: flex;
    align-items: center;
    gap: .95rem
}

.ci-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(224, 176, 75, .5);
    background: transparent;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    position: relative;
    z-index: 95
}

.ci-header__toggle-icon {
    display: inline-flex;
    color: #fff;
    line-height: 1
}

.ci-mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: var(--ci-header-current-height, 96px);
    height: calc(100dvh - var(--ci-header-current-height, 96px));
    height: calc(100svh - var(--ci-header-current-height, 96px));
    z-index: 70;
    background: rgba(0, 0, 0, .5);
    visibility: hidden;
    pointer-events: none;
    transition: none
}

.ci-mobile-menu__panel {
    position: absolute;
    top: -1px;
    right: 0;
    width: 100vw;
    height: 100%;
    background: #000;
    padding: 84px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(.22, .61, .36, 1)
}

.ci-mobile-menu.is-open .ci-mobile-menu__panel {
    transform: translateX(0)
}

.ci-mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto
}

.ci-mobile-menu.is-closing {
    visibility: visible;
    pointer-events: none
}

.ci-mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.ci-mobile-menu__list a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase
}

.ci-mobile-menu__cta {
    display: grid;
    gap: .75rem
}

.ci-mobile-menu__cta .ci-btn {
    width: 100%;
    justify-content: center
}

.ci-header__cta .ci-btn {
    min-height: 56px;
    padding-inline: 2rem;
    font-size: 1.02rem;
    font-weight: 700;
    transition: min-height .28s ease, padding .28s ease, font-size .28s ease
}

.ci-header.is-compact {
    padding: .15rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35)
}

.ci-header.is-compact .ci-header__inner {
    min-height: 60px;
    gap: 1rem
}

.ci-header.is-compact .ci-header__brand .custom-logo {
    width: 48px;
    height: 48px
}

.ci-header.is-compact .ci-header__menu a {
    font-size: .92rem
}

.ci-header.is-compact .ci-header__cta .ci-btn {
    min-height: 42px;
    padding-inline: 1.3rem;
    font-size: .92rem
}

.container-xxl {
    margin-inline: auto
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: calc(var(--ci-grid-gap) / -2);
    row-gap: var(--ci-grid-gap)
}

.row>* {
    box-sizing: border-box;
    max-width: 100%;
    padding-inline: calc(var(--ci-grid-gap) / 2);
    width: 100%
}

.g-4 {
    row-gap: var(--ci-grid-gap)
}

.align-items-center {
    align-items: center
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.ci-section {
    padding-block: var(--ci-section-padding-y)
}

.ci-section--dark {
    background: var(--ci-color-black);
    color: var(--ci-color-white)
}

.ci-section--light {
    background: var(--ci-color-white);
    color: var(--ci-color-black)
}

.ci-section--pattern {}

.ci-section--compact {
    padding-block: calc(var(--ci-section-padding-y) * .62)
}

.ci-section--large {
    padding-block: calc(var(--ci-section-padding-y) * 1.25)
}

.ci-section__header {
    display: grid;
    gap: var(--ci-section-header-gap);
    margin-bottom: var(--ci-section-content-gap)
}

.ci-section__header--split {
    grid-template-columns: 1fr;
    align-items: end
}

.ci-section__title {
    margin: 0;
    font-size: var(--ci-font-size-h2);
    line-height: var(--ci-line-height-heading);
    letter-spacing: 0;
    padding-bottom: 24px
}

.ci-section__lead {}

.ci-card {
    height: 100%;
    border: 2px solid var(--ci-border-color);
    border-radius: var(--ci-card-radius);
    padding: var(--ci-card-padding);
    background: #000;
}

.ci-card--dark {
    color: var(--ci-color-white)
}

.ci-card--light {
    background: var(--ci-color-white);
    color: var(--ci-color-black)
}


.ci-card--media {
    position: relative;
    overflow: hidden;
    min-height: 30rem;
    padding: 0
}

.ci-card__cover-link {
    position: absolute;
    inset: 0;
    z-index: 2
}

.ci-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ci-card__body {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    padding: var(--ci-card-padding)
}

.ci-offer .ci-card__body {
    max-width: 40%
}

.ci-offer .ci-card__link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700
}

.ci-offer .ci-card--media:hover .ci-card__link {
    color: var(--ci-color-gold)
}

.ci-offer--bg-70 {
    background-size: 50%;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 9em
}

.ci-card__title {
    margin: 1.5rem 0 1.5rem 0;
    font-size: var(--ci-font-size-h3);
    line-height: 1.1
}

.ci-card__text {
    margin: 0 0 1rem;
}

.ci-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem
}

.ci-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--ci-button-height);
    padding-inline: var(--ci-button-padding-x);
    border: 2px solid transparent;
    border-radius: var(--ci-button-radius);
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease
}

.ci-btn:hover {
    transform: translateY(-1px)
}

.ci-btn:focus-visible,
.ci-faq__question:focus-visible,
.ci-carousel__arrow:focus-visible {
    outline: 3px solid var(--ci-color-gold);
    outline-offset: 3px
}

.ci-btn--primary {
    background: var(--ci-color-gold);
    color: var(--ci-color-black)
}

.ci-btn--outline {
    border-color: var(--ci-color-gold);
    color: currentColor;
    background: transparent
}

.ci-btn--light {
    background: var(--ci-color-white);
    color: var(--ci-color-black)
}

.ci-badge {
    display: inline-flex;
    width: max-content;
    border: 2px solid var(--ci-color-gold);
    border-radius: 999px;
    padding: .25rem .7rem;
    color: var(--ci-color-gold);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase
}

.ci-icon {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--ci-border-color);
    border-radius: 50%;
    color: var(--ci-color-gold)
}

.ci-media {
    overflow: hidden;
    background: #111
}

.ci-media--rounded {
    border-radius: var(--ci-card-radius);
    border: 2px solid var(--ci-border-color)
}

.ci-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ci-hero__inner {
    display: grid;
    gap: var(--ci-grid-gap);
    overflow: hidden;
    border: 2px solid var(--ci-border-color);
    border-radius: var(--ci-card-radius);
    background: linear-gradient(135deg, #070707, #1b1712);
    padding: clamp(1.25rem, 4vw, 3rem)
}

.ci-hero__title {
    margin: 0;
    font-size: var(--ci-font-size-h1);
    line-height: var(--ci-line-height-heading);
    letter-spacing: 0
}

.ci-hero__lead {
    max-width: 42rem;
}

.ci-hero__date {
    display: flex;
    gap: .75rem;
    align-items: center
}

.ci-hero__media {
    min-height: 22rem
}

.ci-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ci-hero--flex {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100svh - var(--ci-header-current-height, 96px));
    min-height: calc(100dvh - var(--ci-header-current-height, 96px));
    padding-block: clamp(1.25rem, 3vw, 2.25rem);
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden
}

.ci-hero--flex .ci-hero__container {
    position: relative;
    z-index: 2;
    width: 100%
}

.ci-hero--flex .ci-hero__card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: min(74vh, 660px);
    border: 2px solid var(--ci-color-gold, #e0b04b);
    border-radius: 24px;
    overflow: hidden;
    background: #000
}

.ci-hero--flex .ci-hero__card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .9
}

.ci-hero--flex .ci-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgb(0 0 0 / 75%) 32%, rgb(0 0 0 / 0%) 58%, rgb(0 0 0 / 0%) 100%);

}

.ci-hero--flex .ci-hero__row {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: inherit;
    margin-inline: 0
}

.ci-hero--flex .ci-hero__row>[class*="col-"] {
    padding-inline: 0
}

.ci-hero--flex .ci-hero__content {
    padding: clamp(1.5rem, 4vw, 4rem);
    max-width: 760px
}

.ci-hero--flex .ci-hero__lead {
    margin-top: 1.1rem;
    margin-bottom: 1.6rem;
    font-size: clamp(1rem, 1.2vw, 1.1rem)
}

.ci-hero--flex .ci-hero__actions {
    gap: 1rem
}

.ci-hero-basic__header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.ci-hero-basic__accent {
    flex: 0 0 auto;
    display: block;
    width: clamp(2rem, 2.8vw, 2.5rem);
    min-width: clamp(2rem, 2.8vw, 2.5rem);
    height: clamp(5rem, 7.2vw, 9em);
    border-radius: 1px;
    background: var(--ci-color-gold, #e0b04b);
}

.ci-hero-basic .ci-section__title {
    margin: 0;
}

.ci-hero-basic .ci-hero-basic__lead {
    max-width: 100ch;
}

.ci-text-image__media {
    position: relative
}

.ci-text-image__logo {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    max-width: 9rem;
    height: auto;
    object-fit: contain
}

.ci-text-image__indent-spacer {
    display: none
}

.ci-video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 2px solid var(--ci-border-color);
    border-radius: var(--ci-card-radius);
    color: #fff;
    background: #000;
    width: fit-content;
}

.ci-video__poster {
    display: block;
    width: 100%
}

.ci-video video.ci-video__poster {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(98svh - var(--ci-header-current-height, 60px));
    max-height: calc(98dvh - var(--ci-header-current-height, 60px));
    aspect-ratio: auto;
    object-fit: contain
}

.ci-video img.ci-video__poster {
    height: auto;
    aspect-ratio: auto;
    object-fit: cover
}

.ci-video__play {
    position: absolute;
    inset: 50% auto auto 50%;
    translate: -50% -50%;
    display: grid;
    place-items: center;
    width: 5rem;
    height: 5rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    line-height: 1;
    pointer-events: auto;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
    transition: transform .2s ease, opacity .2s ease
}

.ci-video__play svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #fff
}

.ci-video__play svg path {
    fill: #fff
}

.ci-video.is-playing .ci-video__play {
    opacity: 0;
    pointer-events: none
}

.ci-video-text__media {
    position: relative;
    z-index: 1;
    overflow: visible
}

.ci-video-text--media-right .ci-video-text__media {
    display: flex;
    justify-content: flex-end
}

.ci-video-text__media::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://czarnaigla.hsd.dev.mwl4.pl/wp-content/uploads/2026/05/tatuaz-chelm-lettering-czarna-igla-daniel-e1779734900783.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0
}

.ci-video-text--media-left .ci-video-text__media::before {
    right: -3%
}

.ci-video-text--media-right .ci-video-text__media::before {
    left: 0%
}

.ci-video-text__media .ci-video {
    position: relative;
    z-index: 1
}

.ci-video-text__logo {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
    margin: 0;
    line-height: 0;
}

.ci-video-text__logo-image {
    display: block;
    width: clamp(200px, 8vw, 250px);
    height: auto;
    object-fit: contain;
}

.ci-video-text,
.ci-video-text .container-xxl,
.ci-video-text .row,
.ci-video-text__media::before {
    overflow: visible;
}

.ci-carousel {
    position: relative;
    margin-bottom: 1.5rem
}

.ci-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(16rem, 30%);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: .75rem
}

.ci-carousel__track>* {
    scroll-snap-align: start
}

.ci-carousel__arrow {
    background: #000;
}

.ci-carousel__arrow svg path {
    fill: #fff;
}

.ci-carousel__arrow--prev {
    left: .5rem
}

.ci-carousel__arrow--next {
    right: .5rem
}

.ci-portfolio-swiper .swiper {
    overflow: hidden;
    padding-bottom: 1rem
}

.swiper {
    position: relative;
    display: block;
    overflow: hidden
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.ci-portfolio-swiper .swiper-slide {
    height: auto
}

.ci-portfolio-swiper {
    overflow: hidden
}

.ci-portfolio-swiper .ci-portfolio-swiper__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem
}

.ci-portfolio-swiper .ci-portfolio-swiper__cta {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex
}

.ci-portfolio-swiper .ci-portfolio-swiper__arrows {
    display: flex;
    gap: .75rem;
    align-items: center;
    justify-content: flex-end
}

.ci-portfolio-swiper .ci-carousel__arrow {
    position: static;
    translate: none
}

.ci-portfolio-swiper .swiper-button-prev::after,
.ci-portfolio-swiper .swiper-button-next::after {
    content: none
}

.ci-carousel__arrow-icon {
    width: 2.7rem;
    height: 2.7rem;
    display: block
}

.ci-carousel__arrow-icon button:hover {
    background-color: none !important;
}

.ci-carousel__arrow--prev .ci-carousel__arrow-icon {
    transform: scaleX(-1)
}

.ci-portfolio-card {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 30rem;
    overflow: hidden;
    border: 2px solid var(--ci-border-color);
    border-radius: var(--ci-card-radius);
    padding: 1rem;
    color: #fff;
    text-decoration: none;
}

.ci-portfolio-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .75
}

.ci-portfolio-card>*:not(img) {
    position: relative;
    z-index: 1
}

.ci-portfolio--extended {
    overflow: hidden;
}

.ci-portfolio-filters {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ci-portfolio-filters__group {
    display: grid;
    gap: .65rem;
}

.ci-portfolio-filters__title {
    margin: 0;
    font-size: .95rem;
    font-family: var(--ci-font-family-base);
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    text-transform: uppercase;
    letter-spacing: .02em;
}

.ci-portfolio-filters__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.ci-filter-btn {
    border: 1px solid rgba(224, 176, 75, .65);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.2;
    padding: .45rem .9rem;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.ci-filter-btn:hover,
.ci-filter-btn:focus-visible,
.ci-filter-btn.is-active {
    background: var(--ci-color-gold);
    color: #000;
    border-color: var(--ci-color-gold);
}

.ci-portfolio-grid {
    margin-inline: -8px;
}

.ci-portfolio-grid__item {
    width: 100%;
    padding: 8px;
}

.ci-portfolio--extended .ci-portfolio-card {
    height: 100%;
}

.ci-reviews__widget {
    margin-bottom: 1.5rem
}

.ci-review-card {
    min-width: min(22rem, 82vw)
}

.ci-review-card__stars {
    color: var(--ci-color-gold);
    letter-spacing: 0
}

.ci-reviews {
    background: var(--ci-color-black);
    color: var(--ci-color-black)
}

.ci-reviews .ci-section__lead {}

.ci-reviews__inner {
    background: #fff !important;
    border: 2px solid var(--ci-color-gold);
}

.ci-reviews__actions {
    justify-content: center
}

.ci-cta__inner {
    text-align: center;
    border: 2px solid var(--ci-border-color);
    border-radius: var(--ci-card-radius);
    padding: clamp(2rem, 6vw, 5rem);
    background: rgba(0, 0, 0, .5)
}

.ci-cta .ci-section__header {
    justify-items: center
}

.ci-cta__date {
    color: var(--ci-color-gold);
    font-weight: 800
}

.ci-cta-banner {
    position: relative;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center
}

.ci-cta-banner .ci-rich-text__content {
    width: 60%;
    margin-inline: auto
}

.ci-cta-banner .ci-btn-group {
    justify-content: center;
    margin-top: 1.25rem
}

.ci-cta-banner .ci-cta__date {
    margin-top: 1rem;
    text-align: center
}

.ci-step {
    border-top: 2px solid rgba(224, 176, 75, .22);
    padding-top: 1rem;
    margin-top: 1rem
}

.ci-step h4 {
    margin: 0 0 .35rem
}

.ci-notice {
    margin-top: 1.5rem;
    border: 2px solid var(--ci-border-color);
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(224, 176, 75, .1)
}

.ci-faq__items {
    display: grid;
    gap: .75rem
}

.ci-faq__item {
    border: 2px solid var(--ci-border-color);
    border-radius: 1rem;
    overflow: hidden
}

.ci-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem;
    border: 0;
    background: transparent;
    color: currentColor;
    font: inherit;
    font-family: var(--ci-font-family-heading);
    font-weight: var(--ci-font-weight-bold);
    font-size: clamp(1.05rem, 1.3vw, 1.65rem);
    line-height: 1.28;
    letter-spacing: 0;
    text-align: left
}

.ci-faq__icon {
    display: grid;
    place-items: center;
    flex: 0 0 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--ci-color-gold);
    color: #000;
    font-size: 2.1rem;
    line-height: 2.4rem;
    font-weight: 500;
    transition: transform .18s ease
}

.ci-faq__question[aria-expanded=true] .ci-faq__icon {
    transform: rotate(45deg)
}

.ci-faq__answer {
    padding: 0.8rem 1.5rem .2rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .22s ease, opacity .18s ease
}

.ci-faq__answer> :first-child {
    margin-top: 0;
}

.ci-faq__item.is-open .ci-faq__answer {
    opacity: 1
}

.ci-contact__details {
    font-style: normal
}

.ci-contact__details a {
    color: currentColor
}

.ci-contact__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.6rem
}

.ci-contact__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: var(--ci-color-white);
    color: var(--ci-color-black);
    text-decoration: none
}

.ci-contact__social svg {
    width: 58%;
    height: 58%;
    display: block
}

.ci-contact__map {
    overflow: hidden;
    min-height: 30rem;
    height: 600px;
    border: 2px solid var(--ci-border-color);
    border-radius: var(--ci-card-radius)
}

.ci-contact__map iframe,
.ci-contact__map img {
    width: 100%;
    height: 100%;
    min-height: 35rem;
    object-fit: cover
}

.ci-contact__map-link {
    margin: .9rem 0 0;
}

.ci-rich-text__content h3 {
    margin-top: 2rem;
    font-size: var(--ci-font-size-h3)
}

.ci-framed-text--single-bg {
    background-repeat: no-repeat;
    background-position: center center;
}

.ci-rich-text__logo {
    display: block;
    margin: 2rem auto 0;
    max-width: 8rem;
    height: auto
}

.ci-footer {
    background: #000;
    color: #fff;
    padding: 0 1rem;
}

.ci-footer-logo {
    padding: 2.5rem 0 1.25rem;
    text-align: center;
}

.ci-footer-logo__link {
    display: inline-flex;
    width: 160px;
    height: 160px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ci-footer-logo__image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
}

.ci-footer-logo__divider {
    margin: 1.25rem 0 0;
    border: 0;
    border-top: 1px solid rgba(224, 176, 75, .28);
}

.ci-footer__main {
    padding: 3rem 0 2rem
}

.ci-footer__title {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    color: var(--ci-color-gold)
}

.ci-footer__address,
.ci-footer__hours {
    display: grid;
    gap: .45rem;
    margin: 0
}

.ci-footer__address {
    margin-bottom: 1rem;
    font-style: normal
}

.ci-footer__address a,
.ci-footer__list a {
    color: #fff;
    text-decoration: none
}

.ci-footer__address a:hover,
.ci-footer__list a:hover {
    color: var(--ci-color-gold)
}

.ci-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .6rem
}

.ci-footer__legal {
    border-top: 1px solid rgba(224, 176, 75, .2);
    border-bottom: 1px solid rgba(224, 176, 75, .2);
    padding: .9rem 0
}

.ci-footer__legal .ci-footer__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem
}

.ci-footer__copy {
    padding: .8rem 0;
    text-align: center
}

.ci-footer__copy p {
    margin: 0;
    font-size: .95rem;
}

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

body.ci-has-custom-blocks .site-content {
    display: block;
    padding: 0;
}

body.ci-has-page-builder .site-content {
    display: block;
    padding: 0;
}

body.ci-has-custom-blocks .content-area {
    float: none;
    width: 100%;
    max-width: none;
    left: auto;
    margin: 0;
}

body.ci-has-page-builder .content-area {
    float: none;
    width: 100%;
    max-width: none;
    left: auto;
    margin: 0;
}

body.ci-has-custom-blocks .site-main {
    margin: 0;
}

body.ci-has-page-builder .site-main {
    margin: 0;
}

body.ci-has-custom-blocks .inside-article {
    padding: 0;
    background: transparent;
}

body.ci-has-page-builder .inside-article {
    padding: 0;
    background: transparent;
}

body.ci-has-custom-blocks .entry-header {
    display: none;
}

body.ci-has-page-builder .entry-header {
    display: none;
}

body.ci-has-custom-blocks .entry-content {
    width: 100%;
    max-width: none;
    margin: 0;
}

body.ci-has-page-builder .entry-content {
    width: 100%;
    max-width: none;
    margin: 0;
}

body.ci-has-custom-blocks .entry-content>.ci-section,
body.ci-has-custom-blocks .entry-content>[class*="wp-block-czarna-igla-"] {
    width: 100%;
    max-width: none;
    margin-inline: 0;
}

body.ci-has-page-builder .entry-content>.ci-section,
body.ci-has-page-builder .entry-content>[class*="wp-block-czarna-igla-"] {
    width: 100%;
    max-width: none;
    margin-inline: 0;
}

.ci-section {
    width: 100%;
    max-width: none;
}

.ci-section .container-xxl {
    max-width: 1320px;
    position: relative;
}

.ci-hero__inner>[class*="col-"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.ci-hero__content,
.ci-section__header,
.ci-section__title,
.ci-section__lead {
    min-width: 0;
    overflow-wrap: normal;
    word-break: normal;
}

@media (max-width:575.98px) {
    :root {
        --ci-section-content-gap: 1.5rem;
        --ci-grid-gap: 0.5rem;
        --ci-section-padding-y: 2rem;
    }

    .ci-section__title {
        padding-bottom: 16px;
    }

    .ci-btn-group {
        justify-content: center;
    }

    .ci-portfolio-swiper .ci-portfolio-swiper__arrows {
        justify-content: center;
    }

    .ci-footer__main {
        text-align: center;
    }

    .ci-footer__legal .ci-footer__list {
        justify-content: center;
    }

        .ci-offer--bg-70 {
        background-size: 301% !important;
        background-position: center center;
    }

        .ci-video-text__logo {
        display: none;
    }
}

@media (max-width:767.98px) {
    :root {
        --ci-header-current-height: 68px;
        --ci-section-padding-y: 2rem;
        --ci-card-padding: 2.25rem;
    }

    .ci-btn-group {
        justify-content: center;
    }

    .ci-footer__main {
        text-align: center;
    }

    .ci-footer__legal .ci-footer__list {
        justify-content: center;
    }

    .ci-header__inner {
        grid-template-columns: auto auto;
        min-height: 68px
    }

    .ci-header__brand .custom-logo {
        display: block;
        width: 56px;
        height: 56px;
        object-fit: contain;
        transition: width .28s ease, height .28s ease, transform .28s ease
    }

    .ci-header__nav,
    .ci-header__cta {
        display: none
    }

    .ci-header__toggle {
        display: inline-flex;
        justify-self: end
    }

    .ci-header.is-compact .ci-header__inner {
        min-height: 60px
    }

    .ci-header.is-compact .ci-header__brand .custom-logo {
        width: 42px;
        height: 42px
    }

    .ci-video-text--media-right .ci-video-text__media {
        justify-content: center;
    }

    .ci-portfolio-swiper .ci-portfolio-swiper__nav {
        flex-direction: column;
        align-items: stretch
    }

    .ci-portfolio-swiper .ci-portfolio-swiper__cta {
        position: static;
        transform: none;
        width: 100%
    }

    .ci-portfolio-swiper .ci-portfolio-swiper__cta .ci-btn {
        width: 100%
    }

    .ci-portfolio-swiper .ci-portfolio-swiper__arrows {
        justify-content: flex-end
    }
}

@media (max-width:991.98px) {
    .ci-header__nav,
    .ci-header__cta {
        display: none
    }

    .ci-header__toggle {
        display: inline-flex;
        justify-self: end
    }

    .ci-video-text__media::before {
        display: none
    }

    .ci-cta-banner {
        background-attachment: scroll
    }

    .ci-cta-banner .ci-rich-text__content {
        width: 90%
    }

    .ci-header__cta .ci-btn {
        font-size: .7rem;
        min-height: 44px;
        padding-inline: 1rem;
    }

    .ci-header__menu a {
        font-size: .7rem;
    }
}

@media (max-width:992px) {
:root {
    --ci-section-header-gap: 1.5rem
}

.ci-footer__main {
    text-align: center;
}

.ci-footer__legal .ci-footer__list {
    justify-content: center;
}

.ci-video-text__logo {
    top: -29%;
    left: 64%;
}

    .ci-offer .ci-card__body {
        max-width: 100%
    }

    .ci-offer--bg-70 {
        background-size: 75%
    }

    .ci-hero--flex {
        min-height: calc(100svh - var(--ci-header-current-height, 96px));
        min-height: calc(100dvh - var(--ci-header-current-height, 96px));
        height: calc(100svh - var(--ci-header-current-height, 96px));
        height: calc(100dvh - var(--ci-header-current-height, 96px));
        padding-block: 1rem;
        overflow: hidden
    }

    .ci-hero--flex .ci-hero__card {
        min-height: calc(100svh - var(--ci-header-current-height, 96px) - 2rem);
        min-height: calc(100dvh - var(--ci-header-current-height, 96px) - 2rem)
    }

    .ci-hero--flex .ci-hero__card-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        background-position: 72%;
        background-repeat: no-repeat;
        background-size: cover;
        opacity: .9
    }

    .ci-hero--flex .ci-hero__overlay {
        background: linear-gradient(180deg, rgb(0 0 0 / 58%) 0%, rgb(0 0 0 / 22%) 55%, rgb(0 0 0 / 0%) 100%)
    }

    .ci-hero--flex .ci-hero__content {
        text-align: center;
        max-width: none
    }

    .ci-hero--flex .ci-hero__actions {
        justify-content: center
    }
}

@media (max-width:1200px) {
    :root {
        --ci-header-current-height: 88px;
    }

        .ci-header__cta .ci-btn {
        font-size: .9rem;
        min-height: 44px;
        padding-inline: 1rem;
    }

    .ci-header__menu a {
        font-size: .9rem;
    }

    .ci-header__inner {
        grid-template-columns: auto 1fr auto;
        justify-items: stretch;
        gap: .8rem;
        min-height: 62px
    }

    .ci-header__brand {
        align-self: center
    }

    .ci-header__nav {
        overflow-x: auto
    }

    .ci-header__menu {
        justify-content: flex-start;
        gap: .85rem;
        flex-wrap: nowrap
    }



    .ci-header.is-compact .ci-header__inner {
        min-height: 60px
    }
}

@media (min-width:768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.666667%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.666667%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.333333%
    }

    .offset-md-1 {
        margin-left: 8.333333%
    }

    .order-md-1 {
        order: 1
    }

    .order-md-2 {
        order: 2
    }

    :root {
        --ci-section-padding-y: 3rem;
        --ci-card-padding: 1.5rem;
        --ci-section-content-gap: 2rem
    }

    .ci-portfolio-grid__item {
        width: 50%;
    }
}

@media (min-width:992px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.333333%
    }

    .ci-section__header--split {
        grid-template-columns: minmax(0, .92fr) minmax(0, .82fr)
    }

    .ci-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(24rem, .86fr);
        align-items: center
    }

    .ci-hero__media {
        height: clamp(30rem, 45vw, 44rem)
    }

    .ci-text-image__indent-spacer {
        display: block
    }

    .ci-portfolio-grid__item {
        width: 33.333333%;
    }
}

@media (min-width:1200px) {

    .ci-header__menu a {
    font-size: 0.9rem;
}

.ci-header__cta .ci-btn {
    font-size: 0.8rem;
}
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    :root {
        --ci-font-size-body: 1.0625rem;
        --ci-grid-gap: 2rem;
        --ci-card-padding: 2rem
    }

    .ci-portfolio-grid__item {
        width: 25%;
    }
}

@media (min-width:1400px) {
    :root {
        --ci-section-padding-y: 3rem
    }
}

@media (min-width:1600px) {
    :root {
        --ci-section-padding-y: 4rem;
        --ci-section-content-gap: 3rem
    }

    .ci-offer--bg-70 {
    background-size: 40%;
}

.ci-video-text__logo {
    top: -14%;
}
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important
    }
}
