/*
Theme Name: WEBIT Services
Version: 6.1
Description: Customizable responsive accessible Wordpress child theme created by CyberOptik
Author: CyberOptik
Author URI: https://www.cyberoptik.net/
Template: optik-theme-6
*/





/******************************************************************************
 * * *  IMPORTS & VARIABLES  * * * * * * * * * * * * * * * * * * * * * * * * *
******************************************************************************/

@import url("../optik-theme-6/style.css");



/* Add font imports here */


 


/******************************************************************************
 * * *  STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  UNIVERSAL STYLES  ***/

html {
	font-size: 16px;
	scroll-padding-top: 170px;
}

body {
	line-height: 1.6em;
  background-color: var(--wp--custom--dark--2);
	font-family: var(--wp--custom--font--1);
	color: white;
}



/***  BACK TO TOP BUTTON  ***/

.btt-button [class*="fa"] {
	border-radius: var(--wp--custom--radius--full);
	background-color: var(--wp--custom--secondary--main);
	font-weight: 300;
	color: black;
}

.btt-button:hover [class*="fa"] {
	background-color: var(--wp--custom--secondary--light);
	color: black;
}





/******************************************************************************
 * * *  CONTENT STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * *
******************************************************************************/



/***  TEXT & LINKS  ***/

a {
	color: var(--wp--custom--primary--main);
}

a:hover {
	color: var(--wp--custom--primary--main);
}

a:not([class]) {
	border-bottom: 1px solid currentColor;
}

a:not([class]):hover { border-bottom-style: dashed; }

figure a { border-bottom: none !important; }

/***  HEADINGS  ***/

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	color: white;
}

.h1,
h1 {
	font-size: 6em;
}

.h2,
h2 {
	font-size: 3em;
}

.h3,
h3 {
	font-size: 2.3em;
}

.h4,
h4 {
	font-size: 1.6em;
}

.h5,
h5 {
	font-size: 1em;
	font-weight: normal;
}

.h6,
h6 {
	font-size: 0.93em;
	font-weight: normal;
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
	h1,
  	.h1 { font-size: 4.5em; }

	h2,
	.h2 { font-size: 2.4em; }
}


/** Tablet**/
@media screen and (min-width: 601px) and (max-width: 1024px) {
	h1,
  .h1 { font-size: 4em; }
	h2,
  .h2 { font-size: 2.3em; }
	h3,
  .h3 { font-size: 2em; }
	h4,
  .h4 { font-size: 1.5em; }
	h5,
  .h5 { font-size: 1.3em; }
	h6,
  .h6 { font-size: 0.85em; }
}

/** Mobile **/
@media screen and (max-width: 600px) {
	h1,
  .h1 { font-size: 3em; }
	h2,
  .h2 { font-size: 2.4em; }
	h3,
  .h3 { font-size: 1.9em; }
	h4,
  .h4 { font-size: 1.5em; }
	h5,
  .h5 { font-size: 1.2em; }
	h6,
  .h6 { font-size: 0.85em; }
}

/***  BORDERS & DIVIDERS  ***/

hr, .divider {
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
	border-top: 1px solid #e2e2e2;
	margin: 2.5em auto;
	padding: 0;
}



/***  BUTTONS  ***/

.button, 
.wp-block-button__link, 
.button-outline, 
.is-style-outline .wp-block-button__link {
	padding: 1em 1.25em;
	background-color: var(--wp--custom--tertiary--main);
	border:1px solid transparent;
	border-radius:var(--wp--custom--radius--xs);
	background: var(--wp--custom--tertiary--main);
	color: white;
	text-transform: uppercase;
	font-weight: 500;
	transition: all 350ms ease-in-out;
	box-shadow: 0 6px 20px rgba(0, 113, 187, 0.25);
}


.button:hover, 
.wp-block-button__link:hover, 
.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color:var(--wp--custom--tertiary--light);
	color: black;
	background: var(--wp--custom--tertiary--light);
	box-shadow: 0 12px 30px rgba(15, 158, 251, 0.4);
    transform: translateY(-3px);

}

.button [class*="fa"], 
.wp-block-button__link [class*="fa"], 
.button:hover [class*="fa"], 
.wp-block-button__link:hover [class*="fa"] {
	color: inherit !important;
}

/* Outlined Button */

.button-outline, 
.is-style-outline .wp-block-button__link {
	background: none;
	border:2px solid white;
	color: white;
	transition: all 0.5s ease;
}

.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color:white;
	background-color: white;
	color: var(--wp--custom--tertiary--main);
}



/***  ICONS  ***/

.fa {
	font-weight: 300;
}

/* Icon Colors */

.fa, .fas, .far, .fal, .fab {
	color: var(--wp--custom--primary--main);
}

a .fa, a .fas, a .far, a .fal, a .fab {
	color: var(--wp--custom--primary--main);
}

a:hover .fa, a:hover .fas, a:hover .far, a:hover .fal, a:hover .fab {
	color: var(--wp--custom--secondary--main);
}

/* Icon Backgrounds */

.fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a .fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a:hover .fa-bg {
	background-color: var(--wp--custom--secondary--main-alt);
	color: white;
}

/* Icon Borders */

.fa-br {
	border-color: var(--wp--custom--primary--main);
}

a .fa-br {
	border-color: var(--wp--custom--primary--main);
}

a:hover .fa-br {
	border-color: var(--wp--custom--secondary--main);
}



/***  LISTS  ***/

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-list li:before, 
.arrow-list li [class*="fa"], 
.check-list li [class*="fa"], 
.check-circle-list li [class*="fa"], 
.icon-list li [class*="fa"], 
.contact-list li [class*="fa"] {
	color: var(--wp--custom--primary--main);
}

.contact-list li.support::before,
.icon-list li.support::before {
	content: '\f82d';
}

.contact-list li.desktop::before,
.icon-list li.desktop::before {
	content: '\f390';
}

/***  FORMS  ***/

/* Inputs */

input[type="text"], input[type="email"], input[type="number"], 
input[type="password"], input[type="search"], input[type="tel"], 
input[type="url"], input[type="date"], input[type="datetime-local"], 
input[type="month"], input[type="time"], input[type="week"], 
textarea, select, .filter-reset {
	border-radius: var(--wp--custom--radius--xs);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, 
input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, 
input[type="url"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, 
input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, 
textarea:focus, select:focus {
	border-color: var(--wp--custom--primary--main);
}

/* Buttons */

input[type="submit"], 
input[type="reset"], 
input[type="button"], 
form button {
	border-color: var(--wp--custom--primary--main);
	background-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xs);
	color: white;
	transition: all 300ms ease-in-out;
}

input[type="Submit"]:hover, 
input[type="reset"]:hover, 
input[type="button"]:hover, 
form button:hover {
	border-color: var(--wp--custom--primary--light);
	background-color: var(--wp--custom--primary--light);
	color: white;
	transform: translateY(-3px);
}

input[type="Submit"]:active, 
input[type="reset"]:active, 
input[type="button"]:active, 
form button:active {
	border-color:  var(--wp--custom--primary--dark);
	background-color:  var(--wp--custom--primary--dark);
	color: white;
}





/******************************************************************************
 * * *  HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/

/***  HEADER  ***/
.header-wrap {
  position: absolute;
  left: 0;
  z-index: 99;
}


/***  SCROLL BAR  ***/

.scroll-bar {
	background-color: var(--wp--custom--dark--2);
	border-bottom: 4px solid var(--wp--custom--tertiary--dark);
}

.scroll-logo {
	max-height: 50px;
}



/***  TOP BAR  ***/

.top-bar {
	background-color: var(--wp--custom--light--2);
}



/***  HEADER  ***/

.header-logo {
	max-height: 70px;
}

/* Menu Button */

.header .menu-button [class*="fa"], 
.header .menu-button:hover [class*="fa"] {
	color: var(--wp--custom--light--1);
}

.header .menu-button.active [class*="fa"] {
	background-color: var(--wp--custom--primary--main);
	color: black;
}



/***  NAVBAR  ***/

.navbar {
}



/***  NAV MENUS  ***/

.nav-menu > li > a, 
.nav-menu > li > span, 
.nav-menu > li > button {
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
	font-size: 1em;
}

.single-post .nav-menu > li.posts-link > a, 
.category .nav-menu > li.posts-link > a, 
.single-service .nav-menu > li.services-link > a, 
.single-career .nav-menu > li.careers-link > a, 
.single-resource .nav-menu > li.resources-link > a, 
.nav-menu > li.current-menu-ancestor > a, 
.nav-menu > li.current-menu-ancestor > span, 
.nav-menu > li.current-menu-ancestor > button, 
.nav-menu > li.current-menu-item > a, 
.nav-menu > li.current-menu-item > span, 
.nav-menu > li.current-menu-item > button, 
.nav-menu > li:hover > a, 
.nav-menu > li:hover > span, 
.nav-menu > li:hover > button {
	color: white;
}

/* Nav Button */

.nav-menu > li.nav-button {
	background-color: transparent !important;
}

.nav-menu > li.nav-button > a {
	margin-left: 10px;
	margin-right: 10px;
	background-color: var(--wp--custom--primary--main);
	border-radius: none;
	color: white;
}

.nav-menu > li.nav-button > a:hover {
	background-color: var(--wp--custom--primary--light);
}


@media screen and (min-width:1025px) and (max-width: 1080px) {
	.nav-menu > li > a, 
	.nav-menu > li > span, 
	.nav-menu > li > button {
		padding-left:5px;
		padding-right:5px;
		font-size:0.9em;
	}
	
	.nav-menu > li {
		padding:0 5px;
	}
}

@media screen and (min-width:1081px) and (max-width: 1290px) {
	.nav-menu > li > a, 
	.nav-menu > li > span, 
	.nav-menu > li > button {
		font-size: 1em;
		padding-left:5px;
		padding-right:5px;
	}
	
	.nav-menu > li {
		padding:0 5px;
	}
}

/* Dropdowns */


.nav-menu > li > ul {
	background-color: black;
}

.nav-menu li ul li:first-child {
	padding-top: 8px;
}
.nav-menu li ul li:last-child {
	padding-bottom: 8px;
}

.nav-menu li ul > li > a, 
.nav-menu li ul > li > span, 
.nav-menu li ul > li > button {
	color: var(--wp--custom--light--1);
}

.single-careers .nav-menu li ul li.careers-link > a, 
.nav-menu li ul li.current-menu-item > a, 
.nav-menu li ul li.current-menu-item > span, 
.nav-menu li ul li.current-menu-item > button, 
.nav-menu li ul li:hover > a, 
.nav-menu li ul li:hover > span, 
.nav-menu li ul li:hover > button {
	color: var(--wp--custom--primary--main);
}

/* Nested Dropdowns */

.nav-menu li ul li ul {
	top: -8px;
}



/***  HIDDEN NAV  ***/

.hidden-menu li a {
	color: var(--wp--custom--dark--3);
}

.hidden-menu li.current-menu-item > a {
	color: var(--wp--custom--primary--main);
}





/******************************************************************************
 * * *  BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  BANNER  ***/

.banner {
	background: linear-gradient(180deg,rgba(0, 25, 42, 1) 80%, rgba(0, 25, 42, 1) 80%, rgba(17, 17, 17, 1) 100%);
	text-align: center;
	overflow: visible;
}

.banner::after {
	content: '';
	position: absolute;
	top: calc(100% - 50px);
	left: 50%;
	width: 600px;
	height: 392px;
	max-width: 70%;
	transform: translateX(-50%);
	background-image: url('./images/webit-mascot-white-fade.png');
	background-size: contain;
	background-position: center top;
	pointer-events: none;
	background-repeat: no-repeat;
	visibility: visible;
}

.banner-inner {
	padding-top: 120px;
	padding-bottom: 50px;
	min-height: auto;
}

.banner-viewheight .banner-inner {
	padding-top: calc(var(--wp--custom--spacer--lg) + 140px);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner a {
	color: var(--wp--custom--primary--light);
}

.banner a:hover {
	color: white;
}

.banner .deck {
	font-size: 1em;
}

/***  HEADLINE BAR  ***/

.headline-bar {
	display: none;
}



/***  ENTRY NAVBAR  ***/

.entry-menu > li > a {
	color: var(--wp--custom--light--1);
}

.entry-menu > li.current-menu-item > a, 
.entry-menu > li:hover > a {
	color: var(--wp--custom--primary--main);
}



/***  MAIN  ***/

.main {
	padding-top:  var(--wp--custom--spacer--xxl);
	padding-bottom:  var(--wp--custom--spacer--xxl);
}



/***  ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
	border-radius: var(--wp--custom--radius--md);
	background-color: var(--wp--custom--dark--1);
	overflow: hidden;
	color: white;
}

.entry-cols .entry-link:hover {
	transform: translateY(-3px);
}

.entry-cols .entry-icon-wrap:first-child {
	padding: 30px 30px 0;
}

.entry-cols .entry-icon svg {
	width: 60px;
	fill: var(--wp--custom--primary--main);
}

.entry-cols .entry-text-wrap {
	padding: 30px;
}

.includes-link-text .entry:not(.col-full) .entry-text-wrap {
	padding-bottom: 80px;
}

.entry-cols .entry:not(.col-full) .entry-link-text-wrap {
	left: 30px;
	bottom: 30px;
}

.entry-cols .entry-link .entry-link-text {
	color: var(--wp--custom--primary--main);
}

.entry-cols .entry-link:hover .entry-link-text {
	color: var(--wp--custom--primary--light);
}

.entry-cols .entry-link .entry-title { color: var(--wp--custom--tertiary--main); }

/* Archive Pagination */

.archive-pagination a {
	border-radius: var(--wp--custom--radius--xl);
	border-color: var(--wp--custom--light--1);
	color: var(--wp--custom--primary--main);
}

.archive-pagination a:hover {
	border-color: var(--wp--custom--primary--light);
	color: var(--wp--custom--primary--light);
}

.archive-pagination a [class*="fa"], 
.archive-pagination a:hover [class*="fa"] {
	color: inherit !important;
	transition: all 0ms ease-in-out;
}



/***  SINGLE  ***/





/******************************************************************************
 * * *  FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  CTA BAR  ***/

.cta-bar {
	padding-top: var(--wp--custom--spacer--xxl);
	padding-bottom: var(--wp--custom--spacer--xxl);
	background-color: var(--wp--custom--dark--2);
	color: white;
}

.cta-bar h1, 
.cta-bar h2, 
.cta-bar h3, 
.cta-bar h4, 
.cta-bar h5, 
.cta-bar h6 {
	color: white;
} 




/***  FOOTER  ***/

.footer {
	position: relative;
	border-top: 1px solid black;
	padding-top: 0;
	padding-bottom: 0;
	background-color: var(--wp--custom--dark--2);
	font-size: 0.9em;
	color: var(--wp--custom--light--1);
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: var(--wp--preset--gradient--secondary-tertiary) ;
}

.footer a {
	color: white;
}

.footer .wp-block-heading {
	color: white;
	text-transform: uppercase;
}


.footer .wp-block-columns .wp-block-column:first-child {
	padding-top: var(--wp--custom--spacer--xxl);
	padding-bottom: var(--wp--custom--spacer--xxl);
  padding-right: var(--wp--custom--spacer--xxl);
}

.footer .wp-block-columns .wp-block-column:last-child {
  padding: var(--wp--custom--spacer--xxl);
  border-left: 1px solid black;
}


@media (max-width: 900px) {

	.footer .wp-block-columns .wp-block-column:first-child {
	   padding: var(--wp--custom--spacer--xxl);
	}

  .footer .wp-block-columns .wp-block-column:last-child {
    border-top: 1px solid black;
    border-left: 0;
	}

  .footer .container {
    padding-left: 0;
    padding-right: 0;
	}

}

/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
	padding-top: var(--wp--custom--spacer--md);
	padding-bottom: var(--wp--custom--spacer--md);
	border-top:1px solid black;
	background-color: var(--wp--custom--dark--2);
	color: var(--wp--custom--light--1);
	font-size: 0.9em;
}

.bottom-bar li a {
	padding: 0;
	margin: 6px 12px;
}

/* Menus */

.bottom-bar a {
	color: white;
}





/******************************************************************************
 * * *  7 CUSTOM STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/

/* Add custom theme styles here */

.text-secondary.wp-block-heading {
	color: var(--wp--custom--secondary--main)!important;
}

.text-tertiary.wp-block-heading {
	color: var(--wp--custom--tertiary--light)!important;
}

.brd-column {
	padding: 30px;
	border-radius: var(--wp--custom--radius--md);
	border: 1px solid var(--wp--custom--tertiary--main);
	filter: drop-shadow(0px 4px 30px var(--wp--custom--tertiary--main));
	text-align: center;
}

.brd-column img {
	align-items: center;
  justify-content: center!important;
}

.img-style {
	filter: drop-shadow(0px 4px 30px var(--wp--custom--dark--3));
}

.spaced {
	letter-spacing: 2px;
}


.stats-row > *:not(:first-child) {
  border-left: 1px solid #ddd;
}

@media (max-width: 900px) {
  .stats-row > * {
    border-left: none;
    padding: 30px 0; 
  }

  .stats-row > *:not(:first-child) {
    border-left: none!important;
  }

  .stats-row {
    padding-left: 35px;
    padding-right: 35px;
  }
}


@media screen and (min-width: 900px) and (max-width: 1195px) {
	.stats-row .ib-counter-container .ib-counter {
		font-size: 28px!important;
	}
}

.stats-row .wp-block-column {
  opacity: 0;
  transform: translateY(60px);
  animation: fadeTest 0.8s ease forwards;
}

/* Stagger */
.stats-row .wp-block-column:nth-child(1) { animation-delay: 0.2s; }
.stats-row .wp-block-column:nth-child(2) { animation-delay: 0.4s; }
.stats-row .wp-block-column:nth-child(3) { animation-delay: 0.6s; }
.stats-row .wp-block-column:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeTest {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/***  ICON CARDS  ***/

.icon-cards .wp-block-column {
	background-color: var(--wp--custom--tertiary--main);
	padding: var(--wp--custom--spacer--md) var(--wp--custom--spacer--sm);
	transition: all 350ms ease-in-out;
	border: 2px solid white;
	border-radius: var(--wp--custom--radius--sm);
}

.icon-cards .wp-block-column:has(a):hover { transform:translateY(-3px); }

.icon-cards .wp-block-column:nth-child(odd) {
  background-color: var(--wp--custom--tertiary--main); 
}

.icon-cards .wp-block-column:nth-child(odd):has(a):hover {
	background-color: var(--wp--custom--tertiary--dark);
}

.icon-cards .wp-block-column:nth-child(even) {
	background-color: var(--wp--custom--secondary--main-alt); 
}

.icon-cards .wp-block-column:nth-child(even):has(a):hover {
	background-color: var(--wp--custom--secondary--dark);
}

.icon-cards .wp-block-column .wp-block-heading, 
.icon-cards .wp-block-column .wp-block-heading a {
	border-bottom: none !important;
	transition: all 350ms ease-in-out;
}


/* .icon-cards .wp-block-column:nth-child(even):hover svg {
	fill:black!important;
}


.icon-cards .wp-block-column:nth-child(even):hover .wp-block-heading, 
.icon-cards .wp-block-column:nth-child(even):hover .wp-block-heading a, 
.icon-cards .wp-block-column:nth-child(even):hover .wp-block-heading a:hover,
.icon-cards .wp-block-column:nth-child(even):hover p, {
	color: black!important;
}
 */
/* .icon-cards .wp-block-heading:not(:first-child) {
	margin-top: 0.25em;
	font-size: 1.45em;
} */

.icon-cards .wp-block-heading:not(:first-child) { margin-top: 0.25em; }

.icon-cards .wp-block-heading:first-of-type { font-size: 1.45em; }

.icon-cards a { 
	color: currentColor !important; 
}

.icon-cards a:not([class]) { border-bottom-style: solid !important; }


@media screen and (min-width: 601px) and (max-width: 1200px) {
	.icon-cards.wp-block-columns {
		flex-wrap: wrap !important;       
		justify-content: flex-start !important;
		gap: 20px;                       
	}

	.icon-cards .wp-block-column {
		flex: 0 0 calc(50% - 10px) !important;
		max-width: calc(50% - 10px) !important;
		min-width: calc(50% - 10px) !important;
		box-sizing: border-box;
	}
  
	.icon-cards .wp-block-column:nth-child(4n+1),
	.icon-cards .wp-block-column:nth-child(4n+4){
		background-color: var(--wp--custom--tertiary--main); 
	}

	.icon-cards .wp-block-column:nth-child(4n+1):has(a):hover,
	.icon-cards .wp-block-column:nth-child(4n+4):has(a):hover {
		background-color: var(--wp--custom--tertiary--dark);
	}

	.icon-cards .wp-block-column:nth-child(4n+2),
	.icon-cards .wp-block-column:nth-child(4n+3) {
		background-color: var(--wp--custom--secondary--main-alt); 
	}

	.icon-cards .wp-block-column:nth-child(4n+2):has(a):hover,
	.icon-cards .wp-block-column:nth-child(4n+3):has(a):hover {
		background-color: var(--wp--custom--secondary--dark);
	}
}



/***  BORDER CARDS  ***/

.brd-cards .wp-block-column {
	background-color:#0072bc33;
	border: 3px double var(--wp--custom--tertiary--main);
	border-radius:var(--wp--custom--radius--xs);
	padding: var(--wp--custom--spacer--md) var(--wp--custom--spacer--sm);
	transition: all 350ms ease-in-out;
}

.brd-cards .wp-block-column .wp-block-heading, 
.brd-cards .wp-block-column .wp-block-heading a {
	color: white;
	border-bottom: none;
	transition: all 350ms ease-in-out;
}

.brd-cards .wp-block-column:hover .wp-block-heading, 
.brd-cards .wp-block-column:hover .wp-block-heading a, 
.brd-cards .wp-block-column:hover .wp-block-heading a:hover {
	color: white;
}

/* .brd-cards .wp-block-heading:not(:first-child) {
	margin-top: 0.25em;
	font-size: 1.45em;
} */

.brd-cards .wp-block-column:has(a:hover),
.brd-cards .wp-block-column:has(a):hover {
	background-color: var(--wp--custom--tertiary--dark);
	color: white;
}

.brd-cards .wp-block-column:has(a) {
	cursor: pointer;
}

/** Reverse Section **/
@media screen and (max-width: 900px){
	.reverse-section {
    flex-direction: column-reverse;
	}
}

@media screen and (max-width: 900px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column { flex-basis: 100% !important; }
} 

/**  Image Size **/
 @media screen and (max-width: 900px) {
  .wp-block-image { 
    max-width: 75%;
    margin-left: auto !important;
    margin-right: auto !important;
   }
}

@media screen and (min-width: 601px) and (max-width: 900px) {
  .wp-block-image.reduced-width { max-width: 50%; }
}


@media screen and (max-width: 900px) {
  .tablet-w-600 { 
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .tablet-w-600-center {
    text-align: center;
  }

  .tablet-w-600-center .wp-block-outermost-icon-block { justify-content: center; }
} 

/** Large Screen  **/
@media screen and (max-width: 1024px) {
  .stack-section-lg { flex-direction: column; }

  .stack-section-lg.reverse-section { flex-direction: column-reverse; }
}

@media screen and (min-width: 901px) and (max-width: 1024px) {
  .stack-section-lg .wp-block-image {
    max-width: 65%;
    margin-left: auto;
    margin-right: auto;
  }
} 


/***  HOMEPAGE ICON COLS  ***/

.hp-box .wp-block-column {
	background-color: #1e1e1e;
	padding: var(--wp--custom--spacer--md) var(--wp--custom--spacer--sm);
  color:white;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

@media screen and (min-width: 901px) and (max-width: 1200px) {
	.hp-icon-cols-cs { flex-wrap: wrap !important; }

	.hp-icon-cols-cs .wp-block-column { 
		flex: 1 1 calc( 50% - (var(--wp--custom--spacer--sm) * 1.5) ) !important;
	 }
}

.hp-box .wp-block-column:hover {
  color: white;
  text-decoration: none!important;
}

.hp-box .wp-block-column a:hover { color: var(--wp--custom--light-1); }


.hp-box svg {
	width: 60px;
	fill: var(--wp--custom--tertiary--light);
}

.hp-box a {
	color: var(--wp--custom--light--1);
	border-bottom-color: white !important;
}

.hp-box a:hover { border-bottom: 1px solid white;  }


.hp-box .wp-block-outermost-icon-block {
	justify-content: center;
}

.hp-box .wp-block-heading:not(:first-child) {margin-top: 0.25em;}



/***  SERVICES COLS  ***/

.services-item .wp-block-columns {
	gap:0;
	margin: 0!important;
}

.services-item .wp-block-column .wp-block-cover > .has-black-background-color {
  transition: all 300ms ease-in-out;
}

.services-item .wp-block-column:hover .wp-block-cover > .has-black-background-color {
	background-color: var(--wp--custom--secondary--main-alt)!important;
}

.services-item .wp-block-heading a { border-bottom: none !important; }

/***  BOXY COLS  ***/
.boxy-cards .wp-block-columns {
	background-color: #1e1e1e;
	border: 1px solid var(--wp--custom--dark--2);
	border-radius: var(--wp--custom--radius--sm);
	box-shadow: 0 0 40px black;
	padding: var(--wp--custom--spacer--md) var(--wp--custom--spacer--sm);
	transition: all 350ms ease-in-out;
}

.boxy-cards .wp-block-column .wp-block-heading, 
.boxy-cards .wp-block-column .wp-block-heading a {
	color: white;
	border-bottom: none;
	transition: all 350ms ease-in-out;
}

.boxy-cards .wp-block-column:hover .wp-block-heading, 
.boxy-cards .wp-block-column:hover .wp-block-heading a, 
.boxy-cards .wp-block-column:hover .wp-block-heading a:hover {
	color: white;
} 

.boxy-cards .wp-block-heading:not(:first-child) {
	margin-top: 0.25em;
	font-size: 1.45em;
}

/* .boxy-cards .wp-block-column:has(a:hover),
.boxy-cards .wp-block-column:has(a):hover {
	background-color: var(--wp--custom--dark--2);
	color: white;
}

.boxy-cards .wp-block-column:has(a) {
	cursor: pointer;
}
 */

/* Info card */
.info-cards .wp-block-column {
	background-color: #1e1e1e;
	box-shadow: 0px 5px 70px -30px rgba(0, 0, 0, 0.23921568627450981);
	/* border: 1px solid var(--wp--custom--dark--2); */
	border: 2px solid white;
	border-radius: var(--wp--custom--radius--sm);
	box-shadow: 0 0 40px black;
	padding: 0 var(--wp--custom--spacer--xs) var(--wp--custom--spacer--sm) var(--wp--custom--spacer--xs);
	transition: all 350ms ease-in-out;
}

.info-cards .wp-block-column .wp-block-heading, 
.info-cards .wp-block-column .wp-block-heading a {
	color: white;
	border-bottom: none;
	transition: all 350ms ease-in-out;
}

.info-cards .wp-block-column:hover .wp-block-heading, 
.info-cards .wp-block-column:hover .wp-block-heading a, 
.info-cards .wp-block-column:hover .wp-block-heading a:hover {
	color: white;
}
/* TODO: Check Change */
.info-cards .wp-block-heading:first-of-type {
	margin-top: 0.25em;
	font-size: 1.45em;
}

.info-cards .wp-block-heading:first-child { margin-top: var(--wp--custom--spacer--sm); }

.info-cards .wp-block-column:has(a:hover),
.info-cards .wp-block-column:has(a):hover {
	background-color: var(--wp--custom--dark--2);
	color: white;
}

.info-cards .wp-block-column:has(a) {
	cursor: pointer;
}

.info-cards .wp-block-column:has(a):hover { transform: translateY(-3px); }


/***  FAQ section  ***/

.faq-sec summary {
	background-color:#111111;
	border:1px solid #3c3c3c;
	color: white;
	border-radius: var(--wp--custom--radius--xs);
}

/***  TESTIMONIALS  ***/
.reviews-card .swiper-testimonial-outer {
	background-color: var(--wp--custom--secondary--dark)!important;
	border: 5px solid var(--wp--custom--secondary--light);
	border-radius: var(--wp--custom--radius--sm);
}

.reviews .swiper-testimonial-outer {
	background-color: var(--wp--custom--dark--1)!important;
	border: 1px solid #3c3c3c;
	height: 100%;
}

.reviews .author-photo-outer {
	display: none!important;
}

.reviews .swiper-pagination-bullet {
	position: relative;
}

.reviews .swiper-pagination-bullet::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% + 6px);
	height: calc(100% + 6px);
	border: 2px solid transparent;
	border-radius: 100%;
}

.reviews.black-bg .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):not(:hover)::before { border-color: white; }

.reviews.black-bg .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
	background-color: white;
	opacity: 1;
}

.wp-block-gutsliders-testimonial-slider .author-photo-outer .author-photo {
	border-radius: 0!important;
}

.wp-block-gutsliders-testimonial-slider .gutslider-testimonial-wrapper {
	height:auto!important;
}

.swiper-pagination {
	position: static;
	margin-top: 12px;
}

.swiper-pagination  .swiper-pagination-bullet { margin: 0 8px !important; }

.swiper-slide { height: auto; }

.swiper-button-prev:hover,
.swiper-button-next:hover { transform: translateY(-3px); }

.logo-footer img {
	width:250px;
}

@media (max-width: 900px) {
	.logo-footer img {
        margin: 0 auto;
        display: block;
	}
}


.wp-block-navigation-item a.wp-block-navigation-item__content:hover {
	color: var(--wp--custom--primary--main);
}

.second-block {
  grid-column-start: 1;
  transform: translateX(-20px);
}

.first-block img, .second-block img {
	width: 100px!important;
}


@media (max-width: 768px) {
  .second-block {
    transform: translateX(-20px);
  }
}


@media (max-width: 480px) {
  .second-block {
    transform: translateX(0);
  }
}


/* Card lines */
.card-lines .wp-block-column {
  position: relative;
  padding: 60px 30px;
  background: #1e1e1e;

  background:
    linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)) left center / 1px 60% no-repeat,
    linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)) top center / 50% 1px no-repeat;
}

.card-lines .wp-block-column a {
  color: white;
}

.card-lines .wp-block-column > p:first-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .card-lines .wp-block-column {
    background:
      linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)) left center / 1px 50% no-repeat,
      linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)) right center / 1px 50% no-repeat,
      linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)) top center / 70% 1px no-repeat;
  }
}


.card-lines .wp-block-column:has(a:hover),
.card-lines .wp-block-column:has(a):hover {
  background:
    linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)) left center / 1px 80% no-repeat,
    linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)) right center / 1px 80% no-repeat,
    linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)) top center / 80% 1px no-repeat;
}

.card-lines .wp-block-column:has(a:hover) a,
.card-lines .wp-block-column:has(a):hover a {
	color: var(--wp--custom--tertiary--light);
}


.card-lines .wp-block-column:has(a) {
  cursor: pointer;
}

/* Counter column */

.card-lines, .brd-cards, .info-cards  {
  counter-reset: card;
}

.card-lines .wp-block-column, 
.brd-cards .wp-block-column, 
.info-cards .wp-block-column {
  counter-increment: card;
  margin-bottom: 20px;
}

@media screen and (max-width: 900px) {
	.info-cards .wp-block-column:last-child { margin-bottom: 0; }
}

.card-lines .wp-block-column:has(p.card-number)::before, 
.brd-cards .wp-block-column:has(p.card-number)::before,
.info-cards .wp-block-column:has(p.card-number)::before {
  content: counter(card, decimal-leading-zero);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  color: white;
  line-height: 1;
  padding: 14px;
  border-radius: 999px;
  background: var(--wp--custom--secondary--main-alt);
  text-align: center;
  vertical-align: middle;
  justify-items: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 20px;
  transform: translateY(-50%);
  border: 2px solid white;
}

.card-lines .wp-block-outermost-icon-block, 
.brd-cards .wp-block-outermost-icon-block,
.info-cards .wp-block-outermost-icon-block {
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  justify-items: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top:-34px;
  
}

.card-lines .wp-block-outermost-icon-block > .icon-container, 
.brd-cards .wp-block-outermost-icon-block > .icon-container,
.info-cards .wp-block-outermost-icon-block > .icon-container { 
	padding: 12px; 
	box-sizing: content-box;
	border: 2px solid white;
	border-radius: 100%;
	background-color: var(--wp--custom--dark--1);
}


.card-lines.wp-block-columns {
  display: grid !important;
  grid-template-columns: 1fr; 
}

@media (min-width: 601px) and (max-width: 900px) {
  .card-lines.wp-block-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (min-width: 901px) {
  .card-lines.wp-block-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Logo slide */

.logo-slide img {
	 filter: brightness(0) invert(1);
	 opacity: 0.8;
}


.logo-slide.wp-block-group.is-layout-grid, .brd-column.wp-block-group.is-layout-grid {
  align-items: center !important;
}

.logo-slide.wp-block-group.is-layout-grid > * {
  display: flex;
  align-items: center;
  justify-content: center; 
  margin: 20px!important; 
}


.webit-callout {
  padding: 20px;
  background: linear-gradient(135deg, var(--wp--custom--tertiary--dark), var(--wp--custom--secondary--dark));
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Map */

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 50%; 
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border: 0;
}

.group-logo figure {
	background-color: #1e1e1e;
	border: 1px solid var(--wp--custom--dark--2);
	border-radius: var(--wp--custom--radius--sm);
	box-shadow: 0 0 40px black;
	padding: var(--wp--custom--spacer--md) var(--wp--custom--spacer--sm);
	transition: transform 0.25s ease;
}

.group-logo figure:hover {
	transform: translateY(-3px);
}

.group-logo img {
	width:250px;
	height:100px;
	object-fit:contain;
}


/* Team members */
.member-box {
  transition: all 350ms ease-in-out;
}

.member-box:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.member-box .member-portrait-wrap { 
	overflow: hidden; 
	margin-bottom: 0;
}

.member-box .member-text-wrap { padding: 16px; }

.member-box .member-portrait {
  transition: all 350ms ease-in-out;
}

.member-box:hover .member-portrait {
  transform: scale(1.05);
}

.member-full-inner {
	position: relative;
  background: var(--wp--custom--dark--2);
  border: 6px solid white;
}

.member-full-inner::before {
	content: '';
	position: absolute;
	top: 24px;
	right: 24px;
	width: 100px;
	height: 100px;
	background-image: url('./images/webit-mascot-white.png');
	background-size: contain;
	background-position: center top;
	pointer-events: none;
	background-repeat: no-repeat;
}

.member-title { color:var(--wp--custom--secondary--main); }

.member-position { color:var(--wp--custom--tertiary--main-alt); }

.member-full-inner .member-text-wrap {
	color:white;
}


/* Blog */

.entry.post {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.entry.post:hover {
  transform: translateY(-4px);
}

.entry-thumb-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.entry-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-thumb-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: 0.25s;
}

.entry.post:hover .entry-thumb-wrap::after {
  background: rgba(0,0,0,0.05);
}


.entry-text-wrap {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.entry-text-wrap > * + * {
  margin-top: 10px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  padding: 0;
  font-size: 12px;
  color: #6b7280;
}

.post-author-avatar img {
  border-radius: 50%;
}

.post-cat {
	display: inline-block;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: var(--wp--custom--radius--sm);
    color: white;
}

.post-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: white;
}

.post-excerpt-wrap p {
  font-size: 14px;
  color: white;
}


.post-link-text {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-top: auto;
}

.entry.post:hover .post-link-text {
  text-decoration: underline;
}

.post-cols .post-date {
	color:var(--wp--custom--light--2);
}
.featured-post {
  width: 100%;
  display: block;
  clear: both;
  margin-bottom: 50px;
}

.featured-post .entry.post .entry-link {
  display: flex;
  gap: 30px;
  align-items: stretch;
  background:var(--wp--custom--dark--1);
}

.featured-post .entry-thumb-wrap {
  flex: 1.2;
  height: auto;
  overflow: hidden;
}

.featured-post .entry-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post .entry-text-wrap {
  flex: 1;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post .post-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
}

.featured-post .post-meta {
  margin-bottom: 10px;
}

/* .cols-spaced > * {
  margin-bottom: 30px;
} */

@media (max-width: 768px) {
  .entry-thumb-wrap {
    height: 160px;
  }

  .featured-post .entry-thumb-wrap {
    height: 200px;
  }
}


.message-block {
	border-radius: var(--wp--custom--radius--sm);
}

/* FAQ */
.schema-faq-answer {
  padding: 10px 0;
}
body:not(.wp-admin) .schema-faq-answer { display: none; }

.schema-faq-section {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  cursor: pointer;
}

.schema-faq-question {
  display: block;
  font-weight: bold;
  position: relative;
}

.schema-faq-question::after {
  content: "+";
  float: right;
}

.schema-faq-section.active .schema-faq-question::after {
  content: "–";
}

.schema-faq-section.active .schema-faq-answer {
  display: block;
}

/* Custom Banner */
@media screen and (max-width: 1200px) {
	.custom-banner { padding-top: 240px !important; }
}

@media screen and (max-width: 900px) {
	.custom-banner { padding-top: 150px !important; }

	.custom-banner.wp-block-columns,
	.custom-banner > .wp-block-columns { flex-wrap: wrap !important; }

	.custom-banner.wp-block-columns:last-child,
	.custom-banner > .wp-block-columns:last-child { flex-direction: column-reverse; } 

	.custom-banner.wp-block-columns .wp-block-column,
	.custom-banner > .wp-block-columns .wp-block-column { flex-basis: 100% !important; }

	.custom-banner.wp-block-columns .mascot-overlay::before,
	.custom-banner > .wp-block-columns .mascot-overlay::before { display: none; }
}



.mascot-overlay {
	position: relative;
}

.mascot-overlay::before {
	content: '';
	position: absolute;
	top: -65%;
	left: 50%;
	width: 600px;
	height: 392px;
	max-width: 70%;
	transform: translateX(-50%);
	background-image: url('./images/webit-mascot-white-fade.png');
	background-size: contain;
	background-position: center top;
	pointer-events: none;
	background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
	.mascot-overlay::before { 
		top: -75%;
		max-width: 80%; 
	}
}


/* Block Menu */
ul.wp-block-navigation li { margin: 0; }

/* Link Cards ADA Visual */
.link-card,
.link-cards .wp-block-column,
.info-cards .wp-block-column { position: relative; }

.link-card:has(a)::after,
.link-cards .wp-block-column:has(a)::after {
	content: '\e1cd';
	position: absolute;
	top: 12px;
    right: 12px;
	font-size: 20px;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 300;
	transition: all 350ms ease-in-out;
}

.link-card:has(a[target="_blank"])::after,
.link-cards .wp-block-column:has(a[target="_blank"])::after { content: '\f08e'; }

.link-card:has(a):hover::after,
.link-cards .wp-block-column:has(a):hover::after {
	transform: scale(1.3);
}

/* Form Color Fixes */
label,
.gform-theme--framework .gform-field-label--type-sub:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-search input[type=text]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-single:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper button.button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus { color: white; }

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-search input[type=text]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-single:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper button.button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus { outline-color: rgba(255, 255, 255, 0.65) }


.gform-theme--framework .gform-field-label>.gfield_required:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework.gform_editor legend.gform-field-label>span>.gfield_required:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework .gfield_validation_message:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework .gform_validation_errors .gform_submission_error,
.gform-theme--framework .gform_validation_errors .gform-icon { color: var(--wp--custom--primary--main); }

.gform-theme--framework .gform_validation_errors:focus,
.gform-theme--framework .gform_validation_errors .gform-icon,
.gform-theme--framework .gfield_error .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) { border-color: var(--wp--custom--primary--main); }

.gform-theme--framework .gform_validation_errors { 
	border-color: rgba(255, 179, 10, 0.25);;
	background-color: transparent; 
} 

.gform-theme--framework .gform_validation_errors:focus { outline: var(--gf-ctrl-outline-width-focus) var(--gf-ctrl-outline-style) rgba(255, 179, 10, 0.65); }

input[type="submit"].gform_button:hover { 
	background-color: #003f89 !important;
	color: white !important;
}

/* Custom Quote Block */
blockquote.custom-quote-block-type-a,
.custom-quote-block-type-a blockquote { 
	padding-left: 30px;
	border-left-color: white;
}

/* Stats Grid */
.stats-grid > .wp-block-group { 
	position: relative;
	padding: 60px 30px;
	background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)) left center / 1px 60% no-repeat,
    linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)) top center / 50% 1px no-repeat;
}

.anchor-menu .wp-block-navigation-item__content {
	position: relative;
	padding: 6px 12px;
	display: inline-flex;
	gap: 6px;
	background-color: var(--wp--custom--tertiary--main) !important;
	color: white !important;
	border-radius:var(--wp--custom--radius--xs);
	transition: all 350ms ease-in-out;
}

.anchor-menu .wp-block-navigation-item__content:hover {
	color: black !important;
	background: var(--wp--custom--tertiary--light) !important;
	transform: translateY(-3px);
}

.anchor-menu .wp-block-navigation-item__content::before {
	content: '\f13d';
	font-family: "Font Awesome 6 Pro";
}

/* Desktop Reduced Width (For Banner) */
@media screen and (min-width: 901px) {
	.desktop-reduced-width { max-width: 680px; }
}

/* Price Iframe */
.price-iframe { text-align: center; }
.price-iframe iframe {
	border-radius: var(--wp--custom--radius--md);
}