@charset "UTF-8";

:root,
[data-bs-theme=light] {
	--font: 'Outfit', system-ui, sans-serif;

	--primary-color: hsl(17 94% 58%);
	--primary-color-light: hsl(17 94% 68%);
	--primary-color-dark: hsl(17 94% 48%);

	--bs-primary: hsl(17 94% 58%);
	--bs-primary-rgb: 249, 104, 47;

	--bs-light: hsl(0 0% 96%);
	--bs-light-rgb: 245, 245, 245;

	--bs-dark: hsl(60, 2%, 12%);
	--bs-dark-rgb: 31, 31, 30;

	--bs-body-color: var(--bs-dark);

	--xxl: 7.5rem;
	/* 120px */
	--xl: calc(var(--xxl) / 2);

	--h1: clamp(2.44375rem, 5.5vw, 5.625rem);
	--h2: clamp(1.95625rem, 3vw, 3.05rem);
	--h3: clamp(1.5625rem, 2.5vw, 2.44375rem);
	--h4: clamp(1.25rem, 2vw, 1.95625rem);
	--h5: clamp(1.15rem, 1.5vw, 1.5625rem);
	--h6: clamp(1rem, 1.25vw, 1.25rem);
	--lead: var(--h6);
}

[x-cloak] {display: none !important;}

:focus-visible {
	outline: 2px dashed var(--primary-color);
	outline-offset: 2px;
}

html {
	scroll-padding-top: 131px;
}

body {
	font-family: var(--font);
	line-height: 1.7;
}

b,
strong {
	font-weight: 700 !important;
}

.font-size-12px {
	font-size: .75rem;
}

.font-size-14px {
	font-size: .875rem;
}

.font-size-16px {
	font-size: 1rem;
}

.font-size-18px {
	font-size: 1.125rem;
}

.font-size-20px {
	font-size: 1.25rem;
}

.font-size-22px {
	font-size: 1.375rem;
}

.font-size-24px {
	font-size: 1.5rem;
}

.font-size-26px {
	font-size: 1.625rem;
}

.font-size-28px {
	font-size: 1.75rem;
}

.font-size-30px {
	font-size: 1.875rem;
}

.font-size-32px {
	font-size: 2rem;
}

.font-size-34px {
	font-size: 2.125rem;
}

.font-size-36px {
	font-size: 2.25rem;
}

.font-size-38px {
	font-size: 2.375rem;
}

.font-size-40px {
	font-size: 2.5rem;
}

.font-size-42px {
	font-size: 2.625rem;
}

.font-size-44px {
	font-size: 2.75rem;
}

.font-size-46px {
	font-size: 2.875rem;
}

.font-size-48px {
	font-size: 3rem;
}

.font-size-50px {
	font-size: 3.125rem;
}

.icon {
	width: var(--icon-size, 72px);
}

.icon-72px,
[src*="_72px"] {
	width: 72px;
}

.icon-48px,
[src*="_48px"] {
	width: 48px;
}

.icon-32px,
[src*="_32px"] {
	width: 32px;
}

.icon-16px,
[src*="_16px"] {
	width: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: var(--font);
	margin-bottom: 1rem;
	font-weight: 500;
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
.h1 em,
.h2 em,
.h3 em,
.h4 em,
.h5 em,
.h6 em {
	font-style: normal;
	color: var(--primary-color);
}

h1,
.h1 {
	font-size: var(--h1) !important;
}

h2,
.h2 {
	font-size: var(--h2) !important;
}

h3,
.h3 {
	font-size: var(--h3) !important;
}

h4,
.h4 {
	font-size: var(--h4) !important;
}

h5,
.h5 {
	font-size: var(--h5) !important;
}

h6,
.h6 {
	font-size: var(--h6) !important;
}

.lead {
	font-size: var(--lead);
}

.container-fluid {
	padding-inline: 3vw;
}

@media (min-width: 1536px) {
	.container {
		max-width: 1470px;
	}
}

.inset-0 {
	inset: 0;
}

.p-xxl {
	padding: var(--xxl);
}

.p-xl {
	padding: var(--xl);
}

.px-xxl {
	padding-inline: var(--xxl)
}

.px-xl {
	padding-inline: var(--xl)
}

.pt-xxl {
	padding-top: var(--xxl);
}

.pb-xxl {
	padding-bottom: var(--xxl);
}

.py-xxl {
	padding-top: var(--xxl);
	padding-bottom: var(--xxl);
}

.mt-xxl {
	margin-top: var(--xxl);
}

.mb-xxl {
	margin-bottom: var(--xxl);
}

.my-xxl {
	margin-top: var(--xxl);
	margin-bottom: var(--xxl);
}

.pt-xl {
	padding-top: var(--xl);
}

.pb-xl {
	padding-bottom: var(--xl);
}

.py-xl {
	padding-top: var(--xl);
	padding-bottom: var(--xl);
}

.mt-xl {
	margin-top: var(--xl);
}

.mb-xl {
	margin-bottom: var(--xl);
}

.my-xl {
	margin-top: var(--xl);
	margin-bottom: var(--xl);
}

#main ol li ul {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

#main ol li+li {
	margin-top: 1rem;
}

main,
footer {
	overflow: hidden;
}

/*  MARK: navbar  */

.navbar {
	--bs-navbar-padding-x: 0;
	--bs-navbar-padding-y: 1.875rem;
	--bs-navbar-active-color: white;
	--bs-navbar-nav-link-padding-x: 1rem;
	transition: padding 200ms, background-color 200ms;
}

.navbar.affix {
	--bs-navbar-padding-y: .5rem;
	background-color: hsl(0 0% 0% / .8);

}

.navbar-brand {
	margin: 0;
	padding: 0;
}

.navbar-brand-image {
	height: 71px;
	transition: height 200ms;
}

.navbar-brand-text {
	line-height: 1.3;
	font-weight: 500;
	font-size: clamp(1rem, 1.5vw, 1.5rem);
	transition: font-size 200ms;
}

.affix .navbar-brand-image {
	height: 45px;
}

.affix .navbar-brand-text {
	font-size: clamp(0.75rem, 1vw, 1rem);
}

.navbar-nav .nav-link {
	color: white;

	&:hover,
	&:focus,
	&.active,
	&.show,
	&.open {
		color: var(--primary-color) !important;
	}
}

.navbar-light {
	background-color: white;
}

.navbar-light:not(.affix) .navbar-nav .nav-link {
	color: var(--bs-body-color);
}

.navbar-light.affix .navbar-brand-text {
	color: white;
}

.navbar-transparent {
	background-color: transparent !important;
	background-image: none !important;
}

.dropdown-menu {
	border: 0;
	padding: .75rem;
	border-radius: 0;
	background-color: hsl(0 0% 0% / .8);
	backdrop-filter: blur(.25rem);
}

.dropdown-item {
	color: white;
	padding: 0.25rem .5rem;
	border-radius: .25rem;
	transition: color 200ms, background-color 200ms;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
	color: black;
	background-color: var(--primary-color);
}

.navbar-dark.affix {
	background-color: hsl(0 0% 0% / .8) !important;
}

/*  MARK: header  */

.z-10 {
	z-index: 10;
}

header {
	background-color: var(--bs-dark);
	color: white;
	z-index: 30;

	& .position-absolute {
		isolation: isolate;
	}

	& .overflow-hidden {
		position: relative;
		z-index: 40;
	}
}

.home .header__swiper::before {
	content: '';
	inset: 0;
	position: absolute;
	z-index: 20;
	/* background-image: radial-gradient(ellipse at 55% center, transparent 50%, var(--bs-dark) 80%); */
	background-image: radial-gradient(ellipse at 65% center, transparent 20%, var(--bs-dark) 70%);
}

.home .header__swiper::after {
	content: '';
	inset: 0;
	position: absolute;
	z-index: 15;
	/* background-image: linear-gradient(to right, var(--bs-dark) 15%, transparent 50%); */
	background-image: linear-gradient(to right, var(--bs-dark) 35%, transparent 75%);
}

.home header::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	z-index: 30;
	background-image: url(../img/header-after.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transform: translateY(50%);
}

.slogan {
	margin-top: 131px;
}

.slogan a {
	text-decoration: none;
	color: white;
	font-size: var(--lead);
}

.swiper__image {
	width: 65%;
	object-fit: cover;
	object-position: right;
	height: 100dvh;
}

.swiper-mobile .swiper__image {
	object-position: center;
}

.sub:has(#oferta) .for-breadcrumb {
	background-color: transparent !important;
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;

	& .breadcrumb-item+.breadcrumb-item::before,
	& .breadcrumb a {
		color: white;
	}

	& .breadcrumb-item.active {
		color: hsl(0 0% 100% / .7);
	}
}

.sub:has(#oferta) .slogan {
	top: 128px;
	position: relative;
}

/*  MARK: main content */

.btn {
	--bs-btn-padding-x: 1.875rem;
	--bs-btn-padding-y: 1.25rem;
	--bs-btn-font-size: 1rem;
	--bs-btn-font-weight: 700;
	--bs-btn-line-height: 1.5;
	border-radius: 0;
}

.btn-primary {
	--bs-btn-bg: var(--primary-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-bg: var(--primary-color-light);
	--bs-btn-hover-border-color: var(--primary-color-light);
	--bs-btn-active-bg: var(--primary-color-dark);
	--bs-btn-active-border-color: var(--primary-color-dark);
}

.btn-outline-primary {
	--bs-btn-color: var(--primary-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-bg: var(--primary-color);
	--bs-btn-hover-border-color: var(--primary-color);
	--bs-btn-active-bg: var(--primary-color);
	--bs-btn-active-border-color: var(--primary-color);
}

#kategorie a {
	text-decoration: none;
	color: var(--bs-body-color);

	& .img-fluid {
		height: auto;
		aspect-ratio: 357/267;
		object-fit: contain;
		transition: transform 600ms cubic-bezier(0.23, 1, 0.320, 1);
	}

	& .text-primary img {
		transition: transform 600ms cubic-bezier(0.23, 1, 0.320, 1);
	}

	&:hover .img-fluid {
		transform: scale(1.1);
	}

	&:hover .text-primary img {
		transform: translateX(5px);
	}
}

.card {
	border: 0;
	background-color: transparent;
	border-radius: 0;

	& .card-body {
		text-align: center;
	}

	& .card-title {
		margin-bottom: 0;
	}

	& .card-title-link {
		text-decoration: none;
		color: var(--bs-body-color);
		font-weight: 500;
		transition: color 200ms;

		&:hover,
		&:focus {
			color: var(--primary-color);
		}
	}
}

.card[x-data] {
	cursor: pointer;

	& .card-img-top {
		overflow: hidden;
		border-radius: 0;
	}

	& .card-img-top img {
		transition: transform 200ms;
	}

	&:hover .card-img-top img {
		transform: scale(1.1);
	}
}

#motto {
	background-image: url(../img/quote-bg.svg);
	background-repeat: no-repeat;
	background-position: center;

	& h2 {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	& h2::after {
		content: '';
		margin-top: 1.5rem;
		display: block;
		width: 64px;
		height: 6px;
		background-color: var(--primary-color);
	}
}



/*  MARK: stopka */

footer {
	position: relative;
	isolation: isolate;

	&::before,
	&::after {
		content: '';
		position: absolute;
		background-repeat: no-repeat;
		background-size: contain;
		width: 175px;
		height: 530px;
		z-index: -1;
	}

	&::before {
		bottom: 0;
		left: 0;
		background-image: url(../img/triangle-to-right.svg);
	}

	&::after {
		top: 0;
		right: 0;
		background-image: url(../img/triangle-to-left.svg);
	}
}

footer a {
	text-decoration: none;
	color: white;
	transition: color 200ms;
}

footer a:hover,
footer a:focus {
	color: var(--primary-color-light);
}

.list-unstyled li+li {
	margin-top: 0.75em;
}

.madeby {
	display: flex;
	align-items: center;
}

.madeby small {
	font-size: 0.625rem;
	margin: 0.2em 0.2em 0 0;
}

/*  MARK: sub content  */

.sub header .swiper__image {
	height: calc(100dvh - 208px);
}

.for-breadcrumb {
	border-top: 1px solid hsl(0 0% 100% / .2);
	border-bottom: 1px solid hsl(0 0% 100% / .2);
	margin-top: 131px;
}

.breadcrumb {
	padding: 0;
	margin: 0;
	font-weight: 400;
	--bs-breadcrumb-item-active-color: hsl(0 0% 100% / .6);

	& a {
		color: white;
		text-decoration: none;
		transition: color 200ms;

		&:hover,
		&:focus {
			color: var(--primary-color);
		}
	}

	& .breadcrumb-item+.breadcrumb-item::before {
		color: white;
	}
}

.bg-light .breadcrumb {
	--bs-breadcrumb-item-active-color: hsl(0 0% 0% / .6);

	& .breadcrumb-item+.breadcrumb-item::before {
		color: var(--bs-body-color);
	}
}

.bg-light .breadcrumb a {
	color: var(--bs-body-color);
}



.sub header {

	&::before,
	&::after {
		display: none;
	}

	& .container.h-100 {
		max-height: calc(100dvh - 208px);
	}

	& .position-absolute {
		background-image: none;
		background-color: hsl(0 0% 0% / .6);

		&::before {
			display: none;
		}
	}

	& .slogan {
		margin-top: -130px;
	}

	& .swiper::before {
		display: none;
	}
}

.decor-start {
	padding-inline-start: 1.25em;
	border-left: .25em solid var(--primary-color);
}

.scroll {
	color: white;
	position: absolute;
	text-decoration: none;
	bottom: 0;
	left: 0;
}

main:has(#sub-pages:last-of-type) {
	padding-bottom: 0;
}

.gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;

	& a:first-child {
		grid-column: span 3;
	}
}

.gallery a {
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.gallery a img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	transition: transform 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery a:hover img {
	transform: scale(1.1);
}

.downloads a {
	text-decoration: none;
	color: black;
	border: 1px solid hsl(0 0% 90%);
	border-radius: .25rem;
	transition: color 200ms, border-color 200ms;
}

.downloads a:hover {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.form-control {
	border-radius: .25rem;
}

.form-control.error {
	border-color: red;
}

.error-msg {
	color: red;
}

/*  MARK: paginator  */

.pagination {
	display: flex;
}

.pagination li {
	display: none;
}

.pagination .active,
.pagination .insertPage,
.pagination li:first-child,
.pagination li:last-child {
	display: block;
}

.pagination a,
.pagination input {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin: 0 5px;
	padding: 0;
	text-align: center;
	color: #bbb;
	border: 1px solid #e1e1e1;
	text-decoration: none;
	transition: all .2s;
}

.pagination a:focus,
.pagination a:hover,
.pagination input:focus,
.pagination input:hover {
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.pagination input::placeholder {
	color: #bbb;
	font-size: 16px;
	font-weight: 500;
}

.pagination .active a {
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	cursor: text;
}

.pagination .insertPage+.insertPage {
	display: none;
}

.sub.kontakt {
	padding-top: 131px;
}

.sub #oferta .card-img-top img {
	height: auto;
	aspect-ratio: 3/2;
}


#newsletter .btn {
	white-space: nowrap;
}



.sub .boxes .box {
	position: relative;
	overflow: hidden;
	display: block;

	& img {
		position: relative;
		z-index: 1;
		width: 100%;
		transform-origin: left;
		transition: transform 600ms cubic-bezier(0.23, 1, 0.320, 1);
	}

	& span {
		position: absolute;
		inset: 0;
		padding: .5rem 3rem !important;
		z-index: 2;
		color: white;
		text-align: right;
		font-size: var(--h5);
		text-decoration: none;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		margin: 0;
		transition: padding-right 300ms;
	}

	&:hover img {
		transform: scale(1.1);
	}

	&:hover span {
		padding-right: 4rem !important;
	}
}

@media (max-width: 991px) {

	.sub .boxes.row {
		flex-direction: column;
	}

	.sub .boxes .col-md-6 {
		width: 100%;
	}

	.sub .boxes .box {
		& span {
			padding: .5rem 1rem !important;
		}

		&:hover span {
			padding-right: 1.5rem !important;
		}
	}
}


/*  MARK: RWD  */

@media (max-width: 1399px) {
	.swiper__image {
		width: 75%;
	}
}

@media (max-width: 1280px) {
	footer {

		&::before,
		&::after {
			content: '';
			position: absolute;
			background-repeat: no-repeat;
			background-size: contain;
			width: 9%;
			height: 26%;
			z-index: -1;
		}
	}
}

@media (max-width: 1199px) {
	.sub .affix .navbar-toggler {
		filter: invert(1) !important;
	}

	.swiper__image {
		width: 80%;
	}
}

@media (max-width: 991px) {
	header .position-absolute::before {
		display: none;
	}

	header .position-absolute .container {
		align-items: flex-end !important;
		justify-content: center !important;
		padding-bottom: 2rem;
	}

	.home .header__swiper::before {
		background-color: hsl(0 0% 0% / .4);
		background-image: none;
	}

	.home .header__swiper::after {
		display: none;
	}

	.home .swiper__image {
		width: 100%;
		object-fit: cover;
		object-position: left;
	}


	.slogan {
		text-align: center;

		& .d-flex {
			flex-direction: column;
			align-items: center;
			gap: .1rem !important;
		}
	}

	#kategorie .row {
		gap: 2rem;
	}

	footer {
		text-align: center;

		& h3.d-flex {
			flex-direction: column;
			align-items: center;
		}

		& p a.d-flex {
			justify-content: center;
		}

		& .col-lg-3+.col-lg-3 {
			margin-top: 2rem;
		}

	}

	.madeby {
		justify-content: center;
	}

	/* MARK: RWD sub 991 */

	.sub header .position-absolute .container {
		flex-direction: column !important;
		align-items: center !important;
		justify-content: flex-end !important;
	}

	.sub:has(#oferta) .slogan {
		top: 0;
		position: relative;
	}

	.sub .scroll {
		position: relative;
		bottom: -2rem;
		left: auto;
	}

	header .ps-4.border-start {
		padding: 0 !important;
		border: 0 !important;
	}

	:root {
		--xxl: 4rem;
	}

	.sub .navbar-nav .nav-link {
		color: white !important;

		&:hover,
		&:focus,
		&.active,
		&.show,
		&.open {
			color: var(--primary-color) !important;
		}
	}

}


@media (max-width: 575px) {
	.home .swiper__image {
		object-position: 20% 0;
	}
}