.ppbm {
	--ppbm-ink: #f7fbf8;
	--ppbm-muted: rgba(238, 248, 243, .7);
	--ppbm-panel: rgba(18, 62, 61, .72);
	--ppbm-line: rgb(239, 245, 243);
	--ppbm-accent: #efb321;
	--ppbm-accent-bright: #fcbf10;
	--ppbm-deep: #123e3d;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: var(--ppbm-ink);
	/* background: #47717A;
	background: -webkit-linear-gradient(182deg, rgba(71, 113, 122, 1) 0%, rgba(133, 174, 181, 1) 100%);
	background: -moz-linear-gradient(182deg, rgba(71, 113, 122, 1) 0%, rgba(133, 174, 181, 1) 100%);
	background: linear-gradient(182deg, rgba(71, 113, 122, 1) 0%, rgba(133, 174, 181, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#47717A", endColorstr="#85AEB5", GradientType=0); */
	/* background-color: #47717a; */
	/* background-image:
		radial-gradient(circle at 50% 38%,
			rgba(198, 229, 221, 0.2),
			transparent 34%),
		linear-gradient(182deg,
			#47717a 0%,
			#85aeb5 100%); */
	/* background:
		radial-gradient(circle at 50% 38%, rgba(198, 229, 221, .2), transparent 34%),
		linear-gradient(145deg, #386e70 0%, #4d8384 54%, #326768 100%); */
	font-family: 'DiodrumArabic', system-ui, -apple-system, BlinkMacSystemFont,
		"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
		sans-serif;
	padding: clamp(62px, 5vw, 82px) 24px clamp(48px, 5vw, 76px);
}
.ppbm[dir="rtl"] {
	font-family: 'DiodrumArabic', system-ui, -apple-system, BlinkMacSystemFont,
		"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
		sans-serif;
}
.ppbm *,
.ppbm *::before,
.ppbm *::after {
	box-sizing: border-box;
}
.ppbm__ambient {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: .36;
	/*background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);*/
	/*background-size: 72px 72px;*/
	/*mask-image: radial-gradient(circle at 50% 45%, black, transparent 75%);*/
}
.ppbm__ambient::before,
.ppbm__ambient::after {
	content: "";
	position: absolute;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 50%;
	width: 640px;
	aspect-ratio: 1;
	left: 50%;
	top: 48%;
	transform: translate(-50%, -50%);
}
.ppbm__ambient::after {
	width: 860px;
	opacity: .5;
}
.ppbm__inner {
	width: min(1600px, 100%);
	margin: auto;
}
.ppbm__header {
	text-align: center;
	max-width: 1240px;
	margin: 0 auto clamp(30px, 3vw, 48px);
	animation: ppbm-header-in .7s ease both;
}
@keyframes ppbm-header-in {
	from {
		opacity: 0;
		transform: translateY(18px)
	}
	to {
		opacity: 1;
		transform: none
	}
}
.ppbm__header h2 {
	color: var(--ppbm-ink);
	font-size: clamp(29px, 3vw, 46px);
	line-height: 1.1;
	margin: 0;
	font-weight: 700;
	white-space: nowrap;
}
.ppbm[dir="rtl"] .ppbm__header h2 {
	letter-spacing: -.02em;
	line-height: 1.35;
}
.ppbm__header>p:last-child {
	color: var(--ppbm-muted);
	font-size: clamp(15px, 1.25vw, 18px);
	line-height: 1.75;
	max-width: 780px;
	margin: 20px auto 0;
}
.ppbm__experience {
	position: relative;
	display: block;
}
.ppbm__map-column {
	min-width: 0;
}
.ppbm__stage {
	position: relative;
	min-height: 780px;
	opacity: 0;
	transform: scale(.98);
	transition: opacity .8s .14s ease, transform .8s .14s ease;
}
.ppbm.is-ready .ppbm__stage {
	opacity: 1;
	transform: none;
}
.ppbm__body-wrap {
	position: absolute;
	width: min(30%, 390px);
	aspect-ratio: .46;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	overflow: visible;
}
.ppbm__body {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 22px 32px rgba(4, 35, 34, .35));
	user-select: none;
}
.ppbm__connectors {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
}
.ppbm__connector-line {
	fill: none;
	stroke: var(--ppbm-line);
	stroke-width: 1.5;
	stroke-dasharray: 2 5;
	stroke-linecap: round;
	transition: stroke .3s ease, stroke-width .3s ease, filter .3s ease;
}
.ppbm__connector-line.is-active {
	stroke: var(--ppbm-accent-bright);
	stroke-width: 2;
	filter: drop-shadow(0 0 5px rgba(255, 208, 85, .55));
}
.ppbm__connector-hit {
	fill: none;
	stroke: transparent;
	stroke-width: 18;
	pointer-events: stroke;
	cursor: pointer;
}
.ppbm__point {
	position: absolute;
	left: var(--point-x);
	top: var(--point-y);
	z-index: 3;
	width: 0;
	height: 0;
	border: 0;
	padding: 0;
	background: none;
	color: inherit;
	font: inherit;
	cursor: pointer;
}
.ppbm__marker {
	position: absolute;
	width: 19px;
	height: 19px;
	left: -9.5px;
	top: -9.5px;
	border: 4px solid white;
	border-radius: 50%;
	background: var(--ppbm-deep);
	box-shadow: 0 0 0 1px rgba(9, 50, 49, .5), 0 2px 12px rgba(3, 28, 27, .4);
	transition: background .25s ease, transform .25s ease;
}
.ppbm__marker::before,
.ppbm__marker::after {
	content: "";
	position: absolute;
	inset: -9px;
	border: 1px solid var(--ppbm-accent-bright);
	border-radius: 50%;
	opacity: 0;
	transform: scale(.45);
}
.ppbm__point.is-active .ppbm__marker {
	background: var(--ppbm-accent);
	transform: scale(1.12);
}
.ppbm__point.is-active .ppbm__marker::before {
	animation: ppbm-pulse 2s ease-out infinite;
}
.ppbm__point.is-active .ppbm__marker::after {
	animation: ppbm-pulse 2s .65s ease-out infinite;
}
.ppbm__marker>span {
	position: absolute;
	inset: -18px;
	border-radius: 50%;
}
@keyframes ppbm-pulse {
	0% {
		opacity: .9;
		transform: scale(.4)
	}
	75%,
	100% {
		opacity: 0;
		transform: scale(1.45)
	}
}
.ppbm__label {
	position: absolute;
	top: 50%;
	display: flex;
	align-items: center;
	gap: 14px;
	width: max-content;
	max-width: 230px;
	transform: translate(var(--label-x-shift, 0px), calc(-50% + var(--label-shift, 0px)));
	color: rgba(248, 252, 250, .8);
	transition: color .25s ease;
}
.ppbm__point--left .ppbm__label {
	right: clamp(135px, 10vw, 155px);
	flex-direction: row-reverse;
	text-align: right;
}
.ppbm__point--right .ppbm__label {
	left: clamp(230px, 18vw, 280px);
	text-align: left;
}
.ppbm[dir="rtl"] .ppbm__label {
	/* Keep the icon/text layout physical while the text itself remains RTL. */
	direction: ltr;
}
.ppbm[dir="rtl"] .ppbm__point--left .ppbm__label {
	text-align: right;
}
.ppbm[dir="rtl"] .ppbm__point--right .ppbm__label {
	text-align: left;
}
.ppbm[dir="rtl"] .ppbm__label strong {
	direction: rtl;
	unicode-bidi: plaintext;
}
.ppbm__label strong {
	font-size: clamp(14px, 1.35vw, 18px);
	font-weight: 650;
	line-height: 1.25;
}
.ppbm__icon {
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 50%;
	background: rgba(12, 53, 52, .42);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
	transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.ppbm__icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
.ppbm__icon>span {
	font-size: 18px;
	font-weight: 700;
	color: rgba(255, 255, 255, .72);
}
.ppbm__point:hover .ppbm__label,
.ppbm__point:focus-visible .ppbm__label,
.ppbm__point.is-active .ppbm__label {
	color: white;
}
.ppbm__point:hover .ppbm__icon,
.ppbm__point:focus-visible .ppbm__icon,
.ppbm__point.is-active .ppbm__icon {
	background: var(--ppbm-accent);
	border-color: var(--ppbm-accent-bright);
	transform: scale(1.07);
}
.ppbm__point.is-active .ppbm__icon>span {
	color: var(--ppbm-deep);
}
.ppbm__point:focus-visible .ppbm__marker {
	outline: 3px solid var(--ppbm-accent-bright);
	outline-offset: 5px;
}
.ppbm__detail {
	position: absolute;
	z-index: 6;
	left: 0;
	right: auto;
	top: 35px;
	width: 300px;
	overflow: hidden;
	min-height: 0;
	padding: 30px 28px 28px;
	border: 2px solid rgb(255 255 255 / 50%);
	border-radius: 25px;
	background: linear-gradient(145deg, rgb(104 145 153), rgb(105 146 154));
	box-shadow: 0 26px 70px rgba(3, 29, 28, .14), inset 0 1px rgba(255, 255, 255, .1);
	backdrop-filter: blur(16px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-16px) scale(.985);
	transform-origin: left center;
	transition: opacity .24s ease, transform .3s cubic-bezier(.2, .8, .2, 1), visibility 0s .3s;
}
.ppbm__detail.is-side-right {
	left: auto;
	right: 0;
	transform: translateX(16px) scale(.985);
	transform-origin: right center;
}
.ppbm__detail.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	transition-delay: 0s;
}
.ppbm__detail-close {
	display: none;
}
.ppbm__detail::before {
	content: "";
	position: absolute;
	width: 180px;
	aspect-ratio: 1;
	right: -80px;
	bottom: -90px;
	background: radial-gradient(circle, var(--ppbm-accent), transparent 65%);
	opacity: .12;
}
.ppbm__detail-index {
	display: none !important;
	color: var(--ppbm-accent-bright);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .16em;
	margin-bottom: 16px;
}
.ppbm__detail h3 {
	color: white;
	font-size: 24px;
	line-height: 1.25;
	letter-spacing: -.025em;
	margin: 0 0 12px;
}
.ppbm__detail>p {
	color: var(--ppbm-muted);
	font-size: 13px;
	line-height: 1.68;
	margin: 0 0 20px;
}
.ppbm__services ul li::before {
	position: absolute;
	content: '';
	background: url(https://alsobh.com/wp-content/uploads/2026/07/bule.svg);
	background-position: center center;
	height: 12px;
	width: 12px;
	left: 0;
	top: 3px;
}
.ppbm__services {
	border-top: 1px dashed rgb(255 255 255 / 69%);
	padding-top: 18px;
}
.ppbm__services h4 {
	color: white;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin: 0 0 12px;
}
.ppbm[dir="rtl"] .ppbm__services h4 {
	letter-spacing: 0;
}
.ppbm__services ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 7px;
}
.ppbm__services li {
	position: relative;
	color: rgba(255, 255, 255, .86);
	font-size: 13px;
	padding-inline-start: 18px;
}
.ppbm__services li::before {
	content: "";
	position: absolute;
	inset-inline-start: 1px;
	top: .62em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ppbm-accent);
}
.ppbm__detail-link {
	display: none;
}
.ppbm__detail.is-changing h3,
.ppbm__detail.is-changing>p,
.ppbm__detail.is-changing .ppbm__services {
	animation: ppbm-detail-in .42s ease both;
}
.ppbm__detail.is-changing>p {
	animation-delay: .04s;
}
.ppbm__detail.is-changing .ppbm__services {
	animation-delay: .08s;
}
@keyframes ppbm-detail-in {
	from {
		opacity: 0;
		transform: translateY(8px)
	}
	to {
		opacity: 1;
		transform: none
	}
}
.ppbm__mobile-points {
	display: none;
}
.ppbm__footer {
	display: block;
	justify-content: center;
	align-items: center;
	/* gap: clamp(18px, 2vw, 34px); */
	margin-top: 0;
}
.ppbm__cta {
	grid-column: 2;
	margin: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 15px 14px 28px;
	border-radius: 22px;
	background: rgb(67 110 118 / 67%);
	box-shadow: 0 16px 45px rgba(5, 33, 32, .18);
}
/* .ppbm__emergency {
	grid-column: 3;
} */
.ppbm[dir="rtl"] .ppbm__cta {
	padding: 14px 28px 14px 15px;
}
.ppbm__cta p {
	color: white;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	margin: 0;
}
.ppbm__cta a {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 54px;
	padding: 0 23px;
	border-radius: 15px;
	color: #123b3a;
	background: var(--ppbm-accent-bright);
	box-shadow: 0 8px 22px rgba(239, 179, 33, .18);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.ppbm__cta a:hover {
	color: #123b3a;
	background: white;
	transform: translateY(-2px);
	box-shadow: 0 11px 28px rgba(239, 179, 33, .25);
}
.ppbm__cta a span {
	font-size: 18px;
}
.ppbm__emergency {
	display: flex;
	gap: 14px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 22px;
	background: rgb(31 81 78 / 20%);
}
.ppbm__emergency>span {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	color: var(--ppbm-deep);
	background: var(--ppbm-accent-bright);
	font-weight: 900;
}
.ppbm__emergency h3 {
	color: white;
	font-size: 15px;
	line-height: 1.4;
	margin: 2px 0 8px;
}
.ppbm__emergency p {
	color: var(--ppbm-muted);
	font-size: 12px;
	line-height: 1.65;
	margin: 0;
}
.ppbm-editor-preview {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 28px;
	border: 1px solid #d7dfdc;
	border-radius: 8px;
	background: #f1f6f4;
}
.ppbm-editor-preview .dashicons {
	width: 42px;
	height: 42px;
	font-size: 42px;
	color: #23635f;
}
.ppbm-editor-preview p {
	margin: 5px 0 0;
	color: #53605c;
	font-size: 13px;
}
p.em-txty a {
	color: #fcbf10;
}
p.em-txty {
	color: #fff;
}
@media (max-width:1300px) {
	.ppbm__footer {
		/* grid-template-columns: minmax(0, 1fr) 310px;
		gap: 20px; */
	}
	.ppbm__cta,
	.ppbm__emergency {
		grid-column: auto;
	}
	.ppbm__stage {
		min-height: 740px;
	}
	.ppbm__detail {
		width: 270px;
		padding: 25px 23px;
	}
	.ppbm__point--left .ppbm__label {
		right: clamp(120px, 10vw, 145px);
	}
	.ppbm__point--right .ppbm__label {
		left: clamp(185px, 16vw, 215px);
	}
	.ppbm__label {
		max-width: 180px;
	}
	.ppbm__icon {
		width: 48px;
		height: 48px;
		flex-basis: 48px;
	}
}
@media (max-width:1100px) {
	.ppbm {
		padding: clamp(52px, 8vw, 76px) 18px 58px;
	}
	.ppbm__header {
		max-width: 720px;
		margin-bottom: 24px;
	}
	.ppbm__header h2 {
		font-size: clamp(34px, 6vw, 48px);
		line-height: 1.16;
		white-space: normal;
	}
	.ppbm__header>p:last-child {
		max-width: 640px;
		margin-top: 14px;
		font-size: 15px;
		line-height: 1.65;
	}
	.ppbm__footer {
		/* grid-template-columns: 1fr; */
	}
	.ppbm__stage {
		height: clamp(520px, 72vw, 620px);
		min-height: 0;
	}
	.ppbm__body-wrap {
		width: min(56vw, 270px);
	}
	.ppbm__label,
	.ppbm__connectors {
		display: none;
	}
	.ppbm__point {
		touch-action: manipulation;
	}
	.ppbm__marker {
		width: 22px;
		height: 22px;
		left: -11px;
		top: -11px;
		border-width: 4px;
	}
	.ppbm__marker>span {
		inset: -18px;
	}
	.ppbm__point .ppbm__marker::before {
		animation: ppbm-pulse 2.8s ease-out infinite;
	}
	.ppbm__point:nth-of-type(3n) .ppbm__marker::before {
		animation-delay: .55s;
	}
	.ppbm__point:nth-of-type(3n + 1) .ppbm__marker::before {
		animation-delay: 1.1s;
	}
	.ppbm__detail {
		display: none;
		position: relative;
		inset: auto;
		top: auto;
		width: 100%;
		min-height: 0;
		margin-top: 4px;
		padding: 34px 28px 30px;
		border-radius: 24px;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.ppbm__detail.is-side-right {
		inset: auto;
		transform: translateY(12px);
	}
	.ppbm__detail.is-visible {
		display: block;
		transform: none;
		animation: ppbm-mobile-card-in .38s cubic-bezier(.2, .8, .2, 1) both;
	}
	.ppbm__detail-close {
		position: absolute;
		z-index: 2;
		inset-inline-end: 16px;
		top: 16px;
		display: grid;
		place-items: center;
		width: 38px;
		height: 38px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, .2);
		border-radius: 50%;
		color: white;
		background: rgba(9, 52, 50, .34);
		font: 400 27px/1 inherit;
		cursor: pointer;
		touch-action: manipulation;
	}
	.ppbm__detail-close:focus-visible {
		outline: 3px solid var(--ppbm-accent-bright);
		outline-offset: 3px;
	}
	.ppbm__detail-index {
		padding-inline-end: 48px;
	}
	.ppbm__detail-link:not([hidden]) {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		min-height: 48px;
		margin-top: 24px;
		padding: 11px 20px;
		border-radius: 14px;
		color: var(--ppbm-deep);
		background: var(--ppbm-accent-bright);
		font-size: 14px;
		font-weight: 800;
		text-decoration: none;
		box-shadow: 0 8px 22px rgba(239, 179, 33, .18);
		touch-action: manipulation;
	}
	.ppbm__detail-link:focus-visible {
		outline: 3px solid white;
		outline-offset: 3px;
	}
	.ppbm__mobile-points {
		display: flex;
		gap: 8px;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin-inline: -18px;
		padding: 8px 18px 22px;
		scroll-padding-inline: 18px;
		scroll-snap-type: x mandatory;
		-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
		mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
	}
	.ppbm__mobile-points::-webkit-scrollbar {
		display: none;
	}
	.ppbm__mobile-points button {
		flex: 0 0 auto;
		min-height: 44px;
		scroll-snap-align: center;
		border: 1px solid rgba(255, 255, 255, .2);
		border-radius: 999px;
		color: rgba(255, 255, 255, .82);
		background: rgba(10, 48, 47, .42);
		padding: 11px 17px;
		font: 650 13px/1.2 inherit;
		box-shadow: inset 0 1px rgba(255, 255, 255, .05);
		touch-action: manipulation;
		transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
	}
	.ppbm__mobile-points button.is-active {
		color: #143f3f;
		border-color: var(--ppbm-accent-bright);
		background: var(--ppbm-accent-bright);
		transform: translateY(-1px);
	}
	.ppbm__mobile-points button:focus-visible {
		outline: 3px solid white;
		outline-offset: 2px;
	}
	.ppbm__footer {
		gap: 14px;
		margin-top: 28px;
	}
	.ppbm__cta,
	.ppbm__emergency {
		width: 100%;
		order: initial;
	}
	.ppbm__cta {
		padding: 17px 18px 17px 22px;
	}
	.ppbm__emergency {
		padding: 20px;
	}
}
@keyframes ppbm-mobile-card-in {
	from {
		opacity: 0;
		transform: translateY(14px) scale(.985)
	}
	to {
		opacity: 1;
		transform: none
	}
}
@media (max-width:760px) {
	.ppbm__header h2 {
		white-space: normal;
	}
}
@media (max-width:560px) {
	.ppbm {
		padding: 48px 16px calc(46px + env(safe-area-inset-bottom));
	}
	.ppbm__header {
		margin-bottom: 18px;
	}
	.ppbm__header h2 {
		font-size: clamp(30px, 9.4vw, 38px);
	}
	.ppbm__header>p:last-child {
		font-size: 14px;
	}
	.ppbm__stage {
		height: clamp(490px, 132vw, 540px);
	}
	.ppbm__body-wrap {
		width: min(58vw, 230px);
	}
	.ppbm__mobile-points {
		margin-inline: -16px;
		padding-inline: 16px;
		scroll-padding-inline: 16px;
	}
	.ppbm__detail {
		border-radius: 22px;
	}
	.ppbm__detail h3 {
		font-size: 23px;
	}
	.ppbm__cta {
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
		text-align: center;
	}
	.ppbm__cta a {
		justify-content: center;
	}
	.ppbm__emergency {
		text-align: start;
	}
}
@media (prefers-reduced-motion:reduce) {
	.ppbm *,
	.ppbm *::before,
	.ppbm *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}