@charset "UTF-8";

:root,
[data-bs-theme=light] {
	--font: 'Jost', system-ui, sans-serif;
	--font-title: 'LT Remark', Georgia, serif;

	--primary-color: hsl(47 56% 54%);
	--primary-color-light: hsl(47 56% 74%);
	--primary-color-dark: hsl(47 56% 34%);

	--bs-link-color: var(--primary-color);
	--bs-link-color-rgb: var(--bs-primary-rgb);
	--bs-link-hover-color: var(--primary-color-light);
	--bs-link-hover-color-rgb: 226, 210, 152;

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

	--bs-primary: hsl(47 56% 54%);
	--bs-primary-rgb: 203, 175, 72;

	--bs-secondary: hsl(340 74% 46%);
	--bs-secondary-rgb: 204, 30, 88;

	--bs-light: hsl(231 28% 95%);
	--bs-light-rgb: 239, 240, 246;

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

	--bs-body-color: black;

	--bs-border-color: #D3D3D3;

	--bs-accordion-border-radius: 0;
	--bs-accordion-inner-border-radius: 0;
	--bs-accordion-border-color: var(--bs-border-color);
	--bs-accordion-button-active-bg: transparent;
	--bs-accordion-button-active-color: var(--bs-body-color);
	--bs-accordion-bg: transparent;

	--h1: clamp(3.55rem, 3.55rem + ((1vw - 0.2rem) * 1.333), 6.3125rem);
	--h2: clamp(2.6625rem, 2.6625rem + ((1vw - 0.2rem) * 1.333), 4.7375rem);
	--h3: clamp(2rem, 2rem + ((1vw - 0.2rem) * 1.333), 3.55rem);
	--h4: clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 1.333), 2.6625rem);
	--h5: clamp(1.25rem, 1.25rem + ((1vw - 0.2rem) * 1.333), 2rem);
	--h6: clamp(1.15rem, 1.15rem + ((1vw - 0.2rem) * 1.333), 1.5rem);
	--lead: var(--h6);
}

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

html {
	scroll-padding-top: 75px;
	scroll-behavior: smooth;
}

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

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

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

.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-title);
	margin-bottom: 1rem;
	font-weight: 400;
}

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);
	font-style: italic;
	font-family: var(--font-title);
	font-weight: normal;
}

.lead.blog-content {
	font-style: normal;
}

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

@media (min-width: 1720px) {
	.container {
		max-width: 1680px;
	}
}

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

.ps-xxl {
	padding-left: var(--xxl);
}

.pe-xxl {
	padding-right: 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) !important;
}

.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: 1rem;
	transition: .2s cubic-bezier(0.165, 0.84, 0.44, 1);
	background-color: hsl(0 0% 0% / 0);
}

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

.navbar-light.affix {
	background-color: #fff;
	/*box-shadow: 0 0 1rem hsl(0 0% 0% / .1);*/
}

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

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

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

.navbar-nav {
	gap: 0.25rem;
	position: relative;

	&::before {
		content: '';
		display: block;
		width: 1px;
		height: auto;
		position: absolute;
		left: 0;
		top: calc(-1 * var(--bs-navbar-padding-y) - 11px);
		bottom: calc(-1 * var(--bs-navbar-padding-y) - 11px);
		background-color: white;
	}
}

.affix .navbar-nav {

	&::before {
		top: calc(-1 * var(--bs-navbar-padding-y));
		bottom: calc(-1 * var(--bs-navbar-padding-y));
	}
}


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

.sub.header-none .dropdown-toggle::after {
	filter: invert(1);
}

.navbar-nav .nav-link {
	text-transform: uppercase;
	font-family: var(--font);
	font-size: .875rem;
	color: white;
	border-radius: 5rem;
	letter-spacing: .1em;

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

}

.sub.header-none .navbar-nav .nav-link:hover.dropdown-toggle::after,
.sub.header-none .navbar-nav .nav-link:focus.dropdown-toggle::after,
.sub.header-none .navbar-nav .nav-link.active.dropdown-toggle::after,
.sub.header-none .navbar-nav .nav-link.show.dropdown-toggle::after {
	filter: invert(0);
}


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

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



.dropdown-menu {
	border: 0;
	padding: 1.25rem;
	border-radius: 1rem;
	background-color: var(--bs-primary);
	transform: translateY(-20px);
	opacity: 0;
}

@keyframes drop {
	from {
		transform: translateY(-20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.dropdown-menu.show {
	animation: drop 200ms forwards;
}

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

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

/*  MARK: header  */

.slogan {
	color: white;
}

.badge {
	display: inline-flex;
	gap: 1em;
	padding: 0.5rem 0.875rem;
	align-items: center;
	background-color: hsl(0 0% 100% / .25);
	font-weight: normal;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
}

.swiper__image {
	height: 100vh;
	object-position: right;
}

/*  MARK: main content */

.btn {
	--bs-btn-padding-x: 1.875rem;
	--bs-btn-padding-y: 1rem;
	--bs-btn-font-size: .875rem;
	--bs-btn-font-weight: 400;
	--bs-btn-line-height: 1.5;
	--bs-btn-border-radius: .1rem;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.btn:has(img:only-child) {
	--bs-btn-padding-x: 1rem;
	--bs-btn-padding-y: 1rem;
}

.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-dark {
	--bs-btn-bg: var(--bs-dark);
	--bs-btn-border-color: var(--bs-dark);
	--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);
	--bs-btn-disabled-bg: var(--bs-dark);
	--bs-btn-disabled-border-color: var(--bs-dark);
}

#oferta h2 {
	color: white;
	margin-bottom: 0;
	transition: transform 300ms;
}

#oferta .text-primary {
	transition: transform 300ms;
}

#oferta a:hover h2,
#oferta a:focus h2,
#oferta a:hover .text-primary,
#oferta a:focus .text-primary {
	transform: translateY(-2rem);
}

#oferta .position-absolute {
	background-image: linear-gradient(to top, hsl(0 0% 0% / .75), hsl(0 0% 0% / 0) 60%);
}

#oferta img {
	width: 100%;
	height: auto;
	aspect-ratio: 372/530;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

#oferta a:hover img,
#oferta a:focus img {
	transform: scale(1.1);
}

#pasja {
	& h2 {
		margin-left: -200px;
		margin-bottom: var(--xl);
	}
}

a.more {
	display: inline-flex;
	align-items: center;
	gap: 1em;
	margin-top: 0.5em;
	text-decoration: none;
	color: var(--bs-body-color);
	transition: color 200ms;

	&::after {
		content: '';
		display: inline-block;
		width: 36px;
		height: 14px;
		background-image: url('../img/arrow-right.svg');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		transition: transform 200ms;
	}

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

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

#pasja {
	background-image: url(../img/sygnet.svg);
	background-repeat: no-repeat;
	background-position: bottom -20px right 0;
}

/*  MARK: FAQ accordion  */

#faqAccordion .accordion-item {
	background-color: transparent;
	border: none;
	border-radius: 0 !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#faqAccordion .accordion-item:last-child {
	border-bottom: none;
}

#faqAccordion .accordion-header {
	margin-bottom: 0;
}

#faqAccordion .accordion-button {
	background-color: transparent;
	border: none;
	color: white;
	font-size: 1.5rem;
	font-family: var(--font);
	font-weight: 400;
	padding: 1.5rem 0;
	box-shadow: none;
	position: relative;
}

#faqAccordion .accordion-button:not(.collapsed) {
	background-color: transparent;
	color: white;
	box-shadow: none;
}

#faqAccordion .accordion-button:focus {
	border-color: transparent;
	box-shadow: none;
}

#faqAccordion .accordion-button::after {
	content: '+';
	background-image: none;
	font-size: 1.5rem;
	font-weight: 300;
	width: auto;
	height: auto;
	margin-left: auto;
	flex-shrink: 0;
}

#faqAccordion .accordion-button:not(.collapsed)::after {
	content: '−';
	transform: none;
}

#faqAccordion .accordion-body {
	background-color: transparent;
	color: white;
	padding: 0 0 1.5rem 0;
}

#faqAccordion .accordion-collapse {
	border: none;
}


#nowoczesnosc {
	background-image: url(../img/sygnet2.svg);
	background-repeat: no-repeat;
	background-position: bottom 0 left 0;

	& .h5 {
		line-height: 1.5;
	}
}


/*  MARK: stopka */

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

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

@media (min-width: 1200px) {
	footer .list-unstyled {
		padding-left: 3rem;
		border-left: 1px solid hsl(0 0% 100% / .2);
	}
}

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

footer .list-unstyled a {
	font-size: var(--h5);
	display: block;
	line-height: 1.2;
	font-family: var(--font-title);
}

footer .text-muted {
	color: white !important;
	opacity: .5;
}

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

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




/*  MARK: sub content  */

.text-loose {
	letter-spacing: 0.1em;
}

.sub header {
	height: 100vh;
}

.sub.header-none {
	padding-top: 130px;
}

.sub.header-none .navbar-nav {
	&::before {
		background-color: var(--bs-dark);
	}
}

.sub #lead .lead {
	font-style: normal;
}

.sub #lead {
	position: relative;
}

.sub #lead::after {
	content: '';
	background-color: var(--bs-light);
	width: 100%;
	height: 500px;
	top: -500px;
	z-index: -1;
	left: 0;
	position: absolute;
}

.zabieg {
	border-top: 1px solid var(--bs-border-color);
}

.zabieg:last-child {
	border-bottom: 1px solid var(--bs-border-color);
}

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

	& .h5 {
		font-size: 1.125rem !important;
		font-family: var(--font);
	}
}

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

.female {
	--accent: hsl(13, 87%, 55%);
}

.male {
	--accent: hsl(195, 83%, 63%);
}

.female,
.male {
	position: relative;
	text-decoration: none;
	color: var(--bs-body-color);
	transition: color 200ms;

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

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

	&::before {
		content: "";
		display: block;
		width: 5px;
		height: calc(100% + 2px);
		position: absolute;
		top: -1px;
		left: -1px;
		background-color: var(--accent);
	}

	& .more {
		color: var(--bs-body-color) !important;

		& img {
			transition: transform 200ms;
		}
	}
}

#cele-dla-niej,
#cele-dla-niego {
	& .accordion-body ul {
		margin: 0 0 1.5rem;
		padding: 0;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: .5rem;

		& li {
			list-style: none;
			margin: 0;
			line-height: 1.1;
			padding: 0.35rem .65rem;
			border-radius: 2rem;
			border: 1px solid hsl(0 0% 0% / .15);
			font-size: 1rem;
			transition: border-color 200ms;

			& a {
				display: flex;
				align-items: center;
				gap: 0.5rem;
				color: var(--bs-body-color);
				transition: color 200ms;
				text-decoration: none;

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

				&::after {
					content: '';
					display: block;
					width: 12px;
					height: 8px;
					background-image: url(../img/tag-arrow.svg);
					background-size: contain;
					background-repeat: no-repeat;
				}
			}
		}

		& li:has(a):hover,
		& li:has(a):focus {
			border-color: var(--primary-color) !important;

			& a {
				color: var(--primary-color) !important;
			}
		}
	}
}

#cele-dla-niego li {
	border-color: hsl(0 0% 80% /.5) !important;
}

#cele-dla-niego a {
	color: white !important;

	&::after {
		filter: invert(1);
	}
}

#cele-dla-niego .accordion-body ul li {
	border: 1px solid hsla(0, 0%, 100%, 0.15);
}



/*  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: body parts navigation */

.body-parts-nav {
	position: relative;
	width: 200px;
	height: 600px;
}

.body-part-link {
	position: absolute;
	display: block;
	width: 100%;
	padding: 8px 0;
	color: var(--bs-body-color);
	text-decoration: none;
	font-family: var(--font-title);
	font-size: clamp(.75rem, 1vw, 1.125rem);
	font-weight: 400;
	text-align: left;
	transition: opacity 0.3s ease;
	opacity: 0.3;
	border-bottom: 1px solid var(--bs-body-color);
	background: transparent;
	white-space: nowrap;
}

.body-parts-nav.text-end .body-part-link {
	text-align: right;
	right: 0;
}

.body-part-link:hover,
.body-part-link:focus,
.body-part-link.active {
	opacity: 1;
	color: var(--bs-body-color);
	text-decoration: none;
}

/* Pozycjonowanie linków po lewej stronie */
.body-part-link-1 {
	top: 30px;
}

/* Włosy */
.body-part-link-2 {
	top: 115px;
}

/* Plecy */
.body-part-link-3 {
	top: 165px;
}

/* Pachy */
.body-part-link-4 {
	top: 215px;
}

/* Ramiona i przedramiona */
.body-part-link-5 {
	top: 265px;
}

/* Dłonie */
.body-part-link-6 {
	top: 315px;
}

/* Pośladki */
.body-part-link-7 {
	top: 530px;
}

/* Stopy */

/* Pozycjonowanie linków po prawej stronie */
.body-part-link-8 {
	top: 20px;
}

/* Twarz */
.body-part-link-9 {
	top: 105px;
}

/* Szyja i dekolt */
.body-part-link-10 {
	top: 150px;
}

/* Piersi */
.body-part-link-11 {
	top: 195px;
}

/* Brzuch */
.body-part-link-12 {
	top: 285px;
}

/* Okolice intymne */
.body-part-link-13 {
	top: 410px;
}

/* Nogi */

/* MARK: body parts navigation - MEN */

.body-part-link-men-1 {
	top: 30px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Włosy */
.body-part-link-men-2 {
	top: 115px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Plecy */
.body-part-link-men-3 {
	top: 165px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Pachy */
.body-part-link-men-4 {
	top: 215px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Ramiona i przedramiona */
.body-part-link-men-5 {
	top: 265px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Dłonie */
.body-part-link-men-6 {
	top: 315px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Pośladki */
.body-part-link-men-7 {
	top: 530px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* sub */

.person {
	background-color: #d3d9db;
	aspect-ratio: 2/3;
	overflow: hidden;
}

.person .text {
	transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
	overflow-y: auto;
	scrollbar-width: none;
	/* Firefox – ukrywa cały pasek */
	-ms-overflow-style: none;
	/* IE/Edge legacy */
	position: relative;
	z-index: 2;
}

.person .text p {
	opacity: 0;
	transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.person:hover .text {
	color: white;
	background: #000000d2;
}

.person:hover .text p {
	opacity: 1;
}

.person img,
.promo-offer img,
.blog-entry img {
	transition: 4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.person:hover img,
.promo-offer:hover img,
.blog-entry:hover img {
	transform: scale(1.1);
}




/* Stopy */

.body-part-link-men-8 {
	top: 30px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Twarz */
.body-part-link-men-9 {
	top: 105px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Szyja */
.body-part-link-men-10 {
	top: 150px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Klatka piersiowa */
.body-part-link-men-11 {
	top: 195px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Brzuch */
.body-part-link-men-12 {
	top: 285px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Okolice intymne */
.body-part-link-men-13 {
	top: 410px;
	color: white;
	border-bottom-color: white;
	opacity: 0.6;
}

/* Nogi */

.body-part-link[class*="men"]:hover,
.body-part-link[class*="men"]:focus,
.body-part-link[class*="men"].active {
	color: white;
	opacity: 1;
}



/* MARK: cele accordion - WSPÓLNE */

#accordionCele .accordion-item,
#accordionCeleMen .accordion-item {
	position: relative;
	isolation: isolate;
}

#accordionCeleMen .accordion-item:has(.show)::after,
#accordionCele .accordion-item:has(.show)::after {
	content: '';
	inset: 0 -3rem;
	position: absolute;
	z-index: -1;
	background-color: hsl(0 0% 100% / .15);
}

#accordionCele .accordion-item:has(.show)::after {
	background-color: hsl(0 0% 100% / .35);
}


#accordionCele .accordion-item,
#accordionCeleMen .accordion-item {
	border: none;
	margin-bottom: 0;
	background: transparent;
	border-radius: 0 !important;
	border-bottom: 1px solid var(--bs-border-color);
}

#accordionCeleMen .accordion-item {
	border-bottom-color: rgba(255, 255, 255, 0.2);
}

#accordionCele .accordion-button,
#accordionCeleMen .accordion-button {
	border-radius: 0 !important;
	border: 0 !important;
}

#accordionCele .accordion-collapse,
#accordionCeleMen .accordion-collapse {
	border-radius: 0 !important;
	border: none;
}

#accordionCele .accordion-item:first-child,
#accordionCeleMen .accordion-item:first-child {
	border-top: 1px solid var(--bs-border-color);
}

#accordionCeleMen .accordion-item:first-child {
	border-top-color: rgba(255, 255, 255, 0.2);
}

#accordionCele .accordion-header,
#accordionCeleMen .accordion-header {
	margin-bottom: 0;
}

#accordionCele .accordion-button,
#accordionCeleMen .accordion-button {
	background-color: transparent;
	border: none;
	font-size: 1.125rem;
	font-family: var(--font);
	font-weight: 500;
	padding: 1rem 0 1rem 0;
	box-shadow: none;
	position: relative;
}

#accordionCele .accordion-button {
	color: #333;
}

#accordionCeleMen .accordion-button {
	color: white;
}

#accordionCele .accordion-button:not(.collapsed),
#accordionCeleMen .accordion-button:not(.collapsed) {
	background-color: transparent;
	box-shadow: none;
}

#accordionCele .accordion-button:not(.collapsed) {
	color: #333;
}

#accordionCeleMen .accordion-button:not(.collapsed) {
	color: white;
}

#accordionCele .accordion-button:focus,
#accordionCeleMen .accordion-button:focus {
	border-color: transparent;
	box-shadow: none;
}

#accordionCele .accordion-button::after,
#accordionCeleMen .accordion-button::after {
	content: '+';
	background-image: none;
	font-size: 1.5rem;
	font-weight: 300;
	width: auto;
	height: auto;
	margin-left: auto;
	flex-shrink: 0;
}

#accordionCele .accordion-button::after {
	color: #666;
}

#accordionCeleMen .accordion-button::after {
	color: rgba(255, 255, 255, 0.7);
}

#accordionCele .accordion-button:not(.collapsed)::after,
#accordionCeleMen .accordion-button:not(.collapsed)::after {
	content: '−';
	transform: none;
}

#accordionCele .accordion-body,
#accordionCeleMen .accordion-body {
	background-color: transparent;
	padding: 0.75rem 0 1.25rem 0;
}

#accordionCele .accordion-body .badge,
#accordionCeleMen .accordion-body .badge {
	font-size: 0.75rem;
	padding: 0.35rem 1.2rem 0.35rem 0.8rem;
	text-decoration: none;
	margin-right: 0.4rem;
	margin-bottom: 0.4rem;
	display: inline-block;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	border-radius: 12px;
	position: relative;
	background-repeat: no-repeat;
	background-position: right 0.4rem center;
	background-size: 0.6rem;
}

/* MARK: cele accordion - DLA NIEJ */
#accordionCele .accordion-body .badge {
	border: 1px solid #ddd;
	background-color: #fff;
	color: #666;
	background-image: url('../img/tag-arrow.svg');
}

#accordionCele .accordion-body .badge:hover,
#accordionCele .accordion-body .badge:focus {
	border-color: var(--primary-color);
	background-color: transparent !important;
}

/* MARK: cele accordion - DLA NIEGO */
#accordionCeleMen .accordion-body {
	color: white;
}

#accordionCeleMen .accordion-body .badge {
	border: 1px solid white;
	background-color: transparent;
	color: white;
	background-image: url('../img/tag-arrow-white.svg');
}

#accordionCeleMen .accordion-body .badge:hover,
#accordionCeleMen .accordion-body .badge:focus {
	border-color: var(--primary-color);
	background-color: var(--primary-color);
	color: black;
	background-image: url('../img/tag-arrow.svg');
}

main:has(.menu.position-sticky) {
	overflow: visible;
}

@media (max-width: 1199px) {
	main:has(.menu.position-sticky) {
		overflow: hidden;
	}
}

.menu.position-sticky {
	top: 120px;
	bottom: 0;

	& a {
		font-family: var(--font);
		color: var(--bs-body-color);
		font-style: normal;
		transition: color 200ms;

		display: block;
		line-height: 1.2;

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

.bg-light #faqAccordion .accordion-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

main:has(.subpage:last-child),
main:has(.text-bg-dark:last-child) {
	padding-bottom: 0;
}

main .simpleParallax {
	max-height: clamp(50vh, 300px, 600px);

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


body:has(main>.bg-light:first-child) {
	background-color: var(--bs-light);
}

.sub header img.w-100 {
	filter: brightness(.6);
	object-position: center;
}


/*  MARK: RWD  */

.navbar-dark,
.navbar[data-bs-theme=dark] {
	--bs-navbar-toggler-border-color: rgba(255, 255, 255);
	--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='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main,
footer {
	overflow: hidden;
}

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

	.navbar {
    --bs-navbar-nav-link-padding-x: .5rem;
	}

	.navbar-nav {
		padding-inline-start: clamp(1rem, 3vw, 2.5rem) !important;
		margin-inline-start: clamp(1rem, 3vw, 2.5rem) !important;
	}

	.navbar-nav .nav-link {
		font-size: .75rem;
	}
}


@media (max-width: 1399px) {
	.navbar-nav::before {
		display: none;
	}

	.navbar-nav {
		padding-inline-start: 0 !important;
		margin-inline-start: 0 !important;
	}

	.navbar-nav .nav-link {
		text-align: center;
	}

	.navbar .buttons a {
		filter: grayscale(1) invert(1);
		transition: filter 200ms, color 200ms, background-color 200ms;

		&:hover,
		&:focus {
			filter: none;
		}
	}

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

	#oferta h2 {
		font-size: var(--h5) !important;
	}
}

@media (max-width: 1199px) {
	#oferta h2 {
		font-size: var(--h6) !important;
	}

	#faqAccordion .accordion-button {
		font-size: 1.15rem;
		padding: 1rem 0;
	}

	footer {
		text-align: center;
	}

	footer .col-xl-3 {
		margin-top: 2rem;
	}
}


@media (max-width: 991px) {
	.slogan {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	#pasja {
		& h2 {
			margin-left: 0;
		}
	}

	.ps-xxl {
		padding-left: 0;
	}
}


@media (max-width: 767px) {
	header h1 {
		font-size: var(--h2) !important;
	}

	.badge {
		white-space: wrap;
		word-break:normal;
	}
}

@media (max-width: 575px) {
	footer h3 {
		font-size: var(--h5) !important;
	}

	header .badge {
		font-size: .6rem;

		& img {
			height: 10px;
		}
	}
}