@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;
    z-index: 0;
    overflow: hidden;
    /* Fall back to hidden as safari doesn't yet support clip */
    overflow: clip;
    /* Allows position sticky to work */
}

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.dark-bg:hover {
    text-decoration: none;
    filter: brightness(150%);
}

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;
}

a.bold {
    font-weight: 600;
}

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;
}

/* panels for use-cases */
.columns.cta-columns .column.is-4 {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%;
}

.icon-border-panel {
    padding: 40px;
    background-color: #FFF;
    -webkit-box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.13);
    box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.13);
    border-image: linear-gradient(to right, #23DDCD 0%, #4155FF 100%) 1;
    border-width: 4px;
    border-style: solid;
    border-top: none;
    border-left: none;
    border-right: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    line-height: 28px;
    color: #112867;
    display: flex;
    flex-direction: column;
}

.icon-border-panel h2 {
    color: #112867;
    font-size: 22px;
    font-weight: 600;
}

.icon-border-panel p {
    font-size: 18px;
}

.height-full {
    height: 100%;
}


/* --- Border Bottoms ---------------------- */

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

.grey-border-bottom {
    border-bottom: 1px solid #DEE4EA;
}

.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-bottom p {
    margin-bottom: 36px;
}


/* --- Highlight Modifiers ---------------------- */

.highlight {
    position: relative;
}

.highlight::after {
    content: '';
    display: block;
    width: calc(100% + 20px);
    height: 90%;
    position: absolute;
    left: -10px;
    bottom: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDMgNSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjQzdDRUQ1IiBzdHJva2Utb3BhY2l0eT0iMTAwJSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIiBzdHJva2Utd2lkdGg9IjMiIGQ9Ik0yIDMuMTA4YzE0LjcyNy0uNTUzIDI5LjQ0Ny0uMzkxIDQ0LjE5LS42MTlDNzcuODE4IDIgMTAxLjI2NyAyIDE0MC41OCAyLjQ5Ii8+PC9zdmc+");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

.highlight.seaglass::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDMgNSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjMjNERENEIiBzdHJva2Utb3BhY2l0eT0iMTAwJSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIiBzdHJva2Utd2lkdGg9IjMiIGQ9Ik0yIDMuMTA4YzE0LjcyNy0uNTUzIDI5LjQ0Ny0uMzkxIDQ0LjE5LS42MTlDNzcuODE4IDIgMTAxLjI2NyAyIDE0MC41OCAyLjQ5Ii8+PC9zdmc+");
}

.highlight.coral::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDMgNSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjRkY1ODY4IiBzdHJva2Utb3BhY2l0eT0iMTAwJSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIiBzdHJva2Utd2lkdGg9IjMiIGQ9Ik0yIDMuMTA4YzE0LjcyNy0uNTUzIDI5LjQ0Ny0uMzkxIDQ0LjE5LS42MTlDNzcuODE4IDIgMTAxLjI2NyAyIDE0MC41OCAyLjQ5Ii8+PC9zdmc+");
}

.highlight.marigold::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDMgNSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjRkZDRjU4IiBzdHJva2Utb3BhY2l0eT0iMTAwJSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIiBzdHJva2Utd2lkdGg9IjMiIGQ9Ik0yIDMuMTA4YzE0LjcyNy0uNTUzIDI5LjQ0Ny0uMzkxIDQ0LjE5LS42MTlDNzcuODE4IDIgMTAxLjI2NyAyIDE0MC41OCAyLjQ5Ii8+PC9zdmc+");
}


/* --- 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-line-height-normal {
    line-height: normal;
}

.text-line-height-1 {
    line-height: 1em;
}

.text-line-height-1-5 {
    line-height: 1.5em;
}

.text-line-height-2 {
    line-height: 2em;
}

.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;
}

.text-gradient-blueberry {
    background: -webkit-linear-gradient(left, #23DDCD, #4155FF);
    background: -o-linear-gradient(right, #23DDCD, #4155FF);
    background: -moz-linear-gradient(right, #23DDCD, #4155FF);
    background: linear-gradient(to right, #23DDCD, #4155FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

#hero.background-radial-blueberry .text-gradient-blueberry {
    background: -webkit-linear-gradient(left, #23DDCD, #6599FF);
    background: -o-linear-gradient(right, #23DDCD, #6599FF);
    background: -moz-linear-gradient(right, #23DDCD, #6599FF);
    background: linear-gradient(to right, #23DDCD, #6599FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

#hero .white-hero-p {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 20px !important;
    padding-bottom: 0 !important;
}


.white-text {
    color: #FFF;
}

/* --- 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-transition-horizontal {
    background: linear-gradient(to right, #08163D, #4155FF);

}

.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;
}

.background-marigold-light {
    background: #FFF5DE;
}

.background-radial-blueberry {
    background: #112867;
    background-image: radial-gradient(circle at 50% 20%, #1621B9 0%, #112867 60%);
}

.background-light-seaglass-radial {
    background: rgb(211, 248, 245);
    background: -moz-linear-gradient(140deg, rgba(211, 248, 245, 1) 0%, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 1) 66%, rgba(209, 227, 240, 1) 100%);
    background: -webkit-linear-gradient(140deg, rgba(211, 248, 245, 1) 0%, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 1) 66%, rgba(209, 227, 240, 1) 100%);
    background: linear-gradient(140deg, rgba(211, 248, 245, 1) 0%, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 1) 66%, rgba(209, 227, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a7f1eb", endColorstr="#b1ceff", GradientType=1);
}

.background-logo-repeating {
    background: url('/images/common/bubble-pattern.svg'), #F8F8FB;
    background-size: 40%;
    background-attachment: fixed;
    background-position: center;
    border-top: 1px solid #DEE4EA;
    border-bottom: 1px solid #DEE4EA;
}

.background-light-grey-w-border {
    background: #F8F8FB;
    border-top: 1px solid #DEE4EA;
    border-bottom: 1px solid #DEE4EA;
}

.background-light-grey {
    background: #F8F8FB;
}

.top-grey-border {
    border-top: 1px solid #DEE4EA;
}

.bottom-grey-border {
    border-bottom: 1px solid #DEE4EA;
}

/* --- 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;
}

.section.xxxlarge {
    padding-top: 120px;
    padding-bottom: 120px;
}

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

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

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

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

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

.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: 0;
}

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

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

.columns.card-columns.reverse .column:first-child,
.columns.card-columns:not(.reverse) .column:last-child {
    padding-left: 55px;
}

.columns.card-columns.reverse .column:last-child,
.columns.card-columns:not(.reverse) .column:first-child {
    padding-right: 55px;
}

.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: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    min-width: 100px;
    color: #112867;
    background-color: #FFF;
    border: 2px solid #FFF;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -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.small-medium {
    padding: 10px 30px;
}

.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: 2px 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;
}

/* Gradient buttons  */

.button.gradient-button {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
    z-index: 1;
    border: none;
    padding: 17px 30px;
}

.button i {
    margin-right: 10px;
}

.button img {
    margin-right: 10px;
}

.button.gradient-button:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    border-radius: 35px;
}

.button.gradient-button:hover:before {
    opacity: 1;
}

.button.gradient-button.seaglass-mist-gradient {
    background: #FF5868;
    background: -moz-linear-gradient(90deg, #FF5868 0%, #4155FF 100%);
    background: -webkit-linear-gradient(90deg, #FF5868 0%, #4155FF 100%);
    background: linear-gradient(90deg, #FF5868 0%, #4155FF 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF5868", endColorstr="#4155ff", GradientType=1);
    color: white;
}

.button.seaglass-mist-gradient:before {
    background: rgb(35, 221, 205);
    background: linear-gradient(90deg, #4155FF 0%, #FF5868 100%);
}

.button.gradient-button.mist-blueberry-gradient {
    background: #4155FF;
    background: -moz-linear-gradient(97deg, #23DDCD 0%, #4155FF 100%);
    background: -webkit-linear-gradient(97deg, #23DDCD 0%, #4155FF 100%);
    background: linear-gradient(97deg, #23DDCD 0%, #4155FF 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#23DDCD", endColorstr="#4155FF", GradientType=1);
    color: white;
}

.button.gradient-button.mist-blueberry-gradient:before {
    background: #23DDCD;
    background: linear-gradient(90deg, #4155FF 0%, #23DDCD 100%);
}


/* --- 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;
}

/* --- 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: 16px;
    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;
}

.stat.grape-gradient {
    background-color: #ded8f2;
    background-image: linear-gradient(116deg, #FFBCC3 0%, #B1CEFF 100%, #B1CEFF 100%);
}

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

.stat.seaglass-gradient {
    background-color: #bdf5f0;
    background-image: linear-gradient(118deg, #A7F1EB 0%, #B1CEFF 100%, #B1CEFF 100%);
}

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

.stat.marigold-gradient {
    background-color: #ffecbc;
    background-image: linear-gradient(118deg, #FFECBC 0%, #FFBCC3 100%, #B1CEFF 100%);
}

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

.container .stat .value.d-85 {
    --degree: 85%;
}

.container .stat .value.d-94 {
    --degree: 94%;
}

.container .stat .value.d-71 {
    --degree: 71%;
}

/* --- Regular Slider ---------------------- */

.slider {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.slider .cards {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    overflow: hidden;
}

.slider .cards .card {
    width: 100%;
    padding: 20px;
    flex: none;
    display: flex;
    flex-direction: column;

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

.slider .cards .card.dragging {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

.slider .cards .card.dragging * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.slider ul.dots {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

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

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

    -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;
}

.slider ul.dots li a:hover,
.slider ul.dots li a.active {
    background-color: #fff;
    filter: unset;
}


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

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

    -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.seaglass-dark ol li,
.checklist.seaglass-dark ul li {
    background-image: url('/images/common/check-seaglass-dark.svg');
}

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

.checklist.coral ol li,
.checklist.coral ul li {
    background-image: url('/images/common/check-coral.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;
}

.checklist-reverse {
    list-style: none;
}

.checklist-reverse li {
    margin-left: 0;
    font-size: 18px;
    list-style: none;
    color: #112867;
    font-weight: 600;
    display: flex;
    padding-bottom: 15px;
}

.checklist-reverse li:last-child {
    padding-bottom: 0;
}


.background-radial-blueberry .checklist-reverse li {
    color: #FFF;
}

.checklist-reverse li::before {
    content: "";
    margin-right: 20px;
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    background: url('../images/common/check-mist.svg');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-reverse.blueberry li::before {
    background: url('../images/common/check-blueberry.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.background-radial-blueberry .checklist-reverse li::before {
    background: url('../images/common/check-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.checklist-reverse+p {
    margin-top: 35px;
}

.checklist-reverse.columns ul.column {
    padding: 0 !important;
}

.checklist-reverse.columns ul.column:last-child {
    padding-left: 10px !important;
}

/* --- Icon lists --------------------- */
.icon-list .icon-list-item {
    display: flex;
    align-items: center;
}

.icon-list .icon-list-item:not(:last-child) {
    border-bottom: 1px solid #C7CED5;
    padding-bottom: 17px;
    margin-bottom: 17px;
}

.background-radial-blueberry .icon-list .icon-list-item:not(:last-child) {
    border-color: #5C77A7;
}

.icon-list .icon-list-item span {
    margin-bottom: 0;
    min-width: 54px;
}

.icon-list .icon-list-item p {
    font-size: 18px;
    margin-left: 20px;
}

.icon-list.icon-list-numbers .circle-icon {
    font-size: 30px;
    font-weight: 600;
}


/* --- 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;
}

.footer-logoPack {
    padding-bottom: 30px;
}

.logoPack h4,
.logoPack p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    padding-bottom: 15px;
    color: #112867;
}

.logoPack h4.white-text,
.logoPack p.white-text {
    color: #FFF;
}


.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 12s ease-in;
    -webkit-animation: logoPackFade 12s ease-in;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinte;
}

.logoPack .images .group.animate img:last-child {
    animation: logoPackFade 12s ease-in 6s;
    -webkit-animation: logoPackFade 12s ease-in 6s;
    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;
}

.logoPack.use-cases-logos .images {
    max-width: 100%;
}

.logoPack.use-cases-logos .images .group {
    width: 150px;
}

.logoPack.use-cases-logos .images .group img {
    max-height: 65px;
    margin: auto;
    max-width: 150px;
}

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

#formModal {
    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;
}

#formModal img.loading {
    max-width: 75px;
    margin: 40px 0;
}

/* --- 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.hovered {
    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.hovered .logo .logoLight {
    opacity: 0;
}

#nav.hovered:not(.scrolled) .container .logo .logoDark {
    opacity: 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;
    font-size: 0;
}

#nav .container .content .links li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0 12px;
    cursor: pointer;
    font-size: 15px;
}

#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,
#nav.hovered .container .content .links li a {
    color: #3E4A57;
}

#nav .container .content .links li a:not(.nav-item-link, .nav-sub-title, .nav-widget-title, .view-all-link)::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.mobileOpenDropdown {
    display: none;
}

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

#nav .container .content .links li .dropdownContainer {
    display: none;
    position: fixed;
    padding-top: 18px;
    width: 100%;
    left: 0;

    animation: dropdownContainer .2s ease-in;
    -webkit-animation: dropdownContainer .2s 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;
    }

    100% {
        opacity: 1;
    }
}

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

#nav .container .content .links li .dropdownContainer .dropdown {
    background-color: #FFF;
    -webkit-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);
    width: 100%;
    border-radius: 0;
    border-top: 1px solid #DEE4EA;
}

#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,
#nav.hovered .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,
#nav.hovered .container .content .buttons a.button.blueberry.outline:hover {
    color: #FFF;
    border-color: #112867;
    background-color: #112867;
}

#nav.scrolled .container .content .buttons a.button.transparent,
#nav.hovered .container .content .buttons a.button.transparent {
    color: #112867;
}

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

/* new navigation css */

#nav .nav-header-columns .column .nav-title {
    padding: 0;
    font-weight: 900;
    font-size: 24px;
}

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

#nav .columns.nav-items-contain {
    flex-wrap: wrap;
    padding-top: 10px;
}

#nav .columns.nav-items-contain .nav-link-column {
    flex-basis: 50%;
    padding: 0;
}

#nav .column.nav-widgets {
    max-width: 33%;
    text-align: center;
    border-left: 1px solid #DEE4EA;
    padding-top: 40px;
    padding-left: 60px;
    padding-right: 0;
}

#nav .column.right-nav-items {
    max-width: 33%;
    border-left: 1px solid #DEE4EA;
    padding-top: 40px;
}

.column.nav-items.right-nav-items .nav-items-contain {
    flex-direction: column;
}

#nav .column.nav-items {
    padding-top: 40px;
    padding-bottom: 60px;
}

#nav .column.nav-items .columns .column .columns .column:first-child {
    max-width: 20px;
    padding-right: 0;
    padding-left: 0;
}

#nav .column.nav-items .columns.use-cases-nav .column .columns .column:first-child {
    display: flex;
    align-items: center;
}

#nav .container .content .nav-items a.nav-sub-title {
    font-size: 14px;
    padding-bottom: 5px;
    font-weight: 600;
}

#nav .nav-items .use-cases-nav .nav-sub-title {
    padding-bottom: 0;
}

#nav .nav-items p {
    font-size: 12px;
    line-height: 20px;
}

#nav .nav-header-columns {
    align-items: flex-start;
}

#nav .nav-header-columns .column {
    padding: 0;
}

#nav .nav-header-columns .column h3 {
    padding: 0;
    font-size: 13px;
    color: #4155FE;
    font-weight: 600;
}

#nav .nav-header-columns .column.text-right {
    padding-right: 20px;
}

#nav .container .content .links li .nav-item-link {
    display: block;
    margin-right: 70px;
}

#nav .container .content .links li .nav-item-link,
#nav .container .content .links li .nav-item-link .nav-sub-title {
    color: #112867;
    cursor: pointer;
}

#nav .container .content .links li .nav-items-contain .nav-item-link {
    padding: 0;
    font-weight: 500;
}

#nav .container .content .links li .nav-items-contain .nav-item-link img {
    vertical-align: middle;
}

#nav .container .content .links li .dropdownContainer .dropdown .columns.nav-items-contain.use-cases-nav .column.nav-link-column {
    flex-basis: 40%;
    border-bottom: 1px solid #DEE4EA;
    margin: 0 15px;
}

#nav .container .content .links li .dropdownContainer .dropdown .columns.nav-items-contain.use-cases-nav .column.nav-link-column:nth-of-type(odd) {
    margin-left: 0;
}

#nav .container .content .links li .dropdownContainer .dropdown .columns.nav-items-contain.use-cases-nav .column.nav-link-column:nth-of-type(even) {
    margin-right: 0;
}

#nav .container .content .links li .dropdownContainer .dropdown .columns.nav-items-contain.use-cases-nav .column.nav-link-column:nth-of-type(11),
#nav .container .content .links li .dropdownContainer .dropdown .columns.nav-items-contain.use-cases-nav .column.nav-link-column:nth-of-type(12) {
    border-bottom: none;
}

#nav .dropdown .dropdown-container .nav-items .nav-item-link img.navigation-icon:last-child {
    display: none;
}

#nav .dropdown .dropdown-container .nav-items .nav-item-link:hover .nav-sub-title {
    color: #4155FE;
}

#nav .dropdown .dropdown-container .nav-items .nav-item-link:hover img.navigation-icon:first-child {
    display: none;
}

#nav .dropdown .dropdown-container .nav-items .nav-item-link:hover img.navigation-icon:last-child {
    display: inline-block;
}

#nav .container .content .links li a.view-all-link {
    color: #4155FF;
    font-size: 12px;
    font-weight: 600;
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    display: block;
    margin-right: 70px;
}

#nav .container .content .links li a.view-all-link img {
    font-weight: 600;
}

#nav .container .content .links li a.view-all-link img {
    transition: .2s;
}

#nav .container .content .links li a.view-all-link:hover img {
    margin-right: -7px;
    margin-left: 7px;
}

#nav .container .content .buttons .gradient-button {
    padding: 12px 30px;
}

/* navigation widgets  */
#nav .nav-widget {
    padding-left: 30px;
    border-radius: 15px;
    width: 300px;
    height: 180px;
    display: flex;
    color: white;
    font-size: 13px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease-out;
}

#nav .nav-widget .columns .column:not(:first-child) {
    padding: 0;
    display: flex;
    align-items: end;
}

#nav .nav-widget img {
    object-fit: contain;
}

#nav .container .content .links .nav-widgets .nav-widget .nav-widget-title {
    color: white;
    font-size: 16px;
    font-weight: 800;
    padding-right: 20px;
    padding-bottom: 15px;
    cursor: pointer;
}

#nav .container .content .links li .nav-widget a {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

#nav.scrolled .container .content .links .nav-widget a {
    color: white;
}

#nav .nav-widgets a {
    display: block;
}

#nav .nav-widget .columns .column:first-child {
    align-self: center;
    padding-right: 0;
    max-width: 120px;
}

#nav .nav-widgets .nav-widget-contain span {
    display: flex;
    align-items: center;
}

#nav .nav-widgets .nav-widget-contain span img {
    transition: .2s;
    margin-left: 5px;
}

#nav .nav-widgets .nav-widget-contain:hover span img {
    margin-right: -12px;
    margin-left: 12px;
}

#nav .nav-widget.coral-grape-gradient {
    background: rgb(255, 88, 104);
    background: -moz-linear-gradient(135deg, rgba(255, 88, 104, 1) 18%, #4155FF 100%);
    background: -webkit-linear-gradient(135deg, rgba(255, 88, 104, 1) 18%, #4155FF 100%);
    background: linear-gradient(135deg, rgba(255, 88, 104, 1) 18%, #4155FF 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff5868", endColorstr="#4155ff", GradientType=1);
}

#nav .nav-widget.coral-grape-gradient:before {
    background: rgb(255, 88, 104);
    background: linear-gradient(135deg, #4155FF 18%, rgba(255, 88, 104, 1) 100%);
}

#nav .nav-widget.seaglass-mist-gradient {
    background: rgb(35, 221, 205);
    background: -moz-linear-gradient(135deg, #23DDCD 18%, #4155FF 100%);
    background: -webkit-linear-gradient(135deg, #23DDCD 18%, #4155FF 100%);
    background: linear-gradient(135deg, #23DDCD 18%, #4155FF 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#23ddcd", endColorstr="#4155ff", GradientType=1);
}

#nav .nav-widget.seaglass-mist-gradient:before {
    background: rgb(35, 221, 205);
    background: linear-gradient(135deg, #4155FF 18%, #23DDCD 100%);
}

#nav .nav-widget.mist-blueberry-gradient {
    background: rgb(65, 85, 255);
    background: -moz-linear-gradient(135deg, #4155FF 18%, rgba(17, 40, 103, 1) 100%);
    background: -webkit-linear-gradient(135deg, #4155FF 18%, rgba(17, 40, 103, 1) 100%);
    background: linear-gradient(135deg, #4155FF 18%, rgba(17, 40, 103, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4155ff", endColorstr="#112867", GradientType=1);
}

#nav .nav-widget.mist-blueberry-gradient:before {
    background: rgb(65, 85, 255);
    background: linear-gradient(135deg, rgba(17, 40, 103, 1) 18%, #4155FF 100%);
}

#nav .nav-widget.tangerine-coral-gradient {
    background: rgb(255, 153, 75);
    background: -moz-linear-gradient(135deg, rgba(255, 153, 75, 1) 18%, rgba(255, 88, 104, 1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(255, 153, 75, 1) 18%, rgba(255, 88, 104, 1) 100%);
    background: linear-gradient(135deg, rgba(255, 153, 75, 1) 18%, rgba(255, 88, 104, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff994b", endColorstr="#ff5868", GradientType=1);
}

#nav .nav-widget.tangerine-coral-gradient:before {
    background: rgb(255, 153, 75);
    background: linear-gradient(135deg, rgba(255, 88, 104, 1) 18%, rgba(255, 153, 75, 1) 100%);
}

#nav .nav-widget:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    border-radius: 15px;
}

#nav .nav-widget:hover:before {
    opacity: 1;
}

#nav .container .button.gradient-button.mobile-signup-button {
    display: none;
}

#nav img.navigation-icon {
    width: 17px;
    max-height: 17px;
}

/* --- 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: 300px;
    margin-right: 40px;
    background-color: #F7F8F9;
    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: 10px;
}

#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: 4px;
    border-radius: 4px;
    padding: 5px 10px;
    display: block;
    color: #3E4A57;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    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;
    border-left: 2px solid #DEE4EA;
    margin-left: 18px;
}

#leftNavContainer #leftNav .links ul li ul li a {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    opacity: .8;
    border-radius: 4px;
    margin-left: 15px;
    padding: 7px 15px;
}

#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 {
    color: #4155FF;
    background-color: #ECEEF1;
}

#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.main-footer.background-blueberry-transition {
    background: #08163D;
    background-image: url('/images/footer/slicktext-logo-monotone.svg'), linear-gradient(#08163D, #112867);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

#footer .footer-tagline {
    min-width: 400px;
    color: white;
    font-size: 42px;
    font-weight: 800;
    padding-bottom: 15px;
    letter-spacing: -1px;
}

#footer .button {
    padding: 10px;
    color: white;
    font-size: 16px;
    width: 160px;
    background: linear-gradient(#0c1e4e, #0c1d4f) padding-box, linear-gradient(60deg, #23DDCD, #4155FF) border-box;
    border: 3px solid transparent;

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

#footer .footer-contact {
    margin-top: 15px;
}

#footer .button:hover {
    background: linear-gradient(#0c1e4e, #0c1d4f) padding-box, linear-gradient(60deg, #23DDCD, #4155FF) border-box;
    border: 3px solid #23DDCD;
}

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

#footer .links ul li .footer-sub-title {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 15px;
    letter-spacing: -.5px;
}

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

#footer .links ul li a:hover,
#footer .disclaimers a:hover,
#footer .socialLinks a:hover {
    text-decoration: none;
    filter: brightness(150%);
}

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

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

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

#footer .appLinks {
    flex-wrap: nowrap;
    display: flex;
}

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

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

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

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

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

#footer .disclaimers a {
    font-size: 12px;
    color: #23DDCD;
    padding-left: 20px;
}

#footer .disclaimers .columns .column:is(:first-child) {
    flex-basis: 30%
}

#footer .footer-org-logos img:last-child {
    margin-left: 20px;
}

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

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


/* --- Hero Section ---------------------- */
#hero h1 {
    font-size: 54px;
    padding-bottom: 30px;
    font-weight: 800;
}

#hero p:not(.logoPack p) {
    font-size: 22px;
    padding-bottom: 10px;
}

#hero p:is(.icon-border-panel p) {
    font-size: 18px;
}

#hero p.hero-eyebrow:not(.logoPack p) {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #94BBFF;
}

#hero p.line-height-30 {
    line-height: 30px;
}

#hero.section {
    padding-top: 140px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

#hero.section.padding-bottom-120 {
    padding-bottom: 120px;
}

#hero.section .btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero a.button {
    display: flex;
    align-items: center;
}

#hero a.button img.blueberry-play {
    display: none;
}

#hero a.button:hover img.blueberry-play {
    display: block;
}

#hero a.button:hover img.white-play {
    display: none;
}

/* Hero video container start */

#hero.video-hero-section .btn-group {
    justify-content: left;
}

.video-thumbnail-container {
    background: linear-gradient(to right bottom, #23ddcd, #00c8ea, #00adff, #008bff, #4155ff);
    border-radius: 26px;
    height: 100%;
    width: 100%;
    margin-left: -30px;
    display: block;
    transition: all .3s ease;
    position: relative;
    z-index: 1;
}

.video-thumbnail-container:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 26px;
    background: linear-gradient(to right bottom, #4155ff, #008bff, #00adff, #00c8ea, #23ddcd);
}

a.video-thumbnail-container:hover {
    filter: brightness(100%);
}

a.video-thumbnail-container:hover:before {
    opacity: 1;
}

.video-thumbnail-container img {
    position: relative;
    left: 15px;
    bottom: 15px;
    transition: all 0.3s ease-in-out;
}

a.video-thumbnail-container:hover img {
    transform: translate(8px, -8px);
    transition: all 0.3s ease-in-out;
}

/* Full - page video */
.full-video-section {
    margin: 10px;
}

.full-video-thumbnail-container {
    background: linear-gradient(to right bottom, #23ddcd, #00c8ea, #00adff, #008bff, #4155ff);
    border-radius: 26px;
    transition: opacity .3s ease;
    position: relative;
    z-index: 1;
    width: 92%;
    margin: auto;
    height: 52vw;
    display: flex;
    align-items: center;
    max-height: 620px;
}

.full-video-thumbnail-container:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 26px;
    background: linear-gradient(to right bottom, #4155ff, #008bff, #00adff, #00c8ea, #23ddcd);
}

.full-video-thumbnail-container.no-background-thumbnail {
    background: none;
}

.full-video-thumbnail-container.no-background-thumbnail:before {
    content: "";
    background: none;
}

a.full-video-thumbnail-container:hover {
    filter: brightness(100%);
}

a.full-video-thumbnail-container:hover:before {
    opacity: 1;
}

.full-video-thumbnail-container picture {
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-video-thumbnail-container img {
    position: relative;
    transition: transform 0.3s ease-in-out;
    width: 114%;
    max-width: 1180px;
}

a.full-video-thumbnail-container:hover img {
    transition: transform 0.3s ease-in-out;
    transform: scale(1.01);
}

/* Hero video container end */

/* --- Icons ---------------------- */

.circle-icon {
    border: 2px solid;
    border-radius: 100%;
    font-size: 18px;
    margin-bottom: 20px;
    height: 54px;
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon.medium {
    height: 50px;
    width: 50px;
}

.circle-icon.small {
    height: 40px;
    width: 40px;
}

.circle-icon.mist-icon {
    border: 2px solid #4155FF;
    color: #4155FF;
}

.circle-icon.blueberry-icon {
    border: 2px solid #112867;
    color: #112867;
}

.circle-icon.seaglass-light-background {
    border: 2px solid #A7F1EB;
    background: #A7F1EB;
    color: #112867;
}

.circle-icon.seaglass-blueberry-light-background {
    border: 2px solid #A7F1EB;
    background: #A7F1EB;
    color: #112867;
}

.circle-icon.coral-light-background {
    border: 2px solid #FFBCC3;
    background: #FFBCC3;
    color: #C1142A;
}

.circle-icon.marigold-light-background {
    border: 2px solid #FFECBC;
    background: #FFECBC;
    color: #CC750C;
}

.circle-icon.grape-light-background {
    border: 2px solid #C5B8E7;
    background: #C5B8E7;
    color: #2C0862;
}

.circle-icon.tangerine-light-background {
    border: 2px solid #FFDBC0;
    background: #FFDBC0;
    color: #D44900;
}

span.circle-icon.mist-icon img,
span.circle-icon.regular-icon img {
    height: 22px;
    width: 22px;
}

.background-radial-blueberry .circle-icon.mist-icon {
    border: 2px solid #23DDCD;
    color: #23DDCD;
}

.background-radial-blueberry .circle-icon.regular-icon {
    border: 2px solid #4155ff;
    color: #4155ff;
}

.background-radial-blueberry .text-card .text-card-eyebrow {
    color: #23DDCD;
}

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

.medium-icon {
    font-size: 24px;
}

/* --- Text Cards ---------------------- */

.text-card h2 {
    font-size: 48px;
    color: #112867;
    padding-bottom: 30px;
}

.text-card h3 {
    font-size: 32px;
    color: #112867;
    padding-bottom: 30px;
    font-weight: 800;
}

.text-card h4 {
    font-size: 22px;
    color: #112867;
    padding-bottom: 30px;
    font-weight: 600;
}

.text-card p {
    color: #112867;
    font-size: 20px;
    line-height: 30px;
}

.text-card p.smaller-card-p {
    font-size: 18px;
}

.text-card a.action {
    margin-top: 25px;
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding-top: 20px;
}

.text-card .text-card-eyebrow {
    font-size: 16px;
    color: #4155FE;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-card li a {
    display: contents;
    font-weight: inherit;
}

.background-radial-blueberry .text-card h2,
.background-radial-blueberry .text-card h3 {
    color: white;
}

.background-radial-blueberry .text-card p {
    color: white;
}

.background-radial-blueberry .text-card a:not(.button) {
    color: #23DDCD;
}

.single-text-card span {
    margin: 0 auto 25px auto;
}

.single-text-card img:not(.circle-icon-img) {
    margin: 65px auto 0 auto;
}

.single-text-card img.btn-img {
    margin: 0 10px 0 0;
}

.single-text-card img.arrow:not(.circle-icon-img) {
    margin: unset;
}

.single-text-card img.single-text-card-img:not(.circle-icon-img) {
    margin-top: 0;
}

.single-text-card a.action {
    margin-top: 0;
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding-top: 0;
}

.single-text-card a.action:hover .arrow {
    margin-left: 10px;
    margin-right: -10px;
}

.container.section.large.footer-card {
    padding-bottom: 100px;
}

.footer-card h3 {
    font-size: 48px;
    padding-bottom: 20px;
    font-weight: 800;
    color: #112867;
}

.footer-card p {
    color: #112867;
    font-size: 20px;
    line-height: 30px;
}

.footer-card .btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Testimonial Section */
.testimonial-slides .testimonial-eyebrow {
    font-size: 16px;
    color: #4155FE;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonial-slides .testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.testimonial-slides .testimonial-controls {
    display: flex;
    align-items: center;
}

.testimonial-slides .testimonial-controls span {
    font-weight: 900;
    margin-bottom: 0;
    cursor: pointer;
}

.testimonial-slides .testimonial-controls span:last-child {
    margin-left: 20px;
}

.testimonial-slides .testimonial-controls span:hover {
    background: #4155FE;
}

.testimonial-slides .testimonial-controls span:hover img {
    display: none;
}

.testimonial-slides .testimonial-controls span:hover img.hide {
    display: inline;
}

.testimonial-slides .testimonial {
    display: flex;
    flex-direction: column;
    animation: testimonialFadeIn 1s;
    -webkit-animation: testimonialFadeIn 1s;
    -moz-animation: testimonialFadeIn 1s;
    -o-animation: testimonialFadeIn 1s;
    -ms-animation: testimonialFadeIn 1s;
}

@keyframes testimonialFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes testimonialFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes testimonialFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes testimonialFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes testimonialFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.testimonial-slides .testimonial-title {
    font-size: 48px;
    color: #112867;
}

.testimonial-slides .testimonial-content {
    font-size: 20px;
    color: #112867;
    line-height: 32px;
}

.testimonial-slides .testimonial-logo {
    height: 25px;
    width: auto;
    margin: auto auto 0 0;
}

.testimonial-slides .testimonial-footer {
    padding-top: 60px;
    min-height: 126px;
}

.testimonial-slides .testimonial-footer p {
    font-size: 20px;
    color: #112867;
}

.testimonial-slides .testimonial-footer p a {
    color: #4155FE;
    font-weight: 600;
}

#testimonials .testimonial:not(.active) {
    display: none;
}

#testimonials .testimonial-container {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%;
}

/* --- Single Testimonial ----------- */

.single-testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.single-testimonial picture {
    padding-bottom: 20px;
}

.single-testimonial h2 {
    font-size: 48px;
    padding-bottom: 20px;
    font-weight: 800;
    color: #112867;
}

.single-testimonial p {
    color: #112867;
}

.single-testimonial .testimonial-p {
    font-size: 20px;
    line-height: 35px;
}

/* --- Image Cards ------------------ */

.image-cards .column.is-4,
.image-cards .column.is-6 {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
}

.image-card {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.image-card h3 {
    font-size: 24px;
    color: #112867;
    padding-top: 30px;
}

.image-card p {
    margin-bottom: 30px;
    font-size: 20px;
    color: #112867;
}

.image-card a {
    margin-bottom: 0;
    margin-top: auto;
}

/* --- Avatars ---------------------- */
.avatar-container {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}

.avatar-info {
    padding-left: 15px;
}

.avatar-info h3 {
    font-size: 16px;
    color: #4155FE;
    font-weight: 600;
    padding-bottom: 0;
    text-transform: uppercase;
}

.avatar-info p {
    font-size: 15px;
    color: #112867;
    line-height: normal;
    padding-top: 5px;
}

.avatar-image span {
    margin-bottom: 0;
}


/* --- Animations ---------------------- */

.smoothSlideUp {
    opacity: 0;
}

.smoothSlideUp.smoothSlideUpShow {
    animation-delay: 0s;
    animation-duration: .45s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: smoothSlideUp;
}

@-webkit-keyframes smoothSlideUp {
    0% {
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
    }
}

.skeletonLoader:empty {
    animation: skeletonLoader 2s linear infinite;
    background-color: rgba(36, 27, 39, .03);
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(45, 35, 46, .10) 15rem, rgba(0, 0, 0, 0) 30rem);
    background-size: 30rem;
    border-radius: 5px;
}

@-webkit-keyframes skeletonLoader {
    0% {
        background-position: -30rem
    }

    100% {
        background-position: 30rem
    }
}

/* --- Pills ---------------------- */

.pill {
    min-width: 50px;
    padding: 2px 15px;
    flex: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    line-height: normal;
    letter-spacing: normal;
    color: #292f3a;
    border: 1px solid #98a2ab;
    background-color: #ffffff;
    border-radius: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .2s all ease-out;
}

.pill.blueberry,
.pill.blueberry:hover {
    color: #33477f;
    border-color: #e2eefb;
    background-color: #e2eefb;
}

.pill.mist,
.pill.mist:hover {
    color: #3547EC;
    border-color: #D1E3F9;
    background-color: #D1E3F9;
}

.pill.forest,
.pill.forest:hover {
    color: #00704B;
    border-color: #CDF2E4;
    background-color: #CDF2E4;
}

.pill.marigold,
.pill.marigold:hover {
    color: #CC760B;
    border-color: #FFECBC;
    background-color: #FFECBC;
}

.pill.tangerine,
.pill.tangerine:hover {
    color: #D44900;
    border-color: #FFDBC0;
    background-color: #FFDBC0;
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 45px;
    padding: 15px 30px;
}

.footer-pill.seaglass-blueberry-gradient {
    background-image: linear-gradient(95deg, #A7F1EB 0%, #B1CEFF 100%, #B1CEFF 100%);
    border: none;
}

.footer-pill.marigold-tangerine-gradient {
    background-image: linear-gradient(95deg, #ffecbe 0%, #ffdfde 100%, #ffdfde 100%);
    border: none;
}

.footer-pill h3 {
    padding-bottom: 0;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
}

.footer-pill span {
    margin-bottom: 0;
    margin-right: 15px;
}

.footer-pill a {
    color: #112867;
    text-decoration: underline;
}

.footer-pill a:not(:last-child) {
    margin-right: 20px;
}

/* widgets! */
.widget-section .text-card h3 {
    font-size: 22px;
    font-weight: 600;
}

.widget-section .column p {
    font-size: 18px;
}

.widget-section .columns:not(:first-child) {
    padding-top: 20px;
}

/* overwrite some video iframe  */
.mfp-iframe-scaler iframe {
    width: 98% !important;
    background: transparent !important;
    border-radius: 12px;
    box-shadow: none !important;
}

/** Radio Buttons */
.radioButtons {
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background-color: #eceef1;
    position: relative;
}

.radioButtons.fullWidth {
    width: 100%;
    display: flex;
}

.radioButtons label.radio.button {
    width: initial;
    min-height: 0;
    min-width: 0;
    margin: initial;
    padding: initial;
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: initial;
    font-size: initial;
    font-weight: initial;
    text-align: initial;
    text-decoration: initial;
    line-height: initial;
    border: initial;
    border-radius: initial;
    background-color: initial;
    cursor: initial;
    transition: initial;
}

label.radio input[type="radio"] {
    height: 0px;
    width: 0px;
    opacity: 0;
    position: absolute;
}

label.radio.button input[type="radio"]~span:empty {
    display: none;
}

label.radio.button input[type="radio"]~span:not(:empty) {
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding: 10px 18px;
    color: #61717E;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: normal;
    border: 1px solid transparent;
    border-radius: 40px;
    background-color: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all .2s ease-out;
}

label.radio.button input[type="radio"]~span:not(:empty):hover {
    border-color: #F3F4F7;
    background-color: #F3F4F7;
}

label.radio.button.xsmall input[type="radio"]~span:not(:empty) {
    min-height: 29px;
    min-width: 75px;
    font-size: 12px;
    padding: 6px 14px;
}

label.radio.button.small input[type="radio"]~span:not(:empty) {
    min-height: 33px;
    min-width: 90px;
    font-size: 12px;
    padding: 8px 14px;
}

label.radio.button.large input[type="radio"]~span:not(:empty) {
    min-height: 52px;
    font-size: 16px;
    padding: 15px 26px;
}

label.radio.button.icon input[type="radio"]~span:not(:empty) {
    min-width: 55px;
}

label.radio.button input[type="radio"]:checked~span:not(:empty),
label.radio.button input[type="radio"]:checked~span:not(:empty):hover {
    color: #4155FF;
    border-color: #4155FF;
    background-color: #FFFFFF;
    box-shadow: 0 2px 16px 0 rgba(41, 47, 58, .12);
}

label.radio.button.inline input[type="radio"]+span+span {
    display: inline-flex;
}


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

@media all and (max-width: 1280px) {
    .full-video-thumbnail-container img {
        width: 110%;
    }

    .full-video-thumbnail-container {
        width: 83%;
        height: 45vw;
    }
}

@media all and (max-width: 1028px) {
    .video-thumbnail-container {
        max-width: 535px;
        margin: 30px auto 0 auto;
        left: -8px;
    }
}

@media all and (max-width: 1024px) {
    #nav .container .content .buttons .gradient-button.desktop-signup-button {
        padding: 12px 20px;
    }
}

@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;
    }

    .mobile-reverse-col {
        display: inline-flex;
        flex-direction: column-reverse;
    }

    /* --- Regular Sliders ---------------------- */

    .slider .cards .card {
        padding-left: 0;
        padding-right: 0;
    }



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

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

    /* --- Footer ---------------------- */
    #footer .footer-tagline {
        min-width: 330px;
    }

}

@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;
    }

    .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: 15px;
        padding-bottom: 15px;
    }

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

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

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

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

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

    .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;
    }

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

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

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

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

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

    article.section section.container.section:not(:first-child):not(:only-of-type) {
        padding-top: 0;
    }

    article.section section.container.section.more-mobile-top-padding:not(:first-child):not(:only-of-type) {
        padding-top: 60px;
    }

    article.section section.container.section.widget-section:last-child,
    article section.container.section.widget-section:last-child {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .section>section.container.section.footer-card:first-child:not(:only-of-type) {
        padding-bottom: 50px;
    }

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

    /* --- 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;
    }

    /* --- 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;
    }

    .logoPack.use-cases-logos .images .group {
        height: 85px !important;
    }

    .logoPack.use-cases-logos .images .group img {
        max-width: 85px;
    }

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

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


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

    #nav {
        height: 60px;
    }

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

    #nav.mobileOpen {
        background-color: #FFF;
    }

    #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.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 20px;

        -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 .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: 60px;
        right: -100%;
        z-index: 1;
        padding: 0px 20px 140px 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.mobileOpen .container .content {
        right: 0%;
    }

    #nav.mobileOpen .container .content.scrolled {
        -webkit-box-shadow: inset 0px 2px 6px 4px rgba(0, 0, 0, 0.1);
        box-shadow: inset 0px 2px 6px 4px rgba(0, 0, 0, 0.1);
    }

    #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;
        padding-top: 20px;
        font-size: inherit;
    }

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

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

    #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 .nav-items a.nav-sub-title {
        padding-top: 0;
    }

    #nav .container .content .links li a:not(.nav-item-link)::after {
        content: none;
    }

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

    #nav.mobileOpen .container .content .links li a.dropdownArrow.open {
        color: #4155FF
    }

    #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: 1250px;
    }

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

    #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: 40px;
    }

    #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 .container .content .buttons {
        position: absolute;
        height: 80px;
        padding-left: 20px;
        padding-right: 20px;
        left: 0;
        bottom: 60px;
        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: 12px;
    }

    #nav .container .content .buttons a.button.gradient-button {
        padding: 14px;
    }


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

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

    #nav .dropdown-container {
        padding: 0;
    }

    /* new nav styles */

    #nav .columns.nav-items-contain {
        padding-top: 20px;
    }

    #nav .column.nav-items {
        padding-top: 0;
    }

    #nav .nav-items .nav-header-columns .column:first-child {
        display: none;
    }

    #nav .nav-items.right-nav-items .nav-header-columns .column:first-child {
        display: block;
    }

    .column.text-right.view-all-link-container {
        padding-right: 0 !important;
    }

    #nav .container .content .links li a.view-all-link {
        padding: 0;
        font-size: 14px;
        padding-bottom: 10px;
        margin-right: 0;
    }

    #nav .container .content .links li .view-all-link img {
        display: none;
    }

    #nav .mobile-columns {
        display: flex;
        flex-direction: row;
    }

    #nav .container .content .links li .nav-item-link {
        margin-right: 20px;
    }

    #nav .container .content .links li .nav-widgets .nav-item-link {
        margin-right: 0;
    }

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

    #nav .container .content .links li .dropdownContainer .dropdown .nav-items .nav-item-link .columns .column:first-child {
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    #nav .column.nav-items .columns.use-cases-nav .column .columns .column:first-child {
        display: block;
    }

    #nav .container .content .links li .dropdownContainer .dropdown .nav-items .nav-item-link .columns .column:last-child {
        padding-top: 0px;
    }

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

    #nav .container .content .links li .dropdownContainer .dropdown .columns .column.nav-widgets {
        padding: 0px;
        border: none;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #nav .container .content .links li .dropdownContainer .dropdown .columns .right-nav-items {
        max-width: 100%;
        border-left: none;
    }

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

    /* use cases nav  */

    #nav .columns.mobile-columns.use-cases-nav.nav-items-contain {
        padding-top: 0;
    }

    #nav .container .content .links li .dropdownContainer .dropdown .columns.nav-items-contain.use-cases-nav .column.nav-link-column {
        padding: 0;
        display: flex;
        align-items: center;
        margin: 15px 15px 15px 15px;
    }

    #nav .container .content .links li .dropdownContainer .dropdown .columns.nav-items-contain.use-cases-nav .column.nav-link-column .nav-item-link {
        padding-bottom: 15px;
    }

    #nav .container .button.gradient-button.mobile-signup-button {
        position: absolute;
        right: 50px;
        top: 0;
        padding: 7px 18px;
        font-size: 14px;
        margin: 13px;
    }

    #nav .container .button.gradient-button.mobile-signup-button.hide-signup-button {
        display: none !important;
    }

    #nav .container .content .buttons a.button.dashboard-button {
        max-width: none;
        width: 100%;
    }

    #nav .column>.navigation-icon {
        margin-top: 0;
    }

    #hero.section .container .card-columns .text-card {
        text-align: center;
    }

    #hero.section .container .card-columns .text-card .circle-icon {
        margin: 0 auto 15px auto;
    }


    /* --- 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 {
        margin-left: 28px;
    }

    #leftNavContainer #leftNav .links ul li ul li a {
        font-size: 15px;
    }

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


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

    #footer.main-footer.background-blueberry-transition {
        background-image: url('/images/footer/slicktext-logomark-monotone.svg'), linear-gradient(#08163D, #112867);
    }

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

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

    #footer ul {
        display: flex;
        flex-wrap: wrap;
    }

    #footer ul li {
        width: 50%;
    }

    #footer ul li:is(:first-child) {
        width: 100%;
    }

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

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

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

    #footer .disclaimers .text-right {
        text-align: center;
        padding-top: 0;
    }

    #footer .disclaimers p {
        text-align: center;
    }

    #footer .text-center button {
        margin: 15px auto 0 auto;
    }

    #footer .footer-tagline {
        min-width: auto;
    }

    #footer .footer-logo {
        text-align: center;
    }

    #footer .column.socialLinks {
        text-align: center;
    }

    #footer .appLinks {
        justify-content: center;
        border-bottom: 1px solid #21356E;
        border-top: 1px solid #21356E;
        padding: 40px 0;
        margin-bottom: 20px;
    }

    #footer .social {
        border-top: none;
    }

    #hero p:not(.logoPack p) {
        font-size: 18px;
    }

    .columns.card-columns.reverse .column:first-child,
    .columns.card-columns:not(.reverse) .column:last-child {
        padding-left: 0;
    }

    .columns.card-columns.reverse .column:last-child,
    .columns.card-columns:not(.reverse) .column:first-child {
        padding-right: 0;
    }

    .mobile-reverse-columns {
        flex-direction: column-reverse;
        display: flex;
    }

    #hero.section {
        padding-top: 100px;
        padding-bottom: 25px;
    }

    #hero.section .container h1 {
        font-size: 42px;
        max-width: 420px;
        margin: auto;
    }

    #hero.section .btn-group {
        display: block;
    }

    #hero.section .logoPack {
        padding-top: 0;
    }

    .text-card h2,
    .testimonial-slides .testimonial-title {
        font-size: 34px;
    }

    .text-card h3 {
        font-size: 26px;
    }

    .text-card h4 {
        font-size: 20px;
    }

    .text-card p,
    .testimonial-slides .testimonial-content,
    .testimonial-slides .testimonial-footer p {
        font-size: 16px;
        line-height: 28px;
    }

    .widget-section .column p {
        font-size: 16px;
    }

    .text-card p.smaller-card-p {
        font-size: 14px;
        line-height: 26px;
    }

    .text-card a.action {
        font-size: 16px;
    }

    .icon-list .icon-list-item p {
        font-size: 16px;
    }

    .checklist-reverse li {
        font-size: 16px;
    }

    .checklist-reverse li::before {
        margin-right: 10px;
        margin-top: 5px;
        width: 18px;
        height: 18px;
    }

    .checklist-reverse.columns ul.column:last-child {
        padding-left: 0 !important;
        margin-top: 15px;
    }

    .mobile-image-padding {
        padding: 0 25px;
    }

    .background-logo-repeating {
        background-size: 75%;
    }

    .section.xxlarge.mobile-repeating-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-card h3 {
        font-size: 34px;
    }

    .footer-card p {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 24px;
    }

    .footer-logoPack {
        padding-bottom: 0;
    }

    .footer-card .btn-group {
        display: block;
    }

    #footer .disclaimers a {
        display: block;
        padding-top: 10px;
        padding-left: 0;
    }

    #footer .footer-tagline {
        font-size: 34px;
        font-weight: 800;
        padding-bottom: 15px;
        letter-spacing: -.5px;
    }

    #footer .footer-tagline,
    #footer .footer-tagline {
        min-width: revert;
    }

    .container.section.large.footer-card {
        padding-bottom: 50px;
        padding-top: 10px;
    }

    /* --- Pills ---------------------- */

    .footer-pill {
        flex-direction: column;
        display: flex;
        border-radius: 10px;
    }

    .footer-pill span {
        margin: 0 0 15px 0;
    }

    .footer-pill h3 {
        margin: 0;
        padding-bottom: 10px;
        font-size: 16px;
        font-weight: 400;
    }

    .footer-pill a:not(:last-child) {
        margin-right: 0;
        padding-bottom: 15px;
    }

    .footer-pill span.circle-icon.blueberry-icon {
        border: none;
        margin-bottom: 0;
    }

    .footer-pill span.circle-icon.blueberry-icon img {
        height: auto;
        width: 30px;
    }

    .image-card {
        align-items: center;
    }

    .image-card p {
        text-align: center;
    }

    .image-cards .column:not(:last-child) {
        margin-bottom: 40px;
    }

    /* --- Single Testimonial ----------- */
    .single-testimonial h2 {
        font-size: 36px;
    }

    .single-testimonial .testimonial-p {
        font-size: 16px;
    }

    /* Testimonials Section */
    .testimonial-slides .testimonial-header {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .testimonial-slides .testimonial-footer {
        padding-top: 15px;
    }

    .single-text-card img:not(.circle-icon-img) {
        margin: 20px auto 0 auto;
    }

    .faq {
        font-size: 16px;
    }

    .faq-section .columns:not(.reverse):not(.multiline) .column:last-child {
        padding-top: 0;
    }

    .icon-border-panel h2 {
        font-size: 20px;
    }

    #hero p:is(.icon-border-panel p) {
        font-size: 16px;
    }

    .section.full-video-section {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .full-video-thumbnail-container {
        background: transparent;
        display: flex;
        justify-content: center;
        width: 100%;
        height: auto;
    }

    .full-video-thumbnail-container:before {
        background: transparent;
    }

    .full-video-thumbnail-container img {
        width: 100%;
    }
}

@media all and (max-width: 340px) {
    #nav .container .content .links li .dropdownContainer .dropdown .columns .column.nav-widgets {
        display: none;
    }

    #nav .columns.nav-items-contain {
        display: block;
    }

    #nav .container .content .links li .dropdownContainer .dropdown .columns.nav-items-contain.use-cases-nav .column.nav-link-column {
        margin: 15px 0;
    }

    #nav .container .content .links li .dropdownContainer .dropdown .columns.nav-items-contain.use-cases-nav .column.nav-link-column:nth-of-type(11) {
        border-bottom: 1px solid #DEE4EA;
    }

    #nav .container .button.gradient-button.mobile-signup-button {
        display: none !important;
    }

    #footer ul {
        display: block;
        text-align: center;
    }

    #footer ul li {
        width: 100%;
    }
}

@media all and (min-width:769px) {

    /* --- Footer ---------------------- */
    #footer .hide-desktop {
        display: none;
    }

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

    .hide-desktop {
        display: none;
    }

    #nav .container .content .links li .dropdownContainer.no-animation {
        animation: none;
        -webkit-animation: none;
    }
}

@media all and (min-width: 768px) and (max-width: 1028px) {
    #hero.video-hero-section {
        padding-top: 100px;
    }

    #hero.video-hero-section .container .columns.card-columns {
        display: block;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    #hero.video-hero-section .container .columns .column.is-6 {
        text-align: center;
        display: block;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    #hero.video-hero-section .btn-group {
        display: block;
        max-width: 300px;
        margin: auto;
    }

    #hero.video-hero-section .btn-group .button.full-width-mobile+.button.full-width-mobile {
        margin-top: 20px;
    }

    #hero.video-hero-section .btn-group .button+.button {
        margin-left: 0;
    }
}

@media all and (min-width:769px) and (max-width: 1120px) {
    #nav .column.nav-widgets {
        padding-left: 20px;
        padding-top: 20px;
    }

    #nav .column.right-nav-items {
        padding-left: 20px;
        padding-top: 20px;
    }

    #nav .column.nav-items {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #nav .container .content .links li .nav-item-link {
        margin-right: 10px;
    }

    #nav .nav-widget {
        width: 230px;
        height: 130px;
        padding-left: 15px;
        font-size: 12px;
        margin: auto;
    }

    #nav .container .content .links .nav-widgets .nav-widget .nav-widget-title {
        font-size: 14px;
        line-height: 16px;
        padding-bottom: 10px;
    }
}

@media all and (max-width: 345px) {
    #nav .container .content .links li .dropdownContainer.open {
        max-height: 1950px;
    }
}

@media all and (max-width: 300px) {
    #nav .container .content .buttons {
        flex-direction: column;
        height: auto;
    }

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

    #nav .container .content .buttons a.button.blueberry.outline:not(:last-child) {
        margin-bottom: 10px;
    }

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