/**
 * ProVent Microsite Styles
 *
 * Loaded only on pages using the Provent microsite templates.
 */

:root {
	--pv-blue: #0066cc;
	--pv-blue-dark: #004c99;
	--pv-blue-mid: #0055aa;
	--pv-navy: #00436b;
	--pv-lt-gray: #d9d9d9;
	--pv-gray: #333333;
	--pv-red: #cc0000;
}

/* --- Reset & Base --- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body.pv-microsite {
	margin: 0;
	padding: 0;
	font-family: 'Fira Sans Condensed', sans-serif;
	color: #000;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.25;
	background-color: #ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 700;
	line-height: 1.2;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

a {
	color: var(--pv-blue);
	text-decoration: none;
}

a:hover {
	color: var(--pv-blue-dark);
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

ul,
ol {
	margin-top: 0;
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

@media (max-width: 767.98px) {
	h1 {
		font-size: 3rem !important;
	}

	h2 {
		font-size: 2.5rem !important;
	}

	h3 {
		font-size: 1.75rem !important;
	}
}

/* ---------Shared Components -------------------------- */

/* Title headings */
.pv-title {
	color: #fff;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 6.25rem;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.9;
}

/* Large section headings */
.pv-heading {
	color: var(--pv-blue);
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 5rem;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

/* Medium headings */
.pv-subheading {
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 3.75rem;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--pv-blue);
	margin-bottom: 1rem;
}

h3.pv-subheading {
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--pv-blue);
	margin-bottom: 1rem;
}

/* Description text */
.pv-desc {
	color: #000;
	font-size: 1.5rem;
	line-height: 1.25;
	max-width: 450px;
	margin: 0 auto 1.5rem;
}

/* Dark overlay */
.pv-overlay {
	position: absolute;
	inset: 0;
}

/* Raised content above overlay */
.pv-raised {
	position: relative;
	z-index: 2;
}

/* CTA button */
.pv-cta__btn {
	display: inline-block;
	color: var(--pv-blue);
	background-color: #fff;
	border: 1px solid var(--pv-blue);
	border-radius: 50px;
	padding: 1.5rem 2.25rem;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1rem;
	text-transform: uppercase;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.pv-cta__btn:hover,
.pv-cta__btn:focus {
	background-color: var(--pv-blue);
	color: #ffffff;
	text-decoration: none;
}

/* Light CTA button variant */
.pv-cta__btn--light {
	color: var(--pv-navy);
	background-color: #ffffff;
	border-color: var(--pv-navy);
}

.pv-cta__btn--light:hover,
.pv-cta__btn--light:focus {
	color: #ffffff;
	background-color: var(--pv-navy);
	border-color: #ffffff;
}

@media (max-width: 767.98px) {
	.pv-cta__btn {
		font-size: 1.25rem;
		padding: 1rem 2.25rem;
	}
}

/* --------- Header -------------------------- */

.pv-header {
	background-color: var(--pv-blue);
}

.pv-header .navbar {
	padding: 2rem 0;
}

.pv-header .container {
	max-width: 1400px;
}

.pv-header__logo .pv-logo {
	max-height: 80px;
	width: auto;
}

/* Desktop Nav */
.pv-nav {
	display: none !important;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

@media (min-width: 992px) {
	.pv-nav {
		display: flex !important;
	}
}

.pv-header__nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.pv-nav li {
	list-style: none;
}

.pv-nav li a {
	color: #ffffff;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	text-decoration: none;
	letter-spacing: 0.02em;
	padding: 0.5rem 0;
	transition: opacity 0.2s ease;
	white-space: nowrap;
}

.pv-nav li a:hover,
.pv-nav li a:focus {
	color: #ffffff;
	opacity: 0.8;
	text-decoration: none;
}

.pv-nav li.current-menu-item a,
.pv-nav li.current_page_item a {
	font-weight: 700;
	border-bottom: 2px solid #ffffff;
}

/* Mobile Toggle */
.pv-menu-toggle {
	border: none;
	background: transparent;
	color: #ffffff;
	font-size: 1.5rem;
	padding: 0.5rem;
}

@media (min-width: 992px) {
	.pv-menu-toggle {
		display: none !important;
	}
}

@media (max-width: 767.98px) {
	.pv-header .navbar {
		padding: 2rem 1.25rem;
	}
}

.pv-menu-toggle:focus {
	outline: none;
	box-shadow: none;
}

/* Mobile Nav */
#pvMobileMenu {
	background-color: var(--pv-blue-mid);
}

#pvMobileMenu:not(.show) {
	display: none;
}

.pv-mobile-nav {
	padding: 0;
	margin: 0;
	list-style: none;
}

.pv-mobile-nav li {
	list-style: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pv-mobile-nav li:last-child {
	border-bottom: none;
}

.pv-mobile-nav li a {
	display: block;
	color: #ffffff;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	text-decoration: none;
	padding: 0.75rem 0;
}

.pv-mobile-nav li a:hover,
.pv-mobile-nav li a:focus {
	color: #ffffff;
	opacity: 0.8;
}

/* ---------Hero Carousel -------------------------- */

.pv-hero {
	position: relative;
}

.pv-hero__slide {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 600px;
	display: flex;
	align-items: center;
}

.pv-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.pv-hero__content {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	padding: 4rem 80px;
}

.pv-hero__headline {
	color: #ffffff;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 6.25rem;
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
	margin-bottom: 1rem;
	max-width: 574px;
}

.pv-hero__subtitle {
	color: #ffffff;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 2.625rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.pv-hero__cta {
	display: inline-block;
	color: #ffffff;
	border: 2px solid #ffffff;
	padding: 0.6rem 2rem;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.04em;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.pv-hero__cta:hover,
.pv-hero__cta:focus {
	background-color: #ffffff;
	color: var(--pv-blue);
	text-decoration: none;
}

/* Arrow Controls */
.pv-hero .carousel-control-prev,
.pv-hero .carousel-control-next {
	width: 60px;
	opacity: 1;
	z-index: 99;
}

.pv-hero .carousel-control-prev {
	left: 0;
}

.pv-hero .carousel-control-next {
	right: 0;
}

.pv-hero__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background-color: #fff;
	color: #000;
	font-size: 1.75rem;
	line-height: 1;
	transition: background-color 0.2s ease;
}

.pv-hero__arrow:hover {
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}

/* Indicators */
.pv-hero .carousel-indicators {
	margin-bottom: 1.5rem;
}

.pv-hero .carousel-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	background-color: #ffffff;
	opacity: 0.6;
	margin: 0 5px;
}

.pv-hero .carousel-indicators button.active {
	background-color: var(--pv-blue);
	opacity: 1;
}

@media (max-width: 767.98px) {
	.pv-hero__subtitle {
		font-size: 1.625rem;
	}
	.pv-hero__slide {
		min-height: 270px;
	}

	.pv-hero .carousel-control-prev,
	.pv-hero .carousel-control-next {
		display: none;
	}

	.pv-hero__content {
		padding: 4rem 1.25rem;
	}
}

/* ---------Featured Products -------------------------- */

.pv-features {
	position: relative;
	background: linear-gradient(180deg, var(--pv-navy) 0%, var(--pv-navy) 50%, #ffffff 50%, #ffffff 100%);
}

.pv-features__upper {
	padding: 6rem 0 200px;
	text-align: center;
}

.pv-features .pv-heading {
	max-width: 80%;
	margin: 0 auto;
	color: #fff;
}

.pv-features__lower {
	padding: 0 0 5rem;
	margin-top: -160px;
	position: relative;
	z-index: 2;
}

.pv-features__card {
	text-align: center;
	padding: 0 1.5rem;
}

.pv-features__image-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

.pv-features__image-circle {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.pv-features__image-circle img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}

@media (max-width: 768px) {
	.pv-features {
		background: #fff;
	}

	.pv-features__upper {
		padding: 3rem 0 160px;
	}

	.pv-features .pv-heading {
		color: var(--pv-blue-mid);
	}

	.pv-features__lower {
		margin-top: -120px;
	}

	.pv-features__image-circle {
		width: 220px;
		height: 220px;
	}

	.pv-features__card {
		padding: 2rem 1rem 4rem;
	}
}

/* ---------About Banner -------------------------- */

.pv-about-banner {
	position: relative;
	overflow: hidden;
	padding: 6.25rem 0;
}

.pv-about-banner__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.pv-about-banner .pv-overlay {
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.pv-about-banner__content {
	text-align: center;
	margin: 0 auto;
}

.pv-about-banner .pv-heading {
	font-size: 5rem;
	color: #fff;
}

.pv-about-banner__text {
	color: #ffffff;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 2.625rem;
	line-height: 1.2;
	margin-bottom: 0;
}

@media (max-width: 767.98px) {
	.pv-about-banner {
		padding: 3.5rem 0;
	}

	.pv-about-banner__text {
		font-size: 1.5rem;
	}
}

/* ---------Client Success -------------------------- */

.pv-clients__header {
	text-align: center;
	padding: 4rem 1.5rem 2.5rem;
}

.pv-clients__header .pv-subheading {
	font-size: 3.25rem;
	margin-bottom: 0.5rem;
}

/* Grid */
.pv-clients__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
}

.pv-clients__cell {
	position: relative;
	overflow: hidden;
}

.pv-clients__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	aspect-ratio: 4 / 5;
}

/* Hover Overlay */
.pv-clients__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 102, 204, 0.85);
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.pv-clients__cell:hover .pv-clients__overlay {
	opacity: 1;
}

.pv-clients__title {
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 2.875rem;
	font-weight: 900;
	color: #ffffff;
	margin-bottom: 0.25rem;
}

.pv-clients__location {
	font-size: 2.5rem;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 1rem;
}

.pv-clients__desc {
	font-size: 1.5rem;
	line-height: 1.25;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
}

/* CTA Cell */
.pv-clients__cta-cell {
	background-color: var(--pv-navy);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2.5rem;
	aspect-ratio: 4 / 5;
	transition: background-color 0.3s ease;
}

.pv-clients__cta-cell:hover {
	background-color: var(--pv-blue);
}

.pv-clients__cta-text {
	color: #ffffff;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 2.875rem;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 5rem;
}

.pv-clients__cta-arrow {
	display: inline-flex;
	align-items: center;
	align-self: flex-end;
	text-decoration: none;
}

.pv-clients__cta-arrow span {
	display: block;
	width: 174px;
	height: 2px;
	background-color: #ffffff;
	position: relative;
}

.pv-clients__cta-arrow span::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
}

@media (max-width: 991.98px) {
	.pv-clients__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575.98px) {
	.pv-clients__grid {
		grid-template-columns: 1fr;
	}
}

/* ---------CTA Columns -------------------------- */

.pv-cta-columns {
	padding: 4rem 0;
	background-color: #ffffff;
	border-top: 3px solid var(--pv-blue);
}

.pv-cta-columns .row {
	justify-content: center;
}

.pv-cta-col {
	text-align: center;
	padding: 2rem 1rem 4rem;
}

.pv-cta-col .pv-desc {
	max-width: 475px;
}

@media (max-width: 767.98px) {
	.pv-cta-columns {
		padding: 2rem 1.25rem;
	}
	.pv-cta-col {
		padding: 2rem 1rem;
	}
}

/* ---------Contact Section -------------------------- */

.pv-contact {
	background-color: var(--pv-blue);
	padding: 5rem 0;
}

.pv-contact .pv-heading {
	color: #fff;
}

.pv-contact__text p {
	color: #fff;
	font-size: 2.625rem;
	line-height: 1.2;
	margin: 0 auto 1.5rem;
}

.pv-contact__text h3 {
	color: #fff;
	font-size: 3.75rem;
	font-weight: 400;
}

/* Form Card */
.pv-contact__form {
	background-color: #fff;
	border-radius: 16px;
	padding: 2.5rem;
}

.pv-form-description {
	color: var(--pv-blue);
	font-size: 1.875rem;
	line-height: 1.6;
}

.pv-contact__form .gform_wrapper label,
.pv-contact__form .gform_wrapper .gfield_label {
	color: var(--pv-blue);
	font-family: 'Fira Sans Condensed', sans-serif;
	font-weight: 400;
	font-size: 1rem;
}

.pv-contact__form .gform_wrapper input[type='text'],
.pv-contact__form .gform_wrapper input[type='email'],
.pv-contact__form .gform_wrapper textarea {
	border: 2px solid var(--pv-blue);
	border-radius: 50px;
	padding: 1.75rem 1.25rem;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 1rem;
	background: #ffffff;
	width: 100%;
}

.pv-contact__form .gform_wrapper textarea {
	padding: 0.75rem 1.25rem;
}

.pv-contact__form .gform_wrapper textarea {
	border-radius: 16px;
	min-height: 120px;
}

.pv-contact__form .gform_wrapper input[type='text']:focus,
.pv-contact__form .gform_wrapper input[type='email']:focus,
.pv-contact__form .gform_wrapper textarea:focus {
	outline: none;
	border-color: var(--pv-blue-dark);
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.pv-contact__form .gform-body .gform_fields {
	grid-row-gap: 20px;
	row-gap: 20px;
}

.pv-contact__form .gform_wrapper .gform_button,
.pv-contact__form .gform_wrapper input[type='submit'] {
	width: 50% !important;
	background-color: var(--pv-blue) !important;
	color: #fff !important;
	border: 2px solid var(--pv-navy);
	border-radius: 50px !important;
	padding: 1rem 2.5rem !important;
	font-family: 'Fira Sans Condensed', sans-serif !important;
	font-size: 1rem !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.pv-contact__form .gform_wrapper .gform_button:hover,
.pv-contact__form .gform_wrapper input[type='submit']:hover {
	background-color: var(--pv-navy) !important;
	color: #ffffff;
}

.pv-contact__form .gform_wrapper .gfield_required {
	color: var(--pv-red);
}

@media (max-width: 991.98px) {
	.pv-contact {
		padding: 3.5rem 1.25rem;
	}

	.pv-contact .pv-heading {
		margin-bottom: 1rem;
	}

	.pv-contact__info {
		margin-bottom: 2.5rem;
	}
}

@media (max-width: 767.98px) {
	.pv-contact__text p {
		font-size: 1.625rem;
	}
}

/* ---------Footer -------------------------- */

.pv-footer {
	background-color: var(--pv-navy);
	color: #ffffff;
	padding: 3.5rem 0 2.5rem;
	font-family: 'Fira Sans Condensed', sans-serif;
}

.pv-footer .container {
	max-width: 1400px;
}

.pv-footer__logo {
	margin-bottom: 1.5rem;
}

.pv-footer__logo img {
	max-height: 60px;
	width: auto;
}

.pv-footer__heading {
	color: #ffffff;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 2.6;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

.pv-footer__address {
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.25;
}

.pv-footer__address p {
	margin-bottom: 0;
}

.pv-footer__copyright {
	margin-top: 1.5rem;
	color: #fff;
	font-size: 1rem;
}

.pv-footer__copyright p {
	margin-bottom: 0;
}

/* Footer Navigation */
.pv-footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pv-footer-nav li {
	border-bottom: 1px solid #fff;
}

.pv-footer-nav li:first-child {
	border-top: 1px solid #fff;
}

.pv-footer-nav li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #ffffff;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.04em;
	padding: 0.85rem 0;
	transition: opacity 0.2s ease;
}

.pv-footer-nav li a::after {
	content: '\2192';
	font-size: 1.5rem;
	margin-left: 1rem;
}

.pv-footer-nav li a:hover,
.pv-footer-nav li a:focus {
	color: #ffffff;
	opacity: 0.8;
	text-decoration: none;
}

/* Social Icons */
.pv-footer__social {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}

.pv-social-icons {
	display: flex;
	gap: 0.75rem;
}

.pv-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	width: 44px;
	height: 44px;
	border: 2px solid #ffffff;
	border-radius: 6px;
	color: var(--pv-navy);
	font-size: 1.25rem;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		opacity 0.2s ease;
}

.pv-social-icon i {
	margin-top: 4px;
}

.pv-social-icon:hover,
.pv-social-icon:focus {
	background-color: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	text-decoration: none;
}

@media (max-width: 991.98px) {
	.pv-footer__social {
		justify-content: flex-start;
	}
}

@media (max-width: 767.98px) {
	.pv-footer {
		padding: 3.5rem 1.25rem 2.5rem;
	}
}

/* ---------Content Blocks -------------------------- */

.pv-content-blocks {
	padding: 4rem 0;
	background-color: #ffffff;
}

.pv-content-block {
	padding: 3rem 0;
}

.pv-content-block--bordered {
	border-top: 3px solid var(--pv-blue);
}

.pv-content-block__image-wrap {
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
	.pv-content-block__image-wrap {
		margin-bottom: 0;
	}
}

.pv-content-block__image {
	width: 100%;
	height: auto;
	display: block;
}

.pv-content-block__body {
	padding: 0 1rem;
}

.pv-content-block__body .pv-subheading {
	margin-bottom: 1.25rem;
}

.pv-content-block__text {
	margin-bottom: 1.75rem;
}

.pv-content-block__text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767.98px) {
	.pv-content-blocks {
		padding: 2rem 1.25rem;
	}

	.pv-content-block {
		padding: 2rem 0;
	}

	.pv-content-block__body {
		padding: 0;
	}
}

/* ---------Benefits Accordion -------------------------- */

.pv-benefits {
	padding: 4rem 0 5rem;
	background-color: #ffffff;
}

.pv-benefits__header {
	text-align: center;
	margin-bottom: 3rem;
}

.pv-benefits__subtitle {
	font-size: 2rem;
	color: var(--pv-gray);
	margin-top: -0.75rem;
}

/* Accordion reset */
.pv-benefits__accordion {
	--bs-accordion-border-width: 0;
	--bs-accordion-bg: transparent;
	border: none;
}

.pv-benefits__item {
	background: transparent;
	border: none !important;
	margin-bottom: 1rem;
}

/* Circle image */
.pv-benefits__image-wrap {
	width: 270px;
	height: 270px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
	.pv-benefits__image-wrap {
		margin-bottom: 0;
	}
}

.pv-benefits__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Content area */
.pv-benefits__content {
	padding: 2rem 0.5rem;
	border-top: 1px solid var(--pv-blue);
	border-bottom: 1px solid var(--pv-blue);
}

.pv-benefits__title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.pv-benefits__title {
	margin-bottom: 0;
}

/* Toggle button */
.pv-benefits__toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
}

.pv-benefits__toggle-label {
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--pv-blue);
	letter-spacing: 0.04em;
}

.pv-benefits__toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 2px solid var(--pv-gray);
	border-radius: 50%;
	position: relative;
	transition: transform 0.3s ease;
}

/* Plus icon (collapsed state) */
.pv-benefits__toggle-icon::before,
.pv-benefits__toggle-icon::after {
	content: '';
	position: absolute;
	background-color: var(--pv-gray);
	transition: transform 0.3s ease;
}

.pv-benefits__toggle-icon::before {
	width: 14px;
	height: 2px;
}

.pv-benefits__toggle-icon::after {
	width: 2px;
	height: 14px;
}

/* X icon (expanded state) */
.pv-benefits__toggle:not(.collapsed) .pv-benefits__toggle-icon::before {
	transform: rotate(45deg);
}

.pv-benefits__toggle:not(.collapsed) .pv-benefits__toggle-icon::after {
	transform: rotate(45deg);
}

.pv-benefits__summary {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

/* Expanded details */
.pv-benefits__details {
	color: var(--pv-blue);
	padding: 0.5rem 0 1rem;
}

.pv-benefits__details p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767.98px) {
	.pv-benefits {
		padding: 2.5rem 1.25rem 3rem;
	}

	.pv-benefits__image-wrap {
		width: 160px;
		height: 160px;
	}
}

/* ---------ProSet Drawings ---------------------- */

.pv-drawings {
	padding: 4rem 0 5rem;
	background-color: #ffffff;
}

.pv-drawings__header {
	margin-bottom: 3rem;
}

.pv-drawings__accordion {
	--bs-accordion-border-width: 0;
	--bs-accordion-bg: transparent;
	border: none;
}

.pv-drawings__item {
	border-radius: 0 !important;
	border-bottom: 1px solid var(--pv-blue) !important;
}

.pv-drawings__item:first-of-type {
	border-radius: 0 !important;
	border-top: 1px solid var(--pv-blue) !important;
}

.pv-drawings__title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0;
}

h3.pv-drawings__title {
	margin-bottom: 0 !important;
	color: var(--pv-blue);
	text-transform: uppercase;
	font-size: 1.875rem;
	font-weight: 500;
}

.pv-drawings__toggle {
	display: flex;
	align-items: center;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	flex-shrink: 0;
}

.pv-drawings__toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 2px solid var(--pv-blue);
	border-radius: 50%;
	position: relative;
	transition: transform 0.3s ease;
}

.pv-drawings__toggle-icon::before,
.pv-drawings__toggle-icon::after {
	content: '';
	position: absolute;
	background-color: var(--pv-blue);
	transition: transform 0.3s ease;
}

.pv-drawings__toggle-icon::before {
	width: 14px;
	height: 2px;
}

.pv-drawings__toggle-icon::after {
	width: 2px;
	height: 14px;
}

.pv-drawings__toggle:not(.collapsed) .pv-drawings__toggle-icon::before {
	transform: rotate(45deg);
}

.pv-drawings__toggle:not(.collapsed) .pv-drawings__toggle-icon::after {
	transform: rotate(45deg);
}

.pv-drawings__body {
	padding: 2rem 0;
}

.pv-drawings__part {
	margin-bottom: 2rem;
}

.pv-drawings__part-heading {
	font-family: 'Fira Sans Condensed', sans-serif;
	font-weight: 500;
	font-size: 1.5rem;
	color: var(--pv-dark);
	margin-bottom: 2.5rem;
}

.pv-drawings__file-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pv-drawings__file-item {
	margin-bottom: 2.5rem;
}

.pv-drawings__file-link {
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 1.5rem;
	color: var(--pv-blue);
	text-decoration: none;
}

.pv-drawings__file-link:hover {
	text-decoration: underline;
}

@media (max-width: 767.98px) {
	.pv-drawings {
		padding: 2.5rem 1.25rem 3rem;
	}
}

/* ---------CTA Banner -------------------------- */

.pv-cta-banner {
	background-color: var(--pv-navy);
	overflow: hidden;
}

.pv-cta-banner__image-wrap {
	height: 100%;
}

.pv-cta-banner__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pv-cta-banner__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 4rem 4rem 4rem 3rem;
	height: 100%;
}

.pv-cta-banner__body .pv-subheading {
	color: #ffffff;
}

.pv-cta-banner__text {
	color: #ffffff;
	margin-bottom: 2rem;
}

.pv-cta-banner__text ul {
	list-style: none;
	padding-left: 0;
}

.pv-cta-banner__text ul li {
	margin-bottom: 0.25rem;
}

@media (max-width: 991.98px) {
	.pv-cta-banner__body {
		padding: 2.5rem 1.5rem;
	}
}

/* CTA Banner Alt (blue background, image left / text right) */
.pv-cta-banner-alt {
	padding: 4rem 0;
	background-color: var(--pv-navy);
	overflow: hidden;
}

.proset .pv-cta-banner-alt {
	background-color: var(--pv-lt-gray);
}

.pv-cta-banner-alt .pv-cta-banner-alt__image-col {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 2rem;
}

.pv-cta-banner-alt .pv-cta-banner-alt__image {
	max-width: 100%;
	max-height: 420px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}

.pv-cta-banner-alt .pv-cta-banner-alt__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 4rem 4rem 4rem 2rem;
	height: 100%;
}

.pv-cta-banner-alt .pv-subheading {
	color: #ffffff;
}

.proset .pv-cta-banner-alt .pv-heading {
	color: var(--pv-blue) !important;
}

.pv-cta-banner-alt .pv-cta-banner-alt__text {
	color: #ffffff;
	font-size: 1.125rem;
	line-height: 1.6;
	margin-bottom: 2.5rem;
}

.proset .pv-cta-banner-alt .pv-subheading {
	color: var(--pv-blue);
}

.proset .pv-cta-banner-alt .pv-cta-banner-alt__text {
	color: #000;
}

@media (max-width: 991.98px) {
	.pv-cta-banner-alt .pv-cta-banner-alt__image-col {
		padding: 2.5rem 1.5rem 0;
	}

	.pv-cta-banner-alt .pv-cta-banner-alt__body {
		padding: 2.5rem 1.5rem;
		text-align: center;
		align-items: center;
	}
}

@media (max-width: 767.98px) {
	.pv-cta-banner-alt {
		padding: 2rem 1.25rem;
	}
	.pv-cta-banner-alt .pv-cta-banner-alt__image {
		max-height: 300px;
	}
}

/* ---------ProVent Landing Page -------------------------- */

/* ---------ProSet Landing Page -------------------------- */

.proset .pv-cta-columns,
.provent .pv-cta-columns {
	background-color: var(--pv-lt-gray);
}

/* --- Video Banner ---------- */
.pv-video-banner {
	position: relative;
	overflow: hidden;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pv-video-banner__thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.pv-video-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

.pv-video-banner__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
	padding: 4rem 2rem;
}

.pv-video-banner__play {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: transform 0.2s ease;
}

.pv-video-banner__play:hover {
	transform: scale(1.1);
}

.pv-video-banner__play svg {
	width: 100px;
	height: 100px;
}

.pv-video-banner__heading {
	color: #ffffff;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 5rem;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.1;
	margin: 0;
}

@media (max-width: 767.98px) {
	.pv-video-banner {
		min-height: 350px;
	}

	.pv-video-banner__play svg {
		width: 70px;
		height: 70px;
	}
}

/* ---------ProVent / ProSet Resources Page -------------------------- */

.pv-documents {
	padding: 4rem 0;
	background-color: #ffffff;
}

.pv-documents__column {
	padding: 0 2rem;
}

.pv-documents__list {
	list-style: none;
	padding: 0;
	margin: 25px 0 0;
}

.pv-documents__item {
	border-top: 1px solid var(--pv-blue);
}

.pv-documents__item:last-child {
	border-bottom: 1px solid var(--pv-blue);
}

.pv-documents__link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 0;
	min-height: 90px;
	color: var(--pv-blue);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.pv-documents__link:hover,
.pv-documents__link:focus {
	color: var(--pv-blue-dark);
	text-decoration: none;
	opacity: 0.8;
}

.pv-documents__title {
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 1.875rem;
	font-weight: 500;
	text-transform: uppercase;
}

.pv-documents__icon {
	flex-shrink: 0;
	margin-left: 1rem;
	color: var(--pv-blue);
	display: flex;
	align-items: center;
}

.pv-documents__icon svg {
	width: 40px;
	height: 50px;
}

@media (max-width: 767.98px) {
	.pv-documents {
		padding: 2.5rem 1.25rem;
	}
}

/* ------ Product Videos ---------------- */
.pv-product-videos {
	padding-top: 4rem;
}

.pv-product-videos .pv-heading {
	margin-bottom: 2.5rem;
}

.pv-product-videos__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.pv-product-videos__cell {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background-color: #d5d5d5;
}

.pv-product-videos__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pv-product-videos__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.3);
	border: none;
	cursor: pointer;
	padding: 0;
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}

.pv-product-videos__play:hover {
	transform: scale(1.1);
	background: transparent;
}

.pv-product-videos__play svg {
	width: 80px;
	height: 80px;
}

/* Video Modal */
.pv-video-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.pv-video-modal.is-active {
	visibility: visible;
	opacity: 1;
}

.pv-video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
}

.pv-video-modal__dialog {
	position: relative;
	width: 90vw;
	max-width: 960px;
	z-index: 1;
}

.pv-video-modal__close {
	position: absolute;
	top: -2.5rem;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	line-height: 1;
}

.pv-video-modal__body {
	position: relative;
}

.pv-video-modal__body video {
	width: 100%;
	display: block;
}

@media (max-width: 767.98px) {
	.pv-product-videos__grid {
		grid-template-columns: 1fr;
	}

	.pv-product-videos__play svg {
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 991.98px) {
	.pv-documents__column {
		padding: 0;
	}

	.pv-documents__column + .pv-documents__column {
		margin-top: 3rem;
	}
}

@media (max-width: 767.98px) {
	.pv-documents {
		padding: 2.5rem 1.25rem;
	}

	.pv-documents__title {
		font-size: 1.5rem;
	}

	.pv-documents__icon svg {
		width: 30px;
		height: 38px;
	}
}

/* ---------Contact & Quote Page -------------------------- */

/* Page Title Bar */
.pv-page-title-bar {
	background-color: var(--pv-navy);
	padding: 4rem 0;
}

.pv-page-title-bar__heading {
	color: #ffffff;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 3.25rem;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
}

@media (max-width: 767.98px) {
	.pv-page-title-bar {
		padding: 2rem 0;
	}
}

/* ---------Firestop Devices & Applications -------------------------- */

.pv-devices {
	padding: 5rem 0 5rem;
	background-color: #ffffff;
}

.pv-devices__header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.pv-devices__header .pv-desc {
	max-width: 600px;
}

.pv-devices__section-divider {
	text-align: center;
	margin-top: 3.5rem;
	margin-bottom: 2.5rem;
}

.pv-devices__card {
	display: block;
	position: relative;
	border: 2px solid var(--pv-blue);
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	text-decoration: none;
	color: inherit;
	transition:
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

.pv-devices__card:hover,
.pv-devices__card:focus {
	box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15);
	border-color: var(--pv-blue-dark);
	text-decoration: none;
	color: inherit;
}

.pv-devices__image-wrap {
	flex-grow: 1;
	width: 100%;
}

.pv-devices__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pv-devices__label {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	color: var(--pv-blue);
	background-color: #ffffff;
	border: 1px solid var(--pv-blue);
	border-radius: 50px;
	padding: 0.625rem 1.5rem;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1;
	white-space: nowrap;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.pv-devices__card:hover .pv-devices__label,
.pv-devices__card:focus .pv-devices__label {
	background-color: var(--pv-blue);
	color: #ffffff;
}

@media (max-width: 767.98px) {
	.pv-devices {
		padding: 2.5rem 1.25rem 3rem;
	}

	.pv-devices__image {
		max-height: 260px;
	}

	.pv-documents__column {
		margin-bottom: 5rem;
	}
}

/* ---- Certifications & Affiliations ---- */

.pv-certifications {
	padding: 4rem 0;
	background-color: #ffffff;
}

.pv-certifications__header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.pv-certifications__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 2rem 3rem;
}

.pv-certifications__item {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease;
}

a.pv-certifications__item:hover {
	opacity: 0.7;
}

.pv-certifications__logo {
	max-height: 80px;
	max-width: 160px;
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (max-width: 767.98px) {
	.pv-certifications {
		padding: 2.5rem 1.25rem;
	}

	.pv-certifications__grid {
		gap: 1.5rem 2rem;
	}

	.pv-certifications__logo {
		max-height: 60px;
		max-width: 120px;
	}
}
