@media (max-width: 1023px) {
    .aspect-video {
        aspect-ratio: 340 / 240 !important;
    }
}

/* ================ ================ VARIABLES ================ ================ */
:root {
	--brand-primary-bg: #fac730;
	--brand-primary-text: #fac730;
	--on-primary: #ffffff;

	--brand-secondary-bg: #000000;
	--brand-secondary-text: #000000;
	--on-secondary: #ffffff;

	--dark-text: #3a3a3a;
	--light-text: #000000;

	--dark-bg: #f1f1f1;
	--light-bg: #f9f9f9;

	--radius: 15px;

	--btn-primary-bg: var(--brand-primary-bg);
	--btn-primary-text: var(--on-primary);
	--btn-primary-bg-hov: #1a1a1a;

	--btn-secondary-bg: var(--brand-secondary-bg);
	--btn-secondary-text: var(--on-secondary);
	--btn-secondary-bg-hov: #eaeaea;

	--btn-white-bg: transparent;
	--btn-white-text: #ffffff;
	--btn-white-border: #ffffff;
	--btn-white-bg-hov: #ffffff;
	--btn-white-text-hov: #111111;

	--btn-padding-y: 7px;
	--btn-padding-x: 35px;
	--btn-radius: var(--radius);

	--link-color: var(--brand-primary-text);
	--link-underline: var(--brand-primary-text);

	--field-bg: #ffffff;
	--field-text: #111111;
	--field-border: #e5e7eb;
	--field-radius: var(--radius);
	--field-padding-y: 10px;
	--field-padding-x: 16px;

	--panel-bg: #ffffff;
	--panel-border: #e5e7eb;
	--panel-radius: var(--radius);
	--panel-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);

	--content-max-width: 72ch;
	--p: 15px;
	--h1: 28px;
	--h2: 24px;
	--h3: 20px;
	--h4: 18px;
	--h5: 16px;
	--h6: 14px;
	--space-lg: 15px;
	--space-md: 12px;
	--space-sm: 8px;
	--space-xs: 6px;

	--transition: 0.3s ease-in-out;
}

/* ================ ================ GLOBAL ================ ================ */
html {
	background-color: #000000;
	scroll-behavior: smooth;
}

body {
	background-color: #000000;
}

/* ================ ================ COKKIEYES ================ ================ */


/* ================ ================ FONTS ================ ================ */
* {
	font-family: "Montserrat", sans-serif;
	font-weight: 200;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading,
.title {
	font-family: "Montserrat", sans-serif;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
	font-family: "Montserrat", sans-serif;
}

/* ================ ================ COLORS ================ ================ */
.text-dark {
	color: var(--dark-text);
}
.text-light {
	color: var(--light-text);
}

.text-primary {
	color: var(--brand-primary-text);
}
.text-secondary {
	color: var(--brand-secondary-text);
}

.bg-primary {
	background-color: var(--brand-primary-bg);
	color: var(--on-primary);
}
.bg-secondary {
	background-color: var(--brand-secondary-bg);
	color: var(--on-secondary);
}

.bg-muted-light {
	background-color: var(--light-bg);
}
.bg-muted-dark {
	background-color: var(--dark-bg);
}

.bg-primary-soft {
	background-color: rgba(244, 172, 62, 0.2);
}
.bg-primary-subtle {
	background-color: rgba(244, 172, 62, 0.1);
}
.border-primary-soft {
	border-color: rgba(244, 172, 62, 0.4);
}
.border-primary-medium {
	border-color: rgba(244, 172, 62, 0.5);
}
.hover-primary-fill:hover {
	background-color: var(--brand-primary-bg) !important;
	color: #000 !important;
}
.group:hover .group-hover-fill {
	background-color: var(--brand-primary-bg) !important;
}
.group:hover .group-hover-fill i,
.group:hover .group-hover-fill.text-primary {
	color: #000 !important;
}
.hover-border-primary:hover {
	border-color: rgba(244, 172, 62, 0.5) !important;
}
.hover-bg-subtle:hover {
	background-color: rgba(255, 255, 255, 0.05) !important;
}
.shadow-primary-soft {
	box-shadow: 0 20px 40px -15px rgba(244, 172, 62, 0.15);
}
.bg-gradient-primary-subtle {
	background: linear-gradient(
		to bottom right,
		rgba(244, 172, 62, 0.1),
		transparent
	);
}
.bg-gradient-primary-glow {
	background: linear-gradient(
		to right,
		rgba(244, 172, 62, 0.5),
		rgba(244, 172, 62, 0.2)
	);
}
.decor-primary-corner {
	background: rgba(244, 172, 62, 0.1);
}
.decor-primary-border {
	border-color: rgba(244, 172, 62, 0.3);
}
.bg-gradient-primary-line {
	background: linear-gradient(
		to left,
		rgba(244, 172, 62, 0.5),
		transparent
	);
}
.search-glow {
	background: linear-gradient(
		to right,
		rgba(244, 172, 62, 0.5),
		rgba(244, 172, 62, 0.2)
	);
}
.hover-shadow-primary:hover {
	box-shadow: 0 20px 40px -15px rgba(244, 172, 62, 0.15);
}

/* ================ ================ FORMS ================ ================ */
.form-primary-focus input:focus,
.form-primary-focus textarea:focus {
	border-color: var(--brand-primary-bg) !important;
	box-shadow: 0 0 0 1px var(--brand-primary-bg) !important;
	outline: none !important;
}
.form-primary-focus input[type="checkbox"] {
	accent-color: var(--brand-primary-bg);
}

/* ================ ================ BUTTONS ================ ================ */
.btn-category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;

	width: 123px;
	height: 50px;

	background: #f3f3f3;
	border: 1px solid #d0d0d0;

	font-size: 10px;
	font-weight: 700;
	color: #000;
	line-height: 1.2;

	cursor: pointer;
	transition: all 0.2s ease;
}
.btn-category.active {
	background-color: #fac730 !important;
	color: #ffffff !important;
}
@media screen and (max-width: 1024px) {
	.btn-category {
		width: 80px !important;
		background: #ffffff;
	}
}

.btn-variant {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;

	width: 100%;
	height: 40px;

	background: #ffffff;
	border: 1px solid #d0d0d0;

	font-size: 10px;
	font-weight: 700;
	color: #000;
	line-height: 1.2;

	cursor: pointer;
	transition: all 0.2s ease;
}
.btn-variant:hover {
	background: #dbdbdb;
}
.btn-variant.active {
	background-color: #fac730 !important;
	color: #ffffff !important;
}

.btn-category-sm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;

	width: 100%;
	height: 30px;
	background: #f3f3f3;
	border: 1px solid #d0d0d0;

	font-size: 10px;
	font-weight: 700;
	color: #000;
	line-height: 1.2;

	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-category br {
	display: block;
}

.btn-category:hover {
	background: #e9e9e9;
}

.btn-category-active, .cky-btn.cky-btn-customize, .cky-btn.cky-btn-reject, .cky-btn.cky-btn-preferences {
	background: var(--brand-primary-bg) !important;
	border-color: #d4a600 !important;
}

.cky-btn.cky-btn-accept, .cky-btn.cky-btn-customize, .cky-btn.cky-btn-reject, .cky-btn.cky-btn-preferences {
	display: inline-block;
	padding: var(--btn-padding-y) var(--btn-padding-x);
	border-radius: var(--btn-radius);
	border: 1px solid var(--brand-primary-bg) !important;
	font-weight: 400;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition);
	font-size: 15px;
	color: #ffffff !important;
	background-color: #f4ac3e !important;
}

.btn {
	display: inline-block;
	padding: var(--btn-padding-y) var(--btn-padding-x);
	font-weight: 400;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition);
	font-size: 15px;
}

.btn-primary {
	background-color: var(--brand-primary-bg);
}
.btn-primary:hover,
.btn-primary:focus {
	background-color: #ffffff;
	color: var(--brand-primary-bg);
}

.btn-secondary {
	background-color: var(--brand-secondary-bg);
	color: #ffffff;
}
.btn-secondary:hover,
.btn-secondary:focus {
	background-color: var(--brand-primary-bg);
	color: #000000;
}

.btn-white-outlined {
	background-color: var(--btn-white-bg);
	color: var(--btn-white-text);
	border: 2px solid var(--btn-white-border);
}
.btn-white-outlined:hover,
.btn-white-outlined:focus {
	background-color: var(--btn-white-bg-hov);
	color: var(--btn-white-text-hov);
	border-color: var(--btn-white-bg-hov);
}

/* ================ ================ LINKS ================ ================ */
.link-primary {
	color: var(--link-color);
	text-decoration: none;
	transition: var(--transition);
}
.link-primary:hover {
	opacity: 0.5;
}

.link-header {
	color: #ffffff;
	text-decoration: none;
	background-image: linear-gradient(#ffffff, #ffffff);
	background-size: 0% 0.1em;
	background-position: 100% 100%;
	background-repeat: no-repeat;
	transition:
		background-size var(--transition),
		color var(--transition);
}
.link-header:hover,
.link-header:focus,
.link-header:active {
	background-size: 100% 0.1em;
	background-position-x: 0%;
}

.link-footer {
	color: #ffffff;
	opacity: 0.5;
	transition: var(--transition);
	font-size: 15px;
}
.link-footer:hover {
	opacity: 1;
}

.link-footer-head {
	color: #ffffff;
	font-size: 17px;
	font-weight: 600;
}

.link-footer-color {
	color: #ffffff;
	transition: var(--transition);
	font-size: 16px;
	font-weight: 500;
}
.link-footer-color:hover {
	opacity: 0.5;
}

.link-footer-color-head {
	color: #ffffff;
	font-size: 22px;
	font-weight: 600;
}

/* ================ ================ SHADOWS ================ ================ */
.shadow-soft {
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
}

/* ================ ================ CONTENT ================ ================ */
.content-box p {
	font-size: var(--p);
	text-align: justify;
}
.content-box h1 {
	font-size: var(--h1);
	margin: 0 0 var(--space-lg);
}
.content-box h2 {
	font-size: var(--h2);
	margin: var(--space-lg) 0 var(--space-md);
}
.content-box h3 {
	font-size: var(--h3);
	margin: var(--space-lg) 0 var(--space-sm);
}
.content-box h4 {
	font-size: var(--h4);
	margin: 0 0 var(--space-sm);
}
.content-box h5 {
	font-size: var(--h5);
	margin: 0 0 var(--space-xs);
}
.content-box h6 {
	font-size: var(--h6);
	margin: 0 0 4px;
}
.content-box ol,
.content-box ul {
	margin-bottom: var(--space-lg);
}
.content-box ol {
	list-style-type: decimal;
}
.content-box ul {
	list-style-type: disc;
}
.content-box li {
	margin-left: 20px;
}
.content-box ul ul,
.content-box ol ol,
.content-box ul ol,
.content-box ol ul {
	margin-left: 20px;
}

/* ================ ================ PSEUDO ELEMENTS ================ ================ */
.dot {
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	flex-shrink: 0;
}

.dot-b {
	width: 6px;
	height: 6px;
	background: #000;
	border-radius: 50%;
	flex-shrink: 0;
}

/* ================ ================ HEADER SCROLL ================ ================ */
#site-header.header-scrolled {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background-color: rgba(0, 0, 0, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition: 1s ease !important;
}
#site-header {
	transition: 1s ease !important;
}

/* ================ ================ HEADER FRONT ================ ================ */
.reveal-line {
	display: block;
	overflow: hidden;
}

.reveal-inner {
	display: block;
	transform: translateX(120%);
	opacity: 0;
	will-change: transform, opacity;
}

.reveal-box.reveal-from-left .reveal-inner {
	transform: translateX(-120%);
}

@media (max-width: 1023px) {

	.reveal-box.reveal-from-left-mobile .reveal-inner {
		transform: translateX(-120%);
		opacity: 0;
		will-change: transform, opacity;
	}

	.reveal-box.reveal-from-left-mobile.active .reveal-inner {
		transform: translateX(0);
		opacity: 1;
	}
}

.reveal-content {
	display: inline;
}

.reveal-content strong,
.reveal-content b {
	font-weight: 700;
}

.reveal-box.active:not(.reveal-require-scroll) .reveal-inner {
	transform: translateX(0);
	opacity: 1;
	transition:
		transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 1.35s ease;
}

.reveal-box.active:not(.reveal-require-scroll)
.reveal-line:nth-child(2)
.reveal-inner {
	transition-delay: 0.22s;
}

.reveal-box.reveal-require-scroll.active .reveal-inner {
	transform: translateX(120%);
	opacity: 0;
	transition: none;
}
.reveal-box.reveal-require-scroll.reveal-from-left.active
.reveal-inner {
	transform: translateX(-120%);
}

body.reveal-scroll-enabled
.reveal-box.reveal-require-scroll.active
.reveal-inner {
	transform: translateX(0);
	opacity: 1;
	transition:
		transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 1.35s ease;
}
body.reveal-scroll-enabled
.reveal-box.reveal-require-scroll.active
.reveal-line:nth-child(2)
.reveal-inner {
	transition-delay: 0.22s;
}

.scroll-reveal-line {
	display: block;
	opacity: 0;
	transform: translateY(34px);
	transition:
		transform 1800ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 1800ms ease;
	will-change: transform, opacity;
}

.scroll-reveal-line.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ================ ================ MOBILE MENU ================ ================ */
#mobile-menu {
	max-height: 100vh;
	overflow-y: auto !important;
}

@media (min-width: 1024px) {
	.hide-mobile {
		display: none;
	}
}

/* ================ ================ FILTERS ================ ================ */
.filter-item {
	display:flex;
	flex-direction:column;
	align-items:center;
}

.btn-remove {
	margin-top:6px;
	font-size:11px;
	opacity:0;
	cursor:pointer;
}

.filter-item.active .btn-remove {
	opacity:1;
}

/* ================ ================ SECTIONS ================ ================ */
.section-container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;

	padding-top: 12rem;     
	padding-bottom: 1.5rem;  
	padding-left: 1.5rem;    
	padding-right: 1.5rem;

	background: #fff;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.section-container {
		padding-bottom: 3rem;
		padding-left: 3rem; 
		padding-right: 3rem;
	}
}

#section-doswiadczenie .experience-tile {
	opacity: 0;
	transform: translateY(24px);
	transition:
		transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
	transform-origin: center center;
}

#section-doswiadczenie .experience-tile.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1023px) {
	#section-doswiadczenie
	.experience-carousel.is-slide-hovered
	.experience-tile.is-visible {
		transform: scale(1) !important;
		opacity: 1 !important;
	}
	#section-doswiadczenie
	.experience-carousel.is-slide-hovered
	.experience-tile.is-active-slide {
		transform: scale(1) !important;
		opacity: 1 !important;
	}
}

/* ================ ================ PARALLAX VIDEO ================ ================ */
#parallax-video-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 0;
	overflow: hidden;
}

#parallax-video-wrapper video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.8);
}

/* ================ ================ OFFER BLOCKS ================ ================ */
.offer-block {
	transition:
		transform var(--transition),
		box-shadow 0.4s ease;
}
.offer-block:hover {
	transform: translateY(-4px);
	box-shadow:
		0 20px 40px -15px rgba(244, 172, 62, 0.15),
		0 0 0 1px rgba(255, 255, 255, 0.08);
}

#offer-tiles-grid .tile-image {
	filter: blur(0);
	transition: filter 300ms ease-linear;
}

#offer-tiles-grid a {
	position: relative;
}

#offer-tiles-grid .offer-tile {
	transition:
		transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
	transform-origin: center center;
}

#offer-tiles-grid.is-tile-hovered .offer-tile {
	transform: scale(0.8);
	opacity: 0.8;
}

#offer-tiles-grid.is-tile-hovered .offer-tile:hover {
	transform: scale(1);
	opacity: 1;
}

/* ================ ================ CUSTOM LISTS ================ ================ */
ul.list-disc {
  list-style: none;
  padding-left: 0;
}

ul.list-disc li {
  position: relative;
  padding-left: 1.2rem;
}

ul.list-disc li::before {
  content: "\f054"; /* chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 0.75rem;
}


#section-doswiadczenie img, #section-doswiadczenie video, #section-doswiadczenie-layher img {
	clip-path: inset(5px);
}