/* ========================================================= Accessible, mobile-first optimized global stylesheet FULL VERSION – orange content-link underline restored ========================================================= */
/* ================= Fonts ================= */
@font-face {
	font-family: 'Tosh';
	src: url('https://146730150.fs1.hubspotusercontent-eu1.net/hubfs/146730150/Admin/Tosh_font/ToshA-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Tosh';
	src: url('https://146730150.fs1.hubspotusercontent-eu1.net/hubfs/146730150/Admin/Tosh_font/ToshA-Medium.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* Global body font */
/* ================= Variables ================= */
:root {
	--orange: #FF5539;
	--green: #00B290;
	--blue: #002870;
	--gray-100: #f2f2f2;
	--gray-500: #4a4a4a;
	--gray-700: #393C3E;
	--focus-ring: 2px solid #000;
}

/* ================= Reset & Base ================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto;
	}
}

body {
	font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	font-size: 100%;
	line-height: 1.6;
	color: #000;
}

/* ================= Headings ================= */
h1,
h2,
h3,
h4,
h5,
h6,
{
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
	scroll-margin-top: 6rem;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}

p+h1,
p+h2,
p+h3,
p+h4,
p+h5,
p+h6 {
	margin-top: .75em;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}

/* ================= Images ================= */
img {
	max-width: 100%;
	height: auto;
	border-radius: 20px !important;
}

/* Targeting images inside any element with "card" in the class name */
[class*="card"] img {
	/* Set Top-Left, Top-Right, Bottom-Right, Bottom-Left */
	border-radius: 20px 20px 0 0 !important;
}

.event_calendar_list img {
	border-radius: 20px 20px 0 0 !important;
}

.oembed_custom-thumbnail {
	max-width: 100%;
	border-radius: 20px !important;
}

img .rich-text-preview {
	max-width: 100%;
	height: auto;
	border-radius: 20px !important;
}

.team-img img {
	border-top-left-radius: 20px !important;
	border-top-right-radius: 20px !important;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

/* ================= Focus ================= */
a:focus-visible,
button:focus-visible,
select:focus-visible {
	outline: var(--focus-ring);
	outline-offset: 2px;
}



/* ================= Tooltip ================= */
.hs-tooltip {
	position: relative;
	cursor: help;
	border-bottom: 2px dotted #ffb600;
	font-weight: 500;
}

.hs-tooltip .hs-tooltip-text {
	visibility: hidden;
	opacity: 0;
	max-width: 260px;
	position: absolute;
	bottom: 140%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background-color: #ffb600;
	color: #000;
	padding: 10px 14px;
	border-radius: 6px;
	font-family: 'Tosh', system-ui, sans-serif;
	font-size: 0.875rem;
	line-height: 1.5;
	text-align: center;
	z-index: 100;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.hs-tooltip:hover .hs-tooltip-text,
.hs-tooltip:focus-within .hs-tooltip-text {
	visibility: visible;
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.hs-tooltip .hs-tooltip-text::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -6px;
	border: 6px solid transparent;
	border-top-color: #ffb600;
}

/* ================= Panels ================= */
#hs_cos_wrapper_widget_1767825850800 .room120_panels {
	border-radius: 20px;
	gap: 0;
}

/* ================= Timeline ================= */
.row-fluid .timeline-with-scrolling-animation-timeline-main .timeline-with-scrolling-animation-timeline-outer .timeline-section .timeline-text {
	font-size: 1rem;
	line-height: 1.5;
	color: var(--gray-700);
}

/* ================= Footer ================= */
.custom-footer-menu {
	width: 90%;
	padding: 40px 20px;
	background-color: var(--blue);
}

.footer-wrapper {
	max-width: 90%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

.footer-column {
	flex: 1;
	min-width: 220px;
}

.custom-footer-menu .footer-column h3 {
	color: #ffffff !important;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column li {
	margin-bottom: 6px;
	/* Reduced spacing */
	line-height: 1.25;
	/* Tighter vertical rhythm */
}

.custom-footer-menu .footer-column a {
	color: #ffffff !important;
	text-decoration: none !important;
	font-size: 0.875rem;
	line-height: 1.25;
	/* Keeps clickable area compact */
}

.custom-footer-menu .footer-column a:hover,
.custom-footer-menu .footer-column a:focus-visible {
	color: #ff5539 !important;
}

/* Footer mobile */
@media (max-width: 768px) {
	.footer-wrapper {
		flex-direction: column;
	}

	.footer-column {
		padding-bottom: 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}

	.footer-column:last-child {
		border-bottom: none;
	}
}

/* ================= Social Proof Logos ================= */
.social-proof-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	padding: 12px 0;
}

/* Base logo card (used by all logos) */
.logo-card {
	width: 160px;
	height: 160px;
	background-color: #f2f2f3;
	border: 0px solid #cccccc;
	/* Default: no visible border */
	border-radius: 20px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	/* Keeps size consistent */
	overflow: hidden;
}

.swiper-slide{
	width: 160px !important;
	height: 160px !important;
	background-color: #f2f2f3;
	border: 0px solid #cccccc;
	/* Default: no visible border */
	border-radius: 20px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	/* Keeps size consistent */
	overflow: hidden;
}

/* Tier 1 logo card variant */
.logo-card-tier1 {
	width: 160px;
	height: 160px;
	background-color: #f2f2f3;
	border: 2px solid #FF5539;
	/* Tier 1 highlight border */
	border-radius: 20px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	overflow: hidden;
	transition: border-color 0.2s ease-in-out;
}

/* Hover effect only for Tier 1 */
.logo-card-tier1:hover {
	border-color: #f2f2f3;
	/* Switch from FF5539 to F2f2f3 */
}

/* Make link fill the card without hiding the border */
.logo-card>a,
.logo-card-tier1>a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: transparent !important;
}

/* Image styling */
.logo-card img,
.logo-card-tier1 img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
	border-radius: 0 !important;
	/* Do NOT round the image */
	display: block;
}

/* Responsive size */
@media (max-width: 480px) {

	.logo-card,
	.logo-card-tier1 {
		width: 120px;
		height: 120px;
	}
}

/* ================= Two Column Layout ================= */
.two-col-container {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 32px;
	padding: 24px;
	background-color: #ECEAEA;
	border-radius: 20px;
}

.col-left,
.col-right {
	align-self: start;
}

@media (max-width: 768px) {
	.two-col-container {
		grid-template-columns: 1fr;
	}
}

/* ================= Utilities ================= */
.caps-page-title-small {
	font-size: 1.3rem;
	color: #ff5539 !important;
	line-height: 1.4;
	font-weight: 700 !important;
}

.accent-divider-green {
	width: 100%;
	height: 1px;
	background-color: #1C38F5;
	border: 0;
	margin: 1.5rem 0;
}

.richtext p {
	font-size: 1rem !important;
}

h2.testimonial-name {
	line-height: 2rem !important;
}

/* ================= Press Filters ================= */
.press-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 32px;
}

.press-filters select {
	min-height: 48px;
	min-width: 200px;
	padding: 10px 44px 10px 14px;
	font-size: 1rem;
	font-family: inherit;
	border-radius: 8px;
	border: 1px solid #ccc;
	background-color: rgba(236, 234, 234, 1);
	appearance: none;
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 18px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.press-filters select:focus-visible {
	outline: var(--focus-ring);
}

#press-no-results {
	margin: 40px 0;
	padding: 24px;
	text-align: center;
	font-size: 1rem;
	color: #555;
	border-top: 1px solid #e5e5e5;
}

/* Tighten footer link spacing */
.custom-footer-menu ul {
	margin: 0;
	padding: 0;
}

.custom-footer-menu li {
	margin-bottom: 4px;
	/* Controls space between links */
	line-height: 1.3;
	/* Tight but readable */
}

.custom-footer-menu li:last-child {
	margin-bottom: 0;
}

.custom-footer-menu a {
	line-height: 1.3;
}

.hs-elevate-testimonial-slider {
	padding-top: 20px !important;
	padding-bottom: 0px !important;
}

/* H1 small variant */
h1.small {
	font-size: 18px;
	font-weight: 800;
	/* Heavy weight for Tosh */
	line-height: 1.3;
	color: #FF5539 !important;
}

.activity-timeline-title {
	display: none !important;
}

/* 1. Remove the margin from paragraphs inside list items */
li p {
	margin: 0;
	line-height: 23px;
	/* This controls the text inside the bullet */
}

/* 2. Tighten the space between the bullet points themselves */
li {
	margin-bottom: 2px;
	/* Adjust this to get the exact gap you want */
}

/* 3. Remove extra spacing from the list container itself */
ul {
	margin-top: 0;
	margin-bottom: 0;
}

.footer-follow-us {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-follow-label {
	color: #f2f2f3;
}

.footer-social-links {
	display: flex;
	gap: 14px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links a {
	color: #f2f2f3;
	font-size: 18px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	transition: opacity 0.2s ease-in-out;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
	opacity: 0.75;
}

.footer-legal-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #ffffff;
	font-size: 0.875rem;
	width: 80%;
	margin: 20px auto 0;
}

.footer-legal-left {
	text-align: left;
}

.footer-legal-right {
	text-align: right;
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-legal-right a {
	color: #ffffff;
	text-decoration: none;
}

.footer-legal-right a:hover,
.footer-legal-right a:focus-visible {
	text-decoration: underline;
}

.footer-legal-separator {
	opacity: 0.6;
}

.hs-elevate-tag {
	display: none !important;
}

p {
	margin-top: 0;
	margin-bottom: .80em !important;
}

.hs-elevate-rich-text br {
	line-height: 0.75 !important;
}

/* Footer social icons sizing */
.custom-footer-menu .hs-elevate-social-follow__icon {
	width: 40px !important;
	height: 40px !important;
	fill: #ffffff !important;
}

/* Clickable area */
.custom-footer-menu .hs-elevate-social-follow__link {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff !important;
}

/* Spacing */
.custom-footer-menu .hs-elevate-social-follow {
	gap: 16px;
}

.hs-elevate-card--recent-post__title a {
	text-decoration: none !important;
}

.hs-elevate-blog-image-container {
	display: none !important;
}

.hs-elevate-blog-meta {
	display: none !important;
}

@media (max-width: 767px) {

	.activity-timeline-richtext p,
	.activity-timeline-richtext h1,
	.activity-timeline-richtext h2,
	.activity-timeline-richtext h3,
	.activity-timeline-richtext li {
		text-align: left !important;
	}
}

/* Footer legal links */
.footer-legal a {
	color: #ffffff;
	text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
	color: #FF5539;
}

.system-logo {
	display: none !important;
}

.hs-elevate-blog-share {
	display: none !important;
}

#custom_icon_cards_450height {
	height: 450px !important;
	min-height: 450px !important;
	max-height: 450px !important;
	box-sizing: border-box !important;
	padding: 1rem !important;
	display: flex !important;
	flex-direction: column !important;
	background-color: #f2f2f3 !important;
	border-radius: 20px !important;
	overflow: hidden !important;
}

.custom_icon_cards_450height {
	height: 450px !important;
	min-height: 450px !important;
	max-height: 450px !important;
	box-sizing: border-box !important;
	padding: 1rem !important;
	display: flex !important;
	flex-direction: column !important;
	background-color: #f2f2f3 !important;
	border-radius: 20px !important;
	overflow: hidden !important;
}

#hs_cos_wrapper_widget_1771528954944:hover,
#hs_cos_wrapper_widget_1771528954944:focus {
	background-color: #ffffff !important;
	color: #FF3359 !important;
	border-color: #FF3359 !important;
}

#footer.sr-footer {
	background-color: #002870 !important;
	/* Deep Bull blue */
	color: #ffffff !important;
	padding: 40px 60px;
}

#hs_cos_wrapper_widget_1771549897912 .filter .radio-toggle input[type=checkbox]:checked+.toggle-circle {
	background: #ff5539 !important;
}

.filter .filter-cards .filter-tags {
 display: inline-block !important;
  background-color: #002870 !important;   /* Same orange */
  color: #FFFFFF !important;              /* White text */
  padding: 6px 14px !important;
  border-radius: 999px !important;        /* Full pill */
  font-weight: 600 !important;
  text-decoration: none !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.filter .filter-cards .filter-tags span {
    display: inline-block;
    font-size: 12px;
    line-height: normal;
    color: #FFF !important;
}


.custom-progress-bar .step:first-child {
	border-left: 0 !important;
	padding-left: 0px !important;
	clip-path: none !important;
}

.custom-progress-bar .step {
	clip-path: none !important;
}

ul {
	margin-left: -20px;
}

.hs-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	/* Space between text and arrow */
	background-color: #FF5539;
	color: #000000;
	padding: 15px 20px !important;
	/* Slightly nicer horizontal padding */
	border-radius: 35px !important;
	border: 2px solid #FF5539;
	text-decoration: none;
	font-weight: 700;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

/* Big arrow, no background */
.hs-button::after {
	content: "→";
	display: inline-block;
	font-size: 26px;
	/* Large arrow */
	font-weight: 600;
	/* Slightly bold for a rounded feel */
	line-height: 1;
	color: currentColor;
	/* Always matches text color */
	transition: transform 0.2s ease-in-out;
}

/* Button hover state */
.hs-button:hover,
.hs-button:focus {
	background-color: #ffffff;
	color: #FF5539;
	border-color: #FF5539;
	text-decoration: none;
}

/* Arrow hover micro-interaction */
.hs-button:hover::after,
.hs-button:focus::after {
	transform: translateX(4px);
}

/* Remove left gutter from the mega menu columns */
.hs-menu-wrapper .hs-menu-children-wrapper {
	padding-left: 0 !important;
	margin-left: 0 !important;
}

/* Remove any left spacing on the top-level items */
.hs-menu-wrapper .hs-menu-depth-1 {
	padding-left: 0 !important;
	margin-left: 0 !important;
}

.card {
	border-radius: 20px !important;
	overflow: hidden;
	/* Ensures image/content respect the rounded corners */
}

/* Remove left padding on the label itself */
.hs-menu-wrapper .hs-menu-depth-1>a {
	padding-left: 0 !important;
	margin-left: 0 !important;
	font-family: "Tosh", sans-serif;
	font-size: 18px !important;
	/* 2px larger */
	font-weight: 500;
	/* Less bold */
	text-decoration: none;
	cursor: default;
	pointer-events: none;
	/* Keep them non-clickable */
}

/* Ensure no hover underline */
.hs-menu-wrapper .hs-menu-depth-1>a:hover {
	text-decoration: none;
}

/* Force square social icons in footer */
.footer-follow-us-icons a,
.footer-follow-us-icons img {
	border-radius: 0 !important;
}

.widget-type-cell.dnd-column {
	border-radius: 20px 20px 20px 20px !important;
}

@media (max-width: 768px) {
	.widget-type-cell.dnd-column {
		margin-top: 16px;
		margin-bottom: 16px;
		margin-left: 16px;
		margin-right: 16px;
	}
}

.slick-initialized .slick-slide {
	display: block;
	border-radius: 20px !important;
}

.row.sr-spacer-bottom-50 {
	margin-bottom: 0rem !important;
	border-bottom: 0px solid #ebebeb !important;
}

footer.sr-footer {
	padding-top: 40px;
	padding-bottom: 20px;
}

article>p:nth-of-type(1),
article>p:nth-of-type(2) {
	display: none !important;
}

blockquote p {
	font-size: 16px !important;
  line-height: 1.6;
}

.sr-form {
	border-radius: 20px !important;
}

.field>label,
.form-group label,
.field span,
.form-group span,
.legal-consent-container {
	font-weight: 700 !important;
}

.filter .filter-cards .filter-cards-description h3 {
	text-transform: none !important;
}

.filter .filter-item .filter-cards {
	background: #f2f2f3 !important;
	border-radius: 20px !important;
}

.filter .filter-item .filter-cards .filter-cards-image {
	border-radius: 20px 20px 0 0 !important;
	overflow: hidden;
}

.sidebar-menu.recent ul li a {
	font-size: 1rem;
}

.sr-cover {
	padding-top: 0px !important;
	margin-top: 0px !important;
}

img.no-radius {
  border-radius: 0 !important;
}

img.jake-logo-slider--fade{  border-radius: 0 !important;}

.hs-logo-grid__logo {
  border-radius: 0 !important;
}


#hs_cos_wrapper_widget_1769359950766 .cards_grid a.link_title, #hs_cos_wrapper_widget_1769359950766 .cards_grid .title{
  color: #002870 !important;
  text-decoration: underline !important;
}


.cards_grid a.link_title{
  color: #002870 !important;
  text-decoration: underline !important;
}

#hs_cos_wrapper_widget_1771549897912 .filter .filter-cards .filter-cards-description h3 {
  font-weight:400 !important;}



#hs_cos_wrapper_widget_1769359950766 .cards_grid a.link_title:hover,
#hs_cos_wrapper_widget_1769359950766 .cards_grid .title a:hover,
.cards_grid a.link_title:hover,
#hs_cos_wrapper_widget_1771549897912 .filter .filter-cards .filter-cards-description h3:hover {
  color: #000000 !important;
  font-weight:400;
}

[data-hsfc-id=Renderer] .hsfc-Step--layoutTemplate-top>.hsfc-Step__Banner {display: none !important;}

#hs_cos_wrapper_widget_1772473650415 .tab-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 5px !important;
    border-left: 3px solid transparent;
}

#hs_cos_wrapper_widget_1772473650415 li.menu-item span.menu-text {
    font-weight: 400;
}

/* Prevent default active border */
#hs_cos_wrapper_widget_1772473650415 .tab-link.active {
    position: relative;
    border-left: 3px solid transparent;
}

/* Show border ONLY on hover */
#hs_cos_wrapper_widget_1772473650415 .tab-link:hover,
#hs_cos_wrapper_widget_1772473650415 .tab-link.active:hover {
    border-left: 3px solid #FF5539;
  color: #FF5539;
  transition: border-color 0.15s ease;
}


#hs_cos_wrapper_widget_1772473650415 .cards-wrapper .card {
    padding: 15px 10px;
}
.mt-3{display:none !important;}

#hs_cos_wrapper_widget_1772473650415 .grid-header h3{font-weight:400;}


.sr-cards-testimonial-slider-01 *, .sr-cards-testimonial-slider-01 svg{
  fill: #FF5539 !important;}


.sr-cards-testimonial-slider-01-author{
 padding-top:0px !important;}

#hs_cos_wrapper_widget_1773099637463 .sim-banner-out .inner .main-head h1{font-weight:400 !important; font-size:3.75rem;}

.tags mb-4