/*
Theme Name: 	AllCampus Theme
Theme URI: 		http://allcampus.com
Description: 	AllCampus marketing site theme.
Version: 		1.0.0
Author: 		AllCampus Design Team
Author URI: 	http://allcampus.com
Tags: 			bootstrap
*/

/* @import url('css/defaults.css'); */

/*******************************************
:--- General ---:
*******************************************/

body {
	background: var(--white);
	color: var(--text);
	font-family: var(--Lexend);
	font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 1.5rem;
	line-height: 1.25;
}

h1, div.page-title {
	font-size: 3.75rem;
    font-weight: 500;
}

h2 {
	font-size: 2.25rem;
	font-weight: 500;
	margin: 0 0 2rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
	margin: 0 0 1.5rem;
}

a, a:active {
	color: var(--ac-blue-web);
	text-decoration: underline;
	text-underline-offset: 3px;
}

a:hover, a:focus {
	text-decoration: none;
}

@media (max-width: 1200px) {
	h1, div.page-title {
		font-size: 2.25rem;
	}
}

@media (max-width: 767px) {
	h1, div.page-title {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.875rem;
	}
}


/*******************************************
:--- Alert ---:
*******************************************/

.alert-message a {
	color: var(--white);
	font-weight: bold;
}

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

header.site-header {
	position: relative;
}

header.site-header .site-logo {
	max-width: 250px;
}

header.site-header .site-logo img {
	width: 100%;
	max-width: 190px;
	height: auto;
	max-height: 40px;
	padding: 4px 0;
}

header.site-header .header-cta .btn {
	padding: 8px 16px;
}

/*******************************************
:--- Navigation ---:
*******************************************/

/* Desktop Menu & Hover States */

header.site-header {
	background: var(--white);
	padding: 20px 0;
	position: sticky;
	transition: all .2s ease-in-out;
	z-index: 2000;
}

nav.site-nav .menu-item a {
	border-radius: 6px;
	color: var(--ac-gray);
	display: block;
	font-weight: bold;
	padding: 1rem;
	text-decoration: none;
	white-space: nowrap;
}

nav.site-nav .menu-item.hover > a,
nav.site-nav .menu-item a:hover,
nav.site-nav .menu-item a:focus {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 90%);
	color: var(--ac-blue-tone);
}

nav.site-nav ul.sub-menu {
	background: var(--white);
	border: 0;
	border-radius: 0;
	position: absolute;
	left: -999rem;
}

nav.site-nav .menu-item-description {
	color: var(--ac-gray);
    display: block;
	font-weight: normal;
	text-wrap: auto;
}

/* External Link Icons */

nav.site-nav ul.sub-menu a[target="_blank"] {
	position: relative;
	padding-right: 25px;
}

nav.site-nav ul.sub-menu a[target="_blank"]:before {
	content: "\f08e";
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-size: 12px;
	font-weight: 400;
	position: absolute;
	top: 8px;
	right: 8px;
}

@media (max-width: 1200px) {
	header.site-header {
		padding: 15px 0;
	}

	nav.site-nav ul.sub-menu a[target="_blank"]:before {
		top: 16px;
		right: 32px;
	}
}

@media (min-width: 1400px) {
	header.site-header #site-nav-cta {
		width: 75%;
	}
}

@media (min-width: 1201px) {

	/* Desktop Navigation */

	nav.site-nav #menu-header {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	/* nav.site-nav .menu-item-description {
		text-wrap: unset;
	} */

	nav.site-nav .menu-item a {
		font-size: 14px;
		padding: .5rem 1rem;
	}

	nav.site-nav .menu-item.menu-item-has-children > a {
		padding-right: 40px;
		position: relative;
	}

	nav.site-nav .menu-item.menu-item-has-children > a:after {
		content: "\f107";
		display: inline-block;
		font-family: "Font Awesome 6 Pro";
		font-size: 12px;
		font-weight: 400;
		margin-left: 8px;
		position: absolute;
		transition: all .25s ease-in-out;
	}

	nav.site-nav .menu-item.menu-item-has-children:hover > a:after {
		transform: rotate(180deg);
	}

	nav.site-nav .menu-item.menu-item-has-children > ul.sub-menu {
		background: none;
		padding: 10px 0 0;
		min-width: 400px;
	}

	nav.site-nav #menu-header > .menu-item.menu-item-has-children:hover > ul.sub-menu {
		display: block;
		left: auto;
	}

	nav.site-nav #menu-header > .menu-item.menu-item-has-children:last-child > ul.sub-menu {
		left: auto;
		right: 0;
	}

	nav.site-nav .menu-item.menu-item-has-children ul.sub-menu > li {
		background-color: var(--white);
		border: 1px solid #ebebeb;
		border-radius: 0;
		border-width: 0 1px;
		padding: 4px 16px;
		box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	}

	nav.site-nav .menu-item.menu-item-has-children ul.sub-menu > li:first-child {
		border: 1px solid #ebebeb;
		border-radius: 6px 6px 0 0;
		border-width: 1px 1px 0;
		padding: 16px 16px 4px;
	}

	nav.site-nav .menu-item.menu-item-has-children ul.sub-menu > li:last-child {
		border: 1px solid #ebebeb;
		border-radius: 0 0 6px 6px;
		border-width: 0 1px 1px;
		padding: 4px 16px 16px;
	}

	/* To show submenu when key tabbing through navigation */
	nav.site-nav .menu-item.menu-item-has-children.open ul.sub-menu.dropdown-menu {
		display: block;
		left: 0;
	}

	/* Child submenu positioning */
	nav.site-nav .menu-item.menu-item-has-children ul.sub-menu .menu-item-has-children {
		position: relative;
	}

	nav.site-nav .menu-item.menu-item-has-children ul.sub-menu .menu-item-has-children > ul.sub-menu {
		border-left: 3px solid color-mix(in srgb, var(--ac-blue-tone), transparent 70%);
		border-radius: 6px;
		display: none;
		position: absolute;
		top: 15px;
		left: 98%;
		padding: 0;
		min-width: 225px;
	}

	nav.site-nav .menu-item.menu-item-has-children ul.sub-menu .menu-item-has-children > a:after {
		content: "\f054";
		right: 15px;
		top: 35%;
	}

	nav.site-nav .menu-item.menu-item-has-children ul.sub-menu .menu-item-has-children:hover > a:after {
		transform: rotate(0deg);
	}

	/* Show child submenu on hover */
	nav.site-nav .menu-item.menu-item-has-children ul.sub-menu .menu-item-has-children:hover > ul.sub-menu {
		display: block;
	}

	/* Flip to left side if it would overflow viewport */
	nav.site-nav #menu-header > .menu-item:last-child ul.sub-menu .menu-item-has-children > ul.sub-menu {
		left: auto;
		right: 100%;
	}

}

/* Mobile Nav Customization */

.nav-open span {
	background: var(--white);
}


/*******************************************
:--- Hero and Page Title ---:
*******************************************/

.hero-section {
	padding: 8rem 0;
}

.hero-section .hero-cta {
	margin-top: 2rem;
}

.hero-section .hero-cta p {
	margin-bottom: 0;
}

.hero-section .hero-cta p {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 15px;
}

.hero-section .hero-cta.no-hero-image p {
	justify-content: center;
}

@media (max-width: 767px) {
	/* .hero-section .hero-cta p {
		align-items: start;
		flex-direction: column;
	} */
	.hero-section .hero-cta.no-hero-image p {
		align-items: center;
		flex-direction: row;
	}
}

@media (max-width: 575px) {
	.hero-section .hero-cta p,
	.hero-section .hero-cta.no-hero-image p {
		flex-direction: column;
	}
	.hero-section .hero-cta p {
		align-items: stretch;
	}
}


/*******************************************
:--- Structure ---:
*******************************************/

/* Section */

section {
	padding: 8rem 0;
}

@media (max-width: 992px) {
	section {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important
	}
}

/* Breadcrumb */

.breadcrumb-section {
	background: var(--white);
    border: 1px solid #ebebeb;
    border-width: 1px 0;
	font-size: 14px;
    padding: 15px 0 !important;
}

#breadcrumbs {
	display: flex;
	align-items: center;
	margin: 0;
}
 
#breadcrumbs li {
	display: inline;
	margin: 0 .25rem;
}

#breadcrumbs li a {
	text-decoration: none;
	padding: 1px 0;
}

#breadcrumbs li a:hover,
#breadcrumbs li a:focus,
#breadcrumbs li a:active {
	text-decoration: underline;
}

#breadcrumbs li strong {
	color: #0f172b;
}

.breadcrumb-section .separator {
	color: var(--white);
	margin: 0 .45rem 0 .25rem !important;
}

.breadcrumb-section .separator:after {
	content: "";
	background-color: #ebebeb;
	width: 1px;
	height: 100%;
	position: absolute;
}

/*******************************************
:--- Content Section ---:
*******************************************/

main p a:focus-visible,
main ul li a:focus-visible {
	background: var(--primary-dark);
	color: var(--white);
	outline: 0;
}

main ul {
	margin: 0 0 2rem;
}

main  ul li {
	list-style: disc;
	margin: 0 0 .5rem 1.5rem;
}

main  ul > li:last-of-type {
	margin: 0 0 0 1.5rem;
}

main ul.list-check,
main ul.list-check-alt {
	margin: 0 0 2rem .5rem;
}

main ul.list-check > li {
	list-style: none;
	display: flex;
	align-items: start;
	gap: 12px;
	margin: 0 0 12px;
}

main ul.list-check-alt > li {
	list-style: none;
	display: flex;
	align-items: start;
	gap: 12px;
	margin: 0 0 24px;
}

main ul.list-check > li:last-of-type,
main ul.list-check-alt > li:last-of-type {
	margin: 0;
}

main ul.list-check > li:before,
main ul.list-check-alt > li:before {
	color: var(--ac-blue-tone);
	content: "\f058";
	font-family: "Font Awesome 6 Pro";
	font-size: 1.125rem;
}

main ul.list-check-alt > li:before {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 90%);
	border-radius: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 32px;
	height: 32px;
}


/*******************************************
:--- Blog and Articles ---:
*******************************************/

/* Newsroom */

.newsroom-hero > *,
.articles-hero > * {
	z-index: 2;
}

.newsroom-hero:after,
.articles-hero:after {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
}

.newsroom-hero:after {
	background: linear-gradient(to right, oklab(0.97 0.0 -0.01 / 0.95) 0%, oklab(0.98 0.01 -0.01 / 0.95) 25%, oklab(0 0 0 / .1) 100%);
}

.articles-hero:after {
	background: linear-gradient(to right, oklab(0.21 0 -0.04 / 0.95) 0%, oklab(0.21 0 -0.04 / 0.85) 50%, oklab(0.21 0 -0.04 / 0.25) 100%);
}

.news-featured,
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.news-featured article {
	border-radius: 1.1rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: box-shadow 0.3s ease;
}

.news-grid article {
	background-color: var(--white);
	border-radius: 1.1rem;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	transition: box-shadow 0.3s ease;
}

.news-featured article h2 {
	color: var(--text);
	font-size: 1.125rem;
}

.news-grid article h2 {
	color: var(--text);
	font-size: 1.125rem;
}

.news-featured article a:hover h2,
.news-grid article a:hover h2 {
	color: var(--ac-blue-tone);
}

/* Featured article styling */

.news-featured article:nth-child(1) {
	background: var(--color-slate-900);
	color: var(--white);
	grid-column: span 2;
	grid-row: span 2;
}

.news-featured article:nth-child(1) h2 {
	color: var(--white);
	font-size: 2rem;
}

.news-featured article:nth-child(1) .news-thumb {
	height: 485px;
}

.news-featured article:nth-child(1) .news-date {
	color: var(--jagged-ice);
}

.news-featured article:nth-child(1) .read-more-txt {
	color: var(--white);
	font-weight: 500;
}

.news-featured article:nth-child(1) a:hover .read-more-txt {
	color: var(--ac-blue-tone);
}

.news-featured article .news-excerpt {
	display: none;
}

.news-featured article:nth-child(1) .news-excerpt {
	color: var(--color-slate-400);
	display: block;
}

.news-featured .news-category {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
}

.news-featured .news-category span {
	background: rgba(255,255,255,.75);
	border-radius: 50px;
	color: var(--color-slate-900);
	font-size: 0.625rem;
	padding: 0.125rem 0.5rem;
	margin-right: 0.5rem;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.625px;
}

/* Large article styling */

.news-featured article:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.news-grid article:hover {
	box-shadow: 0 4px 6px rgba(0,0,0,0.10);
}

.news-featured article a,
.news-grid article a {
	text-decoration: none;
}

.news-featured article a:hover .news-thumb:after,
.news-grid article a:hover .news-thumb:after {
	opacity: 1;
}

.news-featured article a .news-thumb img,
.news-grid article a .news-thumb img {
	transform: scale(1);
    transition: all 0.2s ease-in-out;
}

.news-featured article a:hover .news-thumb img,
.news-grid article a:hover .news-thumb img {
	transform: scale(1.05);
}

/* Article Thumbs */

.news-thumb {
	border-radius: 1rem 1rem 0 0;
	width: 100%;
	height: 240px;
	overflow: hidden;
}

.news-thumb:after {
	content: "";
	background-color: color-mix(in srgb, var(--color-slate-900), transparent 75%);
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.news-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover !important;
}

/* Article Content */

.news-content {
	padding: 1.75rem;
}

.news-date {
	font-size: 0.6875rem;
	color: var(--ac-gray);
	margin-bottom: 0.5rem;
}

/* Article Category */

.news-grid .news-category-date {
	padding: 1.75rem  1.75rem 0;
}

.news-grid .news-category span {
	color: var(--ac-blue-tone);
	font-size: 0.625rem;
	font-weight: bold;
	margin-right: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.625px;
}

/* Article Button */

.news-button {
	padding: 0 1.75rem 1.75rem;
}

.news-grid article .news-button button:before {
	display: none;
}

.news-grid article a:hover .news-button button {
	color: var(--color-slate-900);
}

.news-grid article a:hover .news-button button:after {
	color: var(--color-slate-900);
	translate: .25rem 0;
}

/* Load More */

.news-load-more {
	width: 100%;
	text-align: center;
	padding: 4rem 0 0;
	clear: both; /* Just in case of floats */
}

@media (min-width: 1200px)  {
	.newsroom-hero .hero-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: start;
		min-height: 250px;
	}
	.news-featured article:nth-child(1) .news-content {
		padding: 3rem;
	}
}

@media (max-width: 1200px)  {
	.news-featured,
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.news-featured article:nth-child(1),
	.news-grid article:nth-child(1) {
		grid-column: span 1;
		grid-row: span 1;
	}
	.news-featured article:nth-child(1) .news-thumb,
	.news-grid article:nth-child(1) .news-thumb {
		height: 240px;
	}
	.news-featured article:nth-child(1) h2,
	.news-grid article:nth-child(1) h2 {
		font-size: 1.25rem;
	}
}

@media (max-width: 992px)  {
	.newsroom-hero:after {
		background: linear-gradient(to right, oklab(0.97 0.0 -0.01 / 0.95) 0%, oklab(0.98 0.01 -0.01 / 0.85) 65%, oklab(0.98 0.01 -0.01 / .75) 100%);
	}
	.articles-hero:after {
		background: linear-gradient(to right, oklab(0.21 0 -0.04 / 0.95) 0%, oklab(0.21 0 -0.04 / 0.95) 50%, oklab(0.21 0 -0.04 / 0.85) 100%);
	}
	.news-featured,
	.news-grid {
		grid-template-columns: 1fr;
	}
	.news-featured article:nth-child(1),
	.news-grid article:nth-child(1) {
		grid-column: span 1;
		grid-row: span 1;
	}
}

/* Article */

article hr {
	margin: 2rem 0;
}

article .img-box,
article .img-box img {
	border-radius: .75rem;
}

/* Article Date and Share Links */

.article-info {
	font-size: .875rem;
}

.article-info i {
	color: var(--ac-blue-tone);
	font-size: 1.25rem;
}

.article-share a:hover i,
.article-share a:focus i,
.article-share a:active i {
	color: var(--ac-blue-shade);
}

.article-share a {
	color: var(--ac-blue-tone);
	transition: color .15s ease-in-out;
}
.article-share a:hover {
	color: var(--color-slate-900);
}

/* Article List */

article.article-list h2 {
	font-size: 1.5rem;
}

article.article-list img {
	height: 100%;
}

/* Article Buttons */

.btn.read-more {
	background: var(--primary);
	border: 0;
	border-radius: 0;
}

.btn.read-more:hover {
	background: #222;
	background: var(--primary-light);
}

.article-pagination .btn {
	border: 1px solid var(--primary);
	border-radius: 0;
}

/* Article Pagination */

.article-pagination .btn:hover {
	background: var(--primary);
	color: var(--white);
}

.article-pagination .previous:before {
	content: '\f104';
	font-family: "Font Awesome 6 Pro";
	margin-right: 0.5rem;
}

.article-pagination .next:after {
	content: '\f105';
	font-family: "Font Awesome 6 Pro";
	margin-left: 0.5rem;
}

/* Article Sidebar Nav */

.sidebar-nav {
	border-top: 4px solid var(--ac-blue-tone);
	padding: 0;
}

.sidebar-nav li {
	border-bottom: 1px solid #CCC;
	font-size: .875rem;
	line-height: 1.4;
	list-style: none;
	margin: 0 !important;
	padding: 0;
}

.sidebar-nav li a {
	display: block;
	padding: .75rem;
	text-decoration: none;
}

.sidebar-nav li a:hover,
.sidebar-nav li a:focus,
.sidebar-nav li a:active {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 90%);
	color: var(--ac-gray-shade);
}

/* Article - Impact Report Features  */

.icon-box-container {
	display: flex;
	justify-content: start;
	align-items: stretch;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.icon-box-container .icon {
	max-width: 65px;
}

.icon-box-container > .icon-box {
	align-items: center;
	background-color: var(--light-grey);
	border-radius: .75rem;
	box-shadow: 0 1px 4px rgba(0,0,0,0.2);
	color: var(--color-slate-900);
	display: flex;
	flex: 1 0 0%;
	gap: 1.875rem;
	padding: 1.875rem;
}

.icon-box-container .icon-box .content > .figure {
	font-size: 1.875rem;
	font-weight: bold;
	margin-bottom: .5rem;
}

.icon-box-container .icon-box .content > p:last-of-type {
	margin-bottom: 0;
}

.icon-box-container .icon-quote {
	max-width: 65px;
	align-self: flex-start;
}

.icon-box-container .content-quote {
	border-left: 4px solid var(--ac-blue-tone);
	padding-left: 1.5rem;
}

.icon-box-container .content-quote > p:last-of-type {
	margin-bottom: 0;
}

.icon-box-container .content-quote .quote {
	font-size: 1.125rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1.4;
}

.diversity-stats {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 16px;
	margin-bottom: 2rem;
}

.diversity-stats .bar {
    background: linear-gradient(to left, #2B4162 0%, #2B4162 73%, #44A9CC 23%, #44A9CC 100%);
}

.stat-item {
    background-color: #f3f3f3;
    color: #2B4162;
    padding: 5px 10px;
    line-height: 1.3;
}

.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	gap: 2rem;
}

.partners .partner-logo {
	flex: 1 0 100%;
    max-width: 200px;
}

.partners .partner-logo img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
	.icon-box-container .icon {
		max-width: 45px;
	}
   .icon-box-container > .icon-box {
		align-items: start;
		flex-direction: column;
		gap: 1rem;
	}
	.icon-box-container .icon-box .content > .figure {
		font-size: 1.875rem !important;
	}
}

@media (max-width: 767px) {
    .partners .partner-logo {
		flex: 1 0 25%;
		max-width: 150px;
	}
}

@media (max-width: 575px) {
	.icon-box-container {
		flex-direction: column;
	}
	.icon-box-container > .icon-box {
		flex-direction: row;
	}
	.partners {
		justify-content: center;
	}
    .partners .partner-logo {
		flex: 1 0 50%;
	}
}

/* Article - Ordered List  */

body.single-post .main-content ol li {
	list-style-type: decimal;
}

/* Article - Tables  */

body.single-post .main-content table {
	border-bottom: 2px solid var(--ac-blue-tone);
	margin-bottom: 2rem;
}

body.single-post .main-content table th {
	background-color: var(--ac-blue-tone);
	color: var(--white);
	font-weight: 400;
	text-align: center;
}

/* Article - Author  */

.author-box {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 3rem;
}

.author-box .img-box {
	display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 3rem;
	height: 85px;
	width: 85px;
	overflow: clip;
}

.author-box .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-box .content > p:last-of-type {
	margin-bottom: 0;
}

/* Article - Infographics */

/* Infographic */

body.single-post .infographics-container {
    margin-top: 30px;
    margin-bottom: 50px;
}

body.single-post .infographics-item {
    padding: 0; 
    background-color: var(--ac-blue-tone);
    color: #fff;
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 700; 
    display: flex;
	align-items: stretch;
}

body.single-post .infographics-item > * {
	flex: 1 0 0%;
}

body.single-post .infographics-item .stats {
    text-align: center;
    background-color:  color-mix(in srgb, var(--black), transparent 75%);
    padding: 20px;
    display: flex;
	justify-content: center;
	align-items: center;
	max-width: 180px;
}

body.single-post .infographics-item .stats p {
    margin-bottom: 0;
}

body.single-post .infographics-item .stats .figure {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 1rem !important;
}

body.single-post .infographics-item .stats img {
    width: 120px;
    height: auto;
    margin: 0 auto;
}

body.single-post .infographics-item .stats .stat-wrapper p:last-of-type,
body.single-post .infographics-item .description > p:last-of-type,
body.single-post .infographics-item .description > ul {
    margin-bottom: 0;
}

body.single-post .infographics-item .description > ul {
    font-weight: 400;
}

body.single-post .infographics-item .description {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
    padding: 20px;
}

body.single-post .infographics-item .description > .header {
    font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 0;
}

body.single-post .infographics-item:nth-child(even) {
    background-color: var(--catalina-blue);
}

body.single-post .infographics-item:nth-child(even) .stats {
    background-color: color-mix(in srgb, var(--black), transparent 75%);
}

/* Cost Scale */

body.single-post .cost-scale {
    background-color: var(--catalina-blue);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin: 10px 0 20px;
    text-align: center;
}

body.single-post .cost-scale div {
    padding: 20px 5%;
    border: 3px solid #fff;
    width: 100%;
    white-space: nowrap;
}

body.single-post .cost-scale .fa {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding: 0 10px;
}

/* Single Post - Breadcrumbs */

/* Breadcrumb */

body.single-post .breadcrumb-section {
	background: var(--color-slate-50);
    border: 1px solid #ebebeb;
    border-width: 1px 0;
	font-size: 14px;
    padding: 15px 0 !important;
}

body.single-post #breadcrumbs li a {
	color: var(--ac-gray-tone);
}

body.single-post #breadcrumbs li a:hover,
body.single-post #breadcrumbs li a:focus,
body.single-post #breadcrumbs li a:active {
	color: var(--ac-blue-tone);
}

body.single-post .breadcrumb-section .separator:after {
	background-color: #CCC;
}

body.single-post .breadcrumb-section a.newsroom-link {
	font-size: .875rem;
	padding: 0;
}

body.single-post .breadcrumb-section a.newsroom-link:before {
	display: none;
}

body.single-post h1, 
body.single-post h2, 
body.single-post h3, 
body.single-post h4, 
body.single-post h5, 
body.single-post h6 {
	color: var(--color-slate-900);
	font-weight: bold;
}

body.single-post h2, 
body.single-post h3, 
body.single-post h4, 
body.single-post h5, 
body.single-post h6 {
	margin: 3rem 0 1.5rem;
}

body.single-post blockquote {
	border-left: 4px solid var(--ac-blue-tone);
	margin: 3rem 0;
	padding-left: 2rem;
}

body.single-post blockquote .quote {
	color: var(--color-slate-700);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
}

body.single-post blockquote .source {
	color: var(--ac-blue-tone);
	font-size: .875rem;
	font-weight: bold;
}

body.single-post blockquote .source {
	color: var(--ac-blue-tone);
	font-size: .875rem;
	font-weight: bold;
}

/* Single Post - Alt Layout */

body.single-post-alt-layout .breadcrumb-section {
	background: var(--white);
}

body.single-post-alt-layout #breadcrumbs li a {
	color: var(--ac-blue-web);
}


/*******************************************
:--- Accordion ---:
*******************************************/

.accordion .card,
.accordion .card .card-header {
    border-radius: 0;
}

.accordion .card .card-header .btn {
    display: block;
    text-align: left;
    width: 100%;
    padding: .375rem 0;
}


/*******************************************
:--- Table ---:
*******************************************/

.table-responsive .table {
	margin-bottom: 0;
}

.table tbody > tr:last-child {
	border-bottom: 1px solid transparent;
}

.table i {
	color: var(--ac-blue-tone);
	font-size: 1rem;
	margin-right: 5px;
}

.table thead th {
	font-size: 14px;
	letter-spacing: .7px;
	text-transform: uppercase;
}

.table thead.dark th {
	background-color: #0f172b;
	color: var(--white);
}

.table-hover > tbody > tr:hover > * {
	--bs-table-bg-state: var(--color-slate-50);
}

.table-xl th,
.table-xl td {
	padding: 20px 32px;
}

.table-xl tbody th {
	font-size: 1.125rem;
}

@media (max-width: 767px) {
	.table-xl th,
	.table-xl td {
		padding: 15px 20px;
	}
}

/*******************************************
:--- Subnav - Sticky ---:
*******************************************/

.subnav-section {
	background: var(--white);
	border: 1px solid #ebebeb;
	border-width: 1px 0;
	padding: 15px 0 !important;
	transition: all .2s ease-in-out;
}

.subnav-container .separator {
	border: 1px solid #ebebeb;
	border-width: 0 1px 0 0;
	width: 1px;
	min-height: 24px;
}

.subnav-container .nav-label {
	color: #90a1b9;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

.subnav-container a {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	color: #0f172b;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	position: relative;
}

.subnav-container a:hover,
.subnav-container a:focus,
.subnav-container a:active,
.subnav-container a.nav-link.active {
	color: var(--ac-blue-tone);
}

.subnav-container a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px; /* Adjust thickness as needed */
  bottom: -4px;
  left: 0;
  background-color: var(--ac-blue-tone); /* Set your desired underline color */
  transform: scaleX(0); /* Hides the underline by default */
  transform-origin: bottom right; /* Sets the animation origin to the right */
  transition: transform 0.15s ease-in-out; /* Smooth transition for the transform property */
}

.subnav-container a:hover:after,
.subnav-container a.nav-link.active:after {
  transform: scaleX(1); /* Expands the underline to full width on hover */
  transform-origin: bottom left; /* Changes the origin on hover for a left-to-right growth effect */
}

.subnav-container i {
	color: var(--ac-blue-tone);
	font-size: 12px;
	transform: scale(100%);
}

.subnav-container a:hover i,
.subnav-container a:focus i,
.subnav-container a:active i,
.subnav-container a.nav-link.active i {
	transform: scale(110%);
}

.subnav-container .navbar-toggler {
	border: none;
	padding: 0 10px;
}

.subnav-container .navbar-toggler .nav-label {
	letter-spacing: normal;
}

.subnav-container .navbar-toggler i {
	font-size: 15px;
}

.subnav-container .navbar-toggler[aria-expanded="false"] > .nav-label:after {
  content: 'Show';
}

.subnav-container .navbar-toggler[aria-expanded="true"] > .nav-label:after {
  content: 'Hide';
}

@media (min-width: 1400px) {
	.subnav-container,
	.subnav-container .nav-items {
		column-gap: 3rem;
		max-width: 1200px;
		margin: 0 auto;
	}
}

@media (max-width: 1400px) {
	.subnav-container,
	.subnav-container .nav-items {
		column-gap: 2rem;
	}
}

@media (max-width: 1200px) {
	.subnav-section {
		top: 70px;
	}

	.subnav-container {
		display: block;
	}
}

@media (max-width: 992px) {
	.subnav-container {
		display: flex;
	}

	.subnav-container .navbar-toggler {
		display: flex;
		align-items: center;
	}

	.subnav-container .nav-items {
		gap: 8px;
		margin-top: 20px;
	}

	.subnav-container .nav-items a {
		font-size: 13.5px;
		justify-content: start;
	}
}

@media (max-width: 767px) {
	.subnav-container .nav-items {
		flex-direction: column;
	}

	.subnav-container i {
		font-size: .875rem;
	}

	.subnav-container .nav-items a {
		background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 90%);
		border-radius: 3rem;
		font-size: 1rem;
		font-weight: 500;
		gap: 10px;
		padding: 8px 15px;
		flex: 1 0 100%;
	}

	.subnav-container .nav-items a:after {
		display: none;
	}
}


/*******************************************
:--- Assets ---:
*******************************************/

/* Card Icon Container */

.card-icon-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 3rem;
}

.card-icon-container .card-icon {
	margin-bottom: 0;
}

.card-icon-container > * {
	/* flex-grow: 0 (don't grow), flex-shrink: 0 (don't shrink), flex-basis: 32% (approx 1/3, adjusted for gap) */
    flex: 0 0 calc(33.333% - 3rem); /* Sets width for 3 columns, accounting for gap */
}

.card-icon-container.two-column > * {
	/* flex-grow: 0 (don't grow), flex-shrink: 0 (don't shrink), flex-basis: 32% (approx 1/3, adjusted for gap) */
    flex: 0 0 calc(45% - 3rem) !important; /* Sets width for 2 columns, accounting for gap */
}

.card-icon-container.gap-condensed {
	gap: 2rem;
}

.card-icon-container.gap-condensed > * {
    flex: 0 0 calc(33.333% - 2rem); /* Sets width for 3 columns, accounting for gap */
}

@media (max-width: 1200px) {
	.card-icon-container {
		gap: 2rem;
	}

	.card-icon-container > *,
	.card-icon-container.gap-condensed > *,
	.card-icon-container.two-column > *  {
		flex: 0 0 calc(50% - 2rem) !important;
	}
}

@media (max-width: 992px) {
	.card-icon-container > *,
	.card-icon-container.two-column > * {
		flex: 0 0 100% !important; 
	}
}

@media (max-width: 767px) {
	.card-icon-container.gap-condensed > * {
		flex: 0 0 100% !important;
	}
}

@media (max-width: 575px) {
	.card-icon-container{
		/* max-width: 90%; */
		margin: 0 auto;
	}
}

/* Card with Icon and Hover */

.card-icon {
	border: 1px solid var(--color-slate-200);
	border-radius: 1.5rem;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	padding: 2rem;
	transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.card-icon:hover {
	border: 1px solid color-mix(in srgb, var(--ac-blue-tone), transparent 75%);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

.card-icon .icon {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 90%);
	border-radius: .5rem;
	color: var(--ac-blue-tone);
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 48px;
	max-width: 48px;
	height: 48px;
}

.card-icon:hover .icon,
.card-icon:focus .icon,
.card-icon:active .icon,
.card-icon:hover .icon-blue,
.card-icon:focus .icon-blue,
.card-icon:active .icon-blue  {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 75%);
}

.card-icon .header {
	color: var(--ac-gray);
	font-weight: bold;
	margin-bottom: .5rem;
}

.card-icon:hover .header {
	color: var(--ac-blue-tone);
}

a.no-underline {
	text-decoration: none !important;
}

a > .card-icon:hover .icon,
a > .card-icon:focus .icon,
a > .card-icon:active .icon,
a > .card-icon:hover .icon-blue,
a > .card-icon:focus .icon-blue,
a > .card-icon:active .icon-blue  {
	background-color: var(--ac-blue-tone);
	color: var(--white) !important;
}

/* Grey */

.card-icon-container.grey .card-icon .icon,
.card-icon-container.grey .card-icon .icon-blue {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 90%);
	color: var(--text);
	transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.card-icon-container.grey .card-icon:hover .icon,
.card-icon-container.grey .card-icon:hover .icon-blue {
	background-color: var(--ac-blue-tone);
	color: var(--white);
	transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* Dark */

.card-icon-container.dark .card-icon {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.1);
}

.card-icon-container.dark .card-icon:hover,
.card-icon-container.dark .card-icon:focus,
.card-icon-container.dark .card-icon:active {
	background: rgba(255,255,255,.1);
}

.card-icon-container.dark .card-icon .header {
	color: var(--white) !important;
}

.card-icon-container.dark .card-icon .content {
	color: var(--color-slate-300);
}

.card-icon-container.dark .card-icon .icon,
.card-icon-container.dark .card-icon .icon-blue {
	background-color: rgba(255,255,255,.1);
	transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.card-icon-container.dark .card-icon:hover .icon,
.card-icon-container.dark .card-icon:hover .icon-blue {
	background-color: rgba(255,255,255,.15);
	transform: scale(1.1);
	transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* Card Icon - With Image */

.card-icon.with-image {
	padding: 0;
	overflow: clip;
}

.card-icon.with-image .header-icon {
	padding: 0 2rem;
	margin-bottom: 0;
}

.card-icon.with-image .content {
	display: flex;
    justify-content: space-between;
    flex-direction: column;
	padding: 0 2rem 2rem;
	height: 100%;
}

.card-icon.with-image .img-box img {
	transform: scale(1);
	transition: all 0.2s ease-in-out;
}

.card-icon.with-image:hover .img-box img {
	transform: scale(1.05);
}

@media (max-width: 575px) {
	.card-icon.with-image .header-icon {
		padding: 0 1.5rem;
	}
	.card-icon.with-image .content {
		padding: 0 1.5rem 1.5rem;
	}
}

/* Card Icon - No Hover */

.card-icon-container.no-hover .card-icon:hover {
	box-shadow: none !important;
}

.card-icon-container.no-hover .card-icon:hover .header {
    color: inherit !important;
}

.card-icon-container.no-hover .card-icon:hover .icon,
.card-icon-container.no-hover .card-icon:focus .icon,
.card-icon-container.no-hover .card-icon:active .icon,
.card-icon-container.no-hover .card-icon:hover .icon-blue,
.card-icon-container.no-hover .card-icon:focus .icon-blue,
.card-icon-container.no-hover .card-icon:active .icon-blue  {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 90%);
}

.circle-blue {
	align-items: center;
	background: var(--ac-blue-tone);
	border-radius: 3rem;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	color: var(--white);
	display: flex;
	font-size: 1.25rem;
	font-weight: bold;
	justify-content: center;
	width: 40px;
	height: 40px;
	position: absolute;
	top: -20px;
	left: -20px;
}

@media (max-width: 992px) {
	.card-icon {
		padding: 1.5rem;
	}
}

/* Header with Icon */

.header-icon {
	display: flex;
	align-items: start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.header-icon .icon {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 90%);
	border-radius: .5rem;
	color: var(--ac-blue-tone);
	display: flex;
	font-size: 1.125rem;
	justify-content: center;
	align-items: center;
	min-width: 56px;
	max-width: 56px;
	height: 56px;
}

.header-icon .header {
	margin-bottom: 0;
}

.icon-blue {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 90%);
	border-radius: .5rem;
	color: var(--ac-blue-tone);
	display: flex;
	font-size: 1.35rem;
	justify-content: center;
	align-items: center;
	min-width: 56px;
	max-width: 56px;
	height: 56px;
}

/* Team Member Cards */

.team-container {
	margin-top: 4rem;
	justify-content: center;
	gap: 3rem calc(20px - 24px);
}

@media (max-width: 992px) {
	.team-container {
		margin-top: 2rem !important;
	}
}

.card-member {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
}

.card-member .img,
.card-member .details {
	max-width: 280px;
	margin: 0 auto;
}

.card-member .img,
.modal-member-card .img {
	background-color: var(--white);
	border-radius: 1rem;
	overflow: clip;
}

.card-member .name,
.modal-member-card .name {
	color: var(--color-slate-900);
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 4px;
}

.card-member .title,
.modal-member-card .title {
	color: var(--color-slate-500);
	font-size: .875rem;
	font-weight: 400;
	margin-bottom: 0;
}

/* Member Card Hover */

.card-member:hover .name,
.card-member:focus .name,
.card-member:active .name {
	color: var(--ac-blue-tone);
}

.card-member .img > img {
	transform: scale(1);
	transition: all 0.2s ease-in-out;
}

.card-member:hover .img > img,
.card-member:focus .img > img,
.card-member:active .img > img {
	transform: scale(1.1);
}

.card-member .img > .overlay {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 50%);
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.card-member:hover .img > .overlay,
.card-member:focus .img > .overlay,
.card-member:active .img > .overlay {
	opacity: 1;
}

.card-member .img > .overlay .btn {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--color-slate-900);
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	opacity: 0;
	margin-top: 50px;
	transition: all 0.4s ease-in-out;
}

.card-member:hover .img > .overlay .btn,
.card-member:focus .img > .overlay .btn,
.card-member:active .img > .overlay .btn {
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
	opacity: 1;
	margin-top: 0;
}

/* Member Card - Modal */

.modal {
	z-index: 2001;
}

.modal-member-card .img {
	border-radius: 1.4rem;
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
	max-width: 200px;
}

.modal-content {
	border-radius: 1.5rem;
}

.modal-content .btn-close {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 80%);
	border-radius: 3rem;
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 40px;
	height: 40px;
}

.modal-content .btn-close:hover {
	background-color: var(--ac-blue-tone);
}

.modal-body {
	padding: 0;
}

.modal-member-card {
	background-color: var(--color-slate-50);
	border-radius: 1.45rem 0 0 1.45rem;
	display: flex;
	flex-direction: column;
	/* justify-content: center; */
	align-items: center;
	gap: 20px;
	text-align: center;
	padding: 3rem;
	height: 100%;
}

.modal-info {
	padding: 3rem;
}

@media (max-width: 1200px) {
	.card-member .name,
	.modal-member-card .name {
		font-size: 1rem;
		line-height: 1.125;
	}
	.modal-member-card .title {
		font-size: .75rem;
		line-height: 1.25;
	}
	.modal-member-card,
	.modal-info {
		padding: 3rem 2rem;
	}
	.modal-member-card .img {
		max-width: 150px;
	}
}

@media (max-width: 992px) {
	.modal-content .btn-close {
		right: 10px;
		top: 10px;
	}
	.modal-member-card {
		padding: 3rem 1.875rem 2rem;
	}
	.modal-info {
		padding: 2rem 1.875rem 3rem;
	}
	.modal-member-card {
		border-radius: 1.45rem 1.45rem 0 0;
	}

}

/*******************************************
:--- Marquee - Logo Scroll ---:
*******************************************/

:root {
	--marquee-speed: 80s;
	--marquee-speed-reverse: 30s;
	--gap: 3rem;
}

.marquee-container .logo-item,
.marquee-container-reverse .logo-item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 100px;
	overflow: clip;
}

.marquee-container .logo-item img,
.marquee-container-reverse .logo-item img {
	width: 100%;
	height: auto;
	filter: grayscale(1);
	opacity: 0.50;
}

.marquee-container .logo-item img:hover,
.marquee-container-reverse .logo-item img:hover {
	filter: brightness(0) saturate(100%) invert(9%) sepia(64%) saturate(1036%) hue-rotate(183deg) brightness(91%) contrast(90%);
	opacity: 1;
}

.marquee-container,
.marquee-container-reverse {
	overflow: clip;
	user-select: none;
	display: flex;
	gap: var(--gap);
	/* mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); */

	background-color: var(--white);
	border: 0 solid var(--white);
	border-width: 0 20px;
	border-radius: 1rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	margin: 2rem 0 4rem;
	padding: 3rem 2rem;
}

.marquee-content,
.marquee-content-reverse {
	flex-shrink: 0;
	display: flex;
	justify-content: space-around;
	gap: var(--gap);
	min-width: 100%;
}
 
.marquee-content {
	animation: scroll var(--marquee-speed) linear infinite;
}

.marquee-content-reverse {
	animation: scroll-reverse var(--marquee-speed-reverse) linear infinite;
}

/* Pause on hover for better UX */
.marquee-container:hover .marquee-content,
.marquee-container-reverse:hover .marquee-content-reverse {
	animation-play-state: paused;
}

/* Marquee Alternative Style */

.marquee-container.marquee-alt,
.marquee-container-reverse.marquee-alt {
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	background-color: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
	padding: 1rem;
}

/* Marquee Keyframes */

@keyframes scroll {
	from { transform: translateX(0); }
	to { transform: translateX(calc(-100% - var(--gap))); }
}

/* REVERSED KEYFRAMES: Moves from left (-100%) to right (0) */
@keyframes scroll-reverse {
	from { transform: translateX(calc(-100% - var(--gap))); }
	to { transform: translateX(0); }
}

/* ACCESSIBILITY: Respect system motion preferences */
@media (prefers-reduced-motion: reduce) {
	.marquee-content,
	.marquee-content-reverse {
		animation: none;
		overflow-x: auto; /* Allow manual scrolling instead */
	}
}

/*******************************************
:--- Social Media - Pill Links ---:
*******************************************/

.link-pill {
	background: var(--white);
	border: 1px solid var(--color-slate-200);
	border-radius: 1rem;
	padding: 1rem 2rem;
	color: var(--text);
	font-weight: bold;
	display: flex;
	gap: .75rem;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: all .25s ease-in-out;
}

.link-pill:hover,
.link-pill:focus,
.link-pill:active {
	border: 1px solid var(--ac-blue-tone);
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.link-pill i {
	background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 90%);
	border-radius: 3rem;
	display: flex;
	font-size: 18px;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	transition: all .25s ease-in-out;
}

.link-pill.facebook:hover i,
.link-pill.facebook:focus i,
.link-pill.facebook:active i {
	background-color: #145dfb;
	color: var(--white);
}

.link-pill.linkedin:hover i,
.link-pill.linkedin:focus i,
.link-pill.linkedin:active i {
	background-color: var(--ac-blue-tone);
	color: var(--white);
}

.link-pill.instagram:hover i,
.link-pill.instagram:focus i,
.link-pill.instagram:active i {
	background-color: #e60076;
	color: var(--white);
}

/*******************************************
:--- Carousel - Slick Slider ---:
*******************************************/

.testimonial-slider .slick-slide::after {
	content: "\f10e";
	display: block;
	font-family: "Font Awesome 6 Pro";
	font-size: 150px;
	font-weight: 900;
	position: absolute;
	top: -65px;
	right: 0;
	color: transparent; /* Make the "fill" transparent */
	-webkit-text-stroke: 10px rgba(0, 0, 0, 0.040); /* Create the outline */
	z-index: 1;
}

.testimonial-slider .slick-slide {
	/* background-image: linear-gradient(to bottom right, #eff6ff, #faf5ff); */
	background-color: var(--color-slate-50);
	border: none;
	border-radius: 1rem !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.slick-dots li button:before {
	display: none;
}

.slick-dots,
.slick-dots li {
	display: flex !important;
	justify-content: center;
}

.slick-dots {
	bottom: -4rem !important;
}

.slick-dots li {
	width: auto !important;
	margin: 0 5px !important;
}

.slick-dots li button {
	width: 10px !important;              
	height: 10px !important;
	border-radius: 20px;      
	background-color: #CCC !important;
	transition: all .3s ease-in-out;
	margin: 0 auto;
}

.slick-dots li.slick-active button {
	width: 30px !important;              
	background-color: var(--ac-blue-tone) !important;
}

.slick-track {
	display: flex !important;
}

.slick-slide {
	height: inherit !important;
	margin: 0 10px 10px;
	display: flex !important;
	justify-content: space-between;
	overflow: clip;
}

.slick-slide .img-source {
	max-width: 48px;
}

.testimonial-slider.slider-alt .slick-track {
	margin-bottom: 25px;
}

.testimonial-slider.slider-alt .slick-dots {
	bottom: -25px !important;
}

.testimonial-slider.slider-alt .slick-slide {
	background-color: transparent;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: var(--white);
	gap: 10px !important;
	justify-content: center !important;
}

.testimonial-slider.slider-alt .slick-slide::after {
	display: none;
}

@media (max-width: 992px) {
	.testimonial-slider.slider-alt .card .quote {
		font-size: 1.25rem !important;
		line-height: 1.25;
	}
}

/*******************************************
:--- Collapse - No Animation ---:
*******************************************/

.no-animation.collapsing {
  transition: none !important;
}


/*******************************************
:--- Circle List ---:
*******************************************/

.circle-list {
	column-count: 2;
	column-fill: balance;
}

.circle-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 12px;
}

.circle-list li:last-of-type {
	margin: 0 0 12px 0;
}

.circle-list li > .icon {
	background-color: var(--ac-blue-tone);
	border-radius: .5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	color: var(--white);
	display: flex;
	font-size: 1.25rem;
	justify-content: center;
	align-items: center;
	min-width: 40px;
	max-width: 40px;
	height: 40px;
}

@media (min-width: 992px) {
	.circle-container {
		position: relative;
		width: 800px;
		height: 400px;
		margin: 8rem auto;
		/* border: 2px solid #ccc; */
		border-radius: 50%;
	}

	.center-header {
		background-color: color-mix(in srgb, var(--ac-blue-tone), transparent 90%);
		border-radius: 240px;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 240px;
		height: 240px;
	}

	.center-header .header {
		background-color: var(--ac-blue-tone);
		border-radius: 160px;
		box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
		color: var(--white);
		display: flex;
		gap: 2px;
		font-size: 20px;
		font-weight: bold;
		flex-direction: column;
		align-items: center;
		text-align: center;
		justify-content: center;
		width: 160px;
		height: 160px;
		margin-bottom: 0;
	}

	.center-header .header-alt {	
		font-size: 10px;
		text-transform: uppercase;
		opacity: .9;
	}

	.circle-list {
		--total: 8;
		--radius-x: 400px; /* half of width */
		--radius-y: 200px; /* half of height */
		list-style: none;
		padding: 0;
		margin: 0;
		width: 100%;
		height: 100%;
	}

	.circle-list li {
		position: absolute;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 12px;
		transform: translate(-50%, -50%);
		margin: 0;
		--angle: calc((360deg / var(--total)) * var(--i)); /* calculate item angle */
		left: calc(50% + cos(var(--angle)) * var(--radius-x)); /* ellipse position math */
		top: calc(50% + sin(var(--angle)) * var(--radius-y)); /* ellipse position math */
	}

	.circle-list li > .icon {
		background-color: var(--ac-blue-tone);
		border-radius: 1rem;
		box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
		color: var(--white);
		display: flex;
		font-size: 1.75rem;
		justify-content: center;
		align-items: center;
		min-width: 64px;
		max-width: 64px;
		height: 64px;
	}

	.circle-list li:nth-child(even) > .icon {
		background-color: var(--ac-blue-shade);
	}

	.circle-list li > .header {
		background-color: var(--white);
		border-radius: 25rem;
		box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
		color: #0f172b;
		font-size: 13px;
		font-weight: bold;
		padding: .5rem 1rem;
		text-align: center;
	}
}

/*******************************************
:--- Animation - FADES ---:
*******************************************/

/* ELEMENT FADE UP */

html.js-loaded .element-fade.hidden-obj {
	opacity: 0;
}

html.js-loaded .element-fade.fade-up.hidden-obj {
    transform: translateY(20px);
}

html.js-loaded .element-fade.fade-down.hidden-obj {
    transform: translateY(-50px);
}

html.js-loaded .element-fade.fade-right.hidden-obj {
    transform: translateX(-50px);
}

html.js-loaded .element-fade.fade-left.hidden-obj {
    transform: translateX(50px);
}

html.js-loaded .element-fade.fade-in.hidden-obj {
    transform: scale(0.95);
}

.element-fade {
	opacity: 1;
}

.element-fade.animate {
    transition: transform 0.6s, opacity 0.6s;
}

.element-fade.fade-up {
    transform: translateY(0);
}

.element-fade.fade-down {
    transform: translateY(0);
}

.element-fade.fade-right {
    transform: translateX(0);
}

.element-fade.fade-left {
    transform: translateX(0);
}

.element-fade.fade-in {
    transform: scale(1);
}


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

footer.site-footer {
	background: var(--white);
	color: var(--ac-gray-tone);
    padding: 3rem 0;
}

footer.site-footer .site-logo {
	max-width: 180px;
}

footer.site-footer .site-logo img {
	width: 100%;
	height: auto;
}

footer.site-footer .footer-header {
	font-size: 1.5rem;
    font-weight: bold;
	margin-bottom: 1rem;
}

footer.site-footer .footer-nav li {
	line-height: 1.25;
	margin-bottom: .5rem;
}

footer.site-footer .footer-nav a {
	color: var(--ac-gray);
	font-size: .875rem;
	text-decoration: none;
}

footer.site-footer .footer-nav a:hover,
footer.site-footer .footer-nav a:focus,
footer.site-footer .footer-nav a:active {
	color: var(--ac-blue-web);
	text-decoration: underline;
}

footer.site-footer .social-links {
	gap: 20px;
	max-width: 180px;
	justify-content: space-between;
}

footer.site-footer .social-links li {
	font-size: 1.4rem;
}

footer.site-footer .social-links a {
	color: var(--ac-gray);
}

footer.site-footer .social-links a:hover,
footer.site-footer .social-links a:focus,
footer.site-footer .social-links a:active {
	color: var(--ac-blue-tone);
}

@media (max-width: 992px) {
	footer.site-footer {
		text-align: center;
	}
}


/*******************************************
:--- Homepage ---:
*******************************************/

/* HERO BG IMAGE - TEST - START */

.hero-bg-image {
	display: flex;
	align-items: center;
    position: absolute;
    top: 0;
    left: 0;
	width: 100%;
    height: 100%;
	/* overflow: clip; */
	z-index: 1 !important;
}

.hero-bg-image:after {
	/* background: linear-gradient(to right, oklab(0.999994 0.0000455678 0.0000200868 / 0.95) 0%, oklab(0.999994 0.0000455678 0.0000200868 / 0.4) 50%, rgba(0, 0, 0, 0) 100%); */
	background: linear-gradient(to right, oklab(0.97 0.0 -0.01 / 0.85) 0%, oklab(0.98 0.01 -0.01 / 0.25) 30%, oklab(0 0 0 / 0) 100%);
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
}

.hero-bg-image img {
    width: 100%;
	height: 100%;
	object-fit: cover;
}

#home-hero .testimonial-box {
	z-index: 3;
}

#home-hero .testimonial-box .info-box .dept {
	line-height: 1.125;
}

@media (max-width: 767px) {
	#home-hero .hero-cta p {
        align-items: start;
        flex-direction: column;
    }
	#home-hero .testimonial-box {
		bottom: 4.25rem !important;
	}
}

@media (max-width: 575px) {
	.hero-bg-image {
		justify-content: center;
		align-items: center;
		overflow: clip;
	}
	.hero-bg-image:after {
		/* background: linear-gradient(to right, oklab(0.999994 0.0000455678 0.0000200868 / 0.95) 0%, oklab(0.999994 0.0000455678 0.0000200868 / 0.6) 50%, rgba(255, 255, 255, 0) 100%); */
		background: linear-gradient(to right, oklab(0.97 0.0 -0.01 / 0.85) 0%, oklab(0.98 0.01 -0.01 / 0.4) 30%, oklab(0 0 0 / 0) 100%);
	}
	.hero-bg-image img {
		width: auto !important;
		margin: 0 35% 0 auto;
	}
	#home-hero .hero-cta p {
        align-items: center;
        flex-direction: row;
    }
	#home-hero .hero-cta p > * {
        flex: 1 0 0%;
    }
	#home-hero .hero-content {
		max-width: 100%;
	}
	#home-hero .hero-content > h1 {
		color: var(--ac-gray-shade);
		text-shadow: 2px 2px 0 rgba(255, 255, 255, .5);
		max-width: 80%;
	}
	#home-hero .hero-content > p {
		color: var(--ac-gray-shade);
		text-shadow: 1px 1px 0 rgba(255, 255, 255, .5);
		max-width: 65%;
	}
	#home-hero .hero-stat {
		background-color: rgba(255, 255, 255, 0.75);
		border-radius: 1rem;
		box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
		gap: 10px !important;
		max-width: 100% !important;
		margin: 2rem auto 1rem !important;
		padding: 1rem !important;
		text-align: center;
	}
	#home-hero .hero-stat .figure {
		font-size: 1.35rem !important;
	}
	#home-hero .hero-stat .stat {
		display: block;
		font-size: .75rem !important;
		line-height: .875rem !important;
		margin-top: 4px;
	}
	#home-hero .hero-stat > * {
		flex: 1 0 0px !important;
	}
	#home-hero .testimonial-box {
		border-radius: 1rem !important;
		position: relative !important;
		top: auto;
		left: auto;
		width: calc(100% - 3rem) !important;
		margin: 0 auto -8rem;
		right: unset !important;
		bottom: unset !important;
		padding: 1rem !important;
    }
	#home-hero .testimonial-box .info-box {
		display: flex;
		gap: 10px;
		align-items: center;
	}
	#home-hero .testimonial-box .info-box .dept {
		border-left: 1px solid #CCC;
		font-size: 12px !important;
		padding-left: 10px;
	}
	body.home #card-section {
		padding-top: 8rem !important;
	}
}

@media (max-width: 430px) {
	#home-hero .hero-content > h1 {
		max-width: 100%;
	}
	.hero-bg-image img {
		margin: 0 50% 0 auto;
	}
}

@media (max-width: 375px) {
	#home-hero .hero-stat {
		gap: 5px !important;
	}
}

/* Hero */

#home-hero {
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 6rem 0;
}

#home-hero > * {
	z-index: 2;
}

#home-hero:after {
	background: linear-gradient(to right, oklab(0.999994 0.0000455678 0.0000200868 / 0.95) 0%, oklab(0.999994 0.0000455678 0.0000200868 / 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
}

#home-hero .testimonial-box {
	backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.75);
	border-radius: 1.5rem;
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
	padding: 2rem;
	position: absolute;
	width: 400px;
	bottom: 2.5rem;
	right: 2.5rem;
}

#home-hero .testimonial-box .quote {
	color: var(--color-slate-900);
	font-size: 1.125rem;
	font-weight: bold;
	line-height: 1.25;
}

#home-hero .testimonial-box .info-box {
	padding-left: 20px;
}

#home-hero .testimonial-box .info-box:after {
	background-color: var(--ac-blue-tone);
	border-radius: 1rem;
	content: "";
	width: 4px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

#home-hero .hero-stat {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	max-width: 42%;
}

#home-hero .hero-stat > * {
	flex: 1 0 160px;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 0;
}

@media (min-width: 1400px) {
	#home-hero .hero-stat {
		max-width: 38%;
	}
}

@media (min-width: 1200px) {
	#home-hero .hero-stat {
		max-width: 47%;
	}
	#home-hero .hero-stat .stat {
		text-shadow: 1px 1px 0 #d4d1d3;
	}
}

@media (max-width: 1200px) {
	#home-hero .testimonial-box .quote {
		font-size: .875rem;
	}
	#home-hero .testimonial-box .name {
		font-size: .875rem;
		line-height: 1.125;
	}
}

@media (max-width: 992px) {
	#home-hero .testimonial-box {
		width: 350px;
	}
}

@media (max-width: 767px) {
	#home-hero {
		background-size: cover;
		background-position: center;
	}
	#home-hero .testimonial-box {
		width: 320px;
		bottom: 2.5rem;
	}
}

/* Cards */

.home-card-container {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1024px;
	margin: 0 auto;
}

.home-card-container > .card-icon {
	flex: 1 1 0%;
    align-items: stretch;
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.home-card-container {
		flex-direction: column;
	}
}

/* FAQ */

.accordion button {
	color: var(--text);
}

.accordion-item {
	border-radius: 0;
	border-width: 0 0 1px 0;
}

.accordion-item:last-of-type {
	border-width: 0;
}

.accordion-button {
	border-radius: 0 !important;
	/* padding: 1rem 0; */
}

.accordion-button::after {
	background-size: .875rem !important;
}

.accordion-button:not(.collapsed) {
	background-color: var(--color-slate-50);
	color: var(--color-slate-900);
}

#faq-nav {
	background-color: var(--color-slate-50);
	border-radius: 2rem;
	padding: 4px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

#faq-nav .header-btn {
	align-items: stretch;
	flex: 1 1 0%;
	margin: auto;
}

#faq-nav button {
	border-radius: 2rem;
	font-size: 14px;
	padding: 4px 8px;
	width: 100%;
}

#faq-nav button[aria-expanded="false"] {
	background-color: transparent;
}

#faq-nav button[aria-expanded="true"] {
	background-color: var(--ac-blue-tone);
	color: var(--white);
}

/*******************************************
:--- AC HubSpot Form ---:
*******************************************/

.hs-form fieldset, 
.hs-form-field, 
.hs-input {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.hbspt-form > form {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.hbspt-form > form > * {
	flex: 1 0 calc(50% - 20px);
}

.hbspt-form > form > .hs-fieldtype-select,
.hbspt-form > form > .hs-fieldtype-textarea {
	flex: 1 0 100%;
}

.hbspt-form label {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 4px;
}

.hbspt-form .input > * {
	background-color: #edf5f9;
	border: 1px solid #edf5f9;
	border-radius: 6px;
	padding: 5px 10px;
}

.hs-submit .hs-button {
	background-color: var(--ac-blue-tone);
	border-color: var(--ac-blue-tone);
	border-style: solid;
	border-radius: 6px;
	color: var(--white);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.3;
	padding: 10px 16px;
	width: 100%;
}

.hs-submit .hs-button:hover, 
.hs-submit .hs-button:focus, 
.hs-submit .hs-button:active {
	background-color: var(--white);
	color: var(--ac-blue-tone);
}

.hubspot-trustbuilder {
	font-size: 12px;
	margin-top: 20px;
}
.hs-form-required {
	color: red;
	margin-left: 5px;
}

.hubspot-trustbuilder .asterix {
	color: red;
}

.hs-error-msgs,
.hs-error-msg {
	color: red;
	font-size: 12px !important;
	margin: 0 !important;
}

.hs-error-msgs li {
	list-style-type: none;
	margin: 0 !important;
}

.hs-form-field .hs-error-msgs {
	display: absolute !important;
}

.hs_error_rollup {
	flex: 1 0 100% !important;
}

.hs_error_rollup .hs-error-msgs {
	display: block !important;
}

@media (min-width: 992px) and (max-width: 1200px) {
	.hbspt-form > form > * {
		flex: 1 0 100%;
	}
}

@media (max-width: 767px) {
	.hbspt-form > form > * {
		flex: 1 0 100%;
	}
}

/*******************************************
:--- Diversity Page - Hero ---:
*******************************************/

body.diversity .hero-section {
	background: var(--color-slate-900);
	color: var(--white);
}

/*******************************************
:--- Media Queries ---:
*******************************************/

@media (min-width: 1440px) {
	.container {
		max-width: 1400px;
	}
}

@media (max-width: 575px) {
	.container {
		padding-right: calc(var(--bs-gutter-x) * 1);
		padding-left: calc(var(--bs-gutter-x) * 1);
	}
}