/**
 * BBP Site Core V2
 * Component-scoped, dependency-free responsive styles.
 */

:root {
	--bbp-v2-brand: #083c78;
	--bbp-v2-brand-dark: #061f3a;
	--bbp-v2-accent: #f4a132;
	--bbp-v2-cyan: #12afc3;
	--bbp-v2-ink: #151719;
	--bbp-v2-raised: #202326;
	--bbp-v2-soft: #f2f4f7;
	--bbp-v2-line: rgba(21, 23, 25, .16);
	--bbp-v2-white: #fff;
	--bbp-v2-content: 1600px;
	--bbp-v2-gutter: clamp(20px, 4vw, 72px);
	--bbp-v2-ease: cubic-bezier(.77, 0, .175, 1);
	--bbp-v2-header-height: 84px;
}

.bbp-v2-active,
.bbp-v2-active button,
.bbp-v2-active input,
.bbp-v2-active textarea,
.bbp-v2-active select {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.bbp-v2-active {
	color: var(--bbp-v2-ink);
	overflow-x: clip;
}

.bbp-v2-active.bbp-v2-scroll-locked {
	overflow: hidden;
}

.bbp-v2-active [hidden] {
	display: none !important;
}

.bbp-v2-active :where(a, button, input, textarea, select):focus-visible {
	outline: 3px solid var(--bbp-v2-accent);
	outline-offset: 3px;
}

.bbp-v2-kicker {
	margin: 0 0 12px;
	color: var(--bbp-v2-cyan);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.bbp-v2-button,
.bbp-v2-text-link {
	align-items: center;
	display: inline-flex;
	font-weight: 700;
	text-decoration: none;
}

.bbp-v2-button {
	background: var(--bbp-v2-brand);
	border: 1px solid var(--bbp-v2-brand);
	color: var(--bbp-v2-white);
	font-size: 14px;
	justify-content: center;
	min-height: 50px;
	padding: 13px 28px;
	text-transform: uppercase;
	transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.bbp-v2-button:hover {
	background: var(--bbp-v2-accent);
	border-color: var(--bbp-v2-accent);
	color: var(--bbp-v2-ink);
}

.bbp-v2-button--light {
	background: var(--bbp-v2-white);
	border-color: var(--bbp-v2-white);
	color: var(--bbp-v2-ink);
}

.bbp-v2-text-link {
	color: currentColor;
	gap: 10px;
	min-height: 44px;
	padding-block: 8px;
}

.bbp-v2-text-link::after {
	content: "\2192";
	transition: transform .25s ease;
}

.bbp-v2-text-link:hover::after {
	transform: translateX(6px);
}

.bbp-v2-editor-notice {
	background: #fff8e8;
	border-left: 4px solid var(--bbp-v2-accent);
	color: var(--bbp-v2-ink);
	margin: 12px;
	padding: 16px;
}

/* Header and navigation */
.bbp-v2-header {
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, .18);
	inset: var(--wp-admin--admin-bar--height, 0) 0 auto;
	position: fixed;
	transition: background .35s ease, border-color .35s ease, transform .55s var(--bbp-v2-ease);
	z-index: 9000;
}

.bbp-v2-header.is-scrolled {
	background: rgba(6, 31, 58, .98);
	border-bottom-color: rgba(255, 255, 255, .12);
}

.bbp-v2-header.is-drawer-open {
	background: var(--bbp-v2-white);
	border-bottom-color: var(--bbp-v2-line);
}

.bbp-v2-header.is-drawer-open .bbp-v2-header__brand img {
	filter: none;
}

.bbp-v2-header.is-hidden {
	transform: translateY(calc(-100% - var(--wp-admin--admin-bar--height, 0px)));
}

.bbp-v2-header__bar {
	align-items: stretch;
	display: flex;
	height: var(--bbp-v2-header-height);
	margin: 0 auto;
	max-width: 1760px;
	padding: 0 var(--bbp-v2-gutter);
}

.bbp-v2-header__brand {
	align-items: center;
	color: var(--bbp-v2-white);
	display: flex;
	flex: 0 0 auto;
	font-size: 28px;
	font-weight: 800;
	margin-right: clamp(36px, 5vw, 100px);
	text-decoration: none;
}

.bbp-v2-header .bbp-v2-header__brand img {
	display: block;
	height: 48px;
	max-width: 180px;
	object-fit: contain;
	width: auto;
	filter: brightness(0) invert(1);
}

.bbp-v2-nav {
	display: flex;
	flex: 1;
}

.bbp-v2-nav > ul {
	align-items: stretch;
	display: flex;
	gap: clamp(20px, 2.4vw, 48px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.bbp-v2-nav__item {
	align-items: stretch;
	display: flex;
}

.bbp-v2-nav__link {
	align-items: center;
	background: none;
	border: 0;
	color: var(--bbp-v2-white);
	cursor: pointer;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	padding: 0;
	text-decoration: none;
}

.bbp-v2-nav__link::after {
	background: var(--bbp-v2-cyan);
	bottom: 0;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s var(--bbp-v2-ease);
	width: 100%;
}

.bbp-v2-nav__item {
	position: relative;
}

.bbp-v2-nav__item:hover > .bbp-v2-nav__link::after,
.bbp-v2-nav__item:focus-within > .bbp-v2-nav__link::after {
	transform: scaleX(1);
	transform-origin: left;
}

.bbp-v2-nav__link > span {
	color: var(--bbp-v2-cyan);
	font-size: 18px;
	font-weight: 400;
	transition: transform .3s ease;
}

.bbp-v2-nav__link[aria-expanded="true"] > span {
	transform: rotate(45deg);
}

.bbp-v2-nav-panel {
	background: rgba(255, 255, 255, .99);
	box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
	color: var(--bbp-v2-brand-dark);
	left: 0;
	min-height: 400px;
	position: fixed;
	right: 0;
	top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--bbp-v2-header-height));
}

.bbp-v2-nav-panel__inner {
	display: grid;
	grid-template-columns: minmax(260px, .85fr) minmax(320px, 1.15fr);
	margin: 0 auto;
	max-width: 1760px;
	min-height: 400px;
	padding: 0 var(--bbp-v2-gutter);
}

.bbp-v2-nav-panel__links {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 42px;
}

.bbp-v2-nav-panel__links a {
	color: #5b626b;
	font-size: 15px;
	padding: 9px 0;
	text-decoration: none;
	transition: color .2s ease, transform .2s ease;
}

.bbp-v2-nav-panel__links a:hover,
.bbp-v2-nav-panel__links a:focus-visible {
	color: var(--bbp-v2-brand);
	transform: translateX(5px);
}

.bbp-v2-nav-panel__links .bbp-v2-nav-panel__heading {
	color: var(--bbp-v2-brand-dark);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 12px;
}

.bbp-v2-nav-panel__preview {
	background: var(--bbp-v2-raised);
	min-height: 280px;
	overflow: hidden;
	position: relative;
}

.bbp-v2-nav-panel__preview img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.bbp-v2-nav-panel__preview p {
	background: linear-gradient(transparent, rgba(0, 0, 0, .78));
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 64px 28px 28px;
	position: absolute;
	right: 0;
}

.bbp-v2-header__utilities {
	align-items: center;
	display: flex;
	gap: 0;
	margin-left: auto;
}

.bbp-v2-header__utilities button,
.bbp-v2-drawer__actions button {
	background: transparent;
	border: 0;
	color: var(--bbp-v2-white);
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	min-height: 44px;
	padding: 10px 16px;
	text-transform: uppercase;
}

.bbp-v2-header__utilities button:last-child {
	background: var(--bbp-v2-brand);
	color: var(--bbp-v2-white);
	margin-left: 8px;
}

.bbp-v2-header__search-trigger {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	padding: 0;
	width: 44px;
}

.bbp-v2-header__search-trigger img {
	display: block;
	height: 24px;
	width: 24px;
}

.bbp-v2-header .bbp-v2-drawer-toggle,
.bbp-v2-header .bbp-v2-drawer {
	display: none;
}

.bbp-v2-search {
	inset: 0;
	position: fixed;
	z-index: 9010;
}

.bbp-v2-search__backdrop {
	background: rgba(4, 12, 22, .76);
	border: 0;
	inset: 0;
	position: absolute;
	width: 100%;
}

.bbp-v2-search__inner {
	align-items: flex-start;
	color: var(--bbp-v2-white);
	display: flex;
	height: 100%;
	justify-content: center;
	padding: 22vh var(--bbp-v2-gutter) 80px;
	position: relative;
	transform: translateY(0);
}

.bbp-v2-search__close {
	background: transparent;
	border: 1px solid currentColor;
	border-radius: 50%;
	color: var(--bbp-v2-white);
	cursor: pointer;
	font-size: 34px;
	height: 52px;
	line-height: 1;
	min-width: 52px;
	position: absolute;
	right: var(--bbp-v2-gutter);
	top: calc(var(--bbp-v2-header-height) + 20px);
	width: 52px;
}

.bbp-v2-search__form {
	margin: 0 auto;
	max-width: 720px;
	width: 100%;
}

.bbp-v2-search__form label {
	display: block;
	font-size: clamp(34px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.04;
	margin-bottom: 20px;
}

.bbp-v2-search__form > div {
	background: var(--bbp-v2-white);
	display: flex;
	max-width: 620px;
}

.bbp-v2-search__form input {
	background: var(--bbp-v2-white);
	border: 0;
	color: var(--bbp-v2-ink);
	flex: 1;
	font-size: 16px;
	min-width: 0;
	padding: 14px 18px;
}

.bbp-v2-search__form button {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--bbp-v2-white);
	display: flex;
	flex: 0 0 44px;
	height: 44px;
	justify-content: center;
	margin: 3px 4px 3px 0;
	padding: 0;
	width: 44px;
}

.bbp-v2-search__form button img {
	background: var(--bbp-v2-cyan);
	border-radius: 50%;
	display: block;
	height: 32px;
	padding: 7px;
	width: 32px;
}

body.elementor-editor-active .bbp-v2-header {
	position: relative;
}

/* Hero */
.bbp-v2-hero {
	background: var(--bbp-v2-brand-dark);
	color: var(--bbp-v2-white);
	min-height: var(--bbp-v2-hero-min-height, 100svh);
	overflow: hidden;
	position: relative;
}

.bbp-v2-hero--home {
	height: var(--bbp-v2-hero-min-height, 100svh);
	min-height: var(--bbp-v2-hero-min-height, 100svh);
}

.bbp-v2-hero--inner {
	height: 500px;
	min-height: 500px;
}

.bbp-v2-hero--products {
	height: 435px;
	min-height: 435px;
}

.bbp-v2-hero-widget--inner .bbp-v2-hero {
	height: 500px;
	min-height: 500px;
}

.bbp-v2-hero-widget--products .bbp-v2-hero {
	height: 405px;
	min-height: 405px;
}

.bbp-v2-hero__slides,
.bbp-v2-hero__slide {
	min-height: inherit;
}

.bbp-v2-hero--home .bbp-v2-hero__slides,
.bbp-v2-hero--home .bbp-v2-hero__slide {
	height: var(--bbp-v2-hero-min-height, 100svh);
	min-height: var(--bbp-v2-hero-min-height, 100svh);
}

.bbp-v2-hero__slide {
	display: grid;
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity .8s ease;
	width: 100%;
}

.bbp-v2-hero__slide.is-active {
	opacity: 1;
	position: relative;
	z-index: 1;
}

.bbp-v2-hero__media,
.bbp-v2-hero__media picture,
.bbp-v2-hero__media img,
.bbp-v2-hero__shade {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.bbp-v2-hero__media img {
	object-fit: cover;
}

.bbp-v2-hero__shade {
	background: rgba(4, 15, 28, .42);
	z-index: 1;
}

.bbp-v2-hero__slide.is-quiet .bbp-v2-hero__shade {
	background: transparent !important;
}

.bbp-v2-hero__content {
	align-self: center;
	margin: 0 auto;
	max-width: var(--bbp-v2-content);
	padding: calc(var(--bbp-v2-header-height) + 50px) var(--bbp-v2-gutter) 80px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.bbp-v2-hero__slide--copy-left-bottom .bbp-v2-hero__content,
.bbp-v2-hero__slide--copy-right-bottom .bbp-v2-hero__content {
	align-self: end;
	padding-bottom: clamp(74px, 10vh, 140px);
}

.bbp-v2-hero__slide--copy-top-center .bbp-v2-hero__content {
	align-self: start;
	padding-top: calc(var(--bbp-v2-header-height) + clamp(60px, 10vh, 120px));
	text-align: center;
}

.bbp-v2-hero__slide--copy-center .bbp-v2-hero__content {
	text-align: center;
}

.bbp-v2-hero__slide--copy-right-center .bbp-v2-hero__content,
.bbp-v2-hero__slide--copy-right-bottom .bbp-v2-hero__content {
	padding-left: max(52%, var(--bbp-v2-gutter));
}

.bbp-v2-hero__slide--copy-top-center .bbp-v2-hero__content > *,
.bbp-v2-hero__slide--copy-center .bbp-v2-hero__content > * {
	margin-left: auto;
	margin-right: auto;
}

.bbp-v2-hero__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .18em;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.bbp-v2-hero__heading {
	color: inherit;
	font-size: clamp(42px, 5.5vw, 96px);
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: .98;
	margin: 0;
	max-width: 960px;
	text-wrap: balance;
}

.bbp-v2-hero__description {
	font-size: clamp(16px, 1.2vw, 21px);
	line-height: 1.6;
	margin: 24px 0 30px;
	max-width: 660px;
}

.bbp-v2-slider__arrows {
	display: flex;
	justify-content: space-between;
	left: 0;
	padding: 0 clamp(18px, 3vw, 56px);
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
}

.bbp-v2-slider__arrows button,
.bbp-v2-family-stage__arrows button,
.bbp-v2-process__controls button {
	align-items: center;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .2);
	color: var(--bbp-v2-white);
	cursor: pointer;
	display: inline-flex;
	font-size: 22px;
	height: 58px;
	justify-content: center;
	pointer-events: auto;
	width: 58px;
}

.bbp-v2-slider__arrows button:hover,
.bbp-v2-family-stage__arrows button:hover,
.bbp-v2-process__controls button:hover {
	background: var(--bbp-v2-cyan);
	border-color: var(--bbp-v2-cyan);
}

.bbp-v2-slider__dots {
	bottom: 30px;
	display: flex;
	gap: 10px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: 3;
}

.bbp-v2-slider__dots button {
	background: transparent;
	border: 0;
	cursor: pointer;
	height: 44px;
	padding: 0;
	position: relative;
	width: 44px;
}

.bbp-v2-slider__dots button::before {
	background: rgba(255, 255, 255, .48);
	content: "";
	height: 3px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: background .25s ease, width .25s ease;
	width: 32px;
}

.bbp-v2-slider__dots button.is-active::before {
	background: var(--bbp-v2-cyan);
	width: 42px;
}

/* Product family stage */
.bbp-v2-family-stage {
	background: var(--bbp-v2-ink);
	color: var(--bbp-v2-white);
	min-height: min(900px, 100svh);
	overflow: hidden;
	position: relative;
}

.bbp-v2-family-stage__section-heading {
	margin: 0;
	padding: 50px var(--bbp-v2-gutter) 0;
}

.bbp-v2-family-stage__viewport {
	min-height: 720px;
	position: relative;
}

.bbp-v2-family-stage__panel {
	display: grid;
	grid-template-rows: auto 1fr;
	inset: 0;
	min-height: 720px;
	opacity: 0;
	position: absolute;
	transition: opacity .65s ease;
}

.bbp-v2-family-stage__panel.is-active {
	opacity: 1;
	position: relative;
	z-index: 1;
}

.bbp-v2-family-stage__copy {
	margin: 0 auto;
	max-width: 1100px;
	padding: clamp(42px, 7vh, 84px) var(--bbp-v2-gutter) 8px;
	position: relative;
	text-align: center;
	z-index: 2;
}

.bbp-v2-family-stage__copy h2 {
	color: var(--bbp-v2-white);
	font-size: clamp(36px, 4vw, 68px);
	letter-spacing: .02em;
	line-height: 1.04;
	margin: 0;
	text-transform: uppercase;
}

.bbp-v2-family-stage__copy > p:not(.bbp-v2-kicker) {
	color: rgba(255, 255, 255, .72);
	line-height: 1.5;
	margin: 14px auto;
	max-width: 900px;
}

.bbp-v2-family-stage__visual {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 470px;
	overflow: hidden;
	padding: 18px var(--bbp-v2-gutter) 70px;
	position: relative;
}

.bbp-v2-family-stage__mark,
.bbp-v2-catalogue__mark,
.bbp-v2-product-card__mark {
	color: transparent;
	font-weight: 800;
	letter-spacing: -.07em;
	line-height: .8;
	-webkit-text-stroke: 2px rgba(18, 175, 195, .55);
	user-select: none;
}

.bbp-v2-family-stage__mark {
	font-size: clamp(240px, 38vw, 700px);
	inset: 50% auto auto 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}

.bbp-v2-family-stage__visual img {
	filter: drop-shadow(0 30px 35px rgba(0, 0, 0, .45));
	max-height: 430px;
	max-width: min(760px, 70vw);
	object-fit: contain;
	position: relative;
	z-index: 1;
}

.bbp-v2-family-stage__arrows {
	display: flex;
	justify-content: space-between;
	left: 0;
	padding: 0 clamp(20px, 4vw, 72px);
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 52%;
	z-index: 3;
}

.bbp-v2-family-stage__tabs {
	border-top: 1px solid rgba(255, 255, 255, .22);
	display: grid;
	grid-auto-columns: 1fr;
	grid-auto-flow: column;
	min-height: 124px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.bbp-v2-family-stage__tabs button {
	background: transparent;
	border: 0;
	color: rgba(255, 255, 255, .65);
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.28;
	min-width: 210px;
	padding: 32px 22px 24px;
	position: relative;
	text-wrap: balance;
	text-transform: uppercase;
	white-space: normal;
}

.bbp-v2-family-stage__tabs button::before {
	background: var(--bbp-v2-cyan);
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: -1px;
	transform: scaleX(0);
	transition: transform .35s ease;
}

.bbp-v2-family-stage__tabs button > span {
	border: 3px solid currentColor;
	border-radius: 50%;
	display: block;
	height: 17px;
	margin: 0 auto 14px;
	width: 17px;
}

.bbp-v2-family-stage__tabs button.is-active {
	color: var(--bbp-v2-cyan);
}

.bbp-v2-family-stage__tabs button.is-active::before {
	transform: scaleX(1);
}

/* Reference-style milestone timeline */
.bbp-v2-milestone {
	background: var(--bbp-v2-white);
	color: var(--bbp-v2-ink);
	overflow: hidden;
	scroll-margin-top: var(--bbp-v2-header-height, 82px);
}

.bbp-v2-milestone__inner {
	margin: 0 auto;
	max-width: 1920px;
	min-height: 940px;
	padding: clamp(58px, 5vw, 92px) var(--bbp-v2-gutter) 0;
	position: relative;
}

.bbp-v2-milestone__intro {
	max-width: 520px;
	position: relative;
	z-index: 4;
}

.bbp-v2-milestone__intro h2 {
	color: var(--bbp-v2-brand);
	font-size: clamp(42px, 3vw, 56px);
	line-height: 1;
	margin: 0 0 24px;
}

.bbp-v2-milestone__intro > p:not(.bbp-v2-kicker) {
	font-size: clamp(16px, 1.15vw, 19px);
	line-height: 1.45;
	margin: 0 0 24px;
	max-width: 500px;
}

.bbp-v2-milestone__intro .bbp-v2-button {
	min-height: 44px;
	padding: 10px 18px;
}

.bbp-v2-milestone__stage {
	margin: -24px calc(var(--bbp-v2-gutter) * -0.3) 0;
	overflow: hidden;
	position: relative;
	z-index: 3;
}

.bbp-v2-milestone__stage::-webkit-scrollbar {
	display: none;
}

.bbp-v2-milestone__canvas {
	height: 455px;
	min-width: 1120px;
	position: relative;
}

.bbp-v2-milestone__curve {
	height: 100%;
	left: 6%;
	max-width: none;
	object-fit: fill;
	position: absolute;
	top: 0;
	transition: opacity .7s ease;
	width: 86%;
}

.bbp-v2-milestone__items {
	inset: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
}

.bbp-v2-milestone__item {
	height: 0;
	position: absolute;
	width: 0;
}

.bbp-v2-milestone__item:nth-child(1) { left: 9.4%; top: 56.5%; }
.bbp-v2-milestone__item:nth-child(2) { left: 28.2%; top: 61.4%; }
.bbp-v2-milestone__item:nth-child(3) { left: 51.4%; top: 42.5%; }
.bbp-v2-milestone__item:nth-child(4) { left: 71.3%; top: 45.6%; }
.bbp-v2-milestone__item:nth-child(5) { left: 87.8%; top: 31%; }

.bbp-v2-milestone__marker {
	background: rgba(8, 60, 120, .001);
	border: 2px solid transparent;
	border-radius: 50%;
	cursor: pointer;
	height: 50px;
	left: 0;
	min-width: 50px;
	padding: 0;
	position: absolute;
	top: 0;
	transform: translate(-50%, -50%);
	transition: border-color .2s ease, box-shadow .2s ease;
	width: 50px;
}

.bbp-v2-milestone__item.is-active .bbp-v2-milestone__marker {
	border-color: rgba(8, 60, 120, .42);
	box-shadow: 0 0 0 7px rgba(8, 60, 120, .08);
}

.bbp-v2-milestone__copy {
	left: 0;
	position: absolute;
	transition: opacity .55s ease, color .25s ease;
	width: 230px;
}

.bbp-v2-milestone__item.is-below .bbp-v2-milestone__copy {
	top: 30px;
	transform: translateX(-50%);
}

.bbp-v2-milestone__item.is-above .bbp-v2-milestone__copy {
	bottom: 30px;
	transform: translateX(-50%);
}

.bbp-v2-milestone__item:first-child .bbp-v2-milestone__copy {
	transform: translateX(-10%);
}

.bbp-v2-milestone__item:last-child .bbp-v2-milestone__copy {
	text-align: right;
	transform: translateX(-90%);
}

.bbp-v2-milestone__copy strong {
	color: var(--bbp-v2-brand-dark);
	display: block;
	font-size: clamp(28px, 2.3vw, 40px);
	line-height: 1;
	margin-bottom: 8px;
}

.bbp-v2-milestone__copy h3 {
	font-size: 17px;
	line-height: 1.15;
	margin: 0 0 8px;
}

.bbp-v2-milestone__copy p {
	color: #4b5562;
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
}

.bbp-v2-milestone__item.is-active .bbp-v2-milestone__copy h3 {
	color: var(--bbp-v2-brand);
}

.bbp-v2-milestone.is-enhanced:not(.is-revealed) .bbp-v2-milestone__curve,
.bbp-v2-milestone.is-enhanced:not(.is-revealed) .bbp-v2-milestone__copy {
	opacity: 0;
}

.bbp-v2-milestone.is-revealed .bbp-v2-milestone__item:nth-child(2) .bbp-v2-milestone__copy { transition-delay: .08s; }
.bbp-v2-milestone.is-revealed .bbp-v2-milestone__item:nth-child(3) .bbp-v2-milestone__copy { transition-delay: .16s; }
.bbp-v2-milestone.is-revealed .bbp-v2-milestone__item:nth-child(4) .bbp-v2-milestone__copy { transition-delay: .24s; }
.bbp-v2-milestone.is-revealed .bbp-v2-milestone__item:nth-child(5) .bbp-v2-milestone__copy { transition-delay: .32s; }

.bbp-v2-milestone__factory {
	clip-path: polygon(4% 100%, 4% 52%, 37% 52%, 49% 10%, 100% 22%, 100% 100%);
	height: clamp(340px, 32vw, 520px);
	margin: -210px calc(var(--bbp-v2-gutter) * -1) 0;
	overflow: hidden;
	position: relative;
	width: calc(100% + (var(--bbp-v2-gutter) * 2));
	z-index: 1;
}

.bbp-v2-milestone__factory img {
	height: 100%;
	object-fit: cover;
	object-position: center 55%;
	width: 100%;
}

/* Process carousel */
.bbp-v2-process {
	background: var(--bbp-v2-soft);
	overflow: hidden;
	padding: clamp(64px, 8vw, 130px) var(--bbp-v2-gutter);
}

.bbp-v2-process__header {
	align-items: end;
	display: flex;
	justify-content: space-between;
	margin: 0 auto 42px;
	max-width: var(--bbp-v2-content);
}

.bbp-v2-process__header h2 {
	color: var(--bbp-v2-brand-dark);
	font-size: clamp(34px, 4vw, 68px);
	margin: 0;
}

.bbp-v2-process__controls {
	display: flex;
	gap: 1px;
}

.bbp-v2-process__controls button {
	background: var(--bbp-v2-brand-dark);
	border-color: var(--bbp-v2-brand-dark);
}

.bbp-v2-process__track {
	display: flex;
	gap: clamp(18px, 2vw, 34px);
	margin: 0 auto;
	max-width: var(--bbp-v2-content);
	transition: transform .65s var(--bbp-v2-ease);
}

.bbp-v2-process__slide {
	background: var(--bbp-v2-white);
	flex: 0 0 min(58vw, 860px);
	opacity: .48;
	transform: scale(.94);
	transition: opacity .55s ease, transform .55s ease;
}

.bbp-v2-process__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.bbp-v2-process__media {
	aspect-ratio: 16 / 9;
	background: var(--bbp-v2-brand-dark);
	overflow: hidden;
	position: relative;
}

.bbp-v2-process__media img {
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease;
	width: 100%;
}

.bbp-v2-process__slide.is-active .bbp-v2-process__media img {
	transform: scale(1.025);
}

.bbp-v2-process__number {
	bottom: 0;
	color: rgba(255, 255, 255, .9);
	font-size: clamp(72px, 9vw, 150px);
	font-weight: 700;
	line-height: .74;
	position: absolute;
	right: 16px;
}

.bbp-v2-process__copy {
	min-height: 230px;
	padding: clamp(25px, 3vw, 46px);
}

.bbp-v2-process__copy h3 {
	color: var(--bbp-v2-brand-dark);
	font-size: clamp(26px, 2.4vw, 42px);
	margin: 0 0 14px;
}

.bbp-v2-process__copy > p:not(.bbp-v2-kicker) {
	line-height: 1.65;
	margin: 0 0 20px;
}

/* Product page catalogue */
.bbp-v2-products {
	background: var(--bbp-v2-white);
	margin: 0 auto;
	max-width: 1760px;
	padding: clamp(52px, 7vw, 112px) var(--bbp-v2-gutter);
}

.bbp-v2-products__heading {
	color: var(--bbp-v2-brand-dark);
	font-size: clamp(34px, 4vw, 66px);
	margin: 0 0 48px;
}

.bbp-v2-products__layout {
	align-items: start;
	display: grid;
	gap: clamp(28px, 4vw, 70px);
	grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
}

.bbp-v2-products__rail {
	border-top: 2px solid var(--bbp-v2-brand-dark);
	position: sticky;
	top: calc(var(--bbp-v2-header-height) + 24px);
}

.bbp-v2-products__rail button {
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--bbp-v2-line);
	color: #5a626c;
	cursor: pointer;
	display: block;
	font-size: 13px;
	font-weight: 700;
	padding: 18px 6px;
	text-align: left;
	text-transform: uppercase;
	width: 100%;
	white-space: normal;
	overflow-wrap: anywhere;
}

.bbp-v2-products__rail button.is-active {
	color: var(--bbp-v2-brand);
	padding-left: 18px;
	position: relative;
}

.bbp-v2-products__rail button.is-active::before {
	background: var(--bbp-v2-accent);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 4px;
}

.bbp-v2-products__grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(var(--bbp-v2-product-columns, 3), minmax(0, 1fr));
}

.bbp-v2-product-card {
	aspect-ratio: 1 / 1.05;
	background: var(--bbp-v2-soft);
	border: 1px solid var(--bbp-v2-white);
	min-height: 0;
	overflow: hidden;
	position: relative;
}

.bbp-v2-product-card__main {
	color: var(--bbp-v2-ink);
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	height: 100%;
	padding: clamp(18px, 2vw, 32px);
	text-decoration: none;
}

.bbp-v2-product-card__copy {
	position: relative;
	z-index: 2;
}

.bbp-v2-product-card__model {
	color: var(--bbp-v2-brand);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .12em;
	margin: 0 0 7px;
	text-transform: uppercase;
}

.bbp-v2-product-card__title {
	color: var(--bbp-v2-brand-dark);
	font-size: clamp(18px, 1.35vw, 25px);
	line-height: 1.12;
	margin: 0;
}

.bbp-v2-product-card__excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: #68707a;
	display: -webkit-box;
	font-size: 13px;
	line-height: 1.45;
	margin: 9px 0 0;
	overflow: hidden;
}

.bbp-v2-product-card__visual {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 0;
	overflow: hidden;
	position: relative;
}

.bbp-v2-product-card__mark {
	font-size: clamp(74px, 9vw, 170px);
	opacity: .18;
	position: absolute;
}

.bbp-v2-product-card__visual img {
	height: auto;
	max-height: 100%;
	max-width: 94%;
	object-fit: contain;
	position: relative;
	transition: transform .55s var(--bbp-v2-ease);
	z-index: 1;
}

.bbp-v2-product-card:hover .bbp-v2-product-card__visual img,
.bbp-v2-product-card:focus-within .bbp-v2-product-card__visual img {
	transform: scale(1.08);
}

.bbp-v2-product-card__rfq {
	align-items: center;
	background: var(--bbp-v2-brand);
	border: 0;
	bottom: 0;
	color: var(--bbp-v2-white);
	cursor: pointer;
	display: flex;
	font-size: 22px;
	height: 50px;
	justify-content: center;
	position: absolute;
	right: 0;
	width: 50px;
	z-index: 3;
}

.bbp-v2-product-card__rfq:hover {
	background: var(--bbp-v2-accent);
	color: var(--bbp-v2-ink);
}

.bbp-v2-products__pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	padding-top: 38px;
}

.bbp-v2-products__pagination button {
	background: transparent;
	border: 1px solid var(--bbp-v2-line);
	color: var(--bbp-v2-brand-dark);
	cursor: pointer;
	height: 44px;
	width: 44px;
}

.bbp-v2-products__pagination button.is-active {
	background: var(--bbp-v2-brand);
	border-color: var(--bbp-v2-brand);
	color: var(--bbp-v2-white);
}

.bbp-v2-products__empty {
	padding: 60px 0;
	text-align: center;
}

/* Related cards */
.bbp-v2-related {
	margin: 0 auto;
	max-width: 1760px;
	padding: clamp(64px, 8vw, 130px) var(--bbp-v2-gutter);
}

.bbp-v2-related__heading {
	color: var(--bbp-v2-brand-dark);
	font-size: clamp(34px, 4vw, 66px);
	margin: 0 0 44px;
}

.bbp-v2-related__grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bbp-v2-related-card {
	background: var(--bbp-v2-soft);
	min-height: 480px;
	overflow: hidden;
	position: relative;
}

.bbp-v2-related-card__media {
	height: 58%;
	overflow: hidden;
}

.bbp-v2-related-card__media img {
	height: 100%;
	object-fit: cover;
	transition: transform .7s var(--bbp-v2-ease);
	width: 100%;
}

.bbp-v2-related-card:hover img {
	transform: scale(1.06);
}

.bbp-v2-related-card__copy {
	padding: clamp(24px, 3vw, 44px);
}

.bbp-v2-related-card__copy h3 {
	color: var(--bbp-v2-brand-dark);
	font-size: clamp(22px, 2vw, 34px);
	margin: 0 0 12px;
}

.bbp-v2-related-card__copy > p:not(.bbp-v2-kicker) {
	line-height: 1.55;
}

/* Native Elementor layout hooks emitted by the V2 template generator. */
.bbp-v2-company-timeline,
.bbp-v2-company-timeline > .e-con-inner,
.bbp-v2-numbered-cards__grid,
.bbp-v2-numbered-cards__grid > .e-con-inner {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bbp-v2-numbered-card {
	min-width: 0;
}

/* RFQ section and panel */
.bbp-v2-rfq-section {
	background: var(--bbp-v2-brand-dark);
	color: var(--bbp-v2-white);
	display: grid;
	gap: clamp(44px, 7vw, 120px);
	grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
	padding: clamp(64px, 9vw, 150px) max(var(--bbp-v2-gutter), calc((100vw - var(--bbp-v2-content)) / 2));
}

.bbp-v2-rfq-section__intro h2 {
	color: inherit;
	font-size: clamp(42px, 5vw, 82px);
	line-height: 1;
	margin: 0 0 22px;
}

.bbp-v2-rfq-section__intro > p:not(.bbp-v2-kicker) {
	color: rgba(255, 255, 255, .7);
	font-size: 18px;
	line-height: 1.65;
}

.bbp-v2-rfq-form-wrap {
	color: inherit;
}

.bbp-v2-rfq-form__title {
	color: inherit;
	font-size: clamp(25px, 2.4vw, 38px);
	margin: 0 0 10px;
}

.bbp-v2-rfq-form__notice {
	background: rgba(244, 161, 50, .12);
	border-left: 3px solid var(--bbp-v2-accent);
	font-size: 12px;
	line-height: 1.45;
	margin: 0 0 22px;
	padding: 10px 12px;
}

.bbp-v2-rfq-form__grid {
	display: grid;
	gap: 18px 22px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bbp-v2-field {
	margin: 0;
}

.bbp-v2-field--wide {
	grid-column: 1 / -1;
}

.bbp-v2-field label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.bbp-v2-field :where(input:not([type="checkbox"]), textarea) {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 0;
	color: var(--bbp-v2-white);
	display: block;
	min-height: 48px;
	padding: 12px 14px;
	width: 100%;
}

.bbp-v2-field textarea {
	resize: vertical;
}

.bbp-v2-field--privacy {
	margin: 18px 0;
}

.bbp-v2-field--privacy label {
	align-items: flex-start;
	display: flex;
	gap: 10px;
	letter-spacing: 0;
	line-height: 1.45;
	text-transform: none;
}

.bbp-v2-field--honeypot {
	height: 0;
	inset: auto auto auto -10000px;
	overflow: hidden;
	position: absolute;
	width: 0;
}

.bbp-v2-rfq-form__status {
	font-weight: 700;
	margin: 14px 0 0;
}

.bbp-v2-rfq-form.is-submitting {
	opacity: .65;
	pointer-events: none;
}

.bbp-v2-panel {
	inset: 0;
	position: fixed;
	z-index: 10020;
}

.bbp-v2-panel__backdrop {
	backdrop-filter: blur(7px);
	background: rgba(3, 11, 20, .72);
	border: 0;
	inset: 0;
	position: absolute;
	width: 100%;
}

.bbp-v2-panel__sheet {
	background: var(--bbp-v2-brand-dark);
	color: var(--bbp-v2-white);
	height: 100%;
	margin-left: auto;
	max-width: 720px;
	overflow-y: auto;
	padding: clamp(58px, 7vw, 100px) clamp(28px, 5vw, 70px);
	position: relative;
	width: min(92vw, 720px);
}

.bbp-v2-panel__close {
	background: transparent;
	border: 0;
	color: var(--bbp-v2-white);
	cursor: pointer;
	font-size: 42px;
	position: absolute;
	right: 24px;
	top: 18px;
}

/* Floating tools and full-screen catalogue */
.bbp-v2-floating-tools {
	background: var(--bbp-v2-brand-dark);
	box-shadow: 0 14px 40px rgba(0, 0, 0, .24);
	display: flex;
	flex-direction: column;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 50%;
	transform: translate(100%, -50%);
	transition: opacity .3s ease, transform .45s var(--bbp-v2-ease);
	z-index: 8990;
}

.bbp-v2-floating-tools.is-visible {
	opacity: 1;
	transform: translate(0, -50%);
}

.bbp-v2-floating-tools button {
	align-items: center;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	color: var(--bbp-v2-white);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	font-size: 10px;
	gap: 5px;
	height: 72px;
	justify-content: center;
	text-transform: uppercase;
	width: 72px;
}

.bbp-v2-floating-tools button:hover {
	background: var(--bbp-v2-cyan);
}

.bbp-v2-floating-tools button > span:first-child {
	font-size: 21px;
}

.bbp-v2-catalogue {
	inset: 0;
	position: fixed;
	z-index: 10010;
}

.bbp-v2-catalogue__backdrop {
	backdrop-filter: blur(12px);
	background: rgba(3, 11, 20, .86);
	border: 0;
	inset: 0;
	position: absolute;
	width: 100%;
}

.bbp-v2-catalogue__sheet {
	display: grid;
	grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
	height: 100%;
	position: relative;
}

.bbp-v2-catalogue__list {
	backdrop-filter: blur(20px);
	background: rgba(6, 31, 58, .92);
	color: var(--bbp-v2-white);
	overflow-y: auto;
	padding: clamp(36px, 6vw, 90px) clamp(28px, 5vw, 80px);
}

.bbp-v2-catalogue__header {
	align-items: start;
	border-bottom: 1px solid rgba(255, 255, 255, .22);
	display: grid;
	grid-template-columns: 1fr auto;
	margin-bottom: 26px;
	padding-bottom: 26px;
}

.bbp-v2-catalogue__header .bbp-v2-kicker {
	grid-column: 1;
}

.bbp-v2-catalogue__header h2 {
	color: inherit;
	font-size: clamp(38px, 5vw, 76px);
	grid-column: 1;
	margin: 0;
}

.bbp-v2-catalogue__header button {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .35);
	color: inherit;
	cursor: pointer;
	font-size: 34px;
	grid-column: 2;
	grid-row: 1 / 3;
	height: 54px;
	width: 54px;
}

.bbp-v2-catalogue__group {
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.bbp-v2-catalogue__group > button {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--bbp-v2-white);
	cursor: pointer;
	display: flex;
	font-size: clamp(17px, 1.5vw, 24px);
	font-weight: 700;
	justify-content: space-between;
	padding: 20px 0;
	text-align: left;
	text-transform: uppercase;
	width: 100%;
}

.bbp-v2-catalogue__group > button span:last-child {
	color: var(--bbp-v2-cyan);
	font-size: 26px;
	transition: transform .3s ease;
}

.bbp-v2-catalogue__group > button[aria-expanded="true"] span:last-child {
	transform: rotate(45deg);
}

.bbp-v2-catalogue__group ul {
	list-style: none;
	margin: 0;
	padding: 0 0 20px;
}

.bbp-v2-catalogue__group a {
	align-items: baseline;
	color: rgba(255, 255, 255, .68);
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(90px, .25fr) 1fr;
	padding: 9px 0;
	text-decoration: none;
}

.bbp-v2-catalogue__group a span {
	color: var(--bbp-v2-cyan);
	font-size: 12px;
	font-weight: 700;
}

.bbp-v2-catalogue__group a:hover,
.bbp-v2-catalogue__group a:focus-visible {
	color: var(--bbp-v2-white);
}

.bbp-v2-catalogue__preview {
	align-items: center;
	background: rgba(21, 23, 25, .96);
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: clamp(30px, 5vw, 80px);
	position: relative;
}

.bbp-v2-catalogue__mark {
	font-size: clamp(150px, 24vw, 470px);
	opacity: .28;
	position: absolute;
}

.bbp-v2-catalogue__preview img {
	filter: drop-shadow(0 26px 30px rgba(0, 0, 0, .5));
	max-height: 70vh;
	max-width: 88%;
	object-fit: contain;
	position: relative;
	transition: opacity .22s ease, transform .35s ease;
	z-index: 1;
}

.bbp-v2-catalogue__preview p {
	bottom: clamp(24px, 4vw, 60px);
	color: var(--bbp-v2-white);
	font-size: 15px;
	font-weight: 700;
	left: clamp(24px, 4vw, 60px);
	margin: 0;
	position: absolute;
	right: clamp(24px, 4vw, 60px);
	text-align: center;
	z-index: 2;
}

@media (max-width: 1200px) {
	:root {
		--bbp-v2-header-height: 74px;
	}

	.bbp-v2-header .bbp-v2-nav,
	.bbp-v2-header .bbp-v2-header__utilities {
		display: none;
	}

	.bbp-v2-header__bar {
		justify-content: space-between;
	}

	.bbp-v2-header .bbp-v2-drawer-toggle {
		align-self: center;
		background: transparent;
		border: 0;
		cursor: pointer;
		display: grid;
		gap: 7px;
		height: 48px;
		place-content: center;
		width: 48px;
	}

	.bbp-v2-drawer-toggle > span:not(.screen-reader-text) {
		background: var(--bbp-v2-white);
		display: block;
		height: 2px;
		transition: transform .35s ease;
		width: 28px;
	}

	.bbp-v2-header.is-drawer-open .bbp-v2-drawer-toggle > span:not(.screen-reader-text) {
		background: var(--bbp-v2-brand-dark);
	}

	.bbp-v2-drawer-toggle[aria-expanded="true"] > span:nth-last-child(2) {
		transform: translateY(4.5px) rotate(45deg);
	}

	.bbp-v2-drawer-toggle[aria-expanded="true"] > span:last-child {
		transform: translateY(-4.5px) rotate(-45deg);
	}

	.bbp-v2-header .bbp-v2-drawer {
		background: var(--bbp-v2-white);
		display: block;
		inset: calc(var(--wp-admin--admin-bar--height, 0px) + var(--bbp-v2-header-height)) 0 0;
		overflow-y: auto;
		padding: 24px var(--bbp-v2-gutter) 44px;
		pointer-events: none;
		position: fixed;
		opacity: 0;
		transform: translateX(100%);
		transition:
			transform 600ms var(--bbp-v2-ease),
			opacity 600ms var(--bbp-v2-ease),
			visibility 0s linear 600ms;
		visibility: hidden;
		will-change: transform, opacity;
	}

	.bbp-v2-drawer.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
		transition:
			transform 600ms var(--bbp-v2-ease),
			opacity 600ms var(--bbp-v2-ease),
			visibility 0s linear 0s;
		visibility: visible;
	}

	.bbp-v2-related {
		display: none;
	}

	.bbp-v2-drawer ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.bbp-v2-drawer__item {
		border-bottom: 1px solid var(--bbp-v2-line);
	}

	.bbp-v2-drawer__row {
		align-items: center;
		display: flex;
		justify-content: space-between;
	}

	.bbp-v2-drawer__row > :where(a, span) {
		color: var(--bbp-v2-ink);
		font-size: clamp(18px, 2.2vw, 20px);
		line-height: 1.2;
		padding: 21px 0;
		text-decoration: none;
	}

	.bbp-v2-drawer__row button {
		background: transparent;
		border: 0;
		color: var(--bbp-v2-brand);
		font-size: 30px;
		height: 54px;
		width: 54px;
	}

	.bbp-v2-drawer__row button[aria-expanded="true"] > span:last-child {
		display: inline-block;
		transform: rotate(45deg);
	}

	.bbp-v2-drawer__submenu {
		padding: 0 0 22px 20px !important;
	}

	.bbp-v2-drawer__submenu a {
		color: #59616b;
		display: block;
		min-height: 52px;
		padding: 15px 0;
		text-decoration: none;
	}

	.bbp-v2-drawer__actions {
		display: flex;
		gap: 8px;
		padding-top: 28px;
	}

	.bbp-v2-drawer__actions button {
		color: var(--bbp-v2-brand-dark);
	}

	.bbp-v2-drawer__actions button:last-child {
		background: var(--bbp-v2-brand);
		color: var(--bbp-v2-white);
	}

	.bbp-v2-hero__slide--copy-right-center .bbp-v2-hero__content,
	.bbp-v2-hero__slide--copy-right-bottom .bbp-v2-hero__content {
		padding-left: 45%;
	}
}

@media (max-width: 1024px) {
	.bbp-v2-milestone__inner {
		min-height: 850px;
		padding-top: 64px;
	}

	.bbp-v2-milestone__intro {
		max-width: 560px;
	}

	.bbp-v2-milestone__stage {
		-ms-overflow-style: none;
		margin-left: calc(var(--bbp-v2-gutter) * -1);
		margin-right: calc(var(--bbp-v2-gutter) * -1);
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-inline: contain;
		scrollbar-width: none;
	}

	.bbp-v2-milestone__canvas {
		height: 430px;
		min-width: 1180px;
	}

	.bbp-v2-milestone__factory {
		height: 330px;
		margin-top: -110px;
		width: calc(100% + var(--bbp-v2-gutter));
	}

	.bbp-v2-hero-widget--inner .bbp-v2-hero {
		height: 360px;
		min-height: 360px;
	}

	.bbp-v2-page-hero--solutions .bbp-v2-hero__description {
		display: none;
	}

	.bbp-v2-hero-widget--products .bbp-v2-hero {
		height: 300px;
		min-height: 300px;
	}

	.bbp-v2-company-timeline,
	.bbp-v2-company-timeline > .e-con-inner,
	.bbp-v2-numbered-cards__grid,
	.bbp-v2-numbered-cards__grid > .e-con-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bbp-v2-service-support__cards,
	.bbp-v2-service-support__cards > .e-con-inner {
		margin-top: 0 !important;
	}

	.bbp-v2-service-support-card {
		width: 100% !important;
	}

	.bbp-v2-products__layout {
		display: block;
	}

	.bbp-v2-products__rail {
		display: grid;
		grid-template-columns: 1fr;
		margin-bottom: 28px;
		overflow: visible;
		position: static;
	}

	.bbp-v2-products__rail button {
		border-bottom: 1px solid var(--bbp-v2-line);
		min-width: 0;
		padding: 16px;
		text-align: left;
	}

	.bbp-v2-products__rail button.is-active {
		padding-left: 22px;
	}

	.bbp-v2-products__rail button.is-active::before {
		height: 100%;
		inset: 0 auto 0 0;
		width: 4px;
	}

	.bbp-v2-products__grid {
		--bbp-v2-product-columns: 3 !important;
	}

	.bbp-v2-product-card__excerpt {
		display: none;
	}

	.bbp-v2-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bbp-v2-rfq-section {
		gap: 34px;
		grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
		padding-left: 28px;
		padding-right: 28px;
	}

	.bbp-v2-catalogue__sheet {
		grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
	}
}

@media (max-width: 767px) {
	:root {
		--bbp-v2-header-height: 66px;
		--bbp-v2-gutter: 20px;
	}

	.bbp-v2-milestone__inner {
		min-height: 0;
		padding: 48px var(--bbp-v2-gutter) 0;
	}

	.bbp-v2-milestone__intro h2 {
		font-size: clamp(38px, 11vw, 54px);
	}

	.bbp-v2-milestone__stage {
		margin-top: 18px;
		scroll-padding-inline: 48px;
		touch-action: pan-x;
	}

	.bbp-v2-milestone__canvas {
		height: 390px;
		min-width: 1040px;
	}

	.bbp-v2-milestone__copy {
		width: 205px;
	}

	.bbp-v2-milestone__copy strong {
		font-size: 30px;
	}

	.bbp-v2-milestone__copy h3 {
		font-size: 16px;
	}

	.bbp-v2-milestone__copy p {
		font-size: 13px;
	}

	.bbp-v2-milestone__factory {
		clip-path: polygon(0 100%, 0 30%, 40% 30%, 53% 5%, 100% 20%, 100% 100%);
		height: 250px;
		margin: -76px calc(var(--bbp-v2-gutter) * -1) 0;
		width: calc(100% + (var(--bbp-v2-gutter) * 2));
	}

	.bbp-v2-products__grid {
		--bbp-v2-product-columns: 2 !important;
	}

	.bbp-v2-header .bbp-v2-header__brand img {
		height: 38px;
		max-width: 140px;
	}

	.bbp-v2-drawer__row > :where(a, span) {
		font-size: 19px;
	}

	.bbp-v2-drawer__actions {
		flex-wrap: wrap;
	}

	.bbp-v2-search__form > div {
		display: block;
	}

	.bbp-v2-search__form button {
		min-height: 48px;
		width: 100%;
	}

	.bbp-v2-hero--home {
		height: 54vw;
		min-height: 0;
	}

	.bbp-v2-hero--inner,
	.bbp-v2-hero--products {
		height: 44vw;
		min-height: 0;
	}

	.bbp-v2-hero-widget--inner .bbp-v2-hero,
	.bbp-v2-hero-widget--products .bbp-v2-hero {
		height: 165px;
		min-height: 165px;
	}

	.bbp-v2-solution-story__row,
	.bbp-v2-solution-story__row > .e-con-inner {
		flex-direction: column !important;
	}

	.bbp-v2-solution-story__row--image-right-overlap,
	.bbp-v2-solution-story__row--image-right-overlap > .e-con-inner {
		flex-direction: column-reverse !important;
	}

	.bbp-v2-solution-story__visual,
	.bbp-v2-solution-story__copy {
		margin: 0 !important;
		width: 100% !important;
	}

	.bbp-v2-hero__content,
	.bbp-v2-hero__slide--copy-right-center .bbp-v2-hero__content,
	.bbp-v2-hero__slide--copy-right-bottom .bbp-v2-hero__content {
		align-self: center;
		padding: calc(var(--bbp-v2-header-height) + 10px) var(--bbp-v2-gutter) 14px;
		text-align: left;
	}

	.bbp-v2-hero__slide--copy-top-center .bbp-v2-hero__content {
		align-self: start;
		padding-top: calc(var(--bbp-v2-header-height) + 10px);
		text-align: center;
	}

	.bbp-v2-hero__heading {
		font-size: clamp(19px, 6.4vw, 28px);
		line-height: 1.02;
	}

	.bbp-v2-hero__description {
		display: none;
	}

	.bbp-v2-hero__eyebrow {
		font-size: 9px;
		letter-spacing: .12em;
		margin-bottom: 7px;
	}

	.bbp-v2-hero__content .bbp-v2-button {
		font-size: 12px;
		margin-top: 10px;
		min-height: 44px;
		padding: 10px 16px;
	}

	.bbp-v2-slider__arrows {
		display: none;
	}

	.bbp-v2-slider__dots {
		bottom: 26px;
	}

	.bbp-v2-family-stage {
		min-height: 270px;
	}

	.bbp-v2-family-stage__section-heading {
		display: none;
	}

	.bbp-v2-family-stage__viewport,
	.bbp-v2-family-stage__panel {
		min-height: 270px;
	}

	.bbp-v2-family-stage__copy {
		max-width: 70%;
		padding: 28px 16px 0;
	}

	.bbp-v2-family-stage__copy h2 {
		font-size: clamp(19px, 5.5vw, 27px);
	}

	.bbp-v2-family-stage__copy > p:not(.bbp-v2-kicker) {
		display: none;
	}

	.bbp-v2-family-stage__copy .bbp-v2-text-link {
		font-size: 12px;
	}

	.bbp-v2-family-stage__visual {
		min-height: 155px;
		padding: 0 20px 18px;
	}

	.bbp-v2-family-stage__visual img {
		max-height: 145px;
		max-width: 82vw;
	}

	.bbp-v2-family-stage__mark {
		font-size: 45vw;
	}

	.bbp-v2-family-stage__arrows {
		display: flex;
		padding: 0 10px;
		top: 58%;
	}

	.bbp-v2-family-stage__arrows button {
		font-size: 18px;
		height: 44px;
		width: 44px;
	}

	.bbp-v2-family-stage__tabs {
		display: none;
	}

	.bbp-v2-process {
		padding-left: 0;
		padding-right: 0;
	}

	.bbp-v2-process__header {
		padding: 0 var(--bbp-v2-gutter);
	}

	.bbp-v2-process__track {
		gap: 14px;
		padding: 0 var(--bbp-v2-gutter);
	}

	.bbp-v2-process__slide {
		flex-basis: calc(100vw - 54px);
	}

	.bbp-v2-process__controls button {
		height: 46px;
		width: 46px;
	}

	.bbp-v2-related__grid {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.bbp-v2-related-card {
		flex: 0 0 84vw;
		scroll-snap-align: start;
	}

	.bbp-v2-rfq-form__grid {
		grid-template-columns: 1fr;
	}

	.bbp-v2-field--wide {
		grid-column: auto;
	}

	.bbp-v2-rfq-section {
		grid-template-columns: 1fr;
		padding-left: var(--bbp-v2-gutter);
		padding-right: var(--bbp-v2-gutter);
	}

	.bbp-v2-floating-tools {
		bottom: 18px;
		flex-direction: row;
		right: 14px;
		top: auto;
		transform: translateY(calc(100% + 34px));
	}

	.bbp-v2-floating-tools.is-visible {
		transform: translateY(0);
	}

	.bbp-v2-floating-tools button {
		height: 56px;
		width: 62px;
	}

	.bbp-v2-floating-tools button > span:last-child {
		display: none;
	}

	.bbp-v2-catalogue__sheet {
		display: block;
	}

	.bbp-v2-catalogue__list {
		height: 100%;
		padding: 34px 22px;
	}

	.bbp-v2-catalogue__preview {
		display: none;
	}

	.bbp-v2-catalogue__group a {
		display: block;
	}

	.bbp-v2-catalogue__group a span {
		display: block;
		margin-bottom: 3px;
	}
}

@media (max-width: 500px) {
	.bbp-v2-company-timeline,
	.bbp-v2-company-timeline > .e-con-inner,
	.bbp-v2-numbered-cards__grid,
	.bbp-v2-numbered-cards__grid > .e-con-inner {
		grid-template-columns: 1fr;
	}

	.bbp-v2-footer__main--compact-under-500 {
		display: none !important;
	}

	.bbp-v2-products {
		padding-left: 12px;
		padding-right: 12px;
	}

	.bbp-v2-products__grid {
		--bbp-v2-product-columns: 2 !important;
	}

	.bbp-v2-product-card {
		aspect-ratio: .82;
	}

	.bbp-v2-product-card__main {
		padding: 14px;
	}

	.bbp-v2-product-card__title {
		font-size: 16px;
	}

	.bbp-v2-product-card__model {
		font-size: 11px;
	}

	.bbp-v2-product-card__rfq {
		height: 44px;
		width: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bbp-v2-active *,
	.bbp-v2-active *::before,
	.bbp-v2-active *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/*
 * Elementor global-style isolation.
 *
 * Elementor kits can load generic button rules after this plugin and otherwise
 * recolour native buttons in Theme Builder templates. These scoped selectors
 * deliberately outrank kit-level button rules without affecting non-BBP UI.
 */
body.bbp-v2-active :is(
	.bbp-v2-header,
	.bbp-v2-search,
	.bbp-v2-hero,
	.bbp-v2-family-stage,
	.bbp-v2-milestone,
	.bbp-v2-process,
	.bbp-v2-products,
	.bbp-v2-panel,
	.bbp-v2-floating-tools,
	.bbp-v2-catalogue
) button {
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	text-decoration: none;
	text-shadow: none;
}

body.bbp-v2-active .bbp-v2-milestone .bbp-v2-milestone__marker,
body.bbp-v2-active .bbp-v2-milestone .bbp-v2-milestone__marker:hover,
body.bbp-v2-active .bbp-v2-milestone .bbp-v2-milestone__marker:focus,
body.bbp-v2-active .bbp-v2-milestone .bbp-v2-milestone__marker:active {
	background: rgba(8, 60, 120, .001);
	border: 2px solid transparent;
	border-radius: 50%;
	color: var(--bbp-v2-brand);
}

body.bbp-v2-active .bbp-v2-milestone .bbp-v2-milestone__item.is-active .bbp-v2-milestone__marker {
	border-color: rgba(8, 60, 120, .42);
}

body.bbp-v2-active .bbp-v2-header .bbp-v2-nav__link,
body.bbp-v2-active .bbp-v2-header .bbp-v2-nav__link:hover,
body.bbp-v2-active .bbp-v2-header .bbp-v2-nav__link:focus,
body.bbp-v2-active .bbp-v2-header .bbp-v2-nav__link:active {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-header .bbp-v2-header__utilities button,
body.bbp-v2-active .bbp-v2-header .bbp-v2-header__utilities button:hover,
body.bbp-v2-active .bbp-v2-header .bbp-v2-header__utilities button:focus,
body.bbp-v2-active .bbp-v2-header .bbp-v2-header__utilities button:active {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-header .bbp-v2-header__utilities button:last-child,
body.bbp-v2-active .bbp-v2-header .bbp-v2-header__utilities button:last-child:hover,
body.bbp-v2-active .bbp-v2-header .bbp-v2-header__utilities button:last-child:focus,
body.bbp-v2-active .bbp-v2-header .bbp-v2-header__utilities button:last-child:active {
	background: var(--bbp-v2-brand);
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-search .bbp-v2-search__backdrop,
body.bbp-v2-active .bbp-v2-search .bbp-v2-search__backdrop:hover,
body.bbp-v2-active .bbp-v2-search .bbp-v2-search__backdrop:focus,
body.bbp-v2-active .bbp-v2-search .bbp-v2-search__backdrop:active {
	background: rgba(4, 12, 22, .76);
	border: 0;
	border-radius: 0;
	color: transparent;
}

body.bbp-v2-active .bbp-v2-search .bbp-v2-search__close,
body.bbp-v2-active .bbp-v2-search .bbp-v2-search__close:hover,
body.bbp-v2-active .bbp-v2-search .bbp-v2-search__close:focus,
body.bbp-v2-active .bbp-v2-search .bbp-v2-search__close:active {
	background: transparent;
	border: 1px solid currentColor;
	border-radius: 50%;
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-search .bbp-v2-search__form button,
body.bbp-v2-active .bbp-v2-search .bbp-v2-search__form button:hover,
body.bbp-v2-active .bbp-v2-search .bbp-v2-search__form button:focus,
body.bbp-v2-active .bbp-v2-search .bbp-v2-search__form button:active {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--bbp-v2-ink);
}

body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer-toggle,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer-toggle:hover,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer-toggle:focus,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer-toggle:active,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__row button,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__row button:hover,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__row button:focus,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__row button:active {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--bbp-v2-brand);
}

body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__actions button,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__actions button:hover,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__actions button:focus,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__actions button:active {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--bbp-v2-brand-dark);
}

body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__actions button:last-child,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__actions button:last-child:hover,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__actions button:last-child:focus,
body.bbp-v2-active .bbp-v2-header .bbp-v2-drawer__actions button:last-child:active {
	background: var(--bbp-v2-brand);
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-hero .bbp-v2-slider__arrows button,
body.bbp-v2-active .bbp-v2-family-stage .bbp-v2-family-stage__arrows button {
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 0;
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-hero .bbp-v2-slider__arrows button:hover,
body.bbp-v2-active .bbp-v2-family-stage .bbp-v2-family-stage__arrows button:hover {
	background: var(--bbp-v2-cyan);
	border-color: var(--bbp-v2-cyan);
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-hero .bbp-v2-slider__dots button,
body.bbp-v2-active .bbp-v2-family-stage .bbp-v2-family-stage__tabs button {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

body.bbp-v2-active .bbp-v2-hero .bbp-v2-hero__media img {
	display: block;
	height: 100%;
	max-width: none;
	object-fit: cover;
	width: 100%;
}

body.bbp-v2-active .bbp-v2-family-stage .bbp-v2-family-stage__tabs button {
	color: rgba(255, 255, 255, .65);
}

body.bbp-v2-active .bbp-v2-family-stage .bbp-v2-family-stage__tabs button.is-active {
	color: var(--bbp-v2-cyan);
}

body.bbp-v2-active .bbp-v2-process .bbp-v2-process__controls button {
	background: var(--bbp-v2-brand-dark);
	border: 1px solid var(--bbp-v2-brand-dark);
	border-radius: 0;
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-process .bbp-v2-process__controls button:hover {
	background: var(--bbp-v2-cyan);
	border-color: var(--bbp-v2-cyan);
}

body.bbp-v2-active .bbp-v2-products .bbp-v2-products__rail button {
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--bbp-v2-line);
	border-radius: 0;
	box-shadow: none;
	color: #5a626c;
}

body.bbp-v2-active .bbp-v2-products .bbp-v2-products__rail button.is-active {
	color: var(--bbp-v2-brand);
}

body.bbp-v2-active .bbp-v2-products .bbp-v2-product-card__rfq {
	background: var(--bbp-v2-brand);
	border: 0;
	border-radius: 0;
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-products .bbp-v2-product-card__rfq:hover {
	background: var(--bbp-v2-accent);
	color: var(--bbp-v2-ink);
}

body.bbp-v2-active .bbp-v2-products .bbp-v2-products__pagination button {
	background: transparent;
	border: 1px solid var(--bbp-v2-line);
	border-radius: 0;
	color: var(--bbp-v2-brand-dark);
}

body.bbp-v2-active .bbp-v2-products .bbp-v2-products__pagination button.is-active {
	background: var(--bbp-v2-brand);
	border-color: var(--bbp-v2-brand);
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-panel .bbp-v2-panel__backdrop,
body.bbp-v2-active .bbp-v2-panel .bbp-v2-panel__backdrop:hover,
body.bbp-v2-active .bbp-v2-panel .bbp-v2-panel__backdrop:focus,
body.bbp-v2-active .bbp-v2-panel .bbp-v2-panel__backdrop:active {
	background: rgba(3, 11, 20, .72);
	border: 0;
	border-radius: 0;
	color: transparent;
}

body.bbp-v2-active .bbp-v2-panel .bbp-v2-panel__close,
body.bbp-v2-active .bbp-v2-panel .bbp-v2-panel__close:hover,
body.bbp-v2-active .bbp-v2-panel .bbp-v2-panel__close:focus,
body.bbp-v2-active .bbp-v2-panel .bbp-v2-panel__close:active {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-floating-tools button {
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	border-radius: 0;
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-floating-tools button:hover {
	background: var(--bbp-v2-cyan);
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-catalogue .bbp-v2-catalogue__backdrop {
	background: rgba(3, 11, 20, .86);
	border: 0;
	border-radius: 0;
	color: transparent;
}

body.bbp-v2-active .bbp-v2-catalogue .bbp-v2-catalogue__header button {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 0;
	color: var(--bbp-v2-white);
}

body.bbp-v2-active .bbp-v2-catalogue .bbp-v2-catalogue__group > button {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--bbp-v2-white);
}

/* Home V2.0.5 reference-composition modules. */
.bbp-v2-home-capabilities {
	background: var(--bbp-v2-white);
}

.bbp-v2-home-capabilities .bbp-v2-home-capabilities__grid,
.bbp-v2-home-capabilities .bbp-v2-home-capabilities__grid > .e-con-inner {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
}

.bbp-v2-home-capability-card {
	--width: 100% !important;
	isolation: isolate;
	justify-content: flex-start;
	min-width: 0;
	overflow: hidden;
	position: relative;
	width: 100% !important;
}

.bbp-v2-home-capability-card::before {
	background: linear-gradient(180deg, rgba(3, 13, 24, .12) 8%, rgba(3, 13, 24, .22) 44%, rgba(3, 13, 24, .92) 100%);
	content: "";
	inset: 0;
	position: absolute;
	transition: background .45s ease;
	z-index: -1;
}

.bbp-v2-home-capability-card:hover::before,
.bbp-v2-home-capability-card:focus-within::before {
	background: linear-gradient(180deg, rgba(3, 13, 24, .2) 2%, rgba(3, 13, 24, .46) 42%, rgba(3, 13, 24, .96) 100%);
}

.bbp-v2-home-capability-card > .elementor-element {
	position: relative;
	z-index: 1;
}

.bbp-v2-home-capability-card__number {
	margin-bottom: auto;
}

.bbp-v2-home-capability-card__title {
	margin-top: auto;
}

.bbp-v2-home-capability-card__copy,
.bbp-v2-home-capability-card__button {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .35s ease, transform .45s var(--bbp-v2-ease);
}

.bbp-v2-home-capability-card:hover .bbp-v2-home-capability-card__copy,
.bbp-v2-home-capability-card:hover .bbp-v2-home-capability-card__button,
.bbp-v2-home-capability-card:focus-within .bbp-v2-home-capability-card__copy,
.bbp-v2-home-capability-card:focus-within .bbp-v2-home-capability-card__button {
	opacity: 1;
	transform: translateY(0);
}

.bbp-v2-process--showcase {
	background: var(--bbp-v2-white);
	padding: clamp(34px, 3vw, 48px) 0 clamp(38px, 3.4vw, 54px);
	position: relative;
}

.bbp-v2-process--showcase .bbp-v2-process__header {
	display: block;
	margin-bottom: clamp(16px, 1.6vw, 24px);
	max-width: 800px;
	padding: 0 var(--bbp-v2-gutter);
	text-align: center;
}

.bbp-v2-process--showcase .bbp-v2-process__header h2 {
	color: var(--bbp-v2-ink);
	font-size: clamp(36px, 3.6vw, 54px);
	line-height: .98;
}

.bbp-v2-process--showcase .bbp-v2-process__description {
	color: #5a626c;
	font-size: clamp(14px, 1.1vw, 16px);
	line-height: 1.5;
	margin: 12px auto 0;
	max-width: 680px;
}

.bbp-v2-process--showcase .bbp-v2-process__controls {
	display: flex;
	inset: 52% var(--bbp-v2-gutter) auto;
	justify-content: space-between;
	pointer-events: none;
	position: absolute;
	z-index: 4;
}

.bbp-v2-process--showcase .bbp-v2-process__controls button {
	pointer-events: auto;
}

.bbp-v2-process__controls button {
	align-items: center;
	display: inline-flex;
	height: 58px;
	justify-content: center;
	width: 58px;
}

.bbp-v2-process__controls button img {
	display: block;
	filter: brightness(0) invert(1);
	height: 22px;
	width: 22px;
}

.bbp-v2-process--showcase .bbp-v2-process__track {
	gap: clamp(18px, 2vw, 32px);
	margin: 0;
	max-width: none;
	padding: 0;
	width: max-content;
}

.bbp-v2-process--showcase .bbp-v2-process__slide {
	background: transparent;
	box-shadow: 0 22px 60px rgba(4, 19, 35, .08);
	flex: 0 0 min(36vw, 520px);
	opacity: .42;
	transform: scale(.84);
	transform-origin: center;
}

.bbp-v2-process--showcase .bbp-v2-process__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.bbp-v2-process--showcase .bbp-v2-process__media {
	aspect-ratio: 16 / 9;
}

.bbp-v2-process--showcase .bbp-v2-process__number {
	display: none;
}

.bbp-v2-process--showcase .bbp-v2-process__copy {
	display: none;
}

.bbp-v2-process--showcase .bbp-v2-process__copy h3 {
	color: var(--bbp-v2-ink);
	font-size: clamp(24px, 2.25vw, 38px);
}

.bbp-v2-process--showcase .bbp-v2-process__dots {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: clamp(14px, 1.5vw, 22px);
}

.bbp-v2-process--showcase .bbp-v2-process__dots button {
	background: transparent;
	border: 2px solid #a9afb7;
	border-radius: 50%;
	height: 13px;
	padding: 0;
	width: 13px;
}

.bbp-v2-process--showcase .bbp-v2-process__dots button.is-active {
	background: var(--bbp-v2-cyan);
	border-color: var(--bbp-v2-cyan);
}

.bbp-v2-process--recommendations {
	background: #e8eaed;
	padding: clamp(24px, 2.2vw, 34px) 0 clamp(28px, 2.4vw, 38px);
	position: relative;
}

.bbp-v2-process--recommendations .bbp-v2-process__header {
	align-items: center;
	margin-bottom: clamp(14px, 1.5vw, 22px);
	max-width: var(--bbp-v2-content);
	padding: 0 var(--bbp-v2-gutter);
}

.bbp-v2-process--recommendations .bbp-v2-process__header h2 {
	color: var(--bbp-v2-ink);
	font-size: clamp(34px, 3vw, 46px);
	line-height: 1;
}

.bbp-v2-process--recommendations .bbp-v2-process__track {
	gap: clamp(18px, 2vw, 30px);
	margin: 0;
	max-width: none;
	padding-left: max(var(--bbp-v2-gutter), calc((100vw - var(--bbp-v2-content)) / 2));
	padding-right: max(var(--bbp-v2-gutter), calc((100vw - var(--bbp-v2-content)) / 2));
	width: max-content;
}

.bbp-v2-process--recommendations .bbp-v2-process__slide {
	background: var(--bbp-v2-white);
	display: grid;
	flex: 0 0 min(43vw, 650px);
	grid-template-columns: minmax(0, 1.08fr) minmax(230px, .92fr);
	height: 230px;
	min-height: 230px;
	opacity: 1;
	overflow: hidden;
	transform: none;
}

.bbp-v2-process--recommendations .bbp-v2-process__media {
	aspect-ratio: auto;
	background: #f5f6f7;
	height: 230px;
	min-height: 0;
}

.bbp-v2-process--recommendations .bbp-v2-process__media img {
	object-fit: contain;
	padding: clamp(18px, 2vw, 34px);
}

.bbp-v2-process--recommendations .bbp-v2-process__number {
	display: none;
}

.bbp-v2-process--recommendations .bbp-v2-process__copy {
	align-self: center;
	min-height: 0;
	padding: clamp(18px, 2vw, 30px);
}

.bbp-v2-process--recommendations .bbp-v2-process__copy h3 {
	color: var(--bbp-v2-ink);
	font-size: clamp(30px, 2.5vw, 40px);
	line-height: 1;
}

.bbp-v2-related-section--home .bbp-v2-related {
	padding-bottom: clamp(40px, 3.4vw, 52px);
	padding-top: clamp(40px, 3.4vw, 52px);
}

.bbp-v2-related-section--home .bbp-v2-related__heading {
	color: var(--bbp-v2-ink);
	font-size: clamp(34px, 3.2vw, 48px);
	text-align: center;
	margin-bottom: clamp(18px, 1.8vw, 26px);
}

.bbp-v2-related-section--home .bbp-v2-related-card {
	background: var(--bbp-v2-white);
	border: 1px solid var(--bbp-v2-line);
	min-height: 0;
}

.bbp-v2-related-section--home .bbp-v2-related-card__media {
	aspect-ratio: 2 / 1;
	height: auto;
}

.bbp-v2-related-section--home .bbp-v2-related-card__copy {
	min-height: 140px;
	padding: clamp(18px, 1.8vw, 26px);
}

.bbp-v2-rfq-section--reference {
	background: #f2f4f7;
	color: var(--bbp-v2-ink);
	display: block;
	padding: clamp(42px, 3.5vw, 54px) var(--bbp-v2-gutter);
}

.bbp-v2-rfq-section--reference .bbp-v2-rfq-section__intro {
	margin: 0 auto clamp(20px, 2vw, 28px);
	max-width: 980px;
	text-align: center;
}

.bbp-v2-rfq-section--reference .bbp-v2-rfq-section__intro h2 {
	color: var(--bbp-v2-ink);
	font-size: clamp(40px, 3.7vw, 54px);
	line-height: 1;
	margin-bottom: 16px;
}

.bbp-v2-rfq-section--reference .bbp-v2-rfq-section__intro > p:not(.bbp-v2-kicker) {
	color: #5a626c;
	font-size: clamp(15px, 1.25vw, 18px);
}

.bbp-v2-rfq-section--reference .bbp-v2-rfq-section__form {
	margin: 0 auto;
	max-width: 980px;
}

.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-rfq-form__notice {
	background: transparent;
	border: 0;
	color: #68717c;
	font-size: 11px;
	margin: 0 0 18px;
	padding: 0;
	text-align: center;
}

.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-rfq-form__grid {
	gap: 10px 12px;
}

.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-field > label:not(:has(input)) {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-field :where(input:not([type="checkbox"]), textarea) {
	background: var(--bbp-v2-white);
	border: 1px solid #cfd5dc;
	color: var(--bbp-v2-ink);
	min-height: 50px;
	padding: 12px 16px;
}

.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-field textarea {
	height: 112px;
	min-height: 112px;
}

.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-field :where(input:not([type="checkbox"]), textarea):focus {
	border-color: var(--bbp-v2-brand);
	box-shadow: 0 0 0 2px rgba(8, 60, 120, .12);
	outline: 0;
}

.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-field--privacy {
	color: #5a626c;
	margin: 12px auto;
	max-width: 720px;
}

@media (min-width: 1100px) {
	.bbp-v2-footer__main > .e-con-inner {
		padding: 32px 48px 26px !important;
	}

	.bbp-v2-footer__main-row {
		flex-wrap: nowrap !important;
		gap: 24px !important;
		padding: 0 !important;
	}

	.bbp-v2-footer__main-row > .e-con {
		gap: 6px !important;
		padding: 0 !important;
	}

	.bbp-v2-footer__brand {
		--width: 31% !important;
		width: 31% !important;
	}

	.bbp-v2-footer__column--navigation {
		--width: 18% !important;
		width: 18% !important;
	}

	.bbp-v2-footer__column--products {
		--width: 23% !important;
		width: 23% !important;
	}

	.bbp-v2-footer__column--contact {
		--width: 20% !important;
		width: 20% !important;
	}

	.bbp-v2-footer__column .elementor-button,
	.bbp-v2-footer__column .elementor-button-content-wrapper {
		font-size: 13px !important;
		line-height: 1.2 !important;
	}

	.bbp-v2-footer__column .elementor-button {
		padding: 4px 0 !important;
	}

	.bbp-v2-footer__legal > .e-con-inner {
		padding: 14px 48px !important;
	}

	.bbp-v2-footer__legal-row {
		padding: 0 !important;
	}
}

.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-rfq-form__submit {
	background: var(--bbp-v2-brand);
	border: 1px solid var(--bbp-v2-brand);
	color: var(--bbp-v2-white);
	display: block;
	margin: 0 auto;
	min-width: min(100%, 360px);
}

.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-rfq-form__submit:hover,
.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-rfq-form__submit:focus-visible {
	background: var(--bbp-v2-cyan);
	border-color: var(--bbp-v2-cyan);
}

@media (max-width: 1024px) {
	.bbp-v2-home-capabilities {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}

	.bbp-v2-home-capability-card__copy,
	.bbp-v2-home-capability-card__button {
		display: none;
	}

	.bbp-v2-process--showcase .bbp-v2-process__slide {
		flex-basis: min(58vw, 600px);
	}

	.bbp-v2-process--recommendations .bbp-v2-process__slide {
		flex-basis: min(72vw, 720px);
		grid-template-columns: minmax(0, 1.05fr) minmax(210px, .95fr);
	}
}

@media (max-width: 767px) {
	.bbp-v2-home-capabilities {
		padding: 34px 8px !important;
	}

	.bbp-v2-home-capabilities .bbp-v2-home-capabilities__grid,
	.bbp-v2-home-capabilities .bbp-v2-home-capabilities__grid > .e-con-inner {
		gap: 1px;
	}

	.bbp-v2-home-capability-card {
		min-height: 330px !important;
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.bbp-v2-home-capability-card__number {
		font-size: 10px;
	}

	.bbp-v2-process--showcase {
		padding-bottom: 70px;
		padding-top: 64px;
	}

	.bbp-v2-process--showcase .bbp-v2-process__header {
		margin-bottom: 32px;
	}

	.bbp-v2-process--showcase .bbp-v2-process__header h2,
	.bbp-v2-process--recommendations .bbp-v2-process__header h2 {
		font-size: clamp(36px, 11vw, 52px);
	}

	.bbp-v2-process--showcase .bbp-v2-process__description {
		font-size: 14px;
	}

	.bbp-v2-process--showcase .bbp-v2-process__controls {
		display: none;
	}

	.bbp-v2-process--showcase .bbp-v2-process__track {
		gap: 14px;
		padding: 0;
	}

	.bbp-v2-process--showcase .bbp-v2-process__slide {
		box-shadow: 0 15px 38px rgba(4, 19, 35, .08);
		flex-basis: calc(100vw - 48px);
		opacity: .32;
		transform: scale(.92);
	}

	.bbp-v2-process--showcase .bbp-v2-process__copy {
		min-height: 190px;
		padding: 24px 20px;
	}

	.bbp-v2-process--recommendations {
		padding-bottom: 70px;
		padding-top: 64px;
	}

	.bbp-v2-process--recommendations .bbp-v2-process__header {
		align-items: flex-end;
		padding: 0 20px;
	}

	.bbp-v2-process--recommendations .bbp-v2-process__controls button {
		height: 46px;
		width: 46px;
	}

	.bbp-v2-process--recommendations .bbp-v2-process__track {
		gap: 14px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.bbp-v2-process--recommendations .bbp-v2-process__slide {
		display: block;
		flex-basis: calc(100vw - 40px);
		height: auto;
		min-height: 0;
		overflow: visible;
	}

	.bbp-v2-process--recommendations .bbp-v2-process__media {
		aspect-ratio: 4 / 3;
		height: auto;
		min-height: 0;
	}

	.bbp-v2-process--recommendations .bbp-v2-process__copy {
		padding: 28px 24px 34px;
	}

	.bbp-v2-process--recommendations .bbp-v2-process__copy h3 {
		font-size: 42px;
	}

	.bbp-v2-rfq-section--reference {
		padding-left: 20px;
		padding-right: 20px;
	}

	.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-rfq-form__grid {
		grid-template-columns: 1fr;
	}

	.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-field--wide {
		grid-column: auto;
	}

	.bbp-v2-rfq-form-wrap--inline-reference .bbp-v2-rfq-form__submit {
		width: 100%;
	}
}
