/*
 Theme Name:   Catalant Theme 2025
 Theme URI:    https://catalant.com
 Description:  Child Theme of GeneratePress
 Author:       Catalant
 Author URI:   https://catalant.com
 Template:     generatepress
 Version:      0.1
*/

/* ========TYPOGRAPHY======== */

:root {
/* Code below acts as control panel for sitewide text-sizing. Utilizes clamp values for smooth resizing between screen sizes. Styles below map to global styles via the GeneratePress Global Styles editor. */
	--headline-font: Calluna, serif; 
	--body-font: Libre Franklin, sans-serif; 
	--gp-font--calluna: Calluna, serif;
	--gp-font--libre-franklin: Libre Franklin, sans-serif;
	--fs-body: clamp(1rem, calc(0.96rem + 0.21vw), 1.125rem);
	--fs-headline-xl: clamp(2.75rem, calc(2.1rem + 3vw), 4.5rem);
	--fs-headline-h1: clamp(2.44rem, calc(1.96rem + 2.41vw), 3.89rem);
	--fs-headline-h2: clamp(1.95rem, calc(1.69rem + 1.33vw), 2.75rem);
	--fs-headline-h3: clamp(1.56rem, calc(1.44rem + 0.64vw), 1.94rem);
	--fs-headline-h4: clamp(1.25rem, calc(1.21rem + 0.21vw), 1.38rem);
	--fs-headline-h5: clamp(1.25rem, calc(1.21rem + 0.21vw), 1.38rem);
	--fs-headline-h6: clamp(1rem, calc(0.97rem + 0.17vw), 1.125rem); 
	--fs-headline-pre: clamp(0.97rem, calc(1.01rem + -0.05vw), 1rem); 
	--fs-headline-body-xl: clamp(1.27rem, calc(1.15rem + 0.59vw), 1.62rem); 
	--fs-headline-body-l: clamp(1.13rem, calc(1.05rem + 0.38vw), 1.35rem);
	--fs-headline-body-s: clamp(0.89rem, calc(0.87rem + 0.08vw), 0.94rem);
	--fs-headline-body-xs: clamp(0.78rem, calc(0.79rem + -0.01vw), 0.79rem);
	--fs-headline-body-xxs: clamp(0.70rem, calc(0.71rem + -0.01vw), 0.71rem);
	--text-s: clamp(0.89rem, calc(0.87rem + 0.08vw), 0.94rem); 
	--text-xs: clamp(0.78 rem, calc(0.79rem + -0.01vw), 0.79rem);
}

/* Default Body / p font settings */
p, div {
	font-size: var(--fs-body);
	line-height: 1.8;
	font-family: var(--body-font);
}

p {
	margin-bottom: 1.5rem;
}

/* Default Headings weight, margin, font-family */
h1, h2, h3, h4, h5, h6, .gb-headline-xl, .gb-headline-h1, .gb-headline-h2, .gb-headline-h3, .gb-headline-h4, .gb-headline-h5, .gb-headline-h6, .gb-headline-pre {
	margin-bottom: 1rem;
}


.gb-headline-xl {
	font-size: var(--fs-headline-xl);
	line-height: 1.05;
}

h1, .gb-headline-h1 {
	font-size: var(--fs-headline-h1);
	line-height: 1.05;
}

h2, .gb-headline-h2 {
	font-size: var(--fs-headline-h2);
	line-height: 1.1;
}

h3, .gb-headline-h3 {
	font-size: var(--fs-headline-h3);
	line-height: 1.15;
}

h4, .gb-headline-h4 {
	font-size: var(--fs-headline-h4);
	line-height: 1.1;
}

h5, .gb-headline-h5 {
	font-size: var(--fs-headline-h5);
	line-height: 1.25;
}

h6, .gb-headline-h6 {
	font-size: var(--fs-headline-h6);
	line-height: 1.4;
}

.gb-headline-pre {
	font-size: var(--fs-headline-pre);
	text-transform: uppercase;
	letter-spacing: .1em;
	font-family: var(--body-font);
}

.gb-headline-label {
	font-size: var(--text-s);
	text-transform: uppercase;
	letter-spacing: .1em;
	font-family: var(--body-font);
	font-weight:600;
}

/* Additional Body font-size */

.gb-headline-body-xl {
	font-family: var(--body-font);
	font-size: var(--fs-headline-body-xl);
}

.gb-headline-body-l {
	font-family: var(--body-font);
	font-size: var(--fs-headline-body-l);
}

.gb-headline-body-s {
	font-family: var(--body-font);
	font-size: var(--fs-headline-body-s);
}

.gb-headline-body-xs {
	font-family: var(--body-font);
	font-size: var(--fs-headline-body-xs);
}

.gb-headline-body-xxs {
	font-family: var(--body-font);
	font-size:var(--fs-headline-body-xxs);
}


/* Button Global line height */
.gb-button {
	line-height: 1em;
}

/* Remove bottom margin on last paragraph */
p:not(:first-of-type):last-of-type {
  margin-bottom: 0;
}

/* Remove all margin on, use for complex text configurations */
	.m-0 {
		margin:0;
}

/* Preview style above in editor */
.block-editor-block-list__layout .gb-container p:nth-last-child(2) {
	margin-bottom: 0px;
}

/* List Styles */

li {
	padding-bottom: .5rem;
}

/* Remove bottom margin on last li */
li:not(nav li):last-child:last-of-type {
	padding-bottom:0;
}

ol, ul {
	margin: 0 0 1rem 1.25rem;
}

/* Adds top margin to H2-H6 for ideal legibility for long blocks of text. Used on blog posts and other thought leadership content. */
.long-form-content :is(h2, h3, h4, h5, h6) {
	margin-top: 1.5em;
}

/* ========UTILITIES======== */

/* Remove underline */
.no-ul, .no-ul a {
	text-decoration: none;
}

.weight-700 {
	font-weight:700;
}

.balance {
	text-wrap: balance;
}

p, div, blockquote, li {
	text-wrap: pretty;
}

.first-line-bold::first-line {
    font-weight: 600;
	font-size: var(--fs-headline-body-xl);
}

.WYSIWYG-stat h1 {
  background: #4aa3e317;
  padding: 10px;
  display: block;
  border-radius: 10px;
  color: var(--base-700);
	width:fit-content;
}

.WYSIWYG-stat > h1 {
  margin-top: -0.25rem;
}

.offering-list-wysiwyg p:not(:first-of-type) {
font-size: var(--fs-headline-body-s);
}


.snippet-callout {
	border-radius:var(--radius-m);
	background-color: var(--base-200);
	padding:clamp(1.5rem, 1.197rem + 1.515vw, 2.5rem);
	margin-top:1.5rem;
}

.pro-tip::before {
    content: '\f0eb'; /* Info circle icon */
	font-family: 'Font Awesome 6 Classic', 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    color: var(--blue-pri);
    margin-right: .5rem;
	font-weight:400;
}

.pro-tip {
	background-color:white;
	padding:clamp(1.3rem,calc(1.0455rem + 1.2727vw),2rem);
	border: 1px var(--base-400) solid;
	border-radius:var(--radius-m);
	margin-bottom:2rem;
	font-size: var(--fs-headline-body-s);
}


/*hides content*/

.display-hide {
	display:none;
}

.postid-41553 .capability__offering-lists {
	display:none;
}

.postid-41194 .capability__client-outcomes, .postid-41194 .capability__meet-our-experts  {
	display:none;
}

.postid-41193 .capability__client-outcomes, .postid-41193 .capability__meet-our-experts  {
	display:none;
}

/*Adds additional padding to underline that appears below linked text, and underline that appears below unstyled button links */

p > a, .gb-btn-unstyled, .query-loop__card-title a {
    text-underline-offset: 5px;
}


/* Adds special underline effect to unstyled button classes; "p.cta" included to address legacy styles from previous WordPress environment */

.gb-btn-unstyled, p.cta {
	background: linear-gradient(to right, var(--base-600), var(--base-600)), linear-gradient(to right, var(--blue-pri), var(--blue-pri), var(--blue-pri));
    background-size: 100% 2px, 0 2px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
}

.gb-btn-unstyled_noLine {
	background: none;
}

.gb-btn-unstyled:hover, p.cta:hover {
    background-size: 0 2px, 100% 2px;
}

p.cta i {
	font-size: var(--text-s);
}

/* Address legacy styles from previous WordPress environment impacting blog-callout and blog-cta classes*/

.blog-cta h1, .blog-cta h2, .blog-cta h3, .blog-cta h4, .blog-cta h5, .blog-cta h6 {
  	margin-top:0;
	color:var(--base-800)!important;
}

.blog-callout h1, .blog-callout h2, .blog-callout h3, .blog-callout h4, .blog-callout h5, .blog-callout h6 {
  	margin-top:0;
}

/* ========PlugIn / Block-specific Styles ======== */

/* Make breadcrumbs from Yoast Plugin hidden to users but visible to search engines */

.yoast-breadcrumbs {
	display:none;
}

/* Blog post breadcrumb styles used in conjunction with Yoast PlugIn*/

/*.yoast-breadcrumbs i {
	font-size: var(--fs-headline-body-xs);
	padding:0 5px;
}


.yoast-breadcrumbs a {
	text-decoration:none;
}

.breadcrumb_last {
} */

/* Adjusts core WP author block styles to integrate with GenerateBlocks styles*/
.wp-block-post-author {
    align-items: center;
	margin-bottom: .5em; /* should match default margin-bottom value established for core H1 - H6 classes */
}

.wp-block-post-author p {
	font-size: var(--fs-headline-body-s);
}


/* Border Radius */
:root {
	--radius-xs: .125rem;
	--radius-s: .25rem;
	--radius-m: .5rem;
	--radius-l: 1rem;
	--radius-xl: 1.5rem;
	--radius-xxl: 5rem;
}

/* CONTAINER HEIGHT: Use for outer-countainer; padding varies from top to bottom but is the same from left to right */
:root {
	--padding-xs: 1rem clamp(1rem, 0.848rem + 0.758vw, 1.5rem) 1rem clamp(1rem, 0.848rem + 0.758vw, 1.5rem);
	--padding-s: clamp(1.5rem, 1.5rem + 0vw, 1.5rem) clamp(1rem, 0.848rem + 0.758vw, 1.5rem) clamp(1.5rem, 1.5rem + 0vw, 1.5rem) clamp(1rem, 0.848rem + 0.758vw, 1.5rem);
	--padding-m: clamp(1.5rem, 1.197rem + 1.515vw, 2.5rem) clamp(1rem, 0.848rem + 0.758vw, 1.5rem) clamp(1.5rem, 1.197rem + 1.515vw, 2.5rem) clamp(1rem, 0.848rem + 0.758vw, 1.5rem); 
	--padding-d: clamp(3rem, 2.394rem + 3.03vw, 5rem) clamp(1rem, 0.848rem + 0.758vw, 1.5rem) clamp(3rem, 2.394rem + 3.03vw, 5rem) clamp(1rem, 0.848rem + 0.758vw, 1.5rem);
	--padding-d__zero-l-r: clamp(3rem, 2.394rem + 3.03vw, 5rem) 0;
	--padding-d__0b: clamp(3rem, 2.394rem + 3.03vw, 5rem) clamp(1rem, 0.848rem + 0.758vw, 1.5rem) 0 clamp(1rem, 0.848rem + 0.758vw, 1.5rem);
	--padding-l: clamp(4.5rem, 3.591rem + 4.545vw, 7.5rem) clamp(1rem, 0.848rem + 0.758vw, 1.5rem) clamp(4.5rem, 3.591rem + 4.545vw, 7.5rem) clamp(1rem, 0.848rem + 0.758vw, 1.5rem); 
	--padding-xl: clamp(6rem, 4.788rem + 6.061vw, 10rem) clamp(1rem, 0.848rem + 0.758vw, 1.5rem) clamp(6rem, 4.788rem + 6.061vw, 10rem) clamp(1rem, 0.848rem + 0.758vw, 1.5rem);
}

.gb-container-section-xs {
	padding: var(--padding-xs);
}

.gb-container-section-s {
	padding: var(--padding-s);
}

.gb-container-section-m {
	padding: var(--padding-m);
}

.gb-container-section-d {
	padding: var(--padding-d);
}

.gb-container-section-d__zero-l-r {
	padding: var(--padding-d__zero-l-r);
}

.gb-container-section-d__0b {
	padding: var(--padding-d__0b);
}

.gb-container-section-l {
	padding: var(--padding-l);
}

.gb-container-section-xl {
	padding: var(--padding-xl);
}


/* CONTAINER WIDTH: Use for inner-container in combination with CONTAINER HEIGHT styles */
:root {
	--width-xxs: 40rem;
	--width-xs: 48rem;
	--width-s: 64rem;
	--width-default: 84rem;
	--width-l: 94rem;
}

.gb-width-xxs {
	max-width: var(--width-xxs);
	margin-left: auto;
    margin-right: auto;
	width: 100%;
}

.gb-width-xs {
	max-width: var(--width-xs);
	margin-left: auto;
    margin-right: auto;
	width: 100%;
}

.gb-width-s {
	max-width: var(--width-s);
	margin-left: auto;
    margin-right: auto;
	width: 100%;
}

.gb-width-default {
	max-width: var(--width-default);
	margin-left: auto;
    margin-right: auto;
	width: 100%;
}

.gb-width-l {
	max-width: var(--width-l);
	margin-left: auto;
    margin-right: auto;
	width: 100%;
}

/* Reading Progress Bar for blog posts */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%; /* Start empty */
  height: 5px; /* Adjust thickness */
  background: var(--blue-sec); /* Progress bar color */
  z-index: 9999; /* Stay on top of everything */
  transition: width 0.1s ease-out; /* Smooth update */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Only apply this when logged in (WordPress adds .admin-bar class) */
.admin-bar #scroll-progress {
  top: 32px; /* Moves the bar below the WP admin toolbar */
}

@media (max-width: 782px) {
  .admin-bar #scroll-progress {
    top: 46px; /* Adjusts for smaller screens */
  }
}




/* default Dialog box browser style reset*/

dialog {
  border: none !important;
  border-radius: var(--radius-m);
}

.modal-content {
	padding: 0 3% 3% 3%;
}

.modalx {
	background-color:var(--base-600);
	padding:.75rem 1rem;
	border-radius: var(--radius-s);
}

@media (max-width: 767px) {
	.modalx {
		padding:.25rem .5rem;
	}

	.modal-content {
	padding: 0;
	}
}

/*===========NAVIGATION & MENU STYLES============*/

nav .gb-btn-primary__dark a, nav .gb-btn-primary__dark_outline a {
	padding:0!important;
	line-height:normal!important;
	font-weight:500;
}

nav .gb-btn-primary:hover {
	transform:none;
}

.site-header .inside-header {
	height:3rem;
	max-width: var(--width-default);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0;
}

.mega-menu-content p {
	margin-bottom: 0px;
}

#menu-item-39795 {
	margin-right:1rem;
}

/* Adjusts nav so that it sits below black WP admin bar when viewed in the WP editor; does not impact frontend */
.admin-bar .site-header {
    margin-top: 32px; /* Adjust based on the height of the admin bar */
}

/* Supports JS that shrinks navbar height on scroll */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000; /* Ensures above other elements */
    padding: var(--padding-s);
	transition: all 0.3s ease;
	background-color: white!important;
}

.scrolled .site-header {
	background-color:rgba(255,255,255,1)!important;
	box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.1);
}

.site-header:hover .has-mega-menu a {
	color:var(--base-600);
}

/* Prevent content from jumping up when header becomes sticky on pages that display primary navigation; excludes post types/pages that do not display the primary nav  */

body:not(.single-expert-ld-article) {
    padding-top: 80px; /* Adjust based on header height */
}

/* Hide mega menus by default */
.mega-menu-content {
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: 100%;
  /*min-width: 800px;*/
  background: white;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
padding:var(--padding-d);
}

/* Mega menu visible state */
.mega-menu-content.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* Make menu visible in editor */
:where(.editor-styles-wrapper) .mega-menu-content {
    visibility:visible!important;
    opacity:1!important;
}
 
  
  /* Overlay background */
  #mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  #mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

@media (max-width: 767px) {
    .desktop-menu {
        display: none;
    }
}


/* Mobile Navigation - Essential CSS Only */
.nav-megamenu-mobile {
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: none;
    overflow-y: auto;
	margin-top: 100px;
}

body.mobile-menu-open .nav-megamenu-mobile {
    display: block;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-subpanel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s ease;
    padding: 20px;
}

.mobile-subpanel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    height: auto !important;
    min-height: 120vh;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

#mobile-main-panel {
    transform: translateX(-100%);
}

#mobile-main-panel.active {
    transform: translateX(0);
}

.mobile-panel-header {
    display: flex;
    align-items: center;
	padding-bottom:1rem;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .5rem 0;
    text-decoration: none;
    font-size: .85rem;
    cursor: pointer;
}

.mobile-nav-item:hover {
    background: #e9ecef;
}

.mobile-expander:after {
    content: "→";
    margin-left: 10px;
}

.mobile-back-btn {
    background: none;
    border: none;
    color: #007cba;
    cursor: pointer;
    font-size: 1rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 20px;
    height: 3px;
    margin: 2px 0;
    transition: all 0.3s ease;
	border-radius:3px;
	background: var(--base-600);
}

/* Hamburger Animation - Fixed X alignment */
body.mobile-menu-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

body.mobile-menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1025px) {
    .nav-megamenu-mobile,
    .mobile-menu-toggle {
        display: none !important;
    }
}

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

.mobile-nav-list > li {
	border-bottom:1px var(--base-700) solid;
	padding: 0;
}

/* --- Control Mobile Nav Item Click/Focus State --- */
.mobile-nav-list a.mobile-nav-item:active {
    background-color: var(--base-800) !important;
    color: white !important;
}


/* Completely disable GeneratePress mobile menu system */
.menu-toggle,
.main-navigation .menu-toggle,
.mobile-menu-control-wrapper,
.mobile-menu-control,
.main-navigation .mobile-menu-control-wrapper,
.main-navigation .mobile-menu-control {
    display: none !important;
}

/* Force desktop navigation to stay hidden on mobile */
@media (max-width: 1024px) {
    .main-navigation .main-nav {
        display: none !important;
    }
    
    .main-navigation .mobile-menu-control-wrapper {
        display: none !important;
    }
    
    /* Hide any GP mobile menu containers */
    .main-navigation .mobile-menu-control,
    .main-navigation .mobile-menu-control-wrapper {
        display: none !important;
    }
}

/* Force hide hamburger specifically */
button.menu-toggle {
    display: none !important;
}

/* Format hamburger menu now that we've cleared out the GP default */
/* Position hamburger button in header */
.mobile-menu-toggle {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 10000;
	background-color:var(--base-100)!important;
	border-radius:var(--radius-s);
}

/* Ensure it only shows on mobile */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* --- Editor-Only Styles to Make Mobile Menu Visible --- */

/*
 * This targets your mobile menu wrapper but only when it's
 * inside the WordPress editor's content area.
 * It has NO effect on the live website.
*/
.editor-styles-wrapper .nav-megamenu-mobile.gb-hide-on-desktop {
    display: block !important;
    border: 3px dashed #007cba; /* Optional: A blue dashed border to remind you it's an editor view */
    padding: 20px;
}

/*
 * This makes the individual panels inside stack vertically in the editor
 * instead of overlapping, so you can see and edit them all at once.
*/
.editor-styles-wrapper .mobile-subpanel {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important; /* Resets the slide-in transform */
    margin-bottom: 30px !important;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}



/* Advanced full bleed column layouts with simplified code, should be used to phase out full bleed column layouts below */
.fullbleed-column-parent__left {
padding-left: calc((100vw - 84rem) / 2);
padding-right: 3rem;
padding-top: clamp(3rem, 2.394rem + 3.03vw, 5rem);
padding-bottom: clamp(3rem, 2.394rem + 3.03vw, 5rem);
}

.fullbleed-column-parent__right {
padding-right: calc((100vw - 84rem) / 2);
Padding-left: 3rem;
padding-top: clamp(3rem, 2.394rem + 3.03vw, 5rem);
padding-bottom: clamp(3rem, 2.394rem + 3.03vw, 5rem);
}

@media (max-width: 87rem) {
.fullbleed-column-parent__right {
	padding-right:clamp(1rem, 0.848rem + 0.758vw, 1.5rem);
}

.fullbleed-column-parent__left {
	padding-left:clamp(1rem, 0.848rem + 0.758vw, 1.5rem);
}
}

.fullbleed-element-left {
padding-left: 0!important;
}

.fullbleed-element-right {
padding-right: 0!important;
}


/* Advanced, full bleed column layouts. Add desired background color to .fullbleed-column-- classes directly in the GB editor */
.fullbleed-columns-wrapper {
    width: 100vw;
    margin: 0 auto!important;
	padding:0;
}

.fullbleed-columns-container {
    margin: 0 auto!important;
    display: flex;
    justify-content: center;
}

.fullbleed-column--left_33 {
    width: 33.33%;
}

.fullbleed-column--left_40 {
    width: 40%;
}

.fullbleed-column--left_66 {
    width: 66.66%;
}

.fullbleed-column--left_100 {
    width: 100%;
}

.fullbleed-column--right_33 {
    width: 33.33%;	
}

.fullbleed-column--right_60 {
    width: 60%;	
}

.fullbleed-column--right_66 {
    width: 66.66%;	
}

.fullbleed-column--right_50, .fullbleed-column--left_50 {
    width: 50%;	
}

.fullbleed-column--left_33 .fullbleed-columns-inner,
.fullbleed-column--left_40 .fullbleed-columns-inner, 
.fullbleed-column--left_66 .fullbleed-columns-inner,
.fullbleed-column--left_50 .fullbleed-columns-inner {
padding-left: calc((100vw - 84rem) / 2);
padding-right:3rem;
}

.fullbleed-column--left_100 .fullbleed-columns-inner {
	padding-left: calc((100vw - 84rem) / 2);
}

.fullbleed-column--right_33 .fullbleed-columns-inner,
.fullbleed-column--right_60 .fullbleed-columns-inner, 
.fullbleed-column--right_66 .fullbleed-columns-inner, 
.fullbleed-column--right_50 .fullbleed-columns-inner {
padding-right: calc((100vw - 84rem) / 2);
padding-left: 3rem;
}

.main-navigation .menu-toggle {
	color: var(--base-800);
}

.menu-toggle {
		
	padding: 0 10px;
	line-height: 2rem;
	font-size: 1rem;
}

	.inside-header {
	padding: var(--padding-s);
}

.nav-float-right #site-navigation {
	margin-left:0;
	width:100%;
}

#primary-menu {
	width:100%;
}

/* Displays Log In and other buttons on right portion of primary-menu */

#menu-menu-1 > li:nth-child(4) {
  margin-left: auto;
}


@media (max-width: 87rem) {
    .fullbleed-column--right_33, .fullbleed-column--left_33,
	.fullbleed-column--left_40, .fullbleed-column--right_60, 
	.fullbleed-column--left_66, .fullbleed-column--right_66, 
	.fullbleed-column--right_50, .fullbleed-column--left_50, 
	.fullbleed-column--left_100 {
        padding: var(--padding-d);
    }
	
	.fullbleed-columns-inner {
	padding:0!important;
	}

}

@media (max-width: 1025px) {
    
	.mega-menu-content {
		overflow-y: auto;
   	 	max-height: 100vh;
	}
	
	.site-header .inside-header {
            height: auto;
	}
	
	.fullbleed-columns-container {
        flex-direction: column;
    }
    
    .fullbleed-column--right_33, .fullbleed-column--left_33, 
	.fullbleed-column--left_66, .fullbleed-column--right_66, 
	.fullbleed-column--right_50, .fullbleed-column--left_50 {
        width: 100%;
    }
}
	
/* Makes full bleed column configurations visible in backend editor, does not apply to frontend */	

.block-editor-block-list__layout .fullbleed-columns-container {
    width: 100% !important;
    min-width: 0 !important;
    display:flex!important;
}
	
	.checkmark-bullet-icon::before {
    font: var(--fa-font-solid);
    content: '\f058';
}

/*Simple fade-in effect on page load*/


.fade-in-text {
 
  animation: fadeIn 1s;
  -webkit-animation: fadeIn 1s;
  -moz-animation: fadeIn 1s;
  -o-animation: fadeIn 1s;
  -ms-animation: fadeIn 1s;

}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


/* Corrects formatting conflicts stemming from ACF's WYSIWYG input */
.offering-casestudy__wysiwyg-correction * {
	font-size: var(--fs-headline-body-s);
	color: var(--base-300);
}

.wysiwyg-correction-basictext p {
		font-size: var(--fs-headline-body-s);
}

p:empty {
    display: none;  
}


/* Auto-Open Tabcordion Styles */

.tc-tabs-menu-item__auto-open {
  position: relative;
  overflow: hidden;
}

/* variations for light background */

.tc-tabs-menu-item:is(.gb-block-is-current,.gb-block-is-current:hover,.gb-block-is-current:focus) h3.tab-title_light {
    color: white;
}

.tc-tabs-menu-item:is(:hover,:focus) h3.tab-title_light {
	color:var(--base-300);
}

/* variations for horizontal configuration */
.tc-tabs-menu-item:is(.gb-block-is-current,.gb-block-is-current:hover,.gb-block-is-current:focus) h3.horiz-tabcordion-menu__nosizediff {
	font-size:100%;
	margin-bottom:0;
}

.tc-tabs-menu-item:is(:hover,:focus) h3.horiz-tabcordion-menu__nosizediff {
	color: var(--base-500);
}


/* applies h4 sizing while still leveraging the tabcordion infrastructure that's configured to h3 */
h3.horiz-tabcordion-menu__nosizediff {
	font-size: var(--fs-headline-h4)!important;
}

.horiz-tabcordion-menu .tc-tabs-menu-item {
	padding:1.5rem 1.5rem;
	margin:0 1rem;
}

/* Static light gray base line */
.tc-tabs-menu-item__auto-open::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  /*background-color: #e0e0e0;*/
	background-color: rgba(157, 156, 176, 0.3);
  z-index: 0;
}



/* Animated gradient progress bar */
.tc-tabs-menu-item__auto-open::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
	background: linear-gradient(90deg, var(--base-200), var(--base-600));
  background-size: 200% auto;
  background-position: 0% center;
  opacity: 1;
  z-index: 1;
  transition: none;
}

/* Triggered when JS adds .animate-border */
.tc-tabs-menu-item__auto-open.animate-border::after {
  animation:
    tabProgress var(--tab-duration) cubic-bezier(0.0, 0.0, 0.8, 1) forwards,
    moveGradient var(--tab-duration) linear forwards,
    fadeOut 0.4s ease-out forwards;
  animation-delay: 0s, 0s, var(--fade-delay);
}


/* Keyframes */
@keyframes tabProgress {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes moveGradient {
  from { background-position: 0% center; }
  to { background-position: 100% center; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Typeform Embed Links - apply to raw html blocks containign typeform embed scripts*/

.typeform-link-style-1 a {
	text-decoration:none!important;
	color:var(--base-700)!important;
	font-weight:700;
	font-size:.9rem!important;
}

.typeform-link-style-1 a:hover {
	color:var(--blue-sec)!important;
}

.typeform-link-style-1 a::after {
  content: "\f0da"; /* FontAwesome unicode for icon */
  font-family: "Font Awesome 6 Pro";
  font-weight: 900; /* 900 for solid icons, 400 for regular */
  margin-left: 0.4em;
  display: inline-block;
}

/* Scrolling logo bar test */

.logo-marquee-container {
  overflow: hidden;
  position: relative;
}

.logo-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  animation: scroll-marquee 50s linear infinite;
}

.logo-marquee {
  display: flex;
  align-items: center;
  gap: 7rem;
  flex-shrink: 0;
}

.logo-spacer {
  width: 0; /* Counts as a final flex item so the last logo still receives a trailing gap before the clone begins */
  flex-shrink: 0;
}

.logo-box {
  height: 30px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.logo-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive scaling */

@media (max-width: 767px) {
  .logo-box {
    height: 50px;
    width: 75px;
  }
  .logo-marquee {
    gap: 2rem;
  }
	.logo-marquee-track {
    animation-duration: 50s;
  }
}

/* Animations */

.fade-in-pageload {
  opacity: 0;
  animation: fadeInAnimation 1s ease forwards;
}

@keyframes fadeInAnimation {
  to {
    opacity: 1;
  }
}

/* JS reveal on load */
.js-reveal-on-load {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}

.revealed {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

/* Recommended workaround for linking entire containers in GB 2.0 that makes a stretched clickable area using whatever <a> is located within the container. Configured to not interrupt other styles.  */
/* Make container stretch clickable */
.stretch-link {
  position: relative;
}

/* Reset visible link styles */
.stretch-link a {
  color: inherit;
  text-decoration: none;
  font: inherit;
  background: none;
}

/* Stretch click area invisibly */
.stretch-link a::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* Accessibility for focus-visible */
.stretch-link a:is(:focus-visible)::after {
  outline: 2px solid;
}

/* Clean up hover/focus outline */
.stretch-link a:is(:hover, :focus) {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

/* Pulse animation */

@keyframes slowPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes backgroundFade {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.7); /* smaller circle */
  }
  50% {
    opacity: 0.3;
    transform: scale(0.9); /* slight pulse */
  }
}

.slow-pulse {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
	margin-top: 2rem;
}

.slow-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color:var(--base-500);
  border-radius: 50%;
  animation: backgroundFade 2.5s infinite ease-in-out;
  z-index: 0;
}

.slow-pulse p {
  margin: 0;
  padding: 0;
  line-height: 1;
  z-index: 1;
}

.slow-pulse p > i {
  animation: slowPulse 2.5s infinite ease-in-out;
  /*color: white;*/
  z-index: 1;
  position: relative;
}

.square {
  aspect-ratio: 1 / 1;
}

/* SwiperJS Styles */
.swiper {
    width: 100%;
    height: auto;
}

/* Individual Slides */
.swiper-slide {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

/* Navigation Buttons */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;   /* Remove absolute positioning */
  top: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 8px;                 /* Add spacing if needed */
  transform: none !important;    /* Remove any transforms */
  display: inline-flex !important; /* Make sure they're visible and inline */
  align-items: center;
  justify-content: center;
}

/* Pagination */
.swiper-pagination-bullet-active {
    background: #000;
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.slide-progress-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: var(--base-500); /* Progress bar color */
  transition: width 0s;
  z-index: 10;
}
.swiper-slide {
  position: relative; /* Ensure the progress bar is positioned correctly */
}

.swiper-autoprogress-bulletpills .swiper-pagination-bullet {
     width: 16px;
     height: 8px;
     border-radius: 8px;
     background: var(--base-200);
     opacity: 1;
     margin: 0 6px !important;
     transition: background 0.3s, width 0.3s;
   }

.swiper-autoprogress-bulletpills .swiper-pagination-bullet-active {
     background: var(--base-600);
     width: 32px;
     border-radius: 8px;
   }

.swiper-autoprogress-bulletpills .swiper-pagination {
     display: flex;
     align-items: center;
     margin-top: 2rem;
	position: relative;
    justify-content: end;
   }

/* Pill + track style slider */

.slider-track {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin: 24px auto 0 auto;
  overflow: hidden;
}

.slider-pill {
  position: absolute;
  top: 0;
  left: 0;
  width: 8%; /*pill length*/
  height: 100%;
  background: #fff;
  border-radius: 3px;
  transition: left 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.slider-track_light {
	  background: var(--base-200);
}

.slider-pill_light {
	  background: var(--base-400)!important;
}

/* Quote Slider */

.quote-slider {
  position: relative;
}

.autoplay-progress {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 48px;
  height: 48px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.autoplay-progress svg {
  transform: rotate(-90deg);
  width: 48px;
  height: 48px;
}
.autoplay-progress circle {
   fill: #F3F3F6;
  stroke: #DADAE2; /* your accent color */
  stroke-width: 2;
  opacity: 0.7;
  stroke-dasharray: 126; /* 2 * PI * r (r=20) */
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.3s linear;
}
.autoplay-progress i {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 22px;
  color: #8D8CA4; /* or your accent color */
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}


/* Only sliders with .swiper-peek-opacity will get this effect */
.swiper-peek-opacity .swiper-slide {
  opacity: 0.15;
  transition: opacity 0.3s;
}

.swiper-peek-opacity .swiper-slide-active {
  opacity: 1;
}

.swiper-peek-opacity .swiper-slide-next,
.swiper-peek-opacity .swiper-slide-prev {
  opacity: 0.4;
}

/* Masonry Styles */

.masonry-2-col {
  column-count: 2;
  column-gap: 1.5rem;
}

.masonry-2-col > * {
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
  width: 100%!important;
}

@media (max-width:64rem) {
	.masonry-2-col {
		column-count: 1;
	}
}

/* start hidden, slightly down */
.fade-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* when JS adds .is-visible, animate to normal */
.fade-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delays (you can tweak timings) */
.fade-row .fade-card:nth-child(1) { transition-delay: 0s;   }
.fade-row .fade-card:nth-child(2) { transition-delay: 0.2s; }
.fade-row .fade-card:nth-child(3) { transition-delay: 0.4s; }
.fade-row .fade-card:nth-child(4) { transition-delay: 0.6s; }
.fade-row .fade-card:nth-child(5) { transition-delay: 0.8s; }


/* Scale and move image on hover */

.image-hover-scale_parent {
overflow: hidden; 
  display: inline-block; 
	position:relative;
}

.image-hover-scale_parent img {
	 display: block;
	transform: translateY(20px);
  transition: transform 0.4s ease;
}

.image-hover-scale_parent:hover img {
transform: scale(1.015) translateY(5px);
}

.image-hover-scale_parent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 8, 57, 0.6), rgba(11, 8, 57, 0));
  transition: opacity 0.4s ease;
  pointer-events: none; /* allow interaction with underlying image if needed */
  z-index: 1;
}

.image-hover-scale_parent:hover::after {
  opacity: 0;
}

/* Sticky Container Styles */

.sticky_container_parent {
	align-items:flex-start;
}

.sticky_container {
	position:sticky;
	top:8rem;
}

@media (max-width: 782px) {
	.sticky_container.sticky_container--desktop-only {
		position: static;
	}
	.sticky_container {
	top:4.5rem;
	}
}

/* Floating nav button */

.float__push-to-top {
    position: fixed;
    bottom: 150px;
    right: 30px;
    padding: 10px;
    z-index: 3;
}




/* CORRECTIONS: classes meant to strip legacy formatting at scale */

.blog-cta p.cta {
	background:none;
}

.toggle-custom svg {
transform: scale(1.25);	
}

/* Addresses width on all Legal pages */


.parent-pageid-20122 .content-area {
	width:var(--width-default);
	margin:0 auto;
	padding: var(--padding-d);
}

/* Legacy position:sticky styles for Expert L&D Articles */

.sticky-pane-2 {
	position:sticky;
	top:4em;
}

/* ------------- BLOG ------------- */ 

/*Enable older, individual blog post layouts to support sticky positioning by targeting legacy classes inherited from GenesisBlocks plugin   */

.gb-element_single-blog-post .gb-block-layout-column-gap-5, .gb-element_single-blog-post .gb-block-layout-column-gap-4 {
align-items:flex-start;
}

.gb-element_single-blog-post .crp-sticky-block {
	position:sticky;
	top:10em;
	background-color: var(--base-50);
	padding:1rem;
	border-radius: var(--radius-m);
}

/* Adjustments to legacy sharing block */

.gb-block-sharing  {
	margin:0;
}

.gb-block-sharing li {
	padding-bottom:0;
	padding-right:.5rem;
}

/* Adjustments to legacy author bio block */
.author-box p {
	font-size:var(--text-s);
}

.author-box > div:nth-child(1) {
	display:none;
}

.author-box > div:nth-child(2) {
	flex-basis:100%!important;
}

/* ------------- BLOG ------------- */ 


/* ------------- MARKETO FORMS ------------- */ 


.mktoForm .mktoAsterix {
  font-size:1rem!important;
  line-height:1.2rem!important;
}
