@charset "UTF-8";

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

	--primary-color: hsl(137 87% 35%);
	--primary-color-light: hsl(137 87% 45%);
	--primary-color-dark: hsl(137 87% 25%);

	--xxl: 5rem;
	--xl: calc(var(--xxl) / 2);

	--bs-primary: hsl(137 87% 35%);
	--bs-primary-rgb: 12, 167, 56;

	--bs-light: hsl(0 0% 97%);
	--bs-light-rgb: 247, 247, 247;

	--bs-dark: hsl(195 56% 10%);
	--bs-dark-rgb: 11, 32, 39;

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

	--h1: clamp(1.875rem, 3vw, 3rem);
	--h2: clamp(1.5rem, 2.5vw, 2.375rem);
	--h3: clamp(1.25rem, 2vw, 1.875rem);
	--h4: clamp(1.125rem, 1.5vw, 1.5rem);
	--h5: clamp(1.15rem, 1.3vw, 1.25rem);
	--h6: clamp(1.1rem, 1.2vw, 1.125rem);
	--lead: var(--h5);
}

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

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

body {
	font-family: var(--font);
	line-height: 1.7;
	padding-top: 191px;
}

.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: 600;
}

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

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: 0;
	margin-inline: 3vw;
	width: calc(100% - 6vw);
}

@media (min-width: 1330px) {
	.container {
		max-width: 1290px;
	}
}

@media (min-width: 1536px) {
	.container-lg {
		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;
}

a[aria-expanded="false"] .when-expanded {
	display: none !important;
}

a[aria-expanded="false"] .when-collapsed {
	display: inline !important;
}

a[aria-expanded="true"] .when-expanded {
	display: inline !important;
}

a[aria-expanded="true"] .when-collapsed {
	display: none !important;
}

/*  MARK: navbar  */

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

.navbar-top {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.navbar-bottom {
	padding-top: 30px;
	padding-bottom: 30px;
}

.navbar-top,
.navbar-bottom {
	transition: padding 200ms;
}

.navbar-top a {
	color: white;
	text-decoration: none;
	transition: opacity 200ms;

	&:hover,
	&:focus {
		opacity: .7;
	}
}

.navbar-top .list-unstyled li {
	padding: 0;
	line-height: 1;
}

.navbar-top .list-unstyled li+li {
	margin: 0;
	border-left: 1px solid white;
	padding-left: 1rem;
	margin-left: 1rem;
}

.langs a:not(.active a, .active) {
	opacity: .7;

	&:hover,
	&:focus {
		opacity: 1;
	}
}

.navbar.affix {
	box-shadow: 0 0 2rem hsl(0 0% 0% / .15);
}

.affix .navbar-top {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.affix .navbar-bottom {
	padding-top: 15px;
	padding-bottom: 15px;
}

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

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

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

.navbar-nav .nav-link {
	font-size: var(--h6);

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

.dropdown-menu {
	border: 0;
	padding: .75rem;
	border-radius: 0;
	background-color: white;
	box-shadow: 0 1rem 2.5rem -.5rem hsl(0 0% 0% / .25);
}

.dropdown-item {
	color: var(--bs-body-color);
	padding: 0.25rem .5rem;
	border-radius: .25rem;
	transition: color 200ms, background-color 200ms;
}

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


.navbar-nav > li:last-child > a {
	color: white;
	background-color: var(--primary-color);
	border-radius: .25rem;
	margin-left: 0.875rem;

	&:hover,
	&:focus,
	&.active {
		color: white;
		background-color: var(--primary-color-dark);
	}
}



/*  MARK: header  */

header>.container-fluid::after {
	content: '';
	width: 45%;
	max-width: 712px;
	aspect-ratio: 712/374;
	height: auto;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
	background-image: url(../img/header-after.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

header h1 {

	& span,
	& strong {
		padding: 0.35rem 0.875rem;
		border-radius: .25rem;
	}
}

header h1 strong {
	display: inline;
	line-height: 1.45 !important;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.swiper__image {
	height: calc(100dvh - 291px);
	object-position: center;
}

/*  MARK: main content */

.btn {
	--bs-btn-padding-x: 1.875rem;
	--bs-btn-padding-y: 1rem;
	--bs-btn-font-size: var(--h6);
	--bs-btn-font-weight: 600;
	--bs-btn-line-height: 1.5;
	--bs-btn-border-radius: .25rem;
}

.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);
}

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

	--bs-btn-padding-x: 1rem;
}


.swiper.marki .swiper-wrapper {
	transition-timing-function: linear !important;
}

#marki a {
	border-radius: .75rem;
	background-color: white;
	padding: 1.25rem;
	text-decoration: none;
	color: var(--bs-body-color);
	border: 1px solid transparent;
	overflow: hidden;

	transition: transform 200ms, border-color 200ms;

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

		& .object-fit-contain {
			transform: scale(1.05);
		}
	}

	span {
		white-space: nowrap;
		font-size: .75rem;
	}

	& .object-fit-contain {
		width: 100%;
		height: auto;
		aspect-ratio: 16/12;
		margin-bottom: 1rem;
		transition: transform 200ms;
	}

	& img {
		flex-shrink: 0;
	}
}

.card-img-top {
	overflow: hidden;
	border-radius: .75rem;

	& img {
		height: auto;
		aspect-ratio: 16/10;
		transition: transform 600ms cubic-bezier(0.23, 1, 0.320, 1);
	}
}

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

	&:hover,
	&:focus {
		& .card-img-top img {
			transform: scale(1.05);
		}
	}

	& a.d-flex {
		text-decoration: none;
		color: var(--bs-body-color);

		transition: color 200ms;

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

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

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


#godziny {
	background-image: url(../img/greenbg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right bottom;
}

#godziny .thumbnail {
	aspect-ratio: 1/1;
	height: auto;
	width: 72px;
	object-fit: contain;
	padding: 5px;
	border: 1px solid var(--bs-border-color);
}

#godziny .card {
	transition: transform 200ms, box-shadow 200ms;

	&:hover,
	&:focus {
		transform: translateY(-5px);
		box-shadow: 0 1rem 2.5rem -.5rem hsl(0 0% 0% / .25);
	}
}

#godziny table {
	opacity: .64;
	font-size: 0.875rem;
}


/*  MARK: stopka */

footer {
	background-image: url(../img/footerbg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
}

footer a {
	text-decoration: none;
	color: var(--bs-body-color);
	transition: color 200ms;
}

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

.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  */

.breadcrumb a {
	color: var(--bs-body-color);
	text-decoration: none;
	transition: color 200ms;

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

.d-flex img+a {
	color: var(--bs-body-color);
	font-size: var(--lead);
	text-decoration: none;
	transition: color 200ms;

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

.checklist {
	padding-left: 0;

	& li {
		list-style: none;
		position: relative;
		padding-left: 2.25rem;
		margin-bottom: 0.5rem;
		margin-left: 0;

		&::before {
			content: '';
			position: absolute;
			left: 0;
			top: 50%;
			transform: translateY(-50%);
			width: 1.5rem;
			height: 1.5rem;
			background-image: url(../img/check.svg);
			background-repeat: no-repeat;
			background-size: contain;
		}
	}
}

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

.gallery a {
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: .75rem;
}

.gallery a img {
	width: 100%;
	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;
}

/*  MARK: RWD  */

@media (max-width: 1199px) {
	footer {
		background-position: 50% 0;
	}

	header .swiper-slide img {
		min-height: 350px;
	}
}

@media (max-width: 991px) {
	.navbar-brand-image {
		height: 50px;
	}

	body {
		padding-top: 169px;
	}

	header>.container-fluid::after {
		width: 35%;
	}
}

@media (max-width: 767px) {

	header,
	main,
	footer {
		overflow: hidden;
	}

	footer {
		padding-top: 430px !important;
		background-position: 88% 0 !important;
		background-size: 124%;
	}
}

@media (max-width: 575px) {
	:root {
		--xxl: 3.5rem;
	}

	footer {
		background-position: 88% 0 !important;
		background-size: 165%;
	}
}

@media (max-width: 399px) {
	header:not(.bg-light) .container {
		align-items: flex-end !important;
		padding-bottom: 5rem;
	}

	.btn+.btn {
		margin-top: 0.5rem;
	}

	footer {
		background-position: 65% 0 !important;
		background-size: 257%;
	}
}