@charset "utf-8";

@font-face { font-family: "Instrument Serif"; src: url('fonts/InstrumentSerif-Regular.woff2') format('woff2'); font-weight: normal; font-style: normal; font-display: swap; }

@font-face { font-family: "OverusedGroteskLight"; src: url("fonts/OverusedGrotesk-Light.woff2") format("woff2"); font-style: normal; font-display: swap; }
@font-face { font-family: "OverusedGroteskSemiBold"; src: url("fonts/OverusedGrotesk-SemiBold.woff2") format("woff2"); font-style: normal; font-display: swap; }
@font-face { font-family: "OverusedGroteskMedium"; src: url("fonts/OverusedGrotesk-Medium.woff2") format("woff2"); font-style: normal; font-display: swap; }
@font-face { font-family: "OverusedGroteskRoman"; src: url("fonts/OverusedGrotesk-Roman.woff2") format("woff2"); font-style: normal; font-display: swap; }

@font-face { font-family: 'ClashGrotesk-Light'; src: url('fonts/ClashGrotesk-Light.woff2') format('woff2'), url('fonts/ClashGrotesk-Light.woff') format('woff'); font-weight: 300; font-display: swap; font-style: normal; }
@font-face { font-family: 'ClashGrotesk-Regular'; src: url('fonts/ClashGrotesk-Regular.woff2') format('woff2'), url('fonts/ClashGrotesk-Regular.woff') format('woff'); font-weight: 400; font-display: swap; font-style: normal; }
@font-face { font-family: 'ClashGrotesk-Medium'; src: url('fonts/ClashGrotesk-Medium.woff2') format('woff2'), url('fonts/ClashGrotesk-Medium.woff') format('woff'); font-weight: 500; font-display: swap; font-style: normal; }
@font-face { font-family: 'ClashGrotesk-Semibold'; src: url('fonts/ClashGrotesk-Semibold.woff2') format('woff2'), url('fonts/ClashGrotesk-Semibold.woff') format('woff'); font-weight: 600; font-display: swap; font-style: normal; }
@font-face { font-family: 'ClashGrotesk-Bold'; src: url('fonts/ClashGrotesk-Bold.woff2') format('woff2'), url('fonts/ClashGrotesk-Bold.woff') format('woff'); font-weight: 700; font-display: swap; font-style: normal; }

:root {
	--bg: 13, 13, 13;
	--text: 255, 255, 255;

	/* Micro spacing */
	--space-xs: clamp(4px, 0.35vw, 8px);
	--space-sm: clamp(8px, 0.6vw, 16px);

	/* Content spacing */
	--space-md: clamp(16px, 1.2vw, 24px);
	--space-lg: clamp(20px, 1.6vw, 32px);
	--space-xl: clamp(24px, 2vw, 40px);

	/* Layout spacing */
	--space-xxl: clamp(24px, 2.6vw, 48px);
	--space-xxxl: clamp(28px, 3.2vw, 56px);

	/* Section spacing */
	--section-spacing: clamp(80px, 7.8vw, 160px);

	/* Base font */
	--fs-base: 16px;

	/* Micro text */
	--fs-2xs: clamp(10px, 0.61vw, 12px);
	--fs-xs: clamp(12px, 0.70vw, 14px);
	--fs-sm: clamp(14px, 0.8vw, 16px);

	/* Body text steps */
	--fs-md: clamp(14px, 1.2vw, 18px);
	--fs-md-2: clamp(15px, 0.95vw, 19px);

	/* Small headings / large body */
	--fs-lg: clamp(14px, 1.2vw, 20px);
	--fs-lg-2: clamp(16px, 1.2vw, 21px);
	--fs-xl: clamp(16px, 1.07vw, 22px);
	--fs-2xl: clamp(18px, 1.17vw, 24px);

	/* Section titles */
	--fs-3xl: clamp(20px, 1.56vw, 32px);

	/* Large heading steps (kept ALL) */
	--fs-4xl: clamp(22px, 1.66vw, 34px);
	--fs-4xl-2: clamp(22px, 1.76vw, 36px);
	--fs-4xl-3: clamp(24px, 1.86vw, 38px);
	--fs-4xl-4: clamp(20px, 1.95vw, 40px);
	--fs-4xl-5: clamp(22px, 2.15vw, 44px);
	--fs-4xl-6: clamp(24px, 2.34vw, 48px);
	--fs-4xl-7: clamp(26px, 2.54vw, 52px);
	--fs-4xl-8: clamp(28px, 2.73vw, 56px);
	--fs-4xl-9: clamp(28px, 2.93vw, 60px);

	/* Hero title steps */
	--fs-5xl: clamp(26px, 3.13vw, 64px);
	--fs-5xl-2: clamp(22px, 3.22vw, 66px);
	--fs-6xl: clamp(26px, 4.30vw, 88px);
	--fs-7xl: clamp(30px, 4.4vw, 96px);

	/* TRANSITION */
	--all-fast: all 0.3s;
	--all-medium: all 0.5s;
	--all-slow: all 0.8s;
}

.dark-mode {
	--bg: 255, 255, 255;
	--text: 0, 0, 0;
}

*, ul, ol, li, a { margin: 0; padding: 0; border: none; list-style-type: none; -webkit-box-sizing: border-box; box-sizing: border-box; font-family: "ClashGrotesk-Regular"; font-weight: 400; line-height: 120%; color: inherit; color: rgba(var(--text), 0.7); text-decoration: none; outline: 0; color: inherit; }
input,
input:focus,
textarea,
textarea:focus,
.form-control,
.form-control:focus { -webkit-box-shadow: none; box-shadow: none; outline: none; background: transparent; color: rgba(var(--text), 0.7); }
.btn:focus, .form-check-input:focus { box-shadow: none; }

.form-control::placeholder { color: rgba(var(--text), 0.7); opacity: 1; text-transform: lowercase; }
.dark-mode .form-control::placeholder { color: rgba(var(--text), 0.8); text-transform: lowercase; }

input, textarea { background: transparent; color: #fff; caret-color: #fff; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	background: transparent;
	color: rgba(var(--text), 1);
	caret-color: #fff;
}

/* STRONG autofill override */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 1000px #0d0d0d inset !important; /* match form bg */
	box-shadow: 0 0 0 1000px #0d0d0d inset !important;
	-webkit-text-fill-color: #fff !important;
	caret-color: #fff !important;
}

/* Force actual text layer */
input:-webkit-autofill::first-line {
	color: #fff !important;
}


button { background: transparent; outline: none; border: none; -webkit-box-shadow: none; box-shadow: none; cursor: pointer; }
button:hover, button:focus { text-decoration: none; outline: 0; color: inherit; }

.form-select:focus { box-shadow: none; }

::selection { background: rgba(var(--text), 1); color: rgba(var(--bg),  1); }

[type=reset], [type=submit], button, html [type=button] { -webkit-appearance: none; outline: none; border: none; }

a { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; color: inherit; text-decoration: none; }
a:hover { color: inherit; }

body { width: 100%; font-size: var(--fs-sm); width: 100%; position: relative; font-weight: 400; line-height: 1.2; font-family: "ClashGrotesk-Regular"; color: rgba(var(--text), 1); background-color: rgba(var(--bg),  1); z-index: 1; overflow-x: hidden; -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; }
body p, .schema-faq-question { font-size: var(--fs-lg-2); color: rgba(var(--text), 0.7); font-family: "ClashGrotesk-Regular"; font-weight: 400; line-height: 1.3; margin-bottom: 16px; letter-spacing: 0.5px; }
body p:empty { display: none; }
.dark-mode p, .dark-mode .schema-faq-question { color: rgba(var(--text), 0.8); font-weight: 500; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { font-family: "OverusedGroteskLight"; font-weight: 400; color: rgba(var(--text), 1); }

strong { font-weight: 400; }

.container { max-width: calc(100% - 100px); }

@media screen and (min-width: 1681px) {
	.container { max-width: 1480px; }
}

@media screen and (min-width: 2049px) {
	.container { max-width: 1920px; }
}


/* BUTTON CSS */
.btn-text-wrapper { display: block; position: relative; overflow: hidden; }

.btn-text { display: flex; align-items: center; gap: var(--space-xs); transition: transform 0.4s ease; font-size: 18px; color: rgba(var(--text), 1); font-family: "OverusedGroteskMedium"; font-weight: 500; text-transform: initial; line-height: 1.1; letter-spacing: 0.5px; margin-bottom: 0; will-change: transform; transition: var(--all-medium); }

.btn { position: relative; overflow: hidden; display: inline-block; padding: 20px 30px; border-radius: var(--space-xxxl); cursor: pointer; font-weight: 400; transition: background-color 0.5s; }
.btn--primary { border: 2px solid rgba(var(--text), 1); border-radius: var(--space-xxxl); border: 1px solid rgba(var(--text), 1); background: transparent; color: rgba(var(--text), 1); font-size: var(--font-xs); }
.btn--primary:hover, .btn--primary:focus-visible { background: rgba(var(--text), 1); color: rgba(var(--bg),  1); }
.btn--primary:hover .btn-text, .btn--primary:focus-visible .btn-text { color: rgba(var(--bg),  1); }

.btn--secondary { border-radius: var(--space-xxxl); border: 1px solid rgba(var(--text), 1); background: rgba(var(--text), 1); color: rgba(var(--bg),  1); font-size: var(--font-xs); }
.btn--secondary .btn-text { color: rgba(var(--bg),  1); }
.btn--secondary:hover, .btn--secondary:focus-visible { background: transparent; border-color: rgba(var(--text), 1); color: rgba(var(--text), 1); }
.btn--secondary:hover .btn-text, .btn--secondary:focus-visible .btn-text { color: rgba(var(--text), 1); }
.btn-text svg path { stroke: rgba(var(--bg),  1); transition: var(--all-medium); }
.btn--secondary:hover .btn-text svg path, .btn--secondary:focus-visible .btn-text svg path { stroke: rgba(var(--text), 1); }


/* SECTION TITLE */
.section--title--wrapper { width: 100%; display: block; margin-bottom: calc(var(--space-lg) * 2); }
.section--title { width: 100%; font-size: var(--fs-7xl); line-height: 100%; font-weight: 200; margin-bottom: 0; color: rgba(var(--text), 1); }
.section--title:has( + *) { margin-bottom: var(--space-xl); }
.section--title:has( + .section--subtitle) { margin-bottom: var(--space-xs); }
.section--title br { display: none; }
.section--subtitle { width: 100%; font-size: var(--fs-4xl-4); line-height: 122%; font-family: "Instrument Serif"; margin-bottom: 0; color: rgba(var(--text), 1); }
.section--subtitle a { font-size: var(--fs-4xl-4); line-height: 122%; font-family: "Instrument Serif"; margin-bottom: 0; }
.section--subtitle:has( + *) { margin-bottom: var(--space-xl); }

.section--subtitle .spaceparagraph, .section--subtitle .description-highlight-space { display: none; }
.section--subtitle br { display: none; }

.title { font-family: "ClashGrotesk-Regular"; }
.subtitle { font-family: "OverusedGroteskLight"; font-size: var(--fs-md-2); margin-bottom: var(--space-lg); text-align: right; font-weight: 100; text-transform: uppercase; }

.page--title { font-size: 22px; line-height: 1.2; margin-bottom: 0; font-family: "OverusedGroteskLight"; }
.page--title a { font-size: 22px; line-height: 1.2; font-family: "OverusedGroteskLight"; color: rgba(var(--text), 0.9); }

/* BREADCRUMB */
.breadcrumb { display: flex; flex-wrap: nowrap; align-items: center; font-size: var(--fs-xs); margin: 0; width: 100%; margin-bottom: 0; }
nav:has( + *) .breadcrumb { margin-bottom: var(--space-xl); }
.breadcrumb-item { position: relative; font-size: var(--fs-sm); padding: 0; color: rgba(var(--text), 0.7); transition: var(--all-medium); }
.breadcrumb-item a { font-size: var(--fs-sm); }
.breadcrumb-item:not(.active) { display: flex; flex-wrap: nowrap; white-space: nowrap; }
.breadcrumb-item.active, .breadcrumb-item.current { color: rgba(var(--text), 0.9); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(var(--text), 0.5); }
.breadcrumb-item+.breadcrumb-item { padding-left: 5px; }
.breadcrumb-item+.breadcrumb-item::before { padding-right: 5px; }

.dark-mode .breadcrumb-item {color: rgba(var(--text), 0.7); }
.dark-mode .breadcrumb-item.active, .breadcrumb-item.current { color: rgba(var(--text), 0.8); }

/* LOADER */

.loader-container { position: fixed; display: flex; flex-flow: row wrap; align-content: center; justify-content: center; align-items: center; width: 100%; height: 100vh; background: #000000; z-index: 12; transition: var(--all-medium); }
.circular-progress { position: relative; height: 180px; width: 180px; border-radius: 50%; display: flex; align-items: center; justify-content: center; --progress: 0deg;  transform: rotate(90deg); }
.circular-progress::before { content: ""; position: absolute; inset: 0; border-radius: 50%; }
.circular-progress::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: conic-gradient( from -90deg, #0b0f3a, #0f3d91, #4b1fa8, #d414a3, #ff2f92, #ffb300, #0b0f3a var(--progress), #23222200 var(--progress) ); }

.loader { position: relative; width: 176px; height: 176px; background: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; transform: rotate(-90deg); }
.progress-value { width: 100%; height: 100%; text-align: center; font-size: 20px; font-weight: 300; display: flex; align-items: center; justify-content: center; color: #fff; }
.loader-container.hidden { pointer-events: none; opacity: 0; }
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

/* HEADER */
.header { width: 100%; position: fixed; top: 0; left: 0; z-index: 5; color: rgba(var(--text), 1); padding: var(--space-md) 0; will-change: transform; transition: var(--all-medium); }
.header.hide { transform: translatey(-100%) scale(0.99); opacity: 0; }

.hamburger--trigger { display: none; width: 100%; max-width: 50px; cursor: pointer; position: relative; }
.hamburger--trigger svg { width: 100%; height: 100%; transition: var(--all-medium); }
.hamburger--trigger svg:last-child { position: absolute; top: 0; left: 0; opacity: 0; width: 100%; }
.hamburger--trigger.is-open svg:last-child { opacity: 1; }
.hamburger--trigger.is-open svg:first-child { opacity: 0; }
.dark-mode .hamburger--trigger svg line { stroke: rgba(var(--text), 1) }

.mobile--menu { --stroke-width: 2px; --border-radius: 24px; position: fixed; display: flex; flex-flow: column wrap; overflow-y: auto; transform: scale(0.98); transform-origin: center bottom; opacity: 0; pointer-events: none; will-change: transform; transition: all 0.45s ease; width: 100%; height: 100dvh; z-index: 5; padding: var(--section-spacing) var(--section-spacing) calc(var(--section-spacing) * 3); }

.mobile--menu::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100dvh; background: rgba(var(--bg),  0.98); border-radius: 0; z-index: -1; pointer-events: none; }

.mobile--menu:before { position: absolute; top: 20px; left: 20px; width: calc(100% - 40px); height: calc(100% - 40px); pointer-events: none; content: ""; padding: var(--stroke-width); -webkit-mask-image: linear-gradient(#fff 0,#fff 0),linear-gradient(#fff 0,#fff 0); mask-image: linear-gradient(#fff 0 0),linear-gradient(#fff 0 0); -webkit-mask-clip: content-box, border-box; mask-clip: content-box, border-box; -webkit-mask-origin: content-box, border-box; mask-origin: content-box, border-box; -webkit-mask-composite: xor; mask-composite: exclude; background: conic-gradient(from var(--angle),#0050f2 0%,#ec27a2 16%,#17128e 36%,#ff675f 58%, #ec27a2 75%,#0050f2 100%); border-radius: calc(var(--border-radius) + var(--stroke-width)); --angle: 0deg; animation: stroke-animation 8s linear 0s infinite forwards; transition: var(--all-medium); pointer-events: none; }

.mobile--menu .first--list { flex: 1; height: 100%; padding-bottom: var(--space-xxxl); overflow: auto; }
.mobile--menu.is-open { transform: scale(1); opacity: 1; pointer-events: all; }
.mobile--menu ul { display: flex; flex-flow: row wrap; align-content: flex-start; width: 100%; list-style: none; padding-left: 0; margin: 0; overflow: auto; }
.mobile--menu ul li { display: flex; flex-flow: row wrap; width: 100%; }
.mobile--menu ul li a { font-family: "Instrument Serif"; color: rgba(var(--text), 1); font-size: var(--fs-4xl-7); font-style: normal; font-weight: 400; display: flex; padding: var(--space-sm) 0; position: relative; }
.mobile--menu ul li a:has( + ul) { padding-right: var(--space-xl); }
.mobile--menu ul li a:has( + ul)::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 18px; aspect-ratio: 1; background: url(../images/icons/dropdown-arrow.svg) no-repeat; background-size: 15px; background-position: center; }
.dark-mode .mobile--menu ul li a:has( + ul)::after { filter: invert(1); }
.mobile--menu ul li ul li a { font-family: "Instrument Serif"; color: rgba(var(--text), 1); font-size: var(--fs-3xl); text-transform: capitalize; font-style: normal; font-weight: 400; display: flex; }
.mobile--menu ul li ul li a:has( + ul) { color: rgba(var(--text), 0.7); padding-right: var(--space-xl); background-size: 16px; }
.mobile--menu ul li ul li ul li a { font-family: "ClashGrotesk-Regular";color: rgba(var(--text), 0.7); font-size: var(--fs-lg); text-transform: capitalize; font-style: normal; font-weight: 400; display: flex; }
.mobile--menu ul ul { padding-left: var(--space-md); height: 0; overflow: hidden; transition: height 0.5s; }

.mobile--menu .social--links { display: flex; flex-flow: row wrap; align-items: center; justify-content: center; gap: var(--space-md); }
.mobile--menu .social--links a { width: auto; font-size: var(--fs-2xl); font-weight: 300; color: rgba(var(--text), 1); text-transform: capitalize; position: relative; padding: var(--space-sm) 0; }

.sticky-header:has( .hamburger--trigger.is-open):before { opacity: 0; }

.logo-wrapper { flex: 0 0 auto; }
.logo { width: 170px; display: inline-flex; }
.logo img { width: 100%; height: 100%; object-fit: contain; }
.dark-mode .logo img { filter: invert(1); }

.right-wrapper { flex: 1; display: flex; align-items: center; gap: var(--space-sm); }

.menu ul { list-style: none; display: flex; flex-wrap: wrap; margin: 0; padding: 0; margin-right: var(--space-sm); }
.menu li > a, .menu li > button { position: relative; padding: var(--space-xs) 0; transition: var(--all-medium); }
.menu li:hover > a, .menu li:hover > button { color: rgba(var(--text), 1); }

.menu li a .text-wrap, .menu li button .text-wrap { display: flex; position: relative; overflow: hidden; }
.menu li a .text, .menu li button .text { font-size: var(--fs-md); font-family: "OverusedGroteskLight"; text-transform: capitalize; line-height: 1.2; font-weight: 400; color: rgba(var(--text), 1); letter-spacing: 0.1px; transition: var(--all-medium); }
.dark-mode .menu li a .text, .dark-mode .menu li button .text { color: rgba(var(--text), 0.9); }
.menu li a .text:first-child, .menu li button .text:first-child { transform: translateY(0); }
.menu li a .text:last-child, .menu li button .text:last-child { position: absolute; left: 0; top: 100%; transform: translateY(0); }
.menu li a:hover .text, .menu li button:hover .text { color: rgba(var(--text), 0.9); }
.menu li a:hover .text:first-child, .menu li button:hover .text:first-child { transform: translateY(-100%); }
.menu li a:hover .text:last-child, .menu li button:hover .text:last-child { transform: translateY(-100%); }

.menu ul li.primary-menu-list { padding: var(--space-sm); transition: var(--all-medium); }
.menu ul li.header-dropdown.primary-menu-list { padding-right: var(--space-md); }
.menu ul li.header-dropdown.primary-menu-list::after { content: ""; position: absolute; right: calc(var(--space-xs) / 2); top: 50%; transform: translateY(-50%); width: 18px; aspect-ratio: 1; background: url(../images/icons/dropdown.svg) no-repeat center center; background-size: 22px; background-position: center; }
.dark-mode .menu ul li.header-dropdown.primary-menu-list::after { filter: invert(1); }
.menu .header-dropdown { border-bottom: 1px solid rgba(255, 255, 255, 0); }

.cta-wrapper { display: flex; flex-flow: row wrap; justify-content: flex-end; align-items: center; gap: var(--space-sm); position: relative; }
.cta-wrapper a { display: inline-flex; }
.cta-wrapper .btn--secondary { padding: 0 clamp(14px, 1.24vw, 20px); height: clamp(34px, 2.55vw, 46px); align-items: center; }

.toggle-btn { position: relative; --toggle-width: 36px; --toggle-height: 36px; width: var(--toggle-width); height: var(--toggle-height); --knob-size: 26px; --knob-gap: 4px;  overflow: hidden; }
.toggle-btn svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); height: 25px; width: 25px; transition: var(--all-medium); }
.toggle-btn .moon { transform: translate(-50%, -50%) scale(1); opacity: 1; transition-delay: 0.1s; }
.dark-mode .toggle-btn .moon { transform: translate(-50%, -50%) scale(0); opacity: 0; }
.toggle-btn .sun { transform: translate(-50%, -50%) scale(0); opacity: 0; }
.dark-mode .toggle-btn .sun { transform: translate(-50%, -50%) scale(1); opacity: 1; transition-delay: 0.1s; }


.phone-image { width: clamp(34px, 2.55vw, 46px); height: clamp(34px, 2.55vw, 46px); border: 1px solid rgba(var(--text), 0.3); border-radius: 50%; transition: var(--all-medium); display: flex; flex-flow: row wrap; align-items: center; justify-content: center; }
.phone-image:hover { background-color: rgba(var(--text), 1); }
.phone-image .img--wrapper { display: flex; width: 45%; height: 45%; object-fit: contain; position: relative; overflow: hidden; }
.phone-image .img--wrapper svg { width: 100%; height: 100%; object-fit: contain; }

.phone-image.fill { background: rgba(var(--text), 1); border-color: rgba(var(--text), 1); overflow: hidden; position: relative; }
.phone-image.fill svg { transition: var(--all-medium); }
.phone-image.fill:hover { background-color: rgba(var(--text), 0); border-color: rgba(var(--text), 0.3); }
.phone-image.fill svg path { fill: rgba(var(--bg), 1); transition: var(--all-medium); }
.phone-image.fill:hover svg path { fill: rgba(var(--text), 1); }

.phone-icon { font-size: var(--font-md); color: rgba(var(--text), 1); }

.sticky-header { --stroke-width: 2px; --border-radius: 65px; padding: 0 var(--space-lg); position: fixed; bottom: 0vh; background: rgba(var(--bg) / 0%); box-shadow: 0 4px 30px rgba(var(--bg), 0.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 6; display: flex; justify-content: center; align-items: center; justify-self: center; border-radius: var(--border-radius); left: 50%; transform: translate(-50%, 0%); opacity: 0; pointer-events: none; will-change: transform, opacity, bottom; transition: all 0.5s 0s; }
.sticky-header.show { bottom: 4vh; transform: translate(-50%, 0%); opacity: 1; transition: transform 0.5s 0s, bottom 0.5s 0s, opacity 0.5s 0s, padding 0.5s 0s, max-width 0.8s 0.4s; pointer-events: all; }
.sticky-header.show.active { bottom: 0vh; transform: translate(-50%, 0%); opacity: 0; pointer-events: none; }

.sticky-header::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(var(--bg),  0.3); border-radius: 65px; z-index: -1; }

.sticky-header:before { position: absolute; inset: calc(-1 * var(--stroke-width) + 1px); pointer-events: none; content: ""; padding: var(--stroke-width); -webkit-mask-image: linear-gradient(#fff 0,#fff 0),linear-gradient(#fff 0,#fff 0); mask-image: linear-gradient(#fff 0 0),linear-gradient(#fff 0 0); -webkit-mask-clip: content-box, border-box; mask-clip: content-box, border-box; -webkit-mask-origin: content-box, border-box; mask-origin: content-box, border-box; -webkit-mask-composite: xor; mask-composite: exclude; background: conic-gradient(from var(--angle),#0050f2 0%,#ec27a2 16%,#17128e 36%,#ff675f 58%, #ec27a2 75%,#0050f2 100%); border-radius: calc(var(--border-radius) + var(--stroke-width)); --angle: 0deg; animation: stroke-animation 8s linear 0s infinite forwards; transition: var(--all-medium); }
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes stroke-animation { 0% { --angle: 0deg } 100% { --angle: 360deg } }

.sticky-header:has( .visible):before { opacity: 0; }
.sticky-header .sticky-container { position: relative; white-space: nowrap; width: 100%; }

.sticky-menu { width: 100%; white-space: nowrap; overflow-x: hidden; }
.sticky-menu li.sticky-parent { cursor: pointer; }
.sticky-menu ul { display: flex; justify-content: flex-start; list-style: none; }
.sticky-menu ul a,
.sticky-menu ul .has-dropdown { font-size: var(--fs-xs); display: block; }
.sticky-menu ul .has-dropdown > a, .sticky-menu ul .has-dropdown > button { padding-right: var(--space-md); }
.sticky-menu ul .has-dropdown > a::after, .sticky-menu ul .has-dropdown > button::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 18px; aspect-ratio: 1; background: url(../images/icons/dropup.svg) no-repeat center center; background-size: 26px; }
.dark-mode .sticky-menu ul .has-dropdown > a::after, .dark-mode .sticky-menu ul .has-dropdown > button::after { filter: invert(1); }

.dropdown { position: absolute; bottom: 100%; left: 150%; transform: translate(-50%, 20px); background: #111; display: flex; flex-direction: row; gap: var(--space-md); padding: var(--space-lg) var(--space-xl); width: max-content; opacity: 0; visibility: hidden; will-change: transform, opacity; transition: opacity 0.2s ease-out, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s; z-index: 999; pointer-events: none; }
.has-dropdown:hover .dropdown,
.has-dropdown .dropdown:hover { opacity: 1; visibility: visible; transform: translate(-50%, 0px); pointer-events: auto; }

.sticky-sub-menu li { width: 100%; margin-bottom: 2px; transition: var(--all-medium); }
.sticky-sub-menu li a { font-size: var(--fs-md); color: rgba(var(--text), 0.7); font-family: "OverusedGroteskLight"; padding: 0; }
.dark-mode .sticky-sub-menu li a { color: rgba(var(--text), 0.7); }
.sticky-sub-menu li:hover a { color: rgba(var(--text), 1); }
.sticky-sub-menu h4 { margin-bottom: var(--space-md); }

.sticky-sub-menu .header-menu-subtitle { font-size: var(--fs-2xl); text-transform: uppercase; color: rgba(var(--text), 1); font-family: "Instrument Serif"; }

.dropdown-columns { display: flex; gap: var(--space-xl); }
.dropdown-columns ul { list-style: none; padding: 0; }
.header-dropdown { position: relative; }

.sticky-menu .sticky-sub-group.sticky-sub-middle { display: inherit; }
.sticky-menu .sticky-sub-group.sticky-sub-middle .sticky-sub-menu { margin-right: var(--space-xxl); }
.sticky-menu .sticky-sub-group.sticky-sub-middle .sticky-sub-menu ul { display: grid; }
.sticky-menu .sticky-sub-group.sticky-sub-middle .sticky-sub-menu ul { gap: 8px; }
.sticky-menu .sticky-sub-group.sticky-sub-middle .sticky-sub-menu ul li { font-size: var(--fs-xs); }

.header-dropdown { cursor: pointer; }

.sticky-header.show.hide-header { transform: translate(-50%, 50%) scale(.8); opacity: 0; pointer-events: none; }

.footer-menu .footer-menu-subtitle, .footer-col .footer-menu-subtitle { font-size: var(--fs-xl); font-family: "Instrument Serif"; text-transform: uppercase; margin-bottom: var(--space-sm); }
.mega-menu { position: fixed; display: flex; flex-flow: row wrap; align-content: flex-start; align-items: flex-start; width: 100vw; gap: var(--space-md); left: 50%; transform: translateX(-50%) translateY(-30px); opacity: 0; padding: var(--header-height, 120px) 0 0; z-index: -1; top: 0; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); background: rgba(var(--bg),  0.8); pointer-events: none; will-change: transform, opacity, backdrop-filter; transition: var(--all-medium); }
.mega-menu.visible { transform: translateX(-50%) translateY(0px); opacity: 1; pointer-events: auto; }
.mega-menu .mega-menu--wrapper { cursor: default; width: 100%; padding-bottom: var(--space-xxxl); border-bottom: 1px solid rgba(255, 255, 255, 0.15); }

[data-theme="light"] .mega-menu { background: rgba(var(--text), 0.8); }
.mega-menu .col-first { margin-left: 15%; margin-right: 8%; }
.mega-menu ul { gap: 8px; display: grid; margin-top: var(--space-sm); }
.mega-menu .sticky-sub-group { display: flex; gap: var(--space-md); }
.mega-menu .col-first-text { font-size: var(--fs-4xl-4); font-family: "Instrument Serif"; }

.sticky-menu li > a, .sticky-menu li > button { position: relative; font-size: var(--fs-md); line-height: 1.2; font-family: "OverusedGroteskLight"; color: rgba(var(--text), 0.8); text-transform: capitalize; opacity: 1; padding: 14px calc(var(--space-xs) / 2 * 3); transition: var(--all-medium); }
.sticky-menu li > a:hover, .sticky-menu li > button:hover { color: rgba(var(--text), 1); }
.sticky-menu li ul li a { font-size: var(--fs-sm); font-family: "OverusedGroteskLight"; color: rgba(var(--text), 0.7); padding: calc(var(--space-xs) / 2) 0; transition: var(--all-medium); }
.sticky-menu li ul li:hover a { color: rgba(var(--text), 1); }

.dark-mode .sticky-menu li > a, .dark-mode .sticky-menu li > button { color: rgba(var(--text), 1); }

.sticky-dropdown { position: absolute; bottom: 0; left: 50%; transform: translate(-50%, 0px); background: rgba(var(--bg) / 95%); display: flex; flex-direction: row; gap: 20px; width: calc(100% + (var(--space-lg) * 2)); transition: var(--all-medium); z-index: -1; border-radius: 25px; backdrop-filter: blur(10px); max-height: 0px; height: 420px; overflow: hidden; opacity: 0; will-change: transform, opacity; }
.sticky-dropdown-columns { cursor: default; display: flex; flex-flow: row wrap; padding: 30px 25px; gap: 20px; width: 100%; opacity: 0; --border-radius: 24px; transition: var(--all-medium); }
.sticky-dropdown-columns:before { position: absolute; inset: calc(-1 * var(--stroke-width) + 1px); pointer-events: none; content: ""; padding: var(--stroke-width); -webkit-mask-image: linear-gradient(#fff 0,#fff 0),linear-gradient(#fff 0,#fff 0); mask-image: linear-gradient(#fff 0 0),linear-gradient(#fff 0 0); -webkit-mask-clip: content-box, border-box; mask-clip: content-box, border-box; -webkit-mask-origin: content-box, border-box; mask-origin: content-box, border-box; -webkit-mask-composite: xor; mask-composite: exclude; background: conic-gradient(from var(--angle),#0050f2 0%,#ec27a2 16%,#17128e 36%,#ff675f 58%, #ec27a2 75%,#0050f2 100%); border-radius: calc(var(--border-radius) + var(--stroke-width)); --angle: 0deg; animation: stroke-animation 8s linear 0s infinite forwards; transition: var(--all-medium); }
.sticky-dropdown-columns::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(var(--bg),  0.98); backdrop-filter: blur(10px); border-radius: 0; z-index: -1; }

.sticky-dropdown-wrapper.visible .sticky-dropdown { max-height: 420px; opacity: 1; }
.sticky-dropdown-wrapper.visible .sticky-dropdown .sticky-dropdown-columns { opacity: 1; }

.sticky-dropdown .column-first { display: flex; gap: var(--space-lg); width: 100%; }
.sticky-dropdown .sticky-maim-menu { display: grid; flex: 1; }
.sticky-dropdown .sticky-maim-menu-load { flex: 1; position: relative; }
.sticky-dropdown .sticky-maim-menu span { transform: translateY(20px); opacity: 0; transition: var(--all-medium); padding: var(--space-sm); transition: var(--all-medium); will-change: transform, opacity; }
.sticky-dropdown-wrapper.visible .sticky-dropdown .sticky-maim-menu span { transform: translateY(0px); opacity: 1; }
.sticky-dropdown .sticky-maim-menu { display: flex; flex-direction: column; align-items: flex-start; }
.sticky-dropdown .sticky-header-text { font-size: var(--fs-xl); font-family: "Instrument Serif"; border-bottom: 1px solid rgba(var(--text), 0.2); width: 100%; }
.sticky-dropdown .sticky-maim-menu-load-item { position: absolute; top: 0; left: 0; width: 100%; transform: translateY(50px); opacity: 0; pointer-events: none; transition: var(--all-medium); will-change: transform, opacity; }
.sticky-dropdown .sticky-maim-menu-load-item .sticky-header-text { padding: var(--space-xs) 0; border: none; }
.sticky-dropdown .sticky-maim-menu-load-item.active { opacity: 1; transform: translateY(0px); pointer-events: all; }
.sticky-dropdown .sticky-maim-menu-load-item ul { display: grid; gap: 4px; white-space: normal; }

.sticky-maim-menu-load .sticky-maim-menu-load-item.load-message { transform: translateY(50px); opacity: 0; transition: var(--all-medium); padding-top: var(--space-sm); will-change: transform, opacity; transition-delay: 0s; }
.sticky-dropdown-wrapper.visible .sticky-maim-menu-load .sticky-maim-menu-load-item.load-message.active { transform: translateY(0px); opacity: 1;  transition-delay: 0.3s; }
.sticky-maim-menu-load .sticky-maim-menu-load-item span { font-family: "Instrument Serif"; font-size: var(--fs-2xl); white-space: normal; }
.sticky-maim-menu-load-item ul li { opacity: 1; font-weight: 300; }
.sticky-header-text,
.sticky-maim-menu-load-item li { cursor: pointer; }
.sticky-maim-menu-load-item li:hover { opacity: 1; }
.sticky-dropdown .sticky-header-text.selected { background-color: rgba(var(--text), 0.8); color: rgba(var(--bg),  1); border-color: transparent; }

.description-highlight-space { padding: 0 calc(var(--space-lg) * 2); }


/* BANNER */
.hero { position: relative; padding-top: calc(var(--header-height, 120px) + var(--section-spacing)); overflow: hidden; background: rgba(var(--bg),  1); color: rgba(var(--text), 1); z-index: 1; transition: var(--all-medium); }
.home--hero { padding-top: calc(var(--header-height, 120px) + calc(var(--space-xxxl) * 6)); }
.home--hero .section--subtitle, .home--hero .section--subtitle a { font-size: var(--fs-4xl-6); }
.hero-wrapper { display: flex; align-items: flex-end; justify-content: flex-start; position: relative; z-index: 2; margin-bottom: calc(-1 * (var(--space-xl) * 1.4)); width: 100%; }
.hero .section--title { margin-bottom: var(--space-sm); }
.section--title:has( + .breadcrumb) { margin-bottom: var(--space-sm); }

.hero-left { width: 100%; max-width: 680px; display: flex; flex-flow: row wrap; justify-content: flex-end; margin-left: auto; text-align: right; margin-top: calc(var(--space-lg) * 2); padding-right: var(--space-md); }
.hero-left .spaceparagraph { line-height: 1; padding: 0px calc(var(--space-md) * 2); display: none; }
.hero-left .page--title { width: 60%; text-align: right; color: rgba(var(--text), 0.7); }
.hero-left .hero-highlight { display: inline-flex; height: 12px; padding: 0 var(--space-md); position: relative; margin-left: var(--space-sm); }
.hero-left .hero-highlight::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 100%; height: 2px; background: rgba(var(--text), 0.5); }

.gap { width: 8%; }

.hero-middle { width: 100%; text-align: left; margin: auto; margin-bottom: calc(var(--space-xl) * 2.5); padding: 0 var(--space-sm); }
.hero-middle.mobile { display: none; }
.hero-buttons { display: flex; gap: var(--space-md); margin-top: var(--space-lg); }
.hero-middle .date { width: 100%;color: rgba(var(--text), 0.7); }

.hero-right { width: 20%; }

.hero-video, .hero--bg { display: flex; overflow: hidden; clip-path: polygon(50% calc(var(--space-xl) * 2.5), 50% 0, 100% 0, 100% 100%, 0 100%, 0 calc(var(--space-xl) * 2.5)); position: relative; transform-origin: center top; height: 75vh; max-height: 992px; will-change: transform; }
.hero-video video, .hero--bg img, .hero--bg picture { width: 100%; height: 100%; object-fit: cover; }
.hero-video .mobile-video { display: none; }
.hero-video { width: 100%; margin: 0 auto; transform: scale(0.85); object-fit: cover; }

.blog--details--banner .hero--bg { border: 1px solid rgba(var(--text), 0.2); position: relative; }
.blog--details--banner .hero--bg::after { content: ''; position: absolute; top: 0; left: 0; width: calc(50% + 1px); height: calc(var(--space-xl) * 2.5); border-bottom: 1px solid rgba(var(--text), 0.2); border-right: 1px solid rgba(var(--text), 0.2); }
.blog--details--banner img { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 400px; height: 400px; object-fit: contain; }

.wp-block-table .has-fixed-layout th { text-transform: uppercase; font-weight: 400; }
.wp-block-table .has-fixed-layout td, .wp-block-table .has-fixed-layout th { border: 1px solid rgba(var(--text), 0.2); padding: var(--space-sm) var(--space-md); line-height: 1; color: rgba(var(--text), 0.7); }
.wp-block-table .has-fixed-layout thead { border-bottom: 2px solid rgba(var(--text), 0.2); }

/* ABOUT SECTION */
.about-section-full { padding: var(--section-spacing) 0; overflow: hidden; width: 100%; }
.about-section-full .about-section:not(.inner) .about-description { max-width: 520px; margin-left: auto;; }
.about-section-full .section--title br { display: block; }
.about-section { display: flex; flex-flow: row wrap; justify-content: space-between; align-items: flex-start; }
.about-section:has( + .text-center) { margin-bottom: var(--space-xxxl); }

.about-section-full .read--more { font-size: var(--fs-lg); color: rgba(var(--text), 0.62); font-family: "ClashGrotesk-Regular"; font-weight: 400; line-height: 1.3; letter-spacing: 0.5px; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.about--page .about-left { width: 100%; }
.about--page .about-right { width: 100%; }
.about--page .row { --bs-gutter-x: 120px; }
.about--page .about-left .section--subtitle.about-line { width: 100%; }
.about--page .about--para { font-size: var(--fs-md); color: rgba(var(--text), 0.3); line-height: 1.3; }

.about-description .right-line { display: block; text-align: right; padding-right: var(--space-lg); }
.about-description .left-line { display: block; text-align: left; }
.about--page .testimonial-item { display: flex; flex-flow: row wrap; padding: calc(var(--space-xxxl) * 2) var(--space-xxxl) calc(var(--space-xxxl) * 1.5); border: 1px solid rgba(var(--text), 0.3); position: relative; margin-top: var(--space-xxxl); }
.about--page .testimonial-item .img--box { width: clamp(80px, 7.81vw, 150px); margin-bottom: var(--space-lg); }
.about--page .testimonial-item blockquote { width: 100%; margin-bottom: var(--space-lg); }
.about--page .testimonial-item blockquote p { font-size: var(--fs-5xl-2); margin-bottom: 0; display: block; font-family: "Instrument Serif"; line-height: 1.2; color: rgba(var(--text), 1); }
.about--page .testimonial-item .testimonial-meta { width: 100%; display: flex; flex-flow: row-reverse wrap; align-items: center; }
.about--page .testimonial-item .testimonial-meta img { display: flex; width: clamp(120px, 15.62vw, 180px); object-fit: contain; }
.about--page .testimonial-item .testimonial-info { flex: 1; }
.about--page .testimonial-item .testimonial-info .testimonial-name { width: 100%; font-size: var(--fs-3xl); font-family: "ClashGrotesk-Regular"; color: rgba(var(--text), 1); margin-bottom: 0; }
.about--page .testimonial-item .testimonial-info .testimonial-position { width: 100%; font-size: var(--fs-lg); font-family: "Instrument Serif"; color: rgba(var(--text), 0.62); margin-bottom: 0; }
.about--page .testimonial-item .tag { position: absolute; top: -1px; left: -1px; padding: 4px 8px 4px 2px; border-right: 1px solid rgba(var(--text), 0.3); border-bottom: 1px solid rgba(var(--text), 0.3); background: rgba(var(--bg),  1); opacity: 1 !important; text-transform: uppercase; font-size: var(--fs-xs); letter-spacing: 0.5px; color: rgba(var(--text), 1); }

.about-right { text-align: left; margin-left: auto; }
.about-left .section--subtitle.about-line { width: 100%; margin-bottom: var(--space-xl); }
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: calc(var(--space-xxxl)); }
.about-line-description { width: 100%; }
.about-line-description:has( + .btn), .about-line-description:has( + div) { margin-bottom: var(--space-xl); }
.about-line-description:not(:has( + *)):last-child { margin-bottom: 0; }
.about-line.subtitle { margin-bottom: calc(var(--space-xxl) * 3); }

.grid-item { position: relative; display: flex; flex-flow: row wrap; align-content: flex-start; }
.grid-item .title { width: 100%; font-size: var(--fs-md-2); margin-bottom: var(--space-md); position: relative; text-transform: uppercase; letter-spacing: 1px; }
.grid-item .title::after { content: ""; display: block; height: 1px; background: rgba(var(--text), 0.3); margin-top: 0.25rem; margin-left: auto; }
.grid-item .title + span { font-family: "Instrument Serif"; }
.grid-item .number { width: 100%; font-size: var(--fs-6xl); line-height: 1; font-weight: lighter; }
.grid-item .number:has( + p) { margin-bottom: var(--space-sm); }

.dark-mode .grid-item .title { font-weight: 500; }

.about--wrapper { position: relative; }
.read-more-btn { display: none; }

/* CLIENT LOGOS */
.our--clients { padding: var(--section-spacing) 0; }
.our--clients .client--list.swiper .swiper-wrapper { transition-timing-function: linear; }
.our--clients .client--list.swiper img { width: 100%; height: 120px; object-fit: contain; object-position: center; }

.our--clients .client--list:not(.swiper) { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid rgba(var(--text), 0.1); overflow: hidden }
.our--clients .client--list li { position: relative; padding: var(--space-xs) var(--space-xl); border-right: 1px solid rgba(var(--text), 0.1); border-bottom: 1px solid rgba(var(--text), 0.1); }
.our--clients .client--list li img { width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: var(--all-slow); }
.our--clients .client--list li img.active { opacity: 1; }
.our--clients .client--list li img:last-child { position: absolute; left: var(--space-xl); top: var(--space-xs); width: calc(100% - (var(--space-xl) * 2)); height: calc(100% - (var(--space-xs) * 2)); }

.dark-mode .our--clients .client--list img { filter: invert(1); }

/* SERVICES SECTION */
.services-section { width: 100%; align-items: center; justify-content: center; padding: var(--section-spacing) 0; will-change: transform; }
.services--section--space { display: none; width: 100%; min-height: 100vh; }
.parallax--bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; background: url('../images/parallax-bg.webp') no-repeat; background-size: cover; background-position: 0% 50%; }
.bgVideo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.overlay { position: relative; z-index: 1; --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); perspective: 2000px; transform-style: preserve-3d; margin-bottom: calc(var(--space-lg) * 2); }

.services--bottom { text-align: center; }

.dark-mode .services-section .btn--secondary { background: rgba(var(--bg),  1); border-color: rgba(var(--bg),  1); }
.dark-mode .services-section .btn--secondary .btn-text { color: rgba(var(--text), 1); }
.dark-mode .services-section .btn--secondary:hover { background: transparent; border-color: rgba(var(--bg),  1); }
.dark-mode .services-section .btn--secondary:hover .btn-text { color: rgba(var(--bg),  1); }

.services-section .section--title, .services-section .section--subtitle { color: #fff; }

.services--card { display: flex; flex-flow: row wrap; width: 100%; min-height: 480px; transition: var(--all-medium); }
.services--card { display: flex; flex-flow: row wrap; width: 100%; transition: var(--all-medium); }
.services--card--inner { display: flex; flex-flow: column wrap; width: 100%; height: 100%; background: rgba(var(--bg),  1); position: relative; will-change: transform, opacity; }
.services--card .title { display: flex; font-size: var(--fs-4xl-7); font-weight: 400; line-height: 1; font-family: "OverusedGroteskMedium"; margin-bottom: var(--space-sm); color: rgba(var(--text), 1); transition: var(--all-medium); }

@media screen and (hover: hover) and (pointer: fine) {
	.services--card:hover .title:hover { color: #004aec; }
}

.services--card svg text { font-family: "Instrument Serif"; }

.services--card .cardMaskSvg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.services--card .insidecard { flex: 1; position: relative; z-index: 1; padding: var(--space-xxxl); transition: var(--all-medium); }

.services--card .paragraph { font-size: var(--fs-md); margin-bottom: var(--space-md); margin-right: var(--space-xl); color: rgba(var(--text), 0.65); line-height: 1.3; }
.services--card .pills { display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.services--card .pills .cutout { padding: var(--space-xs) var(--space-sm); font-size: var(--fs-xs); letter-spacing: 0.5px; border-radius: 50px; border: 1px solid rgba(var(--text), 0.15); background: transparent; color: rgba(var(--text), 0.8); transition: var(--all-medium); }
.services--card .pills .cutout:hover { background: rgba(var(--text), 1); color: rgba(var(--bg), 1); border-color: rgba(var(--text), 1); }

.services--card .tag { font-size: var(--fs-2xs); font-weight: 100; display: inline-block; margin-bottom: var(--space-lg); border-radius: 0; position: absolute; top: 0; left: 0; }
.services--card .tag.cutout { border-radius: 0; }
.services--card .tag.cutout, .services--card .tag.cutout { font-size: var(--fs-xs); text-transform: uppercase; font-weight: 500; letter-spacing: 0.5px; padding: 4px 8px 4px 0; color: rgba(255, 255, 255, 0.6); display: none; }

.services--card .caption { font-size: var(--fs-md-2); text-transform: capitalize; color: rgba(var(--bg),  0.4); white-space: nowrap; line-height: 1; padding: var(--space-xs) var(--space-sm); margin-bottom: 0; display: none; }

.services--card .bigTextContainer { display: flex; flex-flow: column wrap; align-items: flex-end; padding: var(--space-md) var(--space-md); position: relative; z-index: 1; font-family: "Instrument Serif"; overflow: hidden; }
.services--card .bigText { transform-origin: top right; margin-left: auto; margin-top: auto; font-size: calc(var(--fs-7xl) * 2); line-height: 0.75; font-weight: 100; font-family: "Instrument Serif"; color: rgba(var(--text), 1); text-align: right; }

.services-section .servicesSectionHeading { width: 100%; font-size: var(--fs-6xl); font-weight: 100; }
.services-section .servicesSectionHeroHeading { width: 100%; }
.services-section .spaceparagraph { padding: 0px var(--space-xxl); }

.services-section--parentservice .servicesSectionHeroHeading { width: 40%; }
.button--wrapper { display: flex; flex-flow: row wrap; justify-content: center; align-items: center; gap: var(--space-md); }

.dark-mode .services--card--parentservice .tager.cutoutclass, .dark-mode .services--card--parentservice .tager.cutoutclass { text-transform: uppercase; background: rgba(var(--text), 1); color: rgba(var(--bg),  1); }


/* AWARDS SECTION */
.awards-section { background: rgba(var(--bg),  1); padding: var(--section-spacing) 0; position: relative; --gap: calc(var(--space-xs) / 2 * 4); }

.award-row { display: flex; align-items: center; position: relative; padding: var(--space-md); border-bottom: 1px solid rgba(var(--text), 0.2); cursor: pointer; z-index: 1; transition: background 0.5s; }
.award-row .company { color: rgba(var(--text), 1); text-transform: capitalize; padding-right: 10px; }

[data-theme="light"] .awards-section { color: rgba(var(--bg),  1); }
[data-theme="light"] .award-row .company { color: rgba(var(--bg),  1); }
[data-theme="light"] .award-row { border-bottom: 1px solid rgba(var(--bg),  0.5); }

.awards-header-description-highlight { padding: 0 var(--space-xxl); }

.awards-list { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); column-gap: calc(var(--gap) * 3); margin-bottom: var(--space-xl); }
.awards-list + .text-center { margin-top: var(--space-xxxl); }

.award-row .year { width: 12%; font-size: var(--fs-xl); transition: var(--all-medium); }
.award-row .company { width: 25%; font-size: var(--fs-xl); transition: var(--all-medium); }
.award-row .title { width: 63%; font-size: var(--fs-xl); text-transform: capitalize; transition: var(--all-medium); }
.award-row .image-container { width: 30%; max-width: 250px; aspect-ratio: 25/15; position: absolute; right: 5%; bottom: 100%; overflow: hidden; pointer-events: none; }
.award-row .image-container img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: translateY(20px); will-change: transform, opacity; transition: all 0.5s ease; background: rgba(var(--bg),  1); border: 1px solid rgba(var(--text), 0.1); }

.highlight:not(.country) { position: absolute; top: 0; left: 0; width: calc((100% / 2 ) - var(--gap)); pointer-events: none; background: transparent; opacity: 0; z-index: 0; transition: background 0.5s; }

.awards--section--inner { background: rgba(var(--bg),  1); padding: var(--section-spacing) 0; position: relative; --gap: calc(var(--space-xs) / 2 * 4); }
.awards--list--inner { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--gap) * 3); }
.awards--list--inner li { transition: var(--all-medium); }
.awards--list--inner li a { display: flex; flex-flow: row wrap; align-items: center; padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5); border: 1px solid rgba(var(--text), 0.2); }
.awards--list--inner li a img { width: 140px; margin-bottom: var(--space-md); }
.awards--list--inner li a .description { width: 100%; }
.awards--list--inner li a h4 { font-size: var(--fs-3xl); text-transform: capitalize; }
.awards--list--inner li a h4 + p { margin-bottom: 0; }

@media screen and (hover: hover) and (pointer: fine) {
	[data-theme="light"] .award-row:hover .company { color: rgba(var(--text), 1); }
	[data-theme="light"] .award-row:hover { color: rgba(var(--text), 1); border-bottom: 1px solid #ccc; }

	.award-row:hover .company { color: rgba(var(--bg),  1); }
	.award-row:hover { color: rgba(var(--bg),  1); border-bottom: 1px solid rgba(var(--bg),  1); }
	.award-row:hover .image-container img { opacity: 1; transform: translateY(0); }
	.awards-list:hover .highlight { background: rgba(var(--text), 1); }
}



/* PORTFOLIO SECTION */
.portfolioSection { padding: var(--section-spacing) 0; min-height: 100vh; overflow: hidden; perspective: 2000px; }

.headerWrapper { display: flex; flex-flow: row wrap; align-items: flex-start; margin-bottom: calc(var(--space-lg) * 2); }
.headerTitle:not(:has( + *)) { flex: 100%; margin-bottom: 0; }
.headerText { flex: 0 0 100%; font-size: var(--fs-lg-2); margin-bottom: 0; }

.portfolioDetail { display: grid; grid-template-columns: repeat(5, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--space-xl) * 3) calc(var(--gap) * 3); position: relative; transform-style: preserve-3d; }

.portfolioCard { position: relative; transform-style: preserve-3d; backface-visibility: hidden; display: flex; flex-flow: row wrap; align-items: flex-start; align-content: flex-start; }
.portfolioCard[data-flex="60"] { grid-column: span 3; }
.portfolioCard[data-flex="40"] { grid-column: span 2; }
.portfolioCard video, .portfolioCard iframe { width: 100%; display: flex; height: 100%; object-fit: cover; }
.portfolioCard[data-flex="40"] .portfolioVideo { width: 100%; aspect-ratio: 0.67/1; }
.portfolioCard[data-flex="60"] .portfolioVideo { width: 100%; aspect-ratio: 1.35/1; }
.portfolioCard .cardTag { position: absolute; top: -1px; left: 0; background: rgba(var(--bg),  1); padding: 4px 8px 4px 0px; font-size: var(--fs-xs); color: rgba(var(--text), 0.62); z-index: 10; text-transform: uppercase; }
.portfolioCard .cardTitle { width: 100%; margin-top: var(--space-sm); font-size: var(--fs-4xl-5); }
.portfolioCard .cardSubtitle { width: 100%; font-size: var(--fs-2xl); font-weight: 100; font-family: "Instrument Serif"; color: rgba(var(--text), 1); opacity: 0.7; }
.portfolioCard .spaceparagraph { padding: 0px var(--space-xxl); }


.portfolioButton { margin-top: var(--space-xxxl); display: flex; flex-flow: row wrap; justify-content: center; }


/* TESTIMONIAL SECTION */
.TestimonialsSlider { padding: var(--section-spacing) 0; overflow: hidden; }
.TestimonialsSlider:has( + .LetsTalk-section) { padding-bottom: calc(var(--section-spacing) * 1.5); }
.TestimonialsSlider .wrapper { position: relative; width: 100%; background: rgba(var(--bg),  1); margin-top: calc(var(--space-lg) * 2); justify-content: space-between; align-items: flex-start; background: rgba(var(--bg),  1); padding: 0px; gap: var(--space-md); }

.TestimonialsSlider .swiper { width: 100%; }
.TestimonialsSlider .swiper .swiper-wrapper { transition-timing-function: cubic-bezier(0.50, 0.0, 0.50, 1); }
.TestimonialsSlider .slide { max-width: 520px; height: auto; display: flex; align-items: center; justify-content: center; position: relative; background: rgba(var(--bg),  1); }
.TestimonialsSlider .slide .hover--details { width: 100%; position: absolute; bottom: 0; left: 0; padding: var(--space-xl); transition: var(--all-medium); }
.TestimonialsSlider .slide .hover--details .author { width: 100%; line-height: 1; font-size: var(--fs-3xl); color: #fff; }
.TestimonialsSlider .slide .hover--details .designation { width: 100%; font-size: var(--fs-lg); color: #fff; font-family: "Instrument Serif"; margin-bottom: 0; }
.TestimonialsSlider .spandescription { font-size: var(--fs-4xl-2); }

.TestimonialsSlider .slide video { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: var(--all-medium); -webkit-mask-image:  linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 70%,rgba(0,0,0,0.2) 100%); mask-image:  linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 70%,rgba(0,0,0,0.2) 100%); }
.TestimonialsSlider .slide img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: var(--all-medium); }
.TestimonialsSlider .slide.videoslide img { -webkit-mask-image:  linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 70%,rgba(0,0,0,0.2) 100%); mask-image:  linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 70%,rgba(0,0,0,0.2) 100%); }
.TestimonialsSlider .slide.videoslide, .TestimonialsSlider .slide.certificate-slide { background: #000; }
.TestimonialsSlider .slide.videoslide::before { content: ""; position: absolute; width: 120px; height: 120px;left: 50%; top: 50%; transform: translate(-50%, -50%); background: url('../images/icons/play-btn.svg') no-repeat center center; background-size: contain; pointer-events: none; z-index: 1; }

.TestimonialsSlider .textBox { position: relative; width: 100%; height: 100%; min-height: -webkit-fill-available; align-content: end; border: 1px solid rgba(var(--text), 0.3); padding: var(--space-xl); transition: var(--all-medium) }
.TestimonialsSlider .textBox h3 { font-size: var(--fs-4xl-7); margin-bottom: var(--space-md); line-height: 1; font-weight: 200; }


.TestimonialsSlider .tag { position: absolute; top: -1px; left: -1px; padding: 4px 8px 4px 2px; border-right: 1px solid rgba(var(--text), 0.3); border-bottom: 1px solid rgba(var(--text), 0.3); background: rgba(var(--bg),  1); opacity: 1 !important; text-transform: uppercase; font-size: var(--fs-xs); letter-spacing: 0.5px; color: rgba(var(--text), 0.62); }

.TestimonialsSlider .groupOne { width: 100%; }
.TestimonialsSlider .groupOne .section--title:not(:has( + *)) { margin-bottom: 0; }

.TestimonialsSlider span.testiDescriptionHighlight { font-family: "Instrument Serif"; font-size: var(--fs-4xl-6); margin-bottom: var(--space-md); display: block; }
.TestimonialsSlider .testiDescriptiontext { font-size: var(--fs-md-2); font-weight: 400; margin-bottom: var(--space-md); }

.TestimonialsSlider .author { width: 100%; font-size: var(--fs-3xl); color: rgba(var(--text), 1); margin-bottom: calc(var(--space-xs) / 2); }
.TestimonialsSlider .designation { width: 100%; font-size: var(--fs-lg); font-family: "Instrument Serif", serif; line-height: 1.1; margin-bottom: 0; }
.TestimonialsSlider .roletesti { opacity: 0.5; }

.video-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 9; display: flex; flex-flow: row wrap; justify-content: center; align-content: center; background: rgba(var(--bg),  0.8); backdrop-filter: blur(30px); pointer-events: none; opacity: 0; transition: all 0.3s; }
.video-popup.show { opacity: 1; pointer-events: all; }

.video-popup-inner { width: 90%; max-width: 650px; max-height: 90vh; padding-top: 40px; position: relative; display: flex; align-items: center; justify-content: center; }
.video-popup-inner video { width: 100%; height: 100%; object-fit: contain; }
.closeBtn { position: absolute; right: 5px; top: 10px; width: 30px; height: 30px; z-index: 1; }

.TestimonialsSlider .swiper-pagination { width: 100%; display: flex; flex-flow: row wrap; align-items: center; justify-content: flex-end; gap: var(--space-sm); margin-top: var(--space-md); padding-right: var(--space-md); }
.TestimonialsSlider .swiper-pagination div { padding: var(--space-sm); }
.TestimonialsSlider .swiper-pagination div img { width: 30px; }
.dark-mode .TestimonialsSlider .swiper-pagination div img { filter: invert(1); }

@media screen and (hover: hover) and (pointer: fine) {

	.TestimonialsSlider .slide:hover video { opacity: 0.2; }
	.TestimonialsSlider .slide:hover img { opacity: 0.5; }
	
	.TestimonialsSlider .textBox:hover { opacity: 0.5; }

	.TestimonialsSlider .prevBtn:hover,
	.TestimonialsSlider .nextBtn:hover { opacity: 0.7; }

}


.certificate--popup { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 9; display: flex; flex-flow: row wrap; justify-content: center; align-content: center; background: rgba(var(--bg),  0.8); backdrop-filter: blur(30px); pointer-events: none; opacity: 0; transition: all 0.3s; }
.certificate--popup.show { opacity: 1; pointer-events: all; }

.certificate-popup-inner { width: 90%; max-width: 650px; max-height: 90vh; padding-top: 40px; position: relative; display: flex; flex-flow: row wrap; align-items: center; justify-content: center; }
.certificate-popup-inner img { width: 100%; height: 100%; object-fit: contain; }

/* FAQ SECTION */
.faq-section { padding: var(--section-spacing) 0; }
.faq-section .section--title:has( + .breadcrumb) { margin-bottom: var(--space-sm); }
.faq-wrapper { display: flex; flex-flow: row wrap; justify-content: space-between; align-items: flex-start; gap: calc(var(--space-xl) * 2); }
.faq-wrapper:has( + .text-center) { margin-bottom: var(--space-xxxl); }
.faq-left { width: 46%; }

.faq-left .section--subtitle { margin-bottom: var(--space-xl); }
.faq-left .section--subtitle:has(.btn) { margin-bottom: 0; }
.faq-left .btn { margin-bottom: var(--space-xl); }

.faq-tabs { display: flex; flex-flow: row wrap; align-items: center; gap: var(--space-md); margin-bottom: calc(var(--space-lg) * 2); }
.faq-tab {color: rgba(var(--text), 0.7); font-size: var(--fs-md); text-transform: uppercase; transition: var(--all-medium); }
.dark-mode .faq-tab { font-family: 'ClashGrotesk-Medium'; }

.faq-tab.active { border: none; color: rgba(var(--text), 1); }

.ctaBtn { padding: 12px 20px; border: 1px solid rgba(var(--text), 1); background: transparent; color: rgba(var(--text), 1); cursor: pointer; font-weight: bold; border-radius: 4px; transition: 0.5s; }
@media screen and (hover: hover) and (pointer: fine) {
	.ctaBtn:hover { background: rgba(var(--text), 1); color: rgba(var(--bg),  1); }
}

.gap { flex: 0 0 20%; }

.faq-right { width: 48%; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid #444; will-change: opacity, transform; }
.faq-item .faq-question h4 { flex: 1; font-size: var(--fs-xl);color: rgba(var(--text), 0.7); display: inline-flex; transition: var(--all-medium); margin-bottom: 0; }
.dark-mode .faq-item .faq-question h4 { color: rgba(var(--text), 0.9); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; text-align: left; font-weight: 400; padding: calc(var(--space-xs) / 2 * 4) 0; cursor: pointer; margin-bottom: 0; }
.schema-faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; text-align: left; font-weight: 400; padding: calc(var(--space-xs) / 2 * 4) 0 var(--space-xs); margin-bottom: 0; }
.faq-question p { margin-bottom: 0; }

.faq-item.active .faq-question h4 { color: rgba(var(--text), 1); }

.faq-item .arrow { padding: 5px 5px 0 5px; display: inline-flex; opacity: 0.7; transform-origin: center; transition: var(--all-medium); }
.faq-item.active .arrow { transform: rotate(180deg); will-change: transform; }

.faq-answer-wrapper { max-height: 0; overflow: hidden; transition: var(--all-medium); }
.faq-item.active .faq-answer-wrapper { margin-bottom: var(--space-xl); }

.faq-answer { margin-top: 10px; font-size: var(--fs-md); line-height: 1.4; padding-top: var(--space-xs); margin-top: 0; width: 100%; color: rgba(var(--text), 0.7); }
.faq-answer p, .schema-faq-answer { font-size: var(--fs-md); }
.faq-answer p a { text-decoration: underline; color: rgba(var(--text), 0.8); text-underline-offset: 2px; }
.faq-answer ul { display: flex; flex-flow: row wrap; margin-bottom: var(--space-sm); padding-left: var(--space-md); }
.faq-answer ul li { width: 100%; position: relative; font-size: var(--fs-md); color: rgba(var(--text), 0.62); font-family: "ClashGrotesk-Regular"; line-height: 1.3; letter-spacing: 0.5px; margin-bottom: var(--space-xs); }
.faq-answer ul li p { display: inline-block; }
.faq-answer ul li::before { content: "•"; position: absolute; top: 0; left: -1em; }
.faq-answer ol { display: flex; list-style: decimal; flex-flow: row wrap; margin-bottom: var(--space-sm); padding-left: var(--space-md); }
.faq-answer ol li { width: 100%; position: relative; font-size: var(--fs-md); color: rgba(var(--text), 0.62); font-family: "ClashGrotesk-Regular"; line-height: 1.3; letter-spacing: 0.5px; margin-bottom: var(--space-xs); }
.faq-answer ol li::before { content: "•"; position: absolute; top: 0; left: -1em; }
.faq-answer ol li p { display: inline-block; }
.active .faq-answer { color: #c4c4c4; }


/* BLOGS SECTION */
.blogs-section { padding: var(--section-spacing) 0; position: relative; overflow: hidden; perspective: 2000px; }
.blogs-section .blogs--list { grid-template-columns: repeat(3, 1fr); }

.blogs-header { display: flex; flex-flow: row wrap; margin-bottom: calc(var(--space-lg) * 2); }
.blogs-header .section--title { width: 100%;  }
.blogs-header .blogs-header-description { width: 100%; margin-bottom: 0; }

.blogs-container { display: grid; gap: var(--space-md); }

.blogs-list { display: grid; grid-template-columns: repeat(2, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: var(--section-spacing) calc(var(--gap) * 2); flex-direction: row; min-width: 100%; flex-shrink: 0; transform-style: preserve-3d; }
.blogs-item { display: flex; flex-direction: column; flex-shrink: 0; width: 100%; }
.blogs-item .blogs-image-container { display: flex; width: 100%; padding-bottom: 56.25%; overflow: hidden; position: relative; }
.blogs-item .blogs-image-container img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; }

.blogs-item .blogs-title { font-family: "Instrument Serif"; font-size: var(--fs-4xl-2); color: rgba(var(--text), 1); line-height: 122%; width: 100%; max-width: 400px; margin-bottom: var(--space-md); transition: var(--all-medium); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.blogs-item .blogs-image { width: fit-content; width: -webkit-fill-available; transition: var(--all-medium); }
.blogs-item .tag { border-bottom: 1px solid rgba(var(--text), 0.2); border-right: 1px solid rgba(var(--text), 0.2); display: flex; position: absolute; top: 0; left: 0; padding: 4px 8px 4px 0px; background: rgba(var(--bg),  1); z-index: 1; font-size: var(--fs-xs); text-transform: uppercase;color: rgba(var(--text), 0.7); margin-bottom: 0; }
.blogs-item .blogs-year { font-size: var(--fs-sm); font-weight: 400; color: rgba(var(--text), 0.62); margin-bottom: var(--space-xs); width: 100%; }
.dark-mode .blogs-item .blogs-year { color: rgba(var(--text), 0.9); }
.blogs-section .blogs-button { margin-top: var(--space-xl); display: flex; flex-flow: row wrap; justify-content: center; margin-top: calc(var(--space-xxl) * 1.5); }

@media screen and (hover: hover) and (pointer: fine) {
	.blogs-item:hover .blogs-image-container img { transform: scale(1.05); filter: saturate(1.5) brightness(1.2); }
	.blogs-item:hover .blogs-title {color: rgba(var(--text), 0.7); }
}


/* CONTACT SECTION */
.contact-section { padding: var(--section-spacing) 0; position: relative; }
.contact-section .section--subtitle br { display: block; }

.contact-section .contact-item-second { flex: 1; clip-path: none; border: 1px solid rgba(var(--text), 0.2); }
.contact-section .contact-item-second .tag { position: absolute; top: -1px; left: -1px; padding: 4px 8px 4px 2px; border-right: 1px solid rgba(var(--text), 0.3); border-bottom: 1px solid rgba(var(--text), 0.3); background: rgba(var(--bg),  1); opacity: 1 !important; text-transform: uppercase; font-size: var(--fs-xs); letter-spacing: 0.5px; color: rgba(var(--text), 0.62); }

.contact-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-lg); }
.contact-header .section--title { width: 40%; margin-bottom: 0; }

.contact-item-first { flex: 1; }
.contact-item-first .contact-header-description { width: 65%; line-height: 1.2; }

.contact-container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: calc(var(--space-xl) * 4); }
.contact-item-second { width: 100%; background: rgba(var(--bg),  0.9); padding: calc( var(--space-xxl) * 2) var(--space-xxl) var(--space-xxl); backdrop-filter: blur(10px); clip-path: polygon(95px 30px, 95px 0, 100% 0, 100% 100%, 0 100%, 0 30px); }
.contact-form-wrappper { position: relative; }
.contact-form-wrappper .form-text { position: absolute; left: 0px; top: 0px; font-size: var(--fs-md); color: rgba(255, 255, 255, 0.8); text-transform: uppercase; display: block; z-index: 11; }

.contact-item-second .note { font-family: "OverusedGroteskLight"; font-size: var(--fs-sm); color: rgba(var(--text), 0.7); margin-top: var(--space-md); display: block; text-align: center; }
.dark-mode .contact-item-second .note { font-family: "OverusedGroteskRoman"; }

.contact-form { display: inline-flex; font-size: var(--fs-4xl-3); display: flex; flex-flow: wrap; row-gap: var(--space-lg); font-family: "OverusedGroteskLight",serif; }
.input--wrapper { width: 100%; display: flex; flex-flow: row wrap; align-items: center; font-family: "OverusedGroteskLight"; }
.input--wrapper * {  font-family: "OverusedGroteskLight"; }
.contact-form .input--wrapper .w-100 { display: flex; flex-flow: row wrap; margin-bottom: var(--space-sm); }
.contact-form .form-group { flex: 1; padding: 0 0 0 var(--space-sm); }
.contact-form .form-group + label { width: 100%; }
label, legend { font-size: inherit; margin-bottom: 0; }
.contact-form .contact-message { flex: 100%; padding: 0; margin-bottom: var(--space-xl); }

.contact-form .same--number input[type="checkbox"] { width: 16px; height: 16px; background-color: transparent; border: 1px solid rgba(var(--text), 0.2); opacity: 0; position: absolute; left: 0; top: 0; cursor: pointer; }
.contact-form .same--number input[type="checkbox"] + .wpcf7-list-item-label { font-size: var(--fs-sm); color: rgba(var(--text), 0.7); padding-left: var(--space-md); position: relative; }
.contact-form .same--number input[type="checkbox"] + .wpcf7-list-item-label::before { content: ''; width: 16px; height: 16px; display: flex; position: absolute; left: 0; top: 2px; border: 1px solid rgba(var(--text), 0.4); pointer-events: none; }
.contact-form .same--number input[type="checkbox"]:checked + .wpcf7-list-item-label::before { background: url(../images/icons/check.png) center center no-repeat; background-size: contain; }
.dark-mode .contact-form .same--number input[type="checkbox"]:checked + .wpcf7-list-item-label::before { filter: invert(1); border-color: rgba(var(--bg),  0.8); }

.form-control { display: flex; width: 100%; background: none; border: none; border-bottom: 1px solid rgba(var(--text), 0.3); padding: var(--space-xs) 0; border-radius: 0; font-size: var(--fs-md); color: rgba(var(--text), 1); }
.form-control:focus { outline: none; box-shadow: none; border-bottom: 1px solid rgba(var(--text), 1); }
.contact-message .form-control { width: 100%; padding-bottom: 20px; }

.contact-button { display: flex; flex-flow: row wrap; justify-content: center; }

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] { padding-left: 60px !important; }
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag { width: 60px !important; }
.intl-tel-input .selected-flag .iti-arrow { right: 30% !important; }

.intl-tel-input ul.country-list { max-width: 300px; }
.intl-tel-input .country-list { background: rgba(var(--bg),  1) !important; border-color: rgba(var(--text), 0.2) !important; }
.intl-tel-input .country-list::-webkit-scrollbar { background: rgba(var(--bg),  1); width: var(--space-sm); }
.intl-tel-input .country-list::-webkit-scrollbar-thumb { background: rgba(var(--text), 0.2); border-radius: var(--space-sm); }
.intl-tel-input .country-list .country-name { font-size: var(--fs-md); color: rgba(var(--text), 1); display: none; }
.intl-tel-input .country-list .country .dial-code { font-size: var(--fs-md); color: rgba(var(--text), 1) !important; }
.intl-tel-input.separate-dial-code .selected-flag { background: transparent !important; }
.intl-tel-input.separate-dial-code .selected-dial-code { font-size: var(--fs-md); color: rgba(var(--text), 1); }
.intl-tel-input .country-list .divider { display: none; }


.services--interest { display: flex; flex-flow: row wrap; align-items: center; }
.services--interest label { border-radius: 50px; padding: 10px 16px; border: 1px solid rgba(var(--text), 0.1); font-size: 14px; font-family: "ClashGrotesk-Regular"; letter-spacing: 0.5px; font-weight: 500; cursor: pointer; text-transform: capitalize;color: rgba(var(--text), 0.7); background: rgba(var(--text), 0); transition: var(--all-medium); }
.services--interest label span { font-family: "ClashGrotesk-Regular"; font-weight: 400; }
.services--interest label:has(input:checked), .services--interest label:hover { background: rgba(var(--text), 1); color: rgba(var(--bg),  1); border-color: rgba(var(--text), 1); }
.services--interest .wpcf7-form-control-wrap .wpcf7-checkbox input, .services--interest label input { display: none; }

.page-template-contactpage .information-section:not(.contact--page) { display: none; }
.page-template-contactpage .information-header-contact a .text { font-size: var(--fs-4xl-9); }

.wpcf7-form-control-wrap { display: flex; }
.wpcf7-form-control-wrap:after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; background: url(../images/icons/error.svg) center center no-repeat; background-size: contain; opacity: 0; pointer-events: none; transition: var(--all-medium); }
.wpcf7-form-control-wrap:has( .wpcf7-not-valid):after { opacity: 0.5; }
.wpcf7-form-control-wrap .wpcf7-checkbox { display: flex; flex-flow: row wrap; gap: var(--space-xs); }

.wpcf7-form-control-wrap:has(.wpcf7-checkbox) { margin-bottom: var(--space-xs); }
.wpcf7-form-control-wrap:has(.other--text--input) { width: 100%; max-height: 0px; overflow: hidden; transition: var(--all-medium); }
.services--interest fieldset:has(.wpcf7-checkbox .last input:checked) ~ .wpcf7-form-control-wrap { max-height: 50px; }

.hidden { position: absolute; pointer-events: none; opacity: 0; }

.form-control.wpcf7-not-valid { border-bottom-color: #dc323250; }

.wpcf7-not-valid-tip { font-size: var(--fs-xs) !important; margin-top: var(--space-xs) !important; position: absolute; top: 100%; left: 0; width: 100%; opacity: 0; transition: var(--all-medium); }
.form-control:hover + .wpcf7-not-valid-tip { opacity: 1; }
.wpcf7 form .wpcf7-response-output { font-size: var(--fs-sm) !important; padding: var(--space-md) !important; }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output { margin: var(--space-lg) 0 0; border-color: #ff000020 !important; background: #ff000010; border-radius: 50px; }

.contact--info--list { position: relative; display: grid; grid-template-columns: repeat(1, 1fr); }
.contact--info--list .title { font-size: var(--fs-xl); font-weight: 300; color: rgba(var(--text), 0.8); text-transform: capitalize; margin-bottom: var(--space-xs); width: 100%; }
.contact--info--list .info--box { display: flex; flex-flow: row wrap; align-items: center; gap: var(--space-md); margin-top: var(--space-xxxl); }
.contact--info--list .info--box .row { width: 100%; --bs-gutter-x: var(--space-xxl) }
.contact--info--list .info--box.address--box { align-items: flex-start; flex-direction: column; gap: 0; }
.contact--info--list .info--box.address--box .map--link { font-size: var(--fs-lg-2); text-decoration: underline; text-transform: uppercase; }
.contact--info--list a:not(.btn), .contact--info--list address { font-size: var(--fs-lg-2); margin-bottom: var(--space-xs); position: relative; font-style: normal; }
.contact--info--list address { line-height: 1.4; }
.contact--info--list .social--links { display: flex; flex-flow: row wrap; align-items: center; gap: var(--space-md); }
.contact--info--list .social--links a { width: auto; margin-bottom: 0; position: relative; }
.contact--info--list .info--box .btn--primary { opacity: 0.5; }
.contact--info--list .info--box .btn--primary:hover { opacity: 1; }
.contact--info--list .info--box.short--time { gap: 0; }
.contact--info--list .info--box.short--time > p { width: 100%; font-size: var(--fs-lg-2); color: rgba(var(--text), 1); }

/* @media screen and (hover: hover) and (pointer: fine) {
.contact--info--list a::before { position: absolute; content: ""; right: 0; top: 100%; width: 0; height: 1px; background: rgba(var(--text), 1); transition: var(--all-medium); }
.contact--info--list a:hover::before { width: 100%; left: 0; right: auto; }
} */

/* INFO SECTION */
.information-section { position: relative; overflow: hidden; z-index: 1; margin-top: calc(var(--space-xxxl) * 2); }
.information-section .parallax--bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; background: url('../images/parallax-bg.webp') no-repeat; background-size: 140%; background-position: 50% 100%; }
.information-grp { display: flex; flex-direction: column; }
.information-header-band { background-color: #ffd400; color: rgba(var(--bg),  1); white-space: nowrap; display: flex; justify-content: center; align-items: center; }
.information-header-band p { font-family: "OverusedGroteskMedium"; font-weight: 100; font-size: var(--fs-4xl-6); color: #000; padding: 0; margin: 0; flex-shrink: 0; padding-top: var(--space-sm); }

.marquee-track { width: 100vw; display: flex; flex-wrap: nowrap; transition: all 0.2s linear; will-change: transform; }
.marquee-track img { width: 100vw; }

.information-header-band-image { width: var(--space-xxl); height: auto; margin: 0 var(--space-xs); vertical-align: middle; }
.information-container { position: relative; padding: calc(var(--space-xxxl) * 3) 0; }
.information-container .row { --bs-gutter-x: 50px; }
.information-item-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.information-header-description,
.information-header-description-span { font-size: var(--fs-4xl-6); font-weight: 100; font-family: "OverusedGroteskLight"; color: #fff; }
.information-header-description-span { font-weight: 400; }

.information-header-contact { font-size: var(--fs-4xl-6); font-weight: 100; color: #fff; line-height: 1; text-align: left; display: flex; flex-flow: row wrap; column-gap: var(--space-md); margin-bottom: 0; }
.information-header-contact a { font-size: var(--fs-4xl-6); font-weight: 100; color: #fff; line-height: 1; }
.information-header-contact a .text-wrap { display: flex; position: relative; overflow: hidden; }
.information-header-contact a .text { font-size: inherit; transition: var(--all-fast); font-family: "Instrument Serif";  }
.information-header-contact a .text:first-child { transform: translateY(0); }
.information-header-contact a .text:last-child { position: absolute; left: 0; top: 100%; transform: translateY(0); }

.dark-mode .information-section .btn--secondary:hover { background: transparent; border-color: rgba(var(--text), 1); }
.dark-mode .information-section .btn--secondary:hover .btn-text { color: rgba(var(--text), 1); }

@media screen and (hover: hover) and (pointer: fine) {
	.information-header-contact a:hover .text:first-child { transform: translateY(-100%); }
	.information-header-contact a:hover .text:last-child { transform: translateY(-100%); }
}

.information-item-first { width: 98%; }
.information-item-second { display: flex; flex-flow: column wrap; justify-self: flex-start; margin-top: var(--space-xxl); gap: var(--space-xs); }
.information-header { position: relative; z-index: -2; background-color: #ffd400; overflow: hidden; margin-bottom: -3px; }
.information-item-third { display: flex; flex-flow: column wrap; align-items: flex-start; gap: var(--space-md); margin-top: var(--space-xxl); }
.information-item-third .section--subtitle { color: #fff; margin-bottom: 0; }
.information-item-third .section--subtitle br { display: block; }


/* FOOTER SECTION */
.footer { display: flex; justify-content: space-between; padding: calc(var(--space-xxxl) * 2) 0 var(--space-xl); font-family: sans-serif; }
.footer .section--subtitle { width: 100%; margin-bottom: var(--space-xl); }
.footer-logo { width: 150px; margin-bottom: var(--space-lg); }
.footer-logo img { width: 100%; }
.dark-mode .footer-logo img { filter: invert(1); }

.footer-group { display: flex; align-items: flex-start; flex-direction: column; }
.footer-left { margin-bottom: var(--space-lg); }
.footer-address {color: rgba(var(--text), 0.7); font-size: var(--fs-sm); margin-bottom: 15px; }
.footer-address + .btn--primary { opacity: 0.7; }


.footer-btn { margin: 10px 0; padding: var(--space-xs) var(--space-sm); border: 1px solid rgba(var(--text), 0.52); background: transparent; color: rgba(var(--text), 1); cursor: pointer; border-radius: 50px; transition: var(--all-medium); }

.footer-phone { font-size: var(--fs-4xl-4); margin-top: 5px; font-weight: 300; font-family: "ClashGrotesk-Regular"; margin-bottom: var(--space-md); }
.footer-middle { display: flex; justify-content: space-between; gap: calc(var(--space-xs) / 2 * 4); flex-direction: row; }

.footer-menu span, .footer-col span, .sticky-sub-menu span { font-size: var(--fs-xs); text-transform: uppercase; margin-bottom: var(--space-md); position: relative; display: flex; font-weight: 300; }
.footer-menu span::after, .sticky-sub-menu span::after { content: ""; display: block; width: 100%; height: 1px; background: rgba(var(--text), 1); opacity: 0.5; margin-top: 5px; margin-left: var(--space-sm); }
.footer-menu { width: -webkit-fill-available; }
.footer-menu ul, .footer-col ul { list-style: none; padding: 0; }
.footer-menu li, .footer-col ul li { width: 100%; margin: 5px 0; transition: var(--all-medium); }
.footer-menu li a, .footer-col ul li a { font-size: var(--fs-sm); font-weight: 400; text-transform: capitalize; color: rgba(var(--text), 0.7); padding: 0; transition: var(--all-medium); }
.dark-mode .footer-menu li a, .dark-mode .footer-col ul li a { color: rgba(var(--text), 0.7); }

.footer-right { padding-left: calc(var(--space-xl) * 2); display: -webkit-inline-box; gap: calc(var(--space-xs) / 2 * 4); display: flex; overflow: hidden; flex-flow: nowrap; }
.footer-col h4 { font-size: var(--fs-xs); text-transform: uppercase; margin-bottom: 10px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { font-size: var(--fs-xs); margin: 6px 0; cursor: pointer; }

.footer-btn { font-size: var(--fs-sm) !important; margin-bottom: var(--space-lg); text-transform: uppercase; opacity: 0.5; }

.footer-menu ul, .sticky-sub-menu ul, .footer-col ul { display: flex; flex-flow: row wrap; }

.footer-text { font-size: var(--fs-sm);color: rgba(var(--text), 0.7); max-width: 260px; margin-bottom: var(--space-lg); }
.footer-bottom { justify-content: space-between; padding: var(--space-xxxl) 0 0; font-family: sans-serif; display: flex; }
.footer-bottom.mobile { display: none; }
.footer-bottom a, .footer-bottom h2, .footer-bottom p, .footer-bottom a { font-weight: 300; font-size: var(--fs-xs);color: rgba(var(--text), 0.7); font-family: "OverusedGroteskRoman"; margin-bottom: 0; }
.footer-bottom-left { display: flex; gap: var(--space-md); flex-flow: row wrap; margin-bottom: var(--space-md); }
.footer-bottom a { opacity: 1; text-decoration: underline; transform: var(--all-medium); }
.footer-bottom a:hover { opacity: 1; }

.cookies--popup { position: fixed; left: var(--space-sm); bottom: var(--space-sm); width: auto; padding: var(--space-sm) var(--space-sm) var(--space-sm) var(--space-md); background: rgba(var(--bg), 1); z-index: 5; border-radius: var(--space-xxxl); overflow: hidden; border: 1px solid #2e2e2e; max-width: 680px; }
.cookies--popup .text--wrapper { display: flex; align-items: center; gap: var(--space-xs); }
.cookies--popup p:not(.btn-text) { flex: 1; font-size: var(--fs-xs); margin-bottom: 0; }
.cookies--popup p:not(.btn-text) a { text-decoration: underline; }
.cookies--popup a:has( + a) { margin-left: var(--space-xs); }
.cookies--popup .btn { padding: 8px 16px; border: 1px solid rgba(var(--text), 0.5); }
.cookies--popup .btn .btn-text { font-size: var(--fs-xs); font-weight: 400; }

.cookies--modal .modal-header { border-bottom: none; padding: var(--space-lg) var(--space-lg) var(--space-sm) var(--space-lg); }
.cookies--modal .btn-close { filter: invert(1); position: absolute; right: var(--space-sm); top: var(--space-sm); }
.cookies--modal .modal-content { background: #222; border: 1px solid #555; }
.cookies--modal .modal-body { position: relative; padding: 0 var(--space-lg) var(--space-lg); }
.cookies--modal p { font-size: var(--fs-sm); }
.cookies--modal h1 { font-size: var(--fs-4xl-4); font-family: "Instrument Serif"; margin-top: var(--space-xxl); margin-bottom: var(--space-sm); }
.cookies--modal h2 { font-size: var(--fs-4xl-3); font-family: "Instrument Serif"; margin-top: var(--space-xxl); margin-bottom: var(--space-sm); }
.cookies--modal h3 { font-size: var(--fs-4xl-2); font-family: "Instrument Serif"; margin-top: var(--space-xxl); margin-bottom: var(--space-sm); }
.cookies--modal h4 { font-size: var(--fs-4xl); font-family: "Instrument Serif"; margin-top: var(--space-xxl); margin-bottom: var(--space-sm); }
.cookies--modal h5 { font-size: var(--fs-3xl); font-family: "Instrument Serif"; margin-top: var(--space-xxl); margin-bottom: var(--space-sm); }
.cookies--modal h6 { font-size: var(--fs-2xl); font-family: "Instrument Serif"; margin-top: var(--space-xxl); margin-bottom: var(--space-sm); }
.cookies--modal .wp-block-list li { font-size: var(--fs-sm); }

.cookies--modal .modal-body .button--wrapper { margin-top: var(--space-lg); justify-content: flex-start; }
.cookies--modal .modal-body .btn { padding: var(--space-sm) var(--space-md); border: 1px solid rgba(var(--text), 0.5); }
.cookies--modal .modal-body .btn .btn-text { font-size: var(--fs-sm); font-weight: 400; }

.modal-backdrop.show { background: rgba(var(--bg),  0.8); opacity: 1; backdrop-filter: blur(10px); }

.whatsapp { --stroke-width: 2px; --border-radius: 65px; position: fixed; bottom: 4vh; right: 60px; width: 109px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 3; transition: var(--all-medium); }
/* .whatsapp.active { opacity: 0; transform: scale(0.8); pointer-events: none; } */
.whatsapp svg, .whatsapp img { width: 100%; height: 100%; transition: var(--all-medium); }
.whatsapp .text { fill: rgba(var(--text), 1); transition: var(--all-medium); }
.whatsapp .circle { fill: #25D366; stroke: rgba(var(--text), 1); stroke-width: 1px; stroke-opacity: 0.2; transition: var(--all-medium); }
.whatsapp .whatsapp-icon { fill: #fff; transition: var(--all-medium); }

@media screen and (hover: hover) and (pointer: fine) {
	.footer-btn:hover { background: rgba(var(--text), 1); color: #111; opacity: 1; }
	.footer-address + .btn--primary:hover { opacity: 1; }
	.footer-menu li a:hover, .footer-col ul li a:hover { color: rgba(var(--text), 1); }
	.footer-col li:hover { opacity: 1; }
	.dark-mode .whatsapp:hover .whatsapp-icon { fill: rgba(var(--bg), 1); }

	.cookies--popup .btn--primary:hover { opacity: 1; }

	.whatsapp:hover .circle { fill: rgba(var(--text), 0.12); }
}

.spl-word { line-height: 1; font-family: inherit; }
.spl-char { display: inline-block; white-space: pre; line-height: inherit; will-change: color, transform; font-family: inherit; overflow: visible; }

.fluid-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 1; pointer-events: none; }

#soap-bubble-canvas, .fluid-bg, .soap-cursor { display: none; }

@media screen and (hover: hover) and (pointer: fine) {
	.soap-cursor { position: fixed; top: 0; left: 0; width: 32px; height: 32px; pointer-events: none; border-radius: 50%; background: rgba(var(--text), 0.5);  transform: translate(-50%, -50%); z-index: 99999; will-change: transform; transition: width 0.25s ease, height 0.25s ease; }
	.cursor--active { width: 120px; height: 120px; border-radius: 50%; padding: calc(var(--space-xs) / 2 * 3) calc(var(--space-xs) / 2 * 4); background: transparent; }
	.cursor-text { will-change: transform; font-size: var(--fs-xs); font-weight: 400; white-space: nowrap; color: rgba(var(--text), 1); pointer-events: none; opacity: 1; margin-bottom: 0; }
	.cursor-text { will-change: transform; font-size: var(--fs-xs); font-weight: 400; text-align: center; color: rgba(var(--text), 1); pointer-events: none; opacity: 1; margin-bottom: 0; }
	.cursor-image { width: 120px; height: 120px; display: none; pointer-events: none; }
	#soap-bubble-canvas, .fluid-bg, .soap-cursor { display: flex;  }
	.soap-cursor { align-items: center; justify-content: center; }
}


/* INNER PAGE HERO END */
.OurBrand-section { padding: var(--section-spacing) 0 0; position: relative; overflow: hidden; }
.OurBrand-header { display: flex; flex-flow: column wrap; justify-content: space-between; align-items: flex-start; margin-bottom: 0; }
.OurBrand-header .section--title { width: 100%; }
.OurBrand-header .OurBrand-header-title { width: 50%; }
.OurBrand-item-first { width: 100%; }
.OurBrand-item-first .OurBrand-header-description { width: 100%; font-size: var(--fs-4xl-2); line-height: 1.2; font-family: "Instrument Serif"; }
.OurBrand-container { display: flex; gap: calc(var(--space-xl) * 4); scroll-behavior: smooth; }
.OurBrand-section .row { --bs-gutter-x: 120px; }

.brand--reveal--space { display: flex; flex-flow: row wrap; width: 100%; }
.brand--reveal--space .space { display: flex; width: 100%; height: 100vh; max-height: 700px; }

.brand--reveal--wrapper-mobile, .brand--reveal--wrapper-mobile--space { display: none; }

.brand--reveal--wrapper { position: fixed; top: 0; left: 0; width: 100%; transform: translateY(101vh); will-change: transform; display: none; flex-wrap: wrap; align-items: center; align-content: center; height: 100vh; }
.page-template-aboutpage .brand--reveal--wrapper { display: flex; }
.brand--reveal { width: 100%; height: 100vh; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; align-content: center; list-style: none; will-change: transform; }
.brand--reveal li { display: inline-flex; width: auto; position: relative; }
.brand--reveal li .title--wrapper { display: flex; flex-flow: row wrap; align-items: flex-start; }
.brand--reveal li:nth-child(2) .title--wrapper { align-items: flex-end; }
.brand--reveal li .title--wrapper .left { height: 90px; padding-right: var(--space-md); position: relative; }
.brand--reveal li .title--wrapper .left img { height: 100%; width: auto; }
.dark-mode .brand--reveal li .title--wrapper .left > img { filter: invert(1); }
.brand--reveal li .title--wrapper .left .active--icon { position: absolute; left: 0; top: 0; width: auto; height: 100%; clip-path: inset(0% 100% 0% 0%); }
.brand--reveal li .title--wrapper .right { overflow: hidden; height: 64px; clip-path: inset(100% 0% 0% 0%); }
.brand--reveal li:nth-child(even) .title--wrapper .right { clip-path: inset(0% 0% 100% 0%); }
.brand--reveal li .title--wrapper .right img { height: 100%; width: auto; }
.dark-mode .brand--reveal li .title--wrapper .right img { filter: invert(1); }

.brand--reveal li .info { position: absolute; left: 0; z-index: 1; width: 100%; max-width: 360px; opacity: 0; pointer-events: none;  will-change: opacity; }
.brand--reveal li:nth-child(odd) .info { bottom: calc(100% + var(--space-md)); transform: translateY(-30px); }
.brand--reveal li:nth-child(even) .info { top: calc(100% + var(--space-md)); transform: translateY(30px); }
.brand--reveal li .info p { font-size: var(--fs-xl); font-weight: 400; line-height: 1.2; }

/* BRAND IDOLOGY */
.BrandIdeology-section { padding-bottom: var(--section-spacing); position: relative; overflow: hidden; }
.BrandIdeology-header { display: flex; flex-flow: column wrap; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-xxxl); }
.BrandIdeology-header .BrandIdeology-header-title { width: 50%; }
.BrandIdeology-header .section--subtitle { width: 40%; }
.BrandIdeology-container { display: flex; gap: calc(var(--space-xl) * 4); scroll-behavior: smooth; }

.mission--vision { display: grid; grid-template-columns: repeat(2, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); }
.mission--vision > *:first-child { grid-column: 1 / 1; }
.mission--vision .ideology--box { position: relative; overflow: hidden; width: 100%; padding-bottom: 125%; }
.mission--vision .ideology--box .bg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; transition: transform 0.5s ease; }
.mission--vision .ideology--box .bg .bgVideo { width: 100%; height: 100%; object-fit: cover; }
.mission--vision .ideology--box .top--text { position: absolute; top: -1px; left: 0px; font-size: var(--fs-sm); letter-spacing: 0.5px; color: rgba(var(--text), 0.62); text-transform: uppercase; font-size: var(--fs-xs); background: rgba(var(--bg),  1); z-index: 3; padding: 4px 8px 4px 0; }
.mission--vision .ideology--box .info--box { width: 100%; height: 100%; display: flex; flex-flow: column wrap; justify-content: flex-end; position: absolute; bottom: 0; left: 0; color: rgba(var(--text), 1); z-index: 2; padding: var(--space-xl); }
.mission--vision .ideology--box .info--box .title { font-size: var(--fs-4xl-9); font-family: "Instrument Serif"; color: #fff; text-transform: capitalize; margin-bottom: var(--space-md); }
.mission--vision .ideology--box .info--box .description { font-size: var(--fs-lg); line-height: 1.2; letter-spacing: 0.2px; font-family: "ClashGrotesk-Regular"; color: #fff; margin-bottom: 0; }

/* CORE VALUES */
.CoreValues-section { padding: var(--section-spacing) 0; position: relative; overflow: hidden; perspective: 2000px; }
.CoreValues-header { display: flex; display: flex; flex-flow: column wrap; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-xxxl); }
.CoreValues-header .section--subtitle { width: 40%; }

.CoreValues--list { width: 100%; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: 0 calc(var(--gap) * 3); transform-style: preserve-3d; }
.CoreValues--list .CoreValues--box { width: 100%; aspect-ratio: 1; }
.CoreValues--list .info--box { width: 100%; height: 100%; display: flex; flex-flow: row wrap; align-items: flex-end; align-content: flex-end; padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5); border: 1px solid rgba(var(--text), 0.2); color: rgba(var(--text), 1); z-index: 2; will-change: transform; transition: var(--all-medium); }
.CoreValues--list .info--box .title { width: 100%; font-size: var(--fs-4xl-2); font-family: "ClashGrotesk-Regular"; font-weight: 400; color: rgba(var(--text), 1); margin-bottom: var(--space-sm); }
.CoreValues--list .info--box .title::first-letter { text-transform: uppercase; }
.CoreValues--list .info--box .description { width: 100%; font-size: var(--fs-lg-2); font-family: "ClashGrotesk-Regular"; color: rgba(var(--text), 0.62); font-weight: 400; margin-bottom: 0; }

/* @media screen and (hover: hover) and (pointer: fine) {
.CoreValues--list:hover .info--box { opacity: 0.2; }
.CoreValues--list:hover .info--box:hover { opacity: 1; transform: scale(1.01); padding-bottom: calc(var(--space-lg) * 2); }
} */

/* WHY US */
.WhyUs-section { padding: var(--section-spacing) 0; position: relative; overflow: hidden; perspective: 2000px; }
.WhyUs-header { display: flex; flex-flow: column wrap; align-items: flex-start; margin-bottom: calc(var(--space-lg) * 2); }
.WhyUs-header .section--title { width: 100%; }
.WhyUs-header .section--subtitle { width: 100%; }
.WhyUs-item-first { width: 40%; }
.WhyUs-item-first .WhyUs-header-description { width: 100%; font-size: var(--fs-4xl-2); line-height: 1.2; font-family: "Instrument Serif"; }
.WhyUs-container { display: flex; gap: calc(var(--space-xl) * 4); scroll-behavior: smooth; }

.why--us--wrapper { position: relative; display: flex; flex-flow: row wrap; }
.why--us--wrapper:has( + .button--wrapper) { margin-bottom: calc(var(--space-lg) * 2); }
.why--us--wrapper .why--us--list { width: 100%; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); transform-style: preserve-3d; }
.why--us--wrapper .why--us--list li { display: flex; flex-flow: row wrap; border: 1px solid rgba(var(--text), 0.2); padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5); }
.why--us--wrapper .why--us--list li .number { display: none; }
.why--us--wrapper .why--us--list li .img--box { height: 200px; margin-bottom: calc(var(--space-lg) * 2); }
.why--us--wrapper .why--us--list li .img--box img { width: 100%; height: 100%; object-fit: contain; }
.why--us--wrapper .why--us--list li .info { width: 100%; }
.why--us--wrapper .why--us--list li .info .title { color: rgba(var(--text), 1); font-size: var(--fs-4xl); font-weight: 400; margin-bottom: 0; font-family: "OverusedGroteskRoman"; }
.why--us--wrapper .why--us--list li .info .title:has( + p), .why--us--wrapper .why--us--list li .info .title:has( + .btn) { margin-bottom: var(--space-sm); }
.why--us--wrapper .why--us--list li .info p { font-size: var(--fs-lg); font-weight: 400; margin-bottom: 0; }
.why--us--wrapper .why--us--list li .info p:has( + .btn) { margin-bottom: var(--space-sm); }

/* WHY WORK WITH US */
.WhyWorkWithUs-section { padding: var(--section-spacing) 0; position: relative; overflow: hidden; }

/* AGENCY SHOWCASE */
.AgencyShowcase-section { display: none !important; width: 100%; height: 100vh; padding: var(--section-spacing) 0; position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; z-index: 1; }
@media screen and (hover: hover) and (pointer: fine) {
	.AgencyShowcase-section { display: flex !important; }
}
.AgencyShowcase-section--space { display: flex; flex-flow: row wrap; }
.AgencyShowcase-section--space .space { height: 100vh; width: 100%; }
.AgencyShowcase-inner { position: relative; width: 100%; min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.AgencyShowcase-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-xxxl); }
.AgencyShowcase-item-first { width: 40%; }
.AgencyShowcase-item-first .AgencyShowcase-header-description { width: 100%; font-size: var(--fs-4xl-2); line-height: 1.2; font-family: "Instrument Serif"; }
.AgencyShowcase-container { display: flex; gap: calc(var(--space-xl) * 4); scroll-behavior: smooth; }
.AgencyShowcase-images { position: fixed; inset: 0; pointer-events: none; z-index: 2; perspective: 100vh; }
.AgencyShowcase-images img { position: absolute; overflow: hidden; transform-origin: center center; object-fit: cover; transform: scale(0.7); opacity: 1; will-change: transform, filter, opacity; }

.AgencyShowcase-slider .swiper-wrapper { transition-timing-function: linear; }
.AgencyShowcase-slider .swiper-slide { height: auto; }
.AgencyShowcase-slider .swiper-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }

/* WHO WE ARE */
.who-we-are-space { width: 100%; height: 50vh; pointer-events: none; }
.who-we-are { position: fixed; left: 0; top: 0; width: 100%; height: 100vh; opacity: 0; display: flex; flex-flow: row wrap; align-items: center; justify-content: center; text-align: center; z-index: 2; pointer-events: none; }

.who-we-are .section--subtitle.idea { font-size: var(--fs-4xl-8); max-width: 60%; margin: auto; text-align: center; font-family: "Instrument Serif"; position: relative; transform-origin: center; z-index: 5; }
.who-we-are .section--subtitle.idea .img-fill { background-image: url("/assets-ext/react.tequila.work/newsite/wp-content/uploads/2026/01/opac-e1767948112843.webp"); background-size: cover; background-position: center; background-repeat: no-repeat; -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; background-size: 120%; font-family: "Instrument Serif"; display: inline-block; }

/* COLUMN SECTION */
.gallery-space { width: 100%; height: 150vh; pointer-events: none; }
.gallery { --gap: 1.5vw; --ratio: 1; --grid-item-width: 24vw; --radius: 0; }
.section { line-height: 1; position: static; top: 0; z-index: 4; width: 100%; min-height: 100vh; }
.section--intro { margin-bottom: 250vh; height: 100vh; display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: center; padding: 8rem 0 2rem; cursor: default; }

.section--columns { position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 1; width: 100%; height: 100vh; opacity: 0; pointer-events: none; }
.columns { width: 100%; position: relative; display: flex; gap: var(--gap); height: 100%; align-items: center; will-change: transform, opacity; }
.column-wrap { position: relative; z-index: 1; display: flex; flex-direction: column; will-change: transform; }
.column { position: relative; display: block; will-change: transform; }
.column__item { --grid-item-height: calc(var(--grid-item-width) * var(--ratio)); width: var(--grid-item-width); position: relative; overflow: hidden; cursor: pointer; margin: 0 0 var(--gap) 0; z-index: 1; will-change: transform, filter; }
.column__item-img { width: 100%; height: 100%; background-size: contain; background-position: 50% 50%; will-change: transform; background-repeat: no-repeat; }
.column__item-img img { width: 100%; height: 100%; object-fit: contain; }


/* CEO */
.ceo-section { padding: var(--section-spacing) 0; position: relative; perspective: 2000px; transform-style: preserve-3d; }
.ceo-section .ceo-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: calc(var(--space-lg) * 2); }
.ceo-section .ceo-header .section--title { margin-bottom: 0; }
.ceo-section .ceo-header .ceo-header-title { width: 100%; }

.ceo-section .ceo--info { display: flex; flex-flow: row wrap; align-items: flex-end; gap: calc(var(--space-xl) * 1.5); }
.ceo-section .ceo--info .left { width: 48%; transform-origin: center bottom; will-change: transform; }
.ceo-section .ceo--info .left img { width: 100%; display: flex; }
.ceo-section .ceo--info .right { width: 46%; margin-bottom: -5px; }

.ceo-section .ceo--info .section--subtitle { width: 100%; margin-bottom: calc(var(--space-md) * 2); }
.ceo-section .ceo--info p { font-size: var(--fs-lg-2); font-weight: 300; line-height: 1.3; }
.ceo-section .ceo--info .name--wrapper { margin-top: calc(var(--space-md) * 2); }
.ceo-section .ceo--info .name--wrapper .sign { width: 100%; height: 100px; margin-bottom: var(--space-sm); }
.ceo-section .ceo--info .name--wrapper .sign img { width: 100%; height: 100%; object-fit: contain; object-position: left; }
.dark-mode .ceo-section .ceo--info .name--wrapper .sign img { filter: invert(1); }
.ceo-section .ceo--info .name--wrapper .name { font-size: var(--fs-2xl); font-weight: 400; font-family: "ClashGrotesk-Regular"; margin-bottom: 3px; }
.ceo-section .ceo--info .name--wrapper .name + .title { margin-bottom: calc(var(--space-xs) / 2 * 4); }
.ceo-section .ceo--info .name--wrapper .title { font-size: var(--fs-lg-2); font-weight: 400; color: rgba(var(--text), 0.62); }
.ceo-section .ceo--info .name--wrapper .title a { border-bottom: 1px solid rgba(var(--text), 0.3); color: rgba(var(--text), 0.7); }

.ceo-section .ceo--info .name--wrapper .title { margin-bottom: 0; }

.dark-mode .ceo-section .ceo--info .name--wrapper .title { color: rgba(var(--text), 0.8); }
.dark-mode .ceo-section .ceo--info .name--wrapper .title a { color: rgba(var(--text), 0.9); }

/* MEET THE TEAM SECTION */
.MeetTheTeam-section { padding: var(--section-spacing) 0; position: relative; perspective: 2000px; transform-style: preserve-3d; }
.MeetTheTeam-item-first { width: 100%; }
.MeetTheTeam-container { display: flex; gap: calc(var(--space-xl) * 4); scroll-behavior: smooth; }

.team--list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(20%, 1fr)); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); margin-top: calc(var(--space-lg) * 2); margin-bottom: calc(var(--space-lg) * 2); }
.team--list.head--team { padding-bottom: calc(var(--space-lg) * 2); border-bottom: 1px solid rgba(var(--text), 0.2); }
.team--list li .team--card { width: 100%; transform-origin: center bottom; will-change: transform; }
.team--list li .team--card .team--img { width: 100%; display: flex; margin-bottom: var(--space-sm); }
.team--list li .team--card .team--img img { width: 100%; }
.team--list li .team--card .name { display: flex; gap: var(--space-sm); align-items: center; font-size: var(--fs-4xl-2); font-weight: 400; text-transform: capitalize; margin-bottom: 5px; }
.team--list li .team--card .name a { display: inline-flex; width: 30px; }
.team--list li .team--card .title { font-size: var(--fs-3xl); font-weight: 400; text-transform: capitalize; font-family: "Instrument Serif"; margin-bottom: 0; }
.team--list li .team--card p { font-family: "ClashGrotesk-Light"; font-weight: 300; margin-bottom: 0; }
.team--list li .team--card .title:has( + p) { margin-bottom: var(--space-sm); }

/* SERVICES PAGE */
/* CRAFTING SECTION */
.CraftingBrands-section { padding: var(--section-spacing) 0; position: relative; overflow: hidden; }
.CraftingBrands-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-xxxl); }
.CraftingBrands-header .CraftingBrands-header-title { width: 50%; }
.CraftingBrands-section .about-left { width: 100%; display: flex; gap: calc(var(--space-xl) * 2); }
.CraftingBrands-section .section--title { flex: 1; }
.CraftingBrands-section .about-description { flex: 1; padding-left: 0; }

/* VALUABLE ASSETS SECTION */
.ValuableAssets-section { padding: var(--section-spacing) 0; position: relative; perspective: 2000px; overflow: hidden; }
.ValuableAssets-container { display: flex; gap: calc(var(--space-xl) * 4); scroll-behavior: smooth; }

.ValuableAssets-section .info { width: 100%; margin-left: auto; }
.ValuableAssets-section .info .h3 { width: 100%; font-size: var(--fs-4xl-2); line-height: 1.2; font-family: "Instrument Serif"; color: rgba(var(--text), 1); margin-bottom: var(--space-lg); }
.ValuableAssets-section .info .assets--list { display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); list-style: none; padding: 0; margin: 0; transform-style: preserve-3d; }
.ValuableAssets-section .info .assets--list li { padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5); border: 1px solid rgba(var(--text), 0.2); }
.ValuableAssets-section .info .assets--list .h4 { color: rgba(var(--text), 1); font-size: var(--fs-4xl); font-weight: 400; font-family: "OverusedGroteskRoman"; margin-bottom: 0; }
.ValuableAssets-section .info .assets--list .h4:has( + p) { margin-bottom: var(--space-sm); }
.ValuableAssets-section .info .assets--list .h4 + p { font-size: var(--fs-md); margin-bottom: 0; }
.ValuableAssets-section .info .assets--list .h4 + p a { display: inline; text-decoration: underline; }

.ValuableAssets-section .info .assets--list + .btn, .ValuableAssets-section .info .assets--list + .button--wrapper { display: flex; flex-flow: row wrap; justify-content: center; margin-top: var(--space-xxxl); }

/* FEATURE SECTION */
.features-section { padding: var(--section-spacing) 0; position: relative; overflow: hidden; }
.features-section .features--list { display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 2) calc(var(--gap) * 3); }
.features-section .features--list > li { display: flex; flex-flow: row wrap; align-items: center; border-bottom: 1px solid rgba(var(--text), 0.1); padding-bottom: 15px; }
.features-section .features--list > li .feature--icon { width: 50px; height: auto; margin-right: 20px; }
.features-section .features--list > li .feature--icon img { width: 100%; height: auto; }
.features-section .features--list > li .h4 { display: flex; flex-flow: row wrap; width: 100%; font-size: var(--fs-3xl); display: flex; align-items: center; margin-bottom: var(--space-md); }
.features-section .features--list > li p:not(:has( + *)) { margin-bottom: 0; }

.feature--icon--list { display: flex; flex-flow: row wrap; justify-content: flex-start; align-content: flex-start; align-items: center; gap: var(--space-md); width: 100%; }
.feature--icon--list li { display: inline-flex; width: auto; height: 35px; }
.feature--icon--list li img { display: flex; height: 100%; object-fit: contain; object-position: center; }

.dark-mode .features-section .features--list li .feature--icon img { filter: brightness(1) invert(1); }


/* PROVEN PROCESS */
.ProvenProcess-section { padding: var(--section-spacing) 0; position: relative; perspective: 2000px; transform-style: preserve-3d; overflow: hidden; --info-width: 300px; }
.ProvenProcess-container { width: 100%; display: flex; flex-flow: row wrap; gap: var(--space-lg); }
.process-hover-area { position: relative; }
.process-hover-area .thumbnail--wrapper { width: 100%; display: flex; flex-flow: row wrap; gap: var(--space-md); margin-top: var(--space-md); }
.process-hover-area .thumbnail--wrapper .process--slider--thumbnail { width: calc(100% - (var(--info-width) + var(--space-md))); }
.process-hover-area .thumbnail--wrapper .process--slider--thumbnail .img-box { position: relative; flex: none; }
.process-hover-area .thumbnail--wrapper .process--slider--thumbnail .img-box .hover-title { padding: var(--space-sm); color: rgba(var(--text), 1); font-size: var(--fs-xs); font-weight: 400; z-index: 2; width: 100%; transition: var(--all-medium); }
.process-hover-area .thumbnail--wrapper .process--slider--thumbnail .swiper-slide { filter: grayscale(1); transition: var(--all-fast); cursor: pointer; position: relative; }
.process-hover-area .thumbnail--wrapper .process--slider--thumbnail .swiper-slide img { aspect-ratio: 2/1; width: 100%; height: auto; object-fit: cover; opacity: 0.2; transition: var(--all-medium); }
.process-hover-area .thumbnail--wrapper .process--slider--thumbnail .swiper-slide-active img, .process-hover-area .thumbnail--wrapper .process--slider--thumbnail .swiper-slide-active .img-box .hover-title { opacity: 1; }
.process-hover-area .navigation--wrapper { width: 100%; max-width: var(--info-width); display: flex; flex-flow: row wrap; gap: var(--space-md); }
.process-hover-area .prevBtn,
.process-hover-area .nextBtn { padding: var(--space-sm) 0; background: none; border: none; font-size: var(--fs-2xl); cursor: pointer; transition: opacity 0.3s; color: rgba(var(--text), 1); }

@media screen and (hover: hover) and (pointer: fine) {
	.process-hover-area .thumbnail--wrapper .process--slider--thumbnail .img-box .hover-title { opacity: 0; }
	.process-hover-area .thumbnail--wrapper .process--slider--thumbnail .img-box:hover .hover-title { opacity: 1; }

	.process-hover-area .prevBtn:hover,
	.process-hover-area .nextBtn:hover { opacity: 0.7; }

	.process-hover-area .thumbnail--wrapper .process--slider--thumbnail .swiper-slide-active, .process-hover-area .thumbnail--wrapper .process--slider--thumbnail .swiper-slide:hover { filter: grayscale(0); }
}

.ProvenProcess-container .ProvenProcess-item-first { width: 100%; }
.ProvenProcess-container .ProvenProcess-item-first .ProvenProcess-header-description { width: 100%; font-size: var(--fs-4xl-2); line-height: 1.2; font-family: "Instrument Serif"; }

.ProvenProcess-container .ProvenProcess-item-second { display: flex; flex-flow: row wrap; width: 100%; }
.ProvenProcess-container .ProvenProcess-item-second .process-slider { width: 100%; }

.ProvenProcess-container .ProvenProcess-item-second .info--wrapper { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); padding: calc(var(--gap) * 3); margin-top: var(--space-lg); position: relative; }
.ProvenProcess-container .ProvenProcess-item-second .info--wrapper::after { content: ''; position: absolute; left: 10px; top: 0; width: 66.4%; height: 100%; background-image: url('../images/custom-web-design-line.webp'); background-size: 100% 100%; background-position: top left; background-repeat: no-repeat; pointer-events: none; opacity: 0.5; }
.dark-mode .ProvenProcess-container .ProvenProcess-item-second .info--wrapper::after { filter: invert(1); }
.ProvenProcess-container .ProvenProcess-item-second .info { width: 100%; height: 100%; display: flex; flex-flow: column wrap; padding: var(--space-lg); color: rgba(var(--text), 1); z-index: 2; will-change: transform; transition: var(--all-medium); }
.ProvenProcess-container .ProvenProcess-item-second .info .h4 { font-size: var(--fs-4xl-2); font-family: "ClashGrotesk-Regular"; font-weight: 400; color: rgba(var(--text), 1); margin-bottom: var(--space-sm); }
.ProvenProcess-container .ProvenProcess-item-second .info p { width: 90%; font-size: var(--fs-md); font-family: "ClashGrotesk-Regular"; color: rgba(var(--text), 0.62); font-weight: 400; margin-bottom: 0; }
.ProvenProcess-container .ProvenProcess-item-second .info .process-number { display: flex; font-family: "Instrument Serif", serif; margin-bottom: var(--space-md); font-size: var(--fs-2xl); color: rgba(var(--text), 0.62); }
.ProvenProcess-container .ProvenProcess-item-second .info--wrapper li:nth-child(2) { order: 4; }
.ProvenProcess-container .ProvenProcess-item-second .info--wrapper li:nth-child(3) { order: 2; }
.ProvenProcess-container .ProvenProcess-item-second .info--wrapper li:nth-child(4) { order: 5; }
.ProvenProcess-container .ProvenProcess-item-second .info--wrapper li:nth-child(5) { order: 3; }
.ProvenProcess-container .ProvenProcess-item-second .info--wrapper li:nth-child(6) { order: 6; }

.process-slider .swiper-wrapper { transition-timing-function: linear; }
.process-slider .swiper-slide { height: auto; width: auto; background: rgba(var(--bg),  1); }
.process-slider .swiper-slide.swiper-slide-prev { height: auto; width: auto; background: rgba(var(--bg),  1); }
.process-slider .swiper-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }

.process-slider > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets { bottom: 0; display: flex; flex-flow: row wrap; gap: var(--space-sm); }
.process-slider > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet { width: 10px; height: 10px; margin: 0; background: rgba(var(--text), 0.5); opacity: 1; border-radius: 20px; transition: var(--all-medium); }
.process-slider > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active { width: 25px; background: rgba(var(--text), 1); opacity: 1; }

.ProvenProcess-section .swiper-pagination { display: none; }

/* BRANDING SERVICES */
.sub--services--banner .hero-video, .sub--services--banner .hero--bg { height: auto; }

.BrandingServices-section { padding: var(--section-spacing) 0; position: relative; perspective: 2000px; overflow: hidden; }
.BrandingServices-section .button--wrapper { text-align: center; }
.BrandingServices-header { display: flex; flex-flow: column wrap; justify-content: space-between; align-items: flex-start; margin-bottom: calc(var(--space-lg) * 2); }
.BrandingServices-header .section--subtitle { width: 100%; }
.BrandingServices-item-first .BrandingServices-header-description { width: 100%; font-size: var(--fs-4xl-2); line-height: 1.2; font-family: "Instrument Serif"; }
.BrandingServices-container { display: flex; gap: calc(var(--space-lg) * 2); scroll-behavior: smooth; }
.BrandingServices-container .BrandingServices-item-second { flex: 1; display: flex; flex-wrap: wrap; align-items: flex-end; gap: var(--space-md); }
.BrandingServices-container .BrandingServices-item-second .info { width: 100%; max-width: 300px; }
.BrandingServices-container .BrandingServices-item-second .info .h4 { font-size: var(--fs-4xl-2); line-height: 1.1; font-weight: 400; text-transform: capitalize; margin-bottom: var(--space-md); }
.BrandingServices-container .BrandingServices-item-second .info p { font-size: var(--fs-sm); line-height: 1.4; font-weight: 400; }
.BrandingServices-container .BrandingServices-item-second .img-box { display: flex; flex: 1; }
.BrandingServices-container .BrandingServices-item-second .img-box img { width: 100%; height: auto; object-fit: contain; }

.branding--services--list { display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); transform-style: preserve-3d; }
.branding--services--list:has( + .button--wrapper) { margin-bottom: var(--space-lg); }
.branding--services--list .branding--card { position: relative; padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5); overflow: hidden; transition: opacity 0.5s; }
.branding--services--list .branding--card .branding--card--link { height: 100%; display: flex; flex-flow: column wrap; transition: var(--all-medium); }
.branding--services--list .branding--card .branding--card--img { height: 200px; display: flex; margin-bottom: var(--space-xl); }
.branding--services--list .branding--card .branding--card--img img { height: 100%; width: auto; object-fit: contain; }
.branding--services--list .branding--card .branding--card--info { width: 100%; }
.branding--services--list .branding--card .h2 { font-size: var(--fs-4xl); font-weight: 400; font-family: "OverusedGroteskRoman"; color: rgba(var(--text), 1); margin-bottom: var(--space-md); }
.branding--services--list .branding--card p { font-size: var(--fs-lg); font-weight: 400; line-height: 1.2; margin-bottom: var(--space-md); }

.branding--services--list .branding--card .button--wrapper { display: flex; flex-flow: row wrap; align-items: center; margin-top: auto; height: 16px; }
.branding--services--list .branding--card .button--wrapper img { display: inline-block; width: 22px; object-fit: contain; object-position: left; }

.branding--services--list .branding--card::before { content: ''; position: absolute; --border-gap: 2px; left: var(--border-gap); top: var(--border-gap); width: calc(100% - (var(--border-gap) * 2)); height: calc(100% - (var(--border-gap) * 2)); background: rgba(var(--bg),  1);  z-index: -1; }
.branding--services--list .branding--card::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(0deg); width: 180%; aspect-ratio: 1; background: url(../images/button-border.png) center center; background-size: cover; z-index: -2; transition: var(--all-medium); }

.offering--services--list { display: flex; flex-wrap: wrap; row-gap: var(--space-xs); }
.offering--services--list li { display: flex; flex-flow: row wrap; position: relative; padding-left: var(--space-md); }
.offering--services--list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background-color: rgba(var(--text), 0.7); border-radius: 50%; }
.branding--services--list .branding--card .offering--services--list p { font-size: var(--fs-md); }

@media screen and (hover: hover) and (pointer: fine) {
	.branding--services--list .branding--card:hover { border-color: rgba(var(--text), 0); }
	.branding--services--list .branding--card:hover .branding--card--link { transform: translateY(-20px) scale(1.02); }
	.branding--services--list:hover .branding--card .branding--card--link:hover, .branding--services--list:hover .branding--card:hover::after { opacity: 1; }
	.branding--services--list .branding--card:hover::after { opacity: 1; animation: rotate-360 10s linear infinite forwards; }
}

/* TANGIBALE RESULTS */
.TangibleResults-section { padding: var(--section-spacing) 0; position: relative; perspective: 2000px; transform-style: preserve-3d; overflow: hidden; }
.TangibleResults-header { display: flex; flex-flow: column wrap; justify-content: space-between; align-items: flex-start; margin-bottom: calc(var(--space-lg) * 2); }
.TangibleResults-header .section--title { width: 100%; }
.TangibleResults-header .section--subtitle { width: 100%; }

.TangibleResults-section .info { width: 100%; margin-left: auto; }
.TangibleResults-section .info .h3 { width: 100%; font-size: var(--fs-4xl-2); line-height: 1.2; font-family: "Instrument Serif"; color: rgba(var(--text), 1); margin-bottom: var(--space-xxxl); }
.TangibleResults-section .info .assets--list { display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); list-style: none; padding: 0; margin-bottom: var(--space-xxxl); transform-style: preserve-3d; }
.TangibleResults-section .info .assets--list .border--box { width: 100%; height: 100%; display: flex; flex-flow: column wrap; padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5) ; border: 1px solid rgba(var(--text), 0.2); color: rgba(var(--text), 1); z-index: 2; will-change: transform; transition: var(--all-medium); }
.TangibleResults-section .info .assets--list .img--box { width: 100px; aspect-ratio: 1; height: auto; margin-bottom: calc(var(--space-lg) * 2); }
.TangibleResults-section .info .assets--list .img--box img { width: 100%; height: auto; object-fit: contain; }
.TangibleResults-section .info .assets--list .h4 { color: rgba(var(--text), 1); font-size: var(--fs-4xl); font-weight: 400; font-family: "OverusedGroteskRoman"; line-height: 100%; margin-bottom: var(--space-md); }
.TangibleResults-section .info .assets--list p { font-size: var(--fs-md); }

/* SUCCESS STORIES */
.SuccessStories-section { padding: var(--section-spacing) 0; position: relative; perspective: 2000px; transform-style: preserve-3d; overflow: hidden; }

.SuccessStories-section .SuccessStories--slider--wrapper { position: relative; }
.SuccessStories-section .SuccessStories--slider--wrapper .prevBtn,
.SuccessStories-section .SuccessStories--slider--wrapper .nextBtn { position: absolute; top: 50%; transform: translateY(-50%); padding: var(--space-sm); background: none; border: none; width: 60px; cursor: pointer; opacity: 0.5; transition: opacity 0.3s; color: rgba(var(--text), 1); }
.SuccessStories-section .SuccessStories--slider--wrapper .prevBtn { right: calc(100% + var(--space-lg)); }
.SuccessStories-section .SuccessStories--slider--wrapper .nextBtn { left: calc(100% + var(--space-lg)); }
.SuccessStories-section .SuccessStories--slider--wrapper .prevBtn img,
.SuccessStories-section .SuccessStories--slider--wrapper .nextBtn img { width: 100%; }
.SuccessStories-section .SuccessStories--slider .img--box { display: flex; width: 100%; margin-bottom: var(--space-md); overflow: hidden; }
.SuccessStories-section .SuccessStories--slider .img--box img { width: 100%; height: auto; object-fit: contain; will-change: transform; transition: var(--all-medium); }
.SuccessStories-section .SuccessStories--slider .info { width: 100%; }
.SuccessStories-section .SuccessStories--slider .info .h3 { font-size: var(--fs-4xl-2); font-weight: 400; color: rgba(var(--text), 1); text-transform: capitalize; margin-bottom: 0; }
.SuccessStories-section .SuccessStories--slider .info .h4 { font-size: var(--fs-2xl); font-weight: 400; color: rgba(var(--text), 1); text-transform: capitalize; font-family: "Instrument Serif"; margin-bottom: 0; }

.SuccessStories-section .button--wrapper { text-align: center; margin-top: var(--space-xxxl); }

@media screen and (hover: hover) and (pointer: fine) {
	.SuccessStories-section .SuccessStories--slider--wrapper .prevBtn:hover,
	.SuccessStories-section .SuccessStories--slider--wrapper .nextBtn:hover { opacity: 0.7; }
	.SuccessStories-section .SuccessStories--slider .story--box:hover .img--box img { transform: scale(1.05); }
}

/* LETS TALK */
.LetsTalk-section { padding: var(--section-spacing) 0; position: relative; z-index: 1; }
.LetsTalk-header { display: flex; justify-content: space-between; align-items: flex-start; }
.LetsTalk-header .section--title { line-height: 120%; font-family: "Instrument Serif"; width: 80%; color: #fff; }
.LetsTalk-item-first { width: 40%; }
.LetsTalk-item-first .section--subtitle { color: #fff; font-family: "OverusedGroteskLight"; }
.dark-mode .LetsTalk-item-first .btn--secondary { filter: invert(1); }
.dark-mode .LetsTalk-item-first .btn--secondary .btn-text { font-weight: 400; }

.lets--talk--bg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }

/* PORTFOLIOS */
.portfolioSection--inner { padding: calc(var(--header-height, 120px) + var(--section-spacing)) 0 var(--section-spacing); min-height: 100vh; overflow: hidden; }
.portfolioSection--inner .headerWrapper { display: flex; flex-direction: column; flex-wrap: wrap; justify-content: flex-start; margin-bottom: calc(var(--space-lg) * 2); padding: 0 var(--space-sm); }
.portfolioSection--inner .headerTitle { flex: 0 0 50%; }
.portfolioSection--inner .headerText { width: 50%; margin-left: auto; }
.portfolioSection--inner .portfolioList { display: grid; grid-template-columns: repeat(5, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--space-xl) * 3) calc(var(--gap) * 3); position: relative; transform-style: preserve-3d; }
.portfolioSection--inner .portfolioCard { flex-flow: row wrap; align-items: flex-start; align-content: flex-start; position: relative; transform-style: preserve-3d; }

.portfolioSection--inner .portfolioCard[data-flex="60"] { grid-column: span 3; }
.portfolioSection--inner .portfolioCard[data-flex="40"] { grid-column: span 2; }
.portfolioSection--inner .portfolioCard video { width: 100%; display: flex; }
.portfolioSection--inner .portfolioCard[data-flex="40"] .portfolioVideo { width: 100%; aspect-ratio: 0.67/1; }
.portfolioSection--inner .portfolioCard[data-flex="60"] .portfolioVideo { width: 100%; aspect-ratio: 1.35/1; }
.portfolioSection--inner .cardTag { position: absolute; top: 0; left: 0; background: rgba(var(--bg),  1); padding: 4px 8px 4px 0px; font-size: var(--fs-sm); color: rgba(var(--text), 0.62); font-size: var(--fs-xs); z-index: 10; text-transform: uppercase; }

.portfolioSection--inner .section--title { margin-bottom: var(--space-sm); }

.portfolioSection--inner .pagination { display: flex; flex-flow: row wrap; align-items: center; justify-content: center; list-style: none; gap: var(--space-xl); margin-top: calc(var(--space-xxxl) * 2); }
.portfolioSection--inner .pagination .page-link { display: flex; padding: var(--space-xs) var(--space-sm); background: transparent; color: rgba(var(--text), 1); border: none; }
.portfolioSection--inner .pagination .page-link.active { border-bottom: 1px solid rgba(var(--text), 1); }

.portfolioSection--inner .video { width: 100%; height: 100%; display: flex; object-fit: cover; }
.portfolioSection--inner .cardTitle { width: 100%; margin-top: var(--space-md); font-size: var(--fs-4xl-5); margin-top: var(--space-sm); }
.portfolioSection--inner .cardSubtitle { width: 100%; opacity: 0.7; margin-top: 0; font-size: var(--fs-2xl); font-weight: 100; }
.portfolioSection--inner .spaceparagraph { padding: 0px var(--space-xxl); }

/* PORTFOLIO DETAILS */
.portfolio--info { display: flex; flex-flow: row wrap; width: 100%; padding: calc(var(--header-height, 120px) + var(--section-spacing)) 0 var(--section-spacing); overflow: hidden; --gap: calc(var(--space-xs) / 2 * 4); }
.portfolio--info .bg { display: flex; width: 100%; overflow: hidden; transform-origin: center top; clip-path: polygon(50% calc(var(--space-xl) * 2.5), 50% 0, 100% 0, 100% 100%, 0 100%, 0 calc(var(--space-xl) * 2.5)); }
.portfolio--info .bg:has(+ .container) { margin-bottom: calc(var(--gap) * 3); }
.portfolio--info .img--box { display: flex; width: 100%; overflow: hidden; }
.portfolio--info .img--box:has( + .photo--grid) { margin-bottom: calc(var(--gap) * 3); }
.portfolio--info img, .portfolio--info .img--box img { width: 100%; height: 100%; object-fit: cover; }
.portfolio--info .video--box { width: 100%; gap: calc(var(--gap) * 3); margin-bottom: calc(var(--gap) * 3); }
.portfolio--info .video--box:has(+ .portfolio--details-description) { margin-bottom: 0; }
.portfolio--info .video--box iframe { width: 100%; aspect-ratio: 16/9; }

.portfolio--info .portfolio--details-left { width: 100%; padding: 0 var(--space-sm); margin-bottom: var(--space-lg); }
.portfolio--info .portfolio--details-left .year { color: rgba(var(--text), 1); font-size: var(--fs-xs); font-style: normal; font-weight: 500; line-height: 44px; letter-spacing: 0.185px; width: 100%; margin-bottom: 0; }
.portfolio--details-line { width: 100%; margin-bottom: var(--space-md); }
.portfolio--info .portfolio--details-description { width: 43%; margin-left: auto; margin-right: 7%; padding: calc(var(--space-xxl) * 3) var(--space-sm); }
.portfolio--info .portfolio--details-description.hero--description { width: 86%; padding: calc(var(--space-lg) * 2) 0; margin-left: 0; }
.portfolio--info .portfolio--details-description .section--subtitle:not(:has( + *)) { margin-bottom: 0; }
.portfolio--info .portfolio--details-description .about-description { width: 100%; padding-left: 0; }
.portfolio--info .portfolio--details-description .about-description + .about-description { margin-top: var(--space-xl); }
.portfolio--info .portfolio--details-description .about-description h2 { font-size: var(--fs-4xl-2); line-height: 122%; font-family: "Instrument Serif"; margin-bottom: var(--space-md); width: 100%; }
.portfolio--info .portfolio--details-description .about-description a:not(.btn) { border-bottom: 1px solid rgba(var(--text), 0.4); }
.portfolio--info .portfolio--details-description .about-description p a:not(.btn) { border-bottom: 1px solid rgba(var(--text), 0.4); }

.portfolio--info .portfolio--details-description.twocolumn { width: 100%; margin-right: 0; }
.portfolio--info .portfolio--details-description.twocolumn .about-line-description { column-count: 2; column-gap: calc(var(--space-xxl) * 2); }
.portfolio--info .portfolio--details-description.twocolumn .about-line-description p { break-inside: avoid;	-webkit-column-break-inside: avoid;	margin-bottom: 1.5rem; }

.portfolio--info .tags--link--wrapper, .portfolio--info .website--external--link--list { display: flex; flex-flow: row wrap; align-items: center; gap: var(--space-xl); width: 100%; }
.portfolio--info .tags--link--wrapper .tags { flex: 1; display: flex; flex-flow: row wrap; align-items: center; list-style: none; gap: var(--space-xs) var(--space-sm); width: 100%; margin-bottom: 0; }
.portfolio--info .tags--link--wrapper .tags li a { color: rgba(var(--text), 0.62); font-size: var(--fs-xs); font-style: normal; line-height: 1.2; border: 1px solid rgba(var(--text), 0.2); border-radius: 50px; padding: 8px 14px; letter-spacing: 0.5px; margin-bottom: 0; transition: var(--all-medium); }
.dark-mode .portfolio--info .tags--link--wrapper .tags li a { color: rgba(var(--text), 0.8); }
@media screen and (hover: hover) and (pointer: fine) {
	.portfolio--info .tags--link--wrapper .tags li a:hover { color: rgba(var(--bg),  1); background: rgba(var(--text), 1); border-color: rgba(var(--text), 1); }

}

.portfolio--info .photo--grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: calc(var(--gap) * 3); margin-bottom: calc(var(--gap) * 3); }
.portfolio--info .photo--grid:has(+ .portfolio--details-description) { margin-bottom: 0; }
.portfolio--info .photo--grid > :first-child { grid-column: 1 / -1; }

.portfolio--info .photo--list { display: grid; grid-template-columns: repeat(1, 1fr);  gap: calc(var(--gap) * 3); }
.portfolio--info .photo--list:has(+ .photo--grid) { margin-bottom: calc(var(--gap) * 3); }

.portfolio--info .button--wrapper { display: flex; flex-flow: row wrap; align-items: center; justify-content: space-between; gap: var(--space-md); margin-top: var(--space-xxxl); }
.portfolio--info .portfolio--button { display: flex; flex-flow: row wrap; width: 100%; max-width: 400px; }
.portfolio--info .portfolio--button .portfolio--button--info { position: relative; width: 100%; display: flex; flex-flow: row wrap; align-items: center; gap: var(--space-md); border: 1px solid rgba(var(--text), 0.2); padding: var(--space-md); margin-bottom: var(--space-sm); z-index: 1; transition: var(--all-medium); overflow: hidden; }
.portfolio--info .portfolio--button .portfolio--button--info .portfolio--button--img--box { width: auto; max-width: 150px; height: 120px; }
.portfolio--info .portfolio--button .portfolio--button--info .portfolio--button--img--box img { object-fit: contain; width: 100%; margin: auto; }
.portfolio--info .portfolio--button .portfolio--button--info .info--box { flex: 1; }
.portfolio--info .portfolio--button .portfolio--button--info .info--box .info--box--title { font-size: var(--fs-lg); color: rgba(var(--text), 0.62); font-weight: 400; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0; }
.portfolio--info .portfolio--button .portfolio--button--info .info--box .info--box--category { font-size: var(--fs-md-2); font-weight: 400; font-family: "Instrument Serif"; margin-bottom: 0; }
.portfolio--info .portfolio--button .info--box--btn-text { width: 100%; }
.portfolio--info .portfolio--button.right .info--box--btn-text { width: 100%; text-align: right; }
.portfolio--info .portfolio--button.left .info--box--btn-text { width: 100%; text-align: left; }

.portfolio--info .portfolio--button .portfolio--button--info::before { content: ''; position: absolute; --border-gap: 5px; left: var(--border-gap); top: var(--border-gap); width: calc(100% - (var(--border-gap) * 2)); height: calc(100% - (var(--border-gap) * 2)); background: rgba(var(--bg),  1);  z-index: -1; transition: var(--all-medium); }
.portfolio--info .portfolio--button .portfolio--button--info::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(0deg); width: 150%; aspect-ratio: 1; background: url(../images/button-border.png) center center; background-size: cover; z-index: -2; opacity: 0; transition: var(--all-medium); }

.website--external--link { display: inline;  }
.website--external--link img { width: var(--fs-xl); object-fit: contain; margin-left: var(--space-xs); display: inline-block; }

.project--overview { width: 86%; display: grid; grid-template-columns: repeat(5, auto); gap: var(--space-md); border-top: 1px solid rgba(var(--text), 0.1); padding-top: var(--space-xxxl); }
.project--overview .title { font-size: 12px; text-transform: uppercase; color: rgba(var(--text), 0.62); letter-spacing: 2px; }
.project--overview .description { font-size: 14px; color: rgba(var(--text), 1); display: flex; flex-wrap: wrap; text-transform: capitalize; margin-bottom: 0; }
.project--overview .description span { font-size: 12px; color: rgba(var(--text), 0.62); background: rgba(var(--text), 0.1); border-radius: 4px; margin-right: 4px; margin-bottom: 4px; padding: 4px 8px; }

@media screen and (hover: hover) and (pointer: fine) {
	.portfolio--info .portfolio--button:hover .portfolio--button--info { border-color: transparent; }
	.portfolio--info .portfolio--button:hover .portfolio--button--info::after { opacity: 1; }
	.portfolio--info .portfolio--button .portfolio--button--info:hover::after { opacity: 1; animation: rotate-360 10s linear infinite forwards; }
}

/* PROJECT TESTIMONIAL */
.project--testimonial { width: 100%; padding: var(--section-spacing) 0;  }
.project--testimonial .testimonial--video { width: 100%; max-width: 520px; margin: auto; display: flex; }
.project--testimonial .testimonial--video .video { width: 100%; display: flex; object-fit: contain; }

.project--testimonial .textBox { width: 100%; min-height: -webkit-fill-available; align-content: end; border: 1px solid rgba(var(--text), 0.3); padding: calc(var(--space-xxxl) * 3) var(--space-xxxl) calc(var(--space-xxxl) * 1.5); position: relative; }
.project--testimonial .textBox .img-box { width: 150px; margin-bottom: var(--space-sm); }
.project--testimonial .textBox h3 { font-size: var(--fs-4xl-7); margin-bottom: var(--space-md); line-height: 1; font-weight: 200; }

.project--testimonial .tag { position: absolute; top: -1px; left: -1px; padding: 4px 8px 4px 2px; border-right: 1px solid rgba(var(--text), 0.3); border-bottom: 1px solid rgba(var(--text), 0.3); background: rgba(var(--bg),  1); opacity: 1 !important; text-transform: uppercase; font-size: var(--fs-xs); letter-spacing: 0.5px; color: rgba(var(--text), 1); }
.project--testimonial .groupOne { width: 100%; max-width: 900px; }

.project--testimonial .testiDescriptionHighlight { font-size: var(--fs-5xl-2); margin-bottom: var(--space-md); display: block; font-family: "Instrument Serif"; line-height: 1.2; }
.project--testimonial .testiDescriptiontext { font-size: var(--fs-lg-2); font-weight: 400; color: rgba(var(--text), 1); margin-bottom: var(--space-md); }

.project--testimonial .author { width: 100%; font-size: var(--fs-3xl); font-family: "ClashGrotesk-Regular"; color: rgba(var(--text), 1); margin-bottom: 0; }
.project--testimonial .designation { width: 100%; font-size: var(--fs-lg); font-family: "Instrument Serif"; color: rgba(var(--text), 0.62); margin-bottom: 0; }
.project--testimonial .roletesti { opacity: 0.5; }

/* BLOGS LIST */
.BlogsList { padding: calc(var(--header-height, 120px)  + var(--section-spacing)) 0 var(--section-spacing); min-height: 100vh; overflow: hidden; }
.BlogsList .headerWrapper { display: flex; flex-direction: column; flex-wrap: wrap; justify-content: flex-start; margin-bottom: calc(var(--space-lg) * 2); padding: 0 var(--space-sm); }
.BlogsList .headerWrapper .section--title { width: 100%; margin-bottom: var(--space-sm); }
.BlogsList .headerTitle { flex: 0 0 50%; }
.BlogsList .headerText { width: 50%; margin-left: auto; font-size: var(--fs-lg-2); }

.tab-list-wrapper { display: flex; white-space: nowrap; align-items: center; gap: var(--space-md); margin-bottom: var(--section-spacing); }
.tab-list-wrapper .tab-btn {color: rgba(var(--text), 0.7); font-size: var(--fs-md); text-transform: uppercase; transition: color 0.3s ease; }
.tab-list-wrapper .tab-btn.active { color: rgba(var(--text), 1); text-decoration: underline; text-underline-offset: 10px; }


.blogs--list { display: grid; grid-template-columns: repeat(2, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--space-xl) * 3) calc(var(--gap) * 3); }
.blogs--list .blog-item { list-style: none; display: flex; }
.blogs--list a { width: 100%; display: flex; flex-wrap: wrap; position: relative; }
.blogs--list a .info { width: 100%; max-width: 80%; margin-bottom: var(--space-md); }
.blogs--list a .h2 { font-size: var(--fs-4xl-4); color: rgba(var(--text), 0.8); line-height: 122%; font-family: "Instrument Serif";  margin-bottom: var(--space-sm); transition: var(--all-medium);  }
.blogs--list a .year { width: 100%; font-size: var(--fs-sm); font-weight: 400; color: rgba(var(--text), 0.4); margin-bottom: var(--space-xs); }
.blogs--list a .description { font-size: var(--fs-md-2); width: 100%; margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blogs--list a .img-box { border: 1px solid rgba(var(--text), 0.2); width: 100%; padding-bottom: 62.25%; position: relative; margin-bottom: var(--space-sm); }
.blogs--list a .img-box img { position: absolute; left: 0; top: 0; transition: var(--all-medium); width: 200px; height: 200px; object-fit: contain; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.blogs--list a .tags { border-bottom: 1px solid rgba(var(--text), 0.2); border-right: 1px solid rgba(var(--text), 0.2); position: absolute; top: 0; left: 0; z-index: 1; padding: 4px 8px 4px 0px; color: rgba(var(--text), 0.62); text-transform: uppercase; font-size: var(--fs-xs); background: rgba(var(--bg),  1); }

.BlogsList .button--wrapper { display: flex; flex-flow: row wrap; justify-content: center; margin-top: var(--space-xxxl); }

@media screen and (hover: hover) and (pointer: fine) {
	.blogs--list a:hover .h2 { color: rgba(var(--text), 1); }
	.blogs--list a:hover .img-box img { filter: saturate(1.5) brightness(1.2); }
}

/* BLOG DETAILS */
.blog--details--banner .hero-video:has(+ .container) { margin-bottom: var(--space-lg); }
.blog--details { padding: calc(var(--space-lg) * 2) 0; }
.blog--details .container > .row { --bs-gutter-x: var(--space-xxxl); }
.blog--details .hero--text { font-size: var(--fs-4xl-2); line-height: 122%; font-family: "Instrument Serif"; margin-bottom: calc(var(--space-lg) * 2); }
.blog--details .conclusion--title { font-size: var(--fs-4xl-2); line-height: 122%; font-family: "Instrument Serif"; margin-bottom: calc(var(--space-xs) / 2 * 4); }
.blog--details h4 { font-size: var(--fs-4xl); line-height: 122%; font-family: "Instrument Serif"; margin-bottom: var(--space-sm); }
.blog--details .blogs--info { padding-bottom: var(--space-xxxl); }
.blog--details .blogs--info > h2:first-of-type, .blog--details .blogs--info > h3:first-of-type { margin-top: 0; }
.blog--details .blogs--info .ready--to--fix { display: block; padding: var(--space-xl) 0; margin-bottom: var(--space-xxxl); position: relative; }
.blog--details .blogs--info .ready--to--fix .section--subtitle { line-height: 1.5; }
.blog--details .blogs--info .ready--to--fix .section--subtitle br { display: block; }
.blog--details .blogs--info .ready--to--fix p { margin-bottom: 0 !important; }
.blog--details .blogs--info .ready--to--fix p a { font-family: "Instrument Serif"; border-bottom: 1px solid rgba(var(--text), 0.7); text-decoration: none; }

.blog--details .post-byline { display: flex; flex-flow: row wrap; align-items: center; margin-bottom: var(--space-xl); }
.blog--details .post-byline .img--box { display: flex; width: clamp(60px, 5.20vw, 100px); height: clamp(60px, 5.20vw, 100px); overflow: hidden; margin-right: var(--space-md); }
.blog--details .post-byline .info { flex: 1; }
.blog--details .post-byline .info p { margin-bottom: 0; }

.blog--details .aboutAuthorInner { display: flex; flex-flow: row wrap; align-items: center; }
.blog--details .aboutAuthorInner .img--box { display: flex; width: clamp(80px, 6.25vw, 120px); height: clamp(80px, 6.25vw, 120px); overflow: hidden; margin-right: var(--space-xl); }
.blog--details .aboutAuthorInner .info { flex: 1; }
.blog--details .aboutAuthorInner .info p:not(.btn-text, .post-dates):first-child { margin-bottom: 0; }

.sticky--panel { position: relative; width: 100%; padding: var(--space-sm) 0; }
.custom-nested-toc > ul { margin-bottom: calc(var(--space-lg) * 2); max-height: 300px; overflow: auto; }
.custom-nested-toc > ul::-webkit-scrollbar { width: 6px; background: rgba(var(--text), 0.1); }
.custom-nested-toc > ul::-webkit-scrollbar-thumb { background: rgba(var(--text), 0.2); }
.sticky--panel .toc-title { font-size: var(--fs-4xl); font-family: "Instrument Serif"; margin-top: 0; margin-bottom: var(--space-sm); text-transform: capitalize; }
.sticky--panel ul:not(.social--share--list) { width: 100%; display: flex; flex-flow: row wrap; }
.sticky--panel ul:not(.social--share--list) li { width: 100%; display: flex; flex-flow: row wrap; }
.sticky--panel ul:not(.social--share--list) li:empty { display: none; }
.sticky--panel ul:not(.social--share--list, .download-bx) li a { display: inline-flex; flex-flow: row wrap; font-size: var(--fs-md); font-family: "OverusedGroteskLight"; margin: 0; padding: var(--space-xs) 0; text-transform: capitalize; color: rgba(var(--text), 0.7); letter-spacing: 0.5px; border-bottom: 1px solid rgba(var(--text), 0.2); transition: var(--all-medium); }
.dark-mode .sticky--panel ul:not(.social--share--list, .download-bx) li a { font-family: 'OverusedGroteskMedium'; }

@media screen and (hover: hover) and (pointer: fine) {
	.sticky--panel ul:not(.social--share--list) li a:hover { color: rgba(var(--text), 1); }
}

.sticky--panel .share--title { width: 100%; font-size: var(--fs-3xl); font-family: "Instrument Serif"; margin-top: 0; margin-bottom: var(--space-sm); text-transform: capitalize; }
.sticky--panel .social--share--list { width: 100%; display: flex; flex-flow: row wrap; gap: var(--space-md); margin-bottom: calc(var(--space-lg) * 2); }
.sticky--panel .social--share--list li a { display: flex; flex-flow: row wrap; height: var(--space-md); }
.sticky--panel .social--share--list li a img { width: auto; height: 100%; object-fit: contain; }
.dark-mode .sticky--panel .social--share--list li a img { filter: invert(1); }

.sticky--panel ul.download-bx li { display: flex; align-items: center; text-transform: capitalize; color: rgba(var(--text), 0.7); letter-spacing: 0.5px; text-decoration: underline; text-underline-offset: 3px; transition: var(--all-medium); }
.sticky--panel ul.download-bx li a { text-transform: capitalize; color: rgba(var(--text), 0.7); letter-spacing: 0.5px; text-decoration: underline; text-underline-offset: 3px; transition: var(--all-medium); }
.sticky--panel ul.download-bx li .section-pdf-link { height: auto; display: inline-flex; }
.sticky--panel ul.download-bx li .section-pdf-link img { width: 22px; height: auto; margin-right: 10px; object-fit: contain; }
.dark-mode .sticky--panel ul.download-bx li .section-pdf-link img { filter: invert(1); }

.save--for--later { margin-bottom: calc(var(--space-lg) * 2); }

.mobile--summary, .sticky--panel.mobile { display: none; }

.blog--details img { width: 100%; display: flex; }
.blog--details p:not(.btn-text, .post-dates):first-child { color: rgba(var(--text), 1); font-family: "Instrument Serif"; font-style: normal; font-weight: 300; line-height: 122%; margin-bottom: var(--space-lg); }
.blog--details p:not(.btn-text, .schema-faq-answer) { line-height: 1.5; margin-bottom: var(--space-lg); }
.blog--details p:not(.btn-text) strong { color: rgba(var(--text), 1); font-family: "ClashGrotesk-Medium"; }
.blog--details p:not(.btn-text) a { font-size: inherit; display: inline; text-decoration: underline; }
.blog--details h1 { font-size: var(--fs-4xl-4); font-family: "Instrument Serif"; margin-top: calc(var(--space-lg) * 2); margin-bottom: var(--space-md); }
.blog--details h2 { font-size: var(--fs-4xl-3); font-family: "Instrument Serif"; margin-top: calc(var(--space-lg) * 2); margin-bottom: var(--space-md); }
.blog--details h3 { font-size: var(--fs-4xl-2); font-family: "Instrument Serif"; margin-top: calc(var(--space-lg) * 2); margin-bottom: var(--space-md); }
.blog--details h4 { font-size: var(--fs-4xl); font-family: "Instrument Serif"; margin-top: calc(var(--space-lg) * 2); margin-bottom: var(--space-md); }
.blog--details h5 { font-size: var(--fs-3xl); font-family: "Instrument Serif"; margin-top: calc(var(--space-lg) * 2); margin-bottom: var(--space-md); }
.blog--details h6 { font-size: var(--fs-2xl); font-family: "Instrument Serif"; margin-top: calc(var(--space-lg) * 2); margin-bottom: var(--space-md); }
.blog--details .container > h2:first-child { margin-top: 0; }
ul.wp-block-list { list-style: disc; padding-left: var(--space-md); margin-bottom: var(--space-lg); }
ul.wp-block-list li { list-style: disc; margin-bottom: 0; letter-spacing: 0.5px; }
ul.wp-block-list li:has( + li) { margin-bottom: var(--space-sm); }
.dark-mode ul.wp-block-list li { color: rgba(var(--text), 0.8); }
ol.wp-block-list[start] { margin-top: var(--space-lg); margin-bottom: var(--space-xs); }
ol.wp-block-list li:has( strong) { font-family: "ClashGrotesk-Medium"; }
ol.wp-block-list li strong { font-family: "ClashGrotesk-Medium"; }
ol.wp-block-list { list-style: decimal; list-style-position: inside; margin-bottom: var(--space-xs); }
ol.wp-block-list li { color: rgba(var(--text), 1); list-style: decimal; list-style-position: inside; margin-bottom: 0; }
ol.wp-block-list li:has( + li) { margin-bottom: var(--space-xs); }
.wp-block-list li { font-size: var(--fs-lg-2); color: rgba(var(--text), 0.62); font-family: "ClashGrotesk-Regular"; font-weight: 400; line-height: 1.2; margin-bottom: var(--space-xs); }

.details--list { display: flex; flex-flow: row wrap; row-gap: calc(var(--space-xl) * 2); margin-bottom: calc(var(--space-lg) * 2); }
.details--list li { display: flex; flex-flow: row wrap; gap: calc(var(--space-xl) * 2.5); }
.details--list li:nth-child(even) { flex-direction: row-reverse; }
.details--list li .info { flex: 1; display: flex; flex-flow: row wrap; row-gap: var(--space-xl); }
.details--list li .info .details--box { width: 100%; }
.details--list li .info .details--box h3 { font-size: var(--fs-4xl-2); line-height: 122%; font-family: "Instrument Serif"; margin-bottom: var(--space-sm); }
.details--list li .info .details--box p { font-size: var(--fs-lg-2); line-height: 122%; margin-bottom: var(--space-sm); }
.details--list li .img-box { flex: 1; position: relative; width: 100%; height: 100%; }
.details--list li .img-box img { width: 100%; height: 100%; object-fit: cover; position: absolute; left: 0; top: 0; }

.prev--next--blogs { display: flex; flex-flow: row wrap; justify-content: space-between; margin-top: calc(var(--space-xl) * 2); }
.prev--next--blogs .info { width: 50%; max-width: 400px; }
.prev--next--blogs .info .btn--primary { margin-bottom: var(--space-sm); }
.prev--next--blogs .info + .info { text-align: right; }
.prev--next--blogs .title { font-size: var(--fs-3xl); line-height: 122%; font-family: "Instrument Serif"; margin-bottom: 0; margin-top: 0; }

/* BRAND ELEVATION */
.BrandElevation-section { padding: var(--section-spacing) 0; position: relative; overflow: hidden; }
.BrandElevation-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-xxxl); }
.BrandElevation-header .BrandElevation-header-title { width: 50%; }
.BrandElevation-section .BrandElevation-header-description { width: 100%; }
.text-grp {  width: auto; display: flex; align-items: flex-end; flex-direction: column; margin-top: 14px; }
.BrandElevation-section .about-left .section--title { flex: 1; }
.BrandElevation-section .about-left .text-grp { flex: 1; }
.BrandElevation-section .about-left { width: 100%; display: flex; flex-flow: row wrap; gap: calc(var(--space-xl) * 2); justify-content: space-between; align-items: flex-start; }
.BrandElevation-section .about-description { width: 100%; padding-left: 0; }

/* ELEVATION SERVICES */
.ElevationServices-section { padding: var(--section-spacing) 0; position: relative; perspective: 2000px; overflow: hidden; }
.ElevationServices-header { display: flex; justify-content: space-between; align-items: flex-start; }
.ElevationServices-header .ElevationServices-header-title { width: 60%; }
.ElevationServices-item-first { width: 40%; }
.ElevationServices-item-first .ElevationServices-header-description { width: 100%; }
.ElevationServices-container { display: flex; gap: calc(var(--space-xl) * 4); scroll-behavior: smooth; }

.ElevationServices-section .info { width: 100%; margin-top: var(--space-xxl); }
.ElevationServices-section .info .h3 { width: 100%; font-size: var(--fs-4xl-2); line-height: 1.2; font-family: "Instrument Serif"; color: rgba(var(--text), 1); margin-bottom: var(--space-xxxl); }
.ElevationServices-section .info .assets--list { width: 100%; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: 0 calc(var(--gap) * 3); transform-style: preserve-3d; margin-bottom: var(--space-md); }
.ElevationServices-section .info .assets--list li { display: flex; flex-flow: row wrap; padding-bottom: var(--space-md); margin-bottom: var(--space-md); border-bottom: 1px solid rgba(var(--text), 0.3); width: 100%; }
.ElevationServices-section .info .assets--list .h4 { color: rgba(var(--text), 1); font-size: var(--fs-4xl); font-weight: 400; line-height: 100%; margin-bottom: var(--space-sm); }
.ElevationServices-section .info .assets--list p { font-size: var(--fs-md); margin-bottom: 0; }


.assets--list li .asset--icon { width: auto; height: 200px; margin-bottom: var(--space-xl); }
.assets--list li .asset--icon img { width: auto; height: 100%; }

/* WHY BRAND ELEVATION */
.WhyBrandElevation-section { padding: var(--section-spacing) 0; position: relative; perspective: 2000px; transform-style: preserve-3d; overflow: hidden; }
.WhyBrandElevation-header { display: flex; justify-content: space-between; align-items: flex-start; }
.WhyBrandElevation-header .WhyBrandElevation-header-title { width: 100%; }
.WhyBrandElevation-section .WhyBrandElevation-item-first { width: 100%; }
.WhyBrandElevation-header-description { width: 100%; }
.WhyBrandElevation-container { display: flex; gap: calc(var(--space-xl) * 4); scroll-behavior: smooth; }

.WhyBrandElevation-section .info { width: 100%; margin-left: auto; margin-top: var(--space-xxl); }
.WhyBrandElevation-section .info .h3 { width: 50%; font-size: var(--fs-4xl-2); line-height: 1.2; font-family: "Instrument Serif"; color: rgba(var(--text), 1); margin-bottom: var(--space-xxxl); }
.WhyBrandElevation-section .info .assets--list { display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); list-style: none; padding: 0; margin-bottom: var(--space-xl); transform-style: preserve-3d; }
.WhyBrandElevation-section .info .assets--list li .border--box { width: 100%; height: 100%; display: flex; flex-flow: column wrap; padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5) ; border: 1px solid rgba(var(--text), 0.2); color: rgba(var(--text), 1); z-index: 2; will-change: transform; transition: var(--all-medium); }
.WhyBrandElevation-section .info .assets--list .h4 { color: rgba(var(--text), 1); font-size: var(--fs-4xl); font-weight: 400; line-height: 100%; margin-bottom: var(--space-sm); }
.WhyBrandElevation-section .info .assets--list p { font-size: var(--fs-md); }

/* SEO CEO */
.ceo-sherpa-section { padding: var(--section-spacing) 0; position: relative; perspective: 2000px; transform-style: preserve-3d; }
.ceo-sherpa-section .ceo-header { width: 48%; margin-bottom: calc(var(--space-lg) * 2); }
.ceo-sherpa-section .ceo-header .section--title { width: 100%; margin-bottom: var(--space-xs); }
.ceo-sherpa-section .ceo-header .section--title + .section--title { font-family: "Instrument Serif"; }

.ceo-sherpa-section .ceo--info--band { display: flex; flex-flow: row wrap; align-items: flex-end; gap: var(--space-xl) calc(var(--space-xl) * 2); margin-bottom: var(--space-xl); }
.ceo-sherpa-section .ceo--info--band .left { flex: 1; transform-origin: center bottom; will-change: transform; }
.ceo-sherpa-section .ceo--info--band .left .section--subtitle { margin-bottom: 0; }
.ceo-sherpa-section .ceo--info--band .left img { width: 100%; display: flex; }
.ceo-sherpa-section .ceo--info--band .right { flex: 1; display: flex; }
.ceo-sherpa-section .ceo--info--band .right img { height: 50px; }

.ceo-sherpa-section .ceo--info { display: flex; flex-flow: row wrap; gap: calc(var(--space-xl) * 2); }
.ceo-sherpa-section .ceo--info .left { flex: 1; transform-origin: center bottom; will-change: transform; }
.ceo-sherpa-section .ceo--info .left img { width: 100%; display: flex; }
.ceo-sherpa-section .ceo--info .right { flex: 1; display: flex; flex-flow: row wrap; align-items: flex-end; align-content: flex-end; }

.ceo-sherpa-section .ceo--info .section--subtitle { width: 100%; max-width: 600px; margin-bottom: var(--space-xl); }
.ceo-sherpa-section .ceo--info .text--box { width: 100%; max-width: 600px; }
.ceo-sherpa-section .ceo--info p { font-size: var(--fs-lg-2); font-weight: 300; line-height: 1.1; margin-bottom: 0; }

.ceo-sherpa-section .ceo--info .name--wrapper { width: 100%; margin-top: calc(var(--space-md) * 2); }
.ceo-sherpa-section .ceo--info .name--wrapper .name { font-size: var(--fs-2xl); font-family: "ClashGrotesk-Regular"; font-weight: 400; margin-bottom: 0; }
.ceo-sherpa-section .ceo--info .name--wrapper .title { font-size: var(--fs-lg-2); font-weight: 400; color: #808080; margin-bottom: var(--space-sm); }
.ceo-sherpa-section .ceo--info .name--wrapper img { height: 30px; }


/* HOW WE WORK */
.how--we--work { padding: var(--section-spacing) 0; position: relative; overflow: hidden; perspective: 2000px; }
.how--we--work-header { display: flex; display: flex; flex-flow: column wrap; justify-content: space-between; align-items: flex-start; }
.how--we--work-header .section--subtitle { width: 100%; margin-bottom: var(--space-xl); }

.how--we--work--list { width: 100%; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); transform-style: preserve-3d; margin-bottom: var(--space-xxl); margin-top: var(--space-xl); }
.how--we--work--list .info--box { width: 100%; height: 100%; display: flex; flex-flow: column wrap; padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5) ; border: 1px solid rgba(var(--text), 0.2); color: rgba(var(--text), 1); z-index: 2; will-change: transform; transition: var(--all-medium); }
.how--we--work--list .info--box .h4 { color: rgba(var(--text), 1); font-size: var(--fs-4xl); font-weight: 400; font-family: "OverusedGroteskRoman"; line-height: 100%; margin-bottom: 0; }
.how--we--work--list .info--box .h4::first-letter { text-transform: uppercase; }
.how--we--work--list .info--box .description { font-size: var(--fs-lg-2); color: rgba(var(--text), 0.8); font-weight: 400; margin-bottom: 0; }

.box--list--wrapper { display: flex; flex-flow: row wrap; width: 100%; margin-bottom: var(--space-xxl); }
.box--list--wrapper:has( .box--list--wrapper) { margin-bottom: 0; }
.box--list--wrapper .section--title { width: 100%; max-width: 70%; }
.box--list--wrapper .section--subtitle { width: 100%; max-width: 500px; }
.box--list--wrapper .box--list { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); margin:var(--space-xl) 0px  calc(var(--space-xxl) * 2) 0px; }
.box--list--wrapper2 .box--list { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); margin-bottom: calc(var(--space-xxl) * 3); }
.box--list--wrapper .box--list li .border--box { width: 100%; height: 100%; display: flex; flex-flow: column wrap; padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5) ; border: 1px solid rgba(var(--text), 0.2); color: rgba(var(--text), 1); z-index: 2; will-change: transform; transition: var(--all-medium); }
.box--list--wrapper .box--list li .title { font-size: var(--fs-3xl); font-family: "ClashGrotesk-Regular"; margin-bottom: 0; }
.box--list--wrapper .button--wrapper { display: flex; flex-flow: row wrap; width: 100%; margin-top: var(--space-xl); }

.our--roles { padding: var(--section-spacing) 0; position: relative; overflow: hidden; }
.our--roles .row { --bs-gutter-x: calc(var(--space-xl) * 2); }
.our--roles .role--box { width: 100%; display: flex; flex-flow: row wrap; }
.our--roles .role--box .logo { display: flex; width: auto; height: 40px; margin-bottom: var(--space-xl); }
.our--roles .role--box .logo img { object-fit: contain; object-position: left; }
.our--roles .role--box .section--subtitle { width: 100%; margin-bottom: var(--space-md); }
.our--roles .role--box .role--list { display: flex; flex-flow: row wrap; margin-bottom: var(--space-xxxl); }
.our--roles .role--box .role--list li { width: 100%; display: flex; padding: calc(var(--space-xs) * 1.8) 0; border-bottom: 1px solid rgba(var(--text), 0.2); font-size: var(--fs-3xl); font-family: "ClashGrotesk-Regular"; }


/* REAL POWER */
.real--power { padding: var(--section-spacing) 0; position: relative; overflow: hidden; perspective: 2000px; }
.real--power .section--subtitle { margin-bottom: var(--space-xxl); }
.real--power .left--box { width: 100%; }
.real--power .right--box { width: 100%; }

.real--power .right--box .role--list { width: 100%; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); transform-style: preserve-3d; margin-bottom: var(--space-xxl); margin-top: var(--space-xl); }
.real--power .right--box .role--list li .info--box { width: 100%; height: 100%; display: flex; flex-flow: column wrap; padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5) ; border: 1px solid rgba(var(--text), 0.2); color: rgba(var(--text), 1); z-index: 2; will-change: transform; transition: var(--all-medium); }
.real--power .right--box .role--list li .info--box .h4 { color: rgba(var(--text), 1); font-size: var(--fs-4xl); font-weight: 400; font-family: "OverusedGroteskRoman"; line-height: 100%; margin-bottom: 0; }
.real--power .right--box .role--list li .info--box .h4:has( + p) { margin-bottom: var(--space-sm); }
.real--power .right--box .role--list li .info--box p { font-size: var(--fs-md); margin-bottom: 0; }
.real--power .right--box .role--list li .info--box .h4::first-letter { text-transform: uppercase; }
.real--power .right--box .role--list li .info--box .description { font-size: var(--fs-lg-2); color: rgba(var(--text), 0.8); font-weight: 400; margin-bottom: 0; }

/* SEAMLESS EXPERIENCE */
.seamless--experience { padding: var(--section-spacing) 0; position: relative; overflow: hidden; }

/* CORE VALUES */
.who--this--for { padding: var(--section-spacing) 0; position: relative; overflow: hidden; perspective: 2000px; }

.who--this--for .box--list { display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3) calc(var(--gap) * 3); }
.who--this--for .box--list li { width: 100%; }
.who--this--for .box--list li .border--box { width: 100%; height: 100%; border: 1px solid rgba(var(--text), 0.2); display: flex; flex-flow: column wrap; padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5); }
.who--this--for .box--list li .title { font-size: var(--fs-4xl); font-family: "OverusedGroteskRoman"; margin-bottom: 0; }
.who--this--for .box--list li .title:has( + p) { margin-bottom: var(--space-sm); }
.who--this--for .box--list li p { font-size: var(--fs-md); margin-bottom: 0; }
.who--this--for .text-center { margin-top: var(--space-xxxl); }


/* REAL POWER */
.serious--results { padding: var(--section-spacing) 0; position: relative; overflow: hidden; perspective: 2000px; }
.serious--results .section--subtitle { margin-bottom: var(--space-xxl); }
.serious--results .serious--results--wrapper { width: 100%; display: flex; flex-flow: row wrap; gap: var(--space-sm) calc(var(--space-xl) * 2); justify-content: space-between; }
.serious--results .left--box { flex: 1; }
.serious--results .right--box { flex: 1; }
.serious--results .right--box .section--subtitle { font-size: var(--fs-4xl-7); margin-bottom: var(--space-xl); }
.serious--results .right--box .description { width: 100%; max-width: 530px; margin-bottom: var(--space-xl); }


/* OTHER OFFERINGS */
.other--offerings { padding: var(--section-spacing) 0; position: relative; overflow: hidden; }
.other--offerings .WhyUs-header { width: 100%; margin-bottom: calc(var(--space-lg) * 2); }
.other--offerings .WhyUs-header .section--subtitle { width: 100%; margin-bottom: 0; }
.other--offerings .offering--list { display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 2); }
.other--offerings .offering--list .offering--box { padding: var(--space-xl); border: 1px solid rgba(var(--text), 0.5); position: relative; overflow: hidden; z-index: 1; transition: var(--all-medium); }
.other--offerings .offering--list .offering--box::before { content: ''; position: absolute; --border-gap: 5px; left: var(--border-gap); top: var(--border-gap); width: calc(100% - (var(--border-gap) * 2)); height: calc(100% - (var(--border-gap) * 2)); background: rgba(var(--bg),  1);  z-index: -1; }
.other--offerings .offering--list .offering--box::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(0deg); width: 150%; aspect-ratio: 1; background: url(../images/button-border.png) center center; background-size: cover; z-index: -2; opacity: 0; transition: var(--all-medium); }
.other--offerings .offering--list .title { font-size: var(--fs-4xl-9); font-family: "OverusedGroteskRoman"; line-height: 1; min-height: 120px; margin-bottom: var(--space-md); }
.other--offerings .offering--list .offering--services--list { display: flex; flex-flow: row wrap; gap: var(--space-sm); }

@media screen and (hover: hover) and (pointer: fine) {
	.other--offerings .offering--list:hover .offering--box { opacity: 0.2; }
	.other--offerings .offering--list .offering--box:hover { border-color: rgba(var(--text), 0); }
	.other--offerings .offering--list:hover .offering--box:hover { opacity: 1; }
	.other--offerings .offering--list .offering--box:hover::after { opacity: 1; animation: rotate-360 10s ease infinite forwards; }
}

@keyframes rotate-360 {
	0% { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}


.lost--page { padding: var(--header-height, 120px) 0 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.lost--page .text--404--wrapper { text-align: center; width: 100%; position: relative; margin-top: calc(-1 * var(--space-xxl)); }
.lost--page .text--404--wrapper .lost--text--wrapper { white-space: nowrap; position: absolute; top: 50%; transform: translateY(-50%); display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); background: #FEE100; width: 100%; padding-top: var(--space-md); overflow: hidden; }
.lost--page .text--404--wrapper .lost--text--wrapper span { font-size: var(--fs-4xl-2); color: #000; font-family: "OverusedGroteskSemiBold"; margin-bottom: -12px; }
.lost--page .text--404 { font-size: clamp(240px, 25vw, 634px); line-height: 1; font-family: "Instrument Serif"; margin-bottom: 0; }
.lost--page .section--subtitle { max-width: 430px; }

/* BRAND IDOLOGY */
.JoinTheWorkspace-section { padding: var(--section-spacing) 0; position: relative; overflow: hidden; perspective: 2000px; }
.JoinTheWorkspace-header { display: flex; flex-flow: column wrap; justify-content: space-between; align-items: flex-start; margin-bottom: calc(var(--space-lg) * 2); }
.JoinTheWorkspace-header .JoinTheWorkspace-header-title { width: 100%; }
.JoinTheWorkspace-header .section--subtitle { width: 1000%; }
.JoinTheWorkspace-container { display: flex; gap: calc(var(--space-xl) * 4); scroll-behavior: smooth; }

.workforce--boxes { display: grid; grid-template-columns: repeat(4, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); transform-style: preserve-3d; }
.workforce--boxes > *:first-child { grid-column: 3 / 4; }
.workforce--boxes .ideology--box { position: relative; overflow: hidden; width: 100%; padding-bottom: 125%; }
.workforce--boxes .ideology--box .bg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; transition: transform 0.5s ease; }
.workforce--boxes .ideology--box .bg .bgVideo { width: 100%; height: 100%; object-fit: cover; }
.workforce--boxes .ideology--box .top--text { position: absolute; top: -1px; left: -1px; font-size: var(--fs-sm); color: rgba(var(--text), 0.62); text-transform: uppercase; font-size: var(--fs-xs); background: rgba(var(--bg),  1); z-index: 3; padding: 4px 12px 4px 0; border-bottom: 1px solid rgba(var(--text), 0.3); border-right: 1px solid rgba(var(--text), 0.3); }
.dark-mode .workforce--boxes .ideology--box .top--text { font-family: 'ClashGrotesk-Medium'; }
.workforce--boxes .ideology--box .info--box { width: 100%; height: 100%; border: 1px solid rgba(var(--text), 0.3); display: flex; flex-flow: column wrap; justify-content: flex-end; position: absolute; bottom: 0; left: 0; color: rgba(var(--text), 1); z-index: 2; padding: var(--space-xl); }
.workforce--boxes .ideology--box .info--box .title { font-size: var(--fs-4xl-9); font-family: "Instrument Serif"; color: rgba(var(--text), 1); text-transform: capitalize; margin-bottom: var(--space-md); }
.workforce--boxes .ideology--box .info--box .description { font-size: var(--fs-2xl); line-height: 1.3; letter-spacing: 0.2px; font-family: "ClashGrotesk-Regular"; color: rgba(var(--text), 1); margin-bottom: 0; }


.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output, .wpcf7 form.sent .wpcf7-response-output { background: transparent!important; padding: 0px!important; border: 0px!important; text-align: center; }
.wpcf7 form.invalid .wpcf7-response-output { color: #cb4c4c; }
.wpcf7 form.sent .wpcf7-response-output { color: #46b450; text-align: center; }


#vapi-support-btn { width: 100px; height: 100px; position: fixed; right: var(--space-xl); bottom: 4vh; z-index: 1; min-width: 40px; background: transparent !important; box-shadow: 0px 0px 15px 0 rgb(255 255 255) !important; }
#vapi-support-btn::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; aspect-ratio: 1; background: url(../images/text-ai-lime.webp) center center; background-size: 100%; z-index: 1; transition: var(--all-medium); }
#vapi-icon-container { width: 100%; height: 100%; margin: 0 !important; padding: 24px !important; display: flex !important; align-items: center !important; justify-content: center !important; align-content: center !important; }
#vapi-icon-container img { filter: invert(1); }
#vapi-icon-container img:has(+ canvas) { display: none !important; }
#vapi-icon-container canvas { width: 100% !important; height: 100% !important; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(0, 153, 255, 0.9) 0%, rgba(255, 255, 255, 0.0) 26%), conic-gradient(from 130deg, #00ffcc, rgb(0, 153, 255), #ff4081, #00ffcc); }
.vapi-btn-is-idle { box-shadow: 1px 1px 10px #0099ff; }
.vapi-btn:hover { transform: translateY(0px) !important; }


/* TALK TO LIME */
.talk--to--lime { padding: var(--section-spacing) 0 0; position: relative; }
.talk--to--lime .border--box { width: 100%; display: flex; flex-flow: row wrap; align-items: center; justify-content: center; border: 1px solid rgba(var(--text), 0.5); gap: var(--space-lg); border-radius: 300px; padding: var(--space-lg) var(--space-xxxl); cursor: pointer; overflow: hidden; position: relative; }
.talk--to--lime .border--box.limeactive { border-color: transparent; }
.talk--to--lime .border--box::before { content: ''; position: absolute; --border-gap: 2px; left: var(--border-gap); top: var(--border-gap); width: calc(100% - (var(--border-gap) * 2)); height: calc(100% - (var(--border-gap) * 2)); background: rgba(var(--bg),  1); z-index: -1; border-radius: 300px; }
.talk--to--lime .border--box::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(0deg); width: 120%; aspect-ratio: 1; background: url(../images/button-border.png) center center; background-size: cover; z-index: -2; opacity: 0; animation: rotate-360 10s linear infinite forwards; transition: var(--all-medium); }
.talk--to--lime .border--box.limeactive::after { opacity: 1; }
.talk--to--lime .border--box .section--subtitle { font-size: var(--fs-4xl-2); display: inline-flex; width: auto; margin-bottom: 0; }
.talk--to--lime .border--box .talk--lime { display: inline-flex; align-items: center; position: relative; overflow: hidden; border-radius: 50px; padding: var(--space-md) var(--space-xxxl); gap: var(--space-xs); z-index: 1; --border-gap: 4px; }
.talk--to--lime .border--box .talk--lime .lime--video { position: absolute; width: calc(100% - (var(--border-gap) * 2)); height: calc(100% - (var(--border-gap) * 2)); left: var(--border-gap); top: var(--border-gap); object-fit: cover; z-index: -1; border-radius: 50px; opacity: 0; transition: var(--all-medium); }
.talk--to--lime .border--box.limeactive .talk--lime .lime--video { opacity: 1; }
.talk--to--lime .border--box .talk--lime .bgVideo { position: absolute; width: calc(100% - (var(--border-gap) * 2)); height: calc(100% - (var(--border-gap) * 2)); left: var(--border-gap); top: var(--border-gap); object-fit: cover; z-index: -1; border-radius: 50px; transition: var(--all-medium); }
.talk--to--lime .border--box.limeactive .talk--lime .bgVideo { opacity: 0; }
.talk--to--lime .border--box .talk--lime span { display: flex; align-items: center; font-size: var(--fs-lg); color: rgba(var(--text), 1); font-family: "OverusedGroteskMedium"; font-weight: 500; text-transform: initial; line-height: 1.1; letter-spacing: 1px; transition: var(--all-medium); }
.talk--to--lime .border--box .talk--lime svg { width: 45px; height: 45px; }
.talk--to--lime .border--box .talk--lime svg path { fill: #fff; }
.talk--to--lime .border--box .talk--lime::before { content: ''; position: absolute; left: var(--border-gap); top: var(--border-gap); width: calc(100% - (var(--border-gap) * 2)); height: calc(100% - (var(--border-gap) * 2)); background: rgba(var(--bg),  1); z-index: -1; border-radius: 50px; }
.talk--to--lime .border--box .talk--lime::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(0deg); width: 120%; aspect-ratio: 1; background: url(../images/button-border.png) center center; background-size: cover; z-index: -2; opacity: 1; animation: rotate-360 10s linear infinite forwards; transition: var(--all-medium); }


/* BRANDING PACKAGES SECTION */

.BrandingPackages-section { padding: var(--section-spacing) 0; position: relative; }

.packages--grid { display: grid; grid-template-columns: repeat(3, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); margin-bottom: calc(var(--gap) * 3); transform-style: preserve-3d; align-items: stretch; }

.package--card { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: calc(var(--space-lg) * 2) calc(var(--space-lg) * 1.5); border: 1px solid rgba(var(--text), 0.2); transition: var(--all-medium); overflow: hidden; }

.package--card.featured { border: 2px solid transparent; background: rgba(var(--text), 0.025); }
.package--card.featured::before { content: ''; position: absolute; --border-gap: 2px; left: var(--border-gap); top: var(--border-gap); width: calc(100% - (var(--border-gap) * 2)); height: calc(100% - (var(--border-gap) * 2)); background: rgba(var(--bg),  1);  z-index: -1; }
.package--card.featured::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(0deg); width: 240%; aspect-ratio: 1; background: url(../images/button-border.png) center center; background-size: cover; z-index: -2; animation: rotate-360 10s linear infinite forwards; transition: var(--all-medium); }

.package--badge { display: inline-block; font-size: var(--fs-sm); font-family: "ClashGrotesk-Regular"; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(var(--text), 0.38); margin-bottom: var(--space-lg); }
.package--badge { display: inline-flex; align-items: center; justify-content: center; background: url(../images/button-border.png) center center; background-size: cover; color: rgba(var(--text), 1); font-size: var(--fs-sm); font-family: "ClashGrotesk-Regular"; letter-spacing: 0.3px; padding: 7px 20px; border-radius: 50px; margin-bottom: var(--space-lg); }


.package--card .package--name, .package--card--custom .package--name { font-size: var(--fs-4xl-9); font-family: "OverusedGroteskRoman"; font-weight: 400; color: rgba(var(--text), 1); line-height: 1.05; margin-bottom: var(--space-sm); }

.package--tag { font-size: var(--fs-md); color: rgba(var(--text), 0.45); line-height: 1.4; margin-bottom: var(--space-xl); }

.package--deliverables { list-style: none; padding: var(--space-lg) 0 0; margin: 0 0 var(--space-xl); width: 100%; border-top: 1px solid rgba(var(--text), 0.1); }
.package--deliverables li { display: flex; align-items: self-end; gap: var(--space-sm); padding: calc(var(--space-xs) / 2 * 3) 0; }

.package--deliverables li::before { content: "✓"; flex-shrink: 0; color: rgba(var(--text), 1); font-size: var(--fs-md); line-height: 1.35; font-weight: 500; }

.deliverable--title { font-size: var(--fs-lg-2); color: rgba(var(--text), 0.88); font-family: "ClashGrotesk-Regular"; line-height: 1.35; }
.deliverable--detail { display: none; }

.package--card--custom { display: grid; grid-template-columns: repeat(1, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: calc(var(--gap) * 3); padding: calc(var(--space-lg) * 2.5) calc(var(--space-lg) * 2); border: 1px solid rgba(var(--text), 0.2); transition: var(--all-medium); }
.package--card--custom .package--tag { margin-bottom: 0; }
.package--card--custom .button--wrapper { justify-content: flex-start; }

.custom--services--pills { grid-column: 2; grid-row: 1 / -1; align-self: center; display: flex; flex-flow: row wrap; gap: var(--space-xs); align-content: start; }


/* ADD-ONS SECTION */
.AddOns-section { padding: var(--section-spacing) 0; }
.AddOns-section .why--us--list li .number { display: flex; width: auto; font-size: var(--fs-3xl); color: rgba(var(--text), 0.25); font-family: "OverusedGroteskLight"; margin-bottom: var(--space-md); }
.AddOns-section .why--us--list li .info .title { font-size: var(--fs-4xl); }


/* INDUSTRY WE WORK */
.industry--we--work { padding: var(--section-spacing) 0; position: relative; overflow: hidden; }
.industry--list { display: grid; grid-template-columns: repeat(2, 1fr); --gap: calc(var(--space-xs) / 2 * 4); gap: 0 calc(var(--gap) * 3); }
.industry--list:has( + *) { margin-bottom: var(--space-xxl); }
.industry--list li { border-bottom: 1px solid rgba(var(--text), 0.2); padding: var(--space-md) 0; font-size: var(--fs-3xl); font-family: "ClashGrotesk-Regular"; }
.industry--list li p { margin-bottom: 0; }


.before--after--slider { width: 100%; }
.before--after--slider .wrap { width: 100%; height: 100%; }
.before--after--slider .compare { position: relative; width: 100%; height: 100%; overflow: hidden; border: 1px solid rgba(var(--text), 0.8); user-select: none; }
.before--after--slider .panel { position: absolute; inset: 0; }
.before--after--slider .after img { width: 100%; height: 100%; object-fit: cover; }
.before--after--slider .before img { width: 100%; height: 100%; object-fit: cover; }
.before--after--slider .before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.before--after--slider .divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: #fff; pointer-events: none; }
.before--after--slider .divider::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: clamp(30px, 4.16vw, 80px); height: clamp(30px, 4.16vw, 80px); border-radius: 50%; background: rgba(var(--text), 1); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); }
.before--after--slider .divider::after { content: "↔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: clamp(18px, 1.56vw, 30px); z-index: 2; color: rgba(var(--bg), 1) }
.before--after--slider .slider { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 3; }
.before--after--slider .label { position: absolute; top: 12px; padding: 4px 10px; background: rgba(0, 0, 0, 0.55); color: #fff; font-size: clamp(10px, 0.62vw, 12px); text-transform: uppercase; }
.before--after--slider .label-before { left: 12px; }
.before--after--slider .label-after { right: 12px; }

.dark--theme--awwwards, .light--theme--awwwards { width: clamp(30px, 2.81vw, 54px); position: fixed; z-index: 4; transform: translateY(-50%); top: 50%;  left: 0; }
.dark--theme--awwwards a, .light--theme--awwwards a { display: flex; }
.dark--theme--awwwards svg, .light--theme--awwwards svg { width: 100%; }
.dark--theme--awwwards { display: none; }
.dark-mode .light--theme--awwwards { display: none; }
.dark-mode .dark--theme--awwwards { display: flex; }