.pb-pcf-active .product__cta,
.pb-pcf-cta + .product__cta {
	display: none;
}

.pb-pcf-cta,
.pb-pcf-contact {
	box-sizing: border-box;
	font-family: inherit;
}

.pb-pcf-cta *,
.pb-pcf-contact *,
.pb-pcf-cta *::before,
.pb-pcf-contact *::before,
.pb-pcf-cta *::after,
.pb-pcf-contact *::after {
	box-sizing: border-box;
}

.pb-pcf-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 250px);
	gap: 24px;
	align-items: center;
	margin: 28px 0 34px;
	padding: 28px 4px;
	border-top: 1px solid #cbd5e1;
	border-bottom: 1px solid #cbd5e1;
	background: #fff;
	color: #10294c;
}

.pb-pcf-cta__copy {
	min-width: 0;
}

.pb-pcf-cta__eyebrow,
.pb-pcf-contact__eyebrow {
	margin: 0 0 7px;
	color: #586b85;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
}

.pb-pcf-cta__copy h2,
.pb-pcf-contact__head h2 {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: #092e5c;
	font-weight: 700;
	line-height: 1.35;
}

.pb-pcf-cta__copy h2 {
	font-size: clamp(22px, 2vw, 24px);
}

.pb-pcf-cta__copy h2::before,
.pb-pcf-cta__copy h2::after,
.pb-pcf-contact__head h2::before,
.pb-pcf-contact__head h2::after {
	display: none;
}

.pb-pcf-cta__copy > p:last-child {
	margin: 9px 0 0;
	color: #53657d;
	font-size: 15px;
	line-height: 1.75;
}

.pb-pcf-cta a.pb-pcf-cta__button {
	display: flex;
	width: 100%;
	min-height: 58px;
	padding: 14px 20px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border: 1px solid #c92333;
	border-radius: 0;
	background: #c92333;
	box-shadow: none;
	color: #fff !important;
	-webkit-text-fill-color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: background-color .18s ease, border-color .18s ease, opacity .18s ease;
}

.pb-pcf-cta a.pb-pcf-cta__button:hover,
.pb-pcf-cta a.pb-pcf-cta__button:focus-visible {
	border-color: #a91626;
	background: #a91626;
	color: #fff !important;
	-webkit-text-fill-color: #fff;
}

.pb-pcf-cta a.pb-pcf-cta__button:focus-visible {
	outline: 3px solid rgba(201, 35, 51, .25);
	outline-offset: 3px;
}

.pb-pcf-cta.is-preparing a.pb-pcf-cta__button {
	cursor: progress;
	opacity: .78;
}

.pb-pcf-contact {
	width: 100%;
	margin-top: 64px;
	padding: 72px 20px 80px;
	background: #f4f5f7;
	color: #10294c;
	scroll-margin-top: 24px;
}

.pb-pcf-contact__inner {
	width: min(100%, 1120px);
	margin: 0 auto;
}

.pb-pcf-contact__head {
	width: min(100%, 920px);
	margin: 0 auto 32px;
	text-align: center;
}

.pb-pcf-contact__head h2 {
	font-size: clamp(28px, 3.2vw, 42px);
}

.pb-pcf-contact__head > p:last-child {
	margin: 12px 0 0;
	color: #53657d;
	font-size: 15px;
	line-height: 1.75;
}

.pb-pcf-contact__status {
	display: flex;
	width: min(100%, 920px);
	min-height: 112px;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	color: #53657d;
	font-size: 14px;
	text-align: center;
}

.pb-pcf-contact__status[hidden] {
	display: none;
}

.pb-pcf-contact.is-loading .pb-pcf-contact__status::after {
	width: 52px;
	height: 8px;
	margin-left: 14px;
	background: radial-gradient(circle closest-side, #092e5c 90%, transparent) 0 50% / 8px 8px repeat-x;
	content: '';
	animation: pb-pcf-dots .9s steps(3) infinite;
}

@keyframes pb-pcf-dots {
	0% { clip-path: inset(0 44px 0 0); }
	50% { clip-path: inset(0 22px 0 0); }
	100% { clip-path: inset(0 0 0 0); }
}

.pb-pcf-contact__frame {
	width: min(100%, 920px);
	margin: 0 auto;
	background: #fff;
}

.pb-pcf-contact__frame iframe {
	display: block;
	visibility: hidden;
	width: 100%;
	height: 1px;
	border: 0;
	background: #fff;
	opacity: 0;
}

.pb-pcf-contact.is-ready .pb-pcf-contact__frame iframe {
	visibility: visible;
	opacity: 1;
}

.pb-pcf-contact__fallback {
	display: table;
	margin: 20px auto 0;
	color: #092e5c;
	font-size: 14px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pb-pcf-contact__fallback[hidden] {
	display: none;
}

@media (max-width: 700px) {
	.pb-pcf-cta {
		grid-template-columns: 1fr;
		gap: 20px;
		margin: 22px 0 28px;
		padding: 22px 0;
	}

	.pb-pcf-cta__copy h2 {
		font-size: 23px;
	}

	.pb-pcf-cta__copy > p:last-child {
		font-size: 14px;
	}

	.pb-pcf-cta a.pb-pcf-cta__button {
		min-height: 54px;
		font-size: 15px;
	}

	.pb-pcf-contact {
		margin-top: 44px;
		padding: 48px 20px 56px;
	}

	.pb-pcf-contact__head {
		margin-bottom: 24px;
		text-align: left;
	}

	.pb-pcf-contact__head h2 {
		font-size: 27px;
	}

	.pb-pcf-contact__status {
		min-height: 96px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pb-pcf-cta *,
	.pb-pcf-contact *,
	.pb-pcf-cta *::before,
	.pb-pcf-contact *::before,
	.pb-pcf-cta *::after,
	.pb-pcf-contact *::after {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}
