/* ==========================================================================
   PINHOLEIR HOME HERO
   FINAL SEAMLESS IMAGE BLEND
   ========================================================================== */

.ph-hero {
	--hero-blue: #0b5cf6;
	--hero-blue-dark: #074bd5;
	--hero-navy: #092f69;
	--hero-text: #244773;
	--hero-border: rgba(20, 63, 126, 0.12);

	position: relative;

	width: 100%;

	padding-bottom: 82px;

	background: #ffffff;

	overflow: hidden;
}

/* ==========================================================================
   SLIDER
   ========================================================================== */

.ph-hero__slider {
	position: relative;

	width: 100%;
	height: 650px;

	overflow: hidden;

	/*
	 * ONE continuous background.
	 * The image will fade directly into this.
	 */
	background:
		linear-gradient(
			90deg,
			#8eafe2 0%,
			#a2bee7 17%,
			#bbcee9 29%,
			#d5e0f1 39%,
			#e8eff8 48%,
			#f5f8fc 58%,
			#eef4fb 100%
		);
}

.ph-hero__slides {
	position: relative;

	width: 100%;
	height: 100%;
}

.ph-hero__slide {
	position: absolute;

	inset: 0;

	z-index: 1;

	width: 100%;
	height: 100%;

	visibility: hidden;
	opacity: 0;

	transition:
		opacity 0.7s ease,
		visibility 0.7s ease;
}

.ph-hero__slide.is-active {
	z-index: 2;

	visibility: visible;
	opacity: 1;
}

/* ==========================================================================
   DECORATIVE BACKGROUND
   ========================================================================== */

.ph-hero__background {
	position: absolute;

	inset: 0;

	z-index: 0;

	overflow: hidden;

	pointer-events: none;
}

/* Soft centre illumination */

.ph-hero__glow {
	position: absolute;

	top: -210px;
	left: 22%;

	width: 65%;
	height: 930px;

	background:
		radial-gradient(
			ellipse at center,
			rgba(255, 255, 255, 0.94) 0%,
			rgba(255, 255, 255, 0.73) 29%,
			rgba(255, 255, 255, 0.39) 48%,
			rgba(255, 255, 255, 0.12) 65%,
			rgba(255, 255, 255, 0) 79%
		);
}

/* Dots */

.ph-hero__dots {
	position: absolute;

	top: 8px;
	left: 42%;

	width: 110px;
	height: 115px;

	opacity: 0.36;

	background-image:
		radial-gradient(
			circle,
			rgba(255, 255, 255, 0.96) 1.15px,
			transparent 1.4px
		);

	background-size: 13px 13px;

	-webkit-mask-image:
		linear-gradient(
			180deg,
			#000,
			transparent
		);

	mask-image:
		linear-gradient(
			180deg,
			#000,
			transparent
		);
}

/* ==========================================================================
   DECORATIVE RINGS
   ========================================================================== */

.ph-hero__rings {
	position: absolute;

	top: -330px;
	right: -45px;

	width: 860px;
	height: 860px;

	border: 2px solid rgba(255, 255, 255, 0.44);
	border-radius: 50%;
}

.ph-hero__rings::before,
.ph-hero__rings::after,
.ph-hero__rings span {
	position: absolute;

	border: 2px solid rgba(255, 255, 255, 0.34);
	border-radius: 50%;

	content: "";
}

.ph-hero__rings::before {
	inset: 58px;
}

.ph-hero__rings::after {
	inset: 116px;
}

.ph-hero__rings span:nth-child(1) {
	inset: 174px;

	opacity: 0.65;
}

.ph-hero__rings span:nth-child(2) {
	inset: 232px;

	opacity: 0.45;
}

.ph-hero__rings span:nth-child(3) {
	inset: 290px;

	opacity: 0.28;
}

/* ==========================================================================
   BOTTOM BLUE CURVE
   ========================================================================== */

.ph-hero__bottom-wave {
	position: absolute;

	right: -110px;
	bottom: -180px;

	width: 72%;
	height: 300px;

	border-radius: 61% 0 0;

	background:
		linear-gradient(
			145deg,
			rgba(58, 116, 198, 0) 0%,
			rgba(58, 116, 198, 0.15) 30%,
			rgba(53, 107, 190, 0.66) 66%,
			#3b73c7 100%
		);

	transform: rotate(-2deg);
}

/* ==========================================================================
   MAIN CONTAINER
   ========================================================================== */

.ph-hero__container {
	position: relative;

	z-index: 5;

	width: 100%;
	height: 100%;
}

/* ==========================================================================
   LEFT CONTENT
   ========================================================================== */

.ph-hero__content {
	position: absolute;

	top: 50%;
	left: 7.5%;

	z-index: 20;

	width: 555px;
	max-width: 40%;

	transform: translateY(-42%);
}

/* ==========================================================================
   EYEBROW
   ========================================================================== */

.ph-hero__eyebrow {
	display: inline-flex;
	align-items: center;

	gap: 8px;

	min-height: 34px;

	margin: 0 0 18px;
	padding: 5px 14px 5px 8px;

	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 999px;

	background: rgba(255, 255, 255, 0.94);

	box-shadow:
		0 5px 16px rgba(25, 57, 112, 0.06);

	color: var(--hero-blue);

	font-size: 11px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.ph-hero__eyebrow:hover {
	transform: translateY(-2px);

	box-shadow:
		0 9px 22px rgba(27, 68, 137, 0.12);
}

.ph-hero__eyebrow-icon {
	display: grid;

	width: 22px;
	height: 22px;

	flex: 0 0 22px;

	place-items: center;
}

.ph-hero__eyebrow-icon svg {
	width: 21px;
	height: 21px;
}

/* ==========================================================================
   HEADING
   ========================================================================== */

.ph-hero__title {
	max-width: 540px;

	margin: 0;

	color: var(--hero-navy);

	font-size: clamp(38px, 3vw, 38px);
	font-weight: 760;
	line-height: 1.06;

	letter-spacing: -2px;
}

.ph-hero__title span,
.ph-hero__title strong {
	display: block;
}

.ph-hero__title strong {
	margin-top: 3px;

	color: var(--hero-blue);

	font: inherit;
}

/* ==========================================================================
   DESCRIPTION
   ========================================================================== */

.ph-hero__description {
	max-width: 520px;

	margin: 18px 0 0;

	color: var(--hero-text);

	font-size: 18px;
	font-weight: 500;
	line-height: 1.55;
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */

.ph-hero__benefits {
	display: flex;
	align-items: center;

	width: 590px;

	margin-top: 28px;
}

.ph-hero__benefit {
	position: relative;

	display: flex;
	align-items: center;

	gap: 8px;

	padding: 0 14px;

	color: #0b316d;

	font-size: 11px;
	font-weight: 700;
	line-height: 1.45;

	white-space: nowrap;
}

.ph-hero__benefit:first-child {
	padding-left: 0;
}

.ph-hero__benefit:not(:last-child)::after {
	position: absolute;

	top: 5px;
	right: 0;

	width: 1px;
	height: 32px;

	background: rgba(15, 60, 125, 0.16);

	content: "";
}

.ph-hero__benefit-icon {
	display: grid;

	width: 42px;
	height: 42px;

	flex: 0 0 42px;

	place-items: center;

	border: 1px solid rgba(14, 78, 169, 0.12);
	border-radius: 50%;

	background: rgba(239, 246, 255, 0.76);

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		background-color 0.3s ease;
}

.ph-hero__benefit-icon svg {
	width: 35px;
	height: 35px;

	fill: none;
	stroke: #174589;

	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ph-hero__benefit:hover .ph-hero__benefit-icon {
	background: #ffffff;

	box-shadow:
		0 7px 18px rgba(7, 73, 178, 0.11);

	transform:
		translateY(-2px)
		scale(1.05);
}

/* ==========================================================================
   ACTIONS
   ========================================================================== */

.ph-hero__actions {
	display: flex;
	align-items: center;

	gap: 20px;

	margin-top: 32px;
}

/* ==========================================================================
   PRIMARY CTA
   ========================================================================== */

.ph-hero__primary {
	position: relative;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 9px;

	min-height: 48px;

	padding: 12px 24px;

	border: 1px solid var(--hero-blue);
	border-radius: 999px;

	background: var(--hero-blue);

	box-shadow:
		0 10px 22px rgba(7, 92, 244, 0.16);

	color: #ffffff;

	font-size: 12px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;

	overflow: hidden;

	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.ph-hero__primary::before {
	position: absolute;

	top: -80%;
	left: -55%;

	width: 36%;
	height: 260%;

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.34),
			transparent
		);

	content: "";

	transform: rotate(22deg);

	transition: left 0.65s ease;
}

.ph-hero__primary span,
.ph-hero__primary svg {
	position: relative;

	z-index: 2;
}

.ph-hero__primary svg {
	width: 15px;
	height: 15px;

	fill: none;
	stroke: currentColor;

	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;

	transition: transform 0.3s ease;
}

.ph-hero__primary:hover {
	background: var(--hero-blue-dark);

	box-shadow:
		0 14px 30px rgba(7, 92, 244, 0.23);

	color: #ffffff;

	transform: translateY(-2px);
}

.ph-hero__primary:hover::before {
	left: 130%;
}

.ph-hero__primary:hover svg {
	transform: translate(3px, -3px);
}

/* ==========================================================================
   VIDEO CTA
   ========================================================================== */

.ph-hero__video {
	display: flex;
	align-items: center;

	gap: 10px;

	color: var(--hero-text);
}

.ph-hero__play {
	display: grid;

	width: 47px;
	height: 47px;

	flex: 0 0 47px;

	place-items: center;

	border: 1.3px solid #17427f;
	border-radius: 50%;

	background: rgba(255, 255, 255, 0.12);

	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.ph-hero__play svg {
	width: 19px;
	height: 19px;

	fill: #123c76;

	transition: fill 0.3s ease;
}

.ph-hero__video-copy {
	display: flex;
	flex-direction: column;

	gap: 2px;
}

.ph-hero__video-copy strong {
	color: var(--hero-blue);

	font-size: 13px;
	font-weight: 800;

	line-height: 1.2;

	text-transform: uppercase;
}

.ph-hero__video-copy small {
	color: #3b5378;

	font-size: 11px;
	font-weight: 600;
}

.ph-hero__video:hover .ph-hero__play {
	background: var(--hero-blue);

	box-shadow:
		0 9px 22px rgba(7, 92, 244, 0.2);

	transform: scale(1.06);
}

.ph-hero__video:hover .ph-hero__play svg {
	fill: #ffffff;
}

/* ==========================================================================
   RIGHT IMAGE
   CRITICAL SEAMLESS IMPLEMENTATION
   ========================================================================== */

/*
 * IMPORTANT:
 *
 * The visual begins MUCH further left than where the image
 * actually becomes visible.
 *
 * There is therefore NO hard 43% boundary anymore.
 */

.ph-hero__visual {
	position: absolute;

	top: 0;
	right: 0;
	bottom: 0;
	left: 33%;

	z-index: 3;

	overflow: hidden;

	background: transparent;

	pointer-events: none;

	/*
	 * Absolutely no borders/shadows/background.
	 */
	border: 0;
	box-shadow: none;
}

/*
 * DELETE all previous ::before and ::after image overlays.
 */

.ph-hero__visual::before,
.ph-hero__visual::after {
	display: none !important;

	content: none !important;
}

/*
 * Also ensure slide isn't creating another transition layer.
 */

.ph-hero__slide::after {
	display: none !important;

	content: none !important;
}

/* ==========================================================================
   ACTUAL IMAGE FADE
   ========================================================================== */

.ph-hero__image {
	position: absolute;

	top: 0;
	right: 0;

	display: block;

	width: 100%;
	height: 100%;

	max-width: none;

	border: 0;

	object-fit: cover;
	object-position: 64% center;

	/*
	 * THIS is what removes the line.
	 *
	 * Instead of placing another coloured element over
	 * the photograph, the actual pixels fade to transparent.
	 *
	 * Transparent image = slider gradient beneath it.
	 */

	-webkit-mask-image:
		linear-gradient(
			90deg,

			transparent 0%,

			rgba(0, 0, 0, 0.01) 8%,

			rgba(0, 0, 0, 0.025) 13%,

			rgba(0, 0, 0, 0.06) 18%,

			rgba(0, 0, 0, 0.13) 23%,

			rgba(0, 0, 0, 0.24) 28%,

			rgba(0, 0, 0, 0.40) 34%,

			rgba(0, 0, 0, 0.58) 40%,

			rgba(0, 0, 0, 0.74) 46%,

			rgba(0, 0, 0, 0.88) 52%,

			rgba(0, 0, 0, 0.97) 58%,

			#000000 64%,

			#000000 100%
		);

	mask-image:
		linear-gradient(
			90deg,

			transparent 0%,

			rgba(0, 0, 0, 0.01) 8%,

			rgba(0, 0, 0, 0.025) 13%,

			rgba(0, 0, 0, 0.06) 18%,

			rgba(0, 0, 0, 0.13) 23%,

			rgba(0, 0, 0, 0.24) 28%,

			rgba(0, 0, 0, 0.40) 34%,

			rgba(0, 0, 0, 0.58) 40%,

			rgba(0, 0, 0, 0.74) 46%,

			rgba(0, 0, 0, 0.88) 52%,

			rgba(0, 0, 0, 0.97) 58%,

			#000000 64%,

			#000000 100%
		);

	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;

	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;

	transform: scale(1);

	will-change: transform, opacity;

	transition:
		transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   IMAGE ENTRANCE
   ========================================================================== */

.ph-hero__slide.is-active .ph-hero__image {
	animation:
		phHeroImageIn
		1.05s
		ease
		both;
}

@keyframes phHeroImageIn {

	from {
		opacity: 0.75;

		transform:
			translateX(18px)
			scale(1.012);
	}

	to {
		opacity: 1;

		transform:
			translateX(0)
			scale(1);
	}
}

/* ==========================================================================
   NAV ARROWS
   ========================================================================== */

.ph-hero__arrow {
	position: absolute;

	top: 52%;

	z-index: 40;

	display: grid;

	width: 54px;
	height: 54px;

	padding: 0;

	place-items: center;

	border: 0;
	border-radius: 50%;

	background: #0a3978;

	box-shadow:
		0 8px 21px rgba(7, 39, 92, 0.16);

	color: #ffffff;

	cursor: pointer;

	transform: translateY(-50%);

	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.ph-hero__arrow svg {
	width: 26px;
	height: 26px;

	fill: none;
	stroke: currentColor;

	stroke-width: 2.3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ph-hero__arrow--prev {
	left: 27px;
}

.ph-hero__arrow--next {
	right: 25px;
}

.ph-hero__arrow:hover {
	background: var(--hero-blue);

	box-shadow:
		0 12px 26px rgba(7, 92, 244, 0.26);

	transform:
		translateY(-50%)
		scale(1.06);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.ph-hero__pagination {
	position: absolute;

	left: 50%;
	bottom: 43px;

	z-index: 41;

	display: flex;
	align-items: center;

	gap: 8px;

	transform: translateX(-50%);
}

.ph-hero__dot {
	width: 10px;
	height: 6px;

	padding: 0;

	border: 0;
	border-radius: 999px;

	background: #a9b8ce;

	cursor: pointer;

	transition:
		width 0.25s ease,
		background-color 0.25s ease;
}

.ph-hero__dot.is-active {
	width: 14px;

	background: var(--hero-blue);
}

/* ==========================================================================
   FLOATING STATS
   ========================================================================== */

.ph-hero__stats-wrap {
	position: absolute;

	right: 0;
	bottom: 0;
	left: 0;

	z-index: 50;

	padding-inline: 7.3%;
}

.ph-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);

	width: 100%;
	max-width: 1190px;
	height: 116px;

	margin-inline: auto;

	overflow: hidden;

	border: 1px solid var(--hero-border);
	border-radius: 22px;

	background: #ffffff;

	box-shadow:
		0 16px 36px rgba(25, 53, 101, 0.09),
		0 2px 7px rgba(25, 53, 101, 0.03);
}

.ph-hero__stat {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	gap: 15px;

	padding: 18px 24px;

	background: transparent;

	color: var(--hero-blue);
}

.ph-hero__stat:not(:last-child)::after {
	position: absolute;

	top: 33px;
	right: 0;

	width: 1px;
	height: 48px;

	background: #d9e0eb;

	content: "";
}

.ph-hero__stat-icon {
	display: grid;

	width: 48px;
	height: 48px;

	flex: 0 0 48px;

	place-items: center;

	transition:
		transform 0.3s ease,
		filter 0.3s ease;
}

.ph-hero__stat-icon svg {
	width: 47px;
	height: 47px;

	fill: none;
	stroke: var(--hero-blue);

	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ph-hero__stat > div {
	display: flex;
	flex-direction: column;

	gap: 2px;

	color: var(--hero-blue);

	font-size: 12.5px;
	font-weight: 700;
	line-height: 1.4;

	transition: transform 0.3s ease;
}

.ph-hero__stat strong {
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}

.ph-hero__stat:hover {
	background: transparent;
}

.ph-hero__stat:hover .ph-hero__stat-icon {
	transform:
		translateY(-2px)
		scale(1.05);

	filter:
		drop-shadow(
			0 5px 7px rgba(7, 92, 244, 0.13)
		);
}

.ph-hero__stat:hover > div {
	transform: translateY(-1px);
}

/* ==========================================================================
   CONTENT ENTRANCE
   ========================================================================== */

.ph-hero__slide .ph-hero__eyebrow,
.ph-hero__slide .ph-hero__title,
.ph-hero__slide .ph-hero__description,
.ph-hero__slide .ph-hero__benefits,
.ph-hero__slide .ph-hero__actions {
	opacity: 0;

	transform: translateY(16px);
}

.ph-hero__slide.is-active .ph-hero__eyebrow {
	animation: phContentIn 0.5s 0.08s forwards;
}

.ph-hero__slide.is-active .ph-hero__title {
	animation: phContentIn 0.6s 0.14s forwards;
}

.ph-hero__slide.is-active .ph-hero__description {
	animation: phContentIn 0.6s 0.2s forwards;
}

.ph-hero__slide.is-active .ph-hero__benefits {
	animation: phContentIn 0.6s 0.26s forwards;
}

.ph-hero__slide.is-active .ph-hero__actions {
	animation: phContentIn 0.6s 0.32s forwards;
}

@keyframes phContentIn {

	to {
		opacity: 1;

		transform: translateY(0);
	}
}

/* ==========================================================================
   LAPTOP
   ========================================================================== */

@media (max-width: 1300px) {

	.ph-hero__content {
		left: 6.5%;

		width: 500px;
		max-width: 39%;
	}

	.ph-hero__title {
		font-size: 42px;
	}

	.ph-hero__description {
		font-size: 18px;
	}

	.ph-hero__benefits {
		width: 540px;
	}

	.ph-hero__benefit {
		padding-inline: 11px;

		font-size: 10px;
	}

	/*
	 * Still start visual well behind fade area.
	 */
	.ph-hero__visual {
		left: 32%;
	}

	.ph-hero__image {
		object-position: 66% center;
	}
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1024px) {

	.ph-hero {
		padding-bottom: 110px;
	}

	.ph-hero__slider {
		height: 720px;
	}

	.ph-hero__content {
		top: 47%;
		left: 6%;

		width: 53%;
		max-width: 53%;

		transform: translateY(-40%);
	}

	.ph-hero__title {
		font-size: 38px;
	}

	.ph-hero__description {
		font-size: 16px;
	}

	.ph-hero__benefits {
		display: grid;
		grid-template-columns: repeat(2, max-content);

		gap: 13px 18px;

		width: auto;
	}

	.ph-hero__benefit {
		padding: 0;
	}

	.ph-hero__benefit::after {
		display: none;
	}

	.ph-hero__actions {
		flex-direction: column;
		align-items: flex-start;

		gap: 13px;
	}

	.ph-hero__visual {
		left: 38%;
	}

	.ph-hero__image {
		object-position: 67% center;
	}

	.ph-hero__stats {
		grid-template-columns: repeat(2, 1fr);

		height: 190px;
	}

	.ph-hero__stat:nth-child(2)::after {
		display: none;
	}

	.ph-hero__stat:nth-child(1),
	.ph-hero__stat:nth-child(2) {
		border-bottom: 1px solid #e0e6ef;
	}
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.ph-hero {
		padding-bottom: 165px;
	}

	.ph-hero__slider {
		height: 850px;
	}

	.ph-hero__content {
		top: 115px;
		left: 20px;

		width: calc(100% - 40px);
		max-width: none;

		transform: none;
	}

	.ph-hero__eyebrow {
		font-size: 9.5px;
	}

	.ph-hero__title {
		max-width: 380px;

		font-size: clamp(32px, 9vw, 42px);
		line-height: 1.08;

		letter-spacing: -1.5px;
	}

	.ph-hero__description {
		max-width: 370px;

		font-size: 16px;
	}

	.ph-hero__benefits {
		grid-template-columns: repeat(2, 1fr);

		width: 100%;
		max-width: 370px;
	}

	.ph-hero__benefit {
		font-size: 9.5px;

		white-space: normal;
	}

	/*
	 * Mobile switches to bottom image.
	 */
	.ph-hero__visual {
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;

		width: 100%;
		height: 365px;
	}

	/*
	 * Fade vertically on mobile.
	 */
	.ph-hero__image {
		object-position: center center;

		-webkit-mask-image:
			linear-gradient(
				180deg,

				transparent 0%,

				rgba(0, 0, 0, 0.04) 10%,

				rgba(0, 0, 0, 0.16) 18%,

				rgba(0, 0, 0, 0.38) 27%,

				rgba(0, 0, 0, 0.68) 37%,

				rgba(0, 0, 0, 0.9) 46%,

				#000 54%,

				#000 100%
			);

		mask-image:
			linear-gradient(
				180deg,

				transparent 0%,

				rgba(0, 0, 0, 0.04) 10%,

				rgba(0, 0, 0, 0.16) 18%,

				rgba(0, 0, 0, 0.38) 27%,

				rgba(0, 0, 0, 0.68) 37%,

				rgba(0, 0, 0, 0.9) 46%,

				#000 54%,

				#000 100%
			);
	}

	.ph-hero__arrow {
		top: auto;
		bottom: 33px;

		width: 43px;
		height: 43px;

		transform: none;
	}

	.ph-hero__arrow:hover {
		transform: scale(1.05);
	}

	.ph-hero__arrow--prev {
		left: 18px;
	}

	.ph-hero__arrow--next {
		right: 18px;
	}

	.ph-hero__pagination {
		bottom: 48px;
	}

	.ph-hero__stats-wrap {
		padding-inline: 14px;
	}

	.ph-hero__stats {
		grid-template-columns: repeat(2, 1fr);

		height: 240px;

		border-radius: 19px;
	}

	.ph-hero__stat {
		gap: 8px;

		padding: 11px 8px;
	}

	.ph-hero__stat-icon {
		width: 38px;
		height: 38px;

		flex-basis: 38px;
	}

	.ph-hero__stat-icon svg {
		width: 38px;
		height: 38px;
	}

	.ph-hero__stat > div {
		font-size: 10px;
	}

	.ph-hero__stat strong {
		font-size: 20px;
	}
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.ph-hero a:focus-visible,
.ph-hero button:focus-visible {
	outline: 3px solid rgba(7, 92, 244, 0.38);

	outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

	.ph-hero *,
	.ph-hero *::before,
	.ph-hero *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.ph-hero__image {
		transform: none !important;
	}
}
/* ==========================================================================
   PINHOLEIR HOME - INTRO / TREATMENT SECTION
   COMPLETE UPDATED VERSION
   ========================================================================== */

.ph-intro {
	--intro-blue: #0b5cf6;
	--intro-blue-dark: #0649d3;
	--intro-navy: #082d68;
	--intro-text: #29436f;
	--intro-border: rgba(28, 73, 150, 0.1);

	position: relative;

	width: calc(100% - 32px);
	max-width: 1580px;

	/*
	 * Desktop section is designed to fit inside the viewport.
	 */
	min-height: 740px;
	height: min(820px, calc(100vh - 40px));

	margin: 28px auto 45px;

	overflow: hidden;


	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		0 14px 42px rgba(19, 50, 102, 0.035);
}

/* ==========================================================================
   DECORATION
   ========================================================================== */

.ph-intro__decoration {
	position: absolute;
	inset: 0;
	z-index: 0;

	pointer-events: none;
}

/* dotted decoration */

.ph-intro__dots {
	position: absolute;

	top: 34px;
	left: 27px;

	width: 92px;
	height: 75px;

	opacity: 0.18;

	background-image:
		radial-gradient(
			circle,
			#1767ff 1.4px,
			transparent 1.6px
		);

	background-size: 13px 13px;
}

/* curved lines */

.ph-intro__lines {
	position: absolute;

	left: -220px;
	bottom: -155px;

	width: 730px;
	height: 540px;

	border: 1px solid rgba(53, 106, 204, 0.12);
	border-radius: 50%;

	transform: rotate(16deg);
}

.ph-intro__lines::before,
.ph-intro__lines::after {
	position: absolute;

	border: 1px solid rgba(53, 106, 204, 0.09);
	border-radius: 50%;

	content: "";
}

.ph-intro__lines::before {
	inset: 32px;
}

.ph-intro__lines::after {
	inset: 67px;
}

/* decorative circles */

.ph-intro__circle {
	position: absolute;

	border-radius: 50%;

	pointer-events: none;
}

.ph-intro__circle--top {
	top: 28px;
	right: 60px;

	width: 330px;
	height: 330px;

	background:
		linear-gradient(
			145deg,
			rgba(91, 143, 244, 0.2),
			rgba(91, 143, 244, 0.035)
		);
}

.ph-intro__circle--bottom {
	right: -80px;
	bottom: -90px;

	width: 230px;
	height: 230px;

	border-radius: 50% 50% 0 50%;

	background:
		linear-gradient(
			145deg,
			#5d97ff 0%,
			#1761ee 100%
		);

	opacity: 0.92;
}

/* ==========================================================================
   MAIN CONTAINER
   ========================================================================== */

.ph-intro__container {
	position: relative;
	z-index: 2;

	display: grid;

	/*
	 * More width for left section than before.
	 * Prevents the content looking compressed.
	 */
	grid-template-columns:
		minmax(0, 48%)
		minmax(0, 52%);

	width: min(100% - 110px, 1390px);
	height: 100%;

	margin-inline: auto;
}

/* ==========================================================================
   LEFT CONTENT
   ========================================================================== */

.ph-intro__content {
	position: relative;
	z-index: 8;

	display: flex;
	flex-direction: column;
	justify-content: center;

	/*
	 * Keeps content optically centered.
	 */
	padding:
		58px
		42px
		46px
		0;
}

/* ==========================================================================
   EYEBROW
   ========================================================================== */

.ph-intro__eyebrow {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;

	gap: 7px;

	min-height: 34px;

	margin: 0 0 16px;

	padding:
		5px
		14px
		5px
		8px;

	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 999px;

	background: rgba(255, 255, 255, 0.88);

	box-shadow:
		0 6px 18px rgba(28, 63, 122, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);

	color: var(--intro-blue);

	font-size: 10.5px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.ph-intro__eyebrow:hover {
	transform: translateY(-2px);

	box-shadow:
		0 10px 24px rgba(28, 63, 122, 0.13);
}

.ph-intro__eyebrow-icon {
	display: grid;

	width: 21px;
	height: 21px;

	flex: 0 0 21px;

	place-items: center;
}

.ph-intro__eyebrow-icon svg {
	width: 20px;
	height: 20px;

	fill: none;
	stroke: currentColor;

	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ==========================================================================
   TITLE
   ========================================================================== */

.ph-intro__title {
	width: 100%;
	max-width: 565px;

	margin: 0;

	color: var(--intro-navy);

	font-size: clamp(39px, 3vw, 52px);
	font-weight: 760;
	line-height: 1.035;

	letter-spacing: -2px;
}

.ph-intro__title span,
.ph-intro__title strong {
	display: block;
}

.ph-intro__title strong {
	margin-top: 3px;

	color: var(--intro-blue);

	font: inherit;
}

/* blue underline */

.ph-intro__title-line {
	display: block;

	width: 45px;
	height: 3px;

	margin-top: 22px;

	border-radius: 999px;

	background: var(--intro-blue);
}

/* ==========================================================================
   DESCRIPTION
   ========================================================================== */

.ph-intro__description {
	width: 100%;
	max-width: 570px;

	margin: 20px 0 0;

	color: var(--intro-text);

	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;

	letter-spacing: -0.1px;
}

/* ==========================================================================
   CTA / TRUST ROW
   ========================================================================== */

.ph-intro__actions {
	display: flex;
	align-items: center;

	gap: 38px;

	margin-top: 25px;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.ph-intro__cta {
	position: relative;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 10px;

	min-width: 176px;
	min-height: 48px;

	padding: 11px 23px;

	border-radius: 999px;

	background:
		linear-gradient(
			135deg,
			#1262fa 0%,
			#064ce0 100%
		);

	box-shadow:
		0 10px 24px rgba(10, 87, 235, 0.19);

	color: #ffffff;

	font-size: 11.5px;
	font-weight: 800;
	line-height: 1;

	text-decoration: none;
	text-transform: uppercase;

	overflow: hidden;

	transition:
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.3s ease;
}

.ph-intro__cta::before {
	position: absolute;

	top: -100%;
	left: -55%;

	width: 38%;
	height: 300%;

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.32),
			transparent
		);

	content: "";

	transform: rotate(22deg);

	transition: left 0.65s ease;
}

.ph-intro__cta > * {
	position: relative;
	z-index: 2;
}

.ph-intro__cta svg {
	width: 15px;
	height: 15px;

	fill: none;
	stroke: currentColor;

	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;

	transition: transform 0.3s ease;
}

.ph-intro__cta:hover {
	color: #ffffff;

	box-shadow:
		0 15px 32px rgba(10, 87, 235, 0.28);

	transform: translateY(-3px);
}

.ph-intro__cta:hover::before {
	left: 130%;
}

.ph-intro__cta:hover svg {
	transform: translate(3px, -3px);
}

/* ==========================================================================
   TRUST / AVATARS
   ========================================================================== */

.ph-intro__trust {
	display: flex;
	align-items: center;

	gap: 13px;

	min-width: 245px;
}

.ph-intro__avatars {
	display: flex;
	align-items: center;

	flex: 0 0 auto;
}

.ph-intro__avatars img {
	position: relative;

	display: block;

	width: 36px;
	height: 36px;

	margin-left: -8px;

	border: 3px solid #ffffff;
	border-radius: 50%;

	background: #eef3ff;

	object-fit: cover;

	box-shadow:
		0 3px 10px rgba(17, 48, 103, 0.13);

	transition:
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.3s ease;
}

.ph-intro__avatars img:first-child {
	margin-left: 0;
}

.ph-intro__avatars img:hover {
	z-index: 10;

	box-shadow:
		0 7px 15px rgba(17, 48, 103, 0.18);

	transform:
		translateY(-4px)
		scale(1.12);
}

.ph-intro__trust p {
	margin: 0;

	color: #183a71;

	font-size: 11.5px;
	font-weight: 650;
	line-height: 1.45;
}

/* ==========================================================================
   STATS PANEL
   ========================================================================== */

.ph-intro__stats {
	display: grid;

	/*
	 * Stops the third block getting crushed.
	 */
	grid-template-columns:
		1fr
		1fr
		1.15fr;

	width: 100%;
	max-width: 670px;

	min-height: 122px;

	margin-top: 29px;

	overflow: hidden;

	border: 1px solid rgba(26, 67, 137, 0.07);
	border-radius: 19px;

	background: rgba(255, 255, 255, 0.95);

	box-shadow:
		0 13px 32px rgba(22, 51, 105, 0.085),
		0 2px 6px rgba(22, 51, 105, 0.025);

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.ph-intro__stat {
	position: relative;

	display: flex;
	align-items: center;

	gap: 14px;

	min-width: 0;

	padding: 18px 22px;

	background: transparent;
}

/* divider */

.ph-intro__stat:not(:last-child)::after {
	position: absolute;

	top: 26px;
	right: 0;

	width: 1px;
	height: 68px;

	background: #d9e0ec;

	content: "";
}

/* icon */

.ph-intro__stat-icon {
	display: grid;

	width: 62px;
	height: 62px;

	flex: 0 0 62px;

	place-items: center;

	border-radius: 50%;

	background:
		linear-gradient(
			145deg,
			#f3f6ff,
			#e7edff
		);

	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease;
}

.ph-intro__stat-icon svg {
	width: 42px;
	height: 42px;

	fill: none;
	stroke: var(--intro-blue);

	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ph-intro__stat-copy {
	min-width: 0;

	transition:
		transform 0.3s ease;
}

.ph-intro__stat-copy strong {
	display: block;

	color: var(--intro-blue);

	font-size: 31px;
	font-weight: 800;
	line-height: 1;
}

.ph-intro__stat-copy strong span {
	font-size: 0.78em;
}

.ph-intro__stat-copy p {
	margin: 7px 0 0;

	color: #234273;

	font-size: 11.5px;
	font-weight: 500;
	line-height: 1.4;
}

.ph-intro__stat:hover .ph-intro__stat-icon {
	box-shadow:
		0 9px 21px rgba(17, 92, 245, 0.13);

	transform:
		translateY(-3px)
		scale(1.05);
}

.ph-intro__stat:hover .ph-intro__stat-copy {
	transform: translateY(-2px);
}

/* ==========================================================================
   THIRD STAT / LAUREL
   ========================================================================== */

.ph-intro__stat--message {
	gap: 12px;

	padding-left: 20px;
	padding-right: 18px;
}

.ph-intro__laurel {
	display: grid;

	width: 54px;
	height: 54px;

	flex: 0 0 54px;

	place-items: center;
}

.ph-intro__laurel svg {
	width: 50px;
	height: 50px;

	fill: none;
	stroke: var(--intro-blue);

	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;

	transition:
		transform 0.35s ease;
}

.ph-intro__stat--message p {
	margin: 0;

	color: #183a70;

	font-size: 10.5px;
	font-weight: 650;
	line-height: 1.5;

	white-space: normal;
}

.ph-intro__stat--message:hover .ph-intro__laurel svg {
	transform: scale(1.07);
}

/* ==========================================================================
   LOWER BENEFITS
   ========================================================================== */

.ph-intro__benefits {
	display: grid;
	grid-template-columns:
		1fr
		1fr
		1fr;

	width: 100%;
	max-width: 690px;

	margin-top: 25px;
}

.ph-intro__benefit {
	position: relative;

	display: flex;
	align-items: center;

	gap: 10px;

	min-width: 0;

	padding: 0 16px;
}

.ph-intro__benefit:first-child {
	padding-left: 0;
}

.ph-intro__benefit:not(:last-child)::after {
	position: absolute;

	top: 7px;
	right: 0;

	width: 1px;
	height: 44px;

	background: #d6deea;

	content: "";
}

.ph-intro__benefit-icon {
	display: grid;

	width: 48px;
	height: 48px;

	flex: 0 0 48px;

	place-items: center;

	border: 2px solid #ffffff;
	border-radius: 50%;

	background: rgba(244, 247, 255, 0.96);

	box-shadow:
		0 5px 16px rgba(23, 61, 121, 0.07);

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		background-color 0.35s ease;
}

.ph-intro__benefit-icon svg {
	width: 33px;
	height: 33px;

	fill: none;
	stroke: var(--intro-blue);

	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ph-intro__benefit p {
	min-width: 0;

	margin: 0;

	color: #193a70;

	font-size: 10.5px;
	font-weight: 600;
	line-height: 1.5;

	transition:
		color 0.3s ease,
		transform 0.3s ease;
}

.ph-intro__benefit:hover .ph-intro__benefit-icon {
	background: #ffffff;

	box-shadow:
		0 10px 23px rgba(17, 92, 245, 0.13);

	transform:
		translateY(-3px)
		scale(1.05);
}

.ph-intro__benefit:hover p {
	color: var(--intro-blue);

	transform: translateY(-1px);
}

/* ==========================================================================
   RIGHT VISUAL AREA
   ========================================================================== */

.ph-intro__visual {
	position: relative;
	z-index: 6;

	height: 100%;

	min-height: 0;
}

/* ==========================================================================
   IMAGE CARDS
   ========================================================================== */

.ph-intro__image-card {
	position: absolute;

	overflow: hidden;

	border: 4px solid rgba(255, 255, 255, 0.95);
	border-radius: 21px;

	background: #ffffff;

	box-shadow:
		0 19px 42px rgba(23, 53, 105, 0.14);

	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.4s ease;
}

.ph-intro__image-card img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition:
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.45s ease;
}

/* main reception image */

.ph-intro__image-card--main {
	top: 70px;
	right: 4px;

	z-index: 2;

	width: 91%;
	height: 51%;
	min-height: 360px;
	max-height: 430px;
}

.ph-intro__image-card--main img {
	object-position: center;
}

/* certificates image */

.ph-intro__image-card--secondary {
	right: -8px;
	bottom: 78px;

	z-index: 5;

	width: 84%;
	height: 31%;
	min-height: 225px;
	max-height: 270px;
}

.ph-intro__image-card--secondary img {
	object-position: center;
}

/* image hover */

.ph-intro__image-card:hover {
	box-shadow:
		0 26px 55px rgba(23, 53, 105, 0.19);

	transform: translateY(-6px);
}

.ph-intro__image-card:hover img {
	transform: scale(1.025);
}

/* ==========================================================================
   CLINIC TOUR FLOATING BUTTON
   ========================================================================== */

.ph-intro__tour {
	position: absolute;

	top: 46%;
	left: -36px;

	z-index: 12;

	display: flex;
	align-items: center;

	min-width: 186px;
	height: 66px;

	border-radius: 999px;

	background: rgba(255, 255, 255, 0.94);

	box-shadow:
		0 12px 28px rgba(26, 58, 113, 0.14);

	color: #173a71;

	text-decoration: none;

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	transform: translateY(-50%);

	transition:
		box-shadow 0.35s ease,
		transform 0.35s ease;
}

.ph-intro__tour-play {
	display: grid;

	width: 70px;
	height: 70px;

	flex: 0 0 70px;

	margin-left: -6px;

	place-items: center;

	border: 4px solid #ffffff;
	border-radius: 50%;

	background: #ffffff;

	box-shadow:
		0 0 0 1px rgba(17, 92, 245, 0.4),
		0 9px 22px rgba(24, 66, 139, 0.15);

	transition:
		background-color 0.35s ease,
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease;
}

.ph-intro__tour-play svg {
	width: 27px;
	height: 27px;

	fill: var(--intro-blue);

	transition:
		fill 0.3s ease,
		transform 0.3s ease;
}

.ph-intro__tour-text {
	display: flex;
	flex-direction: column;

	padding:
		0
		20px
		0
		12px;

	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
}

.ph-intro__tour-text strong {
	color: var(--intro-blue);

	font-weight: 700;
}

.ph-intro__tour:hover {
	box-shadow:
		0 17px 36px rgba(26, 58, 113, 0.2);

	transform:
		translateY(calc(-50% - 4px));
}

.ph-intro__tour:hover .ph-intro__tour-play {
	background: var(--intro-blue);

	box-shadow:
		0 0 0 5px rgba(17, 92, 245, 0.1),
		0 12px 26px rgba(17, 92, 245, 0.23);

	transform: scale(1.06);
}

.ph-intro__tour:hover .ph-intro__tour-play svg {
	fill: #ffffff;

	transform: scale(1.07);
}

/* ==========================================================================
   ENTRANCE ANIMATION
   ========================================================================== */

.ph-reveal {
	opacity: 0;

	transition:
		opacity 0.72s ease,
		transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-reveal[data-reveal="up"] {
	transform: translateY(28px);
}

.ph-reveal[data-reveal="left"] {
	transform: translateX(-28px);
}

.ph-reveal[data-reveal="right"] {
	transform: translateX(38px);
}

.ph-reveal[data-reveal="scale"] {
	transform: scale(0.92);
}

.ph-reveal.is-visible {
	opacity: 1;

	transform: none;
}

.ph-intro__eyebrow.ph-reveal {
	transition-delay: 0.04s;
}

.ph-intro__title.ph-reveal {
	transition-delay: 0.1s;
}

.ph-intro__title-line.ph-reveal {
	transition-delay: 0.16s;
}

.ph-intro__description.ph-reveal {
	transition-delay: 0.2s;
}

.ph-intro__actions.ph-reveal {
	transition-delay: 0.25s;
}

.ph-intro__stats.ph-reveal {
	transition-delay: 0.3s;
}

.ph-intro__benefits.ph-reveal {
	transition-delay: 0.35s;
}

.ph-intro__image-card--main.ph-reveal {
	transition-delay: 0.08s;
}

.ph-intro__image-card--secondary.ph-reveal {
	transition-delay: 0.2s;
}

.ph-intro__tour.ph-reveal {
	transition-delay: 0.3s;
}

/* ==========================================================================
   NORMAL LAPTOP
   ========================================================================== */

@media (max-width: 1366px) {

	.ph-intro {
		min-height: 700px;
		height: min(760px, calc(100vh - 30px));
	}

	.ph-intro__container {
		width: min(100% - 80px, 1210px);

		grid-template-columns:
			49%
			51%;
	}

	.ph-intro__content {
		padding-right: 30px;
	}

	.ph-intro__title {
		font-size: 43px;
	}

	.ph-intro__description {
		max-width: 515px;

		font-size: 13px;
	}

	.ph-intro__actions {
		gap: 25px;
	}

	.ph-intro__stats {
		max-width: 620px;
	}

	.ph-intro__stat {
		padding:
			16px
			17px;
	}

	.ph-intro__stat-icon {
		width: 56px;
		height: 56px;

		flex-basis: 56px;
	}

	.ph-intro__stat-icon svg {
		width: 38px;
		height: 38px;
	}

	.ph-intro__stat-copy strong {
		font-size: 28px;
	}

	.ph-intro__benefits {
		max-width: 625px;
	}

	.ph-intro__benefit {
		padding-inline: 12px;
	}

	.ph-intro__image-card--main {
		top: 62px;

		min-height: 330px;
	}

	.ph-intro__image-card--secondary {
		bottom: 65px;

		min-height: 205px;
	}
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1024px) {

	.ph-intro {
		width: calc(100% - 24px);

		height: auto;
		min-height: 0;

		margin-block: 38px;

		border-radius: 25px;
	}

	.ph-intro__container {
		display: block;

		width: calc(100% - 60px);
		height: auto;

		padding:
			65px
			0;
	}

	.ph-intro__content {
		padding: 0;
	}

	.ph-intro__title {
		max-width: 620px;

		font-size: 46px;
	}

	.ph-intro__description {
		max-width: 640px;

		font-size: 14px;
	}

	.ph-intro__stats {
		max-width: 720px;
	}

	.ph-intro__benefits {
		max-width: 720px;
	}

	.ph-intro__visual {
		height: 650px;

		margin-top: 38px;
	}

	.ph-intro__image-card--main {
		top: 20px;
		right: 0;

		width: 89%;
		height: 390px;

		min-height: 0;
		max-height: none;
	}

	.ph-intro__image-card--secondary {
		right: 3%;
		bottom: 15px;

		width: 74%;
		height: 260px;

		min-height: 0;
		max-height: none;
	}

	.ph-intro__tour {
		top: 355px;
		left: 3%;

		transform: none;
	}

	.ph-intro__tour:hover {
		transform: translateY(-4px);
	}
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.ph-intro {
		width: calc(100% - 16px);

		margin-block: 28px;

		border-radius: 22px;
	}

	.ph-intro__container {
		width: calc(100% - 34px);

		padding:
			45px
			0;
	}

	.ph-intro__eyebrow {
		margin-bottom: 17px;

		font-size: 9px;
	}

	.ph-intro__title {
		max-width: 390px;

		font-size: clamp(33px, 9.5vw, 42px);

		letter-spacing: -1.6px;
	}

	.ph-intro__title-line {
		margin-top: 18px;
	}

	.ph-intro__description {
		max-width: 390px;

		margin-top: 18px;

		font-size: 13px;
	}

	.ph-intro__actions {
		flex-direction: column;
		align-items: flex-start;

		gap: 20px;

		margin-top: 23px;
	}

	.ph-intro__cta {
		min-width: 160px;
		min-height: 46px;

		font-size: 10.5px;
	}

	.ph-intro__trust {
		min-width: 0;
	}

	/* stats stack vertically */

	.ph-intro__stats {
		grid-template-columns: 1fr;

		margin-top: 28px;

		border-radius: 18px;
	}

	.ph-intro__stat {
		min-height: 95px;

		padding:
			15px
			18px;
	}

	.ph-intro__stat:not(:last-child)::after {
		top: auto;
		right: 18px;
		bottom: 0;
		left: 18px;

		width: auto;
		height: 1px;
	}

	.ph-intro__stat-icon {
		width: 54px;
		height: 54px;

		flex-basis: 54px;
	}

	.ph-intro__stat-icon svg {
		width: 36px;
		height: 36px;
	}

	/* benefits stack */

	.ph-intro__benefits {
		grid-template-columns: 1fr;

		margin-top: 25px;
	}

	.ph-intro__benefit {
		min-height: 72px;

		padding:
			12px
			0;
	}

	.ph-intro__benefit:not(:last-child)::after {
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;

		width: 100%;
		height: 1px;
	}

	.ph-intro__visual {
		height: 505px;

		margin-top: 28px;
	}

	.ph-intro__image-card--main {
		top: 8px;

		width: 96%;
		height: 285px;

		border-radius: 17px;
	}

	.ph-intro__image-card--secondary {
		right: 0;
		bottom: 6px;

		width: 86%;
		height: 205px;

		border-radius: 17px;
	}

	.ph-intro__tour {
		top: 255px;
		left: 0;

		min-width: 160px;
		height: 58px;
	}

	.ph-intro__tour-play {
		width: 62px;
		height: 62px;

		flex-basis: 62px;
	}

	.ph-intro__tour-play svg {
		width: 24px;
		height: 24px;
	}

	.ph-intro__tour-text {
		font-size: 10px;
	}
}

/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {

	.ph-intro__container {
		width: calc(100% - 28px);
	}

	.ph-intro__title {
		font-size: 33px;
	}

	.ph-intro__avatars img {
		width: 34px;
		height: 34px;
	}

	.ph-intro__trust p {
		font-size: 10.5px;
	}

	.ph-intro__visual {
		height: 455px;
	}

	.ph-intro__image-card--main {
		width: 100%;
		height: 250px;
	}

	.ph-intro__image-card--secondary {
		width: 90%;
		height: 180px;
	}

	.ph-intro__tour {
		top: 225px;
	}
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.ph-intro a:focus-visible,
.ph-intro button:focus-visible {
	outline: 3px solid rgba(17, 92, 245, 0.35);
	outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

	.ph-intro *,
	.ph-intro *::before,
	.ph-intro *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}

	.ph-reveal {
		opacity: 1 !important;
		transform: none !important;
	}
}
/* ==========================================================================
   PINHOLEIR PREMIUM FEATURE MARQUEE
   FULL WIDTH BLUE VERSION
   ========================================================================== */

.ph-marquee {
	--marquee-blue: #0b5cf6;
	--marquee-blue-dark: #0647c9;
	--marquee-white: #ffffff;
	--marquee-white-soft: rgba(255, 255, 255, 0.82);
	--marquee-white-muted: rgba(255, 255, 255, 0.58);
	--marquee-divider: rgba(255, 255, 255, 0.28);

	position: relative;

	width: 100%;
	max-width: none;

	margin:
		32px
		0
		48px;

	padding:
		14px
		0;

	overflow: hidden;

	border: 0;
	border-radius: 0;

	background:
		linear-gradient(
			135deg,
			#0b5cf6 0%,
			#0957ec 48%,
			#074fdc 100%
		);

	box-shadow:
		0 18px 45px rgba(11, 92, 246, 0.16);
}

/* ==========================================================================
   SUBTLE BACKGROUND DETAILS
   ========================================================================== */

.ph-marquee::before {
	position: absolute;

	top: -140px;
	left: 28%;

	width: 650px;
	height: 300px;

	border-radius: 50%;

	background:
		radial-gradient(
			ellipse at center,
			rgba(255, 255, 255, 0.11),
			transparent 72%
		);

	content: "";

	pointer-events: none;
}

/*
 * Right glow.
 */

.ph-marquee::after {
	position: absolute;

	right: -160px;
	bottom: -190px;

	width: 520px;
	height: 420px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(255, 255, 255, 0.08),
			transparent 70%
		);

	content: "";

	pointer-events: none;
}

/* ==========================================================================
   INNER
   ========================================================================== */

.ph-marquee__inner {
	position: relative;
	z-index: 2;

	display: flex;
	flex-direction: column;

	gap: 0;

	width: 100%;

	overflow: hidden;
}

/* ==========================================================================
   ROW
   ========================================================================== */

.ph-marquee__row {
	position: relative;

	display: flex;
	align-items: center;

	width: 100%;
	min-height: 76px;

	overflow: hidden;

	border: 0;
	border-radius: 0;

	background: transparent;

	box-shadow: none;

	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

/*
 * Divider between the two running rows.
 */

.ph-marquee__row + .ph-marquee__row {
	border-top:
		1px
		solid
		rgba(255, 255, 255, 0.16);
}

/*
 * Soft light moving through centre.
 */

.ph-marquee__row::before {
	position: absolute;

	top: 0;
	bottom: 0;
	left: 50%;

	width: 42%;

	background:
		radial-gradient(
			ellipse at center,
			rgba(255, 255, 255, 0.07),
			transparent 75%
		);

	content: "";

	transform: translateX(-50%);

	pointer-events: none;
}

/* ==========================================================================
   EDGE FADES
   ========================================================================== */

/*
 * Instead of white edges, fade using the SAME blue
 * so items disappear naturally into the section.
 */

.ph-marquee__row::after {
	position: absolute;

	top: 0;
	right: 0;

	z-index: 15;

	width: 125px;
	height: 100%;

	background:
		linear-gradient(
			270deg,
			#074fdc 0%,
			rgba(7, 79, 220, 0.9) 28%,
			rgba(7, 79, 220, 0.45) 58%,
			transparent 100%
		);

	content: "";

	pointer-events: none;
}

.ph-marquee__row--right {
	-webkit-mask-image:
		linear-gradient(
			90deg,
			transparent 0%,
			#000 7%,
			#000 93%,
			transparent 100%
		);

	mask-image:
		linear-gradient(
			90deg,
			transparent 0%,
			#000 7%,
			#000 93%,
			transparent 100%
		);
}

.ph-marquee__row--left {
	-webkit-mask-image:
		linear-gradient(
			90deg,
			transparent 0%,
			#000 7%,
			#000 93%,
			transparent 100%
		);

	mask-image:
		linear-gradient(
			90deg,
			transparent 0%,
			#000 7%,
			#000 93%,
			transparent 100%
		);
}

/* ==========================================================================
   TRACK
   ========================================================================== */

.ph-marquee__track {
	display: flex;
	align-items: center;

	flex: 0 0 max-content;

	width: max-content;

	will-change: transform;
}

.ph-marquee__group {
	display: flex;
	align-items: center;

	flex: 0 0 auto;

	width: max-content;

	padding-right: 42px;
}

/* ==========================================================================
   CONTINUOUS MOVEMENT
   ========================================================================== */

.ph-marquee__row--right
.ph-marquee__track {
	animation:
		phMarqueeRightBlue
		44s
		linear
		infinite;
}

.ph-marquee__row--left
.ph-marquee__track {
	animation:
		phMarqueeLeftBlue
		48s
		linear
		infinite;
}

@keyframes phMarqueeRightBlue {

	from {
		transform:
			translate3d(
				-50%,
				0,
				0
			);
	}

	to {
		transform:
			translate3d(
				0,
				0,
				0
			);
	}
}

@keyframes phMarqueeLeftBlue {

	from {
		transform:
			translate3d(
				0,
				0,
				0
			);
	}

	to {
		transform:
			translate3d(
				-50%,
				0,
				0
			);
	}
}

/* ==========================================================================
   ITEM
   ========================================================================== */

.ph-marquee__item {
	position: relative;

	display: inline-flex;
	align-items: center;

	flex: 0 0 auto;

	gap: 14px;

	min-height: 68px;

	padding:
		7px
		28px;

	border-radius: 16px;

	color: #ffffff;

	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

/* ==========================================================================
   ICON
   ========================================================================== */

.ph-marquee__icon {
	display: grid;

	width: 47px;
	height: 47px;

	flex: 0 0 47px;

	place-items: center;

	border:
		1px
		solid
		rgba(255, 255, 255, 0.4);

	border-radius: 50%;

	background:
		rgba(255, 255, 255, 0.09);

	box-shadow:
		inset
		0
		1px
		0
		rgba(255, 255, 255, 0.17);

	color: #ffffff;

	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);

	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease,
		border-color 0.3s ease;
}

.ph-marquee__icon svg {
	width: 29px;
	height: 29px;

	fill: none;
	stroke: currentColor;

	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ==========================================================================
   TEXT
   ========================================================================== */

.ph-marquee__label {
	color: #ffffff;

	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;

	letter-spacing: -0.1px;

	white-space: nowrap;

	transition:
		color 0.3s ease,
		transform 0.3s ease;
}

/* ==========================================================================
   DIVIDER
   ========================================================================== */

.ph-marquee__separator {
	display: block;

	width: 1px;
	height: 34px;

	flex: 0 0 1px;

	margin-inline: 8px;

	background:
		linear-gradient(
			180deg,
			transparent 0%,
			rgba(255, 255, 255, 0.32) 20%,
			rgba(255, 255, 255, 0.32) 80%,
			transparent 100%
		);
}

/* ==========================================================================
   PREMIUM HOVER
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {

	.ph-marquee__item:hover {
		background:
			rgba(255, 255, 255, 0.11);

		box-shadow:
			0 12px 30px rgba(0, 35, 120, 0.13);

		transform:
			translateY(-2px);
	}

	.ph-marquee__item:hover
	.ph-marquee__icon {
		border-color:
			#ffffff;

		background:
			#ffffff;

		color:
			var(--marquee-blue);

		box-shadow:
			0 10px 24px rgba(0, 35, 120, 0.18);

		transform:
			translateY(-2px)
			scale(1.07);
	}

	.ph-marquee__item:hover
	.ph-marquee__label {
		color:
			#ffffff;

		transform:
			translateX(2px);
	}

	/*
	 * Pause only the hovered row.
	 */
	.ph-marquee__row:hover
	.ph-marquee__track {
		animation-play-state:
			paused;
	}
}

/* ==========================================================================
   OPTIONAL TOP / BOTTOM DETAIL
   ========================================================================== */

.ph-marquee__inner::before,
.ph-marquee__inner::after {
	position: absolute;

	right: 0;
	left: 0;

	z-index: 5;

	height: 1px;

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.2),
			transparent
		);

	content: "";

	pointer-events: none;
}

.ph-marquee__inner::before {
	top: 0;
}

.ph-marquee__inner::after {
	bottom: 0;
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1024px) {

	.ph-marquee {
		margin:
			28px
			0
			40px;

		padding:
			11px
			0;
	}

	.ph-marquee__row {
		min-height: 70px;
	}

	.ph-marquee__item {
		min-height: 63px;

		gap: 12px;

		padding-inline:
			22px;
	}

	.ph-marquee__icon {
		width: 43px;
		height: 43px;

		flex-basis: 43px;
	}

	.ph-marquee__icon svg {
		width: 27px;
		height: 27px;
	}

	.ph-marquee__label {
		font-size: 13.5px;
	}

	.ph-marquee__separator {
		height: 30px;
	}
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.ph-marquee {
		margin:
			22px
			0
			32px;

		padding:
			8px
			0;
	}

	.ph-marquee__row {
		min-height: 61px;
	}

	.ph-marquee__item {
		min-height: 56px;

		gap: 10px;

		padding:
			5px
			17px;
	}

	.ph-marquee__icon {
		width: 38px;
		height: 38px;

		flex-basis: 38px;
	}

	.ph-marquee__icon svg {
		width: 23px;
		height: 23px;
	}

	.ph-marquee__label {
		font-size: 12px;
	}

	.ph-marquee__separator {
		height: 25px;

		margin-inline: 4px;
	}

	.ph-marquee__group {
		padding-right: 28px;
	}

	.ph-marquee__row--right
	.ph-marquee__track {
		animation-duration:
			34s;
	}

	.ph-marquee__row--left
	.ph-marquee__track {
		animation-duration:
			37s;
	}
}

/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {

	.ph-marquee__item {
		padding-inline:
			14px;
	}

	.ph-marquee__label {
		font-size:
			11.5px;
	}

	.ph-marquee__icon {
		width:
			36px;

		height:
			36px;

		flex-basis:
			36px;
	}

	.ph-marquee__icon svg {
		width:
			22px;

		height:
			22px;
	}
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

	.ph-marquee__row {
		overflow-x:
			auto;

		scrollbar-width:
			none;
	}

	.ph-marquee__row::-webkit-scrollbar {
		display:
			none;
	}

	.ph-marquee__track {
		animation:
			none !important;

		transform:
			none !important;
	}

	.ph-marquee__group[aria-hidden="true"] {
		display:
			none;
	}
}
/* ==========================================================================
   PINHOLEIR DEPARTMENT / SERVICES SLIDER
   UPDATED - TOP ARROWS + SHORTER CARDS
   ========================================================================== */

.ph-services {
	--service-blue: #0b5cf6;
	--service-blue-dark: #0649d4;
	--service-navy: #092f6b;
	--service-text: #183c73;
	--service-border: rgba(22, 71, 153, 0.09);

	position: relative;
	width: 100%;

	padding:
		10px
		0
		65px;

	background: transparent;

	overflow: hidden;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.ph-services__container {
	position: relative;

	width: min(100% - 120px, 1400px);

	margin-inline: auto;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.ph-services__header {
	display: flex;
	flex-direction: column;
	align-items: center;

	margin-bottom: 28px;

	text-align: center;
}

/* ==========================================================================
   EYEBROW
   ========================================================================== */

.ph-services__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 164px;
	min-height: 40px;

	padding: 8px 22px;

	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 999px;

	background: rgba(255, 255, 255, 0.96);

	box-shadow:
		0 7px 20px rgba(19, 54, 113, 0.08);

	color: var(--service-blue);

	font-size: 12px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;
}

/* ==========================================================================
   HEADING - EXACTLY TWO LINES
   ========================================================================== */

.ph-services__title {
	width: 100%;
	max-width: 1080px;

	margin:
		22px
		auto
		0;

	color: var(--service-navy);

	font-size: clamp(42px, 3.25vw, 56px);
	font-weight: 760;
	line-height: 1.08;

	letter-spacing: -2.15px;

	text-align: center;
}

.ph-services__title-first,
.ph-services__title-second {
	display: block;
}

.ph-services__title-first {
	white-space: nowrap;
}

.ph-services__title-second {
	margin-top: 3px;
}

/* ==========================================================================
   SLIDER
   ========================================================================== */

.ph-services__slider {
	position: relative;

	width: 100%;

	/*
	 * This creates the blank strip ABOVE the cards
	 * where the arrows will sit.
	 */
	padding-top: 30px;
}

/* ==========================================================================
   VIEWPORT
   ========================================================================== */

.ph-services__viewport {
	position: relative;

	width: 100%;

	overflow: hidden;

	padding:
		6px
		4px
		18px;
}

/* ==========================================================================
   TRACK
   ========================================================================== */

.ph-services__track {
	display: flex;

	gap: 24px;

	transition:
		transform
		0.65s
		cubic-bezier(0.22, 1, 0.36, 1);

	will-change: transform;
}

/* ==========================================================================
   SERVICE CARD
   ========================================================================== */

.ph-service-card {
	position: relative;

	flex:
		0
		0
		calc((100% - 72px) / 4);

	min-width: 0;

	/*
	 * Reduced from 480-500px.
	 */
	height: 410px;

	overflow: hidden;

	border: 1px solid var(--service-border);
	border-radius: 26px;

	background: #ffffff;

	box-shadow:
		0 14px 32px rgba(21, 53, 108, 0.07),
		0 3px 8px rgba(21, 53, 108, 0.025);

	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.4s ease,
		border-color 0.35s ease;
}

/* ==========================================================================
   IMAGE
   ========================================================================== */

.ph-service-card__image {
	position: relative;

	display: block;

	width: calc(100% - 14px);
	height: 235px;

	margin:
		7px
		7px
		0;

	overflow: hidden;

	border-radius: 21px;

	background:
		linear-gradient(
			145deg,
			#eef4ff,
			#e2ecff
		);
}

.ph-service-card__photo {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transform: scale(1.001);

	transition:
		transform
		0.8s
		cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   IMAGE SHINE
   ========================================================================== */

.ph-service-card__image-shine {
	position: absolute;

	top: -50%;
	left: -70%;

	width: 42%;
	height: 210%;

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.28),
			transparent
		);

	transform: rotate(18deg);

	transition:
		left
		0.8s
		ease;

	pointer-events: none;
}

/* ==========================================================================
   PLACEHOLDER
   ========================================================================== */

.ph-service-card__placeholder {
	display: grid;

	width: 100%;
	height: 100%;

	place-items: center;

	background:
		linear-gradient(
			145deg,
			#eef4ff,
			#dfe9ff
		);
}

.ph-service-card__placeholder svg {
	width: 66px;
	height: 66px;

	fill: none;
	stroke: var(--service-blue);

	stroke-width: 1.4;

	opacity: 0.38;
}

/* ==========================================================================
   CARD BODY
   ========================================================================== */

.ph-service-card__body {
	position: relative;

	height: 168px;

	padding:
		20px
		24px
		20px;
}

/* ==========================================================================
   LABEL
   ========================================================================== */

.ph-service-card__label {
	display: inline-flex;
	align-items: center;

	min-height: 25px;

	padding:
		5px
		12px;

	border-radius: 999px;

	background: #f1f5ff;

	color: var(--service-blue);

	font-size: 9px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;

	white-space: nowrap;

	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease;
}

/* ==========================================================================
   CARD TITLE
   ========================================================================== */

.ph-service-card__title {
	max-width: 250px;

	margin:
		12px
		0
		0;

	font-size: 18px;
	font-weight: 760;
	line-height: 1.3;

	letter-spacing: -0.35px;
}

.ph-service-card__title a {
	color: var(--service-navy);

	text-decoration: none;

	transition:
		color
		0.3s
		ease;
}

/* ==========================================================================
   CARD ROUND ARROW
   ========================================================================== */

.ph-service-card__link {
	position: absolute;

	right: 18px;
	bottom: 16px;

	display: grid;

	width: 46px;
	height: 46px;

	place-items: center;

	border:
		1px
		solid
		rgba(11, 92, 246, 0.12);

	border-radius: 50%;

	background: #ffffff;

	box-shadow:
		0 7px 17px rgba(21, 64, 140, 0.1);

	color: var(--service-blue);

	text-decoration: none;

	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.35s ease,
		box-shadow 0.35s ease;
}

.ph-service-card__link svg {
	width: 21px;
	height: 21px;

	fill: none;
	stroke: currentColor;

	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ==========================================================================
   PREMIUM CARD HOVER
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {

	.ph-service-card:hover {
		border-color:
			rgba(11, 92, 246, 0.13);

		box-shadow:
			0 23px 50px rgba(21, 53, 108, 0.13);

		transform:
			translateY(-8px);
	}

	.ph-service-card:hover
	.ph-service-card__photo {
		transform:
			scale(1.055);
	}

	.ph-service-card:hover
	.ph-service-card__image-shine {
		left: 135%;
	}

	.ph-service-card:hover
	.ph-service-card__label {
		background:
			var(--service-blue);

		color:
			#ffffff;
	}

	.ph-service-card:hover
	.ph-service-card__title a {
		color:
			var(--service-blue);
	}

	.ph-service-card:hover
	.ph-service-card__link {
		background:
			var(--service-blue);

		color:
			#ffffff;

		box-shadow:
			0 12px 25px rgba(11, 92, 246, 0.24);

		transform:
			translateY(-3px)
			scale(1.06);
	}
}

/* ==========================================================================
   PREVIOUS / NEXT ARROWS
   EXACT POSITION YOU MARKED
   ========================================================================== */

.ph-services__arrow {
	position: absolute;

	/*
	 * Cards begin after 72px padding.
	 *
	 * Arrow sits inside that blank area,
	 * ABOVE the cards.
	 */
	top: -50px;

	z-index: 30;

	display: grid;

	width: 56px;
	height: 56px;

	padding: 0;

	place-items: center;

	border:
		1px
		solid
		rgba(11, 92, 246, 0.1);

	border-radius: 50%;

	background:
		rgba(255, 255, 255, 0.98);

	box-shadow:
		0 12px 28px rgba(20, 53, 110, 0.11),
		0 2px 6px rgba(20, 53, 110, 0.03);

	color:
		var(--service-blue);

	cursor: pointer;

	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		box-shadow 0.35s ease,
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.3s ease;
}

/*
 * LEFT arrow in the area you marked.
 */

.ph-services__arrow--prev {
	left: 30px;
}

/*
 * RIGHT arrow in the area you marked.
 */

.ph-services__arrow--next {
	right: 30px;
}

.ph-services__arrow svg {
	width: 27px;
	height: 27px;

	fill: none;
	stroke: currentColor;

	stroke-width: 2.1;
	stroke-linecap: round;
	stroke-linejoin: round;

	transition:
		transform
		0.3s
		ease;
}

/* ==========================================================================
   ARROW HOVER
   ========================================================================== */

.ph-services__arrow:hover {
	background:
		var(--service-blue);

	color:
		#ffffff;

	box-shadow:
		0 16px 34px rgba(11, 92, 246, 0.23);

	transform:
		translateY(-3px)
		scale(1.06);
}

.ph-services__arrow--prev:hover svg {
	transform:
		translateX(-2px);
}

.ph-services__arrow--next:hover svg {
	transform:
		translateX(2px);
}

.ph-services__arrow:disabled {
	opacity: 0.28;

	cursor: default;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.ph-services__pagination {
	display: flex;
	align-items: center;
	justify-content: center;

	gap: 11px;

	margin-top: 8px;
}

.ph-services__dot {
	width: 10px;
	height: 10px;

	padding: 0;

	border: 0;
	border-radius: 50%;

	background:
		#ccd8f8;

	cursor: pointer;

	transition:
		background-color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.ph-services__dot:hover {
	background:
		#9bb7fa;

	transform:
		scale(1.12);
}

.ph-services__dot.is-active {
	background:
		var(--service-blue);

	box-shadow:
		0 0 0 4px rgba(11, 92, 246, 0.08);

	transform:
		scale(1.1);
}

/* ==========================================================================
   ENTRANCE
   ========================================================================== */

.ph-service-reveal {
	opacity: 0;

	transform:
		translateY(30px);

	transition:
		opacity 0.7s ease,
		transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-service-reveal.is-visible {
	opacity: 1;

	transform:
		translateY(0);
}

.ph-services__eyebrow.ph-service-reveal {
	transition-delay: 0.04s;
}

.ph-services__title.ph-service-reveal {
	transition-delay: 0.1s;
}

.ph-services__slider.ph-service-reveal {
	transition-delay: 0.18s;
}

/* card stagger */

.ph-services__slider.is-visible
.ph-service-card {
	animation:
		phServiceCardEntrance
		0.72s
		cubic-bezier(0.22, 1, 0.36, 1)
		both;

	animation-delay:
		calc(
			var(--card-index) *
			65ms
		);
}

@keyframes phServiceCardEntrance {

	from {
		opacity: 0;

		transform:
			translateY(30px)
			scale(0.975);
	}

	to {
		opacity: 1;

		transform:
			translateY(0)
			scale(1);
	}
}

/* ==========================================================================
   LAPTOP
   ========================================================================== */

@media (max-width: 1450px) {

	.ph-services__container {
		width:
			min(
				100% - 90px,
				1260px
			);
	}

	.ph-services__title {
		max-width: 950px;

		font-size: 48px;
	}

	.ph-service-card {
		height: 390px;
	}

	.ph-service-card__image {
		height: 220px;
	}

	.ph-service-card__body {
		height: 163px;
	}

	.ph-service-card__title {
		font-size: 17px;
	}

	.ph-services__slider {
		padding-top: 65px;
	}

	.ph-services__arrow {
		top: 0px;

		width: 52px;
		height: 52px;
	}

	.ph-services__arrow--prev {
		left: 24px;
	}

	.ph-services__arrow--next {
		right: 24px;
	}
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1024px) {

	.ph-services {
		padding:
			52px
			0
			58px;
	}

	.ph-services__container {
		width:
			calc(100% - 44px);
	}

	.ph-services__title {
		max-width: 730px;

		font-size: 40px;
	}

	.ph-services__title-first {
		white-space: normal;
	}

	.ph-service-card {
		flex:
			0
			0
			calc((100% - 24px) / 2);

		height: 400px;
	}

	.ph-service-card__image {
		height: 225px;
	}

	.ph-service-card__body {
		height: 168px;
	}

	.ph-services__slider {
		padding-top: 62px;
	}

	.ph-services__arrow {
		top: 16px;

		width: 48px;
		height: 48px;
	}

	.ph-services__arrow--prev {
		left: 15px;
	}

	.ph-services__arrow--next {
		right: 15px;
	}
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.ph-services {
		padding:
			43px
			0
			50px;
	}

	.ph-services__container {
		width:
			calc(100% - 28px);
	}

	.ph-services__header {
		margin-bottom:
			22px;
	}

	.ph-services__eyebrow {
		min-width: 145px;
		min-height: 36px;

		font-size: 10.5px;
	}

	.ph-services__title {
		max-width: 390px;

		margin-top: 18px;

		font-size: 33px;
		line-height: 1.1;

		letter-spacing: -1.3px;
	}

	.ph-services__title-first {
		white-space: normal;
	}

	.ph-services__slider {
		padding-top: 56px;
	}

	.ph-services__viewport {
		padding-inline: 3px;
	}

	.ph-services__track {
		gap: 16px;
	}

	.ph-service-card {
		flex:
			0
			0
			calc(100% - 26px);

		height: 395px;

		border-radius: 23px;
	}

	.ph-service-card__image {
		height: 220px;

		border-radius: 18px;
	}

	.ph-service-card__body {
		height: 168px;

		padding:
			19px
			21px
			19px;
	}

	.ph-service-card__title {
		font-size: 17px;
	}

	.ph-service-card__link {
		right: 16px;
		bottom: 15px;

		width: 44px;
		height: 44px;
	}

	.ph-services__arrow {
		top: 12px;

		width: 44px;
		height: 44px;
	}

	.ph-services__arrow svg {
		width: 23px;
		height: 23px;
	}

	.ph-services__arrow--prev {
		left: 8px;
	}

	.ph-services__arrow--next {
		right: 8px;
	}

	.ph-services__pagination {
		margin-top: 6px;
	}
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

	.ph-service-reveal,
	.ph-service-card {
		opacity: 1 !important;

		animation: none !important;
		transition-duration: 0.01ms !important;

		transform: none !important;
	}

	.ph-services__track {
		transition-duration: 0.01ms !important;
	}
}
/* ==========================================================================
   PINHOLEIR DOCTOR INTRO SECTION
   ========================================================================== */

.ph-doctor {
	--doctor-blue: #0b5cf6;
	--doctor-navy: #071e58;
	--doctor-text: #34466e;
	--doctor-gold: #d79300;

	position: relative;

	width: calc(100% - 32px);
	max-width: 1580px;

	min-height: 700px;

	margin:
		45px
		auto;

	overflow: hidden;

	border: 1px solid rgba(55, 88, 160, 0.05);

	background:
		radial-gradient(
			circle at 77% 20%,
			rgba(210, 219, 255, 0.35),
			transparent 42%
		),
		radial-gradient(
			circle at 14% 48%,
			rgba(216, 224, 255, 0.45),
			transparent 36%
		),
		linear-gradient(
			120deg,
			#f8f8ff 0%,
			#f4f5ff 45%,
			#fafaff 100%
		);

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95);

	isolation: isolate;
}

/* ==========================================================================
   DECORATION
   ========================================================================== */

.ph-doctor__decor {
	position: absolute;
	inset: 0;

	z-index: 0;

	pointer-events: none;
}

.ph-doctor__decor-glow {
	position: absolute;

	top: -150px;
	right: 8%;

	width: 650px;
	height: 600px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(187, 201, 255, 0.24),
			transparent 70%
		);
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.ph-doctor__container {
	position: relative;
	z-index: 2;

	display: grid;

	grid-template-columns:
		35%
		65%;

	width: min(100% - 95px, 1450px);
	min-height: 700px;

	margin-inline: auto;
}

/* ==========================================================================
   LEFT VISUAL
   ========================================================================== */

.ph-doctor__visual {
	display: flex;
	align-items: center;

	padding:
		40px
		34px
		40px
		0;
}

.ph-doctor__visual-card {
	position: relative;

	width: 100%;
	max-width: 470px;
	height: 640px;

	margin-inline: auto;

	overflow: hidden;

	border-radius: 30px;

	background:
		linear-gradient(
			145deg,
			#f5f5ff,
			#ededff
		);

	box-shadow:
		0 20px 45px rgba(22, 43, 105, 0.07);

	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s ease;
}

/* pale circle */

.ph-doctor__visual-circle {
	position: absolute;

	top: 48px;
	left: 30px;

	width: 385px;
	height: 385px;

	border-radius: 50%;

	background:
		linear-gradient(
			145deg,
			rgba(216, 220, 255, 0.76),
			rgba(239, 240, 255, 0.54)
		);
}

/* dotted accent */

.ph-doctor__visual-dots {
	position: absolute;

	top: 170px;
	left: 50px;

	width: 90px;
	height: 100px;

	opacity: 0.17;

	background-image:
		radial-gradient(
			circle,
			#4773ff 1.4px,
			transparent 1.7px
		);

	background-size:
		13px
		13px;
}

/* vertical blue accent */

.ph-doctor__vertical-line {
	position: absolute;

	top: 210px;
	left: 22px;

	z-index: 5;

	width: 2px;
	height: 340px;

	background:
		linear-gradient(
			180deg,
			transparent,
			#1d64ff 14%,
			#1d64ff 86%,
			transparent
		);
}

/* lower blue block */

.ph-doctor__blue-corner {
	position: absolute;

	right: -70px;
	bottom: -72px;

	width: 210px;
	height: 210px;

	border-radius:
		65%
		0
		0
		0;

	background:
		linear-gradient(
			145deg,
			#315dff,
			#173df0
		);

	transform:
		rotate(-8deg);
}

/* ==========================================================================
   DOCTOR IMAGE
   ========================================================================== */

.ph-doctor__photo {
	position: absolute;

	right: 0;
	bottom: 0;
	left: 0;

	z-index: 6;

	display: block;

	width: 95%;
	height: 96%;

	margin-inline: auto;

	object-fit: contain;
	object-position: center bottom;

	filter:
		drop-shadow(
			0 15px 25px
			rgba(20, 39, 93, 0.08)
		);

	transform-origin: center bottom;

	transition:
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.5s ease;
}

/* ==========================================================================
   LEFT HOVER
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {

	.ph-doctor__visual-card:hover {
		box-shadow:
			0 27px 58px rgba(22, 43, 105, 0.12);

		transform:
			translateY(-6px);
	}

	.ph-doctor__visual-card:hover
	.ph-doctor__photo {
		transform:
			scale(1.025);

		filter:
			drop-shadow(
				0 20px 30px
				rgba(20, 39, 93, 0.12)
			);
	}
}

/* ==========================================================================
   RIGHT CONTENT
   ========================================================================== */

.ph-doctor__content {
	display: flex;
	flex-direction: column;
	justify-content: center;

	min-width: 0;

	padding:
		58px
		0
		52px
		34px;
}

/* ==========================================================================
   BADGE
   ========================================================================== */

.ph-doctor__badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;

	gap: 8px;

	min-height: 34px;

	padding:
		5px
		15px
		5px
		8px;

	border: 1px solid rgba(31, 82, 255, 0.52);
	border-radius: 999px;

	background:
		rgba(255, 255, 255, 0.48);

	color: #102a66;

	font-size: 11px;
	font-weight: 700;
	line-height: 1;

	text-transform: uppercase;

	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);

	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.ph-doctor__badge-icon {
	display: grid;

	width: 22px;
	height: 22px;

	place-items: center;

	border: 1px solid var(--doctor-blue);
	border-radius: 50%;

	color: var(--doctor-blue);
}

.ph-doctor__badge-icon svg {
	width: 16px;
	height: 16px;

	fill: none;
	stroke: currentColor;

	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ph-doctor__badge:hover {
	background: #ffffff;

	box-shadow:
		0 9px 22px rgba(11, 92, 246, 0.1);

	transform:
		translateY(-2px);
}

/* ==========================================================================
   SIGNATURE
   ========================================================================== */

.ph-doctor__signature {
	width: 100%;
	max-width: 700px;

	margin-top: 28px;
}

.ph-doctor__signature img {
	display: block;

	width: 100%;
	height: auto;

	max-height: 118px;

	object-fit: contain;
	object-position: left center;
}

/* ==========================================================================
   SPECIALITY
   ========================================================================== */

.ph-doctor__speciality {
	margin:
		12px
		0
		0;

	color: #182d61;

	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;

	letter-spacing: 4px;

	text-transform: uppercase;
}

.ph-doctor__speciality-line {
	display: block;

	width: 42px;
	height: 2px;

	margin:
		13px
		0
		25px
		165px;

	border-radius: 999px;

	background:
		var(--doctor-blue);
}

/* ==========================================================================
   ASSOCIATIONS - ONE SINGLE IMAGE
   ========================================================================== */

.ph-doctor__associations {
	position: relative;

	width: 100%;
	max-width: 880px;

	margin-top: 0;

	overflow: visible;
}

.ph-doctor__associations-image {
	display: block;

	width: 100%;
	height: auto;

	max-height: 118px;

	object-fit: contain;
	object-position: left center;

	filter:
		drop-shadow(
			0 6px 12px
			rgba(18, 54, 120, 0.035)
		);

	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {

	.ph-doctor__associations:hover
	.ph-doctor__associations-image {
		filter:
			drop-shadow(
				0 12px 18px
				rgba(18, 54, 120, 0.09)
			);

		transform:
			translateY(-3px);
	}
}

/* ==========================================================================
   DIVIDER
   ========================================================================== */

.ph-doctor__divider {
	width: 100%;
	max-width: 875px;
	height: 1px;

	margin:
		24px
		0
		29px;

	background:
		linear-gradient(
			90deg,
			rgba(24, 52, 112, 0.18),
			rgba(24, 52, 112, 0.12),
			transparent
		);
}

/* ==========================================================================
   QUALIFICATION
   ========================================================================== */

.ph-doctor__qualification {
	position: relative;

	display: flex;
	align-items: stretch;

	gap: 14px;

	width: 100%;
	max-width: 870px;
}

.ph-doctor__qualification-line {
	width: 2px;

	flex: 0 0 2px;

	background:
		linear-gradient(
			180deg,
			#d29a00,
			#e9b118
		);
}

.ph-doctor__qualification p {
	margin: 0;

	color:
		var(--doctor-gold);

	font-size: 13px;
	font-weight: 600;
	line-height: 1.55;

	text-transform: uppercase;
}

/* ==========================================================================
   DESCRIPTION
   ========================================================================== */

.ph-doctor__description {
	width: 100%;
	max-width: 880px;

	margin-top: 27px;
}

.ph-doctor__description p {
	margin: 0;

	color:
		var(--doctor-text);

	font-size: 16px;
	font-weight: 500;
	line-height: 1.72;
}

/* ==========================================================================
   ENTRANCE
   ========================================================================== */

.ph-doctor-reveal {
	opacity: 0;

	transition:
		opacity 0.8s ease,
		transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-doctor-reveal[data-doctor-reveal="left"] {
	transform:
		translateX(-55px);
}

.ph-doctor-reveal[data-doctor-reveal="right"] {
	transform:
		translateX(45px);
}

.ph-doctor-reveal[data-doctor-reveal="up"] {
	transform:
		translateY(32px);
}

.ph-doctor-reveal[data-doctor-reveal="scale"] {
	transform:
		scaleX(0);

	transform-origin:
		left center;
}

.ph-doctor-reveal.is-visible {
	opacity: 1;

	transform:
		translate(0, 0)
		scale(1);
}

.ph-doctor__visual.ph-doctor-reveal {
	transition-delay: 0.04s;
}

.ph-doctor__badge.ph-doctor-reveal {
	transition-delay: 0.1s;
}

.ph-doctor__signature.ph-doctor-reveal {
	transition-delay: 0.17s;
}

.ph-doctor__speciality.ph-doctor-reveal {
	transition-delay: 0.23s;
}

.ph-doctor__speciality-line.ph-doctor-reveal {
	transition-delay: 0.28s;
}

.ph-doctor__associations.ph-doctor-reveal {
	transition-delay: 0.34s;
}

.ph-doctor__divider.ph-doctor-reveal {
	transition-delay: 0.4s;
}

.ph-doctor__qualification.ph-doctor-reveal {
	transition-delay: 0.46s;
}

.ph-doctor__description.ph-doctor-reveal {
	transition-delay: 0.52s;
}

/* ==========================================================================
   LAPTOP
   ========================================================================== */

@media (max-width: 1366px) {

	.ph-doctor {
		min-height: 630px;
	}

	.ph-doctor__container {
		grid-template-columns:
			36%
			64%;

		width:
			min(
				100% - 72px,
				1220px
			);

		min-height: 630px;
	}

	.ph-doctor__visual {
		padding-right:
			24px;
	}

	.ph-doctor__visual-card {
		max-width:
			410px;

		height:
			560px;
	}

	.ph-doctor__visual-circle {
		width:
			335px;

		height:
			335px;
	}

	.ph-doctor__content {
		padding-left:
			24px;
	}

	.ph-doctor__signature {
		max-width:
			610px;

		margin-top:
			22px;
	}

	.ph-doctor__signature img {
		max-height:
			98px;
	}

	.ph-doctor__associations {
		max-width:
			790px;
	}

	.ph-doctor__associations-image {
		max-height:
			105px;
	}

	.ph-doctor__qualification p {
		font-size:
			12px;
	}

	.ph-doctor__description p {
		font-size:
			16px;
	}
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1024px) {

	.ph-doctor {
		width:
			calc(100% - 24px);

		min-height:
			auto;

		margin:
			36px
			auto;
	}

	.ph-doctor__container {
		grid-template-columns:
			1fr;

		width:
			calc(100% - 60px);

		min-height:
			0;

		padding:
			55px
			0;
	}

	.ph-doctor__visual {
		padding:
			0
			0
			42px;
	}

	.ph-doctor__visual-card {
		max-width:
			470px;

		height:
			600px;
	}

	.ph-doctor__content {
		padding: 0;
	}

	.ph-doctor__signature {
		max-width:
			680px;
	}

	.ph-doctor__associations {
		max-width:
			100%;
	}

	.ph-doctor__associations-image {
		max-height:
			115px;
	}

	.ph-doctor__divider,
	.ph-doctor__qualification,
	.ph-doctor__description {
		max-width:
			100%;
	}
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.ph-doctor {
		width:
			calc(100% - 16px);

		margin:
			28px
			auto;
	}

	.ph-doctor__container {
		width:
			calc(100% - 32px);

		padding:
			40px
			0;
	}

	.ph-doctor__visual {
		padding-bottom:
			34px;
	}

	.ph-doctor__visual-card {
		max-width:
			390px;

		height:
			500px;

		border-radius:
			24px;
	}

	.ph-doctor__visual-circle {
		top:
			45px;

		left:
			15px;

		width:
			320px;

		height:
			320px;
	}

	.ph-doctor__vertical-line {
		left:
			14px;

		height:
			280px;
	}

	.ph-doctor__badge {
		font-size:
			9px;
	}

	.ph-doctor__signature {
		margin-top:
			21px;
	}

	.ph-doctor__signature img {
		max-height:
			82px;
	}

	.ph-doctor__speciality {
		font-size:
			11px;

		letter-spacing:
			2.6px;
	}

	.ph-doctor__speciality-line {
		margin-left:
			90px;
	}

	.ph-doctor__associations {
		margin-top:
			4px;
	}

	.ph-doctor__associations-image {
		width:
			100%;

		max-height:
			none;
	}

	.ph-doctor__divider {
		margin:
			21px
			0
			24px;
	}

	.ph-doctor__qualification p {
		font-size:
			10.5px;
	}

	.ph-doctor__description {
		margin-top:
			22px;
	}

	.ph-doctor__description p {
		font-size:
			16px;
	}
}

/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {

	.ph-doctor__visual-card {
		height:
			440px;
	}

	.ph-doctor__visual-circle {
		width:
			270px;

		height:
			270px;
	}

	.ph-doctor__photo {
		width:
			100%;
	}

	.ph-doctor__signature img {
		max-height:
			72px;
	}

	.ph-doctor__speciality {
		letter-spacing:
			2px;
	}

	.ph-doctor__qualification p br {
		display:
			none;
	}
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

	.ph-doctor-reveal {
		opacity:
			1 !important;

		transform:
			none !important;

		transition:
			none !important;
	}

	.ph-doctor__photo,
	.ph-doctor__associations-image {
		transition:
			none !important;
	}
}
/* ==========================================================================
   PINHOLEIR - EXPERT DOCTORS
   FINAL UPDATED STYLE
   ========================================================================== */

.ph-doctors {
	--doctors-blue: #0b5cf6;
	--doctors-blue-dark: #0648d2;
	--doctors-deep: #061b60;
	--doctors-card-bg: #f4f5ff;

	position: relative;

	width: 100%;

	padding:
		10px
		0
		70px;

	overflow: hidden;

}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.ph-doctors__container {
	position: relative;

	width: min(100% - 120px, 1400px);

	margin-inline: auto;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.ph-doctors__header {
	display: flex;
	flex-direction: column;
	align-items: center;

	margin-bottom: 25px;

	text-align: center;
}

/* ==========================================================================
   TEAM MEMBERS PILL
   ========================================================================== */

.ph-doctors__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 15px;

	min-height: 38px;

	padding:
		7px
		18px;

	border-radius: 999px;

	background:
		rgba(255, 255, 255, 0.96);

	box-shadow:
		0 8px 23px rgba(27, 49, 111, 0.08);

	color: var(--doctors-blue);

	font-size: 11px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;
}

.ph-doctors__eyebrow-dot {
	display: block;

	width: 6px;
	height: 6px;

	flex: 0 0 6px;

	border-radius: 50%;

	background: #6580ff;
}

/* ==========================================================================
   TITLE
   ========================================================================== */

.ph-doctors__title {
	margin:
		20px
		0
		0;

	color: var(--doctors-deep);

	font-family:
		Georgia,
		'Times New Roman',
		serif;

	font-size:
		clamp(
			42px,
			3.25vw,
			56px
		);

	font-weight: 700;
	line-height: 1.05;

	letter-spacing: -1.7px;
}

/* ==========================================================================
   TITLE MARK
   ========================================================================== */

.ph-doctors__title-mark {
	display: flex;
	align-items: center;
	justify-content: center;

	gap: 4px;

	margin-top: 15px;
}

.ph-doctors__title-mark span {
	width: 29px;
	height: 2px;

	border-radius: 999px;

	background: #4970ff;
}

.ph-doctors__title-mark i {
	width: 5px;
	height: 5px;

	border-radius: 50%;

	background: #4970ff;
}

/* ==========================================================================
   SLIDER
   ========================================================================== */

.ph-doctors__slider {
	position: relative;

	width: 100%;

	/*
	 * IMPORTANT.
	 *
	 * This creates the exact empty horizontal strip
	 * above the doctor cards for the Previous/Next buttons.
	 */
	padding-top: 20px;
}

/* ==========================================================================
   VIEWPORT
   ========================================================================== */

.ph-doctors__viewport {
	position: relative;

	width: 100%;

	overflow: hidden;

	padding:
		7px
		4px
		20px;
}

/* ==========================================================================
   TRACK
   ========================================================================== */

.ph-doctors__track {
	display: flex;

	gap: 18px;

	transition:
		transform
		0.68s
		cubic-bezier(0.22, 1, 0.36, 1);

	will-change: transform;
}

/* ==========================================================================
   CARD
   ========================================================================== */

.ph-doctor-card {
	position: relative;

	flex:
		0
		0
		calc((100% - 54px) / 4);

	height: 455px;

	overflow: hidden;

	border:
		2px
		solid
		rgba(255, 255, 255, 0.95);

	border-radius: 19px;

	background: var(--doctors-card-bg);

	box-shadow:
		0 15px 34px rgba(25, 44, 110, 0.08);

	transform:
		translateY(0)
		scale(1);

	transition:
		transform
		0.5s
		cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow
		0.45s
		ease,
		border-color
		0.35s
		ease;
}

/* ==========================================================================
   FULL CARD LINK
   ========================================================================== */

.ph-doctor-card__main-link {
	position: absolute;

	inset: 0;

	z-index: 2;

	display: block;

	color: inherit;

	text-decoration: none;
}

/* ==========================================================================
   BACKGROUND DESIGN
   ========================================================================== */

.ph-doctor-card__decor {
	position: absolute;

	inset: 0;

	z-index: 0;

	overflow: hidden;

	background:
		linear-gradient(
			145deg,
			#f8f7ff 0%,
			#eceeff 100%
		);

	pointer-events: none;
}

/* angular background */

.ph-doctor-card__shape {
	position: absolute;

	top: 62px;
	left: 20px;

	width: 255px;
	height: 250px;

	background:
		rgba(211, 216, 255, 0.43);

	clip-path:
		polygon(
			0 18%,
			34% 0,
			100% 52%,
			61% 100%,
			0 72%
		);
}

/* dotted decoration */

.ph-doctor-card__dots {
	position: absolute;

	top: 125px;
	right: 12px;

	width: 47px;
	height: 48px;

	opacity: 0.36;

	background-image:
		radial-gradient(
			circle,
			#7389ff 1.1px,
			transparent 1.35px
		);

	background-size:
		7px
		7px;
}

/* ==========================================================================
   IMAGE
   ========================================================================== */

.ph-doctor-card__image {
	position: absolute;

	inset: 0;

	z-index: 2;

	overflow: hidden;
}

.ph-doctor-card__photo {
	position: absolute;

	inset: 0;

	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center top;

	transform:
		scale(1.001);

	transition:
		transform
		0.8s
		cubic-bezier(0.22, 1, 0.36, 1),
		filter
		0.45s
		ease;
}

/* ==========================================================================
   BLUE LOWER GRADIENT
   ========================================================================== */

.ph-doctor-card__gradient {
	position: absolute;

	right: 0;
	bottom: 0;
	left: 0;

	z-index: 3;

	height: 50%;

	pointer-events: none;

	background:
		linear-gradient(
			180deg,
			rgba(94, 107, 255, 0) 0%,
			rgba(94, 107, 255, 0.12) 17%,
			rgba(82, 95, 255, 0.38) 37%,
			rgba(71, 84, 252, 0.73) 64%,
			#3e50f4 100%
		);

	transition:
		height 0.45s ease,
		filter 0.45s ease;
}

/* ==========================================================================
   CONTENT
   ========================================================================== */

.ph-doctor-card__content {
	position: absolute;

	right: 0;
	bottom: 0;
	left: 0;

	z-index: 5;

	padding:
		0
		22px
		21px;
}

.ph-doctor-card__name {
	margin: 0;

	color: #ffffff;

	font-family:
		Georgia,
		'Times New Roman',
		serif;

	font-size: 21px;
	font-weight: 700;
	line-height: 1.22;

	text-shadow:
		0 3px 9px rgba(10, 22, 83, 0.16);

	transition:
		transform 0.35s ease;
}

/* ==========================================================================
   SPECIALITY
   ========================================================================== */

.ph-doctor-card__speciality {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 27px;

	margin-top: 9px;

	padding:
		5px
		13px;

	border-radius: 999px;

	background: #ffffff;

	box-shadow:
		0 5px 13px rgba(10, 25, 93, 0.08);

	color: #0b2c76;

	font-size: 9px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;

	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.35s ease;
}

/* ==========================================================================
   SOCIAL ICONS
   HIDDEN NORMALLY
   ========================================================================== */

.ph-doctor-card__socials {
	position: absolute;

	top: 14px;
	right: 14px;

	z-index: 20;

	display: flex;
	align-items: center;

	gap: 6px;

	opacity: 0;

	transform:
		translateY(-14px)
		scale(0.96);

	pointer-events: none;

	transition:
		opacity 0.35s ease,
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-doctor-card__socials a {
	display: grid;

	width: 31px;
	height: 31px;

	place-items: center;

	border:
		1px
		solid
		rgba(25, 67, 145, 0.07);

	border-radius: 50%;

	background:
		rgba(255, 255, 255, 0.96);

	box-shadow:
		0 6px 15px rgba(20, 44, 102, 0.09);

	color: #163a84;

	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.ph-doctor-card__socials svg {
	width: 15px;
	height: 15px;

	fill: none;
	stroke: currentColor;

	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ==========================================================================
   PREMIUM CARD HOVER
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {

	.ph-doctor-card:hover {
		border-color:
			rgba(255, 255, 255, 1);

		box-shadow:
			0 29px 60px rgba(26, 42, 112, 0.18),
			0 5px 13px rgba(26, 42, 112, 0.04);

		transform:
			translateY(-11px)
			scale(1.015);
	}

	.ph-doctor-card:hover
	.ph-doctor-card__photo {
		filter:
			saturate(1.04)
			contrast(1.015);

		transform:
			scale(1.055);
	}

	.ph-doctor-card:hover
	.ph-doctor-card__gradient {
		height: 56%;

		filter:
			saturate(1.08);
	}

	.ph-doctor-card:hover
	.ph-doctor-card__socials {
		opacity: 1;

		transform:
			translateY(0)
			scale(1);

		pointer-events: auto;
	}

	.ph-doctor-card:hover
	.ph-doctor-card__name {
		transform:
			translateY(-3px);
	}

	.ph-doctor-card:hover
	.ph-doctor-card__speciality {
		background:
			#ffffff;

		color:
			var(--doctors-blue);

		transform:
			translateY(-3px);
	}

	.ph-doctor-card__socials a:hover {
		background:
			var(--doctors-blue);

		color:
			#ffffff;

		box-shadow:
			0 9px 20px rgba(11, 92, 246, 0.28);

		transform:
			translateY(-3px)
			scale(1.08);
	}
}

/* ==========================================================================
   PREVIOUS / NEXT
   EXACTLY ABOVE CARDS
   ========================================================================== */

.ph-doctors__arrow {
	position: absolute;

	/*
	 * This is the location you highlighted.
	 * Inside the empty strip ABOVE cards.
	 */
	top: -50px;

	z-index: 30;

	display: grid;

	width: 54px;
	height: 54px;

	padding: 0;

	place-items: center;

	border:
		1px
		solid
		rgba(11, 92, 246, 0.08);

	border-radius: 50%;

	background:
		rgba(255, 255, 255, 0.98);

	box-shadow:
		0 11px 27px rgba(22, 50, 113, 0.1);

	color:
		var(--doctors-blue);

	cursor: pointer;

	transform: none;

	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease,
		opacity 0.3s ease;
}

/*
 * EXACT LEFT / RIGHT areas from your screenshot.
 */

.ph-doctors__arrow--prev {
	left: 42px;
}

.ph-doctors__arrow--next {
	right: 42px;
}

.ph-doctors__arrow svg {
	width: 27px;
	height: 27px;

	fill: none;
	stroke: currentColor;

	stroke-width: 2.15;
	stroke-linecap: round;
	stroke-linejoin: round;

	transition:
		transform 0.3s ease;
}

.ph-doctors__arrow:hover {
	background:
		var(--doctors-blue);

	color:
		#ffffff;

	box-shadow:
		0 16px 32px rgba(11, 92, 246, 0.23);

	transform:
		translateY(-3px)
		scale(1.07);
}

.ph-doctors__arrow--prev:hover svg {
	transform:
		translateX(-2px);
}

.ph-doctors__arrow--next:hover svg {
	transform:
		translateX(2px);
}

.ph-doctors__arrow:disabled {
	opacity: 0.28;

	cursor: default;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.ph-doctors__pagination {
	display: flex;
	align-items: center;
	justify-content: center;

	gap: 12px;

	margin-top: 13px;
}

.ph-doctors__dot {
	width: 10px;
	height: 10px;

	padding: 0;

	border: 0;
	border-radius: 50%;

	background: #d2d8f1;

	cursor: pointer;

	transition:
		background-color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.ph-doctors__dot:hover {
	background:
		#9cb3f8;

	transform:
		scale(1.12);
}

.ph-doctors__dot.is-active {
	background:
		var(--doctors-blue);

	box-shadow:
		0 0 0 4px rgba(11, 92, 246, 0.08);

	transform:
		scale(1.08);
}

/* ==========================================================================
   ENTRANCE
   ========================================================================== */

.ph-doctors-reveal {
	opacity: 0;

	transform:
		translateY(29px);

	transition:
		opacity
		0.72s
		ease,
		transform
		0.86s
		cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-doctors-reveal.is-visible {
	opacity: 1;

	transform:
		translateY(0);
}

.ph-doctors__eyebrow.ph-doctors-reveal {
	transition-delay:
		0.04s;
}

.ph-doctors__title.ph-doctors-reveal {
	transition-delay:
		0.1s;
}

.ph-doctors__title-mark.ph-doctors-reveal {
	transition-delay:
		0.15s;
}

.ph-doctors__slider.ph-doctors-reveal {
	transition-delay:
		0.2s;
}

/* ==========================================================================
   CARD STAGGER
   ========================================================================== */

.ph-doctors__slider.is-visible
.ph-doctor-card {
	animation:
		phDoctorCardEntrance
		0.75s
		cubic-bezier(0.22, 1, 0.36, 1)
		both;

	animation-delay:
		calc(
			var(--doctor-index) *
			70ms
		);
}

@keyframes phDoctorCardEntrance {

	from {
		opacity: 0;

		transform:
			translateY(34px)
			scale(0.975);
	}

	to {
		opacity: 1;

		transform:
			translateY(0)
			scale(1);
	}
}

/* ==========================================================================
   LAPTOP
   ========================================================================== */

@media (max-width: 1450px) {

	.ph-doctors__container {
		width:
			min(
				100% - 90px,
				1260px
			);
	}

	.ph-doctor-card {
		height: 425px;
	}

	.ph-doctors__slider {
		padding-top: 62px;
	}

	.ph-doctors__arrow {
		top: 8px;

		width: 51px;
		height: 51px;
	}

	.ph-doctors__arrow--prev {
		left: 30px;
	}

	.ph-doctors__arrow--next {
		right: 30px;
	}

	.ph-doctor-card__name {
		font-size: 19px;
	}
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1024px) {

	.ph-doctors {
		padding:
			55px
			0
			60px;
	}

	.ph-doctors__container {
		width:
			calc(100% - 46px);
	}

	.ph-doctor-card {
		flex:
			0
			0
			calc((100% - 18px) / 2);

		height: 450px;
	}

	.ph-doctors__slider {
		padding-top: 58px;
	}

	.ph-doctors__arrow {
		top: 7px;

		width: 47px;
		height: 47px;
	}

	.ph-doctors__arrow--prev {
		left: 15px;
	}

	.ph-doctors__arrow--next {
		right: 15px;
	}

	/*
	 * Touch devices:
	 * socials visible because hover isn't reliable.
	 */

	.ph-doctor-card__socials {
		opacity: 1;

		transform: none;

		pointer-events: auto;
	}
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.ph-doctors {
		padding:
			46px
			0
			52px;
	}

	.ph-doctors__container {
		width:
			calc(100% - 28px);
	}

	.ph-doctors__header {
		margin-bottom: 20px;
	}

	.ph-doctors__title {
		font-size: 35px;
	}

	.ph-doctors__slider {
		padding-top: 54px;
	}

	.ph-doctors__track {
		gap: 15px;
	}

	.ph-doctor-card {
		flex:
			0
			0
			calc(100% - 28px);

		height: 440px;
	}

	.ph-doctors__arrow {
		top: 6px;

		width: 43px;
		height: 43px;
	}

	.ph-doctors__arrow svg {
		width: 23px;
		height: 23px;
	}

	.ph-doctors__arrow--prev {
		left: 7px;
	}

	.ph-doctors__arrow--next {
		right: 7px;
	}

	.ph-doctor-card__content {
		padding:
			0
			19px
			20px;
	}

	.ph-doctor-card__name {
		font-size: 19px;
	}
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

	.ph-doctors-reveal,
	.ph-doctor-card {
		opacity: 1 !important;

		transform: none !important;

		animation: none !important;

		transition: none !important;
	}

	.ph-doctors__track {
		transition: none !important;
	}
}
/* ==========================================================================
   PINHOLEIR SOCIAL MEDIA SECTION
   VIEWPORT FIT VERSION
   ========================================================================== */

.ph-social {
	--social-blue: #0b5cf6;
	--social-navy: #09265f;
	--social-text: #35466c;

	position: relative;

	width: 100%;

	min-height: 100vh;

	padding:
		28px
		0
		30px;

	display: flex;
	align-items: center;

	overflow: hidden;

	background:
		radial-gradient(
			circle at 50% 14%,
			rgba(89, 110, 210, 0.18) 0%,
			rgba(89, 110, 210, 0.08) 28%,
			transparent 58%
		),
		radial-gradient(
			circle at 8% 80%,
			rgba(69, 91, 193, 0.11) 0%,
			transparent 42%
		),
		radial-gradient(
			circle at 92% 75%,
			rgba(119, 105, 220, 0.1) 0%,
			transparent 40%
		),
		linear-gradient(
			135deg,
			#eef1fb 0%,
			#e7ebf8 42%,
			#eceefa 72%,
			#f1f3fb 100%
		);
}

.ph-social__container {
	width: min(100% - 90px, 1380px);

	margin-inline: auto;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.ph-social__header {
	display: flex;
	flex-direction: column;
	align-items: center;

	margin-bottom: 22px;

	text-align: center;
}

.ph-social__eyebrow {
	display: inline-flex;
	align-items: center;

	gap: 7px;

	min-height: 31px;

	padding:
		5px
		12px;

	border-radius: 999px;

	background: #ffffff;

	box-shadow:
		0 7px 19px rgba(26, 55, 116, 0.07);

	color: #10275f;

	font-size: 10px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;
}

.ph-social__eyebrow-dot {
	width: 11px;
	height: 11px;

	flex: 0 0 11px;

	border-radius: 50%;

	background:
		linear-gradient(
			135deg,
			#d182f5,
			#7d64f5
		);

	box-shadow:
		0 0 10px rgba(176, 99, 246, 0.30);
}

.ph-social__title {
	margin:
		12px
		0
		0;

	color: var(--social-navy);

	font-size:
		clamp(
			34px,
			2.8vw,
			46px
		);

	font-weight: 760;
	line-height: 1.05;

	letter-spacing: -1.7px;
}

.ph-social__description {
	max-width: 760px;

	margin:
		8px
		auto
		0;

	color: var(--social-text);

	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

/* ==========================================================================
   GRID
   ========================================================================== */

.ph-social__grid {
	display: grid;

	grid-template-columns:
		minmax(0, 1.45fr)
		minmax(330px, 0.85fr);

	gap: 22px;

	align-items: stretch;
}

/* ==========================================================================
   CARD
   ========================================================================== */

.ph-social__card {
	position: relative;

	display: flex;
	flex-direction: column;

	min-width: 0;

	padding: 13px;

	overflow: hidden;

	border:
		1px
		solid
		rgba(33, 74, 153, 0.08);

	border-radius: 21px;

	background:
		rgba(255, 255, 255, 0.97);

	box-shadow:
		0 14px 34px rgba(24, 54, 112, 0.07);

	transition:
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.4s ease;
}

.ph-social__card:hover {
	transform: translateY(-5px);

	box-shadow:
		0 22px 46px rgba(24, 54, 112, 0.11);
}

/* ==========================================================================
   CARD TOP
   ========================================================================== */

.ph-social__card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 14px;

	min-height: 50px;

	padding:
		0
		2px
		10px;
}

.ph-social__platform-label {
	display: block;

	margin-bottom: 3px;

	color: var(--social-blue);

	font-size: 9px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;
}

.ph-social__card-top h3 {
	max-width: 440px;

	margin: 0;

	color: #0d2357;

	font-size: 15px;
	font-weight: 750;
	line-height: 1.2;
}

.ph-social__platform-icon {
	display: grid;

	width: 36px;
	height: 36px;

	flex: 0 0 36px;

	place-items: center;
}

.ph-social__platform-icon svg {
	width: 22px;
	height: 22px;
}

/* ==========================================================================
   EMBED AREA
   ========================================================================== */

.ph-social__embed-wrap {
	position: relative;

	flex: 1;

	width: 100%;

	overflow: hidden;

	border:
		1px
		solid
		rgba(25, 65, 142, 0.07);

	border-radius: 15px;

	background: #ffffff;
}

.ph-social__iframe {
	display: block;

	width: 100%;

	margin: 0;

	border: 0;

	background: #ffffff;
}

/*
 * Desktop viewport-fit heights
 */
.ph-social__iframe--instagram {
	height: min(52vh, 500px);
	min-height: 430px;
}

.ph-social__iframe--facebook {
	height: min(52vh, 500px);
	min-height: 430px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.ph-social__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	align-self: center;

	gap: 8px;

	min-height: 38px;

	margin-top: 10px;

	padding:
		8px
		20px;

	border-radius: 999px;

	color: var(--social-blue);

	font-size: 11px;
	font-weight: 700;
	line-height: 1;

	text-decoration: none;

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		background 0.3s ease,
		color 0.3s ease;
}

.ph-social__button svg {
	width: 15px;
	height: 15px;
}

.ph-social__button--instagram {
	background:
		linear-gradient(
			90deg,
			rgba(255, 137, 45, 0.11),
			rgba(235, 57, 143, 0.09),
			rgba(108, 65, 245, 0.09)
		);
}

.ph-social__button--facebook {
	background: #f4f7ff;
}

.ph-social__button:hover {
	background: var(--social-blue);

	color: #ffffff;

	box-shadow:
		0 10px 21px rgba(11, 92, 246, 0.2);

	transform: translateY(-2px);
}

/* ==========================================================================
   LAPTOP
   ========================================================================== */

@media (max-width: 1366px) {

	.ph-social {
		min-height: 100vh;

		padding:
			22px
			0
			24px;
	}

	.ph-social__container {
		width:
			min(
				100% - 70px,
				1240px
			);
	}

	.ph-social__header {
		margin-bottom: 17px;
	}

	.ph-social__title {
		font-size: 38px;
	}

	.ph-social__description {
		font-size: 18px;
	}

	.ph-social__grid {
		gap: 18px;
	}

	.ph-social__card {
		padding: 11px;
	}

	.ph-social__iframe--instagram,
	.ph-social__iframe--facebook {
		height: min(50vh, 450px);
		min-height: 390px;
	}
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 900px) {

	.ph-social {
		min-height: auto;

		padding:
			45px
			0
			50px;

		align-items: initial;
	}

	.ph-social__container {
		width:
			calc(100% - 40px);
	}

	.ph-social__grid {
		grid-template-columns: 1fr;
	}

	.ph-social__card {
		max-width: 760px;

		margin-inline: auto;
	}

	.ph-social__iframe--instagram {
		height: 580px;
		min-height: 580px;
	}

	.ph-social__iframe--facebook {
		height: 600px;
		min-height: 600px;
	}
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.ph-social {
		padding:
			40px
			0
			44px;
	}

	.ph-social__container {
		width:
			calc(100% - 24px);
	}

	.ph-social__title {
		font-size: 32px;
	}

	.ph-social__description {
		font-size: 16px;
	}

	.ph-social__card {
		padding: 10px;

		border-radius: 18px;
	}

	.ph-social__iframe--instagram {
		height: 540px;
		min-height: 540px;
	}

	.ph-social__iframe--facebook {
		height: 560px;
		min-height: 560px;
	}
}
/* ==========================================================================
   PINHOLEIR GOOGLE REVIEWS
   ========================================================================== */

.ph-reviews {
	--reviews-blue: #0b5cf6;
	--reviews-navy: #09265f;
	--reviews-text: #415274;

	position: relative;

	width: 100%;

	padding:
		64px
		0
		68px;

	overflow: hidden;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.ph-reviews__container {
	position: relative;
	z-index: 2;

	width: min(100% - 100px, 1380px);

	margin-inline: auto;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.ph-reviews__header {
	display: flex;
	flex-direction: column;
	align-items: center;

	margin-bottom: 34px;

	text-align: center;
}

.ph-reviews__eyebrow {
	display: inline-flex;
	align-items: center;

	gap: 8px;

	min-height: 35px;

	padding:
		6px
		14px;

	border-radius: 999px;

	background: #ffffff;

	box-shadow:
		0 8px 20px rgba(24, 53, 110, 0.08);

	color: var(--reviews-blue);

	font-size: 11px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;
}

.ph-reviews__eyebrow-dot {
	width: 8px;
	height: 8px;

	border-radius: 50%;

	background: var(--reviews-blue);

	box-shadow:
		0 0 0 4px rgba(11, 92, 246, 0.08);
}

.ph-reviews__title {
	margin:
		18px
		0
		0;

	color: var(--reviews-navy);

	font-size:
		clamp(
			40px,
			3.1vw,
			54px
		);

	font-weight: 760;
	line-height: 1.07;

	letter-spacing: -1.8px;
}

.ph-reviews__description {
	max-width: 700px;

	margin:
		11px
		auto
		0;

	color: var(--reviews-text);

	font-size: 18px;
	font-weight: 500;
	line-height: 1.55;
}

/* ==========================================================================
   TRUSTINDEX WRAPPER
   ========================================================================== */

.ph-reviews__content {
	position: relative;

	width: 100%;

	padding:
		22px;

	border:
		1px
		solid
		rgba(24, 70, 150, 0.07);

	border-radius: 26px;

	background:
		rgba(255, 255, 255, 0.88);

	box-shadow:
		0 17px 42px rgba(24, 54, 112, 0.08);

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	transition:
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.4s ease;
}

.ph-reviews__content:hover {
	box-shadow:
		0 24px 52px rgba(24, 54, 112, 0.12);

	transform:
		translateY(-5px);
}

/* ==========================================================================
   TRUSTINDEX OVERRIDES
   ========================================================================== */

/*
 * Trustindex generates its own HTML/classes.
 * These rules keep the plugin inside your site style.
 */

.ph-reviews__content .ti-widget {
	width: 100% !important;
}

.ph-reviews__content .ti-widget-container {
	margin: 0 !important;
}

.ph-reviews__content .ti-review-item {
	border-radius: 18px !important;

	overflow: hidden;
}

.ph-reviews__content .ti-inner {
	border-radius: 18px !important;

	box-shadow:
		0 8px 22px rgba(18, 47, 105, 0.07) !important;
}

.ph-reviews__content .ti-name {
	color: var(--reviews-navy) !important;

	font-weight: 700 !important;
}

.ph-reviews__content .ti-review-text {
	color: #475979 !important;

	line-height: 1.6 !important;
}

/* ==========================================================================
   REVEAL
   ========================================================================== */

.ph-reviews-reveal {
	opacity: 0;

	transform:
		translateY(28px);

	transition:
		opacity 0.72s ease,
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-reviews-reveal.is-visible {
	opacity: 1;

	transform:
		translateY(0);
}

.ph-reviews__eyebrow.ph-reviews-reveal {
	transition-delay: 0.04s;
}

.ph-reviews__title.ph-reviews-reveal {
	transition-delay: 0.1s;
}

.ph-reviews__description.ph-reviews-reveal {
	transition-delay: 0.16s;
}

.ph-reviews__content.ph-reviews-reveal {
	transition-delay: 0.22s;
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1024px) {

	.ph-reviews {
		padding:
			55px
			0
			60px;
	}

	.ph-reviews__container {
		width:
			calc(100% - 50px);
	}
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.ph-reviews {
		padding:
			45px
			0
			50px;
	}

	.ph-reviews__container {
		width:
			calc(100% - 28px);
	}

	.ph-reviews__header {
		margin-bottom: 25px;
	}

	.ph-reviews__title {
		font-size: 34px;
	}

	.ph-reviews__description {
		font-size: 16px;
	}

	.ph-reviews__content {
		padding: 12px;

		border-radius: 20px;
	}
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

	.ph-reviews-reveal {
		opacity: 1 !important;

		transform: none !important;

		transition: none !important;
	}
}
/* ==========================================================================
   BLOGS & ARTICLES
   REFERENCE STYLE + VIEWPORT FIT
   ========================================================================== */

.ph-blog {
	--blog-blue: #3156ff;
	--blog-blue-dark: #072660;
	--blog-text: #1e3468;

	position: relative;

	width: 100%;
	min-height: 100vh;

	display: flex;
	align-items: center;

	padding:
		24px
		0
		18px;

	overflow: hidden;

	background:
		radial-gradient(
			circle at 72% 23%,
			rgba(190, 199, 255, 0.32),
			transparent 34%
		),
		radial-gradient(
			circle at 20% 82%,
			rgba(210, 216, 255, 0.28),
			transparent 35%
		),
		linear-gradient(
			120deg,
			#f8f8ff 0%,
			#f0f2fd 48%,
			#f7f7ff 100%
		);
}

.ph-blog::before {
	position: absolute;

	top: -100px;
	right: -40px;

	width: 600px;
	height: 600px;

	border:
		2px
		solid
		rgba(255, 255, 255, 0.46);

	border-radius: 90px;

	content: "";

	transform:
		rotate(41deg);

	pointer-events: none;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.ph-blog__container {
	position: relative;
	z-index: 2;

	width: min(100% - 94px, 1410px);

	margin-inline: auto;
}

/* ==========================================================================
   TOP
   ========================================================================== */

.ph-blog__top {
	display: flex;

	align-items: flex-end;
	justify-content: space-between;

	gap: 40px;

	margin-bottom: 18px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.ph-blog__header {
	position: relative;

	flex: 1;
}

.ph-blog__eyebrow {
	margin: 0;

	color: #4368fa;

	font-size: 14px;
	font-weight: 800;
	line-height: 1;

	letter-spacing: 1.35px;

	text-transform: uppercase;
}

.ph-blog__eyebrow-line {
	display: block;

	width: 64px;
	height: 2px;

	margin-top: 11px;

	background: #5475ff;
}

.ph-blog__title {
	margin:
		10px
		0
		0;

	color: #071f59;

	font-family:
		Georgia,
		'Times New Roman',
		serif;

	font-size:
		clamp(
			48px,
			4.2vw,
			68px
		);

	font-weight: 400;
	line-height: 1.04;

	letter-spacing: -2.2px;
}

.ph-blog__title-mark {
	display: flex;
	align-items: center;

	gap: 11px;

	margin-top: 12px;
}

.ph-blog__title-mark span {
	display: block;

	width: 67px;
	height: 1px;

	background: #16336b;
}

.ph-blog__title-mark svg {
	width: 14px;
	height: 14px;

	fill: #17346c;
}

/* ==========================================================================
   TOP RIGHT CONTROLS
   ========================================================================== */

.ph-blog__controls {
	display: flex;
	align-items: center;

	gap: 16px;

	padding-bottom: 24px;
}

.ph-blog__arrow {
	display: grid;

	width: 65px;
	height: 65px;

	padding: 0;

	place-items: center;

	border: 0;
	border-radius: 50%;

	background: #ffffff;

	box-shadow:
		0 12px 31px rgba(20, 46, 112, 0.11);

	color: #0b3471;

	cursor: pointer;

	transition:
		background-color 0.32s ease,
		color 0.32s ease,
		box-shadow 0.35s ease,
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-blog__arrow--next {
	background: var(--blog-blue);

	color: #ffffff;

	box-shadow:
		0 13px 30px rgba(49, 86, 255, 0.22);
}

.ph-blog__arrow svg {
	width: 29px;
	height: 29px;

	fill: none;
	stroke: currentColor;

	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;

	transition:
		transform 0.3s ease;
}

.ph-blog__arrow:hover {
	background: var(--blog-blue);

	color: #ffffff;

	box-shadow:
		0 18px 36px rgba(49, 86, 255, 0.23);

	transform:
		translateY(-4px)
		scale(1.06);
}

.ph-blog__arrow--prev:hover svg {
	transform: translateX(-2px);
}

.ph-blog__arrow--next:hover svg {
	transform: translateX(2px);
}

.ph-blog__arrow:disabled {
	opacity: 0.32;

	cursor: default;

	transform: none;
}

/* ==========================================================================
   SLIDER
   ========================================================================== */

.ph-blog__slider {
	position: relative;

	width: 100%;
}

.ph-blog__viewport {
	width: 100%;

	padding:
		3px
		3px
		12px;

	overflow: hidden;
}

.ph-blog__track {
	display: flex;

	gap: 24px;

	transition:
		transform
		0.7s
		cubic-bezier(0.22, 1, 0.36, 1);

	will-change: transform;
}

/* ==========================================================================
   CARD
   ========================================================================== */

.ph-blog-card {
	position: relative;

	flex:
		0
		0
		calc((100% - 72px) / 4);

	min-width: 0;

	height: 500px;

	overflow: hidden;

	border:
		1px
		solid
		rgba(255, 255, 255, 0.95);

	border-radius: 22px;

	background:
		rgba(255, 255, 255, 0.94);

	box-shadow:
		0 15px 36px rgba(26, 47, 106, 0.085);

	transform:
		translateY(0);

	transition:
		transform
		0.55s
		cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow
		0.5s
		ease,
		border-color
		0.4s
		ease;
}

/* ==========================================================================
   IMAGE
   ========================================================================== */

.ph-blog-card__image-link {
	display: block;

	color: inherit;

	text-decoration: none;
}

.ph-blog-card__image {
	position: relative;

	width: 100%;
	height: 235px;

	overflow: hidden;

	border-radius:
		20px
		20px
		16px
		16px;
}

.ph-blog-card__photo {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;

	transform:
		scale(1.001);

	transition:
		transform
		0.85s
		cubic-bezier(0.22, 1, 0.36, 1),
		filter
		0.5s
		ease;
}

.ph-blog-card__image-overlay {
	position: absolute;

	inset: 0;

	background:
		linear-gradient(
			180deg,
			transparent 58%,
			rgba(8, 28, 76, 0.06) 100%
		);

	opacity: 0;

	transition:
		opacity 0.45s ease;
}

.ph-blog-card__placeholder {
	display: grid;

	width: 100%;
	height: 100%;

	place-items: center;

	background:
		linear-gradient(
			135deg,
			#e8ecff,
			#dce3ff
		);

	color: #2144b7;

	font-size: 22px;
	font-weight: 700;
}

/* ==========================================================================
   BODY
   ========================================================================== */

.ph-blog-card__body {
	position: relative;

	height: calc(100% - 235px);

	padding:
		22px
		24px
		20px;
}

/* ==========================================================================
   META
   ========================================================================== */

.ph-blog-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;

	gap:
		12px
		24px;

	color: #213d7a;
}

.ph-blog-card__meta-item {
	display: inline-flex;
	align-items: center;

	gap: 8px;

	color: #28427c;

	font-size: 11px;
	font-weight: 700;
	line-height: 1;

	text-transform: uppercase;
}

.ph-blog-card__meta-item svg {
	width: 18px;
	height: 18px;

	flex: 0 0 18px;

	fill: none;
	stroke: #284a95;

	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ==========================================================================
   CATEGORY
   ========================================================================== */

.ph-blog-card__category {
	display: flex;
	align-items: flex-start;

	gap: 8px;

	margin-top: 12px;

	color: #17356e;

	font-size: 10.5px;
	font-weight: 700;
	line-height: 1.45;

	letter-spacing: 0.15px;

	text-transform: uppercase;
}

.ph-blog-card__category svg {
	width: 16px;
	height: 16px;

	flex: 0 0 16px;

	margin-top: 1px;

	fill: none;
	stroke: #315cff;

	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ph-blog-card__category span {
	display: block;

	max-width: 100%;
}

/* ==========================================================================
   TITLE
   ========================================================================== */

.ph-blog-card__title {
	margin:
		22px
		0
		0;

	padding-right: 16px;

	color: #09265f;

	font-family:
		Georgia,
		'Times New Roman',
		serif;

	font-size: 22px;
	font-weight: 400;
	line-height: 1.42;
}

.ph-blog-card__title a {
	color: inherit;

	text-decoration: none;

	transition:
		color 0.3s ease;
}

/* ==========================================================================
   ROUND ARROW INSIDE CARD
   ========================================================================== */

.ph-blog-card__more {
	position: absolute;

	right: 20px;
	bottom: 16px;

	display: grid;

	width: 52px;
	height: 52px;

	place-items: center;

	border:
		1px
		solid
		rgba(61, 91, 228, 0.07);

	border-radius: 50%;

	background: #ffffff;

	box-shadow:
		0 8px 20px rgba(53, 76, 180, 0.13);

	color: #4166ff;

	text-decoration: none;

	transition:
		background-color 0.32s ease,
		color 0.32s ease,
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease;
}

.ph-blog-card__more svg {
	width: 24px;
	height: 24px;

	fill: none;
	stroke: currentColor;

	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;

	transition:
		transform 0.3s ease;
}

/* ==========================================================================
   PREMIUM HOVER
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {

	.ph-blog-card:hover {
		border-color:
			rgba(255, 255, 255, 1);

		box-shadow:
			0 28px 60px rgba(29, 47, 112, 0.16),
			0 6px 14px rgba(29, 47, 112, 0.05);

		transform:
			translateY(-10px);
	}

	.ph-blog-card:hover
	.ph-blog-card__photo {
		filter:
			saturate(1.04)
			contrast(1.02);

		transform:
			scale(1.065);
	}

	.ph-blog-card:hover
	.ph-blog-card__image-overlay {
		opacity: 1;
	}

	.ph-blog-card:hover
	.ph-blog-card__title a {
		color: #2449d8;
	}

	.ph-blog-card:hover
	.ph-blog-card__more {
		background: var(--blog-blue);

		color: #ffffff;

		box-shadow:
			0 13px 26px rgba(49, 86, 255, 0.26);

		transform:
			translateY(-4px)
			scale(1.06);
	}

	.ph-blog-card:hover
	.ph-blog-card__more svg {
		transform:
			translateX(3px);
	}
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.ph-blog__pagination {
	display: flex;
	align-items: center;
	justify-content: center;

	gap: 12px;

	margin-top: 3px;
}

.ph-blog__dot {
	width: 38px;
	height: 7px;

	padding: 0;

	border: 0;
	border-radius: 999px;

	background: #d8dcf5;

	cursor: pointer;

	transition:
		width 0.35s ease,
		background-color 0.35s ease,
		transform 0.3s ease;
}

.ph-blog__dot.is-active {
	width: 44px;

	background: #3156ff;
}

.ph-blog__dot:hover {
	transform:
		scaleX(1.08);
}

/* ==========================================================================
   ENTRANCE
   ========================================================================== */

.ph-blog-reveal {
	opacity: 0;

	transform:
		translateY(28px);

	transition:
		opacity
		0.75s
		ease,
		transform
		0.9s
		cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-blog-reveal.is-visible {
	opacity: 1;

	transform:
		translateY(0);
}

.ph-blog__eyebrow.ph-blog-reveal {
	transition-delay: 0.03s;
}

.ph-blog__eyebrow-line.ph-blog-reveal {
	transition-delay: 0.08s;
}

.ph-blog__title.ph-blog-reveal {
	transition-delay: 0.12s;
}

.ph-blog__title-mark.ph-blog-reveal {
	transition-delay: 0.17s;
}

.ph-blog__controls.ph-blog-reveal {
	transition-delay: 0.16s;
}

.ph-blog__slider.ph-blog-reveal {
	transition-delay: 0.22s;
}

.ph-blog__slider.is-visible
.ph-blog-card {
	animation:
		phBlogCardEntrance
		0.8s
		cubic-bezier(0.22, 1, 0.36, 1)
		both;

	animation-delay:
		calc(
			var(--blog-index) *
			70ms
		);
}

@keyframes phBlogCardEntrance {

	from {
		opacity: 0;

		transform:
			translateY(40px)
			scale(0.97);
	}

	to {
		opacity: 1;

		transform:
			translateY(0)
			scale(1);
	}
}

/* ==========================================================================
   LAPTOP / SHORT VIEWPORT
   SAME STYLE - ONLY COMPRESS VERTICAL SPACE
   ========================================================================== */

@media (min-width: 1025px) and (max-height: 850px) {

	.ph-blog {
		padding:
			14px
			0
			12px;
	}

	.ph-blog__top {
		margin-bottom: 10px;
	}

	.ph-blog__eyebrow-line {
		margin-top: 8px;
	}

	.ph-blog__title {
		margin-top: 7px;
	}

	.ph-blog__title-mark {
		margin-top: 8px;
	}

	.ph-blog__controls {
		padding-bottom: 14px;
	}

	.ph-blog-card {
		height: 455px;
	}

	.ph-blog-card__image {
		height: 210px;
	}

	.ph-blog-card__body {
		height: calc(100% - 210px);

		padding:
			18px
			21px
			17px;
	}

	.ph-blog-card__title {
		margin-top: 16px;

		font-size: 20px;
	}

	.ph-blog__pagination {
		margin-top: 0;
	}
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1024px) {

	.ph-blog {
		min-height: auto;

		display: block;

		padding:
			44px
			0
			40px;
	}

	.ph-blog__container {
		width:
			calc(100% - 46px);
	}

	.ph-blog-card {
		flex:
			0
			0
			calc((100% - 20px) / 2);

		height: 545px;
	}

	.ph-blog__track {
		gap: 20px;
	}

	.ph-blog__title {
		font-size: 52px;
	}
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.ph-blog {
		padding:
			42px
			0
			34px;
	}

	.ph-blog__container {
		width:
			calc(100% - 28px);
	}

	.ph-blog__top {
		align-items: center;

		margin-bottom: 22px;
	}

	.ph-blog__eyebrow {
		font-size: 11px;
	}

	.ph-blog__title {
		font-size: 39px;
	}

	.ph-blog__controls {
		gap: 9px;

		padding-bottom: 0;
	}

	.ph-blog__arrow {
		width: 45px;
		height: 45px;
	}

	.ph-blog__arrow svg {
		width: 22px;
		height: 22px;
	}

	.ph-blog__track {
		gap: 16px;
	}

	.ph-blog-card {
		flex:
			0
			0
			calc(100% - 20px);

		height: 525px;
	}

	.ph-blog-card__image {
		height: 255px;
	}

	.ph-blog-card__body {
		height:
			calc(
				100% - 255px
			);

		padding:
			21px
			18px;
	}

	.ph-blog-card__title {
		margin-top: 18px;

		font-size: 19px;
	}

	.ph-blog-card__more {
		right: 16px;
		bottom: 15px;

		width: 47px;
		height: 47px;
	}
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

	.ph-blog-reveal,
	.ph-blog-card {
		opacity: 1 !important;

		transform: none !important;

		animation: none !important;

		transition: none !important;
	}

	.ph-blog__track {
		transition: none !important;
	}
}