@charset "UTF-8";

/* --- Reset ----------------------------- */

*{
	margin:0;
	padding:0;
	border:0;
	outline:0;
	vertical-align:baseline;
	box-sizing:border-box;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none; /* removes weird styling in ios */
	-moz-appearance: none; /* removes weird styling in other mobile browsers */
}


/* --- Fallback Font Adjustment ----------------------------- */

@font-face{
	font-family: "Arial";
	src: local("Arial");
	font-display: swap;
	size-adjust: 107%;
	ascent-override: 93.0%;
	descent-override: 17.5%;
}

/* --- Core Styles ---------------------- */

html{
	min-height:100%;
}

body{
	min-height:100%;
	color:#3E4A57;
	font-family: "Inter", "Arial", sans-serif;
	font-display: swap;
	font-smooth:always;
	font-size: 16px;
	font-weight:400;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.hideChat #hubspot-messages-iframe-container{
	display: none !important;
}

#pageContent{
	position: relative;
	overflow: hidden;
	z-index: 0;
}

h1{
	color:#292F3A;
	font-size: 42px;
	font-weight: 800;
	padding-bottom: 15px;
	letter-spacing: -1px;

}

h2{
	color:#292F3A;
	font-size: 28px;
	font-weight: 800;
	padding-bottom: 15px;
	letter-spacing: -.5px;
}

h3{
	color:#292F3A;
	font-size: 22px;
	font-weight: 600;
	padding-bottom: 15px;
	letter-spacing: -.5px;
}

h4{
	color:#292F3A;
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 15px;
}

h5{
	color:#292F3A;
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 15px;
}

img + h1, img + h2, img + h3,
img + h4, img + h5{
	padding-top: 15px;
}

ul + h1, ol + h1, ul + h2, ol + h2, ul + h3,
ol + h3, ul + h4, ol + h4, ul + h5, ol + h5{
	padding-top: 36px;
}

p{
	line-height: 26px;
	margin-bottom: 36px;
}

ul + p, ol + p, code + p, .checklist + p{
	margin-top: 36px;
}

p.margin-half{
	margin-bottom: 18px;
}

ul + p.margin-half,
ol + p.margin-half{
	margin-top: 18px;
}

p.margin-quarter{
	margin-bottom: 9px;
}

ul + p.margin-quarter,
ol + p.margin-quarter{
	margin-top: 9px;
}

p:last-child{
	margin-bottom: 0;
}

a{
	color: #4155FF;
	font-weight: 500;
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	filter: brightness(70%);
}

a.no-hover-dim:hover{
	filter: unset;
}

a .arrow{
	vertical-align: middle;
	max-height: 18px;
	margin-left: 5px;

	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

a:hover .arrow{
	margin-left: 10px;
}

a img{
	vertical-align: middle;
}

ul li,
ol li{
	margin-left: 15px;
	line-height: 26px;
}

ul.indent li,
ol.indent li{
	margin-left: 60px;
}

ul.no-bullets li{
	list-style-type: none;
}

ul.no-bullets:not(.indent) li{
	margin-left: 0;
}

img{
	max-width: 100%;
	color: transparent; /* Hides alt text before images loads */

	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
}

img[height], img[width]{
	height: auto;
}
	
code{
	color:#FFF;
	font-size: 14px;
	font-family: Menlo, Monaco, Consolas, Courier New, monospace;
	padding:10px;
	background-color:#303B46;
	border-left:5px solid #4155FF;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-top: 36px;
	overflow:scroll;
	display: block;
	scrollbar-width: none;
}

code::-webkit-scrollbar{ /* Hide scrollbar for Chrome, Safari and Opera */
		display: none;
	}

a::selection, a::-moz-selection,
p::selection, p::-moz-selection,
h1::selection, h1::-moz-selection,
h2::selection, h2::-moz-selection,
h3::selection, h3::-moz-selection,
h4::selection, h4::-moz-selection,
h5::selection, h5::-moz-selection{
	color: #112867;
	background: #23DDCD;
}


/* --- Generic Modifiers ---------------------- */

.hide{
	display: none;
}

.opacity-8{
	opacity: .8;
}

.opacity-6{
	opacity: .6;
}

.opacity-4{
	opacity: .4;
}

.opacity-2{
	opacity: .2;
}

.shadow{
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
}

.rounded{
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.rounded.more{
	-webkit-border-radius: 20px;
	border-radius: 20px;
}

.panel{
	padding: 20px;
	background-color: #FFF;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
}

.panel.padding-10{
	padding: 10px;
}

.panel.padding-20{} /* Default panel padding is 20px */

.panel.padding-30{
	padding: 30px;
}

.panel.padding-40{
	padding: 40px;
}

.panel.padding-60{
	padding: 60px;
}

.panel.padding-80{
	padding: 80px;
}

.curved-bottom{
	position: relative;
	overflow-x: clip;
	z-index: 0;
	background-attachment: fixed !important;
}

.curved-bottom::after{
	content: '';
	display: block;
	position: absolute;
	width: 120%;
	height: 200px;
	bottom: -45px;
	left: -10%;
	background: inherit;
	background-color: inherit;
	border-bottom-left-radius: 100%;
	border-bottom-right-radius: 100%;
	z-index: -1;
}

.curved-bottom + .curved-bottom{
	z-index: -2;
}

.curved-bottom + .curved-bottom::after{
	z-index: -3;
}

.curved-bottom + div:not(.curved-bottom){
	position: relative;
	z-index: -4;
}

.border-bottom{
	position: relative;
	border-bottom: 1px dashed #D0DFF1;
}

.border-bottom::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 75px;
}

.border-bottom.mist::before{
	background-color: #4155FF;
}

.border-bottom.seaglass::before{
	background-color: #23DDCD;
}

.border-bottom.seaglass-dark::before{
	background-color: #10869B;
}

.border-bottom.grape::before{
	background-color: #6D4EC4;
}

.border-bottom.coral::before{
	background-color: #FF5868;
}

.border-bottom.tangerine::before{
	background-color: #F48538;
}

.border-bottom.marigold::before{
	background-color: #EAA834;
}


/* --- Border Color Modifiers ---------------------- */

.border-white{
	border-color: #FFF;
}

.border-grey-light{
	border-color: #E8F0FB;
}

.border-grey{
	border-color: #3E4A57;
}

.border-grey-dark{
	border-color: #4B5A68;
}

.border-blueberry{
	border-color: #112867;
}

.border-mist{
	border-color: #4155FF;
}

.border-seaglass{
	border-color: #23DDCD;
}

.border-grape{
	border-color: #6D4EC4;
}

.border-coral{
	border-color: #FF5868;
}

.border-tangerine{
	border-color: #F48538;
}

.border-marigold{
	border-color: #EAA834;
}

/* --- Text Modifiers ---------------------- */

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

.text-center{
	text-align: center;
}

.text-right{
	text-align: right;
}

.text-capitalized{
	text-transform: capitalize;
}

.text-uppercase{
	text-transform: uppercase;
}

.text-lowercase{
	text-transform: lowercase;
}

.text-small{
	font-size: 12px;
}

.text-smedium{
	font-size: 14px;
}

.text-medium{
	font-size: 16px;
}

.text-large{
	font-size: 20px;
}

.text-xlarge{
	font-size: 24px;
}

.text-xxlarge{
	font-size: 28px;
}

.text-xxxlarge{
	font-size: 32px;
}

.text-xxxxlarge{
	font-size: 36px;
}

.text-normal{
	font-weight: 400;
}

.text-semibold{
	font-weight: 500;
}

.text-bold{
	font-weight: 600;
}

.text-bolder{
	font-weight: 800;
}

.text-spacing--1{
	letter-spacing: -1px;
}

.text-spacing--0-5{
	letter-spacing: -.5px;
}

.text-spacing-0{
	letter-spacing: 0px;
}

.text-italic{
	text-decoration: initial;
}

.text-strikethrough{
	text-decoration: line-through;
}

.text-underline{
	text-decoration: underline;
}

.text-underline-hover:hover{
	text-decoration: underline;
}

/* --- Text Colors ---------------------- */

.text-white{
	color: #FFF;
}

.text-grey-light{
	color: #E8F0FB;
}

.text-grey-semilight{
	color: #61717E;
}

.text-grey{
	color: #3E4A57;
}

.text-grey-dark{
	color: #4B5A68;
}

.text-blueberry{
	color: #112867;
}

.text-blueberry-light{
	color: #7590bd;
}

.text-mist{
	color: #4155FF;
}

.text-mist-lighter{
	color: #b1ceff;
}

.text-mist-lightest{
	color: #E2EEFB;
}

.text-seaglass{
	color: #23DDCD;
}

.text-seaglass-dark{
	color: #10869B;
}

.text-grape{
	color: #6D4EC4;
}

.text-grape-light{
	color: #a795dc;
}

.text-coral{
	color: #FF5868;
}

.text-tangerine{
	color: #F48538;
}

.text-marigold{
	color: #EAA834;
}


/* --- Background Colors ---------------------- */

.background-white{
	background: #FFF;
}

.background-white-transition{
	background: linear-gradient(#FFF, #E8F0FB 50%);
	background-repeat: no-repeat;
}

.background-grey-dark{
	background: #4B5A68;
}

.background-blueberry{
	background: #112867;
}

.background-blueberry-transition{
	background: linear-gradient(#08163D, #112867);
}

.background-blueberry-light{
	background: #E8F0FB;
}

.background-blueberry-light-transition{
	background: linear-gradient(#E8F0FB, #FFF 50%);
}

.background-mist{
	background: #4155FF;
}

.background-seaglass{
	background: #23DDCD;
}

.background-seaglass-dark{
	background: #10869B;
}

.background-grape{
	background: #6D4EC4;
}

.background-coral{
	background: #FF5868;
}

.background-tangerine{
	background: #F48538;
}

.background-marigold{
	background: #EAA834;
}


/* --- Sections & Containers -------------------- */

.section{
	padding-top: 40px;
	padding-bottom: 40px;
}

.section.small{
	padding-top: 20px;
	padding-bottom: 20px;
}

.section.medium{} /* Default section size is medium */

.section.large{
	padding-top: 60px;
	padding-bottom: 60px;
}

.section.xlarge{
	padding-top: 80px;
	padding-bottom: 80px;
}

.section.xxlarge{
	padding-top: 100px;
	padding-bottom: 100px;
}

.container{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 10px;
	padding-right: 10px;
}

.container.desktop{} /* Default container size is desktop */

.container.tablet{
	max-width: 960px;
}

.container.mobile{
	max-width: 768px;
}


/* --- Columns -------------------- */

.columns{
	display: flex;
	flex-direction: row;
}

.columns.multiline{
	flex-wrap: wrap;
}

.columns.reverse{
	flex-direction: row-reverse;
}

.columns.center-vertical{
	align-items: center;
}

.columns.align-bottom{
	align-items: end;
}

.columns.center-horizontal{
	justify-content: center;
}

.columns .column{
	display: block;
	flex-basis: 0;
	flex-grow: 1;
	flex-shrink: 1;
	padding: 20px;
}

.columns:not(.reverse):not(.multiline) .column:first-child{
	padding-left: 0px;
}

.columns:not(.reverse):not(.multiline) .column:last-child{
	padding-right: 0px;
}

.columns.reverse:not(.multiline) .column:first-child{
	padding-right: 0px;
}

.columns.reverse:not(.multiline) .column:last-child{
	padding-left: 0px;
}

.columns.gapless .column{
	padding-left: 0;
	padding-right: 0;
}

.columns .column.is-1{
	flex: none;
	width: 8.333%;
}

.columns .column.is-2{
	flex: none;
	width: 16.666%;
}

.columns .column.is-3{
	flex: none;
	width: 25%;
}

.columns .column.is-4{
	flex: none;
	width: 33.333%;
}

.columns .column.is-5{
	flex: none;
	width: 41.666%;
}

.columns .column.is-5-5{
	flex: none;
	width: 45.833%;
}

.columns .column.is-6{
	flex: none;
	width: 50%;
}

.columns .column.is-7{
	flex: none;
	width: 58.333%;
}

.columns .column.is-8{
	flex: none;
	width: 66.666%;
}

.columns .column.is-9{
	flex: none;
	width: 75%;
}

.columns .column.is-10{
	flex: none;
	width: 83.333%;
}

.columns .column.is-11{
	flex: none;
	width: 91.666%;
}

.columns .column.is-12{
	flex: none;
	width: 100%;
}


/* --- Buttons -------------------- */

.button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	min-width: 100px;
	color: #112867;
	background-color: #FFF;
	border: 1px solid #FFF;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.button + .button{
	margin-left: 20px;
}

.button:hover{
	color: #FFF;
	border-color: #FFF;
	background-color: transparent;
	text-decoration: none;
	filter: unset;
}

.button.full-width{
	width: 100%;
}

.button.outline{
	color: #FFF;
	background-color: transparent;
}

.button.outline:hover{
	color: #112867;
	border-color: #FFF;
	background-color: #FFF;
}

.button.small{
	font-size: 12px;
	padding: 10px 20px;
}

.button.medium{} /* Default button size is medium */

.button.large{
	font-size: 16px;
	padding: 20px 40px;
}


.button.grey{
	color: #FFF;
	background-color: #4B5A68;
	border: 1px solid #4B5A68;
}

.button.grey:hover{
	background-color: #61717E;
	border-color: #61717E;
}

.button.grey.outline{
	color: #4B5A68;
	background-color: transparent;
}

.button.grey.outline:hover{
	color: #FFF;
	border-color: #4B5A68;
	background-color: #4B5A68;
}


.button.blueberry{
	color: #FFF;
	background-color: #112867;
	border: 1px solid #112867;
}

.button.blueberry:hover{
	background-color: #33477F;
	border-color: #33477F;
}

.button.blueberry.outline{
	color: #112867;
	background-color: transparent;
}

.button.blueberry.outline:hover{
	color: #FFF;
	border-color: #112867;
	background-color: #112867;
}


.button.mist{
	color: #FFF;
	background-color: #4155FF;
	border: 1px solid #4155FF;
}

.button.mist:hover{
	background-color: #4977FF;
	border-color: #4977FF;
}

.button.mist.outline{
	color: #4155FF;
	background-color: transparent;
}

.button.mist.outline:hover{
	color: #FFF;
	border-color: #4155FF;
	background-color: #4155FF;
}


.button.seaglass{
	color: #FFF;
	background-color: #23DDCD;
	border: 1px solid #23DDCD;
}

.button.seaglass:hover{
	background-color: #17A6AD;
	border-color: #17A6AD;
}

.button.seaglass.outline{
	color: #23DDCD;
	background-color: transparent;
}

.button.seaglass.outline:hover{
	color: #FFF;
	border-color: #23DDCD;
	background-color: #23DDCD;
}


.button.seaglass-dark{
	color: #FFF;
	background-color: #10869B;
	border: 1px solid #10869B;
}

.button.seaglass-dark:hover{
	background-color: #17A6AD;
	border-color: #17A6AD;
}

.button.seaglass-dark.outline{
	color: #10869B;
	background-color: transparent;
}

.button.seaglass-dark.outline:hover{
	color: #FFF;
	border-color: #10869B;
	background-color: #10869B;
}


.button.grape{
	color: #FFF;
	background-color: #6D4EC4;
	border: 1px solid #6D4EC4;
}

.button.grape:hover{
	background-color: #7C60CA;
	border-color: #7C60CA;
}

.button.grape.outline{
	color: #6D4EC4;
	background-color: transparent;
}

.button.grape.outline:hover{
	color: #FFF;
	border-color: #6D4EC4;
	background-color: #6D4EC4;
}


.button.coral{
	color: #FFF;
	background-color: #FF5868;
	border: 1px solid #FF5868;
}

.button.coral:hover{
	background-color: #FF7986;
	border-color: #FF7986;
}

.button.coral.outline{
	color: #FF5868;
	background-color: transparent;
}

.button.coral.outline:hover{
	color: #FFF;
	border-color: #FF5868;
	background-color: #FF5868;
}


.button.tangerine{
	color: #FFF;
	background-color: #F48538;
	border: 1px solid #F48538;
}

.button.tangerine:hover{
	background-color: #FF994B;
	border-color: #FF994B;
}

.button.tangerine.outline{
	color: #F48538;
	background-color: transparent;
}

.button.tangerine.outline:hover{
	color: #FFF;
	border-color: #F48538;
	background-color: #F48538;
}


.button.marigold{
	color: #FFF;
	background-color: #EAA834;
	border: 1px solid #EAA834;
}

.button.marigold:hover{
	background-color: #F7C04A;
	border: 1px solid #F7C04A;
}

.button.marigold.outline{
	color: #EAA834;
	background-color: transparent;
}

.button.marigold.outline:hover{
	color: #FFF;
	border-color: #EAA834;
	background-color: #EAA834;
}


/* --- Badges ------------------------------ */

.badge{
	padding: 2px 10px;
	font-size: 11px;
	color: #112867;
	border: 1px solid #112867;
	display: inline-block;
	vertical-align: middle;
	background-color: #FFF;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.badge.coral{
	color: #ff4663;
	border-color: #ff4663;
	background-color: #ffdee1;
}


/* --- Forms -------------------- */

form{
	width: 100%;
}

form .columns .column{
	padding-top: 0px;
	padding-bottom: 0px;
}

form .field{
	position: relative;
	margin-bottom: 30px;
}

form .field:last-child{
	margin-bottom: 0;
}

form .columns .column .field:last-child{
	margin-bottom: 30px;
}

form .field .icon{
	position: absolute;
	top: calc(50% - 12px);
	right: 15px;
	font-size: 18px;
}

form .field .icon.outside{
	right: -35px;
}

form label{
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	color: #ABB5BE;
	display: block;
	margin-bottom: 3px;
}

select,
textarea,
input[type=text],
input[type=tel],
input[type=password]{
	width: 100%;
	padding: 15px 15px;
	border: 1.5px solid #ABB5BE;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	display: block;
	font-size: 16px;
	font-weight: 500;
	text-align: left;
	color:#3E4A57;
	background-color: #FFF;
}

select{
	padding-left: 10px;
	font-size: 15px;
	cursor: pointer;
	background-position: calc(100% - 15px) 50%;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNLjI5My43OTNBMSAxIDAgMDExLjYxMy43MWwuMDk0LjA4M0w1IDQuMDg1IDguMjkzLjc5M0ExIDEgMCAwMTkuNjEzLjcxbC4wOTQuMDgzYTEgMSAwIDAxLjA4MyAxLjMybC0uMDgzLjA5NC00IDRhMSAxIDAgMDEtMS4zMi4wODNsLS4wOTQtLjA4My00LTRhMSAxIDAgMDEwLTEuNDE0eiIgZmlsbD0iIzI5MkYzQSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+");
}

textarea{
	font-family: "Inter", "Arial", sans-serif;
	font-display: swap;
	font-smooth:always;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

select:hover,
textarea:hover,
input[type=text]:hover,
input[type=tel]:hover,
input[type=password]:hover{
	border-color: #7C8B96;
}

select:focus,
textarea:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=password]:focus{
	border-color: #4155FF;
}

select:autofill,
textarea:autofill,
input[type=text]:autofill,
input[type=tel]:autofill,
input[type=password]:autofill{
	box-shadow:0 0 0 1000px #FFF inset !important;
}

select:-webkit-autofill,
textarea:-webkit-autofill,
input[type=text]:-webkit-autofill,
input[type=tel]:-webkit-autofill,
input[type=password]:-webkit-autofill{
	-webkit-box-shadow:0 0 0 1000px #FFF inset !important;
}

select.error,
textarea.error,
input[type=text].error,
input[type=tel].error,
input[type=password].error{
	border-color: #FF5868;
}

input::placeholder,
textarea::placeholder{
	font-size: 15px;
	font-weight: 500;
	color: #7C8B96;
}

textarea.no-resize{
	resize: none;
}

select::-ms-expand{
    display: none;
}

form .field label.checkbox{
	position: relative;
	display: block;
	background-color: transparent;
	color: inherit;
	top: unset;
	left: unset;
	padding: 0;
	cursor: pointer;
}

form .field label.checkbox input[type=checkbox]{
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

form .field label.checkbox input[type=checkbox] + span::before{
	content:"";
	width: 14px;
	height: 14px;
	background-color: #FFF;
	border: 1px solid #ABB5BE;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}

form .field label.checkbox input[type=checkbox] + span:hover::before{
	border: 1px solid #7C8B96;
}

form .field label.checkbox input[type=checkbox].error + span::before{
	border: 1px solid #FF5868;
}

form .field label.checkbox input[type=checkbox]:checked + span::before{
	background-color: #4155FF;
	border: 1px solid #4155FF;
	background-size: 70%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzJweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMzIgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8cG9seWdvbiBpZD0iRmlsbC0xIiBmaWxsPSIjRkZGRkZGIiBwb2ludHM9IjI4LjEwMDE2NDIgMCAxMS45Njk2MjIzIDE2LjE3ODQwNiAzLjg5OTgzNTggOC4wODUwODU5NCAwIDExLjk5NTQ3MTIgMTEuOTY5NjIyMyAyNCAzMiAzLjkxMTIwODciPjwvcG9seWdvbj4KPC9zdmc+");
}

form .field label.checkbox span{
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	color: inherit;
}

form ul.errors{
	margin: 0 0 0 0;
	padding: 5px 10px;
	background-color: #FF5868;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

form ul.errors li{
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	list-style-type: none;
	text-align: left;
}




/* --- Form Modification - Animated labels -------------------- */

form .field input + label,
form .field select + label,
form .field textarea + label{
	margin:0 0 0 7px;
	padding: 0 8px;
	font-weight: 500;
	background-color: #FFF;
	position: absolute;
	top: calc(50% - 9px);

	pointer-events: none;

	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;

	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

form .field select + label{
	opacity: 0;
	font-size: 13px;
	top: -9px;
}

form .field textarea + label{
	top: 15px;
}

form .field input:focus + label,
form .field select:focus + label,
form .field textarea:focus + label{
	color: #4155FF;
}

form .field input.error + label,
form .field select.error + label,
form .field textarea.error + label{
	color: #FF5868;
}

form .field input:focus + label,
form .field input:valid + label,
form .field input:not([required]) + label,
form .field select:focus + label,
form .field select:valid + label,
form .field select:not([required]) + label,
form .field textarea:focus + label,
form .field textarea:valid + label,
form .field textarea:not([required]) + label{
	opacity: 1;
	font-size: 13px;
	font-weight: 600;
	top: -9px;
}

form .field input:autofill + label,
form .field select:autofill + label,
form .field textarea:autofill + label{
	opacity: 1;
	font-size: 13px;
	font-weight: 600;
	top: -9px;
}

form .field input:-webkit-autofill + label,
form .field select:-webkit-autofill + label,
form .field textarea:-webkit-autofill + label{
	opacity: 1;
	font-size: 13px;
	font-weight: 600;
	top: -9px;
}


/* --- Form Modification - Inline -------------------- */

form.inline{
	display: flex;
	align-items: stretch;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background-color: #FFF;
	border-width: 5px;
	border-style: solid;
}

form.inline label{
	display: none;
}

form.inline input[type=text],
form.inline input[type=tel],
form.inline input[type=password],
form.inline select{
	border: none;
	background: transparent;
	padding: 15px 7.5px;
	margin: 0 7.5px;
}

form.inline input[type=submit]{
	flex: 0 0 auto;
	margin-left: auto;
}


/* --- Tables -------------------- */

.tableContainer{
	width: 100%;
	overflow: hidden;
	overflow-x: scroll;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	scrollbar-width: none;
}

.tableContainer::-webkit-scrollbar{ /* Hide scrollbar for Chrome, Safari and Opera */
		display: none;
	}

table{
	border-collapse: collapse;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	width: 100%;
	overflow: hidden;
}

table.no-wrap{
	white-space: nowrap;
}

table tr td{
	font-size: 14px;
	padding: 15px 40px 15px 15px;
	border-bottom: 1px solid #E3E6EA;
}

table.text-center tr td,
table.center-horizontal tr td,
table tr td.text-center{
	padding: 15px;
}

table.center-vertical tr td{
	vertical-align: middle;
}

table.center-horizontal tr td{
	text-align: center;
}

table tr td:first-child{
	padding-left: 10px;
}

table tr td:last-child{
	padding-right: 10px;
}

table thead tr td{
	font-weight: 600;
	text-transform: uppercase;
}

table tbody tr:nth-child(odd){
	background-color: #F9F9FB;
}

table tbody tr td{
	font-weight: 500;
}



table.blueberry thead tr td,
table.blueberry tbody tr td{
	border-right: 2px solid #0a1a46;
	border-bottom: none;
	color: #6a84b0;
}

table.blueberry thead tr td:last-child,
table.blueberry tbody tr td:last-child{
	border:none;
}

table.blueberry thead tr td{
	background-color: #142450;
}

table.blueberry tbody tr{
	background-color: #203464;
}

table.blueberry tbody tr td{
	color: #b4cced;
}



table.blueberry-light thead tr td,
table.blueberry-light tbody tr td{
	border-right: 2px solid #FFF;
	border-bottom: none;
	color: #112867;
}

table.blueberry-light thead tr td:last-child,
table.blueberry-light tbody tr td:last-child{
	border:none;
}

table.blueberry-light thead tr td{
	background-color: #d1e3f9;
}

table.blueberry-light tbody tr{
	background-color: #e2eefc;
}




/* --- Bubbles ------------------------------ */

.bubble-small,
.bubble-medium,
.bubble-large{
	position:relative;
	--translateX: 0%;
	--translateY: 0%;
	--rotate: 0deg;
}

.bubble-small::before{
	content:'';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: .5;
	background-size: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	width: 125px;
	height: 105px;
	transform: translateX(var(--translateX)) translateY(var(--translateY)) rotate(var(--rotate));
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTc3cHgiIGhlaWdodD0iMTQxcHgiIHZpZXdCb3g9IjAgMCAxNzcgMTQxIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPkZpbGwgMTUgQ29weSAxNzwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBkPSJNMTc3LC00LjU0NzQ3MzUxZS0xMyBMNzAuMzcyNzQxNywtNC41NDc0NzM1MWUtMTMgQzMxLjUwNjk1NDQsLTQuNTQ3NDczNTFlLTEzIDYuODIxMjEwMjZlLTEzLDMxLjU2NDQzIDYuODIxMjEwMjZlLTEzLDcwLjUwMTExNyBDNi44MjEyMTAyNmUtMTMsMTA5LjQzNTU3IDMxLjUwNjk1NDQsMTQxIDcwLjM3Mjc0MTcsMTQxIEMxMDkuMjM2Mjk5LDE0MSAxNDAuNzQzMjUzLDEwOC44Mjc5MTcgMTQwLjc0MzI1Myw3MC41MDExMTcgQzE0MC43NDMyNTMsNDIuODc1MjU5NCAxNTEuNDgyNjksMjUuMzU2MDk2IDE2Mi4zNTU5MjMsMTQuNjg2NDI5NSBDMTYyLjM1NTkyMywxNC42ODY0Mjk1IDE3My4yMTEzMTYsMy43OTc4MjkzNiAxNzcsLTQuNTQ3NDczNTFlLTEzIiBpZD0icGF0aC0xIj48L3BhdGg+CiAgICAgICAgPG1hc2sgaWQ9Im1hc2stMiIgbWFza0NvbnRlbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIG1hc2tVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHg9IjAiIHk9IjAiIHdpZHRoPSIxNzciIGhlaWdodD0iMTQxIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+CiAgICAgICAgPC9tYXNrPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWRhc2hhcnJheT0iNCI+CiAgICAgICAgPHVzZSBpZD0iRmlsbC0xNS1Db3B5LTE3IiBzdHJva2U9IiM4QkE2Q0YiIG1hc2s9InVybCgjbWFzay0yKSIgc3Ryb2tlLXdpZHRoPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4OC41MDAwMDAsIDcwLjUwMDAwMCkgcm90YXRlKC0xODAuMDAwMDAwKSB0cmFuc2xhdGUoLTg4LjUwMDAwMCwgLTcwLjUwMDAwMCkgIiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgIDwvZz4KPC9zdmc+");
}

.bubble-medium::before{
	content:'';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: .5;
	background-size: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	width: 188px;
	height: 158px;
	transform: translateX(var(--translateX)) translateY(var(--translateY)) rotate(var(--rotate));
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQ5cHgiIGhlaWdodD0iMTk4cHgiIHZpZXdCb3g9IjAgMCAyNDkgMTk4IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPkZpbGwgMTUgQ29weSAxNjwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBkPSJNMjQ5LDAgTDk4Ljk5ODk0MTcsMCBDNDQuMzIzMzQyNywwIC0xLjU5MTYxNTczZS0xMiw0NC4zMjQ1MTg3IC0xLjU5MTYxNTczZS0xMiw5OS4wMDE1Njg2IEMtMS41OTE2MTU3M2UtMTIsMTUzLjY3NTQ4MSA0NC4zMjMzNDI3LDE5OCA5OC45OTg5NDE3LDE5OCBDMTUzLjY3MTQwNCwxOTggMTk3Ljk5NDc0NiwxNTIuODIyMTgyIDE5Ny45OTQ3NDYsOTkuMDAxNTY4NiBDMTk3Ljk5NDc0Niw2MC4yMDc4MTExIDIxMy4xMDI3NjcsMzUuNjA2NDMyNyAyMjguMzk5MDEsMjAuNjIzNDk2OCBDMjI4LjM5OTAxLDIwLjYyMzQ5NjggMjQzLjY3MDE1Niw1LjMzMzEyMjA4IDI0OSwwIiBpZD0icGF0aC0xIj48L3BhdGg+CiAgICAgICAgPG1hc2sgaWQ9Im1hc2stMiIgbWFza0NvbnRlbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIG1hc2tVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHg9IjAiIHk9IjAiIHdpZHRoPSIyNDkiIGhlaWdodD0iMTk4IiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+CiAgICAgICAgPC9tYXNrPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWRhc2hhcnJheT0iNCI+CiAgICAgICAgPHVzZSBpZD0iRmlsbC0xNS1Db3B5LTE2IiBzdHJva2U9IiM4QkE2Q0YiIG1hc2s9InVybCgjbWFzay0yKSIgc3Ryb2tlLXdpZHRoPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjQuNTAwMDAwLCA5OS4wMDAwMDApIHJvdGF0ZSgtMTgwLjAwMDAwMCkgdHJhbnNsYXRlKC0xMjQuNTAwMDAwLCAtOTkuMDAwMDAwKSAiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgPC9nPgo8L3N2Zz4=");
}

.bubble-large::before{
	content:'';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: .5;
	background-size: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	width: 250px;
	height: 210px;
	transform: translateX(var(--translateX)) translateY(var(--translateY)) rotate(var(--rotate));
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQxcHgiIGhlaWdodD0iMjcxcHgiIHZpZXdCb3g9IjAgMCAzNDEgMjcxIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPkZpbGwgMTUgQ29weSAxNTwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBkPSJNMzQxLC05LjA5NDk0NzAyZS0xMyBMMTM1LjU3Njg2NCwtOS4wOTQ5NDcwMmUtMTMgQzYwLjY5OTgzODcsLTkuMDk0OTQ3MDJlLTEzIDAsNjAuNjY2Mzg2OCAwLDEzNS41MDIxNDcgQzAsMjEwLjMzMzYxMyA2MC42OTk4Mzg3LDI3MSAxMzUuNTc2ODY0LDI3MSBDMjEwLjQ0OTU5MywyNzEgMjcxLjE0OTQzMiwyMDkuMTY1NzEzIDI3MS4xNDk0MzIsMTM1LjUwMjE0NyBDMjcxLjE0OTQzMiw4Mi40MDU2NDA1IDI5MS44Mzk1MzIsNDguNzM0MDU2OSAzMTIuNzg3Mzk5LDI4LjIyNzEwOTIgQzMxMi43ODczOTksMjguMjI3MTA5MiAzMzMuNzAwODk3LDcuMjk5Mzc0MTYgMzQxLC05LjA5NDk0NzAyZS0xMyIgaWQ9InBhdGgtMSI+PC9wYXRoPgogICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIG1hc2tDb250ZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiBtYXNrVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94IiB4PSIwIiB5PSIwIiB3aWR0aD0iMzQxIiBoZWlnaHQ9IjI3MSIgZmlsbD0id2hpdGUiPgogICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgIDwvbWFzaz4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZS1kYXNoYXJyYXk9IjQiPgogICAgICAgIDx1c2UgaWQ9IkZpbGwtMTUtQ29weS0xNSIgc3Ryb2tlPSIjOEJBNkNGIiBtYXNrPSJ1cmwoI21hc2stMikiIHN0cm9rZS13aWR0aD0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcwLjUwMDAwMCwgMTM1LjUwMDAwMCkgcm90YXRlKC0xODAuMDAwMDAwKSB0cmFuc2xhdGUoLTE3MC41MDAwMDAsIC0xMzUuNTAwMDAwKSAiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgPC9nPgo8L3N2Zz4=");
}

.bubble-small.top::before,
.bubble-medium.top::before,
.bubble-large.top::before{
	top:0;
	bottom: unset;
}

.bubble-small.bottom::before,
.bubble-medium.bottom::before,
.bubble-large.bottom::before{
	top:unset;
	bottom: 0;
}

.bubble-small.left::before,
.bubble-medium.left::before,
.bubble-large.left::before{
	left:0;
	right: unset;
}

.bubble-small.right::before,
.bubble-medium.right::before,
.bubble-large.right::before{
	left: unset;
	right: 0;
}

.bubble-small.behind::before,
.bubble-medium.behind::before,
.bubble-large.behind::before{
	z-index: -1;
}

.bubble-small.x-25::before,
.bubble-medium.x-25::before,
.bubble-large.x-25::before{
	--translateX: 25%;
}

.bubble-small.x-50::before,
.bubble-medium.x-50::before,
.bubble-large.x-50::before{
	--translateX: 50%;
}

.bubble-small.x-75::before,
.bubble-medium.x-75::before,
.bubble-large.x-75::before{
	--translateX: 75%;
}

.bubble-small.x-100::before,
.bubble-medium.x-100::before,
.bubble-large.x-100::before{
	--translateX: 100%;
}

.bubble-small.x-125::before,
.bubble-medium.x-125::before,
.bubble-large.x-125::before{
	--translateX: 125%;
}

.bubble-small.x--25::before,
.bubble-medium.x--25::before,
.bubble-large.x--25::before{
	--translateX: -25%;
}

.bubble-small.x--50::before,
.bubble-medium.x--50::before,
.bubble-large.x--50::before{
	--translateX: -50%;
}

.bubble-small.x--75::before,
.bubble-medium.x--75::before,
.bubble-large.x--75::before{
	--translateX: -75%;
}

.bubble-small.x--100::before,
.bubble-medium.x--100::before,
.bubble-large.x--100::before{
	--translateX: -100%;
}

.bubble-small.x--125::before,
.bubble-medium.x--125::before,
.bubble-large.x--125::before{
	--translateX: -125%;
}

.bubble-small.y-25::before,
.bubble-medium.y-25::before,
.bubble-large.y-25::before{
	--translateY: 25%;
}

.bubble-small.y-50::before,
.bubble-medium.y-50::before,
.bubble-large.y-50::before{
	--translateY: 50%;
}

.bubble-small.y-75::before,
.bubble-medium.y-75::before,
.bubble-large.y-75::before{
	--translateY: 75%;
}

.bubble-small.y-100::before,
.bubble-medium.y-100::before,
.bubble-large.y-100::before{
	--translateY: 100%;
}

.bubble-small.y-125::before,
.bubble-medium.y-125::before,
.bubble-large.y-125::before{
	--translateY: 125%;
}

.bubble-small.y--25::before,
.bubble-medium.y--25::before,
.bubble-large.y--25::before{
	--translateY: -25%;
}

.bubble-small.y--50::before,
.bubble-medium.y--50::before,
.bubble-large.y--50::before{
	--translateY: -50%;
}

.bubble-small.y--75::before,
.bubble-medium.y--75::before,
.bubble-large.y--75::before{
	--translateY: -75%;
}

.bubble-small.y--100::before,
.bubble-medium.y--100::before,
.bubble-large.y--100::before{
	--translateY: -100%;
}

.bubble-small.y--125::before,
.bubble-medium.y--125::before,
.bubble-large.y--125::before{
	--translateY: -125%;
}

.bubble-small.rotate::before,
.bubble-medium.rotate::before,
.bubble-large.rotate::before{
	--rotate: 180deg;
}


/* --- Dots ------------------------------ */

.dot{
	position:relative;
	--translateX: 0%;
	--translateY: 0%;
}

.dot::before{
	content:'';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	transform: translateX(var(--translateX)) translateY(var(--translateY));
}

.dot.seaglass::before{
	background-color: #23DDCD;
}

.dot.mist::before{
	background-color: #4155FF;
}

.dot.blueberry::before{
	background-color: #112867;
}

.dot.grape::before{
	background-color: #6D4EC4;
}

.dot.marigold::before{
	background-color: #FFCF58;
}

.dot.coral::before{
	background-color: #FF5868;
}

.dot.tangerine::before{
	background-color: #F48538;
}

.dot.top::before{
	top:0;
	bottom: unset;
}

.dot.bottom::before{
	top:unset;
	bottom: 0;
}

.dot.left::before{
	left:0;
	right: unset;
}

.dot.right::before{
	left: unset;
	right: 0;
}

.dot.behind::before{
	z-index: -1;
}

.dot.x-100::before{
	--translateX: 100%;
}

.dot.x--100::before{
	--translateX: -100%;
}

.dot.x-300::before{
	--translateX: 300%;
}

.dot.x--300::before{
	--translateX: -300%;
}

.dot.x-500::before{
	--translateX: 500%;
}

.dot.x--500::before{
	--translateX: -500%;
}

.dot.y-100::before{
	--translateY: 100%;
}

.dot.y--100::before{
	--translateY: -100%;
}

.dot.y-300::before{
	--translateY: 300%;
}

.dot.y--300::before{
	--translateY: -300%;
}

.dot.y-500::before{
	--translateY: 500%;
}

.dot.y--500::before{
	--translateY: -500%;
}


/* --- Stats ---------------------- */

.stat{
	max-width: 470px;
	margin: 60px auto 0 auto;
	padding: 30px;
	text-align: center;
	background-color: #FFF;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	position: relative;
	z-index: 0;
}

.stat.compact{
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}

.stat .value{
	width: 100px;
	height: 100px;
	color: #4B5A68;
	background-color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	font-size: 22px;
	font-weight: 800;
	margin: -80px auto 30px auto;
	position: relative;

	/* -- Vars to be overwritten -- */
	--degree: 70%;
	--background: #4B5A68;
	--foreground: #7C8B96;
}

.stat .value::before{
	content: "";
	display: block;
	width: 114px;
	height: 114px;
	background-color: #4b5a68;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 57px);
	left: calc(50% - 57px);
	z-index: -1;
	transition: transform 1s;
	background: radial-gradient(white calc(20% - 1px), transparent 20%), conic-gradient(from 0deg, var(--background) var(--degree), var(--foreground) 0% var(--degree));
}

.stat .description{
	padding: 20px;
	font-size: 15px;
	font-weight: 500;
	background-color: #FFF;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
}

.stat.compact .description{
	padding-left: 30px;
	padding-right: 30px;
}

.stat.seaglass{
	background-color: #bdf5f0;
}

.stat.seaglass .value{
	color: #10869b;
	--background: #10869b;
	--foreground: #23ddcd;
}

.stat.marigold{
	background-color: #ffecbc;
}

.stat.marigold .value{
	color: #dd911e;
	--background: #dd911e;
	--foreground: #ffcf58;
}

.stat.grape{
	background-color: #ded8f2;
}

.stat.grape .value{
	color: #532d9d;
	--background: #532d9d;
	--foreground: #8b71d0;
}

.stat.coral{
	background-color: #ffdee1;
}

.stat.coral .value{
	color: #d42a3d;
	--background: #d42a3d;
	--foreground: #ff7986;
}


/* --- Stories ---------------------- */

.stories{
	padding: 15px;
	background-color: #FFF;
	text-align: left;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
}

.stories .nav{
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.stories .nav ul.logos li{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline-block;
}

.stories .nav ul.logos li a{
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	background-color: transparent;
	padding: 7px 20px;
	height: 40px;
	text-align: center;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.stories .nav ul.logos li a:hover,
.stories .nav ul.logos li a.active{
	background-color: #f3f4f7;
	filter: unset;
}

.stories .nav ul.logos li a img{
	max-height: 20px;
	opacity: .3;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.stories .nav ul.logos li a:hover img,
.stories .nav ul.logos li a.active img{
	opacity: 1;
	-webkit-filter: none;
	filter: none;
}

.stories .nav ul.dots{
	margin-left: auto;
	padding-right: 10px;
}

.stories .nav ul.dots li{
	margin: 0 3px 0 0;
	padding: 0;
	list-style-type: none;
	display: inline-block;
}

.stories .nav ul.dots li:last-child{
	margin: 0;
}

.stories .nav ul.dots li a{
	display: inline-block;
	height: 7px;
	width: 7px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-color: #e3e7ea;

	-webkit-transition: background-color .3s ease;
	-moz-transition: background-color .3s ease;
	-ms-transition: background-color .3s ease;
	-o-transition: background-color .3s ease;
	transition: background-color .3s ease;
}

.stories .nav ul.dots li a:hover,
.stories .nav ul.dots li a.active{
	background-color: #4155FF;
	filter: unset;
}

.stories .cards{
	overflow: hidden;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	min-height: 225px;
	display: flex;
	flex-wrap: nowrap;
	position: relative;

	/* -- iOS Bug -- */
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.stories .cards .card{
	width: 100%;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.stories .cards .card .contentContainer{
	width: 60%;
	padding: 30px;
	font-weight: 500;
}

.stories .cards .card .logoContainer{
	width: 40%;
	padding: 30px;
	text-align: center;
}

.stories .cards .card .logoContainer img{
	max-width: 200px;
}

.stories .cards .backgroundImages{
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
}

.stories .cards .backgroundImages ul{
	width: 100%;
	height: 100%;
}

.stories .cards .backgroundImages ul li{
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	text-align: right;
}

.stories .cards .backgroundImages ul li img{
	opacity: 0;
	height: 100%;

	-webkit-mask-image: linear-gradient(270deg, rgba(0, 0, 0.45), rgba(0, 0, 0, 0));
	mask-image: linear-gradient(270deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.stories .cards .backgroundImages ul li img.active{
	opacity: 1;
}

.stories .cards .backgroundColor{
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	background-color: #f3f4f7;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}


/* --- Faqs ---------------------- */

.faq{
	background-color: #f3f4f7;
	padding: 10px 20px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	cursor: pointer;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.faq:hover{
	background-color: #E6EAEF;
}

.faq.open{
	background-color: #FFF;
	-webkit-box-shadow: 0 13px 43px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 13px 43px rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
}

.faq.open:hover{
	background-color: #FFF;
}

.faq + .faq{
	margin-top: 20px;
}

.faq .question{
	color: #292F3A;
	font-weight: 600;
	display: inline-block;
	padding: 15px 0 15px 30px;
	position: relative;
}

.faq .question::before{
	content:'';
	display: inline-block;
	position: absolute;
	top: calc(50% - 2px);
	left: 0;
	width: 15px;
	height: 2px;
	background-color: #4155FF;
}

.faq .question::after{
	content:'';
	display: inline-block;
	position: absolute;
	top: calc(50% - 2px);
	left: 0;
	width: 15px;
	height: 2px;
	background-color: #4155FF;
	transform: rotate(90deg);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.faq.open .question::after{
	transform: rotate(180deg);
}

.faq .answer{
	max-height: 0;
	overflow: hidden;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.faq.open .answer{
	max-height: 500px;
}

.faq .answer p{
	margin: 10px 0;
}


/* --- Checklists --------------------- */

.checklist{
	padding: 30px;
	background-color: #FFF;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
}

.checklist.center{
	margin-left: auto;
	margin-right: auto;
}

.checklist h2,
.checklist h3,
.checklist h4{
	font-size: 18px;
	text-align: center;
}

.checklist ol li,
.checklist ul li{
	list-style-type: none;
	width: 100%;
	margin: 0;
	padding: 10px 40px 10px 0;
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	border-bottom: 1px solid #eff2f5;
	background-size: 5%;
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-image: url('../../images/common/check-seaglass.svg');
}

.checklist.mist ol li,
.checklist.mist ul li{
	background-image: url('../../images/common/check-mist.svg');
}

.checklist.grape ol li,
.checklist.grape ul li{
	background-image: url('../../images/common/check-grape.svg');
}

.checklist.tangerine ol li,
.checklist.tangerine ul li{
	background-image: url('../../images/common/check-tangerine.svg');
}

.checklist.marigold ol li,
.checklist.marigold ul li{
	background-image: url('../../images/common/check-marigold.svg');
}

.checklist ol li:last-child,
.checklist ul li:last-child{
	border: none;
}


/* --- Text Messages --------------------- */

.textMessages.device{
	position: relative;
	max-width: 290px;
	min-height: 600px;
	padding: 81px 15px 95px 15px;
	background-color: #FFF;
	border: 2px solid #FFF;
	-webkit-border-radius: 60px;
	border-radius: 60px;
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	background-size: 100%;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-image: url('../../images/common/device-bottom.svg');
	overflow: hidden;
}

.textMessages.device.left{
	margin-right: auto;
}

.textMessages.device.center{
	margin-left: auto;
	margin-right: auto;
}

.textMessages.device.right{
	margin-left: auto;
}

.textMessages.device::before{
	content:"";
	position: absolute;
	display: block;
	height: 50px;
	width: 50px;
	top: 15px;
	left: calc(50% - 25px);
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url('../../images/common/device-contact.svg');
}

.textMessages.device::after{
	content:"";
	display: block;
	position: absolute;
	height: 1px;
	width: calc(100% - 20px);
	background-color: #DEE4EA;
	top: 80px;
	left: 10px;
}

.textMessages.device .viewport{
	overflow: hidden;
	height: 420px;
	overflow: hidden;
	overflow-y: scroll;
	scrollbar-width: none;
}

.textMessages.device .viewport::-webkit-scrollbar{ /* Hide scrollbar for Chrome, Safari and Opera */
		display: none;
	}

.textMessages .message,
.textMessages .response{
	max-width: 350px;
	margin-top: 25px;
}

.textMessages .message{
	text-align: right;
}

.textMessages.device .message{
	margin-left: auto;
}

.textMessages .message:first-child,
.textMessages .response:first-child{
	margin-top: 15px;
}

.textMessages .message + .message,
.textMessages .response + .response{
	margin-top: 2px;
}

.textMessages .message p{
	display: inline-block;
	position: relative;
	min-width: 80px;
	padding: 15px;
	margin: 0;
	text-align: left;
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
	color: #FFF;
	background-color: #4155FF;
	-webkit-border-radius: 15px 15px 0px 15px;
	border-radius: 15px 15px 0px 15px;
}

.textMessages.device .message p{
	padding: 10px 15px;
	margin: 0 10px 0 0;
	font-size: 14px;
}

.textMessages .message img{
	margin: 0 5px 0 0;
	-webkit-border-radius: 15px;
	border-radius: 15px;
}

.textMessages .message p + img{
	margin-top: 2px;
	width: 60%;
}

.textMessages.device .message img{
	max-width: 75%;
}

.textMessages .message p::after{
	content:"";
	display: block;
	position: absolute;
	bottom: 0;
	right: -16px;
	width: 17px;
	height: 30px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MS43NzY4NiIgaGVpZ2h0PSIxNTEuNzE0ODQiIHZpZXdCb3g9IjAgMCA4MS43NzY4NiAxNTEuNzE0ODQiPjxkZWZzPjxzdHlsZT4uYXtmaWxsOiM0MTU1ZmY7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJhIiBkPSJNNDM3LjIzMTQ1LDQzNi4yODUxNmMxLjk4OTI1LDU4LjAyNzM0LDI1LjIwMzYxLDk1LjEyNzkzLDQ4Ljg5Nzk0LDExOC4zMzc4OUw1MTksNTg4SDQzNy4yMjMxNFY0MzYuMjg2MTNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDM3LjIyMzE0IC00MzYuMjg1MTYpIi8+PC9zdmc+");
}

.textMessages.device .message p::after{
	height: 20px;
	right: -13px;
}

.textMessages.device .response{
	margin-right: auto;
}

.textMessages .response p{
	display: inline-block;
	position: relative;
	min-width: 80px;
	max-width: 350px;
	padding: 15px;
	margin: 0;
	text-align: left;
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
	color: #3E4A57;
	background-color: #DEE4EA;
	-webkit-border-radius: 15px 15px 15px 0px;
	border-radius: 15px 15px 15px 0px;
}

.textMessages.device .response p{
	padding: 10px 15px;
	margin: 0 0 0 10px;
	font-size: 14px;
}

.textMessages .response img{
	margin: 0 0 0 5px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
}

.textMessages .response p + img{
	margin-top: 2px;
}

.textMessages.device .response img{
	max-width: 75%;
}

.textMessages .response p::after{
	content:"";
	display: block;
	position: absolute;
	bottom: 0;
	right: unset;
	left: -16px;
	width: 17px;
	height: 30px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MS43NzY4NiIgaGVpZ2h0PSIxNTEuNzE0ODQiIHZpZXdCb3g9IjAgMCA4MS43NzY4NiAxNTEuNzE0ODQiPjxkZWZzPjxzdHlsZT4uYXtmaWxsOiNkZWU0ZWE7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJhIiBkPSJNNTE4Ljk5MTcsNDM2LjI4NTE2Yy0xLjk4OTI2LDU4LjAyNzM0LTI1LjIwMzYxLDk1LjEyNzkzLTQ4Ljg5OCwxMTguMzM3ODlMNDM3LjIyMzE0LDU4OEg1MTlWNDM2LjI4NjEzWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQzNy4yMjMxNCAtNDM2LjI4NTE2KSIvPjwvc3ZnPg==");
}

.textMessages.device .response p::after{
	height: 25px;
	left: -13px;
}


/* --- Engager ---------------------- */

.engager{
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #FFF;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 13px 43px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 13px 43px rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
}

.engager .left,
.engager .right{
	width: 50%;
	flex: none;
	padding: 30px 60px;
}

.engager .left{
	-webkit-border-radius: 0 10px 10px 0 ;
	border-radius: 0 10px 10px 0 ;
}

.engager h3{
	font-weight: 600;
}

.engager p{
	font-weight: 500;
}

.engager a{
	font-weight: 600;
}


/* --- Logo Pack ---------------------- */

.logoPack{
	text-align: center;
}

.logoPack h4,
.logoPack p{
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding: 0;
}

.logoPack .images{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-evenly;
	max-width: 950px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
}

.logoPack .images .group.animate{
	position: relative;
	width: 120px;
	height: 40px;
}

.logoPack .images .group img{
	max-height: 35px;
}

.logoPack .images .group.animate img{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
}

.logoPack .images .group.animate img:first-child{
	animation: logoPackFade 18s ease-in;
	-webkit-animation: logoPackFade 18s ease-in;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinte;
}

.logoPack .images .group.animate img:last-child{
	animation: logoPackFade 18s ease-in 9s;
	-webkit-animation: logoPackFade 18s ease-in 9s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinte;
}
		
@-webkit-keyframes logoPackFade{
	0% {
		opacity:0;
		
	}
	5% {
		opacity:1;
		
	}
	45% {
		opacity:1;
		
	}
	50% {
		opacity:0;
		
	}
}

.logoPack.bottomLogoPack .images img{
	max-height: 20px;
}


/*------------- Contact Modal Popup ---------------------------*/

#contactModal{
	max-width:500px;
	margin-left:auto;
	margin-right:auto;
	margin-top:60px;
	margin-bottom:60px;
	padding:10px 35px 10px 35px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	text-align:center;
	}
	
#contactModal img.loading{
	max-width: 75px;
	margin:40px 0;
}

#contactModal #contactModalFormContainer iframe{
	width:100% !important;
}

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

#nav{
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background-color: transparent;
	-webkit-transition: background .3s ease;
	-moz-transition: background .3s ease;
	-ms-transition: background .3s ease;
	-o-transition: background .3s ease;
	transition: background .3s ease;
}

#nav.scrolled{
	background-color: #FFF;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

#nav .container{
	display: flex;
	align-items: center;
	height: 100%;
}

#nav .container .logo{
	position: relative;
	z-index: 2;
	width: 117px;
	height: 30px;
	flex-shrink: 0;
	filter: unset;
}

#nav .container .logo img{
	position: absolute;
}

#nav:not(.scrolled) .container .logo .logoDark{
	opacity: 0;
}

#nav.scrolled .container .logo .logoLight{
	opacity: 0;
}

#nav .container #toggleMobileNav{
	z-index: 2;
	display: none;
}

#nav .container #toggleMobileNav:hover{
	text-decoration: none;
	filter: unset;
}

#nav .container .content{
	display: flex;
	align-items: center;
	width: 100%;
}

#nav .container .content .links{
	margin-left: auto;
	margin-right: auto;
}

#nav .container .content .links li{
	list-style-type: none;
	display: inline-block;
	position: relative;
	margin: 0 20px 0 0;
	padding: 0 0 0 0;
}

#nav .container .content .links li:last-child{
	margin-right: 0;
}

#nav .container .content .links li a{
	color: #FFF;
	padding: 10px 0;
	font-size: 15px;
	position: relative;
}

#nav .container .content .links li a:hover{
	text-decoration: none;
	filter: unset;
}

#nav.scrolled .container .content .links li a{
	color: #3E4A57;
}

#nav .container .content .links li a::after{
	content: "";
	height: 2px;
	width: 0%;
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	background-color: #4155FF;
	webkit-transition: width .1s ease;
	-moz-transition: width .1s ease;
	-ms-transition: width .1s ease;
	-o-transition: width .1s ease;
	transition: width .1s ease;
}

#nav .container .content .links li a.right::after{
	left: unset;
	right: 0;
}

#nav .container .content .links li:hover a::after{
	width: 100%;
}

#nav .container .content .links li a.dropdownArrow{
	padding-right: 20px;
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNLjI5My43OTNBMSAxIDAgMDExLjYxMy43MWwuMDk0LjA4M0w1IDQuMDg1IDguMjkzLjc5M0ExIDEgMCAwMTkuNjEzLjcxbC4wOTQuMDgzYTEgMSAwIDAxLjA4MyAxLjMybC0uMDgzLjA5NC00IDRhMSAxIDAgMDEtMS4zMi4wODNsLS4wOTQtLjA4My00LTRhMSAxIDAgMDEwLTEuNDE0eiIgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+");
}

#nav.scrolled .container .content .links li a.dropdownArrow{
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNLjI5My43OTNBMSAxIDAgMDExLjYxMy43MWwuMDk0LjA4M0w1IDQuMDg1IDguMjkzLjc5M0ExIDEgMCAwMTkuNjEzLjcxbC4wOTQuMDgzYTEgMSAwIDAxLjA4MyAxLjMybC0uMDgzLjA5NC00IDRhMSAxIDAgMDEtMS4zMi4wODNsLS4wOTQtLjA4My00LTRhMSAxIDAgMDEwLTEuNDE0eiIgZmlsbD0iIzNFNEE1NyIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+");
}

#nav .container .content .links li a.mobileOpenDropdown{
	display: none;
}

#nav .container .content .links li:hover .dropdownContainer{
	display: block;
}

#nav .container .content .links li .dropdownContainer{
	display: none;
	position: absolute;
	padding-top: 9px;
	width: 520px;
	left: calc(50% - 260px);

	animation: dropdownContainer .1s ease-in;
	-webkit-animation: dropdownContainer .1s ease-in;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	}
		
@-webkit-keyframes dropdownContainer{
	0% {
		opacity:0;
		margin-top:100px;
	}
	100% {
		opacity:1;
		margin-top:0px;
	}
}

#nav .container .content .links li .dropdownContainer:hover{
	display: block;
}

#nav .container .content .links li .dropdownContainer .dropdown{
	padding: 25px;
	background-color: #FFF;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}

#nav .container .content .links li .dropdownContainer .dropdown .columns .column{
	padding-top: 0px;
	padding-bottom: 0px;
}

#nav .container .content .links li .dropdownContainer .dropdown ul li{
	width: 100%;
	margin: 0;
}

#nav .container .content .links li .dropdownContainer .dropdown ul li.header{
	display: flex;
	align-items: center;
	padding: 0 0 15px 0;
	margin: 0 0 10px 0;
	font-weight: 600;
	border-bottom: 1px solid #dEE4EA;
}

#nav .container .content .links li .dropdownContainer .dropdown ul li.header .icon{
	margin-right: 15px;
}

#nav .container .content .links li .dropdownContainer .dropdown ul li a{
	display: inline-block;
	width: 100%;
	color: #3E4A57;
	padding: 5px 15px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#nav .container .content .links li .dropdownContainer .dropdown ul li a:hover{
	background-color:#f3f4f7;
}

#nav .container .content .links li .dropdownContainer .dropdown ul li a::after{
	content: none;
}

#nav .container .content .links li .dropdownContainer .dropdown ul li a.bottom{
	color: #4155FF;
	font-weight: 600;
	margin-top: 20px;
	width: auto;
	padding-right: 30px;
}

#nav .container .content .links li .dropdownContainer .dropdown ul li a.bottom:hover{
	background-color: transparent;
}

#nav .container .content .links li .dropdownContainer .dropdown ul.resources li a{
	padding: 15px;
}

#nav .container .content .links li .dropdownContainer .dropdown ul.resources li a .icon{
	float: left;
	margin-right: 20px;
}

#nav .container .content .links li .dropdownContainer .dropdown ul.resources li a .content{
	overflow: hidden;
	display: block;
	width: auto;
	line-height: 0px;
	color:#3e4a57;
}

#nav .container .content .links li .dropdownContainer .dropdown ul.resources li a .content b{
	line-height: 12px;
}

#nav .container .content .links li .dropdownContainer .dropdown ul.resources li a .content p{
	margin: 7px 0 0 0;
	padding: 0 0 0 0;
	font-size: 13px;
	line-height: normal;
}

#nav .container .content .buttons a.button{
	margin-right: 10px;
	margin-left: 0;
}

#nav.scrolled .container .content .buttons a.button.blueberry.outline{
	color: #112867;
	border-color: #112867;
	background-color: transparent;
}

#nav.scrolled .container .content .buttons a.button.blueberry.outline:hover{
	color: #FFF;
	border-color: #112867;
	background-color: #112867;
}

#nav .container .content .buttons a.button:last-child{
	margin-right: 0;
}




/* --- Signup Navigation ---------------------- */

#signupNav{
	position: relative;
	z-index: 999;
	width: 100%;
	padding: 25px 0;
}

#signupNav .container{
	display: flex;
	align-items: center;
	height: 100%;
}

#signupNav .container .logo{
	position: relative;
	z-index: 2;
	width: 117px;
	height: 30px;
	flex-shrink: 0;
	filter: unset;
}

#signupNav .container .login{
	margin-left: auto;
	font-size: 14px;
	font-weight: 500;
}

#signupNav .container .login a{
	margin-left: 20px;
	display: inline-block;
	width: 70px;
}



/* --- Left Navigation ---------------------- */

#leftNavContainer{
	display: flex;
	align-items: start;
}

#leftNavContainer #leftNav{
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 290px;
	margin-right: 70px;
	background-color: #f3f4f7;
	padding: 20px 15px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

#leftNavContainer #leftNav h2{
	font-weight: 600;
	font-size: 20px;
	padding-left: 10px;
	padding-bottom: 0;
}

#leftNavContainer #leftNav .links{
	overflow: hidden;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

#leftNavContainer #leftNav .links ul{
	padding-top: 25px;
}

#leftNavContainer #leftNav .links ul li{
	margin: 0 0 10px 0;
	padding: 0 0 0 0;
	list-style-type: none;
}

#leftNavContainer #leftNav .links ul li:last-child{
	margin-bottom: 0;
}

#leftNavContainer #leftNav .links ul li a{
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 5px 10px;
	display: block;
	color: #3E4A57;
	position: relative;
	overflow: hidden;
	font-size: 15px;
	font-weight: 600;
}

#leftNavContainer #leftNav .links ul li a::before,
#leftNavContainer #leftNav .links ul li a::before{
	content: "";
	height: 0%;
	width: 2px;
	background-color: #4155FF;
	position: absolute;
	top: 0;
	left: 0;

	webkit-transition: height .2s ease;
	-moz-transition: height .2s ease;
	-ms-transition: height .2s ease;
	-o-transition: height .2s ease;
	transition: height .2s ease;
}

#leftNavContainer #leftNav .links ul li a.bottom::before,
#leftNavContainer #leftNav .links ul li a.bottom::before{
	top: unset;
	bottom: 0;
}

#leftNavContainer #leftNav .links ul li a.active{
	color: #4155FF;
	background-color: #FFF;
	filter: unset;
}

#leftNavContainer #leftNav .links ul li a:hover{
	background-color: #FFF;
	filter: unset;
}

#leftNavContainer #leftNav .links ul li a:hover::before,
#leftNavContainer #leftNav .links ul li a.active::before{
	height: 100%;
}

#leftNavContainer #leftNav .links ul li ul{
	padding: 10px 0;
}

#leftNavContainer #leftNav .links ul li ul li a{
	padding: 0 10px 0 30px;
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	opacity: .7;
}

#leftNavContainer #leftNav .links ul li ul li a:hover,
#leftNavContainer #leftNav .links ul li ul li a.active{
	background-color: transparent;
	opacity: 1;
}

#leftNavContainer #leftNav .links ul li ul li a:hover::before,
#leftNavContainer #leftNav .links ul li ul li a.active::before{
	content: none;
}

#leftNavContainer #leftNavContent{
	min-width: 0;
}


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

#footer{
	font-size: 15px;
	color: #A2B9DB;
	position: relative;
	z-index: 998;
}

#footer .links ul li{
	list-style-type: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

#footer .links ul li h3{
	color: #FFF;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
}

#footer .links ul li a{
	display: inline-block;
	margin-bottom: 5px;
	color: #A2B9DB;
}

#footer .socialLinks a{
	margin-right: 10px;
}

#footer .socialLinks a:hover{
	text-decoration: none;
}

#footer .socialLinks a:last-child{
	margin-right: 0px;
}

#footer .appLinks a{
	margin-right: 20px;
}

#footer .appLinks a:hover{
	text-decoration: none;
}

#footer .appLinks a:last-child{
	margin-right: 0;
}

#footer .disclaimers{
	border-top: 1px solid #21356E;
}

#footer .disclaimers p{
	font-size: 12px;
	line-height: normal;
	margin-bottom: 15px;
}

#footer .disclaimers a{
	font-size: 12px;
	color: #A2B9DB;
}


/* --- Signup Footer ---------------------- */

#signupFooter .container .section{
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	position: relative;
	z-index: 998;
}


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

@media all and (max-width: 960px){

	/* --- Generic Modifiers ---------------------- */
	
	.hide-tablet{
		display: none !important;
	}

	.show-tablet-block{
		display: block !important;
	}

	.show-tablet-inline-block{
		display: inline-block !important;
	}

	.show-tablet-inline{
		display: inline !important;
	}


	/* --- Left Navigation ---------------------- */

	#leftNavContainer #leftNav{
		margin-right: 40px;
		flex-basis: 240px;
	}
}

@media all and (max-width: 768px){

	/* --- Core Styles ---------------------- */

	body.noScroll{
		overflow: hidden; /* Important that this stays within the media query */
	}

	h1{
		font-size: 34px;
	}

	h2{
		font-size: 22px;
	}

	h3{
		font-size: 22px;
	}


	/* --- Generic Modifiers ---------------------- */
	
	.hide-mobile{
		display: none !important;
	}

	.show-mobile-block{
		display: block !important;
	}

	.show-mobile-flex{
		display: flex !important;
	}

	.show-mobile-inline-block{
		display: inline-block !important;
	}

	.show-mobile-inline{
		display: inline !important;
	}

	.curved-bottom::after{
		height: 70px;
		bottom: -15px;
	}

	.panel,
	.panel.padding-10,
	.panel.padding-20,
	.panel.padding-30,
	.panel.padding-40,
	.panel.padding-60,
	.panel.padding-80{
		padding: 20px;
	}


	/* --- Containers & Sections -------------------- */

	.section{
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.section.small{
		padding-top: 16px;
		padding-bottom: 16px;
	}

	.section.large{
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.section.xlarge{
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.section.xxlarge{
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.section.no-padding-mobile{
		padding-top: 0;
		padding-bottom: 0;
	}

	.section.no-padding-top-mobile{
		padding-top: 0;
		padding-bottom: 0;
	}

	.section.no-padding-bottom-mobile{
		padding-top: 0;
		padding-bottom: 0;
	}

	.container{
		padding-left: 20px;
		padding-right: 20px;
	}

	/* --- Columns ---------------------- */
	
	.columns, .columns .column,
	.columns .column.is-1, .columns .column.is-2,
	.columns .column.is-3, .columns .column.is-4,
	.columns .column.is-5, .columns .column.is-5-5,
	.columns .column.is-6, .columns .column.is-7,
	.columns .column.is-8, .columns .column.is-9,
	.columns .column.is-10, .columns .column.is-11,
	.columns .column.is-12{
		display: block;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	.columns + .columns .column:first-child{
		padding-top: 0;
	}

	.column > img:first-child:last-child{
		margin-top: 40px;
	}


	/* --- Buttons -------------------- */

	.button.full-width-mobile{
		width: 100%;
		display: block;
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}

	.button.full-width-mobile + .button.full-width-mobile{
		margin-top: 20px;
	}


	/* --- Bubbles ------------------------------ */

	.bubble-small::before,
	.bubble-medium::before,
	.bubble-large::before{
		display: none;
	}

	/* --- Dots ------------------------------ */

	.dot::before{
		display: none;
	}

	/* --- Stories ---------------------- */

	.stories .nav ul.logos{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}

	.stories .nav ul.logos li{
		width: 50%;
		padding: 5px;
		flex: none;
		margin-left: auto;
		margin-right: auto;
	}

	.stories .nav ul.logos li a{
		width: 100%;
	}

	.stories .nav ul.dots{
		display: none;
	}

	.stories .cards .card{
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}

	.stories .cards .card .contentContainer{
		width: 100%;
		padding: 0 30px 30px 30px;
		flex: none;
	}

	.stories .cards .card .logoContainer{
		display: flex;
		align-items: center;
		justify-content: center;
		height: 150px;
		width: 100%;
		flex: none;
		padding-top: 0;
		padding-bottom: 0;
	}

	.stories .cards .card .logoContainer img{
		max-width: 125px;
	}

	.stories .cards .backgroundImages ul li img{
		width: 100%;
		height: unset;

		-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0.15), rgba(0, 0, 0, 0));
		mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
	}


	/* --- Checklists --------------------- */

	.checklist{
		padding: 20px;
	}


	/* --- Engager ---------------------- */

	.engager{
		display: block;
	}

	.engager .left,
	.engager .right{
		width: 100%;
		padding: 40px 30px;
	}

	.engager .left{
		-webkit-border-radius: 0 0 10px 10px;
		border-radius: 0 0 10px 10px;
	}


	/* --- Logo Pack ---------------------- */

	.logoPack .images .group{
		position: relative;
		flex: none;
		width: 33.333% !important;
		height: 70px !important;
	}

	.logoPack .images img{
		margin: 10px;
		max-width: 85px;
	}


	/*------------- Contact Modal Popup ---------------------------*/

	#contactModal{
		padding:10px 20px 10px 20px;
	}


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

	#nav{
		height: 60px;
	}

	#nav .container{
		position: relative;
		display: block;
	}

	#nav .container .logo{
		position: absolute;
		top: calc(50% - 15px);
		left: 20px;

		-webkit-transition: left .3s ease;
		-moz-transition: left .3s ease;
		-ms-transition: left .3s ease;
		-o-transition: left .3s ease;
		transition: left .3s ease;
	}

	#nav.mobileReverse .container .logo{
		left: calc(100% - 137px);
	}

	#nav.mobileOpen:not(.scrolled) .container .logo .logoDark{
		animation: logoFadeIn .3s ease-in;
		-webkit-animation: logoFadeIn .3s ease-in;
		animation-iteration-count: 1;
		-webkit-animation-iteration-count: 1;
		animation-fill-mode: forwards;
		-webkit-animation-fill-mode: forwards;
	}

	#nav.mobileOpen:not(.scrolled) .container .logo .logoLight{
		animation: logoFadeOut .3s ease-in;
		-webkit-animation: logoFadeOut .3s ease-in;
		animation-iteration-count: 1;
		-webkit-animation-iteration-count: 1;
		animation-fill-mode: forwards;
		-webkit-animation-fill-mode: forwards;
	}

	@-webkit-keyframes logoFadeIn{
		0% {
			opacity:0;
		}
		50% {
			opacity:0;
		}
		100% {
			opacity:1;
		}
	}

	@-webkit-keyframes logoFadeOut{
		0% {
			opacity:1;
		}
		50% {
			opacity:1;
		}
		100% {
			opacity:0;
		}
	}

	#nav .container #toggleMobileNav{
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		padding: 21px 20px 21px 80px;

		-webkit-transition: right .3s ease;
		-moz-transition: right .3s ease;
		-ms-transition: right .3s ease;
		-o-transition: right .3s ease;
		transition: right .3s ease;
	}

	#nav.mobileReverse .container #toggleMobileNav{
		right: calc(100% - 123px);
		padding: 21px 80px 21px 20px;
	}

	#nav .container #toggleMobileNav .icon{
	    height:17px;
	    width:23px;
	    position: relative;
	}

	#nav .container #toggleMobileNav .icon:before,
	#nav .container #toggleMobileNav .icon:after,
	#nav .container #toggleMobileNav .icon span{
	    background:#FFF;
	    -webkit-border-radius:10px;
	    border-radius:10px;
	    position:absolute;
	    top:9px;
	    left:0;
	    right:0;
	    height:2px;
	    margin-top:-2px;
	    -webkit-transition:all .3s linear;
	    transition:all .3s linear
	}

	#nav .container #toggleMobileNav .icon span{
		width: 80%;
	}

	#nav.scrolled .container #toggleMobileNav .icon:before,
	#nav.mobileOpen .container #toggleMobileNav .icon:before,
	#nav.scrolled .container #toggleMobileNav .icon:after,
	#nav.mobileOpen .container #toggleMobileNav .icon:after,
	#nav.scrolled .container #toggleMobileNav .icon span,
	#nav.mobileOpen .container #toggleMobileNav .icon span{
		background: #3E4A57;
	}

	#nav .container #toggleMobileNav .icon:before,
	#nav .container #toggleMobileNav .icon:after{
	    content:'';
	    top:2px
	}

	#nav .container #toggleMobileNav .icon:after{
	    top:16px
	}

	#nav.mobileOpen .container #toggleMobileNav .icon:before,
	#nav.mobileOpen .container #toggleMobileNav .icon:after{
	    -webkit-transform:rotate(45deg);
	    -ms-transform:rotate(45deg);
	    transform:rotate(45deg);
	    top:50%;
	    left:0;
	    right:0
	}

	#nav.mobileOpen .container #toggleMobileNav .icon:after{
	    -webkit-transform:rotate(-45deg);
	    -ms-transform:rotate(-45deg);
	    transform:rotate(-45deg)
	}

	#nav.mobileOpen .container #toggleMobileNav .icon span{
	    opacity:0
	}

	#nav .container .content{
		display: block;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		right: -100%;
		z-index: 1;
		padding: 80px 20px 80px 20px;
		background-color: #FFF;
		overflow: hidden;

		-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
		box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);

		-webkit-transition: left .3s ease, right .3s ease;
		-moz-transition: left .3s ease, right .3s ease;
		-ms-transition: left .3s ease, right .3s ease;
		-o-transition: left .3s ease, right .3s ease;
		transition: left .3s ease, right .3s ease;
	}

	#nav.mobileReverse .container .content{
		right: unset;
		left: -100%;
	}

	#nav.mobileOpen .container .content{
		right: 0%;
	}

	#nav.mobileReverse.mobileOpen .container .content{
		right: unset;
		left: 0%;
	}

	#nav .container .content .links{
		height: 100%;
		overflow: hidden;
		overflow-y: scroll;
		-ms-overflow-style: none;  /* IE and Edge */
  		scrollbar-width: none;  /* Firefox */
  		padding-bottom: 60px;
	}

	#nav .container .content .links::-webkit-scrollbar{ /* Hide scrollbar for Chrome, Safari and Opera */
		display: none; 
	}

	#nav .container .content .links li{
		width: 100%;
		margin: 0;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		border-bottom: 1px solid #DEE4E9;
	}

	#nav .container .content .links li:last-child{
		border: none;
	}

	#nav .container .content .links li a{
		display: inline-block;
		padding: 15px 0;
		vertical-align: middle;
		color: #3E4A57;
		font-size: 17px;
		flex-grow: 1;
	}

	#nav .container .content .links li a::after{
		content: none;
	}

	#nav.mobileOpen .container .content .links li a.dropdownArrow{
		background-image: none;
		padding-right: 0;
	}

	#nav .container .content .links li a.mobileOpenDropdown{
		display: inline-block;
		vertical-align: middle;
		margin-left: auto;
		padding-top: 20px;
		padding-bottom: 20px;
		padding-left:70px;
		flex-grow: 0;
	}

	#nav .container .content .links li a.mobileOpenDropdown .dropdownArrow{
		height: 15px;
		width: 15px;
		display: block;
		background-size: 100%;
		background-position: 50%;
		background-repeat: no-repeat;
		background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNLjI5My43OTNBMSAxIDAgMDExLjYxMy43MWwuMDk0LjA4M0w1IDQuMDg1IDguMjkzLjc5M0ExIDEgMCAwMTkuNjEzLjcxbC4wOTQuMDgzYTEgMSAwIDAxLjA4MyAxLjMybC0uMDgzLjA5NC00IDRhMSAxIDAgMDEtMS4zMi4wODNsLS4wOTQtLjA4My00LTRhMSAxIDAgMDEwLTEuNDE0eiIgZmlsbD0iIzNFNEE1NyIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+");
	
		-webkit-transition: transform .3s ease;
		-moz-transition: transform .3s ease;
		-ms-transition: transform .3s ease;
		-o-transition: transform .3s ease;
		transition: transform .3s ease;
	}

	#nav .container .content .links li a.mobileOpenDropdown.open .dropdownArrow{
		-webkit-transform: rotate(180deg);
	    -moz-transform: rotate(180deg);
	    -o-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	    transform: rotate(180deg);
	}

	#nav .container .content .links li .dropdownContainer{
		display: block;
		position: relative;
		left: unset;
		width: 100%;
		padding: 0;
		margin: 0;
		background-color: transparent;
		max-height: 0px;
		overflow: hidden;

		animation: none;
		-webkit-animation: none;
		-webkit-animation: none;
		-webkit-transition: all .2s ease;
		-moz-transition: all .2s ease;
		-o-transition: all .2s ease;
		transition: all .2s ease;
	}

	#nav .container .content .links li .dropdownContainer.open{
		max-height: 1000px;
	}

	#nav .container .content .links li .dropdownContainer .dropdown{
		padding:10px 0 20px 0;
		margin: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	#nav .container .content .links li .dropdownContainer .dropdown ul{
		padding-left: 10px;
	}

	#nav .container .content .links li .dropdownContainer .dropdown ul li{
		display: block;
		border: none;
	}

	#nav .container .content .links li .dropdownContainer .dropdown ul li.header{
		margin: 0;
		border: none;
	}

	#nav .container .content .links li .dropdownContainer .dropdown ul li a{
		padding: 10px 15px;
	}

	#nav .container .content .links li .dropdownContainer .dropdown ul li a.bottom{
		margin: 0;
	}

	#nav .container .content .links li .dropdownContainer .dropdown .columns .column{
		margin-bottom: 50px;
	}

	#nav .container .content .links li .dropdownContainer .dropdown .columns .column:last-child{
		margin-bottom: 0;
	}

	#nav .container .content .links li .dropdownContainer .dropdown ul.resources{
		padding: 0;
	}

	#nav .container .content .links li .dropdownContainer .dropdown ul.resources li{
		margin-bottom: 10px;
	}

	#nav .container .content .links li .dropdownContainer .dropdown ul.resources li:last-child{
		margin-bottom: 0;
	}

	#nav .container .content .links li .dropdownContainer .dropdown ul.resources li a .content{
		position: static;
		background-color: transparent;
		height: auto;
		padding: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	#nav .container .content .links li .dropdownContainer .dropdown ul.resources li a .content b{
		line-height: normal;
	}



	#nav.mobileOpen .container .content .buttons a.button.outline{
		color: #61717E;
		border-color: #61717E;
	}

	#nav .container .content .buttons{
		position: absolute;
		height: 80px;
		padding-left: 20px;
		padding-right: 20px;
		left: 0;
		bottom: 0;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #FFF;
		-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
		box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
	}

	#nav .container .content .buttons a.button{
		width: 100%;
		font-size: 14px;
		max-width: 200px;
		margin-left: 12px;
		margin-right: 12px;
		padding-top: 12px;
		padding-bottom: 12px;
	}

	#nav .container .content .buttons a.button:first-child{
		margin-left: 0px;
	}

	#nav .container .content .buttons a.button:last-child{
		margin-right: 0px;
	}


	/* --- Left Navigation ---------------------- */

	#leftNavContainer{
		display: block;
	}

	#leftNavContainer #leftNav{
		margin: 0 0 20px 0;
		position: absolute;
		z-index: 2;
		width: calc(100% - 40px);
		cursor: pointer;
		
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
	}

	#leftNavContainer #leftNav:hover{
		background-color: #E6EAEF;
	}

	#leftNavContainer #leftNav.open{
		background-color: #FFF;
		-webkit-box-shadow: 0 13px 43px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
		box-shadow: 0 13px 43px rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	}

	#leftNavContainer #leftNav.open:hover{
		background-color: #FFF;
	}

	#leftNavContainer #leftNav h2{
		position: relative;
		padding-left: 30px;
	}

	#leftNavContainer #leftNav h2::before{
		content:'';
		display: inline-block;
		position: absolute;
		top: calc(50% - 2px);
		left: 0;
		width: 15px;
		height: 2px;
		background-color: #4155FF;
	}

	#leftNavContainer #leftNav h2::after{
		content:'';
		display: inline-block;
		position: absolute;
		top: calc(50% - 2px);
		left: 0;
		width: 15px;
		height: 2px;
		background-color: #4155FF;
		transform: rotate(90deg);

		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
	}

	#leftNavContainer #leftNav.open h2::after{
		transform: rotate(180deg);
	}

	#leftNavContainer #leftNav .links{
		max-height: 0;
	}

	#leftNavContainer #leftNav.open .links{
		max-height: 2000px;
	}

	#leftNavContainer #leftNav .links ul li a{
		padding: 15px;
		font-size: 16px;
		-webkit-border-radius: 0px;
		border-radius: 0px;
	}

	#leftNavContainer #leftNav .links ul li a.active{
	    background-color: #f3f4f7;
	    -webkit-border-radius: 3px;
		border-radius: 3px;
	}

	#leftNavContainer #leftNav .links ul li ul li a {
	    padding: 5px 10px 5px 30px;
	    margin-bottom: 5px;
	    font-size: 15px;
	}

	#leftNavContainer #leftNavContent{
		padding-top: 90px;
	}


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

	#footer,
	#footer .text-right{
		text-align: center;
	}

	#footer .section.medium{
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#footer .column + .column{
		padding-top: 20px;
	}

	#footer .links ul li a{
		margin-bottom: 15px;
	}

	#footer .socialLinks a{
		margin-right: 20px;
	}

	#footer .disclaimers{
		padding-top: 0;
		padding-bottom: 0;
	}
}