@charset "UTF-8";

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

	--primary-color: hsl(356 97% 45%);
	--primary-color-light: hsl(356 97% 55%);
	--primary-color-dark: hsl(356 97% 35%);

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

	--bs-primary: var(--primary-color);
	--bs-primary-rgb: 226, 3, 18;

	--bs-light: hsl(0 0% 93%);
	--bs-light-rgb: 238, 238, 238;

	--bs-border-color: hsl(0 0% 90%);
	--bs-border-color-rgb: 230, 230, 230;

	--bs-dark: black;
	--bs-dark-rgb: 0, 0, 0;

	--bs-body-color: black;

	--h1: clamp(3.15625rem, 5vw, 5.6125rem);
	--h2: clamp(2.36875rem, 4vw, 4.20625rem);
	--h3: clamp(1.775rem, 3vw, 3.15625rem);
	--h4: clamp(1.33125rem, 2.3vw, 2.36875rem);
	--h5: clamp(1.25rem, 1.7vw, 1.775rem);
	--h6: clamp(1.125rem, 1.3vw, 1.33125rem);
	--lead: var(--h6);
}

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

body {
	font-family: var(--font);
	font-size: 1.125rem;
	line-height: 1.7;
	padding-top: 120px;
}

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

	& strong {
		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 {
	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: 1400px) {
	.container {
		max-width: 1320px;
	}
}

.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.25rem;
	--bs-navbar-active-color: white;
	--bs-navbar-nav-link-padding-x: 1.5rem;
	transition: padding 200ms, box-shadow 200ms;
	background-color: white;
}

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

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

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

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

.navbar-nav .nav-link {

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

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: 0;
		width: 0.6rem;
		height: 0.5rem;
		background-image: url(../img/drop.svg);
		background-repeat: no-repeat;
		background-size: contain;
    content: "";
    border: 0;
}

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

.dropdown-menu .show > .dropdown-menu {
	display: block !important;
}

.dropdown-menu .dropdown-menu {
	top: 0 !important;
	left: 100% !important;
}

.dropdown-menu .nav-item {position: relative;}

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

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

.navbar-tel {
	--bs-border-color: var(--bs-body-color);
	text-decoration: none;
	transition: color 200ms;
	color: var(--bs-body-color);

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

/*  MARK: header  */

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

/*  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;
	--bs-btn-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);
}

h2 small.badge {
	font-size: 1.125rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

h2:has(.badge) {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

ul.row {
	list-style: none;
	padding-left: 0;

	& li {
		position: relative;
		padding-left: 1.45em;

		&::before {
			content: '';
			position: absolute;
			left: .75em;
			top: 0.57rem;
			width: 0.75rem;
			height: 0.75rem;
			background-image: url(../img/bullet.svg);
			background-repeat: no-repeat;
			background-size: contain;
		}
	}
}

.product-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;

	& img {
		position: relative;
		z-index: 2;
		max-width: 100%;
		max-height: 325px;
		padding: 1rem;
		transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	&::before {
		content: '';
		width: 60%;
		height: auto;
		aspect-ratio: 1/1;
		position: absolute;
		z-index: 1;
		border-radius: 50%;
		background-color: var(--bs-light);
		transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
	}
}

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

	&:hover,
	&:focus {
		& .product-image::before {
			transform: scale(.9);
		}

		& .product-image img {
			transform: scale(1.05);
		}

		& .more img {
			transform: translateX(5px);
		}
	}

	.more {
		font-weight: bold;
		color: var(--bs-body-color);
		text-decoration: none;
		transition: color 200ms;

		& img {
			transition: transform 200ms;
		}

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

			& img {
				transform: translateX(5px);
			}
		}
	}
}






/*  MARK: stopka */

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

footer a:not(.h6) {
	text-decoration: none;
	color: hsl(0 0% 100% / .5);
	transition: color 200ms;

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

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

.decor {
	padding-left: 1.5em;
	border-left: 3px solid var(--primary-color);
}

p:has(.btn:only-child) {
	margin-top: 1.5rem;
}

/*  MARK: sub content  */

.sub .swiper__image {
	height: 500px;
	min-height: 50dvh;
}

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

	&:hover,
	&:focus {
		color: var(--primary-color-dark);
		text-decoration: underline;
	}
}

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

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

main:has(#sub-pages:last-of-type)+footer {
	margin-top: 0 !important;
}

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

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

	& .h5 {
		font-size: 1.125rem !important;
		font-weight: normal;
	}
}

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

.form-control {
	border-radius: 0;
}

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


.product.row {
	& .product-image {
		aspect-ratio: 1/1;
	}

	& .product-image::before {
		display: none;
	}

	& .col-xl-2 li {
		font-size: .75rem;
		line-height: 1.2;
	}
}

.small li {
	font-size: 1rem;
	line-height: 1.2;
}


/*
MARK: product gallery
*/
.swiper.gallery {
	width: 100%;
	height: auto;
	max-height: 70dvh;
	aspect-ratio: 450/600;
	border: 1px solid var(--bs-border-color);

	& .swiper-slide a {
		padding: clamp(1rem, 5vw, 5rem);
		overflow: hidden;
		width: 100%;
		height: 100%;

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

	& .swiper-button-next,
	& .swiper-button-prev {
		border-radius: 50%;
		background-color: var(--bs-light);
		width: 46px;
		height: 46px;

		&::after {
			color: var(--bs-body-color);
			font-size: 1.25rem;
			font-weight: bold;
			transition: transform 200ms;
		}

		&:hover,
		&:focus {
			&::after {
				transform: scale(1.1);
			}
		}

		&:active {
			&::after {
				transform: scale(.9);
			}
		}
	}
}

.swiper.thumbnails {
	margin-top: 10px;

	& .swiper-slide {
		display: flex;
		align-items: center;
		justify-content: center;
		aspect-ratio: 1/1;
		padding: 1rem;
		border: 1px solid var(--bs-border-color);
	}
}

.swiper.thumbnails .swiper-slide {
	overflow: hidden;
}

.swiper.thumbnails .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	cursor: pointer;
	transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.swiper.thumbnails .swiper-slide:hover img {
	transform: scale(1.1);
}



/*  MARK: RWD  */

@media (max-width: 1199px) {
	.navbar-nav .nav-link {
		color: white;
	}

	.navbar-tel {
		color: white;
		display: block;
	}

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

	footer .col-xl-4 {
		display: flex;
		justify-content: center;
		margin-bottom: 1.5rem;
	}
}


@media (max-width: 991px) {
	body {
		padding-top: 100px;
	}

	:root {
		--xxl: 4rem;
		--xl: 2rem;
	}

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

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

	[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
    transition-delay: 0 !important;
	}

	footer .col-lg-4 .d-flex {
		flex-direction: column;
		align-items: center;
		gap: 0.15em !important;
		text-align: center;
	}

	footer .col-lg-4+.col-lg-4 {
		margin-top: 2rem;
	}

	main {overflow: hidden;}

	#product > .container > .row {
		flex-direction: column-reverse;
	}
	#product .col-lg-6+.col-lg-6 {margin-bottom: 2rem;}
}


@media (max-width: 575px) {
	.btn {
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: .75rem;
    --bs-btn-font-size: .875rem;
}
}