/*
	BASE
	- defined by 'b-' or base tag
	- 'alt-' classes should always be attached and never declaired alone
*/

/* TEXT */

.b-text-large {
	font-size: 20px;
	line-height: 38px;
}

.b-eyebrow {
	color: #252e80;
	margin-bottom: 0.75em;
	font-size: 18px;
	font-weight: 700;
}
.b-eyebrow + * {
	margin-top: 0;
}

mark {
	background-color: #c0dcfe;
}
h1 > mark {
	background: linear-gradient(#c0dcfe, #c0dcfe) no-repeat 0 40rem;
}
h2 > mark {
	background: linear-gradient(#c0dcfe, #c0dcfe) no-repeat 0 30rem;
}

@media screen and (max-width: 900px) {
	.b-text-large {
		font-size: 18px;
		line-height: 25px;
	}

	h1 > mark {
		background: linear-gradient(#c0dcfe, #c0dcfe) no-repeat 0 30rem;
	}
	h2 > mark {
		background: linear-gradient(#c0dcfe, #c0dcfe) no-repeat 0 25rem;
	}
}

/* LINKS */

.b-link > * {
	display: inline-block;
	vertical-align: middle;
	font-weight: 600;
}
.b-link > svg polygon {
	transition: fill 0.25s;
}
.b-link:hover > svg polygon {
	fill: #0d50cd;
}

.b-page-body :is(.b-media, .media) video {
	width: 100%;
	height: auto;
	border: none;
	outline: none;
	display: block;
	position: relative;
	object-fit: contain;
}

/* BUTTON */

.hs-button,
.mktoForm button.mktoButton,
.b-button {
	cursor: pointer;
	max-width: 100%;
	vertical-align: top;
	display: inline-block;
	box-sizing: border-box;
	color: #fff;
	font-family: inherit;
	font-weight: 700;
	font-size: 17px;
	line-height: 60px;
	height: 60px;
	width: auto;
	padding: 0 30px;
	background: #1c6bff;
	border: none;
	border-radius: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition:
		color 0.25s,
		background 0.25s,
		box-shadow 0.25s;
}
.mktoForm button.mktoButton {
	background: #1c6bff !important;
	font-size: 17px !important;
	line-height: 60px !important;
	padding: 0 30px !important;
	border: none !important;
}

.b-button.alt-arrow {
	padding: 0 14px 0 20px;
}
/* ! Styles for download button */
.b-button.alt-download svg {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 0 -2px 3px;
}

.b-button.alt-arrow > svg {
	height: 16px;
	width: 26.16px;
	display: inline-block;
	vertical-align: middle;
	transform: rotate(-90deg);
	fill: #1c6bff;
	transition: 0.25s;
	margin-top: -3px;
}

.b-button.alt-arrow:hover > svg {
	fill: #ffffff;
}

.mktoForm button.mktoButton:hover,
#mktoForm_1247 .mktoButtonRow .mktoButtonWrap button:hover,
#mktoForm_1253 .mktoButtonRow .mktoButtonWrap button:hover,
.b-button:hover {
	color: #fff;
	background: #0d50cd;
	border: none;
}
.mktoForm button.mktoButton:hover:hover {
	background: #0d50cd !important;
	border: none !important;
}

.b-button:focus {
	outline: none;
}

.b-button.alt-outline {
	background-color: transparent;
	box-shadow: inset 0 0 0 2px #1c6bff;
	color: #1c6bff;
}
.b-button.alt-outline:hover {
	color: #fff;
	background: #1c6bff;
	box-shadow: inset 0 0 0 2px #1c6bff;
}

@media screen and (max-width: 900px) {
	.b-button {
		font-size: 15px;
		height: 44px;
		line-height: 45px;
		padding: 0 22px;
	}
}

/* PAGE */

.b-page {
	border-right: 0 solid #fff; /* used when scroll is disabled */
	background: #fff;
	max-width: 100%;
	min-width: 320px;
	/* overflow: hidden; */
	padding-top: 160px;
}

.b-page.alt-notice {
	padding-top: 210px;
}

.b-page-head {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	/* height: 160px; */
	transition: background-color 0.25s;
}

.b-page-head + .b-page-body {
	position: relative;
	z-index: 1;
	/* border-top: 160px solid transparent; */
}

.b-page[data-scroll] .b-page-head {
	position: fixed;
	top: -160px;
	transition: transform 0.25s;
	background: #f6f6fb;
}

.b-page[data-scroll="up"] .b-page-head {
	transform: translate(0, 100%);
}

@media screen and (min-width: 901px) {
	.b-page.alt-notice[data-scroll] .b-page-head {
		top: -210px;
	}
	/* .b-page.alt-notice .b-page-head + .b-page-body {
		border-top-width: 210px;
	} */
}

@media screen and (max-width: 1050px) {
	.b-page-head {
		height: 60px;
	}
	/* .b-page-head + .b-page-body {
		border-top-width: 60px;
	} */
	.b-page[data-scroll] .b-page-head {
		top: -60px;
		height: 60px;
	}
	.b-page {
		padding-top: 60px;
	}
	.b-page.alt-notice {
		padding-top: 110px;
	}
}

/* SECTION */

.b-section.bg-white {
	background: #fff;
}
.b-section.bg-light-grey {
	background: #ebeef5;
}
.b-section.bg-light-purple {
	background: #f6f6fb;
}

.b-first-section {
	padding-top: 85px;
	margin-top: -110px;
}

.b-right-offset,
.b-left-offset {
	position: relative;
}

.b-left-offset::before,
.b-right-offset::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
}

@media screen and (min-width: 1601px) {
	.b-left-offset::before {
		left: -125px;
		border-radius: 0 10px 10px 0;
	}
	.b-right-offset::before {
		right: -125px;
		border-radius: 10px 0 0 10px;
	}
}

@media screen and (max-width: 1050px) {
	.b-first-section {
		margin-top: -60px;
		padding-top: 46px;
	}
}

@media screen and (max-width: 1050px) and (min-width: 901px) {
	.b-first-section {
		margin-top: -60px;
		padding-top: 0;
	}
}

/* FRAME */

.b-frame {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 40px;
}

.b-frame-head {
	max-width: 900px;
	text-align: center;
	margin: 0 auto 60px;
}
.b-frame-head > h2 + p {
	font-size: 20px;
}

.b-frame-foot {
	max-width: 900px;
	text-align: center;
	margin: 60px auto 0;
}

.b-frame + .b-frame {
	padding-top: 0;
}

.b-frame.alt-min-pad-top {
	padding-top: 40px;
}
.b-frame.alt-min-pad-bottom {
	padding-bottom: 40px;
}

@media screen and (max-width: 1200px) {
	.b-frame-head br,
	.b-frame-foot br {
		display: none;
	}
}

@media screen and (max-width: 900px) {
	.b-frame {
		/* max-width: 400px; */
		padding: 40px 20px;
	}
	.b-frame-head {
		margin-bottom: 40px;
		text-align: left;
	}
	.b-frame-head > h2 {
		font-size: 26px;
		line-height: 36px;
	}
	.b-frame-foot {
		margin-top: 40px;
	}
	.b-frame.alt-min-pad-top {
		padding-top: 20px;
	}
	.b-frame.alt-min-pad-bottom {
		padding-bottom: 20px;
	}
}

/* NAV & MODAL */

.b-nav,
.b-modal {
	display: block !important;
	pointer-events: none;
	overflow: hidden;
	position: fixed;
	z-index: 3;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transition:
		visibility 0s 0.25s,
		opacity 0.25s;
}

#toggle-nav:checked ~ .b-nav,
#toggle-modal:checked ~ .b-modal {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	transition:
		visibility 0s 0s,
		opacity 0.25s;
}

.b-nav {
	top: 160px;
}

@media screen and (max-width: 1050px) {
	.b-nav {
		top: 60px;
	}
}

/* UTILITY */

.b-scrollbar {
	width: 100px;
	height: 100px;
	overflow: scroll;
	position: absolute;
	top: -9999px;
}

.b-disabled {
	opacity: 0.25 !important;
	pointer-events: none !important;
}

.b-hidden {
	display: none !important;
}

.b-box {
	padding: 20px;
	background: #eee;
}

@media screen and (max-width: 1800px) {
	.b-hidden-1800 {
		display: none !important;
	}
}

@media screen and (max-width: 1500px) {
	.b-hidden-1500 {
		display: none !important;
	}
}

@media screen and (max-width: 1200px) {
	.b-hidden-1200 {
		display: none !important;
	}
}

@media screen and (max-width: 900px) {
	.b-hidden-900 {
		display: none !important;
	}
}

@media screen and (max-width: 600px) {
	.b-hidden-600 {
		display: none !important;
	}
}

/* SPACERS */

.b-spacer {
	display: block;
	clear: both;
}

.b-spacer[data-height="20"] {
	height: 20px;
}
.b-spacer[data-height="40"] {
	height: 40px;
}
.b-spacer[data-height="60"] {
	height: 60px;
}
.b-spacer[data-height="80"] {
	height: 80px;
}
.b-spacer[data-height="100"] {
	height: 100px;
}

@media screen and (max-width: 900px) {
	.b-spacer[data-height="60"],
	.b-spacer[data-height="80"],
	.b-spacer[data-height="100"] {
		height: 40px;
	}
}

/* COLUMNS */

.b-columns {
	display: flex;
	flex-wrap: wrap;
	margin: -20px;
}

.b-columns > .b-column {
	padding: 20px;
	box-sizing: border-box;
	flex: 0 0 auto;
	align-items: stretch;
	position: relative;
}

.b-columns > .b-column[data-width="1/1"] {
	width: 100%;
}
.b-columns > .b-column[data-width="1/2"] {
	width: 50%;
}
.b-columns > .b-column[data-width="1/3"] {
	width: 33.33%;
}
.b-columns > .b-column[data-width="1/4"] {
	width: 25%;
}
.b-columns > .b-column[data-width="1/5"] {
	width: 20%;
}
.b-columns > .b-column[data-width="1/6"] {
	width: 16.66%;
}
.b-columns > .b-column[data-width="1/7"] {
	width: 14.27%;
}
.b-columns > .b-column[data-width="1/8"] {
	width: 12.5%;
}

.b-columns > .b-column[data-width="2/3"] {
	width: 66.66%;
}
.b-columns > .b-column[data-width="2/4"] {
	width: 50%;
}
.b-columns > .b-column[data-width="2/5"] {
	width: 40%;
}
.b-columns > .b-column[data-width="2/6"] {
	width: 33.33%;
}
.b-columns > .b-column[data-width="2/7"] {
	width: 28.56%;
}
.b-columns > .b-column[data-width="2/8"] {
	width: 25%;
}

.b-columns > .b-column[data-width="3/4"] {
	width: 75%;
}
.b-columns > .b-column[data-width="3/5"] {
	width: 60%;
}
.b-columns > .b-column[data-width="3/6"] {
	width: 50%;
}
.b-columns > .b-column[data-width="3/7"] {
	width: 42.84%;
}
.b-columns > .b-column[data-width="3/8"] {
	width: 37.5%;
}

.b-columns > .b-column[data-width="4/5"] {
	width: 80%;
}
.b-columns > .b-column[data-width="4/6"] {
	width: 66.66%;
}
.b-columns > .b-column[data-width="4/7"] {
	width: 57.13%;
}
.b-columns > .b-column[data-width="4/8"] {
	width: 50%;
}

.b-columns > .b-column[data-width="5/6"] {
	width: 83.33%;
}
.b-columns > .b-column[data-width="5/7"] {
	width: 71.41%;
}
.b-columns > .b-column[data-width="5/8"] {
	width: 62.5%;
}

.b-columns > .b-column[data-width="6/7"] {
	width: 85.7%;
}
.b-columns > .b-column[data-width="6/8"] {
	width: 75%;
}

.b-columns > .b-column[data-width="7/8"] {
	width: 87.5%;
}

.b-columns > .b-column[data-width="1/12"] {
	width: calc(1 / 12 * 100%);
}
.b-columns > .b-column[data-width="2/12"] {
	width: calc(2 / 12 * 100%);
}
.b-columns > .b-column[data-width="5/12"] {
	width: calc(5 / 12 * 100%);
}
.b-columns > .b-column[data-width="7/12"] {
	width: calc(7 / 12 * 100%);
}
.b-columns > .b-column[data-width="8/12"] {
	width: calc(8 / 12 * 100%);
}
.b-columns > .b-column[data-width="9/12"] {
	width: calc(9 / 12 * 100%);
}
.b-columns > .b-column[data-width="10/12"] {
	width: calc(10 / 12 * 100%);
}
.b-columns > .b-column[data-width="11/12"] {
	width: calc(11 / 12 * 100%);
}

/* alts */

.b-columns.alt-tight {
	margin: -10px;
}
.b-columns.alt-tight > .b-column {
	padding: 10px;
}

.b-columns.alt-collapse {
	margin: 0;
}
.b-columns.alt-collapse > .b-column {
	padding: 0;
}

.b-columns.alt-center {
	justify-content: center;
}
.b-columns.alt-middle {
	align-items: center;
}
.b-columns.alt-even {
	justify-content: space-evenly;
}
.b-columns.alt-flipped {
	flex-direction: row-reverse;
}

@media screen and (min-width: 1201px) {
	.b-columns.alt-loose {
		margin: -40px;
	}
	.b-columns.alt-loose > .b-column {
		padding: 40px;
	}
}

@media screen and (max-width: 900px) {
	.b-columns > .b-column[data-width] {
		width: 100%;
	}
	.b-columns > .b-column[data-width]:empty {
		display: none;
	}
}

/* WORDPRESS */

.aligncenter {
	margin: 40px auto;
}

.alignleft {
	float: left;
	margin: 0 20px 20px 0;
}

.alignright {
	float: right;
	margin: 0 0 20px 20px;
}

@media screen and (max-width: 900px) {
	.aligncenter,
	.alignleft,
	.alignright {
		float: none;
		margin: 40px auto;
	}
}

/* BG FLOURISH */
.b-flourish {
	border-radius: 100%;
	position: absolute;
	z-index: 0;
}
.b-flourish::before,
.b-flourish::after {
	content: "";
	position: inherit;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: inherit;
	border-radius: inherit;
	background-color: inherit;
}

.b-flourish[data-item="circles"] {
	height: 803.11px;
	width: 803.11px;
	box-shadow: 0 34px 69px 34px rgba(197, 197, 210, 0.15);
}
.b-flourish[data-item="circles"]::before {
	height: 491.42px;
	width: 491.42px;
}
.b-flourish[data-item="circles"]::after {
	height: 201.43px;
	width: 201.43px;
}

.b-flourish[data-item="circles-pfa"] {
	height: 1090px;
	width: 1090px;
	box-shadow: 0 50px 100px 0 rgba(197, 197, 210, 0.2);
}
.b-flourish[data-item="circles-pfa"]::before {
	height: 476px;
	width: 476px;
}

.b-flourish[data-item="circles-testimonial"] {
	height: 925px;
	width: 925px;
	box-shadow: 0 50px 100px 0 #072d6a;
}
.b-flourish[data-item="circles-testimonial"]::before {
	height: 474px;
	width: 474px;
}

.b-flourish[data-item="circles-other-solutions"] {
	width: 758px;
	height: 758px;
	transform: rotate(195deg);
	box-shadow: 0 50px 100px 0 rgba(0, 27, 71, 0.48);
}
.b-flourish[data-item="circles-other-solutions"]::before {
	width: 310px;
	height: 310px;
}

@media screen and (max-width: 900px) {
	.b-flourish {
		display: none;
	}
}

/* BASIC TAGS */
main ul {
	list-style-type: none;
}
main ul > li {
	position: relative;
}
main ul > li::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 3px;
	background-color: #1c6bff;
	position: absolute;
	left: -20px;
	top: 10px;
}

@media screen and (max-width: 900px) {
	main ul li::before {
		content: "";
		width: 10px;
		height: 10px;
		border-radius: 3px;
		background-color: #1c6bff;
		position: absolute;
		left: -20px;
		top: calc(10px * 16 / 18);
	}
}

/* MEDIA */
.b-media {
	box-sizing: border-box;
	margin: 0;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	position: relative;
}
.b-media::after {
	content: "";
	display: block;
}

/* CARDS */
.b-card {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.b-card > .b-media {
	border-radius: 10px;
	max-height: 210px;
}
.b-card > .b-media::after {
	padding-bottom: calc(286 / 370 * 100%);
}
/* image color filter */
/* .b-card > .b-media::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	padding-bottom: 100%;
	background-color: rgba(0, 0, 0, 0.1);
} */

.b-card > .media {
	box-sizing: border-box;
	padding-bottom: 100%;
	background-color: #eee;
	overflow: hidden;
	position: relative;
}

.b-card > .content {
	flex: 1 0 auto;
	box-sizing: border-box;
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	position: relative;
}

.b-card > .content > *:nth-last-child(2) {
	margin-bottom: 20px;
}

.b-card > .content > a {
	margin-top: auto;
	width: fit-content;
}

ul.post-categories {
	padding: 0 !important;
	margin: 0 !important;
	height: 33px;
	display: flex;
	flex-flow: row wrap;
	overflow: hidden;
}

ul.post-categories > li {
	margin: 0;
}
ul.post-categories > li:not(:last-child) {
	margin-right: 8px;
}

.post-categories {
	list-style-type: none;
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 0;
	margin: 0;
}

.post-categories > li > a {
	box-sizing: border-box;
	padding: 8px 16px;
	border-radius: 4px;
	width: fit-content;
	color: #ffffff;
	background-color: #1c6bff;
	transition: 0.25s;

	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 14px;
}
.post-categories > li::before {
	display: none;
}
.post-categories > li > a:hover {
	background: #0d50cd;
}

.trademark {
}

/* HUBSPOT FORMS */
.hs-form {
}

.hs-form .hs-form-field {
	margin: 0 0 30px;
}

.hs-form .hs-error-msgs {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hs-form .hs-error-msgs .hs-error-msg {
	color: red;
	font-size: 16px;
	display: inline-block;
	margin: 6px 0 0 16px;
}

.hs-form .hs-error-msgs li::before {
	display: none;
}

.hs-form .hs-button[type="submit"] {
	min-width: 190px;
}
