/* * { background-color: rgba(255,0,0,.2); }
* * { background-color: rgba(0,255,0,.2); }
* * * { background-color: rgba(0,0,255,.2); }
* * * * { background-color: rgba(255,0,255,.2); }
* * * * * { background-color: rgba(0,255,255,.2); }
* * * * * * { background-color: rgba(255,255,0,.2); } */

body {
    font-family: Arial, sans-serif;
	color: #2d2d30;
}

.orange-list li,
#two-column-section li {
	line-height: 30px;
	margin-bottom: 15px;
}
.orange-list li::marker,
#two-column-section li::marker {
	color: #f58233;
}
.border-bottom {
	border-bottom: 1px solid #8a8a8a !important;

}
.blue-divider {
	border-top: 2px solid #3272b8;
	opacity: 1;
}
header #menu-main-menu.navbar-nav a {
	font-family: "futura-pt-bold", sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #3272b8;
	padding: 15px 25px;
}
header #menu-main-menu.navbar-nav a:hover {
	text-decoration: underline;
}
.dropdown-item.active, .dropdown-item:active {
	background-color: #3272b8;
	color: #fff;
}
a.dropdown-item.active, a.dropdown-item:active {
	color: #fff !important;
}
header .dropdown-item {
	white-space: wrap;
}
.navbar-nav .dropdown-menu {
	border-radius: 0;
}
#header.bg-light {
	background-color: #fff !important;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.25);
}
@media (max-width: 767px) {
	.navbar-toggler {
		border: none;
		color: rgba(50, 115, 184, 0.5);
		border-radius: 3px;
	}
	.navbar-toggler-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2030%2030%27%3E%3Cpath%20stroke%3D%27rgba(50%2C%20114%2C%20184%2C%201)%27%20stroke-linecap%3D%27round%27%20stroke-miterlimit%3D%2710%27%20stroke-width%3D%272%27%20d%3D%27M4%207h22M4%2015h22M4%2023h22%27%2F%3E%3C%2Fsvg%3E");
	}
    #header .dropdown-menu {
        display: block !important;
		border: none;
		box-shadow: none;
		padding: 0;
    }
	#header .dropdown-menu li {
		border-bottom: 1px solid #dbdbdb;
	}
	#header .dropdown-menu li a {
		padding-left: 40px;
	}
	.navbar-nav .dropdown-menu .dropdown-menu li a {
		/* Add your desired styles here */
		
		padding-left: 60px !important; /* Example: add padding */
	}
	.navbar-nav .dropdown-menu .dropdown-menu  {
		border-bottom: 1px solid transparent !important;
	}
	.navbar-nav .dropdown-menu .dropdown-menu li:first-child {
		border-top: 1px solid #dbdbdb !important;
	}
	.navbar-nav .dropdown-menu .dropdown-menu li:last-child {
		border-bottom: none !important;
	}
	#header .navbar-nav .nav-link {
		border-bottom: 1px solid #dbdbdb;
	}
	#header .current_page_item > a.nav-link {
		background-color: #3272b8;
		color: #fff;
	}
}
@media (min-width: 768px) {
	header #menu-main-menu.navbar-nav a {
		font-size: 14px;
		padding: 15px 20px;
	}
	.navbar-nav .dropdown-menu .dropdown-menu {
		margin-left: 25px;
	}
}
@media (min-width: 992px) {
	header #menu-main-menu.navbar-nav a {
		font-size: 16px;
		padding: 15px 25px;
	}
}
#main {
	margin-top: 0;
}
h1, .h1 {
	font-family: "futura-pt-bold", sans-serif;
	font-weight: bold;
	font-size: 26px;
	color: #fff;
}
h1+p, .h1+p {
	margin-bottom: 20px;
}
h2, .h2 {
	font-family: "futura-pt-bold", sans-serif;
	font-weight: bold;
	font-size: 22px;
	margin-bottom: 16px;
	color: #3272b8;
}
h3, .h3 {
	font-family: "futura-pt-bold", sans-serif;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 14px;
	color: #2d2d30;
}
/* Begin Hero */
#hero {
	/*background-size: 500px;
	background-position: bottom right;
	background-repeat: no-repeat;*/
    color: #fff;
	background-color: #3272b8;
/*	padding: 2em 0 400px;*/
}
#hero p {
	font-size: 1em;
}
.btn.btn-primary, .btn.btn-secondary, .btn.btn-scc-blue {
	color: #fff;
	font-family: "futura-pt-bold", sans-serif;
	font-weight: bold;
	font-size: 16px;
	border-radius: 0;
	padding: 14px 30px;
}
.btn.btn-primary,
.btn.btn-primary:active {
	background-color: #f58233;
	border: 1px solid #f58233;
}
.btn.btn-primary:hover {
	background-color: #fc883b;
	border: 1px solid #fc883b;
}
.btn.btn-scc-blue {
	background-color: #3272b8;
	border: 1px solid #3272b8;
}
.btn.btn-secondary {
	background-color: transparent;
	border: 1px solid #fff;
	background-image: none;
}
#hero .btn.btn-secondary {
	/* margin-left: 30px; */
	width: 210px;
}
@media (min-width: 768px) {
	#hero {
		background-size: contain;
		padding: 2em 0 200px;
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in-up {
	opacity: 0; /* Start invisible */
	animation: fadeInUp 1s ease-out forwards; /* 1s duration, ease-out timing function */
}
/* End Hero */

section {
	padding: 5em 0;
}
.intro-icon {
	max-width: 150px;
}
#solutions a h3 {
	color: #3272b8;
}
.solution-card {
    border: 1px solid #dbdbdb;
    padding: 50px 30px;
    -webkit-box-shadow: 0 0 6px 4px rgba(34,31,32,.08);
	box-shadow: 0 0 6px 4px rgba(34,31,32,.08);
}
.solution-card a {
	font-family: Futura, Trebuchet MS, Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #3272b8;
    text-decoration: underline;
}
/* Begin Marquee */
#logo-banner {
	background-color: #f7f6ec;
	padding: 5em 0;
	background-size: 1200px;
	background-position: top center;
	background-repeat: no-repeat;
}
:root {
	--marquee-width: 100vw;
	--marquee-height: 16vh;
	/* --marquee-elements: 12; */ /* defined with JavaScript */
	--marquee-elements-displayed: 2;
	--marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 10s);
}
.marquee {
	overflow: hidden;
	position: relative;
}
.marquee-content {
	list-style: none;
	height: 100%;
	display: flex;
	animation: scrolling var(--marquee-animation-duration) linear infinite;
}
.marquee-content:hover {
	animation-play-state: paused;
}
@keyframes scrolling {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: var(--marquee-element-width);
	max-height: 100%;
	white-space: nowrap;
}
.marquee-logo {
	max-width: 150px;
}
@media (max-width: 767px) {
	.marquee-content li {
		padding: 0 40px;
	}
}
@media (min-width: 768px) {
	:root {
		--marquee-width: 100vw;
		--marquee-height: 20vh;
		/* --marquee-elements: 12; */ /* defined with JavaScript */
		--marquee-elements-displayed: 3;
	}
}
@media (min-width: 992px) {
	:root {
		--marquee-width: 100vw;
		--marquee-height: 20vh;
		/* --marquee-elements: 12; */ /* defined with JavaScript */
		--marquee-elements-displayed: 4;
	}
}
@media (min-width: 1200px) {
	:root {
		--marquee-width: 100vw;
		--marquee-height: 20vh;
		/* --marquee-elements: 12; */ /* defined with JavaScript */
		--marquee-elements-displayed: 4;
	}
}
@media (min-width: 1400px) {
	:root {
		--marquee-width: 100vw;
		--marquee-height: 20vh;
		/* --marquee-elements: 12; */ /* defined with JavaScript */
		--marquee-elements-displayed: 5;
	}
}
@media (min-width: 2000px) {
	:root {
		--marquee-width: 100vw;
		--marquee-height: 20vh;
		/* --marquee-elements: 12; */ /* defined with JavaScript */
		--marquee-elements-displayed: 7;
	}
}
/* End Marquee */

.solution-item {
	max-width: 300px;
}
/*Begin Testimonials */
#testimonials-section .slick-track {
    display: flex;
}
#testimonials-section .testimonial-card.slick-slide {
    height: inherit;
}
#testimonials-section .testimonial-card {
    border: 1px solid #3f3f3f;
}
#testimonials-section .testimonial-card h3 {
	font-size: 20px;
}
#testimonials-section .big-quote {
	width: 50px;
	height: auto;
	display: block;
	margin: 10px auto;
}
#testimonials-section .testimonial-card p {
	font-family: "futura-pt-bold", sans-serif;
	font-size: 18px;
	color: #2d2d30;
}
#testimonials-section .testimonial-card .quote-source {
	font-family: Arial,sans-serif;
	font-size: 16px;
}
#testimonials-section .testimonial-slider button {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#testimonials-section .slick-dots {
	text-align: center;
	bottom: -45px;
}
#testimonials-section .slick-dots li {
	display: inline-block;
	width: 39px;
	margin: 0 15px;
}
#testimonials-section .slick-dots li button {
	position: relative;
	text-indent: -9999px;
}
#testimonials-section .slick-dots li button:before {
	content: "―";
	font-size: 65px;
	color: #dbdbdb;
	text-indent: 0px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}
#testimonials-section .slick-dots li button:hover:before {
	color: #3272b8;
}
#testimonials-section .slick-dots li.slick-active button:before {
	content: "―";
	color: #3272b8;
	font-size: 65px;
}
#testimonials-section .slick-dots li:only-of-type {
	display: none;
}
/* End Testimonials */
/* Begin Blue CTA Section */
#cta-section {
	background-color: #3272b8;
	color: #fff;
}
#cta-section h2 {
	color: #fff;
}
/* End Blue CTA Section */
/* Begain Orange CTA Section */
#footer-cta-section {
	background-color: #f58233;
	color: #fff;
}
#footer-cta-section h2 {
	color: #fff;
}
/* End Orange CTA Section */

/* Begin Split Footer CTA */
#split-footer-cta {
    color: #fff;
}
#split-footer-cta h2 {
    color: #fff;
}
@media (max-width: 767px) {
    #split-footer-cta .container {
        max-width: initial;
    }
    #split-footer-cta {
        padding-bottom: 0
    }
    #split-footer-cta .column-1 {
        padding: 5em 15px;
        background: #273A50;
    }
    #split-footer-cta .column-2 {
        padding: 5em 15px;
        background: #F58233;
    }
    #split-footer-cta .cta-content {
        max-width: 516px;
        margin: 0 auto;
    }
}
@media (min-width: 768px) {
    #split-footer-cta {
        background: linear-gradient(to right,  #273a50 0%,#273a50 50%,#f58233 50%,#f58233 100%);
    }
    #split-footer-cta .column-1 {
        padding-right: 6em
    }
    #split-footer-cta .column-2 {
        padding-left: 6em
    }
}
/* End Split Footer CTA */

/* Begin Posts Section */
#posts-section .card {
	border: none;
}
#posts-section .category a {
	font-size: 14px;
	color: #2d2d30;
}
#posts-section .category a:hover {
	text-decoration: underline;
}
#posts-section .card-title {
	color: #2d2d30;
}
#posts-section .card-title a,
article .card-title a {
    color: #2d2d30;
}
#posts-section .card-title a:hover,
article .card-title a:hover {
    text-decoration: underline;
}
#posts-section .card-text {
	color: #2d2d30;
}
#posts-section .card-link {
	color: #3272b8;
	text-decoration: underline;
	font-family: "futura-pt-bold", sans-serif;
	font-weight: bold;
}
.post-thumbnail {
    /*width: 210px;
    height: auto; This will adjust the height to maintain the aspect ratio */
    aspect-ratio: 210 / 170;
    background-size: cover;
    background-position: center;
}
#posts-section .card {
    display: flex;
    flex-direction: column;
}
#posts-section .card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
#posts-section .card .mt-auto {
    margin-top: auto;
}
/* End Posts Section */

/* Begin Resources */
.post-taxonomies a {
    color: #2d2d30;
	text-transform: uppercase;
}
.post-taxonomies a:hover {
    text-decoration: underline;
}
.card-link {
    color: #3272b8;
    text-decoration: underline;
    font-family: "futura-pt-bold", sans-serif;
    font-weight: bold;
    font-size: 16px;
}
ul.pagination li a.page-link,
ul.pagination li span.page-link {
	color: #3272b8;
	font-family: "futura-pt-bold", sans-serif;
	font-weight: bold;
	font-size: 16px;
}
ul.pagination li span.page-link {
	background: #3272b8;
    color: #fff;
}
/* End Resources */

/* Begin Resource Filter */
.resource-filter .searchandfilter ul {
    padding-left: 0;
}
.resource-filter .searchandfilter ul {
    list-style-type: none;
    padding: 0;
}
.resource-filter .searchandfilter li {
    margin-bottom: 0px;
}
.resource-filter .searchandfilter ul li li {
    line-height: 20px;
}
.resource-filter .searchandfilter li[data-sf-field-input-type=checkbox] label {
    padding-left: 0;
}
.resource-filter .sf-field-category label.sf-label-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 1rem;
}
.resource-filter .sf-field-category input.sf-input-checkbox {
    display: none;
}
.resource-filter .sf-field-category label.sf-label-checkbox::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #3272b8;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    vertical-align: middle;
    background-color: #fff;
    transition: background-color 0.3s ease;
}
.resource-filter .sf-field-category input.sf-input-checkbox:checked + label.sf-label-checkbox::before {
    background-color: #f58233;
}
.resource-filter .sf-field-category input.sf-input-checkbox:checked + label.sf-label-checkbox::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.resource-filter .sf-field-category .sf-count {
    color: #999;
    font-size: 0.9rem;
    margin-left: 5px;
}
.resource-filter .sf-field-submit input {
    background-color: #f58233;
    color: #fff;
    border: 2px solid #f58233;
    font-family: "futura-pt-bold", sans-serif;
    font-weight: bold;
    font-size: 16px;
    border-radius: 0;
    padding: 14px 30px;
}
.resource-filter .sf-field-reset a.search-filter-reset {
    color: #2d2d30;
    font-family: "futura-pt-bold", sans-serif;
    font-weight: bold;
    font-size: 16px;
    border-radius: 0;
    padding: 14px 30px;
    text-decoration: underline;
}
/* End Resource Filter */

/* Begin Accordion Section */
#faq-section h3.accordion-header .accordion-button {
	font-size: 20px;
    font-weight: bold;
	color: #3f3f3f;
	padding: 16px 0;
}
.accordion-wrapper {
	border: 1px solid #dbdbdb;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 6px 7px rgba(34,31,32,.03);
	box-shadow: 0 0 6px 7px rgba(34,31,32,.03);
}
#faq-section .accordion-item {
	border-top: 1px solid #8a8a8a;
}
#faq-section .accordion-item:first-of-type {
	border-top: none;
}
.accordion-button:not(.collapsed) {
	background-color: transparent;
}
.accordion-button:focus {
	box-shadow: none;
}
.accordion-body {
	padding: 16px 0;
}
.faq-link {
	font-family: "futura-pt-bold", sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #3272b8;
	text-decoration: underline;
}
/* End Accordion Section */

/* Begin Footer */
#footer {
	background-color: #3272b8;
	color: #fff;
	padding: 5em 0 3em;
}
#footer p {
	margin-top: 0;
}
.footer-logo {
	width: 120px;
	height: auto;
}
#footer .social img {
	width: 24px;
	height: auto;
	margin: 10px;
}
#footer .social img:first-of-type {
	margin-left: 0;
}
footer .footer-nav .menu.nav li {
	margin-bottom: 15px;
}
footer .footer-nav .menu.nav a {
	color: #fff;
	font-family: "futura-pt-bold", sans-serif;
	font-weight: bold;
	font-size: 16px;
}
footer .menu.nav a:hover {
	text-decoration: underline;
}
#footer .menu-item a[aria-current=page] {
	color: #fff;
}
.orange-link {
	color: #f58233;
	font-family: "futura-pt-bold", sans-serif;
	font-weight: bold;
	font-size: 16px;
	text-decoration: underline;
}
footer hr {
	border-top: 2px solid #FFFFFF;/*#203a52;*/
	opacity: 1;
}
.copyright-section {
	font-size: 9pt;
}
footer .legal-nav .menu.nav a {
	color: #fff;
	margin-right: 20px;
}
/* End Footer */

/* Small devices (landscape phones, 576px and up) */
/* @media (min-width: 576px) { ... } */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	h1, .h1 {
		font-size: 38px;
	}
	h1+p, .h1+p {
		margin-bottom: 35px;
	}
	h2, .h2 {
		font-size: 32px;
		margin-bottom: 26px;
	}
	#hero {
		background-size: cover;
		background-position: center right;
		display: flex;
		align-items: center;
		padding: 3em 0;
	}
	#hero p {
		font-size: 1.2em;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	#hero {
		padding: 6em 0;
	}
	
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	h1, .h1 {
		font-size: 45px;
	}
	/*#hero {
		padding: 6em 0;
	}*/
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
	#hero {
		padding: 10em 0;
	}
}