@charset "UTF-8";

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

	--primary-color: hsl(198 100% 44%);
	--primary-color-light: hsl(198 100% 54%);
	--primary-color-dark: hsl(198 100% 34%);

	--secondary-color: hsl(84 67% 39%);
	--secondary-color-light: hsl(84 67% 49%);
	--secondary-color-dark: hsl(84 67% 29%);

	--bs-border-color: hsl(0 0% 93%);

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

	--bs-primary: var(--primary-color);
	--bs-primary-rgb: 0, 157, 224;

	--bs-light: hsl(228 38% 97%);
	--bs-light-rgb: 246, 247, 251;

	--bs-dark: hsl(232 96% 9%);
	--bs-dark-rgb: 1, 7, 44;

	--bs-body-color: hsl(232 96% 9%);

	--h1: 	clamp(2.75rem, 4vw, 4.29375rem);
	--h2: 	clamp(2.1875rem, 3vw, 3.43125rem);
	--h3: 	clamp(1.75625rem, 2.5vw, 2.75rem);
	--h4: 	clamp(1.40625rem, 2vw, 2.1875rem);
	--h5: 	clamp(1.25rem, 1.75vw, 1.75625rem);
	--h6: 	clamp(1.1rem, 1.4vw, 1.40625rem);
	--lead: var(--h6);
}

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

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

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, .tinymce_html h1, .tinymce_html .h1 {font-size: var(--h1) !important;}
h2, .h2, .tinymce_html h2, .tinymce_html .h2 {font-size: var(--h2) !important;}
h3, .h3, .tinymce_html h3, .tinymce_html .h3 {font-size: var(--h3) !important;}
h4, .h4, .tinymce_html h4, .tinymce_html .h4 {font-size: var(--h4) !important;}
h5, .h5, .tinymce_html h5, .tinymce_html .h5 {font-size: var(--h5) !important;}
h6, .h6, .tinymce_html h6, .tinymce_html .h6 {font-size: var(--h6) !important;}
.lead   {font-size: var(--lead); line-height: 1.69;}

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

/*  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, box-shadow 200ms;
}

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

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

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

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

.navbar-nav .nav-link {
	color: white;
	font-weight: 600;
	border-radius: 5rem;

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

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

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

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


.dropdown-item:nth-child(odd):hover,
.dropdown-item:nth-child(odd):focus,
.dropdown-item:nth-child(odd).active {
	color: white;
	background-color: var(--secondary-color);
}

/*  MARK: header  */

header {
	height: 100dvh;
	min-height: 490px;
	width: 100dvw;
	position: relative;
	overflow: hidden;
	background-image: radial-gradient(hsl(208 60% 49%), hsl(228 100% 23%));
	isolation: isolate;

	& h1 {
		font-size: clamp(5rem, 10vw, 11.25rem) !important;
		text-transform: uppercase;
		font-weight: bold;
		font-family: 'Plus Jakarta Sans Extrabold', sans-serif;
		line-height: .9;

		margin-top: 160px;
		top: 0;
	}

	&::before,
	&::after {
		content: '';
		position: absolute;
		z-index: -1;
		border-radius: 50%;
		aspect-ratio: 1;
		background-image: radial-gradient(circle at bottom, hsl(228 100% 23%), hsl(208 60% 49%));
		opacity: .5;
	}

	&::before {
		width: 25vw;
		bottom: 0;
		left: 0;
		transform: translate(-30%, 30%);
		animation: moveInCircle1 60s linear infinite;
	}

	&::after {
		width: 35vw;
		top: 0;
		right: 0;
		transform: translate(20%, 25%);
		animation: moveInCircle2 45s linear infinite reverse;
	}
}

header .animals {
	max-height: 50dvh;
}

header .col.pb-xxl {
	padding-bottom: clamp(1rem, 5dvh, var(--xxl));
}

@keyframes moveInCircle1 {
  0% { transform: translate(-30%, 30%); }
  12.5% { transform: translate(-25%, 20%); }
  25% { transform: translate(-15%, 15%); }
  37.5% { transform: translate(-5%, 20%); }
  50% { transform: translate(0%, 30%); }
  62.5% { transform: translate(-5%, 40%); }
  75% { transform: translate(-15%, 45%); }
  87.5% { transform: translate(-25%, 40%); }
  100% { transform: translate(-30%, 30%); }
}

@keyframes moveInCircle2 {
  0% { transform: translate(20%, 25%); }
  12.5% { transform: translate(30%, 20%); }
  25% { transform: translate(35%, 10%); }
  37.5% { transform: translate(40%, 0%); }
  50% { transform: translate(45%, 10%); }
  62.5% { transform: translate(40%, 20%); }
  75% { transform: translate(35%, 30%); }
  87.5% { transform: translate(25%, 35%); }
  100% { transform: translate(20%, 25%); }
}

/*  MARK: main content */

header,
#asortyment,
#blisko,
#wspolpraca,
footer {overflow: hidden;}

.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: 10rem;
		border: 0;
		text-decoration: none !important;
}

.btn-outline-light {
	color: var(--bs-body-color);
	border: 1px solid var(--bs-border-color) !important;
	border-radius: .5rem;
}

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

		border-color: transparent;
		background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color-light), var(--secondary-color-light));
		background-size: 400% 400%;
		transition: background-position 300ms;


		&:hover,
		&:focus {
			background-position: 100% 100%;
			border-color: transparent;
		}
}

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

.card {
	--bs-card-border-color: var(--bs-border-color);
}

.card-img-top img {
	transition: transform 800ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

.card-title-link:hover,
.card-title-link:focus {
	color: var(--primary-color);
}

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

#marki {
	background-color: var(--bs-light);
	overflow: hidden;

	& .container {
		position: relative;
		isolation: isolate;
		background-color: white;
		padding-inline: 60px;
		overflow: hidden;

		& .swiper {
			border-radius: 2rem !important;

			& img {
				width: 100%;
				height: 120px;
				padding-top: 15px;
				padding-bottom: 15px;
				object-fit: contain;
			}
		}

		&::before,
		&::after {
			content: '';
			position: absolute;
			z-index: -1;
			top: 0;
			width: 100px;
			height: 100%;
			background-repeat: no-repeat;
			background-image: url('../img/before-after-wave.svg');
		}

		&::before {
			left: 0;
		}

		&::after {
			right: 0;
			transform: scaleX(-1);
		}
	}
}

.accordion-button {
	font-size: var(--h6);
	font-weight: 700;
	border-radius: 1rem 1rem 0 0 !important;

	&:not(.collapsed) {
		box-shadow: none;
		background-color: white;
	}
}

.accordion-item {
	border-radius: 1rem !important;
	overflow: hidden;
	border: 0;

	& a {
		color: var(--bs-body-color);
		transition: color 200ms;
	}

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

.accordion-item + .accordion-item {
	margin-top: 1rem;
}

.gradient-bg {
	background-image: linear-gradient(to right, hsl(146, 38%, 39%), hsl(75, 69%, 71%));

	& .img-fluid {
		margin-top: -100px;
	}
}

#apka {
	z-index: 2;
	position: relative;
	margin-bottom: calc(-1 * var(--xxl));
}

.sub-marka-box {
	aspect-ratio: 4/3;
	height: auto;

	& img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

.sub #main a:not(.btn) {
	text-decoration: none;
	color: var(--primary-color);
	transition: color 200ms;
}

.sub #main a:not(.btn):hover,
.sub #main a:not(.btn):focus {
	color: var(--primary-color-light);
	text-decoration: underline;
}

.container .container {
	max-width: 100%;
	margin: 0;
	padding: 0;
}


.nasz-sklep iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	border-radius: .5rem;
}

.nasz-sklep a {
	color: var(--bs-body-color) !important;
	transition: color 200ms;
}

.nasz-sklep a:hover,
.nasz-sklep a:focus {
	color: var(--primary-color) !important;
}

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


/*  MARK: stopka */

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 {
	padding-top: 160px;
}

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

.sub .navbar-nav .nav-link {
	color: var(--bs-body-color);
	background-image: linear-gradient(to right, white, white,  var(--primary-color), var(--secondary-color));
	background-size: 300% 100%;
	background-position: 0 0;
	transition: background-size 300ms, background-position 300ms;

	&.show, &.active, &:hover, &:focus {
		background-color: transparent;
		background-position: 100% 0;
		color: white;
	}
}

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

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

.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: .5rem;
	transition: color 200ms, border-color 200ms;
}

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

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

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

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

.error-msg {
	color: red;
}

.sub #apka {margin-top: var(--xxl);}


/*  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-height: 780px) and (min-width: 1200px) {
	header h1 {
		width: 100%;
		font-size: clamp(4rem, 15dvh, 12rem) !important;
	}
}



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

	.sub {padding-top: 112px;}

	.navbar {
		--bs-navbar-padding-y: 1rem;
	}

	.home header h1 {
		margin-top: 135px;
		position: relative !important;
	}

	header {
		height: auto;
	}

	header .d-flex {
		flex-direction: column;
		align-items: center !important;
		text-align: center;
		margin-top: 1.5rem;

		& .col:first-child {order: 1;}
		& div:nth-child(2) {order: 3;}
		& .col:last-child {order: 2;}
	}

	header .d-flex.gap-2 {margin-top: 0;}

	header .col.pb-xxl {padding-bottom: 0;}

	.sub .navbar-toggler {
		border-color: var(--primary-color);
	}

	.sub .navbar-dark, .sub .navbar[data-bs-theme="dark"] {
		--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(198 100% 44%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	}

	.navbar-nav {
		flex-grow: 1;
		justify-content: flex-start !important;
	}

	.navbar-nav .nav-link {
		padding: 1rem 2rem;
		text-align: center;
	}

	.dropdown-menu {
		border-radius: 1.5rem;
		flex-direction: column;
		gap: 0.5rem;
	}

	.dropdown-menu.show {display: flex;}

	.dropdown-item {
		text-align: center;
		border-radius: 3rem;
	}

	.offcanvas .btn-primary {
		margin-top: 2rem;
		width: 100%;
		text-align: center;
	}

	.affix .offcanvas {
		height: 100dvh !important;
	}
}


@media (max-width: 991px) {

	.offcanvas-body {
		display: flex;
		flex-direction: column;
	}

	#asortyment .col-lg-6 + .col-lg-6,
	#wspolpraca .col-lg-4 + .col-lg-4 {margin-top: 1.5rem;}

	#blisko .rounded-circle {margin-top: 2rem;}

	#apka {
		text-align: center;

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

		& .gradient-bg .img-fluid {
			margin-top: 1rem;
		}
	}

	.madeby {
		margin-top: 1rem;

		& small {margin: 0 3px 0 0;}
	}

	#apka {overflow: hidden;}

	#apka .d-flex {
		flex-direction: column;
		align-items: center;
	}

	#apka {
    & .gradient-bg .img-fluid {
      max-width: 60%;
    }
  }
}


@media (max-width: 656px) {
	header {
		& h1 {
			font-size: clamp(3rem, 7vw, 11.25rem) !important;
		}
	}
}

@media (max-width: 480px) {
	:root {
		--xxl: 3.5rem;
	}
	header {
		& h1 {
			font-size: clamp(2rem, 4vw, 8rem) !important;
		}
	}
}