/* Alishabaht Jaipur - site look (royal purple on deep aubergine) */

@font-face {
	font-family: "Marcellus";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/assets/fonts/marcellus-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Hanken Grotesk";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("/assets/fonts/hanken-grotesk-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--orc-night: #140b18;
	--orc-plum: #1b1020;
	--orc-plum-2: #221428;
	--orc-panel: #2a1932;
	--orc-panel-2: #33203d;
	--orc-line: rgba(207, 170, 247, .16);
	--orc-line-2: rgba(207, 170, 247, .3);
	--orc-ink: #f1e9f6;
	--orc-soft: #c5b5d1;
	--orc-mute: #a594b3;
	--orc-royal: #7a3ee6;
	--orc-royal-deep: #5a22ad;
	--orc-lilac: #cfaaf7;
	--orc-lilac-2: #e2cbfb;
	--orc-gold: #e7c889;
	--orc-wa: #25d366;
	--orc-radius: 16px;
	--orc-radius-sm: 10px;
	--orc-shadow: 0 18px 40px -22px rgba(0, 0, 0, .75);
	--orc-head: "Marcellus", "Palatino Linotype", Palatino, Georgia, serif;
	--orc-body: "Hanken Grotesk", "Segoe UI", Arial, sans-serif;
	--orc-wrap: 1180px;
	--orc-bar-h: 56px;
}

/* ---------- base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--orc-bar-h) + 12px);
}

body {
	margin: 0;
	background: var(--orc-plum);
	background-image: radial-gradient(1200px 600px at 50% -200px, rgba(122, 62, 230, .16), transparent 70%);
	background-repeat: no-repeat;
	color: var(--orc-ink);
	font-family: var(--orc-body);
	font-size: 17px;
	line-height: 1.65;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img,
video,
svg {
	max-width: 100%;
}

img {
	height: auto;
	border: 0;
	vertical-align: middle;
}

a {
	color: var(--orc-lilac);
	text-decoration: underline;
	text-decoration-color: rgba(207, 170, 247, .35);
	text-underline-offset: 3px;
	transition: color .2s, text-decoration-color .2s, background-color .2s, border-color .2s, transform .2s;
}

a:hover {
	color: var(--orc-lilac-2);
	text-decoration-color: currentColor;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--orc-lilac);
	outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5 {
	font-family: var(--orc-head);
	font-weight: 400;
	font-synthesis: none;
	line-height: 1.22;
	letter-spacing: .01em;
	color: var(--orc-ink);
	margin: 0 0 .6em;
	text-wrap: balance;
}

h1,
.h1 {
	font-size: clamp(1.75rem, 1.15rem + 2.3vw, 2.75rem);
}

h2,
.h2 {
	font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem);
}

h3,
.h3 {
	font-size: clamp(1.18rem, 1.05rem + .5vw, 1.45rem);
}

h4,
.h4 {
	font-size: 1.2rem;
}

h5,
.h5 {
	font-size: 1.08rem;
}

h1 a,
h2 a,
h3 a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 1em;
	max-width: 78ch;
}

strong,
b {
	font-weight: 700;
	color: #fff;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h1 b,
h2 b,
h3 b {
	font-weight: 400;
	color: inherit;
}

ul,
ol {
	padding-left: 1.3em;
	margin: 0 0 1em;
}

li {
	margin-bottom: .35em;
}

li::marker {
	color: var(--orc-lilac);
}

hr {
	border: 0;
	border-top: 1px solid var(--orc-line);
	margin: 2rem 0;
}

table {
	border-collapse: collapse;
	width: 100%;
}

input,
textarea,
select,
button {
	font: inherit;
	color: inherit;
}

::selection {
	background: rgba(122, 62, 230, .55);
	color: #fff;
}

/* ---------- layout helpers used by the page markup ---------- */
.container,
.orc-wrap {
	width: 100%;
	max-width: var(--orc-wrap);
	margin-inline: auto;
	padding-inline: 20px;
}

.container .container {
	padding-inline: 0;
}

.container-fluid {
	width: 100%;
	padding-inline: 20px;
	margin-inline: auto;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-inline: -12px;
}

.row>* {
	padding-inline: 12px;
	min-width: 0;
}

.col,
.col-12,
.col-sm-12,
.col-md-12,
.col-sm-6,
.col-sm-3,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-lg-3,
.col-lg-4,
.col-lg-9,
.col-xl-4,
.col-xl-8,
.col-9,
.col-xs-6 {
	position: relative;
	width: 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.col {
	flex: 1 0 0;
}

.col-9 {
	flex: 0 0 75%;
	max-width: 75%;
}

.col-xs-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

@media (min-width: 576px) {
	.col-sm-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-sm-3 {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}
}

@media (min-width: 768px) {
	.col-md-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-md-4 {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}

	.col-md-5 {
		flex: 0 0 41.666%;
		max-width: 41.666%;
	}

	.col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-md-7 {
		flex: 0 0 58.333%;
		max-width: 58.333%;
	}

	.col-md-8 {
		flex: 0 0 66.666%;
		max-width: 66.666%;
	}

	.col-md-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
}

@media (min-width: 992px) {
	.col-lg-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-lg-4 {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}

	.col-lg-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
}

@media (min-width: 1200px) {
	.col-xl-4 {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}

	.col-xl-8 {
		flex: 0 0 66.666%;
		max-width: 66.666%;
	}
}

.d-flex,
.flex {
	display: flex;
}

.flex-row-reverse {
	flex-direction: row-reverse;
}

.fc {
	flex-direction: column;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-around {
	justify-content: space-between;
}

.justify-content-md-center {
	justify-content: center;
}

.align-items-center {
	align-items: center;
}

.position-relative {
	position: relative;
}

.text-center {
	text-align: center;
}

.text-center p,
p.text-center,
p.mx-auto {
	margin-inline: auto;
}

.text-uppercase {
	text-transform: uppercase;
	letter-spacing: .06em;
}

.font-italic {
	font-style: italic;
}

.font-weight-bold {
	font-weight: 400;
}

.font-weight-normal {
	font-weight: 400;
}

.mx-auto {
	margin-left: auto !important;
	margin-right: auto !important;
}

.my-auto {
	margin-top: auto;
	margin-bottom: auto;
}

.float-left {
	float: none;
}

.clearfix::after,
.clr {
	content: "";
	display: block;
	clear: both;
}

.img-fluid,
.img-responsive {
	max-width: 100%;
	height: auto;
}

.w-100 {
	width: 100%;
}

.rounded {
	border-radius: var(--orc-radius-sm);
}

.p-0 {
	padding: 0 !important;
}

.p-2 {
	padding: .6rem;
}

.p-3 {
	padding: 1rem;
}

.pt-3 {
	padding-top: 1rem;
}

.pb-3 {
	padding-bottom: 1rem;
}

.pb-4 {
	padding-bottom: 1.5rem;
}

.mt-2 {
	margin-top: .6rem;
}

.mt-3 {
	margin-top: 1rem;
}

.mt-4 {
	margin-top: 1.5rem;
}

.mt-5 {
	margin-top: clamp(2rem, 1.4rem + 2vw, 3.2rem);
}

.mb-2 {
	margin-bottom: .6rem;
}

.mb-3 {
	margin-bottom: 1rem;
}

.mb-4 {
	margin-bottom: 1.5rem;
}

.mb-5 {
	margin-bottom: clamp(2rem, 1.4rem + 2vw, 3rem);
}

.my-2 {
	margin-block: .5rem;
}

.my-3 {
	margin-block: 1rem;
}

.text-white,
.text-light {
	color: var(--orc-ink) !important;
}

.text-red,
.text-gold,
.text-warning {
	color: var(--orc-lilac) !important;
}

.text-black {
	color: var(--orc-lilac-2);
}

.nav-spacing,
.footer-trim,
.separator_left,
.arrLeft,
.arrRight,
.service_new_line_sec_profile,
.profile_right_liles:empty {
	display: none;
}

.m-top-120,
.m-top-40,
.m-top-30 {
	margin-top: 0 !important;
}

.wow,
.animated {
	visibility: visible !important;
	animation: none !important;
}

/* ---------- header: brand row (scrolls away) ---------- */
.orc-crown {
	background: var(--orc-night);
	border-bottom: 1px solid var(--orc-line);
	position: relative;
}

.orc-crown__in {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-height: 84px;
	padding-block: 10px;
}

.orc-crown__in::before,
.orc-crown__in::after {
	content: "";
	flex: 1 1 0;
	max-width: 260px;
	height: 9px;
	background:
		linear-gradient(var(--orc-line-2), var(--orc-line-2)) center / 100% 1px no-repeat,
		radial-gradient(circle, var(--orc-lilac) 0 2px, transparent 2.5px) right center / 9px 9px no-repeat;
	opacity: .8;
}

.orc-crown__in::before {
	background:
		linear-gradient(var(--orc-line-2), var(--orc-line-2)) center / 100% 1px no-repeat,
		radial-gradient(circle, var(--orc-lilac) 0 2px, transparent 2.5px) left center / 9px 9px no-repeat;
	transform: scaleX(-1);
}

.orc-crown__logo {
	display: block;
	line-height: 0;
	flex: 0 0 auto;
}

.orc-crown__logo img {
	width: 236px;
	height: auto;
}

/* ---------- header: slim sticky menu row ---------- */
.orc-bar {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(27, 16, 32, .94);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid var(--orc-line);
	box-shadow: 0 10px 24px -18px rgba(0, 0, 0, .9);
}

.orc-bar__in {
	display: flex;
	align-items: center;
	gap: 14px;
	height: var(--orc-bar-h);
}

.orc-bar__mark {
	display: none;
	line-height: 0;
}

.orc-bar__mark img {
	width: 30px;
	height: 37px;
}

.orc-menu {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1 1 auto;
}

.orc-menu li {
	margin: 0;
}

.orc-menu a {
	display: block;
	padding: 8px 11px;
	color: var(--orc-soft);
	font-size: .94rem;
	font-weight: 500;
	letter-spacing: .02em;
	text-decoration: none;
	border-radius: 999px;
	white-space: nowrap;
}

.orc-menu a:hover {
	color: #fff;
	background: rgba(207, 170, 247, .09);
}

.orc-menu a[aria-current="page"] {
	color: #fff;
	background: rgba(122, 62, 230, .28);
	box-shadow: inset 0 0 0 1px rgba(207, 170, 247, .35), 0 0 16px -4px rgba(122, 62, 230, .7);
}

.orc-talk {
	display: flex;
	gap: 8px;
	flex: 0 0 auto;
	margin-left: auto;
}

.orc-talk a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 40px;
	padding: 0 16px;
	border-radius: 999px;
	font-weight: 700;
	font-size: .92rem;
	letter-spacing: .02em;
	text-decoration: none;
	white-space: nowrap;
}

.orc-talk svg {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
}

.orc-talk__call {
	color: #fff;
	background: linear-gradient(180deg, var(--orc-royal), var(--orc-royal-deep));
	box-shadow: 0 0 0 1px rgba(226, 203, 251, .25) inset, 0 6px 18px -6px rgba(122, 62, 230, .9);
}

.orc-talk__call:hover {
	color: #fff;
	transform: translateY(-1px);
}

.orc-talk__wa {
	color: #0d2616;
	background: var(--orc-wa);
}

.orc-talk__wa:hover {
	color: #0d2616;
	background: #3fe07c;
	transform: translateY(-1px);
}

.orc-burger {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--orc-line-2);
	border-radius: 12px;
	background: transparent;
	padding: 0;
	cursor: pointer;
	position: relative;
	flex: 0 0 auto;
}

.orc-burger span {
	position: absolute;
	left: 11px;
	right: 11px;
	height: 2px;
	border-radius: 2px;
	background: var(--orc-lilac-2);
	transition: transform .25s, opacity .2s, top .25s;
}

.orc-burger span:nth-child(1) {
	top: 13px;
}

.orc-burger span:nth-child(2) {
	top: 20px;
}

.orc-burger span:nth-child(3) {
	top: 27px;
}

.orc-burger[aria-expanded="true"] span:nth-child(1) {
	top: 20px;
	transform: rotate(45deg);
}

.orc-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.orc-burger[aria-expanded="true"] span:nth-child(3) {
	top: 20px;
	transform: rotate(-45deg);
}

@media (max-width: 1119px) {
	.orc-burger {
		display: block;
	}

	.orc-bar__mark {
		display: block;
	}

	.orc-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 6px;
		padding: 14px 16px 18px;
		background: var(--orc-plum-2);
		border-bottom: 1px solid var(--orc-line-2);
		box-shadow: 0 24px 40px -20px rgba(0, 0, 0, .9);
		max-height: calc(100vh - var(--orc-bar-h));
		overflow-y: auto;
	}

	.orc-menu.is-open {
		display: grid;
	}

	.orc-menu a {
		padding: 12px 14px;
		font-size: 1rem;
		border-radius: 12px;
		background: rgba(255, 255, 255, .03);
		border: 1px solid var(--orc-line);
		color: var(--orc-ink);
	}
}

@media (max-width: 480px) {
	.orc-crown__in {
		min-height: 64px;
	}

	.orc-crown__in::before,
	.orc-crown__in::after {
		max-width: 40px;
	}

	.orc-crown__logo img {
		width: 188px;
	}

	.orc-bar__in {
		gap: 8px;
		padding-inline: 12px;
	}

	.orc-talk {
		gap: 6px;
	}

	.orc-talk a {
		padding: 0 12px;
		height: 38px;
		font-size: .86rem;
		gap: 5px;
	}
}

@media (max-width: 350px) {
	.orc-bar__mark {
		display: none;
	}
}

/* ---------- footer ---------- */
.orc-foot {
	margin-top: clamp(3rem, 2rem + 3vw, 5rem);
	background: var(--orc-night);
	border-top: 1px solid var(--orc-line);
	color: var(--orc-soft);
	font-size: .98rem;
	position: relative;
}

.orc-foot::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -7px;
	width: 13px;
	height: 13px;
	background: var(--orc-plum);
	border: 1px solid var(--orc-line-2);
	transform: translateX(-50%) rotate(45deg);
}

.orc-foot__grid {
	display: grid;
	grid-template-columns: 1.1fr 1.6fr 1fr;
	gap: 36px 48px;
	padding-block: 52px 36px;
}

.orc-foot__title {
	font-family: var(--orc-head);
	color: var(--orc-ink);
	font-size: 1.22rem;
	margin: 0 0 14px;
}

.orc-foot__brand img {
	width: 220px;
	height: auto;
}

.orc-foot__adult {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 18px 0 0;
	color: var(--orc-soft);
}

.orc-18 {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--orc-lilac);
	color: var(--orc-lilac-2);
	font-weight: 700;
	font-size: .82rem;
	flex: 0 0 auto;
}

.orc-foot__pages ul {
	list-style: none;
	margin: 0;
	padding: 0;
	columns: 2;
	column-gap: 28px;
}

.orc-foot__pages li {
	margin: 0 0 8px;
	break-inside: avoid;
}

.orc-foot__pages a {
	color: var(--orc-soft);
	text-decoration: none;
	display: inline-block;
	padding: 2px 0;
}

.orc-foot__pages a:hover {
	color: #fff;
}

.orc-foot__phone {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #fff;
	font-weight: 700;
	font-size: 1.12rem;
	text-decoration: none;
	padding: 10px 16px;
	border-radius: 12px;
	border: 1px solid var(--orc-line-2);
	background: rgba(122, 62, 230, .14);
}

.orc-foot__phone svg {
	width: 18px;
	height: 18px;
	color: var(--orc-lilac);
}

.orc-foot__phone:hover {
	color: #fff;
	background: rgba(122, 62, 230, .26);
}

.orc-foot__open {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 14px 0 0;
	color: var(--orc-soft);
}

.orc-foot__open::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--orc-wa);
	box-shadow: 0 0 0 4px rgba(37, 211, 102, .15);
}

.orc-foot__base {
	border-top: 1px solid var(--orc-line);
	padding-block: 16px 20px;
	text-align: center;
	font-size: .9rem;
	color: var(--orc-mute);
}

.orc-foot__base p {
	margin: 0 auto;
}

@media (max-width: 860px) {
	.orc-foot__grid {
		grid-template-columns: 1fr 1fr;
	}

	.orc-foot__brand {
		grid-column: 1 / -1;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 14px;
	}

	.orc-foot__adult {
		margin: 0;
	}
}

@media (max-width: 560px) {
	.orc-foot__grid {
		grid-template-columns: 1fr;
		padding-block: 40px 28px;
	}
}

/* ---------- 18+ sheet + photo viewer (made by orchid-site.js) ---------- */
.orc-age {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background: rgba(12, 6, 15, .72);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	padding: 0 12px;
}

.orc-age__sheet {
	width: min(100%, 560px);
	background: linear-gradient(180deg, var(--orc-panel-2), var(--orc-plum-2));
	border: 1px solid var(--orc-line-2);
	border-bottom: 0;
	border-radius: 26px 26px 0 0;
	padding: 30px 26px calc(26px + env(safe-area-inset-bottom, 0px));
	box-shadow: 0 -20px 60px -20px rgba(122, 62, 230, .45);
	text-align: center;
	animation: orc-rise .35s ease-out both;
}

.orc-age__sheet img {
	width: 40px;
	height: 49px;
	margin: 0 auto 10px;
	display: block;
}

.orc-age__q {
	font-family: var(--orc-head);
	font-size: 1.55rem;
	color: #fff;
	margin: 0 auto 6px;
}

.orc-age__txt {
	color: var(--orc-soft);
	margin: 0 auto 22px;
	font-size: 1rem;
}

.orc-age__btns {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.orc-age__btns button {
	min-width: 150px;
	height: 48px;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	font-size: 1rem;
}

.orc-age__yes {
	border: 0;
	color: #fff;
	background: linear-gradient(180deg, var(--orc-royal), var(--orc-royal-deep));
	box-shadow: 0 8px 22px -8px rgba(122, 62, 230, .95);
}

.orc-age__no {
	background: transparent;
	color: var(--orc-soft);
	border: 1px solid var(--orc-line-2);
}

@keyframes orc-rise {
	from {
		transform: translateY(40px);
		opacity: 0;
	}

	to {
		transform: none;
		opacity: 1;
	}
}

@media (min-width: 900px) {
	.orc-age {
		align-items: center;
	}

	.orc-age__sheet {
		border-radius: 26px;
		border-bottom: 1px solid var(--orc-line-2);
	}
}

.orc-view {
	border: 0;
	padding: 0;
	background: transparent;
	max-width: 92vw;
	max-height: 92vh;
}

.orc-view::backdrop {
	background: rgba(10, 5, 12, .88);
}

.orc-view img {
	display: block;
	max-width: 92vw;
	max-height: 86vh;
	border-radius: 14px;
}

.orc-view button {
	display: block;
	margin: 10px auto 0;
	border: 1px solid var(--orc-line-2);
	background: var(--orc-panel);
	color: #fff;
	border-radius: 999px;
	padding: 8px 22px;
	cursor: pointer;
}

/* ---------- shared pieces ---------- */
.breadcrumbs {
	padding-top: 18px;
	padding-bottom: 4px;
}

.breadcrumbs .steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 0;
	font-size: .9rem;
}

.breadcrumbs .step {
	margin: 0;
	display: flex;
	align-items: center;
}

.breadcrumbs .step+.step::before {
	content: "";
	width: 5px;
	height: 5px;
	margin: 0 12px;
	border-top: 1.5px solid var(--orc-mute);
	border-right: 1.5px solid var(--orc-mute);
	transform: rotate(45deg);
}

.breadcrumbs a {
	color: var(--orc-soft);
	text-decoration: none;
}

.breadcrumbs .step:last-child a {
	color: var(--orc-lilac);
}

.breadcrumbs i {
	display: none;
}

/* buttons */
.btn,
.mybtn,
.primary-button,
.button,
.bokbtn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 10px 22px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-family: var(--orc-body);
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: .03em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	color: #fff;
	background: linear-gradient(180deg, var(--orc-royal), var(--orc-royal-deep));
	box-shadow: 0 0 0 1px rgba(226, 203, 251, .2) inset, 0 8px 20px -10px rgba(122, 62, 230, .9);
	transition: transform .2s, box-shadow .2s, background .2s;
}

.btn:hover,
.mybtn:hover,
.primary-button:hover,
.button:hover,
.bokbtn a:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 0 0 1px rgba(226, 203, 251, .35) inset, 0 12px 26px -10px rgba(122, 62, 230, 1);
}

.btn svg {
	width: 15px;
	height: 15px;
}

.btn-danger {
	background: transparent;
	color: var(--orc-lilac-2);
	border-color: var(--orc-lilac);
	box-shadow: none;
}

.btn-danger:hover {
	background: rgba(122, 62, 230, .18);
	color: #fff;
}

/* chips (category / area link buttons) */
.profile-img .btn,
.btn-dark,
.btn-redd {
	width: 100%;
	min-height: 50px;
	background: var(--orc-panel);
	color: var(--orc-ink);
	border: 1px solid var(--orc-line-2);
	box-shadow: none;
	font-weight: 600;
	letter-spacing: .01em;
	border-radius: 14px;
}

.btn-redd {
	background: linear-gradient(180deg, rgba(122, 62, 230, .3), rgba(90, 34, 173, .22));
}

.profile-img .btn:hover,
.btn-dark:hover,
.btn-redd:hover {
	border-color: var(--orc-lilac);
	background: rgba(122, 62, 230, .3);
	color: #fff;
	box-shadow: 0 0 18px -6px rgba(122, 62, 230, .9);
}

/* titles with a small ornament */
.loc_new_title .title,
.loc_new_title h2,
.head_title h1,
.head_title h2,
.head_title>a:first-child,
#our-escorts>h2,
.gallery-a~h2 {
	position: relative;
}

.loc_new_title {
	margin-bottom: 22px;
}

.loc_new_title .title,
.loc_new_title h2 {
	font-family: var(--orc-head);
	font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
	color: var(--orc-ink);
	margin: 0 auto 0;
}

.loc_new_title .title::after,
.orc-ornament::after,
.head_title::after,
#our-escorts>h2::after,
.gallery-main>h2::after {
	content: "";
	display: block;
	width: 132px;
	height: 12px;
	margin: 12px auto 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 132 12'%3E%3Cpath d='M0 6h52M80 6h52' stroke='%23cfaaf7' stroke-opacity='.45'/%3E%3Cpath d='M66 1l5 5-5 5-5-5z' fill='%23cfaaf7'/%3E%3Ccircle cx='56' cy='6' r='1.4' fill='%23cfaaf7'/%3E%3Ccircle cx='76' cy='6' r='1.4' fill='%23cfaaf7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.head_title {
	text-align: center;
	margin: 26px auto 18px;
}

.head_title>a:first-child {
	display: block;
	font-family: var(--orc-head);
	font-size: clamp(1.6rem, 1.1rem + 2vw, 2.5rem);
	line-height: 1.2;
	color: var(--orc-ink);
	text-decoration: none;
	margin-bottom: 8px;
}

.head_title h1 a {
	color: inherit !important;
}

.head_title h2,
.head_title h2 em {
	font-family: var(--orc-body);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--orc-lilac);
	letter-spacing: .02em;
	line-height: 1.5;
}

.head_title>a:not(:first-child) {
	color: var(--orc-soft);
}

.feature_content {
	max-width: 860px;
	margin: 0 auto 10px;
	color: var(--orc-soft);
}

.feature_content p {
	color: var(--orc-soft);
}

.feature_btns {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 6px 0 28px;
}

/* top banners (one for phone, one for desktop) */
.banner_top {
	margin: 18px auto 10px;
	max-width: var(--orc-wrap);
	padding-inline: 20px;
}

.container .banner_top,
.container-fluid .banner_top {
	padding-inline: 0;
}

.banner_top img {
	width: 100%;
	border-radius: var(--orc-radius);
	border: 1px solid var(--orc-line);
	box-shadow: var(--orc-shadow);
}

.mobile_banner {
	display: none;
}

@media (max-width: 767px) {
	.mobile_banner {
		display: block;
	}

	.desktop_banner {
		display: none;
	}
}

/* ---------- girl cards ---------- */
/* card type A: .thumb > .two > a > .girl (h2 name, photos, h2 label) */
#slick-library,
.gallery-a,
#jaipr-girl-gallery,
.orc-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 18px;
	padding-inline: 0;
	margin-bottom: 10px;
}

section.container:has(> .thumb),
div.container:has(> .thumb),
.container>.row:has(> .thumb),
.escorts-grid-auto {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 18px;
	margin-inline: auto;
}

.container>.row:has(> .thumb) {
	margin-inline: 0;
}

.container>.row:has(> .thumb)>.thumb {
	padding: 0;
}

.thumb {
	min-width: 0;
}

.thumb .two,
.thumb .two>a {
	display: block;
	height: 100%;
	text-decoration: none;
}

.thumb .girl,
.girls-gallery>a,
.gallery-holder>a {
	position: relative;
	display: block;
	height: 100%;
	border-radius: var(--orc-radius);
	overflow: hidden;
	background: var(--orc-panel);
	border: 1px solid var(--orc-line);
	box-shadow: var(--orc-shadow);
	text-decoration: none;
	transition: transform .25s, border-color .25s, box-shadow .25s;
}

.thumb .two>a:hover .girl,
.girls-gallery>a:hover,
.gallery-holder>a:hover {
	transform: translateY(-3px);
	border-color: var(--orc-line-2);
	box-shadow: 0 22px 44px -22px rgba(122, 62, 230, .65);
}

.content-slider {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.content-slider::-webkit-scrollbar {
	display: none;
}

.content-slider .item {
	flex: 0 0 100%;
	scroll-snap-align: start;
}

.thumb .girl .content-slider .item img,
.girls-gallery .girl-image img,
.gallery-holder .gallery-image-holder img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: center top;
}

.thumb .girl>h2 {
	margin: 0;
	pointer-events: none;
}

.thumb .girl>h2:first-child {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 48px 14px 12px;
	font-size: 1.28rem;
	color: #fff !important;
	background: linear-gradient(180deg, transparent, rgba(20, 11, 24, .92) 70%);
}

.thumb .girl>h2:last-child:not(:first-child) {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	font-family: var(--orc-body);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #fff !important;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(90, 34, 173, .85);
	border: 1px solid rgba(226, 203, 251, .35);
}

/* card type B: home .girls-gallery */
.gallery-section {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 18px;
}

.gallery-main>.row {
	margin-inline: 0;
}

.gallery-main>.row>.gallery-section {
	padding-inline: 0;
}

.girls-gallery .data,
.gallery-holder .gallery-text-holder {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 46px 14px 12px;
	background: linear-gradient(180deg, transparent, rgba(20, 11, 24, .94) 62%);
}

.girls-gallery .data p {
	margin: 0;
}

.girls-gallery .name,
.gallery-holder .gallery-name {
	font-family: var(--orc-head);
	font-size: 1.25rem;
	color: #fff !important;
	line-height: 1.2;
}

.girls-gallery .time,
.gallery-holder .gallery-location {
	color: var(--orc-soft);
	font-size: .88rem;
}

.girls-gallery>a>.status {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	margin: 0;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #fff;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(90, 34, 173, .85);
	border: 1px solid rgba(226, 203, 251, .35);
}

.girls-gallery .data .status,
.gallery-holder .gallery-text-holder .gallery-rate {
	position: static;
	display: inline-block;
	margin-top: 6px !important;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--orc-lilac-2) !important;
	padding: 3px 9px;
	border-radius: 999px;
	border: 1px solid rgba(207, 170, 247, .45);
}

/* card row that scrolls sideways (home "today available") */
.autoplay {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(200px, 23%);
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 4px 2px 16px;
	scrollbar-width: thin;
	scrollbar-color: var(--orc-royal) transparent;
}

.autoplay>.gallery-holder {
	scroll-snap-align: start;
}

.autoplay>.clearfix {
	display: none;
}

@media (max-width: 600px) {
	.autoplay {
		grid-auto-columns: 62%;
	}

	#slick-library,
	.gallery-a,
	#jaipr-girl-gallery,
	.gallery-section,
	section.container:has(> .thumb),
div.container:has(> .thumb),
	.container>.row:has(> .thumb) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.thumb .girl>h2:first-child,
	.girls-gallery .name,
	.gallery-holder .gallery-name {
		font-size: 1.08rem;
	}

	.thumb .girl>h2:last-child:not(:first-child) {
		font-size: .66rem;
		padding: 4px 8px;
	}
}

/* ---------- HOME ---------- */
.hero-banner {
	position: relative;
	overflow: hidden;
	margin: 26px auto 0;
	max-width: calc(var(--orc-wrap) - 40px);
	width: calc(100% - 40px);
	border-radius: 28px;
	border: 1px solid var(--orc-line-2);
	background:
		radial-gradient(520px 320px at 85% 20%, rgba(162, 104, 240, .35), transparent 70%),
		radial-gradient(420px 300px at 10% 100%, rgba(90, 34, 173, .45), transparent 70%),
		linear-gradient(160deg, #2d1838, #1a0f20);
	padding: clamp(40px, 6vw, 76px) clamp(20px, 5vw, 64px) clamp(56px, 7vw, 86px);
	text-align: center;
}

.hero-banner::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 16px;
	width: calc(100% - 32px);
	height: 130%;
	transform: translateX(-50%);
	border: 1px solid rgba(207, 170, 247, .16);
	border-radius: 50% 50% 0 0 / 22% 22% 0 0;
	pointer-events: none;
}

.hero-banner .container-fluid,
.hero-banner .row {
	padding: 0;
	margin: 0;
	display: block;
	position: relative;
}

.main-ban h1 {
	font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3.2rem);
	max-width: 17ch;
	margin: 0 auto 14px;
	color: #fff !important;
}

.main-ban h2 {
	font-family: var(--orc-body);
	font-size: .92rem;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--orc-lilac) !important;
	margin-bottom: 18px;
}

.main-ban p {
	font-size: 1.12rem;
	color: var(--orc-soft);
	margin: 0 auto 22px;
}

.main-ban .mybtn {
	min-width: 220px;
	min-height: 52px;
}

.arrowDown {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	width: 24px;
	height: 24px;
	opacity: .7;
}

.arrowDown svg {
	display: none;
}

.arrowDown::after {
	content: "";
	position: absolute;
	inset: 4px;
	border-right: 2px solid var(--orc-lilac);
	border-bottom: 2px solid var(--orc-lilac);
	transform: rotate(45deg);
	animation: orc-nudge 1.8s ease-in-out infinite;
}

@keyframes orc-nudge {

	0%,
	100% {
		translate: 0 -3px;
	}

	50% {
		translate: 0 3px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.arrowDown::after {
		animation: none;
	}

	html {
		scroll-behavior: auto;
	}
}

#home-section-2 {
	margin-top: 28px !important;
}

#home-section-2 .phone-number {
	display: flex;
	width: fit-content;
	margin: 0 auto 6px;
	align-items: center;
	gap: 10px;
	font-family: var(--orc-head);
	font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem);
	color: #fff;
	text-decoration: none;
	padding: 8px 26px;
	border-radius: 999px;
	border: 1px solid var(--orc-line-2);
	background: rgba(122, 62, 230, .14);
}

.quick-search {
	margin-top: 10px;
}

.click-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.click-nav>ul>li {
	background: var(--orc-panel);
	border: 1px solid var(--orc-line);
	border-radius: var(--orc-radius);
	padding: 18px 18px 12px;
	height: 100%;
}

.click-nav .clicker {
	font-family: var(--orc-head);
	font-size: 1.25rem;
	color: var(--orc-ink);
	margin: 0 0 12px;
}

.click-nav .clicker span {
	color: var(--orc-lilac);
}

.click-nav>ul>li>ul {
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px;
}

.click-nav>ul>li>ul>li {
	width: auto;
	max-width: none;
	flex: 0 0 auto;
	padding: 0;
	margin: 0;
}

.click-nav>ul>li>ul>li a,
.unique-links a,
.review-btn li a,
.alltype li a {
	display: inline-block;
	padding: 7px 14px;
	border-radius: 999px;
	border: 1px solid var(--orc-line-2);
	background: rgba(255, 255, 255, .03);
	color: var(--orc-ink);
	font-size: .92rem;
	text-decoration: none;
	line-height: 1.3;
}

.click-nav>ul>li>ul>li a:hover,
.unique-links a:hover,
.review-btn li a:hover,
.alltype li a:hover {
	border-color: var(--orc-lilac);
	background: rgba(122, 62, 230, .25);
	color: #fff;
}

.quick-search>[class*="col-"] {
	margin-bottom: 18px;
}

/* intro block */
.introh {
	justify-content: center;
}

.introh .perac {
	background: linear-gradient(180deg, var(--orc-panel), var(--orc-plum-2));
	border: 1px solid var(--orc-line);
	border-radius: 24px;
	padding: 30px clamp(18px, 4vw, 42px);
	width: 100%;
	align-items: center;
}

.bner-hedings {
	font-size: clamp(1.9rem, 1.3rem + 2vw, 2.8rem) !important;
	letter-spacing: .18em;
	color: #fff;
	margin-bottom: 0;
}

.big-heding {
	font-family: var(--orc-body);
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	font-size: .82rem;
	color: var(--orc-lilac);
}

.head5 {
	font-size: 1.15rem !important;
	color: var(--orc-gold);
}

.inft {
	color: var(--orc-soft) !important;
}

.container:has(> .row > .col-9 .introh) .row {
	align-items: center;
	margin-inline: 0;
	gap: 20px;
	flex-wrap: nowrap;
}

.container:has(> .row > .col-9 .introh) .col-9 {
	flex: 1 1 auto;
	max-width: none;
	padding: 0;
}

.ngirl {
	flex: 0 0 auto;
	width: 220px;
}

.ngirl .spos {
	position: relative;
}

.ngirl .vip-img img {
	width: 100%;
	border-radius: 110px 110px 18px 18px;
	border: 1px solid var(--orc-line-2);
	background: var(--orc-panel);
}

.ngirl .sf {
	position: absolute;
	right: -10px;
	top: -12px;
	width: 64px;
}

@media (max-width: 767px) {
	.container:has(> .row > .col-9 .introh) .row {
		flex-direction: column;
	}

	.ngirl {
		width: 180px;
	}
}

/* dark bands */
.pattern-black {
	background: linear-gradient(180deg, rgba(42, 25, 50, .8), rgba(34, 20, 40, .8));
	border-top: 1px solid var(--orc-line);
	border-bottom: 1px solid var(--orc-line);
}

section.pattern-black,
div.pattern-black {
	padding-block: clamp(26px, 4vw, 44px) !important;
}

.service.pattern-black,
.price-table-style-10.pattern-black {
	border: 1px solid var(--orc-line);
	padding-block: 0 !important;
}

.pattern-black>.container>h2:first-child,
.pattern-black>.container>h3.heading {
	text-align: center;
	margin-bottom: 20px;
}

.pattern-black img.rounded {
	border-radius: var(--orc-radius);
	display: block;
	margin: 12px auto 20px;
}

.blist {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 6px 0 18px;
}

.blist li {
	margin: 0;
	padding: 5px 14px;
	border-radius: 999px;
	background: rgba(122, 62, 230, .18);
	border: 1px solid var(--orc-line-2);
	color: var(--orc-ink);
	font-size: .92rem;
}

.olist {
	counter-reset: orc;
	list-style: none;
	padding: 0;
	display: grid;
	gap: 12px;
}

.olist>li {
	counter-increment: orc;
	position: relative;
	padding: 16px 18px 6px 62px;
	background: rgba(255, 255, 255, .03);
	border: 1px solid var(--orc-line);
	border-radius: 14px;
	font-weight: 700;
	color: #fff;
}

.olist>li::before {
	content: counter(orc);
	position: absolute;
	left: 16px;
	top: 14px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: var(--orc-head);
	font-weight: 400;
	background: linear-gradient(180deg, var(--orc-royal), var(--orc-royal-deep));
	color: #fff;
}

.olist>li p {
	font-weight: 400;
	color: var(--orc-soft);
	margin-top: 4px;
}

.unique-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 9px;
}

.unique-links li {
	margin: 0;
}

/* home text + side box */
section>.container>.row.p-3 {
	background: var(--orc-plum-2) !important;
	border: 1px solid var(--orc-line);
	border-radius: 24px;
	margin: clamp(28px, 4vw, 48px) 0 0;
	padding: clamp(12px, 3vw, 28px) !important;
}

.rightbox {
	background: var(--orc-panel);
	border: 1px solid var(--orc-line-2);
	border-radius: 18px;
	padding: 18px !important;
	position: sticky;
	top: calc(var(--orc-bar-h) + 16px);
}

.rightbox .heading {
	font-family: var(--orc-head);
	font-size: 1.3rem;
	margin-bottom: 12px;
	color: #fff;
}

.alltype ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.alltype li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.alltype li img {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	opacity: .8;
}

.alltype li a {
	display: block;
	width: 100%;
	border-radius: 12px;
}

.social-but {
	display: grid;
	gap: 14px;
	margin-top: 30px;
}

.social-but img {
	width: 100%;
	border-radius: var(--orc-radius);
	border: 1px solid var(--orc-line);
}

.blogbox {
	margin-top: clamp(28px, 4vw, 48px);
}

.blogbox>.container>h3,
.blogbox>.container>p:first-child {
	text-align: center;
	margin: 0 auto 20px;
}

.blogbox .row {
	align-items: stretch;
}

.cllbox {
	background: var(--orc-panel);
	border: 1px solid var(--orc-line);
	border-radius: 20px;
	flex-direction: column;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 20px !important;
	color: var(--orc-soft);
}

.cllbox p {
	color: var(--orc-soft);
}

.cllbox h3,
.cllbox h4 {
	font-size: 1.2rem !important;
	color: #fff;
}

.col-md-8-cus,
.col-md-4-cus {
	width: 100%;
	padding: 0 !important;
}

.col-md-4-cus img,
.cllbox>img {
	width: 100%;
	border-radius: 14px;
	margin: 10px 0;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.cllbox ul {
	padding-left: 0;
}

.pboxt {
	font-family: var(--orc-head);
	font-size: 1.6rem;
	color: #fff;
	margin-bottom: 10px;
}

.green p {
	margin-bottom: .4em;
}

.cllbox .btn {
	margin: 10px 0;
	align-self: flex-start;
}

.emial {
	width: 100%;
	word-break: break-word;
}

.tegline {
	margin: 18px 0 0;
	gap: 0;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--orc-line-2);
}

.colortxtbox {
	background: rgba(122, 62, 230, .16);
	padding: 16px 20px;
	flex: 1 1 auto;
	color: var(--orc-ink);
}

.tegline .btn {
	border-radius: 0;
	height: 100%;
	min-width: 140px;
}

@media (max-width: 600px) {
	.tegline {
		flex-direction: column;
	}

	.tegline .btn {
		width: 100%;
	}
}

/* testimonials */
.center {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(280px, 48%);
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 14px;
	scrollbar-width: thin;
	scrollbar-color: var(--orc-royal) transparent;
}

.center>div {
	scroll-snap-align: start;
	max-width: none !important;
	flex: none !important;
	background: var(--orc-panel);
	border: 1px solid var(--orc-line);
	border-radius: 20px;
	padding: 24px !important;
	position: relative;
}

.center>div::before {
	content: "\201C";
	position: absolute;
	top: 6px;
	left: 18px;
	font-family: var(--orc-head);
	font-size: 4rem;
	line-height: 1;
	color: rgba(207, 170, 247, .35);
}

.center img {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--orc-lilac);
	margin-bottom: 10px;
}

.center h4 {
	letter-spacing: .12em;
	margin-bottom: 8px;
}

.center h5 {
	font-family: var(--orc-body);
	color: var(--orc-lilac) !important;
	font-size: .9rem !important;
	font-weight: 700;
}

.center p {
	color: var(--orc-soft);
	font-size: .98rem;
}

@media (max-width: 600px) {
	.center {
		grid-auto-columns: 88%;
	}
}

/* service cards */
.service {
	height: calc(100% - 1rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border-radius: 20px !important;
	padding: 14px 14px 10px !important;
	background: var(--orc-panel) !important;
}

.service>a:first-child,
.service>img {
	display: block;
	width: 100%;
}

.service img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 14px;
}

.service .btn {
	margin: -24px 0 12px;
	position: relative;
	z-index: 1;
}

.service p {
	color: var(--orc-soft);
}

/* ---------- category / service pages ---------- */
.text .heading {
	margin-bottom: 10px;
}

.text .h5,
.text h2.h5,
.location_sub_head {
	font-family: var(--orc-body);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--orc-lilac);
	margin-bottom: 16px;
}

.text ul {
	list-style: none !important;
	padding: 0;
	display: grid;
	gap: 8px;
	margin-bottom: 20px;
}

.text ul li {
	position: relative;
	padding-left: 26px;
	margin: 0;
}

.text ul li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: .55em;
	width: 9px;
	height: 9px;
	background: var(--orc-lilac);
	transform: rotate(45deg);
	border-radius: 2px;
}

.text p {
	color: var(--orc-ink);
}

.about-img {
	margin: 0 auto 24px;
	max-width: 300px;
}

.about-img img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 150px 150px 18px 18px;
	border: 1px solid var(--orc-line-2);
	box-shadow: var(--orc-shadow);
}

.row.flex-row-reverse {
	align-items: center;
}

@media (max-width: 767px) {
	.row.flex-row-reverse {
		flex-direction: column-reverse;
	}
}

.pofile-girl {
	margin-block: clamp(26px, 4vw, 44px);
}

.container .pofile-girl,
.container-fluid.pofile-girl {
	padding-inline: 0;
}

.pofile-girl .row,
.locations-name {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
	margin: 0;
}

.pofile-girl .row>.profile-img,
.locations-name>.profile-img {
	max-width: none;
	width: auto;
	padding: 0;
	margin: 0;
}

@media (max-width: 480px) {

	.pofile-girl .row,
	.locations-name {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.profile-img .btn {
		font-size: .88rem;
		padding: 8px 10px;
	}
}

.white-wrapper {
	margin-top: clamp(26px, 4vw, 44px);
}

.wel-blok {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 26px;
	background: var(--orc-plum-2);
	border: 1px solid var(--orc-line);
	border-radius: 24px;
	padding: clamp(18px, 3vw, 32px);
}

.wel-blok .i-wel img {
	width: 100%;
	border-radius: 16px;
	margin-bottom: 18px;
	aspect-ratio: 376 / 216;
	object-fit: cover;
}

.wel-blok .i-wel .btn {
	margin-top: 6px;
}

.wel-blok .i-bg ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 12px;
}

.wel-blok .i-bg li {
	margin: 0;
}

.wel-blok .i-bg a {
	display: block;
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--orc-line);
	text-decoration: none;
}

.wel-blok .i-bg img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
}

.wel-blok .i-bg span {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 22px 8px 7px;
	text-align: center;
	color: #fff;
	font-family: var(--orc-head);
	background: linear-gradient(180deg, transparent, rgba(20, 11, 24, .92));
}

@media (max-width: 767px) {
	.wel-blok {
		grid-template-columns: 1fr;
	}
}

/* ---------- location pages ---------- */
.page-content {
	margin-top: 10px;
}

.full-text-grid,
.boxed-boxed-contact {
	width: 100%;
}

.creating-sec.box-group {
	background: var(--orc-plum-2);
	border: 1px solid var(--orc-line);
	border-radius: 24px;
	padding: clamp(16px, 3vw, 30px) calc(clamp(16px, 3vw, 30px) - 12px);
	margin: 18px 0 30px;
	align-items: center;
}

.creating-sec.box-group .creating-sec.box-group {
	border: 0;
	padding: 0;
	margin: 0;
	background: none;
}

.creating-sec .col-md-3 img,
.new_loc img,
.span_1_of_3 img {
	width: 100%;
	border-radius: 18px;
	border: 1px solid var(--orc-line-2);
	box-shadow: var(--orc-shadow);
}

.bottom-grid1 h1 {
	margin-bottom: 8px !important;
}

.bottom-grid1 .location_sub_head {
	text-align: center;
}

.loc_box {
	background: var(--orc-plum-2);
	border: 1px solid var(--orc-line);
	border-radius: 20px;
	padding: 24px;
}

.new_loc {
	margin: 10px 0 18px;
}

.img-content>.full-text-grid>div.container {
	max-width: 900px;
}

.full-text-grid>h2 {
	text-align: center;
	margin: 30px auto 20px;
}

.span_1_of_3,
.span_2_of_3 {
	flex: 1 1 280px;
}

@media (min-width: 768px) {
	.span_1_of_3 {
		max-width: 34%;
	}
}

.boxed-boxed-contact .creating-sec.box-group:has(.span_2_of_3) {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

/* area list page cards */
.pofile-girl .container>.profile-img,
.escorts-locations-grid {
	display: block;
}

.pofile-girl>.double-row>.container:has(> .profile-img) {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 18px;
}

.pofile-girl>.double-row>.container>.profile-img {
	max-width: none;
	padding: 0;
	margin: 0;
}

.pofile-girl>.double-row>.container>.profile-img>a {
	display: block;
	position: relative;
	border-radius: var(--orc-radius);
	overflow: hidden;
	border: 1px solid var(--orc-line);
	background: var(--orc-panel);
	text-decoration: none;
	box-shadow: var(--orc-shadow);
	transition: transform .25s, border-color .25s;
}

.pofile-girl>.double-row>.container>.profile-img>a:hover {
	transform: translateY(-3px);
	border-color: var(--orc-line-2);
}

.pofile-girl>.double-row>.container>.profile-img img {
	display: block;
	width: 100%;
	aspect-ratio: 263 / 246;
	object-fit: cover;
	margin: 0;
	border-radius: 0;
}

.pofile-girl>.double-row>.container>.profile-img h2 {
	margin: 0;
	padding: 12px 14px 14px;
	text-align: left !important;
	font-size: 1.2rem !important;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.pofile-girl>.double-row>.container>.profile-img h2::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--orc-lilac);
	border-right: 2px solid var(--orc-lilac);
	transform: rotate(45deg);
}

@media (max-width: 480px) {
	.pofile-girl>.double-row>.container:has(> .profile-img) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.pofile-girl>.double-row>.container>.profile-img h2 {
		font-size: 1rem !important;
		padding: 10px;
	}
}

/* ---------- profile pages ---------- */
.profile_title {
	text-align: center;
	margin: 20px auto 10px !important;
	padding-inline: 20px;
}

.profile_title_new {
	font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.4rem);
	max-width: 26ch;
	margin: 0 auto;
}

.fullbg1 .trick {
	max-width: var(--orc-wrap);
	margin: 0 auto;
	padding-inline: 20px;
}

.txthed {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 18px;
	justify-content: space-between;
	padding: 16px 0 18px;
	border-bottom: 1px solid var(--orc-line);
	margin-bottom: 24px;
}

.txthed>h2 {
	margin: 0;
	font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.5rem);
	color: #fff;
}

.txthed>.clr {
	display: none;
}

.bokbtn {
	margin-left: auto;
}

.bokbtn a {
	color: #fff !important;
}

.pronav {
	list-style: none;
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.pronav li {
	margin: 0;
}

.pronav a {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--orc-line-2);
	background: var(--orc-panel);
}

.pronav a:hover {
	border-color: var(--orc-lilac);
}

.pronav img {
	width: 22px;
	height: 22px;
	filter: grayscale(1) brightness(1.7);
}

.container-wraper {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: 24px;
	align-items: start;
}

.esfrstimg {
	order: -1;
}

.proboxdiv {
	background: var(--orc-plum-2);
	border: 1px solid var(--orc-line);
	border-radius: 22px;
	padding: 20px;
	margin-bottom: 24px;
}

.container-wraper>.proboxdiv {
	margin-bottom: 0;
}

.hedtxtnn h2,
.profile_right>h2,
.topthpro>h2 {
	font-size: 1.35rem !important;
	color: #fff !important;
	margin-bottom: 12px;
}

.topthpro>h2:last-child {
	font-family: var(--orc-body);
	font-size: .82rem !important;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--orc-lilac) !important;
	text-align: center;
	margin: 12px 0 0;
}

.topthpro .content-slider {
	border-radius: 16px;
	overflow-x: auto;
	gap: 0;
}

.topthpro .content-slider .item img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 16px;
}

.customNavigationSlider2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 12px;
}

.customNavigationSlider2 a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--orc-line-2);
	background: var(--orc-panel);
	position: relative;
}

.customNavigationSlider2 a::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 9px;
	height: 9px;
	border-top: 2px solid var(--orc-lilac-2);
	border-right: 2px solid var(--orc-lilac-2);
	transform: translateX(-2px) rotate(45deg);
}

.customNavigationSlider2 .btn-prev-2::after {
	transform: translateX(2px) rotate(-135deg);
}

.customNavigationSlider2 i {
	display: none;
}

.owl-dots-contain {
	display: flex;
	gap: 6px;
}

.orc-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--orc-line-2);
}

.orc-dot.is-on {
	background: var(--orc-lilac);
	width: 22px;
	border-radius: 6px;
}

.profile_right_stats {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
	margin: 0 !important;
	border-bottom: 1px dashed var(--orc-line-2);
}

.profile_right_stats:last-child {
	border-bottom: 0;
}

.profile_right_stats p {
	margin: 0;
}

.profile_right_stats p:first-child {
	color: var(--orc-mute);
	font-size: .92rem;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.profile_right_stats p:last-child {
	color: #fff;
	font-weight: 600;
	text-align: right;
}

.profile_right {
	padding: 0 !important;
}

.ratediv table {
	font-size: 1rem;
}

.ratediv td {
	padding: 12px 10px;
	border-bottom: 1px solid var(--orc-line);
	width: auto !important;
}

.ratediv tr:first-child td {
	color: var(--orc-lilac);
	font-size: .82rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	border-bottom-color: var(--orc-line-2);
}

.ratediv tr:first-child strong {
	color: inherit;
	font-weight: 700;
}

.ratediv td:not(:first-child) {
	text-align: right;
	font-weight: 700;
	color: var(--orc-gold);
	white-space: nowrap;
}

.ratediv tr:last-child td[colspan] {
	display: none;
}

.review-btn ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.review-btn li {
	margin: 0;
}

.ditsect>.proboxdiv,
.ditsect>.container-wraper+.proboxdiv {
	margin-top: 24px;
}

.ditsect {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 24px;
}

.ditsect>.container-wraper {
	grid-column: 1 / -1;
}

.ditsect>.proboxdiv,
.ditsect>.container-wraper+.proboxdiv {
	margin: 0;
}

.ditsect>.clr {
	display: none;
}

@media (max-width: 860px) {

	.container-wraper,
	.ditsect {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.txthed {
		justify-content: center;
		text-align: center;
	}

	.txthed>h2 {
		width: 100%;
	}

	.bokbtn {
		margin-left: 0;
	}
}

/* ---------- price page ---------- */
.price-table-style-10 {
	position: relative;
	margin-bottom: 24px;
	border-radius: 24px;
	overflow: hidden;
	padding: 0 0 26px !important;
	background: linear-gradient(180deg, var(--orc-panel-2), var(--orc-plum-2)) !important;
	transition: transform .25s, box-shadow .25s;
}

.price-table-style-10:hover {
	transform: translateY(-4px);
	box-shadow: 0 26px 50px -26px rgba(122, 62, 230, .8);
}

.price-title {
	padding: 26px 20px 10px;
}

.price-title h2 {
	font-size: 1.5rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: 0;
}

.price-icon {
	width: 58px;
	height: 58px;
	margin: 6px auto 12px;
	border-radius: 50% 50% 12px 12px;
	border: 1px solid var(--orc-line-2);
	background: rgba(122, 62, 230, .2);
	position: relative;
}

.price-icon::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 14px;
	height: 14px;
	background: var(--orc-lilac);
	transform: rotate(45deg);
	border-radius: 3px;
}

.price-icon i {
	display: none;
}

.price-text h2 {
	font-size: clamp(2rem, 1.6rem + 1.2vw, 2.6rem);
	color: var(--orc-gold);
	margin: 0 0 6px;
}

.price-list ul:empty {
	display: none;
}

.price-table-style-10 .primary-button {
	margin-top: 10px;
	min-width: 200px;
}

.row.justify-content-md-center {
	margin-top: 26px;
}

/* ---------- contact ---------- */
.main-contents .container {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	margin-top: 10px;
}

.block_wrapper .heading {
	margin-top: 10px !important;
}

.block_wrapper>.btn {
	margin: 4px 8px 12px 0 !important;
	word-break: break-all;
}

.main-contents form {
	background: var(--orc-plum-2);
	border: 1px solid var(--orc-line-2);
	border-radius: 24px;
	padding: clamp(18px, 3vw, 30px);
	margin-top: 10px;
}

.form-group {
	margin-bottom: 14px;
}

.form-group label {
	display: block;
	font-size: .9rem;
	font-weight: 600;
	color: var(--orc-soft);
	margin-bottom: 6px;
}

.form-control {
	width: 100%;
	min-height: 48px;
	padding: 11px 14px;
	border-radius: 12px;
	border: 1px solid var(--orc-line-2);
	background: rgba(255, 255, 255, .04);
	color: #fff;
}

.form-control::placeholder {
	color: var(--orc-mute);
}

.form-control:focus {
	border-color: var(--orc-lilac);
	outline: none;
	box-shadow: 0 0 0 3px rgba(122, 62, 230, .35);
}

.booking-btn {
	width: 100%;
	text-transform: capitalize;
	background: linear-gradient(180deg, var(--orc-royal), var(--orc-royal-deep)) !important;
	color: #fff !important;
	border: 0 !important;
}

@media (max-width: 860px) {
	.main-contents .container {
		grid-template-columns: 1fr;
	}
}

/* ---------- videos ---------- */
.vidc {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--orc-line-2);
	background: #000;
	box-shadow: var(--orc-shadow);
}

.vidc video {
	display: block;
	width: 100%;
	height: auto;
}

/* ---------- blog ---------- */
.blog-d {
	max-width: 820px;
	margin-top: 24px;
	background: var(--orc-plum-2);
	border: 1px solid var(--orc-line);
	border-radius: 24px;
	padding: 18px 18px 26px;
}

.blog-image {
	width: 100%;
	border-radius: 16px;
	margin-bottom: 18px;
}

.blog-title {
	font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
	padding-inline: 6px;
}

.blog-content,
.blog-date {
	padding-inline: 6px;
	color: var(--orc-soft);
}

.blog-d .mybtn {
	margin-left: 6px;
}

.blog-date {
	font-size: .9rem;
	color: var(--orc-mute);
}

/* ---------- long text pages (about, service, call girls, post, dubai) ---------- */
.orc-p-about .ljbox,
.orc-p-about .ljr-boder-btm {
	border-color: var(--orc-line);
}

.ljr-boder-btm {
	border-bottom: 1px solid var(--orc-line);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.ljr-boder-btm .col-md-5 img {
	border-radius: 20px;
	object-fit: cover;
}

.bg1.slect {
	margin: 30px 0;
	padding-block: 30px;
	background: linear-gradient(180deg, rgba(42, 25, 50, .8), rgba(34, 20, 40, .8));
	border-block: 1px solid var(--orc-line);
}

.orc-p-post .feature_content,
.orc-p-callgirls .feature_content {
	max-width: 860px;
}

.feature_content img.rounded {
	display: block;
	border-radius: 18px;
	margin: 14px 0 10px;
	border: 1px solid var(--orc-line);
}

.feature_content h2,
.feature_content h3 {
	margin-top: 1.4em;
}

.orc-p-dubai .container>div[style*="overflow"] {
	border-radius: 18px;
	margin-top: 20px;
}

.orc-p-dubai .container h1 {
	margin-top: 18px;
}

.orc-p-dubai .container {
	max-width: 900px;
}

.orc-p-callgirls div[style*="max-width: 1140px"] {
	max-width: 900px !important;
}

.orc-p-service .service .btn {
	margin: 12px 0;
}

.orc-p-service .service img {
	aspect-ratio: auto;
}

.title-2,
.title-3 {
	text-align: center;
}

/* scroll to top anchor kept hidden */
#scroll {
	display: none !important;
}

/* ---------- 404 / 403 ---------- */
.orc-lost {
	min-height: 70vh;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 60px 20px;
}

.orc-lost h1 {
	font-size: clamp(4rem, 3rem + 6vw, 7rem);
	margin: 0;
	color: var(--orc-lilac-2);
	line-height: 1;
}

.orc-lost h2 {
	font-family: var(--orc-body);
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--orc-soft);
	margin: 10px auto 26px;
}

.orc-lost p {
	color: var(--orc-soft);
	margin-inline: auto;
}

.orc-lost .orc-lost__btns {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.orc-lost button,
.orc-lost a {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid var(--orc-line-2);
	background: transparent;
	color: var(--orc-ink);
}

.orc-lost a {
	border: 0;
	color: #fff;
	background: linear-gradient(180deg, var(--orc-royal), var(--orc-royal-deep));
}

.orc-lost img {
	width: min(320px, 70vw);
	margin: 0 auto 20px;
	display: block;
}

/* ---------- fine tuning ---------- */
.gallery-main+.container {
	margin-top: clamp(2.2rem, 1.6rem + 2vw, 3.4rem);
}

.blogbox>.container>p:first-child,
.blogbox>.container>h3:first-child {
	font-family: var(--orc-head);
	font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem);
	color: var(--orc-ink);
}

.emial h3 {
	margin-top: 18px;
}

.center p {
	text-align: left;
}

.center h4,
.center h5 {
	text-align: center;
}

@media (min-width: 900px) {
	.center {
		grid-auto-flow: row;
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
		overflow: visible;
	}
}

@media (max-width: 600px) {
	section>.container>.row.p-3 {
		padding: 6px !important;
		border-radius: 18px;
	}

	.olist>li {
		padding: 14px 14px 4px 52px;
	}

	.olist>li::before {
		left: 12px;
	}

	.rightbox {
		position: static;
	}
}

.row>.main_feature {
	width: 100%;
	flex: 0 0 100%;
}

a strong,
a b {
	color: inherit;
}

.thumb .girl>.content-slider:first-child~h2,
.thumb .girl>.content-slider:first-child~h3 {
	position: absolute !important;
	top: auto !important;
	left: 0 !important;
	right: 0;
	bottom: 0;
	z-index: 2;
	margin: 0;
	padding: 48px 14px 12px !important;
	border: 0 !important;
	border-radius: 0 !important;
	font-family: var(--orc-head) !important;
	font-size: 1.28rem !important;
	font-weight: 400 !important;
	letter-spacing: .01em !important;
	text-transform: none !important;
	color: #fff !important;
	background: linear-gradient(180deg, transparent, rgba(20, 11, 24, .92) 70%) !important;
	pointer-events: none;
}

section.container>.col>.title,
.col.xs-12>.title {
	font-family: var(--orc-head);
	font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem);
	color: var(--orc-ink);
	margin: 26px 0 18px;
}

input.btn {
	margin-bottom: 16px;
}

.gallery-holder__text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 46px 14px 12px;
	background: linear-gradient(180deg, transparent, rgba(20, 11, 24, .94) 60%);
	pointer-events: none;
	line-height: 1.35;
}

.gallery-holder__name {
	font-family: var(--orc-head);
	font-size: 1.25rem;
	color: #fff;
}

.gallery-holder__tagline {
	color: var(--orc-gold);
	font-weight: 700;
	font-size: .92rem;
}

.gallery-holder__location {
	color: var(--orc-soft);
	font-size: .88rem;
}

.orc-p-dubai div[style*="width:468px"] {
	max-width: 100% !important;
	border-radius: 12px;
}

.orc-p-dubai div[style*="width:468px"] img {
	max-width: 100%;
}

@media (max-width: 860px) {
	.esfrstimg .topthpro {
		max-width: 460px;
		margin-inline: auto;
	}
}
