/*
	Theme Name: Light Up Columbus
	Theme URI: https://withwonderly.com
	Description: Wonderly Web starter child theme for the Genesis Framework. Beaver Builder and Beaver Themer handle all front-end layout.
	Author: Wonderly Web
	Author URI: https://withwonderly.com

	Version: 1.0.0

	Template: genesis
	Template Version: 3.5.0

	License: GPL-2.0+
	License URI: https://opensource.org/licenses/gpl-license.php
*/


/* =============================================================================
   BRAND COLORS
   Define project brand colors here as CSS custom properties.
   Reference throughout stylesheet and BB Global Styles as var(--name).
   e.g. --primary: #000; --accent: #e14d43;

   Kit form color variables are also defined here — see KIT FORMS section.
   Update these to match the project's brand before building out forms.
============================================================================= */

:root {
	
	--Light: #EDF5F8;
	--Blue: #2A5679;
	--Light-Blue: #BEE9F5;
	--Navy: #013751;
	--Yellow: #C2B125;
	--Bright-Yellow: #FFC107;

    /* Kit Form defaults — update per project */
    --kit-font: sans-serif;         /* form font family */
    --kit-primary: #000;            /* main accent: button bg, borders */
    --kit-primary-text: #fff;       /* text on --kit-primary backgrounds */
    --kit-bg: #fff;                 /* input background */
    --kit-input-text: #000;         /* input and placeholder text color */
    --kit-success-bg: #fff;         /* success message background */
    --kit-success-border: #000;     /* success message border and text color */

}


/* =============================================================================
   BASE RESET
   Minimal — modern browsers don't need much.
============================================================================= */

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

body {
	margin: 0;
}

img,
embed,
iframe,
object,
video,
.wp-caption {
	max-width: 100%;
	height: auto;
}

a img {
	display: block;
}


/* =============================================================================
   TYPOGRAPHY DEFAULTS
   Intentionally bare — set per-project via BB Global Styles.
   These are fallback/body defaults only.
============================================================================= */

body {
	background-color: var(--Light);
	color: var(--Navy);
	font-family: montserrat, sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.36px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	margin: 0 0 20px;
	letter-spacing: 0;
}

h1, h2 {
	font-size: 48px;
	font-weight: 600;
}

h2.small-h2,
.small-h2 p {
	font-size: 38px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;
}

h3 {
	font-size: 24px;
	font-weight: 600;
}

p {
	margin: 0 0 20px;
}

p:last-child,
.fl-rich-text p:last-child,
.uabb-text-editor p:last-child {
	margin-bottom: 0 !important;
}

/* In-text link styles — scoped to paragraph context only.
   Keeps nav, buttons, and other links unaffected. */
.entry-content p a,
.fl-rich-text p a,
.fl-theme-builder-footer .fl-rich-text a {
	color: var(--Navy);
	text-decoration: underline;
}

.entry-content p a:hover,
.fl-rich-text p a:hover,
.fl-theme-builder-footer .fl-rich-text a:hover {
	color: #000;
	text-decoration: none;
}

a {
	transition: color 0.15s ease-in-out;
}

b,
strong {
	font-weight: 700;
}

.eyebrow {
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0.32px;
	text-transform: uppercase;
}


/* =============================================================================
   LISTS
   Restore sensible list defaults inside content and BB rich text areas.
   (Genesis/resets strip these.)
============================================================================= */

.entry-content ol,
.entry-content ul,
.site-inner ol,
.site-inner ul,
.fl-rich-text ol,
.fl-rich-text ul {
	margin-bottom: 24px;
	margin-left: 36px;
	padding: 0;
}

.entry-content ol > li,
.site-inner ol > li,
.fl-rich-text ol > li {
	list-style-type: decimal;
	margin-bottom: 8px;
}

.entry-content ul > li,
.site-inner ul > li,
.fl-rich-text ul > li {
	list-style-type: disc;
	margin-bottom: 8px;
}

.entry-content ol ol,
.entry-content ul ul,
.fl-rich-text ol ol,
.fl-rich-text ul ul {
	margin-bottom: 0;
}

.fl-rich-text ul {
    margin: 0 0 16px 16px;
}

.fl-rich-text ul li {
    margin-bottom: 8px;
}

.fl-rich-text ul li::marker {
    font-size: 12px;
}


/* =============================================================================
   WORDPRESS ALIGN CLASSES
   Used by the block editor and classic editor image alignment.
============================================================================= */

.alignleft {
	float: left;
	margin: 0 24px 16px 0;
}

.alignright {
	float: right;
	margin: 0 0 16px 24px;
}

.aligncenter,
img.centered {
	display: block;
	margin: 0 auto 24px;
}

.alignnone {
	margin-bottom: 16px;
}

.wp-caption-text {
	font-size: 14px;
	text-align: center;
}


/* =============================================================================
   GENESIS CHROME
   Hide default Genesis header/footer — Beaver Themer handles all of this.
============================================================================= */

.site-header,
.site-footer {
	display: none;
}


/* =============================================================================
   BEAVER BUILDER
============================================================================= */

/* Prevents Genesis list reset from stripping menu item list styles */
.fl-menu .menu li {
	list-style-type: none;
}

/* Prevents absolutely-positioned elements and animations bleeding outside rows.
   Safe to remove on a per-row basis using overflow: visible !important if needed. */
/*.fl-row-content-wrap {
	overflow: hidden;
}*/


/* =============================================================================
   ADMIN BAR FIX
   Prevents admin bar from overlapping content on mobile.
============================================================================= */

@media only screen and (max-width: 782px) {
	html {
		margin-top: 0 !important;
	}

	.admin-bar .site-container {
		padding-top: 46px !important;
	}
}


/* =============================================================================
   RESPONSIVE TYPOGRAPHY
   Uncomment and adjust per project. Values below are starting point examples.
   Primary breakpoint for heading size reduction is typically 768px.
============================================================================= */

@media only screen and (max-width: 760px) {
	
	h1, h2 {
		font-size: 36px;
	}
	
	h2.small-h2,
	.small-h2 p {
		font-size: 26px;
		line-height: 1.3;
		letter-spacing: 0;
	}
	
	h3 {
		font-size: 20px;
	}
	
	body {
		font-size: 16px;
		letter-spacing: 0.32px;
	}
}



/* =============================================================================
   KIT FORMS
   Class-based styling system for embedded Kit (formerly ConvertKit) forms.
   Apply wrapper classes in BB to trigger variants. Colors inherit from
   --kit-* custom properties defined in :root above.

   VARIANTS:
     .kit-form-inline     — single-line input + button side by side
     .kit-form-stacked    — input and button stacked vertically

   USAGE:
     1. Set --kit-* variables in :root to match project brand colors.
     2. Wrap the Kit embed in a BB HTML module and add .kit-form-inline
        or .kit-form-stacked as a class on that module's row or column.
     3. For a color variant that differs from the project default (e.g. a
        white form on a dark background), override --kit-primary etc. with
        a project-specific selector in the PROJECT-SPECIFIC STYLES section.
     4. Per-form data-uid overrides go in PROJECT-SPECIFIC STYLES below.

   NOTE: Not using Kit? Delete this section.
============================================================================= */

/* ----------------------------------------
   SHARED — applies to all Kit form variants
---------------------------------------- */

.kit-form-inline .formkit-form,
.kit-form-stacked .formkit-form {
    max-width: 100% !important;
}

.kit-form-inline .formkit-input,
.kit-form-stacked .formkit-input {
    font-family: var(--kit-font);
    font-size: 18px;
    color: var(--kit-input-text);
    background-color: var(--kit-bg);
    height: 56px;
    padding: 12px 11px 8px !important;
}

.kit-form-inline ::placeholder,
.kit-form-stacked ::placeholder {
    font-family: var(--kit-font);
    color: var(--kit-input-text);
    opacity: 0.7;
}

.kit-form-inline .formkit-button,
.kit-form-inline .formkit-submit,
.kit-form-stacked .formkit-button,
.kit-form-stacked .formkit-submit {
    font-family: var(--kit-font) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
    border: 1px solid var(--kit-primary) !important;
    background-color: var(--kit-primary) !important;
    outline: 1px solid var(--kit-primary) !important;
    outline-offset: 7px;
    padding: 8px 24px !important;
    text-transform: lowercase;
    cursor: pointer;
}

.kit-form-inline .formkit-submit > span,
.kit-form-stacked .formkit-submit > span {
    font-family: var(--kit-font);
    font-size: 18px;
    color: var(--kit-primary-text);
    padding: 0 24px;
}

.kit-form-inline .formkit-button:hover,
.kit-form-inline .formkit-submit:hover,
.kit-form-stacked .formkit-button:hover,
.kit-form-stacked .formkit-submit:hover {
    background-color: transparent !important;
}

.kit-form-inline .formkit-submit:hover > span,
.kit-form-stacked .formkit-submit:hover > span {
    color: var(--kit-primary) !important;
    background-color: transparent !important;
}

.kit-form-inline .formkit-alert-success,
.kit-form-stacked .formkit-alert-success {
    background: var(--kit-success-bg);
    border-color: var(--kit-success-border);
    color: var(--kit-success-border);
}

.kit-form-inline .formkit-alert,
.kit-form-stacked .formkit-alert {
    font-family: var(--kit-font);
}


/* ----------------------------------------
   INLINE — input + button side by side
---------------------------------------- */

.kit-form-inline .formkit-fields {
    display: grid !important;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
}

.kit-form-inline .formkit-field,
.kit-form-inline .formkit-submit {
    margin: 0;
}

@media (max-width: 445px) {
    .kit-form-inline .formkit-fields {
        grid-template-columns: 1fr;
    }
}


/* ----------------------------------------
   STACKED — input above button
---------------------------------------- */

.kit-form-stacked .formkit-fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

/* =============================================================================
   BUTTONS & FORMS
============================================================================= */
/* ----------------------------------------
   FORMS
---------------------------------------- */
input:focus::placeholder,
input:focus::-webkit-input-placeholder { 
	color: transparent !important; 
} 

/* ----------------------------------------
   BUTTONS
---------------------------------------- */
.fl-button,
.pp-button,
.nf-form-content button, 
.nf-form-content input[type=button], 
.nf-form-content input[type=submit] {
	background: var(--Yellow) !important;
	border-radius: 67px !important;
	border: 1px solid transparent !important;
	font-family: Archer !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	letter-spacing: 0.9px !important;
	padding: 8px 24px !important;
	text-transform: uppercase !important;
	text-align: center !important;
}

.light .fl-button {
	background: var(--Linen) !important;
	border: 1px solid #fff;
}

.outlined .fl-button {
	background: transparent !important;
	border: 1px solid var(--Light) !important;
	color: var(--Light) !important;
}

.simple-text-button .fl-button {
    background: transparent !important;
	color: var(--Light) !important;
	font-family: montserrat !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1.5 !important;
	letter-spacing: 0.36px !important;
	padding: 0 !important;
	text-transform: none !important;
}

.simple-text-button .fl-button-text {
    text-decoration: underline !important;
}

.simple-text-button .fl-button:hover .fl-button-text {
    text-decoration: none !important;
}

.fl-button:hover,
.pp-button:hover,
.nf-form-content button:hover, 
.nf-form-content input[type=button]:hover, 
.nf-form-content input[type=submit]:hover {
	background: var(--Navy) !important;
	color: var(--Yellow) !important;
}

.light .fl-button:hover,
.outlined .fl-button:hover {
	background: transparent !important;
	border: 1px solid var(--Yellow) !important;
	color: var(--Yellow) !important;
}

.on-dark-bg .fl-button:hover,
.hero-with-image .fl-button:hover {
	background-color: var(--Light) !important;
	color: var(--Navy) !important;
}

.fl-button-text,
.fl-button-icon,
.fl-button:hover .fl-button-text,
.fl-button:hover .fl-button-icon,
.pp-button span,
.nf-form-content button, .nf-form-content input[type=button], .nf-form-content input[type=submit] {
	color: inherit !important;
}


.simple-text-button .fl-button:hover {
	background: transparent !important;
	color: var(--Light) !important;
}

@media only screen and (max-width: 760px) {
	.fl-button,
	.pp-button,
	.simple-text-button .fl-button {
		font-size: 16px !important;
		padding: 8px 16px !important;
	}
}

@media only screen and (max-width: 480px) {
	.smaller-text-mobile .fl-button {
		font-size: 15px !important;
		padding: 8px 16px !important;
	}
}

/* ----------------------------------------
   NINJA FORMS
---------------------------------------- */
.nf-form-title,
.nf-form-fields-required {
	display: none !important;
}

.nf-form-content .list-select-wrap .nf-field-element>div, 
.nf-form-content input:not([type=submit]), 
.nf-form-content textarea {
	padding: 10px 24px !important;
	border: 1px solid var(--Navy) !important;
	border-radius: 0 !important;
	background-color: transparent !important;
}

.nf-field-label .nf-label-span, 
.nf-field-label label,
.nf-form-content label {
	font-size: 18px !important;
	font-weight: 400 !important;
	letter-spacing: 0.36px !important;
	line-height: 1.5 !important;
}

.checkbox-wrap .nf-field-element label:after, 
.checkbox-wrap .nf-field-label label:after, 
.listcheckbox-wrap .nf-field-element label:after, 
.listcheckbox-wrap .nf-field-label label:after {
	background-color: transparent !important;
	border: 1px solid var(--Navy) !important;
	width: 24px !important;
	height: 24px !important;
	left: -36px !important;
}

.acceptance .checkbox-wrap .nf-field-label label:after {
	left: -30px !important;
}

.nf-form-content .listcheckbox-container .nf-field-element label {
	margin-left: 36px !important;
}

/* Checked */
.checkbox-wrap .nf-field-element label.nf-checked-label:after, 
.checkbox-wrap .nf-field-label label.nf-checked-label:after, 
.listcheckbox-wrap .nf-field-element label.nf-checked-label:after, 
.listcheckbox-wrap .nf-field-label label.nf-checked-label:after {
	background-color: var(--Navy) !important;
}

.nf-field input[type=checkbox]:focus+label:after, 
.nf-field input[type=radio]:focus+label:after {
	box-shadow: none !important;
}

.checkbox-wrap .nf-field-element label.nf-checked-label:before, 
.checkbox-wrap .nf-field-label label.nf-checked-label:before, 
.listcheckbox-wrap .nf-field-element label.nf-checked-label:before, 
.listcheckbox-wrap .nf-field-label label.nf-checked-label:before {
	color: var(--Light) !important;
	line-height: 1 !important;
}

.checkbox-wrap .nf-field-element label:before, 
.checkbox-wrap .nf-field-label label:before, 
.listcheckbox-wrap .nf-field-element label:before, 
.listcheckbox-wrap .nf-field-label label:before {
	font-size: 14px !important;
	line-height: 1 !important;
}

.listcheckbox-container .nf-field-element label:before {
	left: -31px !important;
	top: 8px !important;
}

.acceptance.checkbox-container.label-right label:before {
	left: -25px !important;
	top: 6px !important;
}

/* Fine Print & Privacy Policy Accpetance */
.html-container .nf-field-element,
#nf-field-115-container label {
	color: var(--Navy, #013751);
	font-family: "Helvetica Neue";
	font-size: 14px !important;
	font-style: normal;
	font-weight: 400;
	line-height: 130% !important;
	letter-spacing: 0.28px;
}

#nf-field-115-container label {
	line-height: 24px !important;
}

#nf-field-115-container .nf-checked-label a {
	color: var(--Navy) !important;
}

.ninja-forms-req-symbol {
	color: var(--Navy) !important;
}

.nf-field label a {
	color: var(--Navy) !important;
}

/* =============================================================================
   PROJECT-SPECIFIC STYLES
   Add per-project CSS below this line (or in a separate enqueued stylesheet).
   Kit data-uid overrides (per-form success messages, color variants) go here.
============================================================================= */

.compare-box .fl-icon {
    vertical-align: top !important;
}

/* ----------------------------------------
   GLASS EFFECT
---------------------------------------- */

.glass.fl-module-box,
.pp-offcanvas-content {
    /* From https://css.glass */
	background: rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
	backdrop-filter: blur(5px) !important;
	-webkit-backdrop-filter: blur(5px) !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.pp-offcanvas-content {
	background: rgba(0, 0, 0, 0.5) !important;
}

.glass .fl-button {
	background: rgba(1, 55, 81, 0.49) !important;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
	backdrop-filter: blur(5px) !important;
	-webkit-backdrop-filter: blur(5px) !important;
	border: 1px solid rgba(1, 55, 81, 0.49) !important;
	color: var(--Light) !important;
}

/* ----------------------------------------
   STICKY
---------------------------------------- */
/* ----- HEADER ----- */


/* ----- SITE INNER ----- */
.sticky  {
	position: sticky;
	top: 24px;
}

.admin-bar .sticky {
	top: 56px;
}

.sticky-container > .sticky {
	align-self: start;
}

.sticky-container .fl-row-content-wrap,
.fl-row-content-wrap:has(.sticky-container) {
  overflow: visible;
}

@media only screen and (max-width: 992px) {
	.sticky {
		position: static;
	}
}

/* =============================================================================
   HEADER
============================================================================= */
/* ----------------------------------------
   DESKTOP MENU
---------------------------------------- */
header .menu {
    margin: 0 !important;
    justify-content: space-between;
    gap: 24px;
	flex-wrap: nowrap;
}

@media only screen and (max-width: 1400px) {
	header .menu {
		gap: 18px !important;
	}
	
	header .menu-item a {
		font-size: 15px !important;
	}
}

@media only screen and (max-width: 1250px) {
	header .glass.fl-module-box {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
	
	header .menu-item {
		text-align: center;
	}
	
	header .menu-item a {
		font-size: 14px !important;
	}
}

header .menu::after {
    display: none !important;
}

header .fl-module-menu,
header .fl-module-menu .fl-module-content,
header .fl-menu,
header nav,
header .menu {
    width: 100%;
}

header .menu-item a:hover,
header .menu-item.current-menu-item a {
	color: var(--Yellow) !important;
}

/* ----------------------------------------
   HEADER BUTTONS
---------------------------------------- */
header .fl-button {
	height: 36px;
	display: flex !important;
	align-items: center;
}

header .fl-button i {
	font-size: 18px !important;
	line-height: 1 !important;
}

@media only screen and (max-width: 760px) {
	header .fl-button-text {
		font-size: 16px !important;
	}
	
	header .fl-button i {
		font-size: 15px !important;
	}
}

/* ----------------------------------------
   OFF-CANVAS MOBILE MENU
---------------------------------------- */
.pp-offcanvas-toggle-text {
	border: 0 !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	width: 1px !important;
	white-space: nowrap !important;
}


/* =============================================================================
   FOOTER
============================================================================= */
footer a {
	color: var(--Light) !important;
	text-decoration: none !important;
}

footer a:hover {
	color: var(--Yellow) !important;
}

/* =============================================================================
   CARDS
============================================================================= */
.card,
.card .fl-module-content,
.card .pp-infobox-wrap,
.card .pp-infobox {
	height: 100%;
}

.card .pp-infobox {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.card.light-blue .pp-infobox {
	gap: 16px;
}

.card .pp-infobox::before,
.card .pp-infobox::after {
	display: none;
}

.card .pp-infobox-image {
	margin: 0 !important;
	line-height: 1;
}

.card img {
	object-fit: cover;
}

.card.one-half img {
	aspect-ratio: 672 / 250;
}

.card.one-third img {
	aspect-ratio: 424 / 250;
}

.card .pp-infobox-description {
	flex-grow: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 24px;
}

.card.has-button .pp-button {
	color: var(--Navy) !important;
}

.card.has-button .pp-button:hover {
	background-color: #fff !important;
	color: var(--Navy) !important;
}

@media only screen and (max-width: 760px) {
	#service-boxes .card:first-of-type {
		margin-left: 24px !important;
	}
	
	#service-boxes .card:last-of-type {
		margin-right: 24px !important;
	}
	
	.card.one-half img {
		aspect-ratio: 268 / 190;
	}
	
	.card.one-half .pp-button {
		padding: 8px 13px !important;
	}
}


/* ----------------------------------------
   BEFORE & AFTER SLIDER
---------------------------------------- */
.twentytwenty-container {
    overflow: hidden;
}

.twentytwenty-container,
.twentytwenty-container img {
    aspect-ratio: 722 / 400 !important;
    object-fit: cover;
}

.twentytwenty-before-label:before, 
.twentytwenty-after-label:before {
	padding: 8px 16px !important;
	border-radius: 21px;
	background: rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
	backdrop-filter: blur(5px) !important;
	-webkit-backdrop-filter: blur(5px) !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	color: #FFF;
	font-family: Montserrat;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.32px;
	text-transform: uppercase;
}

.twentytwenty-horizontal .twentytwenty-before-label:before,
.twentytwenty-horizontal .twentytwenty-after-label:before {
	bottom: 10px !important;
}

.twentytwenty-overlay .twentytwenty-after-label, 
.twentytwenty-overlay .twentytwenty-before-label {
	opacity: 1 !important;
}

.twentytwenty-handle {
	background-color: #fff;
}

.twentytwenty-handle .twentytwenty-left-arrow {
	border-right-color: var(--Navy) !important;
}
.twentytwenty-handle .twentytwenty-right-arrow {
	border-left-color: var(--Navy) !important;
}

.uabb-ba-container {
	border-radius: 8px;
}

@media only screen and (max-width: 760px) {
	.twentytwenty-before-label:before, 
	.twentytwenty-after-label:before {
		padding: 5px 8px !important;
		font-size: 12px;
		line-height: 0.79;
		letter-spacing: 0.24px;
		top: unset !important;
		transform: none !important;
	}
	
	.uabb-ba-container {
		border-radius: 4px;
	}
}

/* ----------------------------------------
   PROCESS TIMELINE
---------------------------------------- */
.project-process {
    position: relative;
}

.project-process::before {
	width: 1px;
    height: 100%;
    content: '';
    position: absolute;
    background-color: var(--Yellow);
    left: 55px;
    z-index: 1;
}

.project-process .process-item:first-of-type .pp-infobox {
	margin-top: 20px;
}

.project-process .process-item:last-of-type .pp-infobox-description {
	margin-bottom: 0 !important;
}

.process-item {
	z-index: 10;
}

.process-item .pp-infobox-title-wrapper {
	min-height: 75px;
	display: flex;
	align-items: center;
}

.process-item .pp-infobox-title {
	margin: 0 !important;
}

.process-item .pp-infobox-icon {
	padding: 10px 0 !important;
}

@media only screen and (max-width: 760px) {
	.project-process::before {
		left: 27px;
	}
	
	.process-item .pp-infobox-title-wrapper {
		min-height: 0;
		margin-bottom: 12px;
	}
	
	.process-item .pp-infobox-button {
		margin-left: -54px;
		padding-left: 2px;
		background-color: var(--Light);
		
	}
}

/* ----------------------------------------
   COMPARISON TABLE
---------------------------------------- */
.comparison-table th,
.comparison-table td {
    width: 20% !important;
}

.comparison-table tr th:nth-of-type(2),
.comparison-table tr td:nth-of-type(2) {
    background-color: var(--Light-Blue) !important;
}

.comparison-table tr th:first-of-type,
.comparison-table tr td:first-of-type {
    text-align: left !important;
}

@media only screen and (max-width: 1200px) {
    .comparison-table th {
        font-size: 20px !important;
    }
}

@media only screen and (max-width: 992px) {
    
    .comparison-table th {
        font-size: 16px !important;
        text-transform: uppercase !important;
        line-height: 1.25 !important;
        letter-spacing: 0.32 !important;
        font-weight: 700 !important;
    }
    
    .comparison-table tr th:first-of-type,
    .comparison-table tr td:first-of-type {
        text-align: center !important;
    }
    
    .comparison-table .pp-table-content {
        max-width: unset !important;
        width: auto !important;
    }
}

@media only screen and (max-width: 992px) {
    .comparison-table .pp-table-content tbody tr th, 
	.comparison-table .pp-table-content tbody tr td{
        width: 160px !important;
		min-width: 160px !important;
    }
	
	.comparison-table .tablesaw-stack tbody td, .tablesaw-stack tbody th {
        clear: none !important;
        float: none !important;
        width: 160px !important;
    }
	
	.comparison-table .tablesaw-stack td .tablesaw-cell-label {
		display: none !important;
	}
}

@media only screen and (max-width: 760px) {
    /*.comparison-table .tablesaw-stack td .tablesaw-cell-label,
    .comparison-table .tablesaw-stack td .tablesaw-cell-content {
        display: inline !important;
    }*/

    .comparison-table .tablesaw-stack tbody tr {
        display: table-row !important;
    }

    .comparison-table .tablesaw-stack tbody td {
        display: table-cell !important;
    }
}

/* ----------------------------------------
   LOGO MARQUEES + GRIDS
---------------------------------------- */
/* ----- GRIDS ----- */
.pp-logos-grid {
    justify-content: center;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.pp-logos-grid .pp-logo {
    width: auto !important;
    height: 55px;
}

@media only screen and (max-width: 1432px) {
    .pp-logos-grid .pp-logo,
    .pp-logos-grid .pp-logo img {
        height: 38px !important;
    }
}

@media only screen and (max-width: 992px) {
    .pp-logos-grid {
        justify-content: center !important;
        grid-row-gap: 24px !important;
    }
    
    .pp-logos-grid .pp-logo,
    .pp-logos-grid .pp-logo img {
        height: 35px !important;
    }
}

/* ----- MARQUEES ----- */
.pp-logos-ticker {
    align-items: center !important;
}

@media only screen and (max-width: 760px) {
	.pp-logos-ticker {
		gap: 32px !important;
	}
}

/* ----------------------------------------
   SCROLLBARS
---------------------------------------- */
.scroll-content {
    overflow-y: hidden;
    overflow-x: scroll;
}


/* ----------------------------------------
   INFINITE MARQUEES
---------------------------------------- */
.scrolling-content,
.scrolling-content-reversed {
  overflow: hidden;
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content;
  animation: infinite-scrolling linear infinite;
}

.scrolling-content-reversed {
  animation: infinite-scrolling-reversed linear infinite;
}

.scrolling-content:hover,
.scrolling-content-reversed:hover {
  animation-play-state: paused;
}

@keyframes infinite-scrolling {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes infinite-scrolling-reversed {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ----------------------------------------
   CARD SLIDER
---------------------------------------- */
.pp-card-slider {
    flex-direction: column !important;
    gap: 24px;
}
.pp-card-slider-container .pp-card-slider {
    max-width: 100% !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.pp-card-slider-item {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 80px;
}

.pp-card-slider-container .pp-card-slider-image {
    height: auto !important;
    margin: 0 !important;
}

.pp-card-slider-container .pp-card-slider-image img {
    border-radius: 12px !important;
    aspect-ratio: 636 / 424;
    object-fit: cover;
}

.pp-card-slider-content-wrap {
    margin: 0 !important;
    padding: 0 !important;
}

.pp-card-slider-item h3,
.pp-card-slider-item h2 {
    margin-bottom: 16px;
}

.swiper-pagination {
    width: calc(50% - 40px) !important;
    position: relative !important;
    bottom: unset !important;
    align-self: flex-start;
}

.pp-card-slider-container .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    opacity: 1 !important;
    background-color: var(--Navy) !important;
}

.pp-card-slider-container .swiper-pagination-bullet-active,
.pp-card-slider-container .swiper-pagination-bullet:hover {
    background-color: var(--Yellow) !important;
}

@media only screen and (max-width: 1200px) {
    .pp-card-slider-item {
        gap: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .pp-card-slider-item {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 40px;
    }
    
    .swiper-pagination {
        width: 100% !important;
    }
}

@media only screen and (max-width: 760px) {
    .pp-card-slider-item {
        gap: 24px;
    }
    
    .pp-card-slider-item h3, .pp-card-slider-item h2 {
        margin-bottom: 12px;
    }
    
    .pp-card-slider-content {
        text-align: left !important;
    }
}

.fl-builder-content-4764 {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
}


/* ----------------------------------------
   NUMBERED BOXES
---------------------------------------- */
.numbered-box .pp-heading-wrapper {
    background-image: linear-gradient(to bottom, transparent 24.5px, var(--Yellow) 24.5px, var(--Yellow) 25.5px, transparent 25.5px);
}

.numbered-box .pp-infobox-title-prefix {
    background-color: var(--Navy);
    border: 1px solid var(--Yellow);
    border-radius: 25px;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 8px 8px 20px;
}

.numbered-box .pp-infobox-title-wrapper,
.numbered-box .pp-infobox-description {
    padding: 0 24px;
}

@media only screen and (max-width: 760px) {
    .numbered-box .pp-infobox-title-wrapper,
    .numbered-box .pp-infobox-description {
        padding: 0;
    }
}


.pp-icon-list-item {
    display: flex !important;
    align-items: center;
}

/* =============================================================================
   FACETWP
============================================================================= */
.facetwp-radio .facetwp-counter {
  display: none;
}

.facetwp-facet {
	margin-bottom: 0 !important;
}

.blog-filters .facetwp-type-radio {
	display: flex;
	gap: 16px 24px;
	flex-wrap: wrap;
}

.blog-filters .facetwp-radio {
	padding: 8px 24px !important;
	margin: 0 !important;
	background-image: none !important;
	border: 1px solid var(--Navy);
	border-radius: 67px;
	color: var(--Navy, #013751);
	text-align: center;
	font-family: Archer;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	flex-shrink: 0;
}

.facetwp-facet input.facetwp-search {
	margin: 0 !important;
	padding: 8px 38px 8px 16px !important;
	border: 0 !important;
	border-bottom: 1px solid var(--Navy) !important;
	background-color: var(--Light) !important;
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.36px;
	color: var(--Navy);
	border-radius: 0;
	background-image: url('../../uploads/blog-search.png');
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: right 16px center;
}

.facetwp-facet input.facetwp-search::placeholder {
	color: var(--Navy, #013751);
	font-family: Archer;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	opacity: 1 !important;
}

.facetwp-facet-blog_search .facetwp-icon {
	display: none;
}

.facetwp-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.facetwp-pager .facetwp-page {
    padding: 0 10px;
    border: 1px solid var(--Blue);
    background: transparent;
    font-family: Montserrat;
    font-weight: 400 !important;
    line-height: 32px;
    min-width: 32px;
    text-align: center;
	border-radius: 8px;
	margin: 0 !important;
}

.facetwp-pager .facetwp-page.active,
.facetwp-pager .facetwp-page:hover {
    background: var(--Blue);
    color: var(--Light);
}

.facetwp-pager .facetwp-page.next,
.facetwp-pager .facetwp-page.prev {
    border: 0;
    font-size: 24px;
    padding-top: 3px;
}

.facetwp-pager .facetwp-page.next:hover,
.facetwp-pager .facetwp-page.prev:hover {
    background: transparent;
    color: var(--Navy);
}

.facetwp-selections ul li  {
	display: flex !important;
	gap: 16px;
}

.blog-grid .post-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
    color: var(--Light);
}

.blog-grid .post-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-grid .category {
    color: var(--Light-Blue);
    text-transform: uppercase;
}

.blog-grid .featured-image img {
    aspect-ratio: 425/250;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
}

.blog-grid .title {
    margin-bottom: 0;
}



/* =============================================================================
   ABOUT PAGE
============================================================================= */
.team img {
    aspect-ratio: 424/350;
    margin-bottom: 8px;
}

.team.card .pp-infobox {
    gap: 16px;
}

.recognized-work-list .pp-heading-wrapper {
    align-items: center !important;
    gap: 16px;
}

.recognized-work-list .pp-infobox-title {
    margin: 0 !important;
}

.recognized-work-list ul {
    margin-left: 24px;
    margin-bottom: 0;
}

/* =============================================================================
   TESTIMONIAL SLIDER
============================================================================= */
.testimonials-with-rating .pp-content-wrapper::before {
    content: '';
    background-image: url('../../uploads/5stars.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 136px;
    height: 24px;
    display: block;
    margin: 12px auto 40px;
    
}

.testimonials-with-rating .pp-testimonials-heading {
    margin-bottom: 40px !important;
}


@media only screen and (max-width: 760px) {
    .testimonials-with-rating .pp-content-wrapper::before {
        margin: 12px auto 24px;
    }
    
    .testimonials-with-rating .pp-testimonials-heading {
        margin-bottom: 24px !important;
    }
}

/* =============================================================================
   BLOG POST
============================================================================= */
.uabb-social-share-wrap .uabb-ss-grid-item {
    margin: 0 !important;
}

.uabb-ss-minimal {
    gap: 24px !important;
}

.uabb-ss-icon {
	width: auto !important;
}

.single-post .fl-module-fl-post-content img {
	border-radius: 20px;
}

.single-post .nav-links a,
.single-post .fl-module-fl-post-content a {
	color: var(--Navy) !important;
	text-decoration: underline !important;
}

.single-post .nav-links a:hover,
.single-post .fl-module-fl-post-content a:hover {
	text-decoration: none !important;
}

.single-post .fl-module-fl-post-content h4 {
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}