:root {
	--site-max-width: 1120px;
	--layout-max-width: 1280px;
	--site-gutter: 32px;
	--site-header-height: 110px;
	--site-text: #fff;
	--site-background: #0A0F1F;
	--site-border: #e5e5e5;
	--site-font-family: "Instrument Sans", sans-serif;
	--font-size-heading: 48px;
	--font-size-title: 24px;
	--font-size-body: 16px;
	--font-letter-spacing: 0.02em;
}

html,
body {
	font-family: var(--site-font-family);
	background: var(--site-background);
	color: var(--site-text);
	font-size: var(--font-size-body);
	letter-spacing: var(--font-letter-spacing);
}

button,
input,
select,
textarea {
	font: inherit;
}

body,
p,
li,
a,
input,
textarea,
select,
button {
	font-size: var(--font-size-body);
}

h1,
.text-heading {
	font-size: var(--font-size-heading);
	line-height: 1.1;
}

h2,
h3,
h4,
h5,
h6,
.text-title {
	font-size: var(--font-size-title);
	line-height: 1.2;
}

.text-body {
	font-size: var(--font-size-body);
	line-height: 1.5;
}

p {
	line-height: 1.6;
}

.btn-primary {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 24px;
	color: #fff;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 22px;
	background-image:
		linear-gradient(var(--site-background), var(--site-background)),
		linear-gradient(90deg, #00fbff 0%, #00baff 100%);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	overflow: hidden;
	isolation: isolate;
	transition: color 0.2s ease;
}

.btn-primary::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #00fbff 0%, #00baff 100%);
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: -1;
}

.btn-primary:hover,
.btn-primary:focus-visible {
	color: #fff;
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
	opacity: 1;
}

.site-shell {
	min-height: 100vh;
	overflow: hidden;
}

.site-container {
	width: min(100% - (var(--site-gutter) * 2), var(--site-max-width));
	margin-inline: auto;
}

.site-header,
.site-main,
.site-footer {
	width: 100%;
}

.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
}

.site-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: var(--site-header-height);
}

.site-header__brand {
	position: relative;
	z-index: 2;
}

.site-header__brand .custom-logo-link,
.site-header__brand-link {
	display: inline-flex;
	align-items: center;
}

.site-header__brand .custom-logo {
	width: auto;
	max-height: 54px;
}

.site-header__nav {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.21);
	box-shadow: 0 4px 4px -3px rgba(10, 15, 31, 0.15);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: 28px;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 29px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	color: #fff;
	border-radius: 23px;
	transition: background-color 0.2s ease, backdrop-filter 0.2s ease;
	white-space: nowrap;
}

.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu .current_page_item > a,
.primary-menu .current-page-ancestor > a {
	background: rgba(255, 255, 255, 0.17);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: 30px;
}

.site-header__spacer {
	margin-left: auto;
}

.site-footer .mid span {
	display: inline-block;
}

.footer-divider {
	margin-inline: 18px;
}

.site-main {
	padding: 0;
}

.site-main--home {
	padding-top: 0;
}

.home-template {
	width: 100%;
}

.home-content {
	width: 100%;
}

.entry-content > * + *,
.archive-loop > * + * {
	margin-top: 24px;
}

.post-card {
	padding: 24px 0;
	border-bottom: 1px solid var(--site-border);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.admin-bar .site-header {
	top: 32px;
}

body.admin-bar .site-shell {
}

.gradient-text {
	background: linear-gradient(90deg, #00FBFF 0%, #00BAFF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.hero {
	color: #fff;
	position: relative;
	background: url(../images/hero-bg.png) bottom center no-repeat;
	background-size: cover;
	/* min-height: 100dvh; */
	min-height: clamp(90dvh, 4vw, 100dvh);
	padding-top: 130px;
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
    margin-inline: auto;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}

.hero::before {
    content: "";
    position: absolute;
    top: -41%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: #0A0F1F;
    filter: blur(100px);
    border-radius: 25%;
    z-index: 1;
}

.hero h1 {
	text-align: center;
	margin: 0 auto 30px;
	letter-spacing: 0.03em;
	max-width: 760px;
	position: relative;
	z-index: 3;
	font-weight: normal;
}

.hero h1 span {
	font-weight: bold;
}

.hero .hero-description {
	text-align: center;
	margin: 0 auto 25px;
	max-width: 750px;
	position: relative;
	z-index: 4;
}

.hero .hero-ctas {
	display: flex;
	justify-content: center;
	gap: 25px;
	position: relative;
	z-index: 5;
}

.hero-img-1 {
	position: absolute;
	bottom: 0;
	right: 8%;
	z-index: 2;
}

.hero-img-2 {
	position: absolute;
	bottom: 0;
	right: 50%;
	z-index: 2;
}

.hero-img-3 {
	position: absolute;
	bottom: -5%;
	left: -12%;
	z-index: 2;
}

.hero-img-4 {
	position: absolute;
	top: 9%;
	right: -9%;
	max-width: 320px;
	z-index: 4;
}

@media (min-width: 991px) and (max-height: 860px) {
	.hero {
		min-height: 720px;
		padding-top: 118px;
		padding-bottom: 250px;
	}

	.hero h1 {
		max-width: 700px;
		margin-bottom: 20px;
	}

	.hero .hero-description {
		max-width: 690px;
		margin-bottom: 18px;
	}

	.hero .hero-ctas {
		gap: 18px;
	}

	.hero-img-1 {
		right: 17%;
		max-width: min(80vw, 800px);
	}

	.hero-img-3 {
		left: -9%;
		bottom: -2%;
		max-width: 250px;
	}

	.hero-img-4 {
		top: 10%;
		right: 1%;
		max-width: 270px;
	}
}

@media (min-width: 991px) and (max-height: 760px) {
	.hero {
		min-height: 780px;
		padding-top: 112px;
		padding-bottom: 225px;
	}

	.hero h1 {
		max-width: 640px;
		margin-bottom: 16px;
	}

	.hero .hero-description {
		max-width: 640px;
		margin-bottom: 16px;
	}

	.hero .hero-ctas {
		gap: 14px;
	}

	.hero-img-1 {
		max-width: min(80vw, 850px);
	}

	.hero-img-4 {
		top: 20%;
        right: -7%;
	}
}

.clientele {
	display: grid;
	grid-template-columns: minmax(280px, 421px) minmax(0, 1fr);
	align-items: center;
	gap: 20px;
	padding-top: 88px;
	padding-bottom: 90px;
	padding-left: max(var(--site-gutter), calc((100vw - var(--site-max-width)) / 2 + var(--site-gutter)));
}

.clientele__title-wrap {
	max-width: 421px;
}

.clientele__title {
	margin: 0;
	color: #fff;
	font-weight: normal;
}

.clientele__title span {
	font-weight: 600;
}

.clientele__slider-wrap {
	min-width: 0;
	overflow: hidden;
}

.clientele-slider {
	padding: 12px 0;
}

.clientele-slider .splide__track {
	overflow: visible;
}

.clientele-slider .splide__list {
	align-items: center;
}

.clientele-slider .splide__slide {
	width: auto;
}

.clientele__logo-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
}

.clientele__logo-card--placeholder {
	background: rgba(255, 255, 255, 0.05);
}

.clientele__logo-image {
	display: block;
	width: auto;
	max-width: 180px;
	max-height: 58px;
	object-fit: contain;
}

.clientele__logo-text {
	color: rgba(255, 255, 255, 0.78);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.performance {
	position: relative;
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
	margin-inline: auto;
	padding-top: 95px;
	/* background: radial-gradient(149.53% 115.68% at 50% 100%, #0A0F1F 0%, #00BAFF 50%, #00FBFF 100%); */
	background: url(../images/performance-bg1.jpg) center top / cover no-repeat;
	border-radius: 30px 30px 0 0;
	color: #fff;
	margin-bottom: 255px;
}

/* .performance::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background: url(../images/performance-bg2.png) top center no-repeat;
	background-size: 100%;
	z-index: 1;
} */

.performance-content {
	position: relative;
	z-index: 2;
}

.performance-title {
	margin: 0 0 76px;
	text-align: center;
	font-weight: normal;
}

.performance-title strong {
	font-weight: 700;
}

.performance-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	padding: 0 98px;
}

.performance-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 280px;
	padding: 24px 22px 16px 18px;
	border: 2px solid transparent;
	background:
		linear-gradient(180deg, rgba(43, 48, 68, 0.94) 0%, rgba(15, 21, 41, 0.98) 100%) padding-box,
		linear-gradient(163deg, #ffffff 0%, #00fbff 10.0962%, #00baff 28.3654%, rgba(102, 102, 102, 0) 54.8077%) border-box;
	background-size: 100% 100%, 220% 220%;
	background-position: 0 0, 0% 50%;
	background-repeat: no-repeat;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	transition: background-position .2s ease-in;
}

.performance-card::before {
	content: "";
	width: 190px;
	height: 190px;
	background: rgba(0, 251, 255, 0.8);
	filter: blur(50px);
	position: absolute;
	top: -50%;
	left: -50%;
	transform: translate(25%, 25%);
	transition: opacity 0.35s ease-in;
	opacity: 0;
}

.performance-card::after {
	content: "";
	width: 190px;
	height: 190px;
	background: #00BAFF;
	filter: blur(50px);
	position: absolute;
	bottom: -50%;
	right: -50%;
	transform: translate(-25%, -25%);
	transition: opacity 0.4s ease-in 0.125s;
	opacity: 0;
}

.performance-card:hover::before, .performance-card:hover::after {
	opacity: 1;
}

.performance-card:hover {
	background-position: 0 0, 100% 50%;
	/* animation: performance-card-border-shift 1.5s linear infinite; */
}

.usp {
	position: relative;
	isolation: isolate;
}

.ups-slides {
	width: min(100% - (var(--site-gutter) * 2), var(--site-max-width));
	margin-inline: auto;
	position: relative;
	min-height: 600px;
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	touch-action: manipulation;
}

.ups-slides .slide {
	width: 100%;
	height: 510px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 30px;
	overflow: hidden;
	position: relative;
	padding: 51px 70px 64px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	transition: transform 0.7s ease, top 0.7s ease, opacity 0.7s ease;
	will-change: transform, top, opacity;
	-webkit-user-select: none;
	user-select: none;
}

@media (max-width: 767px) {
	.ups-slides {
		touch-action: pan-y;
	}
}

.ups-slides .slide.slide-2 {
	transform: scale(0.94);
	top: -45px;
	z-index: 2;
}

.ups-slides .slide.slide-3 {
	transform: scale(0.88);
	top: -90px;
	z-index: 1;
}

.ups-slides .slide .slide-img {
	position: absolute;
	bottom: 0;
	right: 5%;
}

.ups-slides .slide h1 {
	font-size: clamp(48px, 4vw, 64px);
	max-width: 425px;
}

.ups-slides .slide p {
	font-size: clamp(24px, 4vw, 32px);
	max-width: 425px;
	letter-spacing: 0.03em;
	line-height: 40px;
	line-height: 1.2;
}

.usp-impact {
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
    margin-inline: auto;
	background: url(../images/usp-impact-bg-69c0b281c3df5.jpg) bottom center no-repeat;
	background-size: cover;
	padding: 206px 98px 165px;
	display: flex;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	position: relative;
	z-index: 2;
}

.usp-impact .left {
	flex: 0 0 38%;
}

.usp-impact .left h1 {
	font-weight: normal;
	margin-bottom: 60px;
}

.usp-impact .right {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

.usp-impact-graphic {
	position: relative;
	width: 671px;
	aspect-ratio: 670.99 / 251.31;
}

.usp-impact-graphic__wave {
	display: block;
	width: 100%;
	height: 100%;
}

.usp-impact-graphic__labels {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
}

.usp-impact-graphic__labels path {
	fill: none;
}

.usp-impact-graphic__text {
	font-size: 20px;
	letter-spacing: 0.03em;
	fill: #0a0f1f;
	font-weight: 500;
}

.usp-impact-graphic__text.text2 {
	letter-spacing: 0.1em;
}

.usp-impact-graphic__icon {
	position: absolute;
	height: auto;
}

.usp-impact-graphic__icon--target {
	left: 12%;
    top: 23%;
}

.usp-impact-graphic__icon--solution {
	left: 43.5%;
	top: 44%;
}

.usp-impact-graphic__icon--trophy {
	right: 11%;
    top: 17%;
}

.usp-impact .btn-primary {
	background: transparent;
	border: 1px solid rgba(0, 251, 255, 0.9);
	box-shadow: inset 0 0 0 1px rgba(0, 186, 255, 0.45);
}

.enquiry {
	position: relative;
}

.enquiry-icon-whatsapp {
	position: absolute;
	bottom: -32%;
    right: -14%;
	z-index: 3;
}

.enquiry .enquiry-icon-letter {
	position: absolute;
	top: 4%;
	left: 5%;
}

.enquiry .enquiry-icon-linkedin {
	position: absolute;
	bottom: -12%;
    right: 13%;
}

.enquiry-backlight {
	width: 1102px;
	/* height: 903px; */
	aspect-ratio: 1/0.82;
	position: absolute;
	top: 0;
    transform: translate(-43%, -27%);
    left: 0;
	background: url(../images/home-enquiry-img1.png) top left / cover no-repeat;
	z-index: 1;
}

.enquiry .site-container {
	position: relative;
}

.enquiry-title {
	background: linear-gradient(90deg, #00FBFF 0%, #00BAFF 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 500;
	margin-bottom: 10px;
}

.enquiry-subtitle {
	font-weight: 500;
	margin-bottom: 35px;
}

.enquiry .enquiry-ctas {
	display: flex;
	gap: 29px;
	position: relative;
	z-index: 2;
}

.enquiry-content {
	position: relative;
	padding-top: 245px;
	padding-bottom: 160px;
	padding-left: 425px;
}

.enquiry-hand, .enquiry-stars, .enquiry-stars-2 {
	position: absolute;
}

.enquiry-hand {
	left: -12%;
    top: 42%;
}

.enquiry-stars {
	bottom: 15%;
    left: 29%;
}

.enquiry-stars-2 {
	top: 31%;
    right: 32%;
}

footer {
	background: rgba(0, 0, 0, 0.64);
	backdrop-filter: blur(2px);
	padding: 16px 0 10px;
	position: relative;
	z-index: 1;
}

.site-footer .top {
	display: flex;
	flex-direction: row;
    justify-content: space-between;
	margin-bottom: 5px;
}

.site-footer .top .left {
	flex: 0 0 20%;
	position: relative;
}

.site-footer .top .left::after {
	content: "";
	display: block;
	width: 1px;
	height: 51px;
	background: rgba(255, 255, 255, 0.2);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.site-footer .top .mid, .site-footer .top .right {
	display: flex;
	align-items: center;
}

.site-footer .top .mid div {
	display: flex;
	align-items: center;
}

.site-footer .top .mid svg {
	margin-right: 6px;
}

.site-footer .top .right {
	gap: 25px;
}

.site-footer .btm {
	font-size: 12px;
	text-align: center;
}

.site-footer .btm span.regno {
	font-size: 11px;
	opacity: 0.8;
}

@keyframes performance-card-border-shift {
	0% {
		background-position: 0 0, 0% 50%;
	}

	50% {
		background-position: 0 0, 100% 50%;
	}

	100% {
		background-position: 0 0, 0% 50%;
	}
}

.performance-card__title {
	font-size: var(--font-size-heading);
	font-weight: 600;
	text-align: right;
}

.performance-card__desc {
	margin: 0;
	min-height: 48px;
	line-height: 1.2;
}

.performance-stars {
	position: absolute;
	right: 34px;
	top: -50px;
	z-index: 3;
}

.performance-stars-2 {
	position: absolute;
	top: 336px;
	left: -22px;
	z-index: 3;
}



body.page-template-template-about {
	background: url(../images/about-bg.jpg) top center no-repeat;
	background-size: 100%;
}

.who-we-are {
	position: relative;
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
	margin-inline: auto;
	padding-top: 60px;
	/* background: radial-gradient(149.53% 115.68% at 50% 50%, #0A0F1F 0%, #00BAFF 50%, #00FBFF 100%); */
	background: url(../images/performance-bg1.jpg) center top / cover no-repeat;
	border-radius: 30px;
	color: #fff;
	padding-bottom: 165px;
}



.who-we-are::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) rotate(180deg);
	width: 100%;
	height: 30%;
	background: url(../images/performance-bg1.jpg) center top / cover no-repeat;
	background-size: 100%;
	z-index: 1;
	border-radius: 30px;
}

.about-us-container {
	position: relative;
	padding-top: 20%;
}

.cube-1-img {
	position: absolute;
	z-index: 2;
	top: -13%;
	left: 3%;
}

.cube-2-img {
	position: absolute;
	z-index: 2;
	top: 3%;
	right: -6%;
}

/* .who-we-are::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background: url(../images/performance-bg2.png) top center no-repeat;
	background-size: 100%;
	z-index: 1;
} */

.who-we-are-content {
	padding: 0 95px;
	position: relative;
    z-index: 2;
}

.who-we-are-content h1 {
	color: #fff;
	text-align: center;
	margin-bottom: 25px;
}

.section-title {
	font-weight: normal;
}

.section-title strong {
	font-weight: 700;
}

.who-we-are-content h3 {
	font-weight: normal;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 20px;
}

.who-we-are-content p {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.how-we-work {
	background: linear-gradient(90deg, rgba(0, 251, 255, 0.11) -0.37%, rgba(10, 15, 31, 0.1) 151.46%);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(15px);
	border-radius: 15px;
	padding: 62px 52px;
	display: flex;
	justify-content: flex-end;
	margin-top: 130px;
	margin-bottom: 180px;
	overflow: hidden;
}

.how-we-work::before {
	content: "";
	background: url(../images/how-we-work-img2.png) top left no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	width: 53%;
    height: 100%;
	background-size: cover;
	z-index: -1;
}

.who-we-are-content .how-we-work h1, .who-we-are-content .how-we-work p {
	text-align: left;
}

.how-we-work-content {
	max-width: 520px;
}

.how-we-work-content p.gradient-text {
	display: inline-block;
}

.who-we-are-content .how-we-work p + p {
	margin-top: 20px;
	font-weight: bold;
}

.how-difference {
	display: flex;
	justify-content: space-between;
	gap: 25px;
	position: relative;
}

.how-difference h1 {
	max-width: 400px;
	text-align: left;
	margin-bottom: 0;
}

.how-difference p {
	text-align: left;
	max-width: 580px;
	margin: 0;
}

.how-difference-stars {
	position: absolute;
	top: -155%;
    left: -14.5%;
}

.how-difference-stars-2 {
	position: absolute;
	bottom: -123%;
    right: -13.7%;
}

.meet-the-team {
	margin-top: -60px;
	margin-bottom: -80px;
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.meet-the-team h1 {
	font-weight: 600;
	margin-bottom: 10px;
}

.meet-the-team p {
	margin-bottom: 50px;
}

.meet-content {
	padding-left: 95px;
}

.services-container {
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
	margin-inline: auto;
}

.services-hero {
	background: url(../images/services-bg3.jpg) bottom center no-repeat;
	background-size: cover;
	border-radius: 0 0 30px 30px;
	padding: 170px 170px 130px 20px;
	display: flex;
	justify-content: flex-end;
	position: relative;
	margin-bottom: 100px;
}

.services-hero-content {
	max-width: 520px;
}

.services-hero-content h1 {
	font-weight: 600;
	margin-bottom: 35px;
	max-width: 525px;
}

.services-stars-1, .services-stars-2 {
	position: absolute;
	z-index: 1;
}

.services-stars-1 {
	top: 148px;
	left: -62px;
}

.services-stars-2 {
	bottom: 69px;
	right: -54px;
}

.accordion-wrap {
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
	margin-inline: auto;
}

.services-accordion {
	padding-bottom: 80px;
}

.accordion-item {
	position: relative;
	overflow: hidden;
}

.accordion-item.is-open {
	/* background:
		radial-gradient(44% 78% at 42% 0%, rgba(102, 233, 255, 0.56) 0%, rgba(102, 233, 255, 0.18) 38%, rgba(9, 17, 36, 0) 76%),
		linear-gradient(180deg, rgba(27, 49, 73, 0.98) 0%, rgba(11, 18, 37, 0.98) 100%); */
		/* background: radial-gradient(47.46% 47.46% at 50.03% 52.54%, rgba(0, 251, 255, 0.77) 5.77%, rgba(0, 186, 255, 0.2926) 52.88%, rgba(10, 15, 31, 0) 100%); */
}

.accordion-item.is-open::before {
	opacity: 1;
}

.accordion-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(47.46% 47.46% at 50.03% 52.54%, rgba(0, 251, 255, 0.77) 5.77%, rgba(0, 186, 255, 0.2926) 52.88%, rgba(10, 15, 31, 0) 100%);
	background-repeat: no-repeat;
	background-size: 1500px 1500px;
	background-position: center -1080px;
	opacity: 0;
	pointer-events: none;
	z-index: 1;
	transition: opacity 0.45s ease;
	will-change: opacity;
}

.accordion-item::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, #0A0F1F 0%, #00BAFF 24.5192%, #00FBFF 49.0385%, #00BAFF 79.8077%, #0A0F1F 100%);
	pointer-events: none;
}

.accordion-trigger {
	width: 100%;
	padding: 24px 85px 18px 85px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: transparent;
	color: #f7f8fb;
	text-align: left;
	border: 0;
	position: relative;
	z-index: 2;
}

.accordion-trigger .title {
	display: flex;
	align-items: baseline;
	gap: 26px;
	font-size: clamp(28px, 2.45vw, 44px);
	font-weight: 500;
	line-height: 1.15;
	color: #f7f8fb;
}

.accordion-trigger .number {
	flex: 0 0 auto;
}

.accordion-trigger .label {
	display: block;
}

.accordion-trigger .icon {
	flex: 0 0 auto;
	font-size: clamp(44px, 3vw, 66px);
	font-weight: 300;
	line-height: 1;
	color: #f7f8fb;
	transform: translateY(-2px);
	transition: transform 0.3s ease, color 0.3s ease, opacity 0.2s ease;
}

.accordion-item.is-open .accordion-trigger .icon {
	transform: translateY(-2px) rotate(180deg);
}

.accordion-item:not(.is-open):hover .accordion-trigger .title,
.accordion-item:not(.is-open) .accordion-trigger:focus-visible .title {
	background: linear-gradient(90deg, #00FBFF 0%, #00BAFF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.accordion-item:not(.is-open):hover .accordion-trigger .icon,
.accordion-item:not(.is-open) .accordion-trigger:focus-visible .icon {
	color: #66e9ff;
}

.accordion-item .content {
	display: grid;
	grid-template-rows: 1fr;
	overflow: hidden;
	transition: grid-template-rows 0.5s ease, opacity 0.3s ease;
}

.accordion-item:not(.is-open) .content {
	grid-template-rows: 0fr;
	opacity: 0;
}

.accordion-item .content-inner {
	min-height: 0;
	display: flex;
	align-items: center;
	gap: 50px;
	padding: 0 64px 0 78px;
	overflow: hidden;
	transition: padding 0.5s ease;
}

.accordion-item .image {
	max-width: 405px;
	display: flex;
	align-items: flex-end;
	padding-left: 18px;
}

.accordion-item .image img {
	display: block;
	width: auto;
	height: 100%;
}

.accordion-item .text {
	max-width: 690px;
}

.accordion-item .text ul {
	margin: 0;
	padding-left: 18px;
}

.accordion-item .text li + li {
	margin-top: 10px;
}

.services-enquiry {
	position: relative;
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
	margin-inline: auto;
	/* background: radial-gradient(149.53% 115.68% at 50% 100%, #0A0F1F 0%, #00BAFF 50%, #00FBFF 100%); */
	background: url(../images/performance-bg1.jpg) center top / cover no-repeat;
	border-radius: 30px 30px 0 0;
	color: #fff;
}

/* .services-enquiry::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background: url(../images/performance-bg2.png) top center no-repeat;
	background-size: 100%;
	z-index: 1;
} */

.services-enquiry-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 20px;
}

.services-enquiry__media {
	flex: 0 0 45%;
}

.services-enquiry__title {
	font-weight: 600;
	margin-bottom: 10px;
}

.services-enquiry__text {
	max-width: 400px;
	margin-bottom: 55px;
}

.services-enquiry__actions {
	display: flex;
	gap: 30px;
}

.contact-container {
	position: relative;
}

.contact-hero {
	position: relative;
	z-index: 1;
}

.contact-btm {
	position: relative;
	z-index: 2;
}

.contact-hero-wrap {
	position: relative;
	width: min(100% - (var(--site-gutter) * 2), var(--site-max-width));
	margin-inline: auto;
	display: flex;
	justify-content: flex-end;
	padding-top: 145px;
	padding-bottom: 46px;
	padding-right: 70px;
}

.contact-hero-content {
	max-width: 525px;
}

.contact-hero-content h1 {
	font-weight: 600;
	margin-bottom: 10px;
}

.contact-hero-img {
	position: absolute;
	left: 0;
	top: 60px;
	max-width: 459px;
}

.contact-annouce {
	background: rgba(10, 15, 31, 0.36);
	backdrop-filter: blur(13.1px);
	margin-bottom: 26px;
}

.contact-annouce-wrap{
	position: relative;
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
    margin-inline: auto;
	padding-left: 100px;
}

.contact-annouce-wrap::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 32px;
	transform: translateY(-50%);
	background: url(../images/img-annouce.png) top left no-repeat;
	background-size: 100%;
	width: 74px;
	height: 88px;

}

.contact-annouce-marquee {
	font-size: 22px;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}

.contact-methods {
	position: relative;
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
	margin: 0 auto;
	padding: 80px 98px 65px;
	border-radius: 30px;
	/* background: radial-gradient(149.53% 115.68% at 50% 100%, #0A0F1F 0%, #00BAFF 50%, #00FBFF 100%); */
	background: url(../images/performance-bg1.jpg) center top / cover no-repeat;
	z-index: 2;
}
/* 
.contact-methods::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background: url(../images/performance-bg2.png) top center no-repeat;
	background-size: 100%;
	z-index: 1;
} */

.contact-methods__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.contact-method-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	min-height: 250px;
	padding: 34px 24px 30px;
	border: 2px solid transparent;
	background:
		linear-gradient(180deg, rgba(43, 48, 68, 0.94) 0%, rgba(15, 21, 41, 0.98) 100%) padding-box,
		linear-gradient(163deg, #ffffff 0%, #00fbff 10.0962%, #00baff 28.3654%, rgba(102, 102, 102, 0) 54.8077%) border-box;
	background-size: 100% 100%, 220% 220%;
	background-position: 0 0, 0% 50%;
	background-repeat: no-repeat;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	transition: background-position 0.2s ease-in, transform 0.25s ease;
	text-decoration: none;
	color: #fff;
}

.contact-method-card::before {
	content: "";
	width: 190px;
	height: 190px;
	background: rgba(0, 251, 255, 0.8);
	filter: blur(50px);
	position: absolute;
	top: -50%;
	left: -50%;
	transform: translate(25%, 25%);
	transition: opacity 0.35s ease-in;
	opacity: 0;
}

.contact-method-card::after {
	content: "";
	width: 190px;
	height: 190px;
	background: #00BAFF;
	filter: blur(50px);
	position: absolute;
	bottom: -50%;
	right: -50%;
	transform: translate(-25%, -25%);
	transition: opacity 0.4s ease-in 0.125s;
	opacity: 0;
}

.contact-method-card:hover::before,
.contact-method-card:hover::after {
	opacity: 1;
}

.contact-method-card:hover {
	background-position: 0 0, 100% 50%;
	transform: translateY(-3px);
}

.contact-method-card > * {
	position: relative;
	z-index: 2;
}

.contact-method-card__media {
	flex: 1 1 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-method-card__media img {
	display: block;
	max-width: 100%;
	height: auto;
}

.contact-method-card__socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.contact-method-card__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.contact-method-card__title {
	margin: 18px 0 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
}

.contact-method-card--trigger {
	border: 0;
	cursor: pointer;
}

.contact-popup {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 32px 20px;
}

.contact-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 15, 31, 0.38);
	backdrop-filter: blur(6px);
}

.contact-popup__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 1060px);
	min-height: 610px;
	padding: 96px 96px 74px;
	border-radius: 30px;
	/* background: radial-gradient(149.53% 115.68% at 50% 100%, #0A0F1F 0%, #00BAFF 50%, #00FBFF 100%); */
	background: url(../images/performance-bg1.jpg) center top / cover no-repeat;
	overflow: hidden;
}

/* .contact-popup__dialog::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background: url(../images/performance-bg2.png) top center no-repeat;
	background-size: 100%;
	z-index: 1;
} */

.contact-popup__dialog > * {
	position: relative;
	z-index: 2;
}

.contact-popup__titlebar {
	margin-bottom: 36px;
	text-align: center;
}

.contact-popup__flash {
	width: min(100%, 1060px);
	margin: 0 auto 18px;
	padding: 14px 18px;
	border-radius: 6px;
	font-size: 15px;
}

.contact-popup__flash--error {
	background: rgba(145, 42, 42, 0.24);
	border: 1px solid rgba(255, 126, 126, 0.34);
	color: #ffd5d5;
}

.contact-popup__title {
	font-size: 24px;
	font-weight: 500;
}

.contact-popup__progress {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 9px;
	margin-bottom: 120px;
}

.contact-popup__progress-compact {
	display: none;
	margin-bottom: 28px;
}

.contact-popup__progress-compact-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 10px;
}

.contact-popup__progress-compact-step,
.contact-popup__progress-compact-count {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.contact-popup__progress-compact-count {
	color: rgba(255, 255, 255, 0.72);
}

.contact-popup__progress-compact-bar {
	position: relative;
	height: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	overflow: hidden;
}

.contact-popup__progress-compact-fill {
	display: block;
	width: 16.6667%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #00FBFF 0%, #00BAFF 100%);
}

.contact-popup__progress-compact-label {
	margin-top: 10px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
}

.contact-popup__step {
	position: relative;
	display: grid;
	grid-template-columns: 20px 1fr;
	align-items: start;
	column-gap: 10px;
	row-gap: 6px;
	width: 100%;
}

.contact-popup__step > * {
	pointer-events: none;
}

.contact-popup__step-line {
	grid-column: 1 / -1;
	height: 5px;
	background: #647E88;
	margin-bottom: 4px;
}

.contact-popup__step-dot {
	position: relative;
	width: 18px;
	height: 18px;
	margin-top: 0;
	border-radius: 50%;
	background: transparent;
	overflow: hidden;
}

.contact-popup__step.is-active .contact-popup__step-line {
	background: linear-gradient(90deg, #00FBFF 0%, #00BAFF 100%);
	box-shadow: 0 0 10px rgba(0, 251, 255, 0.35);
}

.contact-popup__step.is-before-current .contact-popup__step-line {
	background: linear-gradient(90deg, #00FBFF 0%, #00BAFF 100%);
	box-shadow: 0 0 10px rgba(0, 251, 255, 0.2);
}

.contact-popup__step.is-active .contact-popup__step-dot {
	background: linear-gradient(135deg, #00FBFF 0%, #00BAFF 100%);
}

.contact-popup__step.is-complete .contact-popup__step-dot {
	background: linear-gradient(135deg, #00FBFF 0%, #00BAFF 100%);
}

.contact-popup__step-dot::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	padding: 1px;
	background: linear-gradient(180deg, #00FBFF 0%, #00BAFF 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
}

.contact-popup__step-dot::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: transparent;
	transform: translate(-50%, -50%);
}

.contact-popup__step.is-active .contact-popup__step-dot::before,
.contact-popup__step.is-complete .contact-popup__step-dot::before {
	display: none;
}

.contact-popup__step.is-active .contact-popup__step-dot::after {
	background: #fff;
}

.contact-popup__step.is-complete .contact-popup__step-dot::after {
	width: 10px;
	height: 6px;
	border-radius: 0;
	border: 2px solid #fff;
	border-top: 0;
	border-right: 0;
	background: transparent;
	transform: translate(-50%, -58%) rotate(-45deg);
}

.contact-popup__step-meta,
.contact-popup__step-label {
	grid-column: 2;
}

.contact-popup__step-meta {
	font-size: 14px;
	color: #fff;
}

.contact-popup__step-label {
	font-size: 14px;
	font-weight: 600;
}

.contact-popup__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	gap: 88px;
}

.contact-popup__form {
	display: block;
	position: relative;
	overflow: hidden;
	min-height: 430px;
}

.contact-popup__section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: grid;
	gap: 40px;
	min-height: 430px;
	visibility: hidden;
	pointer-events: none;
}

.contact-popup__section[hidden] {
	display: none;
}

.contact-popup__section {
	opacity: 0;
}

.contact-popup__section:not([hidden]) {
	visibility: visible;
}

.contact-popup__section.is-active {
	position: relative;
	display: flex;
	flex-direction: column;
	visibility: visible;
	pointer-events: auto;
	opacity: 1;
}

.contact-popup__section-title {
	font-size: 28px;
	font-weight: 600;
}

.contact-popup__step {
	cursor: default;
	transition: opacity 0.2s ease;
}

.contact-popup__step.is-clickable {
	cursor: pointer;
}

.contact-popup__step.is-clickable:hover {
	opacity: 0.82;
}

.contact-popup__step:focus-visible {
	outline: 1px solid rgba(0, 251, 255, 0.7);
	outline-offset: 6px;
}

.contact-popup__grid {
	display: grid;
	gap: 40px 115px;
}

.contact-popup__grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-popup__grid--fields {
	align-items: end;
}

.contact-popup__stack {
	display: grid;
	gap: 22px;
}

.contact-popup__question {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 26px;
}

.contact-popup__question span {
	font-size: 16px;
	font-weight: 400;
	color: rgba(247, 248, 251, 0.74);
}

.contact-popup__validation {
	margin-top: 14px;
	color: #ffd7d7;
	font-size: 14px;
	line-height: 1.4;
}

.contact-popup__choices {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 12px;
	margin-left: 25px;
}

.contact-popup__choices--compact {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-popup__choice {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 63px;
	padding: 0 35px;
	border-radius: 6px;
	background: rgba(151, 177, 188, 0.72);
	color: #f7f8fb;
	font-size: 18px;
	cursor: pointer;
}

.contact-popup__choice input[type="radio"],
.contact-popup__choice input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.contact-popup__choice span {
	position: relative;
	padding-left: 28px;
}

.contact-popup__choice span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	transform: translateY(-50%);
	background: transparent;
	box-sizing: border-box;
	border: 1px solid rgba(247, 248, 251, 0.8);
}

.contact-popup__choice span::after {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.contact-popup__choice input[type="radio"]:checked + span::before,
.contact-popup__choice input[type="checkbox"]:checked + span::before {
	background: linear-gradient(135deg, #00FBFF 0%, #00BAFF 100%);
	border-color: #fff;
}

.contact-popup__choice input[type="radio"]:checked + span::after {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
}

.contact-popup__choice input[type="checkbox"]:checked + span::after {
	width: 10px;
	height: 6px;
	border: 2px solid #fff;
	border-top: 0;
	border-right: 0;
	transform: translate(-50%, -58%) rotate(-45deg);
}

.contact-popup__choice--wide {
	grid-column: 1 / -1;
}

.contact-popup__choice--other {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	column-gap: 7px;


	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
	background-repeat: no-repeat;
	background-size: calc(100% - 108px) 1px;
    background-position: 72px calc(100% - 12px);
}

.contact-popup__choice--other span {
	align-self: center;
}

.contact-popup__choice-input {
	grid-column: 2;
	width: 100%;
	min-width: 0;
	border: 0;
	background: transparent;
	color: #f7f8fb;
	font: inherit;
	font-size: 16px;
	padding: 0;
	outline: none;
}

.contact-popup__choice-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.contact-popup__field {
	display: grid;
	gap: 10px;
}

.contact-popup__field--inline {
	max-width: 360px;
}

.contact-popup__field-label {
	font-size: 16px;
	font-weight: 500;
	color: rgba(247, 248, 251, 0.86);
}

.contact-popup__field--placeholder {
	gap: 0;
}

.contact-popup__field--placeholder .contact-popup__field-label {
	display: none;
}

.contact-popup__field input,
.contact-popup__field textarea,
.contact-popup__date input {
	width: 100%;
	min-height: 63px;
	padding: 0 28px;
	border: 0;
	border-radius: 7px;
	background: #647E88;
	color: #fff;
}

.contact-popup__field--placeholder input {
	background-color: #647E88;
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
	background-repeat: no-repeat;
	background-size: calc(100% - 61px) 1px;
    background-position: 28px calc(100% - 12px);
}

.contact-popup__field--placeholder input::placeholder,
.contact-popup__field--placeholder textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.contact-popup__field--placeholder input:focus, .contact-popup__field textarea:focus, .contact-popup__field input:focus{
	outline: 0;
	border: 0;
}

.contact-popup__stack--single .contact-popup__question {
	margin-bottom: 0;
}

.contact-popup__field--iconbox {
	display: flex;
	align-items: center;
	position: relative;
}

.contact-popup__field--iconbox .contact-popup__field--icon {
	min-width: 25px;
	text-align: center;
}

.contact-popup__field--iconbox .contact-popup__field--title {
	margin-left: 13px;
	min-width: 83px;
	margin-right: 20px;
}

.contact-popup__grid--narrow {
	gap: 15px 55px;
}

.contact-popup__choices--radio--single {
	width: 100%;
}

.contact-popup__field--continuation .contact-popup__field--icon img,
.contact-popup__field--continuation .contact-popup__field--title {
	visibility: hidden;
}

.contact-popup__field--continuation .contact-popup__field--icon {
	pointer-events: none;
}

.contact-popup__field textarea {
	min-height: 136px;
	padding-top: 14px;
	padding-bottom: 14px;
	resize: vertical;
}

.contact-popup__date {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 63px;
	padding: 0 30px 0 41px;
	border-radius: 6px;
	background-color: #647E88;
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
	background-repeat: no-repeat;
	background-size: calc(100% - 108px) 1px;
    background-position: 72px calc(100% - 12px);
	margin-left: 25px;
}

.contact-popup__single {
	margin-left: 25px;
}

.contact-popup__date-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: #00fbff;
	flex: 0 0 auto;
	position: relative;
	z-index: 1;
}

.contact-popup__date-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.contact-popup__date input {
	width: 100%;
	background: transparent;
	border: 0;
	opacity: 1;
	color: #f7f8fb;
	font: inherit;
	font-size: 16px;
	min-height: 0;
	padding: 0;
	position: relative;
	z-index: 2;
	cursor: pointer;
}

.contact-popup__date:not(.has-value) input {
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.contact-popup__date-placeholder {
	position: absolute;
	left: 73px;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.50);
	font-size: 16px;
	pointer-events: none;
	z-index: 1;
}

.contact-popup__date.has-value .contact-popup__date-placeholder {
	opacity: 0;
}

.contact-popup__date.has-value input {
	color: #f7f8fb;
	-webkit-text-fill-color: #f7f8fb;
}

.contact-popup__date input::-webkit-calendar-picker-indicator {
	opacity: 0;
	position: absolute;
	right: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.contact-popup__date:focus-within {
	background-image: linear-gradient(rgba(247, 248, 251, 0.78), rgba(247, 248, 251, 0.78));
}

.contact-popup__footer {
	display: flex;
	justify-content: flex-end;
	margin-top: auto;
}

.contact-popup__footer .btn-primary {
	min-width: 148px;
}

.contact-popup__cancel,
.contact-popup__back {
	min-width: 114px;
}

.contact-popup__toggle {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-height: 52px;
}

.contact-popup__toggle input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.contact-popup__toggle-switch {
	position: relative;
	width: 58px;
	height: 32px;
	border-radius: 999px;
	background: rgba(151, 177, 188, 0.48);
	transition: background 0.2s ease;
}

.contact-popup__toggle-switch::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #f7f8fb;
	transition: transform 0.2s ease;
}

.contact-popup__toggle input:checked + .contact-popup__toggle-switch {
	background: linear-gradient(90deg, #00FBFF 0%, #00BAFF 100%);
}

.contact-popup__toggle input:checked + .contact-popup__toggle-switch::after {
	transform: translateX(26px);
}

.contact-popup__toggle-label {
	font-size: 16px;
	font-weight: 500;
}

.contact-popup__toggle-group {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 18px;
}

.contact-popup__toggle-group input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.contact-popup__toggle-group-label {
	font-size: 16px;
	font-weight: 500;
	color: rgba(247, 248, 251, 0.72);
	transition: color 0.2s ease;
}

.contact-popup__toggle-group-label--left {
	text-align: right;
}

.contact-popup__toggle-group-label--right {
	text-align: left;
}

.contact-popup__toggle-switch--choice {
	flex: 0 0 auto;
}

.contact-popup__toggle-group-label--left {
	color: #f7f8fb;
}

.contact-popup__toggle-group input:checked + .contact-popup__toggle-switch--choice + .contact-popup__toggle-group-label--right {
	color: #f7f8fb;
}

.contact-popup__toggle-group:has(input:checked) .contact-popup__toggle-group-label--left {
	color: rgba(247, 248, 251, 0.72);
}

.contact-popup__submit {
	min-width: 148px;
}

.contact-popup__submit::before {
	opacity: 1;
}

.contact-popup__submit:hover::before,
.contact-popup__submit:focus-visible::before {
	opacity: 0;
}

.contact-popup__success-ok::before {
	opacity: 0;
}

.contact-popup__success-ok {
	background-image:
		linear-gradient(#0c304a, #0e324c),
		linear-gradient(90deg, #00fbff 0%, #00baff 100%);
}

.contact-popup__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.contact-popup__footer--step {
	padding-top: 34px;
}

.contact-popup__success {
	position: fixed;
	inset: 0;
	z-index: 1300;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(10, 15, 31, 0.70);
	backdrop-filter: blur(12px);
}

.contact-popup__success[hidden] {
	display: none;
}

.contact-popup__success-card {
	position: relative;
	width: min(100%, 582px);
	padding: 140px 20px 79px;
	text-align: center;
	border-radius: 30px;
	background: linear-gradient(123deg, rgba(10, 15, 31, 0.85) -1.62%, rgba(0, 186, 255, 0.43) 141.35%);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(16.899999618530273px);
}

.contact-popup__success-card > * {
	position: relative;
	z-index: 2;
}

.contact-popup__success-badge {
	position: absolute;
	left: 50%;
	top: -95px;
	transform: translateX(-57%);
	background: url(../images/icon-enquiry-sent.png) top left no-repeat;
	width: 223px;
	height: 194px;
	background-size: 100%;
}

.contact-popup__success-title {
	color: #FFF;
	text-align: center;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 0.64px;
	margin-bottom: 19px;
}

.contact-popup__success-text {
	margin-bottom: 60px;
}

.contact-popup__success-ok {
	min-width: 148px;
}

body.contact-popup-open {
	overflow: hidden;
}

.contact-enquiry-page {
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
	margin: 0 auto 32px;
	padding-top: 130px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.contact-enquiry-page .contact-popup__dialog {
	width: 100%;
	margin: 0 auto;
	padding: 40px 48px 28px;
	display: flex;
	flex-direction: column;
}

.contact-enquiry-page .contact-popup__titlebar {
	width: 100%;
	margin-bottom: 38px;
	text-align: center;
}

.contact-enquiry-page .contact-popup__title {
	font-size: 22px;
}

.contact-enquiry-page .contact-popup__progress {
	gap: 6px;
	margin-bottom: 54px;
}

.contact-enquiry-page .contact-popup__step-meta,
.contact-enquiry-page .contact-popup__step-label {
	font-size: 12px;
}

.contact-enquiry-page .contact-popup__form {
	flex: 1 1 auto;
	min-height: 350px;
}

.contact-enquiry-page .contact-popup__section {
	min-height: 100%;
	height: 100%;
	gap: 22px;
}

.contact-enquiry-page .contact-popup__grid {
	gap: 22px 42px;
}

.contact-enquiry-page .contact-popup__stack {
	gap: 16px;
}

.contact-enquiry-page .contact-popup__question {
	margin-bottom: 14px;
	font-size: 20px;
}

.contact-enquiry-page .contact-popup__question span,
.contact-enquiry-page .contact-popup__choice,
.contact-enquiry-page .contact-popup__field input,
.contact-enquiry-page .contact-popup__field textarea,
.contact-enquiry-page .contact-popup__date input,
.contact-enquiry-page .contact-popup__date-placeholder {
	font-size: 15px;
}

.contact-enquiry-page .contact-popup__choices {
	gap: 8px 10px;
}

.contact-enquiry-page .contact-popup__choice {
	min-height: 48px;
	padding: 0 18px;
}

.contact-enquiry-page .contact-popup__field input,
.contact-enquiry-page .contact-popup__date,
.contact-enquiry-page .contact-popup__date input {
	min-height: 48px;
}

.contact-enquiry-page .contact-popup__field input,
.contact-enquiry-page .contact-popup__field textarea,
.contact-enquiry-page .contact-popup__date input {
	padding-left: 18px;
	padding-right: 18px;
}

.contact-enquiry-page .contact-popup__field--placeholder input {
	background-size: calc(100% - 38px) 1px;
	background-position: 18px calc(100% - 10px);
}

.contact-enquiry-page .contact-popup__date {
	padding: 0 18px 0 26px;
	background-size: calc(100% - 82px) 1px;
    background-position: 64px calc(100% - 10px);
}

.contact-enquiry-page .contact-popup__date-placeholder {
	left: 63px;
	right: 18px;
}

.contact-enquiry-page .contact-popup__date input {
	padding-left: 6px;
}

.contact-enquiry-page .contact-popup__single,
.contact-enquiry-page .contact-popup__choices,
.contact-enquiry-page .contact-popup__date {
	margin-left: 12px;
}

.contact-enquiry-page .contact-popup__choice--other {
	background-size: calc(100% - 74px) 1px;
	background-position: 54px calc(100% - 10px);
}

.contact-enquiry-page .contact-popup__field textarea {
	min-height: 92px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.contact-enquiry-page .contact-popup__validation {
	margin-top: 8px;
	font-size: 13px;
}

.contact-enquiry-page .contact-popup__footer--step {
	padding-top: 0;
}

@media (min-width: 992px) {
	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field:nth-child(1) {
		grid-column: 1;
		grid-row: 1;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field:nth-child(3) {
		grid-column: 1;
		grid-row: 2;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field--whatsapp-primary {
		grid-column: 2;
		grid-row: 2;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field:nth-child(5) {
		grid-column: 1;
		grid-row: 3;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field--whatsapp-secondary {
		grid-column: 2;
		grid-row: 3;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field:nth-child(7) {
		grid-column: 1;
		grid-row: 4;
	}
}

@media (min-width: 992px) and (min-height: 861px) {
	.contact-enquiry-page {
		min-height: calc(100svh - var(--site-header-height) - 96px);
	}

	.contact-enquiry-page .contact-popup__dialog {
		min-height: calc(100svh - var(--site-header-height) - 96px);
		height: calc(100svh - var(--site-header-height) - 96px);
	}

	.contact-enquiry-page .contact-popup__form {
		height: 100%;
	}

	.contact-enquiry-page .contact-popup__section {
		min-height: 100%;
		height: 100%;
	}
}

.marquee-track {
	display: inline-flex;
	align-items: center;
	width: max-content;
	animation: marquee-left 18s linear infinite;
}

.marquee-text{
	position: relative;
	padding-left: 26px;
	padding-right: 64px;
	flex: 0 0 auto;
}

	.marquee-text::before {
		content: "";
		position: absolute;
	background: url(../images/stars.svg) top left no-repeat;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

@keyframes marquee-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-25%);
	}
}

.case-studies-page__container {
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
}

.case-studies-hero {
	position: relative;
	margin-bottom: 50px;
	/* padding-top: 145px; */
	padding-bottom: 92px;
	border-radius: 0 0 30px 30px;
	/* background: radial-gradient(149.53% 115.68% at 50% 0%, #0A0F1F 0%, #00BAFF 50%, #00FBFF 100%); */
	display: flex;
	justify-content: center;
}

.case-studies-hero::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%) rotate(180deg);
	width: 100%;
	height: 100%;
	background: url(../images/performance-bg1.jpg) top center no-repeat;
	background-size: 100%;
	z-index: 0;
	border-radius: 30px;
}

/* .case-studies-hero::after {
	content: "";
	width: 100%;
	aspect-ratio: 1/0.5;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 100%;
	background: #0A0F1F;
	filter: blur(100px);
	z-index: 1;
} */

.case-studies-hero__content {
	max-width: 760px;
	padding-top: 145px;
	position: relative;
	z-index: 2;
}

.case-studies-hero h1 {
	font-size: clamp(38px, 5vw, 48px);
	text-align: center;
	font-weight: normal;
	letter-spacing: 1.44px;
}

.case-studies-hero h1 .gradient-text {
	font-weight: 600;
}

.case-studies-hero__eyebrow {
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.case-studies-hero__intro {
	max-width: 540px;
	color: rgba(255, 255, 255, 0.8);
}

.case-studies-hero__star {
	position: absolute;
	width: 110px;
	height: auto;
}

.case-studies-hero__star--left {
	bottom: 20px;
    left: -56px;
	z-index: 2;
}

.case-studies-hero__star--right {
	top: 55px;
    right: -35px;
    z-index: 2;
}

.case-studies-page__content {
	max-width: 760px;
	margin: 0 auto 28px;
	text-align: center;
	color: rgba(255, 255, 255, 0.78);
}

.case-study-filters {
	display: grid;
	justify-items: center;
	gap: 14px;
	margin-bottom: 37px;
}

.case-study-filter-switcher {
	display: inline-flex;
	align-items: center;
	padding: 0;
	border-radius: 23px;
	background: transparent;
	display: none;
}

.case-study-filter-switcher__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 33px;
	padding: 7px 22px;
	color: #fff;
	font-size: 16px;
	line-height: 1.18;
	border-radius: 23px;
	transition: background-color 0.2s ease;
}

.case-study-filter-switcher__button.is-active {
	background: rgba(255, 255, 255, 0.17);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.case-study-grid {
	width: min(100% - (var(--site-gutter) * 2), var(--site-max-width));
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 70px 82px;
	margin-bottom: 115px;
}

.case-study-card {
	margin: 0;
}

.case-study-card__link {
	display: block;
}

.case-study-card__media {
	position: relative;
	min-height: 430px;
	border-radius: 22px;
	background-color: rgba(255, 255, 255, 0.08);
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.case-study-card__media::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 15, 31, 0.18);
	transition: background 0.28s ease, backdrop-filter 0.28s ease, -webkit-backdrop-filter 0.28s ease;
}

.case-study-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 15, 31, 0.6);
	transition: opacity 0.28s ease;
	z-index: 0;
}

.case-study-card__overlay {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 430px;
	padding: 28px;
}

.case-study-card__logo {
	max-width: min(240px, 70%);
	max-height: 128px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2));
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.case-study-card__titlemark {
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.case-study-card__button {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: 0;
	opacity: 0;
	transform: translate(-50%, calc(-50% + 10px));
	transition: opacity 0.28s ease, transform 0.28s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	color: #fff;
	background: transparent;
	border: 1.5px solid #fff;
	background-image: none;
}

.case-study-empty {
	grid-column: 1 / -1;
	padding: 48px 24px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 22px;
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
}

.case-study-card__labels {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	padding-top: 14px;
	text-align: center;
}

.case-study-card__title {
	padding-top: 18px;
	text-align: center;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: normal;
}

.case-study-card__labels span {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.case-study-card__link:hover .case-study-card__media::before,
.case-study-card__link:focus-visible .case-study-card__media::before {
	background:
		linear-gradient(147deg, rgba(0, 251, 255, 0.56) 12%, rgba(0, 186, 255, 0.56) 88%);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.case-study-card__link:hover .case-study-card__media::after,
.case-study-card__link:focus-visible .case-study-card__media::after {
	opacity: 0;
}

.case-study-card__link:hover .case-study-card__logo,
.case-study-card__link:hover .case-study-card__titlemark,
.case-study-card__link:focus-visible .case-study-card__logo,
.case-study-card__link:focus-visible .case-study-card__titlemark {
	opacity: 0;
	transform: scale(0.96);
}

.case-study-card__link:hover .case-study-card__button,
.case-study-card__link:focus-visible .case-study-card__button {
	opacity: 1;
	transform: translate(-50%, -50%);
}

.case-study-single {
	padding-bottom: 96px;
}

.case-study-single__hero {
	position: relative;
	padding-top: 148px;
	padding-bottom: 56px;
	background-color: #0a0f1f;
	background-position: center 20%;
	background-size: cover;
}

.case-study-single__hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 15, 31, 0.55) 0%, rgba(10, 15, 31, 0.82) 50%, #0a0f1f 100%),
		radial-gradient(circle at 50% 100%, rgba(0, 186, 255, 0.28) 0%, rgba(10, 15, 31, 0) 48%);
}

.case-study-single__hero-inner,
.case-study-single__container {
	position: relative;
	z-index: 1;
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
	margin: 0 auto;
}

.case-study-single__hero-row {
	display: flex;
	align-items: center;
	gap: 100px;
	height: 278px;
}

.case-study-single__nav-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 16px;
}

.case-study-single__nav-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.case-study-single__nav-icon svg rect,
.case-study-single__nav-icon svg path {
	transition: fill 0.2s ease, fill-opacity 0.2s ease, stroke 0.2s ease;
}

.case-study-single__nav-link:hover,
.case-study-single__nav-link:focus-visible {
	color: #fff;
}

.case-study-single__nav-link:hover .case-study-single__nav-icon,
.case-study-single__nav-link:focus-visible .case-study-single__nav-icon {
	transform: scale(1.06);
}

.case-study-single__nav-link:hover .case-study-single__nav-icon svg rect,
.case-study-single__nav-link:focus-visible .case-study-single__nav-icon svg rect {
	fill: #fff;
	fill-opacity: 1;
}

.case-study-single__nav-link:hover .case-study-single__nav-icon svg path,
.case-study-single__nav-link:focus-visible .case-study-single__nav-icon svg path {
	stroke: #0a0f1f;
}

.case-study-single__nav-link--next {
	justify-self: end;
	text-align: right;
}

.case-study-single__nav-link-placeholder {
	min-height: 1px;
}

.case-study-single__hero-content {
	display: grid;
	grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
	padding: 40px 0 34px;
}

.case-study-single__client-logo {
	width: 100%;
	max-width: 240px;
	height: auto;
	object-fit: contain;
}

.case-study-single__hero-copy h1 {
	margin-bottom: 12px;
	font-size: clamp(42px, 5vw, 48px);
	line-height: 1;
	text-transform: uppercase;
}

.case-study-single__hero-copy h2 {
	margin-bottom: 12px;
	font-size: clamp(24px, 3vw, 24px);
	line-height: 1.25;
}

.case-study-single__summary {
	max-width: 600px;
	color: #fff;
}

.case-study-single__intro-panel {
	position: relative;
	margin-top: -8px;
	padding: 94px 55px 123px;
	border-radius: 24px;
	/* background: radial-gradient(149.53% 115.68% at 50% 50%, #0A0F1F 0%, #00BAFF 50%, #00FBFF 100%); */
	background: url(../images/performance-bg1.jpg) center top / cover no-repeat;
	/* box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); */
}

.case-study-single__intro-panel::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 30%;
	background: url(../images/performance-bg1.jpg) top center no-repeat;
	background-size: 100%;
	z-index: 0;
	border-radius: 30px;
}

/* .case-study-single__intro-panel::before,
.case-study-single__intro-panel::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background: url(../images/performance-bg2.png) top center no-repeat;
	background-size: 100%;
	z-index: 0;
} */

.case-study-single__intro-panel::before {
	top: 0;
}

.case-study-single__intro-panel::after {
	bottom: 0;
	transform: translateX(-50%) rotate(180deg);
}

.case-study-single__intro-star {
	position: absolute;
	right: -44px;
    top: -17px;
	width: 127px;
	height: auto;
	z-index: 2;
}

.case-study-single__intro-star2 {
	position: absolute;
	left: -64px;
    top: 300px;
	width: 127px;
	height: auto;
	z-index: 2;
}

.case-study-single__summary-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 92px;
	margin-bottom: 35px;
	padding: 0 40px;
}

.case-study-single__summary-block h3,
.case-study-single__strategy-content h3,
.case-study-single__results h2,
.case-study-single__media h2,
.case-study-single__cta-copy h2 {
	margin-bottom: 14px;
	font-size: 24px;
	font-weight: 600;
}

.case-study-single__summary-block ul {
	padding-left: 16px;
}

.case-study-single__results h2 {
	margin-bottom: 64px;
}

.case-study-single__summary-block h3, .case-study-single__strategy-content h3 {
	margin-bottom: 24px;
}
.case-study-single__summary-block div,
.case-study-single__strategy-intro,
.case-study-single__strategy-outro,
.case-study-single__result-card p,
.case-study-single__media-excerpt {
	color: #fff;
}

.case-study-single__strategy-intro strong {
	font-weight: 600;
}

.case-study-single__strategy-card {
	position: relative;
	border-radius: 15px;
	background: linear-gradient(90deg, rgba(0, 251, 255, 0.11) -0.37%, rgba(10, 15, 31, 0.10) 151.46%);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(15px);
	z-index: 1;
	overflow: hidden;
}

.case-study-single__strategy-content {
	position: relative;
	padding: 40px 40px 70px 48px;
	line-height: 1.7;
}

.case-study-single__strategy-image {
	margin-bottom: 10px;
	overflow: hidden;
}

.case-study-single__strategy-image img {
	display: block;
	width: 100%;
	height: auto;
}

.case-study-single__strategy-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	margin: 24px 0;
}

.case-study-single__strategy-column-heading {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 500;
}

.case-study-single__strategy-columns ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.case-study-single__strategy-columns li {
	position: relative;
	padding-left: 15px;
	color: #fff;
	margin-bottom: 24px;
}

.case-study-single__strategy-columns li:last-child {
	margin-bottom: 0;
}

.case-study-single__strategy-columns li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: linear-gradient(90deg, #00fbff 0%, #00baff 100%);
}

.case-study-single__taxonomy-row {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.case-study-single__taxonomy-row span {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.11);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.case-study-single__body-content {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin-top: 28px;
	color: #fff;
}

.case-study-single__results {
	padding: 72px 0 24px;
	position: relative;
	z-index: 1;
}

.case-study-single__results h2,
.case-study-single__media h2 {
	text-align: center;
}

.case-study-single__results-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px minmax(0, 1fr);
	column-gap: 18px;
	row-gap: 70px;
	margin-top: 28px;
	padding: 0 40px;
	align-items: center;
}

.case-study-single__results-grid--count-1 {
	grid-template-areas: "left-top trophy .";
}

.case-study-single__results-grid--count-2 {
	grid-template-areas: "left-top trophy right-top";
}

.case-study-single__results-grid--count-3 {
	grid-template-areas:
		"left-top trophy right-top"
		"bottom-center bottom-center bottom-center";
}

.case-study-single__results-grid--count-4 {
	grid-template-areas:
		"left-top trophy right-top"
		"left-bottom trophy right-bottom";
}

.case-study-single__results-grid--count-5 {
	grid-template-areas:
		"left-top trophy right-top"
		"left-bottom trophy right-bottom"
		"bottom-center bottom-center bottom-center";
}

.case-study-single__result-card {
	min-height: 110px;
	padding: 18px 30px;
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%),
		rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.case-study-single__results-grid .case-study-single__result-card:nth-of-type(1) {
	grid-area: left-top;
}

.case-study-single__results-grid .case-study-single__result-card:nth-of-type(2) {
	grid-area: right-top;
}

.case-study-single__results-grid .case-study-single__result-card:nth-of-type(3) {
	grid-area: left-bottom;
}

.case-study-single__results-grid .case-study-single__result-card:nth-of-type(4) {
	grid-area: right-bottom;
}

.case-study-single__results-grid .case-study-single__result-card:nth-of-type(5) {
	grid-area: bottom-center;
}

.case-study-single__results-grid--count-3 .case-study-single__result-card:nth-of-type(3) {
	grid-area: bottom-center;
}

.case-study-single__results-grid--count-3 .case-study-single__result-card:nth-of-type(3),
.case-study-single__results-grid--count-5 .case-study-single__result-card:nth-of-type(5) {
	width: calc((100% - 346px) / 2);
	max-width: 100%;
	justify-self: center;
}

.case-study-single__result-dot {
	position: relative;
	display: inline-flex;
	width: 20px;
	height: 20px;
	margin-bottom: 4px;
	border-radius: 50%;
	background: linear-gradient(90deg, #00fbff 0%, #00baff 100%);
}

.case-study-single__result-dot::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 5px;
	border-radius: 0;
	border: 2px solid #fff;
	border-top: 0;
	border-right: 0;
	background: transparent;
	transform: translate(-50%, -58%) rotate(-45deg);
}

.case-study-single__results-trophy {
	grid-area: trophy;
	width: 260px;
	margin: 0 auto;
	align-self: center;
	justify-self: center;
}

.case-study-single__results-trophy img {
	width: 100%;
	height: auto;
}

.case-study-single__media {
	padding: 50px 0 28px;
}

.case-study-media-slider {
	margin-top: 46px;
	width: min(100% - (var(--site-gutter) * 2), var(--site-max-width));
	margin-inline: auto;
}

.case-study-media-slider .splide__track {
	padding-bottom: 34px;
}

.case-study-media-slider .splide__slide {
	height: auto;
}

.case-study-media-slider .splide__arrows {
	display: none;
}

.case-study-media-slider .splide__arrow {
	position: static;
	transform: none;
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.14);
	opacity: 1;
}

.case-study-media-slider .splide__arrow svg {
	fill: #fff;
}

.case-study-media-slider .splide__pagination {
	bottom: 0;
}

.case-study-media-slider .splide__pagination__page {
	width: 7px;
	height: 7px;
	background: rgba(255, 255, 255, 0.34);
	opacity: 1;
	margin: 0 6px;
}

.case-study-media-slider .splide__pagination__page.is-active {
	background: #fff;
	transform: none;
}

.case-study-single__media-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 17px 17px 30px;
	border: 1px solid rgba(238, 238, 238, 0.25);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.17);
	backdrop-filter: blur(2px);
	transition: border-color 0.28s ease;
}

.case-study-single__media-card:hover,
.case-study-single__media-card:focus-visible {
	border-color: rgba(0, 251, 255, 0.4);
}

.case-study-single__media-head {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr);
	gap: 8px;
	align-items: center;
	margin-bottom: 6px;
	min-height: 60px;
}

.case-study-single__media-logo {
	flex: 0 0 auto;
	max-width: 45px;
	object-fit: cover;
	border-radius: 4px;
	padding: 3px;
}

.case-study-single__media-head h3 {
	margin-bottom: 2px;
	font-size: 14px;
	line-height: 1.25;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.case-study-single__media-meta {
	display: block;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	line-height: 1.2;
}

.case-study-single__media-image {
	position: relative;
	margin-bottom: 24px;
	border-radius: 0;
	overflow: hidden;
}

.case-study-single__media-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 15, 31, 0.18);
	transition: background 0.28s ease, backdrop-filter 0.28s ease, -webkit-backdrop-filter 0.28s ease;
	z-index: 1;
}

.case-study-single__media-image img {
	display: block;
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.case-study-single__media-image-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	pointer-events: none;
}

.case-study-single__media-button {
	margin-top: 0;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.28s ease, transform 0.28s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	color: #fff;
	background: transparent;
	border: 1.5px solid #fff;
	background-image: none;
}

.case-study-single__media-card:hover .case-study-single__media-image::before,
.case-study-single__media-card:focus-visible .case-study-single__media-image::before {
	background: linear-gradient(147deg, rgba(0, 251, 255, 0.56) 12%, rgba(0, 186, 255, 0.56) 88%);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.case-study-single__media-card:hover .case-study-single__media-button,
.case-study-single__media-card:focus-visible .case-study-single__media-button {
	opacity: 1;
	transform: translateY(0);
}

.case-study-single__media-excerpt {
	font-size: 12px;
	line-height: 22px; /* 183.333% */
	letter-spacing: 0.24px;
}

.case-study-single__cta {
	padding: 100px 0 0;
}

.case-study-single__cta-row {
	display: grid;
	grid-template-columns: minmax(140px, 1fr) minmax(0, 760px) minmax(140px, 1fr);
	align-items: center;
	gap: 24px;
}

.case-study-single__cta-copy {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.case-study-single__cta-copy h2 {
	font-size: clamp(34px, 4vw, 48px);
	font-weight: normal;
}

.case-study-single__cta-copy h2 .gradient-text {
	font-weight: bold;
}

.case-study-single__cta-button {
	text-align: center;
	margin-top: 60px;
}

@media (max-width: 1100px) {
	.case-study-grid,
	.case-study-single__summary-grid,
	.case-study-single__strategy-columns {
		grid-template-columns: 1fr;
	}

	.case-study-single__results-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-areas: none;
		padding: 0;
	}

	.case-study-single__results-grid .case-study-single__result-card:nth-of-type(1),
	.case-study-single__results-grid .case-study-single__result-card:nth-of-type(2),
	.case-study-single__results-grid .case-study-single__result-card:nth-of-type(3),
	.case-study-single__results-grid .case-study-single__result-card:nth-of-type(4),
	.case-study-single__results-grid .case-study-single__result-card:nth-of-type(5) {
		grid-area: auto;
	}

	.case-study-single__results-trophy {
		grid-column: 1 / -1;
		margin: 0 auto;
		order: 99;
		justify-self: center;
		align-self: center;
	}

	.case-study-single__results-grid--count-3 .case-study-single__result-card:nth-of-type(3),
	.case-study-single__results-grid--count-5 .case-study-single__result-card:nth-of-type(5) {
		grid-column: 1 / -1;
		width: min(100%, calc((100% - 18px) / 2));
		justify-self: center;
	}
}

.insights-page {
	padding-bottom: 96px;
}

.insights-page__container {
	position: relative;
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
	margin-inline: auto;
}

.insights-page__hero {
	position: relative;
	width: min(100% - (var(--site-gutter) * 2), var(--site-max-width));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 440px;
	padding-top: 50px;
}

.insights-page__hero::before {
	content: "";
	width: 1382px;
	height: 956px;
	background: url(../images/insight-bg3-69cd3beb32951.jpg) top left / cover no-repeat;
	position: absolute;
	top: -35%;
    left: -41%;
}

.insights-page__hero-copy {
	position: relative;
	z-index: 2;
	max-width: 556px;
}

.insights-page__hero-copy h1 {
	font-weight: 400;
	line-height: 1.3;
}

.insights-page__hero-copy h1 .gradient-text {
	font-weight: bold;
}

.insights-page__panel {
	position: relative;
	margin: 8px auto 0;
	padding: 115px 123px 66px 96px;
	border-radius: 30px;
	/* background: radial-gradient(149.53% 115.68% at 50% 50%, #0A0F1F 0%, #00BAFF 50%, #00FBFF 100%); */
	background: url(../images/performance-bg1.jpg) center top / cover no-repeat;
	overflow: visible;
}

/* .insights-page__panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background: url(../images/performance-bg2.png) top center no-repeat;
	background-size: 100%;
	z-index: 1;
} */

.insights-page__star {
	position: absolute;
	width: 127px;
	height: auto;
	z-index: 3;
}

.insights-page__star--left {
	left: -64px;
	top: 12px;
}

.insights-page__star--right {
	right: -62px;
	top: 229px;
}

.insights-page__panel-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(315px, 0.8fr);
	gap: 80px;
	align-items: start;
}

.insights-page__panel h2 {
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.insights-page__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.insights-card {
	margin: 0;
}

.insights-card__link {
	display: block;
}

.insights-card__media {
	position: relative;
	min-height: 367px;
	border: 2px solid transparent;
	border-radius: 15px;
	background:
		linear-gradient(180deg, rgba(43, 48, 68, 0.94) 0%, rgba(15, 21, 41, 0.98) 100%) padding-box,
		linear-gradient(163deg, #ffffff 0%, #00fbff 10.0962%, #00baff 28.3654%, rgba(102, 102, 102, 0) 54.8077%) border-box;
	background-size: 100% 100%, 220% 220%;
	background-position: 0 0, 0% 50%;
	background-repeat: no-repeat;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	overflow: hidden;
	transition: background-position 0.2s ease-in;
}

.insights-card__image {
	display: block;
	width: min(164px, 72%);
	height: auto;
	margin: 28px auto 0;
	object-fit: contain;
	position: relative;
	z-index: 4;
}

.insights-card__media::before {
	content: "";
	position: absolute;
	width: 190px;
	height: 190px;
	background: rgba(0, 251, 255, 0.8);
	filter: blur(50px);
	top: -50%;
	left: -50%;
	transform: translate(25%, 25%);
	transition: opacity 0.35s ease-in;
	opacity: 0;
}

.insights-card__media::after {
	content: "";
	position: absolute;
	width: 190px;
	height: 190px;
	background: #00BAFF;
	filter: blur(50px);
	bottom: -50%;
	right: -50%;
	transform: translate(-25%, -25%);
	transition: opacity 0.4s ease-in 0.125s;
	opacity: 0;
}

.insights-card__overlay {
	position: relative;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 364px;
	padding: 26px 26px 52px;
	text-align: center;
}

.insights-card__label {
	display: inline-block;
	max-width: 249px;
	margin-top: auto;
	font-size: 24px;
	line-height: 32px;
	letter-spacing: 0.02em;
	color: #fff;
}

.insights-card__link:hover .insights-card__media::before,
.insights-card__link:hover .insights-card__media::after,
.insights-card__link:focus-visible .insights-card__media::before,
.insights-card__link:focus-visible .insights-card__media::after {
	opacity: 1;
}

.insights-card__link:hover .insights-card__media,
.insights-card__link:focus-visible .insights-card__media {
	background-position: center, 100% 50%;
}

.insights-page__download-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.insights-page__download-list li {
	position: relative;
}

.insights-page__download-list li::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, #0a0f1f 0%, #00baff 24.5192%, #00fbff 49.0385%, #00baff 79.8077%, #0a0f1f 100%);
}

.insights-page__download-list a,
.insights-page__download-text {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.02em;
}

.insights-page__download-list a {
	transition: color 0.2s ease, transform 0.2s ease;
}

.insights-page__download-list a .insights-page__download-arrow svg {
	display: block;
	transition: transform 0.2s ease;
}

.insights-page__download-list a:hover,
.insights-page__download-list a:focus-visible {
	color: #00fbff;
	transform: translateX(4px);
}

.insights-page__download-list a:hover .insights-page__download-arrow svg,
.insights-page__download-list a:focus-visible .insights-page__download-arrow svg {
	transform: translateX(4px);
}

.insights-page__download-list a {
	padding: 20px 11px;
}

.insights-page__download-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	flex: 0 0 18px;
}

.insights-page__content {
	padding-top: 30px;
}

.insight-single {
	padding-bottom: 26px;
	padding-top: 85px;
}

.insight-single__container {
	width: min(100% - (var(--site-gutter) * 2), var(--layout-max-width));
	margin-inline: auto;
}

.insight-single__topnav {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr);
	align-items: center;
	gap: 24px;
	padding: 44px 90px 0;
}

.insight-single__topnav .case-study-single__nav-link--next {
	justify-self: end;
}

.insight-single__hero-card {
	margin: 26px 50px 0 46px;
	border-radius: 15px;
	background: linear-gradient(90deg, rgba(0, 251, 255, 0.11) 0.37%, rgba(10, 15, 31, 0.1) 151.46%);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}

.insight-single__hero-image {
	position: relative;
	height: 202px;
}

.insight-single__hero-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 15, 31, 0.38);
}

.insight-single__hero-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
}

@media (max-width: 575px) {
	.postid-76 .insight-single__hero-image img {
		object-position: right center;
	}
}

.insight-single__hero-copy {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 87px;
	padding: 45px 40px 60px 46px;
	align-items: center;
}

.insight-single__hero-title h1 {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 24px;
	line-height: 1.42;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.insight-single__hero-title .gradient-text {
	font-weight: 700;
}

.insight-single__hero-summary,
.insight-single__step-body {
	color: #fff;
}

.insight-single__hero-summary a, .insight-single__step-body a {
	text-decoration: underline;
}

.insight-single__steps {
	padding-top: 62px;
}

.insight-single__steps h2,
.insight-single__takeaways h2 {
	margin-bottom: 46px;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-align: center;
}

.insight-single__steps .insight-single__steps-list {
	position: relative;
}

.insight-single__step {
	position: relative;
	padding: 32px 165px 37px 96px;
	border-bottom: 0;
}

.insight-single__step::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, #0a0f1f 0%, #00baff 24.5192%, #00fbff 49.0385%, #00baff 79.8077%, #0a0f1f 100%);
}

.insight-single__step h3 {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 16px;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 500;
}

.insight-single__step-body {
	max-width: 1080px;
	padding-left: 56px;
}

.insight-single__takeaways {
	padding-top: 84px;
	width: min(100% - (var(--site-gutter) * 2), var(--site-max-width));
	margin-inline: auto;
}

.insight-single__takeaways-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 260px) minmax(0, 1fr);
	grid-template-rows: auto auto;
	grid-template-areas:
		"left-top illustration right-top"
		"left-bottom illustration right-bottom";
	align-items: center;
	column-gap: 49px;
	row-gap: 42px;
}

.insight-single__takeaways-column {
	display: contents;
}

.insight-single__takeaways-column:first-of-type .insight-single__takeaway-card:nth-child(1) {
	grid-area: left-top;
}

.insight-single__takeaways-column:first-of-type .insight-single__takeaway-card:nth-child(2) {
	grid-area: left-bottom;
}

.insight-single__takeaways-column:last-of-type .insight-single__takeaway-card:nth-child(1) {
	grid-area: right-top;
}

.insight-single__takeaways-column:last-of-type .insight-single__takeaway-card:nth-child(2) {
	grid-area: right-bottom;
}

.insight-single__takeaway-card {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 16px;
	align-items: start;
	padding: 18px 20px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.17);
	font-size: 16px;
	line-height: 1.56;
	letter-spacing: 0.02em;
}

.insight-single__takeaway-dot {
	position: relative;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, #00fbff 0%, #00baff 100%);
}

.insight-single__takeaway-dot::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 6px;
	border-radius: 0;
	border: 2px solid #fff;
	border-top: 0;
	border-right: 0;
	background: transparent;
	transform: translate(-50%, -58%) rotate(-45deg);
}

.insight-single__takeaways-illustration img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.insight-single__takeaways-illustration {
	grid-area: illustration;
	align-self: center;
}

.insight-single__cta-actions--standalone {
	margin-top: 81px;
	margin-bottom: 48px;
}

.insight-single__cta-inner {
	margin-top: 128px;
	position: relative;
	padding: 105px 40px 74px;
	border-radius: 30px;
	/* background: radial-gradient(149.53% 115.68% at 50% 50%, #0A0F1F 0%, #00BAFF 50%, #00FBFF 100%); */
	background: url(../images/performance-bg1.jpg) center top / cover no-repeat;
	overflow: hidden;
}

/* .insight-single__cta-inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translateX(-50%);
	background: url(../images/performance-bg2.png) top center no-repeat;
	background-size: 100%;
	pointer-events: none;
	z-index: 1;
} */

.insight-single__cta-inner h2 {
	position: relative;
	z-index: 2;
	max-width: 931px;
	margin: 0 auto;
	font-size: clamp(40px, 4vw, 48px);
	line-height: 1.2;
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.03em;
}

.insight-single__cta-inner h2 .gradient-text {
	font-weight: bold;
}

.insight-single__cta-actions {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	padding-top: 60px;
}

.insight-single__cta-actions--standalone {
	z-index: auto;
	padding-top: 0;
}

.insight-single__cta-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 22px;
	border: 1.5px solid #00fbff;
	border-radius: 22px;
	font-size: 16px;
	line-height: 1.2;
	color: #fff;
	letter-spacing: 0.02em;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.insight-single__cta-link:hover,
.insight-single__cta-link:focus-visible {
	background: #fff;
	border-color: #fff;
	color: #0a0f1f;
}

@media (max-width: 1100px) {
	.insights-page__hero {
		justify-content: center;
		min-height: 420px;
		padding: 48px 28px 24px;
	}

	.insights-page__panel-grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.insight-single__hero-copy {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.insight-single__takeaways-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
		grid-template-areas: none;
		row-gap: 24px;
		column-gap: 18px;
	}

	.insight-single__takeaways-illustration {
		grid-column: 1 / -1;
		max-width: 240px;
		margin: 0 auto;
		order: 99;
	}

	.insight-single__takeaways-column {
		display: contents;
	}

	.insight-single__takeaway-card {
		grid-area: auto !important;
	}
}

@media (max-width: 991px) {
	.contact-popup__progress {
		display: none;
	}

	.contact-popup__progress-compact {
		display: block;
	}

	.contact-enquiry-page .contact-popup__form {
		min-height: 0;
		height: auto;
	}

	.contact-enquiry-page .contact-popup__section {
		min-height: 0;
		height: auto;
	}
}


/* -------------------------------------------------------------------------- */
/* Robust Responsive Navigation & Overrides
/* -------------------------------------------------------------------------- */

.site-header__menu-toggle {
	display: none;
	position: relative;
	z-index: 10001;
	padding: 10px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 12px;
	cursor: pointer;
	margin-left: auto;
}

.hamburger-box {
	display: block;
	width: 24px;
	height: 18px;
	position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
	position: absolute;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.hamburger-inner {
	top: 50%;
	transform: translateY(-50%);
}

.hamburger-inner::before {
	content: "";
	top: -8px;
}

.hamburger-inner::after {
	content: "";
	bottom: -8px;
}

.is-menu-open .hamburger-inner {
	background-color: transparent;
}

.is-menu-open .hamburger-inner::before {
	transform: translateY(8px) rotate(45deg);
}

.is-menu-open .hamburger-inner::after {
	transform: translateY(-8px) rotate(-45deg);
}

.meet-img-wrap {
	position: relative;
}

.meet-img2{
	position: absolute;
	right: 0;
	opacity: 0.3;
	top: 0;
	display: none;
}

.meet-img-bubble1 {
	position: absolute;
    top: 31%;
    left: 13%;
    width: 26%;
}

.meet-img-bubble2 {
	position: absolute;
	top: 38.5%;
    right: 14%;
    width: 24%;
}

@media (max-width: 1200px) {
	.meet-img {
		max-width: 600px;
	}
	.meet-the-team {
		margin-top: 0;
		margin-bottom: 0;
	}
	.meet-content {
		min-width: 420px;
	}

	.services-enquiry__content {
		padding: 50px 30px;
	}
}

@media (max-width: 1100px) {
	.contact-hero-img {
		max-width: 350px;
		top: 50%;
		transform: translateY(-25%);
	}
}

@media (max-width: 1024px) {
	:root {
		--site-gutter: 16px;
		--site-header-height: 80px;
	}

	h1, .text-heading {
		font-size: 36px !important;
	}

	h2, .text-title {
		font-size: 22px !important;
	}

	.site-header__inner {
		display: flex !important;
		flex-direction: row !important;
		justify-content: space-between !important;
		align-items: center !important;
		padding: 15px 0 !important;
	}

	.site-header {
		background: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		transition: background-color 0.2s ease, backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease;
	}

	.site-header.is-scrolled,
	.site-header.is-menu-open {
		background: rgba(10, 15, 31, 0.45);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.site-header__brand {
		flex: 0 0 auto !important;
	}

	.site-header__menu-toggle {
		display: block !important;
		margin-left: auto !important;
		z-index: 10001 !important;
	}

	/* Force hide/show with extreme specificity */
	body #primary-menu.site-header__nav {
		display: flex !important;
		position: fixed !important;
		top: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100vh !important;
		background: #0A0F1F !important;
		transform: translateX(100%) !important;
		transition: transform 0.3s ease, opacity 0.3s ease !important;
		align-items: center;
		justify-content: center;
		padding: 0;
		border-radius: 0 !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
		box-shadow: none !important;
		z-index: 10000 !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}

	body.is-menu-open #primary-menu.site-header__nav {
		transform: translateX(0) !important;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
	}

	.primary-menu {
		flex-direction: column;
		gap: 20px;
		width: 100%;
		text-align: center;
	}

	.primary-menu a {
		font-size: 24px;
		padding: 12px 24px;
		width: 100%;
	}

	.site-header__spacer {
		display: none;
	}

	.lock-scroll {
		overflow: hidden !important;
	}

	/* Footer Stacking */
	/* .site-footer .top {
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		gap: 30px !important;
	}

	.site-footer .top .left,
	.site-footer .top .mid,
	.site-footer .top .right {
		flex: 0 0 auto !important;
		width: 100% !important;
		justify-content: center !important;
		margin-inline: auto !important;
		text-align: center !important;
	}

	.site-footer .top .mid {
		flex-direction: column !important;
		gap: 10px !important;
	}
	
	.footer-divider {
		display: none !important;
	} */

	.usp-impact {
		padding-left: 30px;
		padding-right: 30px;
	}

	.usp-impact-graphic {
		scale: .7;
	}
}

@media (max-width: 991px) {
	/* Home Page Mobile */

	.hero {
		padding-top: 100px;
		min-height: auto;
		padding-bottom: 260px;
		padding-left: 50px;
		padding-right: 50px;
	}

	.hero h1 {
		font-size: 32px !important;
	}

	.hero-img-1 {
		max-width: 600px;
		right: 50%;
		transform: translateX(50%);
	}

	.hero-img-3 {
		width: 250px;
	}

	.hero-img-4 {
		max-width: 220px;
		right: -8%;
        top: 39%;
	}

	:root {
		--site-header-height: 80px;
	}

	.site-header__inner {
		flex-direction: column;
		justify-content: center;
		gap: 12px;
		padding: 12px 0;
	}

	.site-header__nav {
		position: static;
		transform: none;
	}

	.contact-methods {
		padding: 56px 30px 26px;
		margin-bottom: 72px;
	}

	.contact-methods__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px;
	}

	.contact-method-card {
		min-height: 220px;
		padding: 26px 18px 22px;
	}

	.contact-popup {
		padding: 16px;
	}

	.contact-popup__dialog {
		padding: 24px 18px 28px;
		min-height: 0;
	}

	.contact-popup__titlebar {
		margin-bottom: 28px;
	}

	.contact-popup__progress {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 36px;
	}

	.contact-popup__form {
		gap: 28px;
	}

	.contact-popup__grid--two,
	.contact-popup__choices,
	.contact-popup__choices--compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-popup__grid--two {
		grid-template-columns: 1fr;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field:nth-child(1) {
		order: 1;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field:nth-child(2) {
		order: 5;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field:nth-child(3) {
		order: 2;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field--whatsapp-primary {
		order: 6;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field--whatsapp-secondary {
		order: 7;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field:nth-child(5) {
		order: 3;
	}

	.contact-enquiry-page [data-enquiry-step="6"] .contact-popup__field:nth-child(7) {
		order: 4;
	}

	.contact-popup__choice--wide {
		grid-column: auto;
	}

	.contact-popup__footer {
		margin-top: 32px;
		gap: 16px;
		flex-wrap: wrap;
	}

	.contact-popup__success-card {
		padding: 82px 24px 40px;
	}

	.contact-popup__success-title {
		font-size: 30px;
	}

	.contact-enquiry-page {
		margin: 20px auto 64px;
	}

	.primary-menu {
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px 24px;
	}

	.clientele {
		grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
	}

	.clientele__title-wrap {
		max-width: none;
	}

	.ups-slides {
		min-height: 510px;
	}

	.contact-annouce {
		margin-bottom: 18px;
	}

	.contact-annouce-wrap {
		padding-left: 72px;
	}

	.contact-annouce-wrap::before {
		left: 20px;
		width: 52px;
		height: 62px;
	}

	.contact-annouce-marquee {
		font-size: 18px;
	}

	.usp-impact {
		padding-top: 0;
		padding-bottom: 90px;
		flex-direction: column-reverse;
		gap: 50px;
	}

	.usp-impact-graphic {
		scale: 1;
	}

	.usp-impact .left h1 {
		margin-bottom: 30px;
	}

	.usp-impact .left {
		text-align: center;
	}

	.enquiry-content {
		padding-left: 354px;
	}

	.ups-slides .slide {
		padding: 34px 28px 34px;
		height: 400px;
	}

	.performance {
		padding: 74px 20px 28px;
	}

	.performance-title {
		margin-bottom: 34px;
		font-size: 38px;
	}

	.performance-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.performance-card {
		min-height: 260px;
	}

	.performance-card__desc {
		font-size: 18px;
	}

	.accordion-trigger {
		padding: 18px 12px 18px 20px;
		gap: 16px;
	}

	.accordion-trigger .title {
		gap: 14px;
		font-size: 24px;
	}

	.accordion-trigger .icon {
		font-size: 40px;
	}

	.accordion-item .content {
		transition: grid-template-rows 0.42s ease, opacity 0.28s ease;
	}

	.accordion-item .content-inner {
		grid-template-columns: 1fr;
		padding: 0 20px;
		gap: 18px;
	}

	.accordion-item.is-open .content-inner {
		padding: 22px 20px 0;
	}

	.accordion-item .image {
		min-height: 0;
		max-width: 240px;
		padding-left: 0;
	}

	.accordion-item .image img {
		width: 100%;
		height: auto;
		max-width: 100%;
	}

	.accordion-item .text ul {
		font-size: 15px;
		max-width: none;
	}

	.site-footer .top {
		flex-direction: column;
		gap: 15px;
		margin-bottom: 15px;
	}

	.site-footer .top .left {
		display: flex;
		justify-content: center;
	}

	.site-footer .top .left img {
		width: 110px;
	}

	.site-footer .top .mid, .site-footer .top .right {
		justify-content: center;
	}

	.site-footer .top .left::after {
		display: none;
	}

	.cube-1-img {
		width: 200px;
		top: -7%;
	}

	.cube-2-img {
		width: 110px;
	}

	.how-we-work {
		margin: 80px 0;
		padding-bottom: 80%;
	}
	
	.how-we-work-content {
		max-width: unset;
	}

	.how-we-work::before {
		width: 100%;
		top: unset;
		bottom: 0;
		height: auto;
		aspect-ratio: 1 / 0.9;
	}

	.meet-content {
		padding-left: 35px;
		min-width: 312px;
	}

    .meet-img {
		max-width: 460px;
	}

	.performance-stars, .performance-stars-2, .how-difference-stars-2, .services-stars-2, .services-stars-1, .case-studies-hero__star--left, .case-studies-hero__star--right, .case-study-single__intro-star, .case-study-single__intro-star2, .insights-page__star--left, .insights-page__star--right, .how-difference-stars, .how-difference-stars-2 {
		width: 100px;
	}

	.services-hero {
		padding: 109px 30px 65px 30px;
		justify-content: center;
	}

	.services-hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background-color: rgba(0, 0, 0, 0.3);
		z-index: 1;
	}

	.services-hero-content {
		position: relative;
		z-index: 2;
	}

	.services-enquiry__media {
		flex-basis: 29%;
	}

	.case-studies-hero {
		padding: 0 24px 72px;
		justify-content: flex-start;
	}

	.case-studies-hero__content {
		max-width: 100%;
		padding-top: 120px;
	}

	.case-study-filters {
		justify-items: start;
	}

	.case-study-filter-switcher {
		flex-wrap: wrap;
	}

	.case-study-card__media,
	.case-study-card__overlay {
		min-height: 320px;
	}

	.case-study-single__hero-row {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-areas:
			"back next"
			"content content";
		align-items: start;
		gap: 20px 16px;
		height: auto;
	}

	.case-study-single__hero {
		padding-top: 86px;
	}

	.insight-single__topnav {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-areas: "back next";
		align-items: start;
		gap: 20px 16px;
		padding: 28px 20px 0;
	}

	.case-study-single__hero-content {
		flex-direction: column;
	}

	.case-study-single__cta-row {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-areas:
			"back next"
			"content content";
		align-items: start;
		gap: 20px 16px;
	}

	.case-study-single__hero-content {
		grid-area: content;
		grid-column: 1 / -1;
		grid-template-columns: 1fr;
		gap: 24px;
		justify-items: center;
		text-align: center;
	}

	.case-study-single__cta-copy {
		grid-area: content;
		grid-column: 1 / -1;
	}

	.insight-single__topnav .case-study-single__nav-link--back {
		grid-area: back;
		justify-self: start;
	}

	.insight-single__topnav .case-study-single__nav-link--next,
	.insight-single__topnav .case-study-single__nav-link-placeholder {
		grid-area: next;
		justify-self: end;
	}

	.case-study-single__nav-link--back {
		grid-area: back;
		justify-self: start;
	}

	.case-study-single__nav-link--next {
		grid-area: next;
		justify-self: end;
	}

	.case-study-single__strategy-image img {
		min-height: 150px;
		object-fit: cover;
	}

	.contact-annouce {
		margin-bottom: 14px;
	}

	.contact-annouce-wrap {
		padding-left: 58px;
	}

	.contact-annouce-wrap::before {
		left: 16px;
		width: 40px;
		height: 48px;
	}

	.contact-annouce-marquee {
		font-size: 16px;
	}

	.case-study-single__cta {
		padding-top: 50px;
	}

	.case-study-single {
		padding-bottom: 50px;
	}

	.case-study-single__cta-copy h2 {
		font-size: 34px !important;
	}

	.insights-page__hero::before {
		background-position: center center;
        scale: 0.6;
        top: -89%;
        left: unset;
		right: 0;
		transform: translateX(5%);
	}

	.insights-page__hero {
		min-height: 310px;
		justify-content: flex-end;
	}

	.insights-page__hero-copy {
		max-width: 400px;
	}

	.insights-page__panel {
		padding: 80px 50px;
	}

	.insights-page {
		padding-bottom: 0;
	}

	.contact-hero-content {
		max-width: 425px;
	}

	.contact-hero-wrap{
		padding-top: 120px;
		padding-right: 0;
	}

	.contact-enquiry-page  {
		padding-top: 80px;
	}

	.performance-stars {
		top: -30px;
	}

	.enquiry-icon-whatsapp {
		max-width: 200px;
		bottom: -20%;
    	right: -7%;
	}

	.enquiry .enquiry-icon-linkedin {
		bottom: -11%;
		right: 3%;
		max-width: 180px;
	}

	.enquiry-backlight {
		width: 700px;
		transform: translate(-28%, -13%);
		aspect-ratio: 1/0.88;
	}

	.enquiry-content {
		padding-top: 145px;
		padding-bottom: 140px;
	}

	.accordion-item::before {
		background-size: 800px 800px;
		background-position: center -500px;
	}

}

@media (max-width: 767px) {

	h1, .text-heading {
		font-size: 32px !important;
	}

	h2, .text-title {
		font-size: 24px !important;
	}

	.performance-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 20px !important;
		padding: 0;
	}

	.performance {
		margin-bottom: 100px;
	}

	.ups-slides .slide {
		height: 300px;
	}

	.performance-card__title {
		font-size: 32px;
	}

	.performance-card__desc {
		font-size: 16px;
	}

	.ups-slides .slide h1 {
		font-size: 28px !important;
	}

	.usp-impact {
		flex-direction: column !important;
		text-align: center !important;
	}

	.enquiry-content {
		padding-top: 100px !important;
		text-align: center !important;
	}

	/* Case Studies Mobile */
	.case-study-grid {
		grid-template-columns: 1fr !important;
	}

	.case-study-single__hero-row {
		flex-direction: column !important;
	}

	.case-study-single__results-grid {
		display: flex;
		flex-direction: column;
	}

	.case-study-single__results h2 {
		margin-bottom: 30px;
	}

	.case-study-single__result-card {
		grid-area: auto !important;
		min-height: 0 !important;
	}

	.case-study-single__results-trophy {
		grid-column: 1 / -1 !important;
	}

	/* Insights Mobile */
	.insights-page__grid {
		grid-template-columns: 1fr !important;
	}

	.insight-single__hero-card {
		flex-direction: column !important;
	}

	/* Services Mobile */
	.services-hero h1 {
		font-size: 30px !important;
	}

	.accordion-item::before {
        background-size: 600px 600px;
        background-position: center -400px;
    }

	.accordion-item .content-inner {
		flex-direction: column-reverse !important;
		align-items: flex-end;
	}

	.accordion-item .image {
		width: 100% !important;
		max-width: 200px !important;
	}

	.ups-slides {
		min-height: 400px;
	}

	.ups-slides .slide .slide-img {
		max-width: 250px;
		right: 0%;
	}

	.ups-slides .slide p {
		font-size: 16px;
		max-width: 260px;
	}
	
	.usp-impact-graphic {
		width: 100%;
		aspect-ratio: 1/0.375;
	}

	.usp-impact-graphic__icon--target {
		width: 13.56%;
	}

	.usp-impact-graphic__icon--solution {
		width: 13.11%;
	}

	.usp-impact-graphic__icon--trophy {
		width: 15.20%;
	}

	.enquiry-backlight {
		width: 600px;
		transform: translate(-41%, -13%);
	}

	.enquiry-content {
		padding-left: 200px;
	}

	.site-footer .mid span {
		font-size: 14px;
	}

	.site-footer .top .right a {
		width: 30px;
	}

	.cube-1-img {
        width: 150px;
        top: -5%;
    }

	.cube-2-img {
		width: 90px;
	}

	.who-we-are-content {
		padding: 0 30px;
	}

	.who-we-are {
		padding-bottom: 100px;
	}

	.meet-the-team {
		flex-direction: column;
		padding-top: 50px;
	}

	.meet-img {
		max-width: 100%;
	}

	.meet-content {
		padding-left: 0;
		text-align: center;
	}

	.services-enquiry__content {
		text-align: center;
		padding-bottom: 0;
	}

	.services-enquiry-content {
		justify-content: center;
		flex-direction: column-reverse;
	}

	.services-enquiry__media {
		min-height: 250px;
		width: 100%;
		background: url(../images/service-enquiry.png) top center / cover no-repeat;
		margin-left: 10%;
	}

	.services-enquiry__media img {
		display: none;
	}

	.case-study-single__client-logo {
		max-width: 150px;
	}

	.case-study-single__intro-panel {
		padding: 50px 30px 80px;
	}

	.case-study-single__results-grid {
		grid-template-columns: 1fr !important;
		padding: 0 !important;
		gap: 20px;
	}

	.case-study-single__results-trophy {
		order: -1;
		grid-column: 1 / -1 !important;
		justify-self: center;
	}

	.case-study-single__results-grid--count-3 .case-study-single__result-card:nth-of-type(3), .case-study-single__results-grid--count-5 .case-study-single__result-card:nth-of-type(5) {
		width: 100%;
	}

	.insights-page__panel {
		padding: 60px 30px;
	}

	.insights-card__label {
		font-size: 18px;
	}

	.insight-single__hero-card {
		margin-left: 30px;
		margin-right: 30px;
	}

	.insight-single__hero-title h1 {
		font-size: 22px !important;
	}

	.insight-single__steps h2, .insight-single__takeaways h2 {
		margin-bottom: 30px;
	}

	.insight-single__step {
		padding: 30px 50px;
	}

	.insight-single__cta-inner {
		padding-top: 80px;
		padding-bottom: 60px;
	}

	.contact-hero-wrap {
		text-align: center;
		flex-direction: column-reverse;
		align-items: center;
		padding-bottom: 0;
		margin-bottom: -120px;
	}

	.contact-hero-content {
		max-width: 381px;
	}

	.contact-hero-img {
		position: relative;
		top: unset;
		transform: none;
	}

	.contact-hero-img {
		max-width: 300px;
	}

	.hero-img-1 {
		max-width: 400px;
	}
	
	.hero {
		padding-bottom: 180px;
	}

	.hero-img-3 {
		max-width: 150px;
	}

	.hero-img-3 {
		bottom: 9%;
	}

	.hero-img-4 {
        max-width: 160px;
        right: -11%;
        top: 60%;
    }

	.performance-stars, .performance-stars-2, .how-difference-stars-2, .services-stars-2, .services-stars-1, .case-studies-hero__star--left, .case-studies-hero__star--right, .case-study-single__intro-star, .case-study-single__intro-star2, .insights-page__star--left, .insights-page__star--right, .how-difference-stars, .how-difference-stars-2 {
		width: 80px;
	}

	.performance-stars-2 {
		width: 70px;
		left: -50px;
	}

	.ups-slides .slide.slide-2 {
		top: -35px;
	}

	.ups-slides .slide.slide-3 {
		top: -70px;
	}

	.how-difference-stars {
		top: -31%;
	}

	.how-difference-stars-2 {
		bottom: -40%;
	}

	.insights-page__hero {
		min-height: unset;
		padding: 120px 0 220px;
		justify-content: center;
	}

	.insights-page__hero-copy {
		max-width: unset;
		text-align: center;
	}

	.insights-page__hero::before {
		scale: 1;
        top: 30%;
        width: calc(100% + 65px);
        max-height: 500px;
        left: 50%;
        transform: translateX(-50%);
	}

	.insights-page__panel h2 {
		font-size: 22px !important;
	}

	.insights-page__star--left {
		left: -40px;
		top: -1px;
	}

	.insights-page__star--right {
		right: -47px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.performance-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.case-study-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.insights-page__grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 575px) {
	:root {
		--font-size-title: 18px;
		--font-size-body: 14px;
	}
	h1, .text-heading, .hero h1 {
		font-size: 28px !important;
	}

	.ups-slides .slide h1 {
		font-size: 24px !important;
	}

	h2, .text-title {
		font-size: 18px !important;
	}

	.ups-slides .slide p {
		font-size: 14px;
	}

	.hero {
		padding-left: 30px;
		padding-right: 30px;
	}

	.hero .hero-ctas {
		gap: 10px;
	}
	.clientele {
		grid-template-columns: 1fr;
		padding-top: 40px;
	}

	.clientele__title {
		text-align: center;
	}

	.performance {
		padding: 50px 30px 30px;
	}

	.performance-card {
        min-height: 160px;
    }

	.ups-slides .slide .slide-img {
		max-width: 250px;
	}

	.ups-slides .slide p {
		max-width: 160px;
	}

	.ups-slides {
		min-height: 380px;
	}

	.usp-impact {
		padding-bottom: 50px;
	}

	.enquiry-backlight {
        width: 400px;
        top: unset;
        bottom: 0;
        left: -30px;
        transform: none;
        right: unset;
    }

	.enquiry-content {
		padding-left: 30px;
		padding-right: 30px;
		padding-top: 80px !important;
		padding-bottom: 320px;
	}

	.enquiry .enquiry-ctas {
		justify-content: center;
	}

	.site-footer .top .left img {
		width: 90px;
	}

	.site-footer .mid span.footer-divider {
		display: none;
	}

	.site-footer .top .mid {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.site-footer .mid span {
		font-size: 12px;
	}

	.site-footer .btm {
		font-size: 11px;
	}

	.site-footer .btm span.regno {
		font-size: 10px;
	}

	.about-us-container {
		padding-top: 100px;
	}

	.who-we-are {
		padding-top: 30px;
		padding-bottom: 60px;
	}
	.cube-1-img {
        width: 100px;
    }
	.cube-2-img {
        width: 60px;
        right: -7%;
    }

	.how-difference-stars-2, .services-stars-2, .services-stars-1, .case-studies-hero__star--left, .case-studies-hero__star--right, .case-study-single__intro-star, .case-study-single__intro-star2, .insights-page__star--left, .insights-page__star--right, .how-difference-stars, .how-difference-stars-2 {
		width: 80px;
	}

	.how-we-work {
		margin: 50px 0;
		padding: 50px 30px 80%;
		overflow: visible;
	}

	.how-difference {
		flex-direction: column;
	}

	.services-hero {
		padding-bottom: 40px;
		margin-bottom: 50px;
	}

	.accordion-trigger .title {
		font-size: 18px;
	}

	.accordion-trigger .icon {
		font-size: 30px;
	}

	.services-enquiry__actions {
		flex-direction: column;
		gap: 15px;
		align-items: center;
	}

	.case-studies-hero {
		padding-bottom: 50px;
	}

	.case-studies-hero__content {
		padding-top: 100px;
	}

	.case-study-card__media, .case-study-card__overlay {
		min-height: 210px;
	}

	.case-study-card__logo {
		max-width: 50%;
	}

	.case-study-grid {
		row-gap: 50px;
	}

	.case-study-single__nav-icon svg {
		width: 25px;
	}

	.case-study-single__nav-link {
		font-size: 14px;
		min-height: 42px;
	}

	.case-study-single__hero-content {
		padding: 0;
	}

	.case-study-single__summary-grid {
		padding: 0;
		gap: 50px;
	}

	.case-study-single__strategy-content {
		padding: 40px 20px;
	}

	.case-study-single__results {
		padding: 50px 0;
	}

	.case-study-single__results h2 {
		margin-bottom: 30px;
	}

	.insights-page__cards {
		grid-template-columns: 1fr;
	}

	.insights-card__image {
		width: 60%;
		margin-top: 0;
	}

	.insights-card__overlay, .insights-card__media {
		min-height: 280px;
	}

	.insight-single__topnav {
		padding-left: 0;
		padding-right: 0;
	}

	.insight-single__hero-card {
		margin-left: 0;
		margin-right: 0;
	}

	.insight-single__hero-copy {
		padding: 30px;
	}

	.insight-single__step {
		padding-left: 10px;
		padding-right: 10px;
	}

	.insight-single__step h3 {
		font-size: 18px;
	}

	.insight-single__step-body {
		padding-left: 46px;
	}

	.insight-single__takeaways-grid, .contact-popup__grid--two, .contact-popup__choices, .contact-popup__choices--compact {
		grid-template-columns: 1fr;
	}

	.insight-single__takeaways-grid {
		display: flex;
		flex-direction: column;
	}

	.insight-single__takeaways-illustration {
		order: -1;
		max-width: 180px;
	}

	.insight-single__takeaway-card {
		font-size: 14px;
	}

	.insight-single__cta-link {
		font-size: 14px;
	}
	
	.contact-hero-wrap {
		padding-left: 0;
		padding-right: 0;
	}

	.contact-method-card {
		min-height: 160px;
	}

	.contact-enquiry-page .contact-popup__dialog {
		padding-left: 30px;
		padding-right: 30px;
	}

	.contact-enquiry-page .contact-popup__question span, .contact-enquiry-page .contact-popup__choice, .contact-enquiry-page .contact-popup__field input, .contact-enquiry-page .contact-popup__field textarea, .contact-enquiry-page .contact-popup__date input, .contact-enquiry-page .contact-popup__date-placeholder, .contact-popup__choice-input {
		font-size: 14px;
	}

	.contact-popup__footer .btn-primary {
		min-width: 100px;
	}

	.contact-enquiry-page .contact-popup__single, .contact-enquiry-page .contact-popup__choices, .contact-enquiry-page .contact-popup__date {
		margin-left: 0;
	}

	.contact-popup__field--iconbox {
		flex-wrap: wrap;
	}

	.contact-popup__field--iconbox input {
		flex-basis: 100%;
	}

	.contact-popup__field--iconbox .contact-popup__field--title {
		margin-left: 4px;
		margin-bottom: 10px;
	}

	.contact-popup__field--iconbox .contact-popup__field--icon {
		margin-bottom: 10px;
	}

	.contact-popup__field--whatsapp-secondary .contact-popup__field--iconbox .contact-popup__field--title, .contact-popup__field--whatsapp-secondary .contact-popup__field--iconbox .contact-popup__field--icon {
		margin-bottom: 0;
	}

	.hero-img-3 {
		max-width: 120px;
	}

	.hero-img-4 {
		max-width: 130px;
	}

	.clientele__logo-image {
		max-width: 150px;
		max-height: 58px;
	}

	.enquiry-icon-whatsapp {
		max-width: 120px;
	}

	.enquiry .enquiry-icon-linkedin {
        bottom: -6%;
        max-width: 120px;
    }

	.how-difference-stars-2 {
		right: -17.7%;
	}

	.how-difference-stars {
		left: -21.5%;
	}

	.accordion-item::before {
        background-size: 500px 500px;
        background-position: center -350px;
    }

	.case-study-single__results-trophy {
		max-width: 200px;
	}

	.contact-annouce-marquee {
		font-size: 14px;
	}

	.contact-hero-img {
		max-width: 250px;
	}

	.contact-method-card__media {
		width: 100%;
		max-width: 60px;
	}

	.contact-method-card__title {
		font-size: 16px !important;
	}

	.services-stars-1 {
		display: none;
	}

	.services-stars-2 {
		bottom: -41px;
    	right: 34px;
	}

	/* #services-accordion-panel-2 .image {
		margin-right: -30px;
	}

	#services-accordion-panel-4 .image {
		margin-right: -20px;
		margin-top: -20px;
	}

	#services-accordion-panel-7 .image {
		margin-top: -20px;
	}

	#services-accordion-panel-8 .image {
		margin-right: -20px;
		margin-top: -25px;
	} */

	.case-studies-hero__star--left {
		left: -44px;
	}

	.case-study-single__intro-star2 {
		display: none;
	}

	.case-study-single__intro-star {
		right: 14px;
    	top: -31px;
	}

	.case-study-single__summary-grid {
		position: relative;
		z-index: 3;
	}

	.case-study-single__strategy-star {
		position: absolute;
		width: 80px;
		bottom: -240px;
        left: -40px;
	}

	.case-study-single__cta-button {
		margin-top: 20px;
	}

	.services-enquiry__text {
		margin-bottom: 30px;
	}

	.contact-popup__success-text {
		margin-bottom: 30px;
	}

	.contact-popup__success-card {
		padding-top: 100px;
	}

	.postid-118 .case-study-single__client-logo {
		max-width: 180px;
	}

	.postid-126 .case-study-single__client-logo {
		max-width: 190px;
	}

	.site-footer .btm span.rights {
		display: block;
	}

	.how-work-stars {
		position: absolute;
		width: 80px;
		top: -34px;
        left: 40px;
	}

	.insight-single__cta-inner h2 {
		font-size: 24px !important;
	}

	.contact-hero-content h1 {
		max-width: 330px;
	}

	.performance-stars-2 {
		display: none;
	}

	.contact-hero-content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.case-study-single__hero-row {
		min-height: 378px;
	}

	.meet-img-bubble1 {
		top: 20%;
        left: -6%;
        width: 48%;
	}

	.meet-img-bubble2 {
		top: 26%;
        right: -2.5%;
        width: 44%;
	}

}

@media (min-width: 576px) {
	.case-study-single__strategy-star, .how-work-stars {
		display: none;
	}
}

@media (max-width: 480px) {
	.hero-img-1 {
		max-width: 320px;
	}

	.hero {
		padding-bottom: 160px;
	}

	.hero-img-3 {
		max-width: 90px;
		left: -8%;
		bottom: 17%;
	}

	.hero-img-4 {
		max-width: 100px;
		right: -6%;
        top: 53%;
	}

	.hero .hero-ctas {
		gap: 5px;
	}

	.performance-card__title {
		font-size: 24px;
	}

	.performance-card__desc {
		font-size: 12px;
	}

	.ups-slides .slide .slide-img {
		max-width: 190px;
	}

	.ups-slides .slide {
		height: 260px;
	}

	.ups-slides .slide p {
		max-width: 140px;
	}

	.enquiry .enquiry-ctas {
		gap: 15px;
	}

	.cube-1-img {
		top: -3%;
	}

	.accordion-item::before {
        background-size: 400px 400px;
        background-position: center -300px;
    }

	.case-study-single__result-card {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 435px) { 
	.hero .hero-ctas {
		flex-direction: column;
		gap: 15px;
		justify-content: center;
		align-items: center;
	}
}

@media (max-width: 400px) {

	.hero-img-1 {
		max-width: 280px;
	}

	.hero-img-3 {
		left: -17%;
	}

	.hero-img-4 {
        right: -12%;
        top: 54%;
    }

	.clientele__logo-image {
		max-width: 120px;
		max-height: 38px;
	}

	.ups-slides .slide .slide-img {
		max-width: 150px;
	}

	.enquiry .enquiry-ctas {
		flex-direction: column;
		align-items: center;
	}

	.enquiry-content {
		padding-left: 0;
		padding-right: 0;
	}

	.how-difference-stars {
		left: -34.5%;
	}

	.how-difference-stars-2 {
		right: -28.7%;
		bottom: -29%;
	}

	.case-study-single__results-trophy {
		max-width: 150px;
	}
}
