/* Remove weird before pseudo-element on main content container in Divi */
#main-content .container::before, .et_pb_section_0_tb_footer {
	display: none;
}

.et_fixed_nav.et_show_nav #page-container {
	padding-top: 20px !important;
}

/* -------------------------------------------------------------------------
	Hero
   ------------------------------------------------------------------------- */
.wf-flex-hero {
	position: relative;
	background-color: #2196F3;
	text-align: center;
	padding: 0;
	max-height: 680px;
	overflow: hidden;
}

.wf-flex-hero::after {
	content: '';
	background-image: var(--bg-image);
	background-size: cover;
	background-position: center;
	opacity: 0.38;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.wf-flex-hero-inner {
	position: relative;
	max-width: 1275px;
	margin: 0 auto;
	padding-top: 75px;
	z-index: 2;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

@media screen and (min-width: 1400px) {
	.wf-flex-hero-inner {
		margin-left: 13%;
		margin-right: 0;
		max-width: 100%;
	}
}

.wf-flex-hero-inner .left {
	flex: 1;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.wf-flex-hero-inner .right {
	flex-basis: 625px;
	line-height: 0;
}

.page-id-305 .wf-flex-hero-inner .right img {
	margin-top: -75px;
}

.wf-flex-hero-overlay {
	width: 100%;
	height: auto;
}

/* Mobile overlay: show only on small viewports when uploaded */
.wf-flex-hero-overlay-mobile {
	display: none;
}

@media screen and (max-width: 768px) {
	.wf-flex-hero-inner .right:has(.wf-flex-hero-overlay-mobile) .wf-flex-hero-overlay-desktop {
		display: none;
	}

	.wf-flex-hero-overlay-mobile {
		display: block;
	}
}

.wf-flex-hero-title {
	margin: 0;
	padding: 0;
	font-size: 2.5rem;
	line-height: 1.2;
	color: var(--white);
}

.wf-flex-hero-subtitle {
	margin: 0;
	padding: 0;
	font-size: 1.25rem;
	border-left: 1px solid var(--secondary);
	line-height: 1;
	padding-left: 1rem;
	color: #FFF;
	text-transform: uppercase;
	text-box-trim: trim-both;
}

.wf-flex-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
}

.wf-flex-hero-btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	text-decoration: none;
	border-radius: 6px;
	text-transform: uppercase;
	font-weight: 600;
	transition: all 0.3s ease;
}

.wf-flex-hero-btn-primary {
	background: var(--secondary);
	color: var(--white);
}

.wf-flex-hero-btn-primary:hover {
	background: var(--tertiary);
	color: var(--white);
}

.wf-flex-hero-btn-secondary {
	background: var(--white);
	color: var(--primary);
	font-weight: 400;
}

.wf-flex-hero-btn-secondary:hover {
	background: var(--tertiary);
	color: var(--white);
}

.wf-flex-hero-btn-contact {
	background: var(--primary);
	color: var(--white);
}

.wf-flex-hero-btn-contact:hover {
	background: var(--tertiary);
	color: var(--white);
}

/* Mobile-only CTA: hidden on desktop, shown on mobile */
.wf-flex-hero-cta-mobile-only {
	display: none;
}

@media screen and (max-width: 768px) {
	.wf-flex-hero-cta-mobile-only {
		display: inline-block;
	}
}

.wf-flex-hero-desc p {
	color: var(--white);
}

.wf-flex-hero-end-content {
	margin-top: 1rem;
	color: var(--white);
}

.wf-flex-hero-end-content p {
	color: var(--white);
	margin: 0 0 0.5em;
}

.wf-flex-hero-end-content p:last-child {
	margin-bottom: 0;
}

.wf-flex-hero-end-content p a {
	color: var(--white);
	text-decoration: underline;
}

/* -------------------------------------------------------------------------
	Text Image
   ------------------------------------------------------------------------- */
.wf-flex-text-image {
	padding: 0;
	margin-bottom: -1px;
}

.wf-flex-ti-grid {
	display: flex;
	flex-direction: row;
}

.wf-flex-ti-media {
	flex-basis: 50%;
	aspect-ratio: 1/1;
}

.wf-flex-ti-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wf-flex-ti-content {
	flex-basis: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 105px;
	gap: 20px;
}

.wf-flex-ti-content h2 {
	position: relative;
	margin: 0;
	padding: 0;
}

.wf-flex-ti-content h2::after {
	content: '';
	position: relative;
	display: block;
	margin-top: 25px;
	margin-bottom: 10px;
	width: 108px;
	height: 4px;
	background: var(--secondary);
}

.wf-flex-ti-cta {
	padding: 8px 20px;
	border-radius: 6px;
	text-transform: uppercase;
}

.wf-flex-ti-cta:hover {
	background: var(--tertiary) !important;
	color: var(--white) !important;
}

.wf-flex-ti-cta.primary-color {
	color: var(--white);
	background: var(--primary);
}

.wf-flex-ti-cta.secondary-color {
	color: var(--white);
	background: var(--secondary);
}

/* -------------------------------------------------------------------------
	Full Image Block
   ------------------------------------------------------------------------- */
.wf-flex-full-image {
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	background-color: var(--black);
}

.wf-flex-full-image-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.wf-flex-full-image-bg-desktop {
	background-position: top;
}

.wf-flex-full-image-bg-mobile {
	display: none;
}


@media screen and (max-width: 768px) {
	.wf-flex-full-image:has(.wf-flex-full-image-bg-mobile) .wf-flex-full-image-bg-desktop {
		display: none;
	}
	.wf-flex-full-image-bg-mobile {
		display: block;
	}
	.page-id-305 .wf-flex-full-image-bg-mobile {
		background-position: bottom center;
		background-size: contain;
	}
}

.wf-flex-full-image .container {
	position: relative;
	z-index: 1;
	max-width: 1275px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.wf-flex-full-image-content {
	width: 50%;
	max-width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 75px 40px;
	gap: 20px;
}

.wf-flex-full-image-title {
	position: relative;
	margin: 0;
	padding: 0;
	color: var(--white);
}

.wf-flex-full-image-title::after {
	content: '';
	position: relative;
	display: block;
	margin-top: 25px;
	margin-bottom: 10px;
	width: 108px;
	height: 4px;
	background: var(--secondary);
}

.wf-flex-full-image-desc {
	color: var(--white);
}

.wf-flex-full-image-desc p {
	margin: 0 0 1em;
	color: var(--white);
}

.wf-flex-full-image-desc p:last-child {
	margin-bottom: 0;
}

.page-id-2485 .wf-flex-full-image .container {
	display: flex;
	justify-content: flex-end;
	text-align: right;
}
.page-id-2485 .wf-flex-full-image-content {
	align-items: flex-end;
}

@media (max-width: 980px) {
	.wf-flex-full-image-content {
		width: 100%;
		max-width: 100%;
		padding: 60px 20px;
	}
}

/* -------------------------------------------------------------------------
	Marquee Slider
   ------------------------------------------------------------------------- */
.wf-flex-marquee {
	padding: 20px 0;
	background: var(--tertiary);
}

.wf-flex-marquee-viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.wf-flex-marquee-viewport::before,
.wf-flex-marquee-viewport::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 3;
	pointer-events: none;
}

.wf-flex-marquee-viewport::before {
	left: 0;
	background: linear-gradient(to right, var(--tertiary) 0%, rgba(0, 0, 0, 0) 100%);
}

.wf-flex-marquee-viewport::after {
	right: 0;
	background: linear-gradient(to left, var(--tertiary) 0%, rgba(0, 0, 0, 0) 100%);
}

.wf-flex-marquee-track {
	--marquee-gap: 20px;
	--marquee-duration: 30s;
	display: flex;
	width: max-content;
	will-change: transform;
	animation: wf-marquee-scroll var(--marquee-duration) linear infinite;
}

.wf-flex-marquee-group {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: var(--marquee-gap);
	padding-inline: var(--marquee-gap);
}

.wf-flex-marquee-item {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 20px;
	color: var(--white);
	white-space: nowrap;
}

.wf-flex-marquee-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
}

.wf-flex-marquee-icon {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.wf-flex-marquee-title {
	white-space: nowrap;
}

@keyframes wf-marquee-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* -------------------------------------------------------------------------
	FAQs
   ------------------------------------------------------------------------- */
.wf-flex-faqs {
	padding: 0;
}

.wf-flex-faqs-grid {
	display: flex;
	flex-direction: row;
	width: 100%;
	align-items: stretch;
}

.wf-flex-faqs-content,
.wf-flex-faqs-media {
	flex-basis: 50%;
}

.wf-flex-faqs-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
	background: var(--primary);
	color: var(--white);
	padding: 105px;
	overflow: hidden;
}

.wf-flex-faqs-content::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--wf-water-pattern, url('../images/water-pattern.png'));
	background-size: cover;
	background-position: center;
	mix-blend-mode: multiply;
	opacity: 0.18;
	z-index: 0;
	pointer-events: none;
}

.wf-flex-faqs-content .wf-flex-faqs-subtitle {
	border-left: 1px solid var(--secondary);
	padding-left: 1rem;
	text-transform: uppercase;
	font-size: 1.25rem;
	line-height: 1;
	color: var(--white);
	text-box-trim: trim-both;
}

.wf-flex-faqs-content .wf-flex-faqs-title {
	color: var(--white);
}

.wf-flex-faqs-content>* {
	position: relative;
	margin: 0;
	padding: 0;
	z-index: 1;
}

.wf-flex-faqs-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.wf-flex-faq {
	border-bottom: 1px solid var(--white);
	padding-bottom: 12px;
}

.wf-flex-faq.open {
	padding-bottom: 25px;
}

.wf-flex-faq-question {
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--white);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
}

.wf-flex-faq-question::after {
	content: '+';
	flex: 0 0 auto;
	font-weight: 400;
	width: 24px;
	text-align: right;
	font-size: 22px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.9);
}

.wf-flex-faq[open] .wf-flex-faq-question::after {
	content: '–';
	font-weight: 400;
}

.wf-flex-faq summary::-webkit-details-marker {
	display: none;
}

.wf-flex-faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease-out;
	margin: 0;
}

.wf-flex-faq[open] .wf-flex-faq-answer {
	grid-template-rows: 1fr;
}

.wf-flex-faq-answer>* {
	overflow: hidden;
}

.wf-flex-faq-answer-inner {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.wf-flex-faq-answer p,
.wf-flex-faq-answer ul {
	margin: 0;
	padding: 0;
}

.wf-flex-faq-answer ul {
	padding-left: 25px;
	list-style: disc;
}

.wf-flex-faq-answer ul li {
	margin: 0;
	padding: 0;
}

.wf-flex-video-trigger {
	position: relative;
	display: block;
	width: 100%;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
}

.wf-flex-faqs-media {
	padding: 0;
	display: flex;
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.wf-flex-video-trigger {
	width: 100%;
	height: 100%;
	max-width: none;
}

.wf-flex-faqs-video-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.wf-flex-faqs-media-image {
	width: 100%;
	height: 100%;
	display: flex;
	line-height: 0;
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.wf-flex-faqs-media-image .wf-flex-faqs-video-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wf-flex-video-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 74px;
	height: 74px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.55);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.wf-flex-video-play::before {
	content: '';
	position: absolute;
	left: 52%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-left: 20px solid #fff;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}

/* Video modal */
.wf-flex-video-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
}

.wf-flex-video-modal[hidden] {
	display: none;
}

.wf-flex-video-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.wf-flex-video-modal__wrap {
	position: relative;
	z-index: 1;
	width: min(960px, calc(100% - 40px));
}

.wf-flex-video-modal__dialog {
	position: relative;
	width: 100%;
	margin: 0;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
}

.wf-flex-video-modal__close {
	position: absolute;
	right: 0;
	top: -56px;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.wf-flex-video-modal__close:hover,
.wf-flex-video-modal__close:focus-visible {
	background: var(--tertiary);
	outline: none;
}

.wf-flex-video-modal__frame {
	position: relative;
	padding-top: 56.25%;
}

.wf-flex-video-modal__frame iframe,
.wf-flex-video-modal__frame a {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.wf-modal-open {
	overflow: hidden;
}

/* -------------------------------------------------------------------------
	Card Slider (Swiper)
   ------------------------------------------------------------------------- */
.wf-flex-card-slider {
	padding: 0;
}

.wf-flex-card-slider-inner {
	max-width: none;
	margin: 0;
	padding: 75px 103px 75px 103px;
	display: flex;
	gap: 60px;
	align-items: center;
}

.wf-flex-card-slider-content {
	margin-top: 40px;
}

.wf-flex-card-slider-content-col {
	flex: 0 0 44%;
	position: relative;
	z-index: 2;
	background: #fff;
}

.wf-flex-card-slider-slider-col {
	flex: 1 1 auto;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.wf-flex-card-slider-title {
	position: relative;
	margin: 0;
	padding: 0;
}

.wf-flex-card-slider-title::after {
	content: '';
	position: relative;
	display: block;
	margin-top: 25px;
	margin-bottom: 10px;
	width: 108px;
	height: 4px;
	background: var(--secondary);
}

.wf-flex-card-slider-cta {
	margin: 40px 0 14px;
}

.wf-flex-card-slider-btn {
	display: inline-block;
	min-width: 260px;
	padding: 14px 22px;
	border-radius: 6px;
	background: var(--secondary);
	color: var(--white);
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
}

.wf-flex-card-slider-btn:hover {
	background: var(--tertiary);
	color: var(--white);
}

.wf-flex-card-slider-assessment {
	margin: 0 0 18px;
	color: var(--tertiary);
	font-weight: 400;
	text-transform: uppercase;
}

.wf-flex-card-slider-assessment-link {
	color: var(--tertiary);
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: underline;
	margin-left: 6px;
}

.wf-flex-card-slider-assessment-link:hover {
	color: var(--primary);
}

.wf-card-swiper {
	overflow: hidden;
	padding-top: 80px;
}

.wf-card-swiper .swiper-wrapper {
	align-items: stretch;
}

.wf-card-swiper .swiper-slide {
	height: auto;
}

.wf-flex-card {
	height: 100%;
	background: #fff;
	border: 1px solid var(--tertiary);
	border-radius: 2px;
	padding: 60px 28px 55px;
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.wf-flex-card-media {
	position: relative;
	line-height: 0;
	display: flex;
	justify-content: center;
	margin-top: -120px;
	margin-bottom: 24px;
	padding: 0 24px;
	background: #fff;
}

.wf-flex-card-media img {
	max-height: 160px;
	width: auto;
	height: auto;
	display: block;
}

.wf-flex-card-title {
	margin: 0 0 10px;
	font-weight: 700;
	font-style: italic;
	color: var(--tertiary);
}

.wf-flex-card-body {
	color: var(--tertiary);
}

.wf-flex-card-body ul {
	padding-left: 25px;
	list-style: disc;
}

.wf-flex-card-body ul li {
	margin: 0;
	padding: 0;
}

.wf-card-swiper-pagination {
	position: relative;
	margin-top: 18px;
	text-align: center;
}

.wf-card-swiper-pagination .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	opacity: 1;
	background: transparent;
	border: 1px solid var(--primary);
}

.wf-card-swiper-pagination .swiper-pagination-bullet-active {
	background: var(--tertiary);
	border-color: var(--tertiary);
}

@media (max-width: 980px) {
	.wf-flex-card-slider-inner {
		padding: 70px 20px !important;
		flex-direction: column;
		align-items: stretch;
		gap: 30px;
	}

	.wf-flex-card-slider-content-col {
		flex: 0 0 auto;
	}

	.wf-flex-card-title {
		text-align: center;
	}
}

/* -------------------------------------------------------------------------
 CTA Block
   ------------------------------------------------------------------------- */
.wf-flex-cta-block {
	padding: 45px 0 60px;
	background: var(--tertiary);
}

.wf-flex-cta-block-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	color: var(--white);
	max-width: 770px;
	margin: 0 auto;
	text-align: center;
}

.wf-flex-cta-block-content h2 {
	color: var(--white);
	text-transform: capitalize;
}

.wf-flex-cta-block-desc p {
	font-size: 15px;
}

.wf-flex-cta-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	justify-content: center;
}

.wf-flex-cta-block-btn {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 6px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--white);
}

.wf-flex-cta-block-btn:hover {
	background: var(--tertiary) !important;
	color: var(--white) !important;
}

.wf-flex-cta-block-btn.secondary-color {
	background: var(--secondary);
}

.wf-flex-cta-block-btn.primary-color {
	background: var(--primary);
}

.wf-flex-cta-block-media {
	max-width: 360px;
}

.wf-flex-cta-block-media img {
	max-width: 100%;
	height: auto;
}

/* -------------------------------------------------------------------------
	Count Block
   ------------------------------------------------------------------------- */
.wf-flex-count-block {
	padding: 0;
}

.wf-flex-count-top {
	background: var(--tertiary);
	color: var(--white);
}

.wf-flex-count-top .container {
	max-width: 1275px;
	margin: 0 auto;
	padding: 80px 0 100px;
	text-align: center;
}

.wf-flex-count-subtitle {
	margin: 0;
	padding: 0;
	padding-left: 1rem;
	font-size: 1.25rem;
	line-height: 1;
	text-transform: uppercase;
	border-left: 1px solid var(--secondary);
	color: var(--white);
	display: inline-block;
	text-align: left;
}

.wf-flex-count-title {
	margin: 20px 0;
	padding: 0;
	color: var(--white);
	font-size: 46px;
}

.wf-flex-count-desc {
	margin: 0 auto;
	max-width: 820px;
	color: var(--white);
}

.wf-flex-count-desc p {
	margin: 0 0 1em;
	color: var(--white);
}

.wf-flex-count-desc p:last-child {
	margin-bottom: 0;
}

.wf-flex-count-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 40px;
	gap: 2rem 2.5rem;
	align-items: start;
}

.wf-flex-count-item {
	flex: 1 1 250px;
	min-width: 250px;
	max-width: 320px;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
	text-align: center;
}

.wf-flex-count-item-num {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
}

.wf-flex-count-item-title {
	margin: 0;
	padding: 0;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--white);
}

.wf-flex-count-item-desc {
	color: var(--white);
	font-size: 0.95rem;
	text-align: center;
}

.wf-flex-count-item-desc p,
.wf-flex-count-item-desc ul {
	margin: 0 0 0.5em;
	padding: 0;
	color: var(--white);
}

.wf-flex-count-item-desc p:last-child,
.wf-flex-count-item-desc ul:last-child {
	margin-bottom: 0;
}

.wf-flex-count-item-desc ul {
	padding-left: 1.25rem;
	list-style: disc;
	list-style-position: inside;
}

.wf-flex-count-image {
	width: 100%;
	line-height: 0;
	height: 400px;
	overflow: hidden;
	margin-bottom: -1px;
}

.wf-flex-count-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Mobile image: show only on small viewports when uploaded */
.wf-flex-count-img-mobile {
	display: none;
}

@media screen and (max-width: 768px) {
	.wf-flex-count-image:has(.wf-flex-count-img-mobile) .wf-flex-count-img-desktop {
		display: none;
	}

	.wf-flex-count-img-mobile {
		display: block;
	}
}

.wf-flex-count-marquee {
	padding: 20px 0;
	background: var(--tertiary);
}

@media (max-width: 980px) {
	.wf-flex-count-top .container {
		padding: 60px 20px 70px;
	}

	.wf-flex-count-grid {
		gap: 1.5rem;
	}

	.wf-flex-count-item {
		flex: 0 1 calc(50% - 0.75rem);
		min-width: 0;
		max-width: calc(50% - 0.75rem);
	}
}

/* -------------------------------------------------------------------------
	Checklist Grid (card-style boxes, max 3 items)
   ------------------------------------------------------------------------- */
.wf-flex-checklist {
	position: relative;
	padding: 0;
	overflow: hidden;
}

.wf-flex-checklist::before {
	content: '';
	position: absolute;
	bottom: -250px;
	background-image: url('../images/splash.png');
	background-position: center;
	opacity: 0.40;
	display: block;
	width: 100%;
	height: 500px;
}

.wf-flex-checklist .container {
	max-width: 1275px;
	margin: 0 auto;
	padding: 80px 0 140px;
}

.wf-flex-checklist-title {
	position: relative;
	margin: 0;
	padding: 0;
	text-align: center;
}

.wf-flex-checklist-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 30px;
	align-items: stretch;
	padding-top: 60px;
}

.wf-flex-checklist-item {
	height: 100%;
	background: #fff;
	border: 1px solid var(--tertiary);
	border-radius: 2px;
	padding: 60px 28px 35px;
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
}

.wf-flex-checklist-media {
	position: relative;
	line-height: 0;
	display: flex;
	justify-content: center;
	margin-top: -90px;
	margin-bottom: 24px;
	padding: 0 24px;
	background: #fff;
}

.wf-flex-checklist-media img {
	max-height: 160px;
	width: auto;
	height: auto;
	display: block;
}

.wf-flex-checklist-item-title {
	margin: 0 0 10px;
	padding: 0;
	font-size: 18px;
	color: var(--tertiary);
	font-weight: 800;
	font-style: italic;
	font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

.wf-flex-checklist-desc {
	color: var(--tertiary);
	text-align: left;
}

.wf-flex-checklist-desc p,
.wf-flex-checklist-desc ul {
	margin: 0 0 1em;
	padding: 0;
}

.wf-flex-checklist-desc p:last-child,
.wf-flex-checklist-desc ul:last-child {
	margin-bottom: 0;
}

.wf-flex-checklist-desc ul {
	padding-left: 25px;
	list-style: disc;
}

.wf-flex-checklist-desc ul li {
	margin: 0;
	padding: 0;
}

.wf-flex-checklist-cta {
	margin: 18px 0 0;
	padding: 0;
}

body:not(.page-id-2485) .wf-flex-checklist-btn {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 6px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--white);
	background: var(--secondary);
}

body:not(.page-id-2485) .wf-flex-checklist-btn:hover {
	background: var(--tertiary);
	color: var(--white);
}

body.page-id-2485 .wf-flex-checklist-btn {
	color: #000 !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
}

@media (max-width: 980px) {
	.wf-flex-checklist-grid {
		grid-template-columns: 1fr;
		padding-top: 60px;
	}

	body.page-id-2485 .wf-flex-checklist-btn {
		font-size: 14px;
	}
}

/* ================================================
   Tabbed FAQs / Card Slider
   ================================================ */

.wf-flex-tabbed-faqs-slider {
	padding: 0;
}

.wf-flex-tabbed-grid {
	display: flex;
	flex-direction: row;
	width: 100%;
	align-items: stretch;
	min-height: 600px;
}

.wf-flex-tabbed-left,
.wf-flex-tabbed-right {
	flex: 1;
	width: 50%;
	min-width: 0;
}

/* Left Column: Tabs + FAQs */
.wf-flex-tabbed-left {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--primary);
	color: var(--white);
	overflow: hidden;
}

.wf-flex-tabbed-left::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--wf-water-pattern, url('../images/water-pattern.png'));
	background-size: cover;
	background-position: center;
	mix-blend-mode: multiply;
	opacity: 0.18;
	z-index: 0;
	pointer-events: none;
}

/* Tab Navigation */
.wf-flex-tabbed-nav {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	padding: 40px 20px 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.wf-flex-tabbed-nav-btn {
	background: rgba(255, 255, 255, 0.71);
	border-radius: 0;
	border: none;
	color: #605E5E;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 140px;
	text-align: center;
	position: relative;
}

.wf-flex-tabbed-nav-btn:hover {
	color: var(--white);
	background: var(--tertiary);
}

.wf-flex-tabbed-nav-btn.active {
	background: var(--secondary);
	color: var(--white);
	font-weight: 600;
	border-radius: 6px;
	padding: 17px 24px;
	margin: -5px 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 2;
}

/* Tab Panels - FAQs */
.wf-flex-tabbed-panels {
	position: relative;
	z-index: 1;
	flex: 1;
	padding: 40px 60px;
	overflow-y: auto;
}

.wf-flex-tabbed-panel {
	display: none;
}

.wf-flex-tabbed-panel.active {
	display: block;
	animation: wf-fade-in 0.3s ease-in-out;
}

@keyframes wf-fade-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Tab title above panel title (mobile only), matches hero subtitle */
.wf-flex-tabbed-panel-tab-title {
	display: none;
}

.wf-flex-tabbed-panel-title {
	color: var(--white);
	margin: 0 0 30px;
	font-size: 2rem;
	font-weight: 700;
}

.wf-flex-tabbed-faqs-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.wf-flex-tabbed-faq {
	border-bottom: 1px solid var(--white);
	padding-bottom: 12px;
}

.wf-flex-tabbed-faq.open {
	padding-bottom: 25px;
}

.wf-flex-tabbed-faq-question {
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--white);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
}

.wf-flex-tabbed-faq-question::after {
	content: '+';
	flex: 0 0 auto;
	font-weight: 400;
	width: 24px;
	text-align: right;
	font-size: 22px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.9);
}

.wf-flex-tabbed-faq[open] .wf-flex-tabbed-faq-question::after {
	content: '–';
	font-weight: 400;
}

.wf-flex-tabbed-faq summary::-webkit-details-marker {
	display: none;
}

.wf-flex-tabbed-faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease-out;
	margin: 0;
}

.wf-flex-tabbed-faq[open] .wf-flex-tabbed-faq-answer {
	grid-template-rows: 1fr;
}

.wf-flex-tabbed-faq-answer>* {
	overflow: hidden;
}

.wf-flex-tabbed-faq-answer-inner {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.wf-flex-tabbed-faq-answer p,
.wf-flex-tabbed-faq-answer ul {
	margin: 0;
	padding: 0;
}

.wf-flex-tabbed-faq-answer ul {
	padding-left: 25px;
	list-style: disc;
}

.wf-flex-tabbed-faq-answer ul li {
	margin: 0;
	padding: 0;
}

/* Right Column: Card Slider */
.wf-flex-tabbed-right {
	background: var(--white);
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wf-flex-tabbed-slider-panel {
	display: none;
}

.wf-flex-tabbed-slider-panel.active {
	display: block;
	animation: wf-fade-in 0.3s ease-in-out;
}

.wf-flex-tabbed-slider-title {
	max-width: 590px;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 10px;
	position: relative;
}

.wf-flex-tabbed-slider-desc {
	margin-bottom: 40px;
	line-height: 1.6;
	font-size: 14px;
}

.wf-flex-tabbed-slider-desc p:first-child {
	margin-top: 0;
}

.wf-flex-tabbed-slider-desc p:last-child {
	margin-bottom: 0;
}

/* Swiper Slider */
.wf-tabbed-card-swiper {
	overflow: hidden;
	margin-bottom: 40px;
	width: 100%;
	padding-top: 80px;
}

.wf-tabbed-card-swiper .swiper-wrapper {
	align-items: stretch;
	display: flex;
}

.wf-tabbed-card-swiper .swiper-slide {
	height: auto;
	width: 100%;
	flex-shrink: 0;
}

.wf-flex-tabbed-card {
	height: 100%;
	background: #fff;
	border: 1px solid var(--tertiary);
	border-radius: 2px;
	padding: 60px 28px 55px;
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 100%;
}

.wf-flex-tabbed-card-media {
	position: relative;
	line-height: 0;
	display: flex;
	justify-content: center;
	margin-top: -120px;
	margin-bottom: 24px;
	padding: 0 24px;
	background: #fff;
}

.wf-flex-tabbed-card-media img {
	max-height: 160px;
	width: auto;
	height: auto;
	display: block;
}

.wf-flex-tabbed-card-title {
	margin: 0 0 10px;
	font-weight: 700;
	font-style: italic;
	color: var(--tertiary);
	text-align: center;
}

.wf-flex-tabbed-card-body {
	color: var(--tertiary);
	text-align: center;
}

.wf-flex-tabbed-card-body p:first-child {
	margin-top: 0;
}

.wf-flex-tabbed-card-body p:last-child {
	margin-bottom: 0;
}

.wf-flex-tabbed-card-body ul {
	padding-left: 25px;
	list-style: disc;
	text-align: left;
}

.wf-flex-tabbed-card-body ul li {
	margin: 0;
	padding: 0;
}

.wf-flex-tabbed-card-focus {
	color: var(--tertiary);
	font-weight: 700;
	font-size: 0.9rem;
	text-align: center;
	margin: 12px 0 0;
}

/* Swiper Pagination */
.wf-tabbed-card-swiper-pagination {
	position: relative;
	margin-top: 18px;
	text-align: center;
}

.wf-tabbed-card-swiper-pagination .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	opacity: 1;
	background: transparent;
	border: 1px solid var(--primary);
	margin: 0 4px;
	cursor: pointer;
}

.wf-tabbed-card-swiper-pagination .swiper-pagination-bullet-active {
	background: var(--tertiary);
	border-color: var(--tertiary);
}

/* CTA Button */
.wf-flex-tabbed-cta {
	text-align: left;
	margin-top: 20px;
}

.wf-flex-tabbed-cta-btn {
	display: inline-block;
	min-width: 200px;
	padding: 14px 32px;
	border-radius: 6px;
	background: var(--secondary);
	color: var(--white);
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	transition: all 0.3s ease;
}

.wf-flex-tabbed-cta-btn:hover {
	background: var(--tertiary);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media screen and (max-width: 1310px) {
	.wf-flex-hero-inner {
		padding-left: 45px !important;
		padding-top: 0 !important;
		padding-right: 0 !important;
		margin-right: 0 !important;
		align-items: stretch;
	}

	.wf-flex-hero-inner .left {
		padding: 50px 30px;
	}

	.wf-flex-hero-inner .right img {
		margin-top: 0 !important;
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

	.page-id-2485 .wf-flex-hero-inner .right img {
		object-position: left;
	}
}

@media screen and (max-width: 1140px) {

	.wf-flex-ti-content,
	.wf-flex-faqs-content {
		padding: 75px;
	}
}

@media screen and (max-width: 1090px) {
	.wf-flex-hero-inner .right {
		flex-basis: 455px;
	}
}

@media (max-width: 1024px) {

	.wf-flex-ti-content,
	.wf-flex-faqs-content {
		padding: 65px 45px;
	}

	.wf-flex-card-slider-inner {
		padding: 75px 45px 75px 45px;
	}

	.wf-flex-full-image-content {
		padding-left: 25px;
		padding-right: 25px;
	}
	.page-id-305 .wf-flex-full-image-content { 
		padding-bottom: 360px;
	}

	.wf-flex-count-top .container {
		width: 100%;
		padding-left: 45px;
		padding-right: 45px;
	}

	.wf-flex-tabbed-grid {
		flex-direction: column;
	}

	.wf-flex-tabbed-left,
	.wf-flex-tabbed-right {
		flex-basis: auto;
	}

	.wf-flex-tabbed-panels {
		padding: 30px 40px;
	}

	.wf-flex-tabbed-right {
		padding: 40px;
	}
}

@media screen and (max-width: 1023px) {

	.wf-flex-hero-inner,
	.wf-flex-faqs-grid {
		flex-direction: column;
	}

	.wf-flex-ti-grid {
		flex-direction: column-reverse;
	}

	/* Count grid: max 2 per line, centered when singular */
	.wf-flex-count-item {
		flex: 0 1 calc(50% - 1.25rem);
		min-width: 0;
		max-width: calc(50% - 1.25rem);
	}
}

@media (max-width: 768px) {

	.wf-flex-tabbed-nav {
		flex-direction: column;
		gap: 12px;
		padding: 30px 20px;
	}

	.wf-flex-tabbed-nav-btn {
		width: 100%;
		min-width: auto;
	}

	.wf-flex-tabbed-panels {
		padding: 30px 35px;
	}

	.wf-flex-tabbed-right {
		padding: 30px 24px;
	}

	.wf-flex-tabbed-panel-tab-title {
		display: block;
		margin-bottom: 25px !important;
	}

	.wf-flex-tabbed-panel-title,
	.wf-flex-tabbed-slider-title {
		font-size: 1.5rem;
	}

	.wf-flex-tabbed-panel-title {
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.wf-flex-tabbed-card-media img {
		height: 160px;
	}

	.wf-flex-tabbed-left,
	.wf-flex-tabbed-right {
		width: 100%;
	}

	.wf-flex-count-title {
		font-size: 28px;
	}

	.wf-flex-hero-title {
		font-size: 1.8rem;
	}

	.wf-flex-hero-btn {
		font-size: 14px;
		font-weight: 500;
	}

	.wf-flex-hero-inner {
		padding-top: 40px !important;
		padding-left: 25px !important;
		padding-right: 25px !important;
	}

	.wf-flex-hero-btn {
		padding: 0.5rem 1rem;
	}

	.wf-flex-hero-subtitle {
		font-size: .9rem;
	}

	.wf-flex-ti-media {
		aspect-ratio: unset !important;
		flex-basis: auto;
		height: 243px;
	}

	.wf-flex-hero-inner .left {
		padding: 0;
	}
}

@media screen and (max-width: 767px) {

	.wf-flex-ti-content,
	.wf-flex-faqs-content {
		padding: 65px 35px;
	}

	.wf-flex-ti-content h2 {
		font-size: 28px;
	}

	.wf-flex-card-slider-assessment a {
		display: block;
	}

	.wf-flex-count-item-num {
		font-size: 3.2rem;
		margin-bottom: 5px;
	}

	.wf-flex-count-item {
		gap: 0;
	}

	.wf-flex-count-subtitle,
	.wf-flex-faqs-content .wf-flex-faqs-subtitle,
	.wf-flex-count-item-desc p {
		font-size: 14px;
	}

	.wf-flex-count-item-title {
		font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
		margin: 0;
		padding: 0;
		font-size: 14px;
		font-weight: 600;
		color: var(--white);
		line-height: 22px;
		font-style: normal;

	}

	.wf-flex-tabbed-slider-desc {
		margin-bottom: 0;
	}

	.wf-flex-tabbed-cta {
		text-align: center;
	}

	.wf-flex-tabbed-cta-btn {
		padding: 14px 20px;
		font-size: 14px;
	}

	.wf-flex-tabbed-nav {
		gap: 0;
		flex-direction: row;
	}

	.wf-flex-tabbed-nav-btn {
		padding: 12px 10px;
		font-size: 11px;
	}

	.wf-flex-tabbed-nav-btn.active {
		padding-left: 10px;
		padding-right: 10px;
	}

	.page-id-305 .wf-flex-hero-inner .right,
	.page-id-2812 .wf-flex-hero-inner .right {
		margin-left: -30px;
		margin-right: -30px;
		max-height: 170px;
	}

	.et_fixed_nav.et_show_nav #page-container {
		padding-top: 10px !important;
	}

	.wf-flex-hero-inner {
		position: relative;
	}

	.page-id-2485 .wf-flex-hero {
		padding-bottom: 40px;
	}

	.wf-flex-hero-title,
	.wf-flex-hero-desc p {
		text-align: center;
	}

	.wf-flex-hero-ctas {
		justify-content: center;
	}

	.wf-flex-hero-inner .right {
		max-height: 250px;
		flex-basis: auto;
	}

	.page-id-2485 .wf-flex-hero-inner .right {
		position: absolute;
		bottom: -80px;
		right: -31px;
		z-index: -1;
		max-width: 240px;
	}

	.wf-flex-hero-inner .right img {
		margin-top: 0 !important;
		height: auto;
		width: 100%;
		object-fit: contain;
	}

	body:not(.page-id-2485) .wf-flex-hero-ctas {
		position: absolute;
		bottom: 30px;
		left: 50%;
		width: 100%;
		transform: translateX(-50%);
	}

	.wf-flex-cta-block-buttons {
		flex-wrap: nowrap;
	}

	.wf-flex-cta-block-btn {
		font-size: 14px;
	}

	.wf-flex-count-image {
		height: 240px;
	}
}

@media screen and (max-width: 475px) {

	.wf-flex-hero-desc p,
	.wf-flex-hero-end-content p {
		font-size: 14px;
	}
}

/* -------------------------------------------------------------------------
	Footer Callout (water-pattern background)
   ------------------------------------------------------------------------- */
.wf-flex-footer-callout {
	position: relative;
	padding: 45px 0 60px;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary, #2196F3);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--white);
	overflow: hidden;
}

.wf-flex-footer-callout::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--wf-water-pattern, url('../images/water-pattern.png'));
	background-size: cover;
	background-position: center;
	opacity: 0.25;
	mix-blend-mode: multiply;
	z-index: 0;
	pointer-events: none;
}

.wf-flex-footer-callout-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	max-width: 770px;
	margin: 0 auto;
	text-align: center;
}

.page-id-2812 .wf-flex-footer-callout-content {
	max-width: 1020px;
}
.page-id-2485 .wf-flex-footer-callout-content {
	max-width: 790px;
}
.page-id-2812 .wf-flex-footer-callout-title {
	line-height: 56px;
}

.wf-flex-footer-callout-title {
	margin: 0;
	padding: 0;
	color: var(--white);
	font-size: 54px;
}

.wf-flex-footer-callout-desc {
	margin: 0;
	font-size: 15px;
	color: var(--white);
	max-width: 595px;
}

.wf-flex-footer-callout-desc p {
	margin: 0 0 0.5em;
	color: var(--white);
}

.wf-flex-footer-callout-desc p:last-child {
	margin-bottom: 0;
}

.wf-flex-footer-callout-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.wf-flex-footer-callout-btn {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 6px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--white);
}

.wf-flex-footer-callout-btn:hover {
	background: var(--tertiary, #0a2239) !important;
	color: var(--white) !important;
}

@media screen and (max-width: 1023px) {
	.wf-flex-footer-callout-title {
		font-size: 41px;
		line-height: 50px;
	}
	.page-id-2812 .wf-flex-footer-callout-title, .page-id-2485 .wf-flex-footer-callout-title {
		font-size: 36px;
		line-height: 42px;
	}
	.wf-flex-footer-callout {
		padding-left: 25px;
		padding-right: 25px;
	}
}