/* CUSTOM STYLESHEET */
@font-face {
	font-family: 'UberMove';
	src: url('../fonts/UberMoveText-Regular.woff') format("woff2");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'UberMove';
	src: url('../fonts/UberMoveText-Medium.woff2') format("woff2");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'UberMove';
	src: url('../fonts/UberMove-Bold.woff2') format("woff2");
	font-weight: 600;
	font-style: normal;
}

@font-face {
    font-family: 'Geist Mono';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/geistmono/v3/or3yQ6H-1_WfwkMZI_qYPLs1a-t7PU0AbeFjKK5U5Cl4PuCTfNg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Geist Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/geistmono/v3/or3yQ6H-1_WfwkMZI_qYPLs1a-t7PU0AbeE9KK5U5Cl4PuCTfNg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/spacemono/v13/i7dPIFZifjKcF5UAWdDRYEF8RXi4EwQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



/* General */
:root {
    --font: 'UberMove', sans-serif;
    --color-primary: #0a121b;
    --color-secondary: #1a1a1a;
    --color-tertiary: #9fe32c;
    --color-text-default: #424854;
    --color-text-body: #0a121b;
    --color-text-white: #fff;
    --color-background: #fff;
    --color-background-secondary: #f7f8f8;
    --color-background-tertiary: #1a1a1a;
    --color-background-dark: #13171b;
    --color-background-transition: #13171b;
    --trans-300: all 300ms ease;
    --trans-600: all 600ms ease;
    --trans-900: all 900ms ease;
    --trans-1200: all 1200ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'UberMove', sans-serif;
    text-rendering: optimizeLegibility;
    color: var(--color-text-body);
    font-size: 16px;
    line-height: 1.9em;
    -webkit-font-smoothing: inherit;
}

#content {
    background-color: var(--color-background);
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    pointer-events: none;
    z-index: 90;
    opacity: 0.3;
}

.noise:before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    height: 300%;
    width: 300%;
    background: url(../img/noise.png);
    pointer-events: none;
    display: block;
    opacity: .7;
    -webkit-animation: grain 2s steps(10) infinite;
    animation: grain 2s steps(10) infinite;
    will-change: transform;
}

p {
    font-family: 'UberMove', sans-serif;
    font-size: 16px;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
    font-family: 'UberMove', sans-serif;
    color: #111;
}

.h1, h1 {
    font-size: 54px;
    line-height: 1.2;
}

.h2, h2 {
    font-size: 44px;
    line-height: 1.4;
    letter-spacing: 0;
}

.h3, h3 {
    font-size: 32px;
    line-height: 1.5em;
}

.h4, h4 {
    font-size: 26px;
    line-height: 1.6em;
}

.h5, h5 {
    font-size: 20px;
    line-height: 1.6em;
}

.h6, h6 {
    font-size: 18px;
    line-height: 1.8;
}

.bg-offwhite {
    background: var(--color-offwhite) !important;
}

.bg-offwhite-10 {
    background: var(--color-offwhite-10) !important;
}

.container {
    max-width: 1200px;
}

.main-header .container {
    max-width: 1200px;
}

.pos-rel {
    position: relative !important;
}

.pos-abl {
    position: absolute !important;
}

.divider-light {
    border-color: #4f6278;
}

.mono-text {
    font-family: 'Space Mono', sans-serif;
}


/* Header/Navigation */
.main-header-overlay {
    background-color: #ecedfd;
    background-color: transparent;
}

.main-header .social-icon {
    font-size: 17px;
}

.main-header .social-icon:not([class*=scheme-]) a,
.main-nav > li > a {
    color: var(--color-text-body);
}

.main-header .social-icon:not([class*=scheme-]) a:hover,
.main-nav > li > a:hover {
    color: #202f44;
}

.lqd-stack-active-row-light .main-header:not(.header-fullscreen):not(.header-side) .mainbar-wrap:not(.is-stuck) .header-module .ld-module-trigger, .lqd-stack-active-row-light .main-header:not(.header-fullscreen):not(.header-side) .mainbar-wrap:not(.is-stuck) .main-nav > li > a {
    color: #202f44;
}

.main-nav > li > a {
    font-size: 15px;
    font-weight: 400;
}

.main-nav > li.is-active > a,
.main-nav > li.current-menu-item > a,
.main-nav > li:hover > a,
.main-nav > li > a:hover {
    color: #202f44;
}

.main-nav .external-link--arrow {
    width: 16px;
    height: 16px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin-left: 0;
}

.nav-light .main-nav > li > a {
    color: rgba(255, 255, 255, 0.75);
}

.nav-light .main-nav > li > a .link-ext {
    background-color: #fff;
}

.nav-dark .main-nav > li > a {
    color: rgba(0, 0, 0, 0.75);
}

.nav-dark .main-nav > li.is-active > a,
.nav-dark .main-nav > li.current-menu-item > a,
.nav-dark .main-nav > li:hover > a,
.nav-dark .main-nav > li > a:hover {
    color: #000;
}

.header-module .header-action--flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-module .header-action--flex .link-txt {
    color: var(--color-text-body);
    font-size: 14px;
}

.header-module .btn-text {
    color: var(--color-text-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.mainbar-wrap {
    border-bottom: 1px solid #edeef1;
    border-bottom: none;
}

.is-stuck {
    background-color: var(--color-background);
    box-shadow: none;
}

.is-stuck.mainbar-wrap {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.is-stuck .main-nav > li > a, .is-stuck .main-nav > li > a:hover {
    color: var(--color-text-body) !important;
}

.main-nav .children, .nav-item-children {
    background-color: var(--color-background-secondary);
    padding: 1rem .5rem;
}

.main-nav .children > li > a, .nav-item-children > li > a {
    padding: 0.75em 0.5em;
    border-radius: 4px;
    border-left: 3px solid transparent;
    color: var(--color-text-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.main-nav .children > li:hover > a, .nav-item-children > li:hover > a { 
    background-color: #182635;
    color: var(--color-text-body);
}

.mega-link {
    margin-left: -0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 0.375rem;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: rgb(38, 44, 45);
}

.mega-link:hover {
    text-decoration: none;
    background-color: #f8f9f9;
}

.mega-link .text-icon--wrapper {
    display: flex;
    align-items: center;
}

.mega-link .text-icon--wrapper .image-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.mega-link .text-icon--wrapper .link-name {
    margin-left: 0.5rem;
    font-size: 16px;
    line-height: 1.25rem;
    font-weight: 500;
}

.mega-link .link-description {
    font-size: 14px;
    line-height: 1.5;
    display: block;
    color: #5b6068;
    margin-top: 8px;
}

.navbar-brand, .navbar-brand:focus {
    outline: 0;
}

.navbar-brand img {
    width: 140px;
}

.megamenu-resource--link {
    display: inline-block;
    padding-left: 3rem;
    border-left: 0.1rem solid #c2c5cb;
    -webkit-transition: color .2s;
    transition: color .2s;
}

.megamenu-resource--image {
    width: 100%;
    border-radius: 0.625rem;
}

.megamenu-resource--link .content-heading--wrapper {
    margin-top: 16px;
}

.megamenu-resource--link .content-heading {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .5px;
    line-height: 120%;
    color: #3a4656;
    text-transform: uppercase;
    margin-top: 0;
}

.megamenu-resource--link .content-body {
    color: #546175;
}

.navbar-brand {
    padding: 25px 0;
    outline: 0;
}

.nav-trigger .bar {
    background-color: var(--color-primary);
}



/* Hero */
.section-hero {
    background-color: #fff;
    border-bottom: 1px solid #e4e4e4;
    position: relative;
}

.hero-line--bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-line--bg .line-1, .hero-line--bg .line-2 {
    background: radial-gradient(125% 125% at 50% 10%, rgb(255, 255, 255) 40%, rgb(223, 231, 255) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
    inset: 0;
    position: absolute;
}

.hero-line--bg .line-2 {
    background-image: linear-gradient(90deg, rgb(240, 240, 240) 1px, rgba(0, 0, 0, 0) 0px), linear-gradient(rgb(240, 240, 240) 1px, rgba(0, 0, 0, 0) 0px);
    background-size: 3.6rem 3.6rem;
    opacity: 0.4;
}

.hero-copy--wrap {
    grid-column-gap: 3.5em;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 140px;
    margin-bottom: 0;
    /* padding-top: 40px; */
    z-index: 3;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 650px;
    padding: 0;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    background-color: #DAECFF;
    border-radius: 70px;
    display: flex;
    font-size: 16px;
    font-weight: 400;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    text-align: left;
    align-items: center;
    padding: 6px 16px 6px 6px;
}

.hero-badge .badge-icon {
    background-color: #a7c7ea;
    border-radius: 60px;
    display: flex;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
}

.hero-badge .badge-text {
    color: #2F6293;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.hero-copy .hero-header {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-copy h1 {
    color: var(--color-text-body);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.09rem;
    margin: 0;
}

.hero-copy .hero-text--highlight {
    position: absolute;
    left: 118px;
    position: absolute;
    top: 52px;
}

.hero-copy .hero-text--highlight.highlight-2 {
    left: auto;
    top: 110px;
}

.hero-copy--links {
    margin: 15px 0 48px;
}

.hero-copy--links .the__button+.the__button {
    margin-left: 16px;
}

.hero-shadow {
    z-index: 10;
    background-image: linear-gradient(0deg, #f5f5eb 50%, #fff0);
    width: 70%;
    height: 14em;
    position: absolute;
    inset: auto 0% 0% auto;
}

.hero-copy--logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 500px;
}

.hero-copy--logo {
    position: relative;
    overflow: hidden;
    padding-right: 10px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('../img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.8); /* dim the image if needed */
    transition: filter 0.3s;
}

.lqd-stack-initiated .lqd-stack-page-number, .lqd-stack-initiated .lqd-stack-prevnext-wrap {
    display: none;
}

.announcement-card {
    grid-column-gap: 0.5rem;
    color: #fafafa;
    background-color: transparent;
    border: 1px solid #222f3e;
    border-radius: 100px;
    padding: 0.25rem 0.7rem 0.25rem 0.9rem;
    position: relative;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    transition: all .3s;
}

.announcement-card .text-small {
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
}

.announcement-card .text-divider {
    color: #222f3e;
    margin-left: 1px;
    margin-right: 1px;
    font-weight: 400;
}

.announcement-card .text-colored {
    color: #46e3b7;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg,#46e3b7,#fff855),linear-gradient(90deg,#12c2e9,#c471ed 50%,#f64f59);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: .8rem;
    font-weight: 500;
}

.announcement-card .link-arrow {
    color: #f2f65d;
    width: 16px;
    top: 3px;
    left: -1px;
    opacity: .75;
    position: relative;
}

.hero-tag--text {
    display: inline-block;
    padding: 6px 12px;
    background-color: transparent;
    border: 1px solid #222f3e;
    border-radius: 100px;
    color: var(--color-text-default);
    font-size: .75rem;
    font-weight: 500;
    line-height: .875rem;
    text-align: center;
    margin-bottom: 16px;
}

.hero-body--text {
    color: var(--color-text-default);
    /* color: #fff; */
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.hero-form--block {
    width: 100%;
    max-width: 450px;
    margin-top: 32px;
    margin-bottom: 24px;
}

.hero-form--block .hero-form {
    max-height: 60px;
    background-color: #0e1824;
    border: 1px solid #4f6278;
    border-radius: 100px;
    align-items: center;
    padding: 4px;
    display: flex;
    overflow: hidden;
}

.hero-form--block .text-field {
    font-size: 14px;
    line-height: 1.42857;
    display: block;
    min-height: 52px;
    color: var(--color-text-body);
    letter-spacing: -.02em;
    background-color: #0e1824;
    border: 1px #e1dfec;
    border-radius: 100px;
    margin-bottom: 0;
    width: 100%;
    height: 42px;
    padding: 12px 12px 12px 24px;
    outline: 0;
}

.hero-form--block .submit-button {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    height: 100%;
    min-width: 160px;
    background-color: #0143ea;
    border: 0;
    border-radius: 100px;
    padding: 14px 24px;
    text-decoration: none;
    transition: background-color .2s;
}

.hero-check--wrapper {
    display: grid;
    overflow: visible;
    row-gap: 24px;
    column-gap: 4rem;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 900px;
    margin: 0 auto;
    margin: 40px auto 24px;
    position: relative;
    z-index: 9;
}

.hero-check--item {
    display: flex;
    align-self: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    row-gap: 10px;
    column-gap: 10px;
}

.hero-check--item .check-mark {
    color: #9fe32c;
    width: 24px;
    height: 24px;
    order: 1;
}

.hero-check--item .check-text {
    white-space: pre-wrap;
    overflow: visible;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-default);
    line-height: 1.5;
    align-self: center;
    order: 2;
    min-height: 0px;
    /* width: max-content; */
}

.client-logo--container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.client-logo--track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex: none;
}

.client-logo--flex {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: row;
    /* width: calc(128px * 12); */
    animation: scrollLogo 30s linear infinite;
}

.client-logo--item {
    display: flex;
    flex: none;
    align-items: center;
    align-self: center;
    justify-content: flex-start;
    margin-right: 6rem;
}

.client-logo--item .client-image {
    opacity: .65;
    width: auto;
    height: auto;
    max-width: 8rem;
    max-height: 1.75rem;
    object-fit: cover;
}

@keyframes scrollLogo {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Moves the logos to the left; -50% should match the original set of logos before duplicates */
    }
}

.hero-image--wrapper {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    width: 860px;
    height: 100%;
    padding-top: 0;
    padding-left: 0;
    position: relative;
    margin: 0 auto;
    bottom: 0;
    overflow: visible;
    min-height: 420px;
}

.hero-image--wrapper .hero-image {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    height: 100%;
    max-height: 100%;
    position: relative;
    bottom: 0;
    box-shadow: 1px 1px 30px #0000001a;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, oklch(0.928 0.006 264.531) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;;
}

.hero-image--wrapper .hero-image,
.hero-image--wrapper .hero-chat-box {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    transition: opacity 0.8s cubic-bezier(.23,1.01,.32,1);
}

.hero-image--wrapper .hero-chat-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    padding: 48px;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
}

.hero-image--wrapper.active-chat .hero-image {
    opacity: 0;
    pointer-events: none;
}

.hero-image--wrapper.active-chat .hero-chat-box {
    opacity: 1;
    pointer-events: all;
    display: flex;
}

.hero-image--wrapper .chat-bubble {
    display: inline-block;
    max-width: 75%;
    padding: 12px 18px;
    border-radius: 22px;
    margin-bottom: 8px;
    font-size: 1.13rem;
    line-height: 1.35;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.03);
}

.hero-image--wrapper .chat-bubble.user {
    align-self: flex-end;
    background: #e6f0fd;
    color: #1959a7;
}

.hero-image--wrapper .chat-bubble.agent {
    align-self: flex-start;
    background: #fff;
    color: #333;
    border: 1px solid #e5e5e5;
}

.hero-image--background {
    background-image: linear-gradient(to bottom,transparent,rgb(138 191 255 / 15%));
    z-index: -2;
    height: 20rem;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.hero-demo--playback {
    position: relative;
    margin-top: 0;
}

.hero-demo--wrapper {
    z-index: 2;
    max-width: 1064px;
    text-align: left;
    object-fit: fill;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    overflow: hidden;
}

.hero-demo {
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 150px;
    height: 575px;
    border: 1px solid rgb(28 37 46);
    border-radius: 1rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    box-shadow: 1px 1px 20px rgb(148 171 255 / 15%);
    opacity: 1;
    z-index: 3;
}

.hero-glow--bg {
    width: 100%;
    height: 90%;
    filter: saturate(200%);
    max-width: 100%;
    object-fit: contain;
    top: -55%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    position: absolute;
    z-index: 1;
}

.hero-gradient--bg {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    max-width: 1120px;
    aspect-ratio: 1/1;
    z-index: 1;
}

.hero-demo--wrapper .video-playback {
    width: 96px;
    height: 96px;
    justify-content: center;
    align-items: center;
    transition: all .25s;
    display: flex;
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    z-index: 9;
}

.hero-demo--wrapper .video-playback:hover {
    transform: scale(.9);
}


/* Video Playback */
.video-playback {
    position: relative;
    padding-bottom: 64px;
}

.video-component--wrapper {
    position: relative;
    z-index: 2;
}

.video-component {
    overflow: hidden;
}

.video-component video {
    border-radius: 50px;
    display: block;
    -o-object-position: center center;
    object-position: center center;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.video-player--link {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.video-player--link .play-icon {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    vertical-align: middle;
    border-style: solid;
    border-width: 1px;
    border-radius: 100%;
    border-color: transparent;
    background-color: var(--color-secondary);
}

.video-player--link:hover .play-icon {
    background-color: #053cc6;
}

.video-player--link .play-icon::before {
    content: ' ';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    border-style: solid;
    border-color: transparent;
    border-left-color: white;
    border-left-width: calc(calc(80px / 3) * 0.8660254038);
    border-top-width: calc(calc(80px / 3) / 2);
    border-bottom-width: calc(calc(80px / 3) / 2);
    transform: translate(-28%, -50%) rotate(360deg);
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.video-modal iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
}

.video-close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    display: block;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQuNzA3IDMuMjkzYTEgMSAwIDEgMC0xLjQxNCAxLjQxNEwxMC41ODYgMTJsLTcuMjkzIDcuMjkzYTEgMSAwIDEgMCAxLjQxNCAxLjQxNEwxMiAxMy40MTRsNy4yOTMgNy4yOTNhMSAxIDAgMSAwIDEuNDE0LTEuNDE0TDEzLjQxNCAxMmw3LjI5My03LjI5M2ExIDEgMCAxIDAtMS40MTQtMS40MTRMMTIgMTAuNTg2IDQuNzA3IDMuMjkzeiIgZmlsbD0iI2ZmZiIvPgo8L3N2Zz4K) center center no-repeat;
}

.video-glow--bg {
    width: 100%;
    height: 90%;
    filter: saturate(200%);
    max-width: 100%;
    object-fit: contain;
    top: -55%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    position: absolute;
    z-index: 1;
}


/* Input */
.the__button {
    background: #1b4942;
    color: #fff;
    border: 1px solid #1b4942;
    transition: color 600ms ease, background 1200ms ease;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    padding: 19px 1.5rem;
    font-weight: 400;
    height: auto;
    min-width: 0;
    width: max-content;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.the__button .svg-icon {
    position: relative;
    z-index: 9;
}

.header-module .the__button {
    min-width: auto;
    height: 52px;
    line-height: 1.4;
}

.the__button.btn--alt {
    background: none;
    color: #0043ec;
    border: 1px solid #0043ec;
}

.the__button.btn--white {
    background: #fff;
    color: #202f44;
    border: 1px solid #fff;
}

.the__button.btn--secondary {
    background: #beff50;
    color: #111;
    border: 1px solid #beff50;
}

.the__button.dark {
    background: #202f44;
    color: #fff;
    border: 1px solid #202f44;
}

.the__button:before {
    content: "";
    width: 56px;
    height: 100%;
    border-radius: 50%;
    background: #18554c;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: var(--trans-600);
}

.the__button.btn--white:before {
    background: #D3DAE2;
    color: #202f44;
}

.the__button.btn--secondary:before {
    background: #ace747;
    color: #111;
}

.the__button.dark:before {
    background: #071d3c;
    color: #fff;
}

.the__button:hover:before {
    transform: translate(-50%, -50%) scale(5);
    transition: var(--trans-1200);
}

.the__button:hover {
    color: #fff;
    background: #18554c;
}

.the__button.btn--white:hover {
    color: #202f44;
    background: #fff;
}

.the__button.btn--secondary:hover {
    color: #111;
    background: #ace747;
}

.the__button.dark:hover {
    color: #fff;
    background: #071d3c;
}

.the__button span {
    position: relative;
    z-index: 2;
}

.the__button-arrow {
    color: #fff;
    background-color: transparent;
    line-height: 1;
    justify-content: center;
    margin-left: 12px;
    padding: 0;
}

.the__button.btn--white .the__button-arrow, .the__button.btn--secondary .the__button-arrow {
    color: #071d3c;
}


/* Logos */
.logo-bar {
    padding: 40px 0 80px;
}

.logo-text--wrapper {
    color: var(--color-text-body);
    font-size: 17px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 9;
}

.logo-bar--items {
    display: flex;
    flex-flow: wrap;
    gap: 40px;
    justify-content: center;
    margin-left: -24px;
    margin-right: -24px;
}

.logo-bar--image {
    height: 70px;
    width: 160px;
}


/* Intro Block */
.intro-block {
    padding: 80px 0;
}

.intro-block .content-wrap {
    align-items: flex-start;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0px;
    height: min-content;
    justify-content: center;
    max-width: 894px;
    overflow: hidden;
    margin: 0 auto 40px;
    position: relative;
    width: 100%;
}

.intro-block .content-wrap .scroll-fade-intro {
    font-size: 2.6rem;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #bbb;
    font-weight: 400;
    display: block;
    word-break: break-word;
    text-align: left;
    margin-top: 0;
}

.intro-block .content-wrap .scroll-fade-intro span {
    transition: color 0.25s cubic-bezier(.77,0,.18,1);
    color: #bbb;
    opacity: 1;
}

.intro-block .content-wrap .scroll-fade-intro span.revealed {
    color: #1a1a1a;
}


/* Features */
.features-block {
    background-color: #cb9fd2;
    background-color: #ebe8fe;
    padding: 96px 0 96px;
}

.features-block .content-wrap {
    max-width: 100%;
    flex: 1 1 0;
    margin-bottom: 48px;
}

.features-block .content-wrap .heading-tag {
    color: #f0d7ff;
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Geist Mono', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}

.features-block .content-wrap .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    /* margin-top: 48px; */
}

.features-block .content-wrap .large-text {
    color: #1d3d3c;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 650px;
    margin: 0;
}

.features-block .content-wrap .small-text--wrapper {
    display: flex;
    align-items: flex-end;
}

.features-block .content-wrap .small-text {
    color: var(--color-text-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    flex: 1 1 0;
    max-width: 36rem;
    width: 100%;
}

.features-copy {
    text-align: center;
    margin-bottom: 64px;
}

.features-copy h3 {
    color: var(--color-text-default);
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
}

.features-copy p {
    font-size: 17px;
    line-height: 1.5;
    color: var(--color-text-body);
    margin-bottom: 0;
}

.features-grid--wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto;
    grid-auto-columns: 1fr;
    display: grid;
}

.features-grid.span-2 {
    grid-template-columns: 1fr 1fr;
}

.features-grid.span-3 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
}

.features-grid .features-card {
    background-color: #f5f8ff;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #d8dbdf;
    border-color: transparent;
    color: #1d1d20;
}

.features-grid .features-card.overflow-hidden {
    overflow: hidden;
}

.features-grid .features-card.bg-green {
    background-color: rgba(234, 245, 194, .35);
}

.features-grid .features-card.bg-purple {
    background-color: rgba(251, 248, 255, 1);
}

.features-grid .features-card.bg-blue {
    background-color: rgba(217, 248, 255, .4);
}

.features-grid .features-card.bg-orange {
    background-color: rgba(255, 240, 227, .5);
}

.features-grid .features-card .card-top {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.features-grid.span-2 .features-card .card-top {
    height: 300px;
}

.features-grid .features-card .card-top .ct-content--wrap {
    background-size: 50px 25px;
    -webkit-mask: linear-gradient(#000,#000 50%,transparent);
    mask: linear-gradient(#000,#000 50%,transparent);
    position: relative;
    height: 100%;
}

.features-grid .features-card .card-top .ct-content--wrap.low-mask {
    -webkit-mask: linear-gradient(#000,#000 70%,transparent);
    mask: linear-gradient(#000,#000 70%,transparent);
}

.features-grid .features-card .card-top .ct-content {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 1.5rem 1.5rem
}

.features-grid .features-card .card-top .ext-grid--wrapper {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    /* max-width: 350px; */
}

.features-grid .features-card .card-top .ext-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 16px;
}

.features-grid .features-card .card-top .ext-grid.span-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.features-grid .features-card .card-top .ext-card {
    background-color: #fff;
    border: 1px solid #d3d1d1;
    border-radius: 6px;
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(29, 29, 32, 0.08) 0px 0px 0px -1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    display: flex;
    width: fit-content;
}

.features-grid .features-card .card-top .ext-card .card-content {
    border-right: 1px solid #d3d1d1;
    padding: 0.75rem;
    min-width: 84px;
}

.features-grid .features-card .card-top .ext-card .card-content .content-flex {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.features-grid .features-card .card-top .ext-card .card-content .ext-label {
    color: var(--color-text-default);
    font-size: 11px;
    font-weight: 400;
    line-height: 110%;
    margin: 0;
}

.features-grid .features-card .card-top .ext-card .card-content .ext-value {
    color: var(--color-text-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 110%;
    margin: 0;
}

.features-grid .features-card .card-top .ext-card .card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    /* min-width: 84px; */
}

.features-grid .features-card .card-top .ext-card .card-action .action-button {
    background-color: #29b744;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.features-grid .features-card .card-top .ext-card .card-action .svg-icon {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

.features-grid .features-card .apps-flex {
    display: flex;
    justify-content: space-between;
    transform: translate3d(0,0,0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.features-grid .features-card .apps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.features-grid .features-card .apps-wrapper:first-child {
    margin-left: 32px;
}

.features-grid .features-card .apps-wrapper:last-child {
    margin-right: 32px;
}

.features-grid .features-card .apps-wrapper:nth-child(even) {
    padding-top: 32px;
}

.features-grid .features-card .apps-wrapper .icon-wrapper {
    background-color: #fff;
    border: 1px solid #d3d1d1;
    border-radius: 50%;
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(244, 244, 245, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    transform: scale(1);
    transition: transform 0.2s cubic-bezier(.4, 0, .2, 1);
}

.features-grid .features-card .apps-wrapper .icon-wrapper:hover {
    transform: scale(1.15);
}

.features-grid .features-card .apps-wrapper .svg-icon, .features-grid .features-card .apps-wrapper .image-icon {
    width: 32px;
    height: 32px;
}

.features-grid .features-card .chat-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.features-grid .features-card .chat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
}

.features-grid .features-card .chat-item.response {
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: auto;
    margin-left: 0;
}

.features-grid .features-card .chat-item .user-details {
    display: flex;
    align-items: center;
    gap: 6px;
}

.features-grid .features-card .chat-item .user-details .dc-icon--wrapper {
    background-color: #0143ea;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    text-decoration: none;
}

.features-grid .features-card .chat-item .user-details .dc-icon {
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 11.5px;
    text-decoration: none;
    display: flex;
}

.features-grid .features-card .chat-item .user-details .user-image {
    box-shadow: none;
    object-fit: cover;
    border: 0.5px solid rgba(255,255,255,.1);
    border-radius: 4px;
    margin-bottom: 0;
    width: 20px;
    height: 20px;
}

.features-grid .features-card .chat-item .user-details .user-info--flex {
    grid-column-gap: 6px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    display: flex;
}

.features-grid .features-card .chat-item .user-details .user-info {
    color: var(--color-text-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
    text-decoration: none;
}

.features-grid .features-card .chat-item .user-details .ai-badge {
    background-color: #efeff1;
    border-radius: 2px;
    display: flex;
    font-size: 10px;
    line-height: 140%;
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 13px;
    text-decoration: none;
}

.features-grid .features-card .chat-item .chat-card {
    background-color: #fff;
    border: 1px solid #d3d1d1;
    border-radius: 6px;
    border-bottom-right-radius: 0;
    color: var(--color-text-default);
    padding: 0.5rem .75rem;
    max-width: 280px;
    overflow: auto;
    text-align: right;
}

.features-grid .features-card .chat-item.response .chat-card {
    border-radius: 6px;
    border-bottom-left-radius: 0;
    text-align: left;
}

.features-grid .features-card .chat-item .chat-text {
    color: var(--color-text-default);
    font-size: .75rem;
    line-height: 1.6;
    margin: 0;
}

.features-grid .features-card .card-top .int-content--wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.features-grid .features-card .card-top .logos-outer--wrap {
    width: 326px;
    background-color: #fff;
    border: 1px solid #d3d1d1;
    border-radius: 16px;
    padding: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.features-grid .features-card .card-top .logos-inner--wrap {
    background-color: #fff;
    border: 1px solid #d3d1d1;
    border-radius: 12px;
    padding: 8px;
}

.features-grid .features-card .card-top .logos-wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.features-grid .features-card .card-top .int-content--wrap .int-logo--wrapper {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05), 0 4px 4px rgba(0, 0, 0, .07), 0 0 4px rgba(0, 0, 0, .07);
    justify-content: center;
    align-items: center;
    display: flex;
    width: 40px;
    height: 40px;
}

.features-grid .features-card .card-top .int-content--wrap .int-logo {
    width: 20px;
    height: 20px;
}

.features-grid .features-card .card-top .int-content--wrap .connector-wrap {
    width: 100%;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.features-grid .features-card .card-top .int-content--wrap .connector-line {
    background-color: rgba(0, 0, 0, .1);
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    width: 2px;
    overflow: hidden;
}

.features-grid .features-card .card-top .int-content--wrap .animated-line {
    background-image: linear-gradient(#074bd9, rgba(5, 193, 104, 0));
    width: 2px;
    height: 20px;
    position: absolute;
    bottom: 0;
    transform-origin: center bottom;
}

.features-grid .features-card .card-top .int-content--wrap .connector-wrap .logo-wrapper {
    background-color: #fff;
    border: 1px solid rgba(5, 117, 193, 0.4);
    border-radius: 8px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .07), 0 4px 10px rgba(0, 0, 0, .05), 0 4px 4px rgba(0, 0, 0, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    position: absolute;
    z-index: 5;
}

.features-grid .features-card .card-top .int-content--wrap .connector-wrap .logo {
    width: 16px;
    height: 16px;
}

.features-grid .features-card .card-top .int-content--wrap .flow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 350px;
    position: relative;
}

.features-grid .features-card .card-top .int-content--wrap .flow-card {
    background-color: #fff;
    border: 1px solid #d3d1d1;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
}

.features-grid .features-card .card-top .int-content--wrap .flow-text {
    color: var(--color-text-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.features-grid .features-card .card-top .hitl-content--wrap {
    background-color: #fff;
    border-left: 1px solid #d3d1d1;
    left: 1.5rem;
    padding: 1rem;
    padding-right: 0;
    position: relative;
}

.features-grid .features-card .card-top .hitl-table {
    border: 0;
    width: 500px;
}

.features-grid .features-card .card-top .hitl-table tr {
    border: 0;
}

.features-grid .features-card .card-top .hitl-table td {
    border: 0;
    padding-left: 0;
}

.features-grid .features-card .card-top .hitl-field--wrapper {
    width: 200px;
}

.features-grid .features-card .card-top .hitl-field--flex {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-grid .features-card .card-top .accuracy-card {
    background-color: #7C68C2;
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 130%;
    height: 40px;
    width: 40px;
}

.features-grid .features-card .card-top .field-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 130%;
    margin: 0;
}

.features-grid .features-card .card-top .hitl-input--wrapper {
    width: 300px;
}

.features-grid .features-card .card-top .hitl-input--field {
    background-color: #fff;
    border: 1px solid #bcc3d2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    height: 40px;
    padding: 0px 12px;
}

.features-grid .features-card .card-top .hitl-flagged--content {
    border: 1px solid #fd9414;
    border-radius: 4px;
    height: 52px;
    width: 350px;
    top: 48px;
    left: 58px;
    position: absolute;
}

.features-grid .features-card .card-top .hitl-floating--editor {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(29, 29, 32, 0.08) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    font-size: .75rem;
    line-height: 1.25rem;
    width: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 120px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.75rem;
}

.features-grid .features-card .card-top .hitl-floating--editor .editor-input--wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-grid .features-card .card-top .hitl-floating--editor .editor-input {
    background-color: #fff;
    border: 1px solid #bcc3d2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    height: 40px;
    padding: 0px 12px;
    min-width: 120px;
}

.features-grid .features-card .card-top .hitl-floating--editor .action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-grid .features-card .card-top .hitl-floating--editor .action-button {
    background-color: #0445eb;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.features-grid .features-card .card-top .hitl-floating--editor .action-button.close {
    background-color: rgb(193, 34, 34);
    background-color: #fff;
    border-color: #bcc3d2;
    color: var(--color-text-body);
}

.features-grid .features-card .card-top .hitl-floating--editor .action-button .svg-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.features-grid .features-card .card-bottom {
    padding: 0 1.75rem 2rem;
}

.features-grid .features-card .card-bottom .large-text {
    color: #121214;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0;
}

.features-grid .features-card .card-bottom .body-text {
    color: #4d4d57;
    font-size: 14px;
    line-height: 24px;
    margin-top: 12px;
    margin-bottom: 0;
}

.features-block .accordion-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    overflow: hidden;
}

.features-block .accordion {
    margin-bottom: 2rem;
}

.features-block .accordion-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #1a1a1a;
}

.features-block .accordion-header {
    margin: 0;
}

.features-block .accordion-button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.015rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.13s;
    outline: none;
}

.features-block .accordion-button:hover, .features-block .accordion-button[aria-expanded="true"] {
    background: none;
}

.features-block .accordion-icon {
    margin-right: 14px;
    padding-top: 7px;
    transition: transform 0.25s;
}

.features-block .accordion-button[aria-expanded="true"] .accordion-icon {
    transform: rotate(90deg);
}

.features-block .accordion-content {
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s;
    padding: 0;
    height: 0px;
    margin-top: 0;
}

.features-block .accordion-content.open {
    display: block;
    opacity: 1;
    height: auto;
    margin-top: 0.5rem;
}

.features-block .accordion-content p {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.35;
    margin: 0;
}

.features-block .accordion-content .image-wrapper {
    margin-right: unset;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: none;
    width: fit-content;
    display: flex;
    max-width: 100%;
    justify-content: flex-end;
    margin: 0 0 -1px -60px;
}

.features-block .accordion-content .image-wrapper .image {
    width: 720px;
    max-width: 908px;
    padding-left: unset;
    margin-top: unset;
    height: auto;
}

.features-block .accordion-content .chat-ui-wrapper {
    position: absolute;
    z-index: 2;
    bottom: 60px;
    right: 140px;
    width: 340px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.features-block .accordion-content .chat-ui-wrapper.wider-chat {
    width: 520px;
    right: 80px;
}

.features-block .chat-bubble {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.4;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.06);
    margin-bottom: 2px;
    position: relative;
    color: #181818;
    word-break: break-word;
}

.features-block .chat-bubble.user {
    align-self: flex-end;
    background: #e6f7e9;
    color: #218837;
    border-bottom-right-radius: 6px;
}
.features-block .chat-bubble.agent {
    align-self: flex-start;
    background: #f5f5f7;
    color: #555;
    border-bottom-left-radius: 6px;
}

.features-block .chat-animated .chat-bubble {
    opacity: 0;
    transform: translateY(16px);
    transition: 
        opacity 0.5s cubic-bezier(0.45,0,0.55,1),
        transform 0.5s cubic-bezier(0.45,0,0.55,1);
}

.features-block .chat-animated .chat-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-block .accordion-content .channels-grid-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 350px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* Responsive tweak if needed */
}

.features-block .accordion-content .channels-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
}

.features-block .accordion-content .channels-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    transition: all 0.4s cubic-bezier(.36,2,.46,.71);
}

.features-block .accordion-content .channel-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #fff;
    /* box-shadow: 0 0 12px #ece9fc, 0 2px 8px rgba(40,40,80,.11); */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.45s cubic-bezier(.36,2,.46,.71), box-shadow 0.3s;
    border: 2px solid #ede8fa;
}

.features-block .accordion-content .channel-icon img {
    width: 36px;
    height: 36px;
    pointer-events: none;
}

.features-block .accordion-content .channel-icon.bloopy {
    background: linear-gradient(90deg, #725cff 40%, #e8a5ff 100%);
    border-color: #a596f6;
    box-shadow: 0 0 24px #b2a6ff7e, 0 4px 16px #cab4ff26;
}



/* Process flow */
.process-flow {
    position: relative;
}

.process-flow--content {
    border-radius: 16px;
    padding: 60px 40px;
    background-color: var(--color-background-secondary);
}

.process-flow--copy {
    margin: 0 auto;
    text-align: center;
    width: 700px;
}

.process-flow--copy .small-title {
    color: #0062ff;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 14px;
    margin-bottom: 10px;
}

.process-flow--copy h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 26px;
}

.process-flow--copy .body-text {
    font-size: 17px;
    line-height: 1.5;
    color: #aebbc8;
    margin-bottom: 35px;
}

.bullet-list--grid {
    margin-top: 32px;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
}

.bullet-point {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.bullet-point--dot {
    width: 24px;
    margin-right: 12px;
}

.bullet-point--body {
    color: #b9bdc4;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 0;
}

.process-flow .process-flow--tabs {
    background-color: var(--color-background);
    display: flex;
    flex-direction: row;
    border-radius: 0.5rem;
    margin-top: 64px;
    padding-top: 0;
}

.process-flow .process-flow--tabs .tabs-nav {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 auto;
    flex-direction: column;
    margin-bottom: 0;
}

.process-flow .process-flow--tabs .tabs-nav a {
    color: var(--color-text-body);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 2rem 1.5rem;
    border-radius: 0;
    background-color: transparent;
    display: flex;
    flex: 1 1 0%;
    align-items: center;
    justify-content: center;
    transition-duration: .2s;
    width: auto;
}

.process-flow .process-flow--tabs .tabs-nav a .svg-icon {
    color: var(--color-tertiary);
    width: 20px;
    height: 20px;
    margin-left: 0.25rem;
    position: relative;
    top: -1px;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .2s;
}

.process-flow .process-flow--tabs .tabs-nav li + li {
    margin-left: 0;
}

.process-flow .tabs-nav-active-filled .tabs-nav li a:hover {
    background-color: transparent;
    color: #fff;
}

.process-flow .tabs-nav-active-filled .tabs-nav li.active a {
    background-color: var(--color-tertiary);
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    color: var(--color-background-secondary);
}

.process-flow .tabs-content p {
    color: #fff;
}

.process-flow .tabs-content--wrapper {
    display: flex;
    flex-direction: row;
    width: 825px;
    height: 345px;
    border-left: 1px solid #141e29;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(14, 14, 30, 0.1) 0px 6px 79px 0px, rgba(10, 20, 33, 0.1) 0px 1px 2px 0px, rgba(10, 20, 33, 0.16) 0px 6px 24px 0px;
    overflow: hidden;
}

.process-flow .tabs-content--wrapper .text-block {
    padding: 2rem;
    text-align: left;
    width: 60%;
}

.process-flow .tabs-content--wrapper .text-block h3 {
    margin-top: 8px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}

.process-flow .tabs-content--wrapper .text-block p {
    color: var(--color-text-body);
    font-size: 18px;
    line-height: 1.5;
}

.process-flow .tabs-content--wrapper .image-block {
    padding: 0;
    position: relative;
    width: 40%;
}

.process-flow .tabs-content--wrapper .image-wrapper {
    /* display: block; */
    position: absolute;
    left: 20px;
    top: 30px;
    width: 475px;
    vertical-align: top;
    overflow: hidden;
}

.process-flow .tabs-content--wrapper .image-block .image {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.process-flow--section {
    position: relative;
    padding: 120px 0;
}

.process-flow--section+.process-flow--section {
    padding-top: 80px;
}

.process-flow--section .content-wrap {
    text-align: center;
}

.process-flow--section .content-wrap .small-title {
    margin-top: 14px;
    margin-bottom: 10px;
    color: #0062ff;
    font-size: 13px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.process-flow--section .content-wrap .large-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 26px;
}

.process-flow--section .content-wrap .body-text {
    color: #546175;
    font-size: 18px;
    line-height: 1.5;
    /* padding-bottom: 24px; */
}

.process-flow--section .content-wrap .category-badge {
    border-radius: 100px;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -.01em;
    background-color: rgb(81 56 238 / 6%);
    color: #0062ff;
    margin-bottom: 16px;
    padding: 4px 16px;
}

.process-flow--tag {
    display: inline-block;
    padding: 6px 12px;
    background: #e5f0ff;
    color: #0043ec;
    font-size: .75rem;
    line-height: .875rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 16px;
    margin-right: 8px;
}

.process-flow--tag.healthcare {
    background: #e5ffe8;
    color: #097a0d;
}

.process-flow--tag.retail {
    background: #ffe5ea;
    color: #7a0932;
}


/* Our Approach */
.our-approach {
    padding: 120px 0;
    background-color: var(--color-background-tertiary);
}

.our-approach .section-copy {
    width: 750px;
    margin: 0 auto 48px;
    text-align: center;
}

.our-approach .section-copy h3 {
    color: var(--color-text-default);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 26px;
}

.our-approach .section-copy p {
    font-size: 17px;
    line-height: 1.5;
    color: var(--color-text-body);
    margin-bottom: 0;
}

.our-approach .tabs-nav-filled {
    padding-top: 16px;
    position: relative;
    z-index: 9;
}

.our-approach .tabs-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    margin-bottom: 64px;
}

.our-approach .tabs-nav a {
    font-size: 18px;
    line-height: 24px;
    color: #f1f1ff;
    padding: 12px 24px;
}

.our-approach .tabs-nav li.active a, .our-approach .tabs-nav li a:hover, .our-approach .tabs-nav li a:focus, .our-approach .tabs-nav-filled .tabs-nav a {
    background-color: transparent;
    color: #f1f1ff;
}

.our-approach .tabs-nav-active-filled .tabs-nav li.active a {
    color: #f1f1ff;
    background-color: #20202e;
    border: 1px solid rgba(241,241,255,.16);
    border-radius: 8px;
    padding: 12px 24px;
    text-decoration: none;
}

.our-approach .tabs-content--wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    grid-template-rows: auto;
    align-content: center;
    justify-items: center;
}

.our-approach .text-block {
    align-self: center;
}

.our-approach .text-block .text-label {
    background-color: rgba(255, 255, 255, 0);
    background-image: linear-gradient(90deg,#46e3b7,#fff855),linear-gradient(90deg,#12c2e9,#c471ed 50%,#f64f59);
    -webkit-background-clip: text;
    background-clip: text;
    border: 1px solid rgb(113 230 160 / 24%);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 500;
    align-self: flex-start;
    margin-bottom: 2rem;
    padding: 6px 18px;
}

.our-approach .text-block .text-label img {
    width: 20px;
    height: 20px;
}

.our-approach .text-block .text-label span {
    -webkit-text-stroke-color: #567ff0;
    margin-right: 0;
    font-size: 14px;
    font-weight: 400;
    transition: opacity .3s;
}

.our-approach .text-block h3 {
    color: #fff;
    font-size: 2.2rem;
    line-height: 42px;
    font-weight: 600;
    text-align: left;
    margin-top: 0;
    margin-bottom: 12px;
}

.our-approach .image-block {
    padding: 0;
    position: relative;
}

.our-approach .image-block .image {
    height: 100%;
    width: 100%;
    max-width: 100%;
    /* object-fit: cover; */
}

.our-approach .video-block {
    width: 450px;
    height: 635px;
    object-fit: fill;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.our-approach .video-block video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    border-radius: 10px;
    margin: auto;
    position: absolute;
    top: -100%;
    bottom: -100%;
    left: -100%;
    right: -100%;
}


/* Document Type Sliders */
.document-slider--section {
    padding: 40px 0 80px;
    position: relative;
}

.document-slider--container {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.document-label--slider {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    margin-bottom: 1.5rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.document-label--slider .document-slider--wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.document-label--slider .document-labels--wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
}

.document-label--slider .document-labels--wrapper {
    animation: moveSlideshow 75s linear infinite;
}

@keyframes moveSlideshow {
    100% { 
        transform: translateX(-30%);  
    }
}

.document-label--slider .document-labels {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
}

.document-label--slider .document-label {
    background-color: var(--color-background-secondary);
    border: 1px solid #222f3e;
    border-radius: 100px;
    color: var(--color-text-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.1;
    padding: 0.75rem 1rem;
    /* text-transform: uppercase;
    letter-spacing: .06em; */
}



/* More Block */
.more-block {
    position: relative;
    padding: 120px 0;
}

.more-block .more-block--title, .document-slider--section .section-title, .uc-block .section-title {
    position: relative;
    color: var(--color-text-default);
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    z-index: 1;
}

.more-block--description, .document-slider--section .section-description, .uc-block .section-description {
    position: relative;
    text-align: center;
    z-index: 1;
    margin: 14px auto 80px;
}

.more-block--description p, .document-slider--section .section-description p, .uc-block .section-description p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-text-body);
    margin-bottom: 0;
}

.more-features--layout {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-left: 0%;
    margin-right: 0%;
    padding: 0;
}

.more-features--card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    grid-row-gap: 10px;
    padding: 40px 0 0;
    padding-bottom: 0;
}

.more-features--card.x2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    padding: 40px 40px 0;
}

.more-features--card .text-block {
    grid-row-gap: 10px;
    flex-direction: column;
    display: flex;
    padding: 0 40px;
}

.more-features--card.x2 .text-block {
    margin-right: 30px;
    padding: 0;
}

.more-features--card .text-block .heading-text {
    color: var(--color-text-default);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

.more-features--card .text-block .body-text {
    color: var(--color-text-body);
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
}

.more-features--card .image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: 50% 50%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    flex: 0 auto;
    margin-top: 0;
    display: block;
    padding-left: 5px;
    padding-right: 0;
}

.more-features--card.x2 .image {
    padding: 0;
}

.why-list {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: auto auto;
    justify-content: center;
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    padding-top: 120px;
}

.why-list .why-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
}

.why-list .icon-wrapper {
    border-radius: 8px;
    background-color: var(--color-background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.why-list .icon {
    width: 28px;
    height: 28px;
}

.why-list .why-content {
    margin-left: 0;
}

.why-list .why-heading {
    color: var(--color-text-default);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    margin-top: 0;
    margin-bottom: 8px;
}

.why-list .why-paragraph {
    color: var(--color-text-body);
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
}


/* Data Block */
.data-block {
    background-color: #1c4942;
    padding: 120px 0;
}

.data-block .section-header {
    display: flex;
    padding-top: 1.5rem;
    padding-bottom: 6rem;
}

.data-block .content-wrap {
    max-width: 100%;
    flex: 1 1 0;
}

.data-block .content-wrap .heading-tag {
    color: #f0d7ff;
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Geist Mono', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}

.data-block .content-wrap .text-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 24px;
}

.data-block .content-wrap .large-title {
    color: #fff;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 500px;
    margin: 0;
}

.data-block .content-wrap .small-text--wrapper {
    display: flex;
    align-items: flex-end;
}

.data-block .content-wrap .small-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    flex: 1 1 0;
    max-width: 28rem;
    width: 100%;
}

.data-block .data-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
    grid-gap: 15px;
}

.data-block .data-grid .data-card {
    background-color: #212121;
    border-radius: 2px;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    -webkit-transition: box-shadow .5s ease-in-out, border .5s ease-in-out;
    transition: box-shadow .5s ease-in-out, border .5s ease-in-out;
    position: relative;
    width: 100%;
}

.data-block .data-grid .data-content {
    color: #fff;
    padding: 1.5rem 1.5rem;
    padding-top: 5rem;
    width: 100%;
    height: 100%;
    text-align: left;
    position: absolute;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}

.data-block .data-grid .data-content .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    gap: .5rem;
    transition: all .35s ease-in-out;
    height: 100%;
}

.data-block .data-grid .data-content .large-text {
    color: #ffffeb;
    font-size: 56px;
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0;
}

.data-block .data-grid .data-content .body-text {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.data-block .data-grid .data-icon--wrapper {
    top: 1.5rem;
    left: 1.5rem;
    position: absolute;
    z-index: 10;
}

.data-block .data-grid .data-icon {
    background-color: #f0d7ff;
    border-radius: 100%;
    color: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.data-block .data-grid .data-icon .svg-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.data-block .data-grid .slide-up--panel {
    background: #ffffeb;
    display: flex;
    flex-direction: column;
    justify-content: end;
    z-index: 5;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
    position: absolute;
    height: 100%;
    width: 100%;
    transform: translateY(400px);
    padding: 1.5rem;
}

.data-block .data-grid .data-card:hover .slide-up--panel, .data-block .data-grid .data-card:hover .slide-up--panel .body-text {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.data-block .data-grid .slide-up--panel .body-text {
    color: #111;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0;
    line-height: 140%;
    transform: translateY(10px);
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}



/* Unique Features */
.uf-block {
    background-color: #ffffeb;
    background-color: #e9ecec;
    padding: 120px 0;
}

.uf-block .section-header {
    display: flex;
    padding-top: 1.5rem;
    padding-bottom: 6rem;
}

.uf-block .content-wrap {
    max-width: 100%;
    flex: 1 1 0;
}

.uf-block .content-wrap .content-body {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 0;
}

.uf-block .content-wrap .large-text--wrapper {
    flex-flow: column;
    width: fit-content;
    display: inline-flex;
}

.uf-block .content-wrap .large-text {
    color: #1d3d3c;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 500px;
    margin: 0;
}

.uf-block .content-wrap .large-text--border {
    width: 110%;
    transform: translate(-5%);
}

.uf-block .content-wrap .small-text--wrapper {
    display: flex;
    align-items: flex-end;
}

.uf-block .content-wrap .small-text {
    color: inherit;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    flex: 1 1 0;
    max-width: 28rem;
    width: 100%;
}

.uf-block .uf-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 2rem;
}

.uf-block .uf-grid--item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0;
}

.uf-block .uf-grid--item .icon-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.uf-block .uf-grid--item .svg-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
}

.uf-block .uf-grid--item .large-text {
    color: var(--color-text-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.uf-block .uf-grid--item .des-text {
    color: #303236;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
    margin: 0;
}



/* Use Cases */
.uc-block {
    background-color: var(--color-background-secondary);
    position: relative;
    padding: 120px 0;
}

.uc-block .content-wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    max-width: 800px;
    gap: 32px;
}

.uc-block .content-wrap .large-text {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0;
}

.uc-block .content-wrap .large-text .rotate-text {
    color: #0445ec;
}

.uc-block .content-wrap .body-text {
    color: var(--color-text-body);
    font-size: 16px;
    line-height: 1.65;
    padding: 0;
    margin: 0;
}

.uc-card--grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,1fr);
    grid-column-gap: 18px;
    grid-row-gap: 18px;
}

.uc-card {
    background-color: hsla(0,0%,100%,.04);
    border: 2px solid hsla(0,0%,100%,.08);
    border-radius: 8px;
    padding: 24px;
}

.uc-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.uc-card .card-content .card-icon {
    width: 24px;
    height: 24px;
}

.uc-card .card-content .card-title {
    color: var(--color-text-default);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.uc-card .card-content .card-text {
    color: var(--color-text-body);
    font-size: 14px;
    line-height: 144%;
    margin: 0;
}

.uc-content--tab {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 80px;
    min-height: 480px;
    overflow: hidden;
}

.uc-content--tab .selection-button {
    background-color: transparent;
    background-image: none;
    border: 1px solid #e5e5e5;
    border-right: 0;
    border-bottom: 0;
    cursor: pointer;
    display: flex;
    flex: 0 1 77px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    overflow: hidden;
    position: relative;
}

.uc-content--tab .selection-button.active {
    flex: 0 1 842px;
}

.uc-content--tab .selection-button .closed-text {
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: -.02rem;
    opacity: 1;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    transition: .2s cubic-bezier(.4,0,.2,1);
    transition-property: opacity;
}

.uc-content--tab .selection-button.active .closed-text {
    opacity: 0;
}

.uc-content--tab .selection-button .opened-text--wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 1.25rem;
    inset: 0;
    opacity: 0;
    position: absolute;
    transition-duration: 1ms;
    transition-delay: 0s;
    width: 100%;
}

.uc-content--tab .selection-button.active .opened-text--wrapper {
    opacity: 1;
    transition-duration: .3s;
    transition-delay: .3s;
}

.uc-content--tab .selection-button .opened-text--wrapper .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    row-gap: 2rem;
    padding-bottom: 2.5rem;
}

.uc-content--tab .selection-button .opened-text--wrapper .content-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 36px;
    max-width: 365px;
}

.uc-content--tab .selection-button .opened-text--wrapper .content-flex .image-icon {
    width: 40px;
    height: 40px;
}

.uc-content--tab .selection-button .opened-text--wrapper .content-flex .large-text {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -.03rem;
    margin: 0;
}

.uc-content--tab .selection-button .opened-text--wrapper .content-flex .body-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.uc-content--tab .selection-button .opened-text--wrapper .image-wrapper {
    width: 100%;
    max-width: 293px;
    max-height: unset;
    aspect-ratio: 293/492;
}

.uc-content--tab .selection-button .opened-text--wrapper .image-wrapper .image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}


/* Security */
.security-block {
    background-color: #fafafa;
    background-color: var(--color-background-dark);
    background-image: url(../img/dot-bg.svg);
    background-position: 50% 0;
    background-size: cover;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    justify-content: center;
    align-items: center;
    padding: 120px 0;
}

.security-block .content-wrap {
    width: 100%;
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.security-block .content-wrap .left-content {
    display: flex;
    flex-direction: column;
    grid-column-gap: 26px;
    grid-row-gap: 26px;
    align-items: flex-start;
    flex: 1;
}

.security-block .content-wrap .left-content .heading-tag {
    background-color: var(--color-background-dark);
    border-color: rgb(128 130 138 / 75%);
}

.security-block .content-wrap .left-content .heading-tag--inner {
    background: radial-gradient(128.38% 113.75% at 53.93% -13.75%, rgb(20 24 28) 0%, rgb(54 104 200 / 20%) 72%, rgb(57 57 57 / 20%) 94.5%), rgb(20 24 28);
    color: #bfbfc9;
}

.security-block .content-wrap .left-content .large-text {
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.04rem;
    margin: 0;
}

.security-block .content-wrap .left-content .body-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.security-block .content-wrap .right-content {
    flex: 1;
    justify-content: flex-end;
    display: flex;
}



/* Testimonials */
.testimonial-block {
    position: relative;
    padding: 64px 0 120px;
}

.testimonial-slider--block {
    padding: 80px 0 40px;
}

.testimonial-slider--content {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.testimonial-slider--content .company-logo {
    width: 128px;
    height: 32px;
}

.testimonial-slider--content .author-quote {
    color: var(--color-text-default);
    text-align: center;
    margin-top: 18px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.35;
}

.testimonial-slider--content .avatar-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 100px;
    align-self: center;
    margin-bottom: 12px;
}

.testimonial-slider--content .author-name {
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.testimonial-slider--content .author-pos {
    color: var(--color-text-body);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.testimonial-block--heading {
    margin-bottom: 1rem;
    color: #202f44;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    margin: 0 auto;
    margin-bottom: 32px;
    text-align: center;
}

.testimonial-items--container {
    position: relative;
    margin-top: 2rem;
}

.testimonial-items--wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-auto-flow: row;
    grid-auto-columns: 1fr;
    grid-template-areas: ".";
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
}

.testimonial-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid hsl(236deg 36% 90%);
    border-radius: 1rem;
    background-color: #fff;
}

.testimonial-card .rating-stars--wrapper {
    position: relative;
    margin-bottom: 20px;
    display: flex;
}

.testimonial-card .rating-stars {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.testimonial-card .testimonial-quote {
    font-size: 15px;
    line-height: 1.6;
    color: #5b5675;
    margin-bottom: 20px;
}

.testimonial-card .author-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial-card .author-image {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    border-radius: 100%;
}

.testimonial-card .author-details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.testimonial-card .author-name {
    font-size: 16px;
    line-height: 1.25rem;
}

.testimonial-card .author-jobtitle {
    font-size: 13px;
    line-height: 16px;
    color: #546175;
}

.testimonial-wrapper--fade {
    position: absolute;
    left: 0;
    top: auto;
    right: 0;
    bottom: 0;
    height: 16rem;
    background-image: -webkit-gradient(linear,left bottom,left top,from(var(--color-offwhite)),to(transparent));
    background-image: linear-gradient(0deg,var(--color-offwhite),transparent);
}


/* Card Section */
.blog-block, .blog-resources, .blog-resources--single {
    background-color: var(--color-background-secondary);
    position: relative;
    padding: 80px 0 64px;
}

.blog-relative--section {
    padding: 80px 0 48px;
}

.blog-resources, .blog-resources--single {
    padding-bottom: 48px;
}

.blog-header--section {
    padding: 24px 0 60px;
    text-align: center;
}

.blog-header--section .small-title {
    margin-top: 14px;
    margin-bottom: 10px;
    color: #0062ff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.blog-header--section .large-title {
    margin: 0 0 10px;
    color: #141125;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
}

.blog-relative--section .section-title {
    color: #202f44;
    font-size: 32px;
    line-height: 48px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 32px;
}

.blog-block .content-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 80px;
}

.blog-block .content-wrap .section-title {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-body);
    margin: 0;
}

.blog-block .content-wrap .content-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 7rem;
}

.blog-block .content-wrap .content-flex .large-text {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -.06rem;
    margin: 0;
    max-width: 600px;
}

.cards-section--copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 400px;
    margin-bottom: 77px;
}

.cards-section--copy h3 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.04rem;
    color: var(--color-text-default);
    margin-top: 18px;
    margin-bottom: 0;
    padding-right: 48px;
}

.cards-section--description {
    margin-bottom: 0;
}

.cards-section--copy p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-text-body);
    margin-bottom: 0;
}

.blog-featured--relative {
    position: relative;
    margin-bottom: 48px;
}

.blog-featured--image-wrapper {
    position: absolute;
    height: 100%;
    top: 0;
}

.blog-featured--image-wrapper .blog-featured--image {
    position: relative;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    height: 100%;
    z-index: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.blog-featured--content-wrapper {
    margin-top: 48px;
    margin-bottom: 48px;
    padding-top: 48px;
    padding-bottom: 48px;
    background: #fff;
}

.blog-featured--content-wrapper .blog-category--name, .blog-single--header-wrapper .blog-category--name {
    color: #0062ff;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 12px;
    text-decoration: none;
}

.blog-featured--content-wrapper .blog-featured--content {
    padding: 0 20px;
}

.blog-featured--content .blog-featured--link {
    display: block;
    font-size: 18px;
    line-height: 28px;
    text-decoration: none;
    color: inherit;
}

.blog-featured--content .blog-featured--header, .blog-single--header-wrapper .blog-single--header {
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    padding-top: 0;
    margin: 0 0 24px;
    letter-spacing: -0.015em;
    color: inherit;
}

.blog-featured--content .blog-featured--link:hover .blog-featured--header {
    text-decoration: underline;
}

.blog-featured--content .blog-featured--intro, .blog-single--header-wrapper .blog-single--intro {
    font-size: 20px;
    line-height: 1.5;
    margin: 6px 0;
    margin-bottom: 32px;
    overflow: hidden;
}

.blog-featured--content .blog-featured--intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}

.blog-featured--content .blog-featured--meta, .blog-single--header-wrapper .blog-single--meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 14px;
    margin: 6px 0;
    color: #615f73;
}

.blog-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.blog-resources .blog-card {
    margin-bottom: 32px;
}

.blog-card--thumbnail {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    padding-top: 52%;
}

.blog-card--thumbnail .blog-image {
    position: absolute;
    left: -.5%;
    top: -.5%;
    right: -.5%;
    bottom: -.5%;
    width: 101%;
    height: 101%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .3s ease-in;
}

.blog-card:hover .blog-card--thumbnail .blog-image {
    transform: scale3d(1.1, 1.1, 1.1);
}

.blog-card--text-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 24px 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.blog-card--header {
    margin-bottom: 18px;
}

.blog-card--title {
    color: var(--color-text-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -.03rem;
    margin: 0;
}

.blog-card--title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card--meta {
    font-size: 13.5px;
    color: var(--color-text-body);
    /* text-transform: uppercase; */
}

.blog-card--meta .dot-prefixed:before, .blog-featured--meta .dot-prefixed:before, .blog-single--meta .dot-prefixed:before {
    content: '\00B7';
    margin: 0 6px;
}

.blog-section--pagination {
    margin: 48px 0 24px;
}

.blog-section--pagination a {
    font-size: 18px;
    line-height: 28px;
}

.blog-section--pagination .pagination-button {
    text-decoration: none;
    color: #68737d;
    padding: 0 8px;
}

.blog-section--pagination .pagination-button:hover {
    color: #0043ec;
}

.blog-section--pagination .pagination-button.active {
    color: #0043ec;
    font-weight: 600;
}

.blog-section--pagination .pagination-icon {
    font-size: 13.5px;
    line-height: 13.5px;
}

.blog-single--image-wrapper {
    height: 500px;
}

.blog-single--image-wrapper .blog-single--image {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 100%;
}

.blog-single--content-wrapper {
    position: relative;
    background: #fff;
    margin-top: -78px;
    padding-top: 48px;
}

.blog-single--content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.blog-single--header-wrapper {
    padding: 0 24px;
}

.blog-single--header-wrapper .blog-single--intro {
    margin-bottom: 36px;
}

.blog-single--content .blog-content {
    padding: 48px 24px 0;
}

.blog-single--content .blog-content p {
    font-size: 17px;
}

.blog-single--content .blog-content .text-disclaimer {
    font-size: 13.5px;
    line-height: 23px;
}

.blog-single--content .blog-content a {
    color: #0062ff;
}

.blog-single--content .blog-content .video-wrapper {
    margin: 24px 0;
}

.blog-single--content-wrapper .social-links--wrapper {
    position: absolute;
    top: 6%;
    left: -10%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.blog-single--content-wrapper .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #202f44;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-bottom: 12px;
    overflow: hidden;
    pointer-events: all;
}

.blog-single--content-wrapper .social-link:hover {
    background-color: #0062ff;
}


/* CTA Block */
.cta-block {
    padding: 80px 0;
}

.cta-block--content {
    background-image: url(../img/line-background.png);
    background-position: -240px 0px;
    background-size: 1480px;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-background-tertiary);
    border-radius: 12px;
    padding: 4rem 2rem;
    width: 100%;
    overflow: hidden;
}

.cta-block .cta-title {
    position: relative;
    color: var(--color-text-white);
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.cta-block--description {
    position: relative;
    text-align: center;
    z-index: 1;
    margin: 14px auto 42px;
    width: 600px;
}

.cta-block--description.full-width {
    width: auto;
}

.cta-block--description p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-text-white);
    margin-bottom: 0;
}

.cta-block--links {
    margin-bottom: 16px;
    text-align: left;
}

.cta-block--links .cta-btn:first-child {
    margin-right: 16px;
}


/* About */
.our-mission--section, .career-section {
    padding: 120px 0 48px;
}

.our-mission--section .section-content, .career-section .content-wrap {
    text-align: center;
}

.our-mission--section .small-title, .career-section .content-wrap .small-title {
    color: #0045ff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
    white-space: nowrap;
}

.our-mission--section h2, .career-section .content-wrap .large-title {
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 24px;
}

.our-mission--section .body-text, .career-section .content-wrap .body-text {
    color: #546175;
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 16px;
}

.about-us--content {
    padding-top: 48px;
    padding-bottom: 24px;
}

.about-us--content h3 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 26px;
}

.about-us--quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.about-us--quote .quote-icon--wrapper {
    box-sizing: content-box;
    max-width: 100%;
    width: 184px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-us--quote .quote-icon {
    background-color: #bad5ff;
    height: 75px;
    width: 75px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-us--quote .quote-text--wrapper {
    margin: 30px 0;
}

.about-us--quote .quote-text {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: inherit;
    margin-top: 0;
    margin-bottom: 24px;
}

.about-us--quote .quote-author {
    color: #636d77;
    font-size: 11px;
    font-weight: 600;
    line-height: 15px;
    text-transform: uppercase;
}


/* Our Values */
.our-values {
    position: relative;
    padding: 96px 0 120px;
}

.our-values .content-wrap {
    text-align: center;
}

.our-values .content-wrap .small-title {
    color: #0045ff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    white-space: nowrap;
}

.our-values .content-wrap .large-title {
    position: relative;
    color: #202f44;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 12px;
}

.our-values .content-wrap .body-text {
    color: #546175;
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 16px;
}

.our-values--grid {
    display: -ms-grid;
    display: grid;
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
    grid-auto-columns: 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 48px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.our-values--grid-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
}

.our-values--grid-item.column {
    flex-direction: column;
}

.our-values--grid-icon {
    max-height: 50px;
    max-width: 50px;
    margin-right: 16px;
}

.our-values--grid-item.column .our-values--grid-icon {
    margin-right: 0;
    margin-bottom: 16px;
}


/* Career */
.career-section .content-wrap .large-title {
    margin-top: 32px;
}

.career-image--thumbnail {
    padding: 64px 0;
}


/* Callout */
.callout-section {
    padding: 24px 0 64px;
}

.callout-card {
    position: relative;
    background: #1a2b3b;
    background-size: cover;
    border-radius: 12px;
    height: 100%;
    color: #fff;
    overflow: hidden;
}

.callout-card .callout-card--content-wrapper {
    padding-top: 96px;
    padding-bottom: 96px;
}

.callout-card .callout-card--content {
    padding-right: 32px;
}

.callout-card--content .callout-message {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
}

.callout-video--action {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    padding: 12px 24px;
    padding-left: 0;
    margin: 12px 12px 12px 0;
    margin-top: 24px;
    transition: all .2s ease-in-out, margin-top 0ms;
    text-decoration: none;
    vertical-align: middle;
}

.callout-video--action .video-play--icon-normal {
    display: block;
    margin-right: 12px;
}

.callout-video--action .video-play--icon-white-hover {
    display: none;
    margin-right: 12px;
}

.callout-video--action:hover {
    color: #fff;
}

.callout-video--action:hover .video-play--icon-normal {
    display: none;
}

.callout-video--action:hover .video-play--icon-white-hover {
    display: block;
}

.callout-card .callout-quote--image-wrapper {
    position: absolute;
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    right: 0;
}

.callout-card .callout-quote--image {
    height: 100%;
    width: auto;
}

.callout-card .callout-quote--image img {
    height: 100%;
    width: auto;
    object-fit: cover;
}


/* Benefits */
.benefits-section {
    padding: 80px 0 96px;
}

.benefits-section .content-wrap {
    text-align: left;
}

.benefits-section .content-wrap .large-title, .jobs-listing .content-wrap .large-title {
    font-size: 36px;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 12px;
}

.benefits-section .content-wrap .body-text, .jobs-listing .content-wrap .body-text {
    color: #546175;
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 24px;
}

.benefits-grid {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 48px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    margin: auto;
}

.benefits-grid .benefits-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefits-grid .benefits-item .benefits-icon {
    margin: 0;
    max-width: 100%;
    width: 40px;
    height: 40px;
}

.benefits-grid .benefits-item .benefits-text--large {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #202f44;
}

.benefits-grid .benefits-item .benefits-text--small {
    line-height: 1.55;
    margin: 0;
    padding-top: 0;
}


/* Job Listing */
.jobs-listing {
    padding: 48px 0 80px;
}

.jobs-listing table, .jobs-listing tbody, .jobs-listing td, .jobs-listing th, .jobs-listing tr {
    display: revert;
    border: 0;
}

.jobs-listing td, .jobs-listing th {
    padding: 1em 0;
}

.jobs-listing td {
    vertical-align: middle;
    border-bottom: 1px solid #d6d7d5;
}

.jobs-listing h4, .jobs-listing p {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
}

.jobs-listing h4 {
    font-weight: 600;
}

.jobs-listing .jobs-listing--job a {
    color: inherit;
    /* color: #0045ff; */
}



/* Product Pricing */
.product-pricing {
    padding: 80px 0;
}   

.product-pricing .content-wrap {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem 2rem;
}

.product-pricing .content-wrap .content-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-pricing .content-wrap .large-title {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}

.product-pricing .content-wrap .body-text {
    color: var(--color-text-body);
    font-size: 16px;
    line-height: 1.65;
    padding: 0;
    margin: 0;
}

.product-pricing .content-wrap .checklist-grid {
    display: grid;
    overflow: visible;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0;
}

.product-pricing .content-wrap .checklist-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0;
    padding: 0;
    position: relative;
}

.product-pricing .content-wrap .btn-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.product-pricing .content-wrap .credit-note {
    color: #1d4c50;
    background-color: rgba(234, 245, 194, .59);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-bottom: 0;
    padding: 12px;
    font-size: 14.5px;
    display: flex;
}

.product-pricing .content-wrap .credit-coin--icon {
    opacity: 1;
    color: #90af64;
    justify-content: center;
    align-items: center;
    width: 23px;
    height: 23px;
    margin-top: -1px;
    margin-right: 10px;
    display: flex;
}

.pricing-card {
    background-color: var(--color-background-tertiary);
    border: 1px solid rgb(32 47 68);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 1.5rem;
}

.pricing-card.popular {
    background-color: #fff;
    border-color: #b0b0b0;
}

.pricing-card--content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-category {
    color: var(--color-primary);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
    margin: 0;
}

.pricing-text {
    color: var(--color-text-body);
    font-size: 16px;
    font-weight: 400;
}

.pricing-card.popular .pricing-text {
    color: #a8ed8d;
}

.pricing-price--wrap {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pricing-price {
    color: #ecedfe;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.pricing-price.currency {
    font-size: 24px;
}

.pricing-card.popular .pricing-price {
    color: #a8ed8d;
}

.pricing-cta--button {
    background-color: var(--color-background-secondary);
    border: 1px solid rgb(32 47 68);
    border-radius: .5rem;
    color: var(--color-primary);
    display: flex;
    font-weight: 500;
    line-height: 1;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
}

.pricing-cta--button:hover, .pricing-cta--button:focus {
    color: inherit;
    background-color: #0e161f;
    border: 1px solid rgb(22 32 45);
}

.pricing-card.popular .pricing-cta--button {
    background-color: #a8ed8d;
    border-color: #8bc773;
    color: var(--color-text-secondary);
}

.pricing-plan--des {
    color: var(--color-text-default);
    font-size: 15px;
    line-height: 1.6;
}

.pricing-card .features-category {
    border-top: 1px solid rgb(32 47 68);
    padding-top: 20px;
}

.pricing-card.popular .features-category {
    border-color: rgb(68 76 42);
}

.pricing-card .features-header {
    color: var(--color-text-default);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
}

.pricing-card .features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0;
    padding: 0.5rem 0;
    transition: background-color .25s;
    position: relative;
}

.pricing-card .features-list li svg {
    min-width: 0.75em;
    width: 0.75em;
    height: 1em;
}



/* Pricing Calculator */
.pricing-calculator {
    padding: 64px 0 80px;

}

.pricing-calculator--wrapper {
    display: flex;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.06);
    border-color: transparent;
    background: var(--color-background-tertiary);
    margin: 0 auto;
    min-height: 500px;
}

.pricing-calculator--left {
    padding: 50px 3%;
    width: 60%;
}

.pricing-calculator .heading-text {
    position: relative;
    color: var(--color-primary);
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 12px;
    z-index: 1;
}

.pricing-calculator .body-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-body);
    margin-bottom: 24px;
}

.pricing-calculator .form-block {
    margin-top: 32px;
}

.pricing-calculator .form-block label {
    color: var(--color-text-body);
    font-size: 14px;
}

.pricing-calculator .form-block .text-field {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-body);
    background-color: var(--color-background-secondary);
    border: 1px solid var(--border-color);
    text-transform: none;
    border-radius: 8px;
    display: block;
    padding: 12px 15px 12px;
    text-align: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-appearance: none;
    cursor: text;
    outline: 0;
    width: 100%;
}

.pricing-calculator--right {
    background: var(--color-background-secondary);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 50px 3%;
    text-align: center;
    width: 40%;
}

.pricing-calculator--content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pricing-calculator .calculator-price {
    color: var(--color-text-body);
}

.pricing-calculator .c-value, .pricing-calculator .c-currency {
    color: var(--color-offwhite);
    font-size: 42px;
    font-weight: 600;
    margin-top: 5px;
}

.pricing-calculator .c-currency {
    font-size: 24px;
}

.pricing-calculator .tag-wrapper {
    background: linear-gradient(117.15deg, rgba(163, 43, 123, 0.1) -7.16%, rgba(233, 64, 87, 0.1) 56.41%, rgba(242, 113, 33, 0.1) 119.98%);
    border-radius: 4px;
    display: inline-block;
}

.pricing-calculator .tag {
    background: linear-gradient(117.15deg, #A32B7B -7.16%, #E94057 56.41%, #F27121 119.98%);
    border-radius: 4px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1em;
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-calculator .disclaimer {
    color: var(--color-text-body);
    font-size: 12px;
    line-height: 1.65;
    text-align: left;
    display: block;
    margin-top: 32px;
    margin-bottom: 0;
}


/* FAQ */
.faq-section {
    position: relative;
    padding: 80px 0 80px;
}

.faq-section .section-copy {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 56px;
}

.faq-section .section-copy h3 {
    position: relative;
    color: var(--color-text-default);
    margin-top: 0;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
    z-index: 1;
}

.faq-section .section-copy p {
    color: #fafaf8;
    font-size: 20px;
    line-height: 28px;
}

.faq-wrapper {
    background-color: var(--color-background-tertiary);
    border-radius: 24px;
    padding: 72px 74px;
}

.faq-wrapper .faq-content {
    margin: 0;
}

.faq-wrapper .accordion {
    margin-bottom: 0;
}

.faq-wrapper .faq-question--wrap {
    cursor: pointer;
    background-color: transparent;
    margin-bottom: 0;
    padding: 32px 0;
}

.accordion-title a {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0;
}

.accordion-active-color-primary .active .accordion-title a {
    color: var(--color-primary);
}

.accordion-body-underlined .accordion-item {
    border-bottom: 1px solid #202f44;
}

.faq-circle {
    width: 48px;
    height: 48px;
    background-color: #182534;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.accordion-expander {
    font-size: 16px;
    right: 0;
}

.accordion-content {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 50px;
}

.accordion-content > :last-child, .accordion-content > :only-child {
    color: var(--color-text-body);
    font-size: 17px;
    margin-bottom: 0;
}

.faq-link, .faq-link:hover, .faq-link:focus {
    color: #46e3b7;
}


/* Contact */
.contact-section {
    padding: 150px 0 80px;
}

.contact-section .content-wrap {
    max-width: 400px;
}

.contact-section .content-wrap .small-title {
    color: #0045ff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-section .content-wrap .large-title {
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 24px;
}

.contact-section .content-wrap .body-text {
    color: #546175;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.content-link--card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 104px;
    padding: 32px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    color: #fff;
}

.contact-cta--title {
    color: #97a3b2;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.contact-text--primary {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 0;
}

.content-link--card .link-arrow {
    margin-left: 8px;
}

.contact-lower--content {
    width: 400px;
    border-top: 1px solid #c3c4d6;
    margin-top: 40px;
    padding-top: 40px;
}

.contact-lower--content h3 {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 0;
    max-width: 400px;
}

.contact-lower--logos {
    margin: 45px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.contact-lower--logo {
    width: 33.3%;
    max-width: 150px;
}

.contact-lower--logo img {
    width: 100%;
    min-width: 105px;
    max-width: 130px;
}

.contact-form--card {
    background-color: #fff;
    padding: 40px 40px;
    max-width: 500px;
}

.contact-title--wrapper {
    margin-bottom: 40px;
}

.contact-title--wrapper .contact-title {
    margin-top: 0;
    margin-bottom: 10px;
    color: #202f44;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}

.contact-title--wrapper .body-text {
    color: #4d545a;
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 0;
}

.form-block .label-wrap {
    margin-bottom: 16px;
}

.form-block label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
}

.form-block .text-field {
    font-size: 14px;
    line-height: 1.5;
    min-height: 50px;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 24px;
    border: 1px solid #d0d6e6;
    border-radius: 500px;
    background-color: #fff;
    color: #8c87a6;
    letter-spacing: 0;
}

.form-block .text-field-large {
    min-height: 150px;
    margin-bottom: 0;
    padding-top: 16px;
    padding-right: 24px;
    padding-left: 24px;
    border: 1px solid #d0d6e6;
    border-radius: 16px !important;
    background-color: #fff;
}


/* Favorite Tools */
.fav-tools {
    background-color: #fff;
    padding: 80px 0;
}

.fav-tools .content-wrap {
    max-width: 100%;
    width: 100%;
    margin-bottom: 48px;
}

.fav-tools .content-wrap .content-body {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 0;
}

.fav-tools .content-wrap .large-text {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 500px;
    margin: 0;
}

.fav-tools .content-wrap .large-text {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 500px;
    margin: 0;
}

.fav-tools .content-wrap .small-text {
    color: inherit;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    flex: 1 1 0;
    max-width: 28rem;
    width: 100%;
}

.fav-tools .list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.fav-tools .list-grid .list-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fav-tools .list-grid .list-item .image-icon {
    width: 24px;
    height: 24px;
}

.fav-tools .list-grid .list-item .list-text {
    color: rgb(112, 112, 112);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.fav-tools .list-grid .list-item .list-text span {
    color: rgb(55, 53, 47);
    font-weight: 500;
}



/* Pre-footer CTA */
.pre-footer-cta {
    background-color: #1d3d3d;
    padding: 80px 0 10px;
}

.pre-footer-cta .pre-content--wrap {
    display: flex;
    gap: 80px;
    justify-content: space-between;
}

.pre-footer-cta .content-wrap {
    display: flex;
    flex-direction: column;
    /* flex: 1 1 0; */
    flex-wrap: nowrap;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
    height: 500px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.pre-footer-cta .content-wrap .image-bg--wrapper {
    position: absolute;
    border-radius: inherit;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.pre-footer-cta .content-wrap .image-bg--wrapper .image-bg {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center;
    object-fit: cover;
}

.pre-footer-cta .content-wrap .main-content--block {
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
    height: min-content;
    justify-content: flex-start;
    max-width: 550px;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
}

.pre-footer-cta .content-wrap .main-content--block .large-text {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.64px;
    text-align: left;
    margin: 0;
}

.pre-footer-cta .content-wrap .main-content--block .form-block {
    align-items: flex-start;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0px;
    height: min-content;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}

.pre-footer-cta .content-wrap .main-content--block .form-block .input-wrapper {
    background-color: #fff;
    height: 72px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pre-footer-cta .content-wrap .main-content--block .form-block .input-field {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 24px 24px;
    white-space: nowrap;
    width: 100%;
    height: 100%;
}

.pre-footer-cta .content-wrap .main-content--block .form-block .submit-btn--wrapper {
    flex: none;
    height: 72px;
    position: relative;
    width: 100%;
}

.pre-footer-cta .content-wrap .main-content--block .form-block .submit-btn {
    background-color: #1c4942;
    background-color: #212121;
    border: none;
    color: #fff;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 0px;
    height: 100%;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
}

.pre-footer-cta .content-wrap .main-content--block .form-block .form-message {
    background-color: transparent;
    border-radius: 4px;
    color: #ebe8fe;;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.6;
    padding: 0.5em 0;
}

.pre-footer-cta .content-wrap .disclaimer-text--wrapper {
    align-content: start;
    align-items: flex-start;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0px;
    height: min-content;
    justify-content: flex-start;
    max-width: 550px;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
}

.pre-footer-cta .content-wrap .disclaimer-text {
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    text-align: left;
}

.pre-footer-cta .content-wrap .disclaimer-text .text-link {
    color: #d898ff;
}

.pre-footer-cta .v-scrolling--wrapper {
    grid-row-gap: 2rem;
    flex-direction: column;
    justify-content: space-between;
    width: 38rem;
    height: 28rem;
    display: flex;
    position: relative;
    overflow: hidden;
}

.pre-footer-cta .v-scrolling--wrapper .upper-grad {
    z-index: 1;
    background-image: linear-gradient(180deg, #1d3d3d, rgba(36 88 23 / 0%) 60%, #1d3d3d);
    /* height: 50%; */
    position: absolute;
    inset: 0%;
}

.pre-footer-cta .v-scrolling--wrapper .bottom-grad {
    z-index: 1;
    background-image: linear-gradient(0deg, #1d3d3d, rgb(36 88 23 / 0%) 60%, #1d3d3d);
    /* height: 50%; */
    position: absolute;
    inset: auto 0% 0%;
}

.pre-footer-cta .v-scrolling--wrapper .v-marquee {
    grid-row-gap: 2rem;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    animation: scroll-vertical 10s linear infinite;
    text-align: right;
}

@keyframes scroll-vertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-100% - 2rem));
    }
}

.pre-footer-cta .v-scrolling--wrapper .v-scrolling--text {
    color: #d898ff;
    letter-spacing: -.01em;
    font-size: 2.25rem;
    line-height: 1;
    margin: 0;
}


/* Footer */
.footer {
    background-color: #1a1a1a;
    background-color: #1d3d3d;
    position: relative;
    padding: 24px 0 64px;
}

.footer .content-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 38px;
    row-gap: 3rem;
}

.footer .content-wrap .left-content {
    flex: 0 1 450px;
}

.footer .content-wrap .left-content .large-text {
    font-size: 34px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.09rem;
    margin-top: 0;
    margin-bottom: 16px;
}

.footer .content-wrap .left-content .body-text {
    color: var(--color-text-default);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.footer .content-wrap .left-content .cta-link {
    margin-top: 1.5rem;
}

.footer .content-wrap .footer-menu {
    display: grid;
    grid-auto-columns: 1fr;
    gap: 3.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
}

.footer .content-wrap .footer-menu--list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-items: start;
}

.footer .content-wrap .footer-menu--links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer .content-wrap .footer-menu--header {
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.footer .content-wrap .footer-menu--link {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.footer .footer-social--links {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    gap: 0 32px;
}

.footer a:not(.btn) {
    font-size: 14px;
    color: #b5b5b5;
    display: inline-block;
}

.footer a:not(.btn):hover {
    color: #fff;
}

.footer .the__button {
    color: #fff !important;
}

.footer .footer-social--links a {
    font-size: 13px;
}

.footer-contact--text {
    font-size: 15px;
    line-height: 24px;
    margin-top: 30px;
    max-width: 400px;
}

.footer-social--icon--wrapper {
    margin-top: 24px;
}

.footer .widget-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-body);
    margin-bottom: 24px;
    margin-top: 0;
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding-top: 2rem;
}

.footer-bottom p {
    color: #546175;
}

.footer-bottom .social-icon a, .footer-contact--wrapper .social-icon a {
    font-size: 16px !important;
}

.footer-bottom .footer-nav--links a {
    color: var(--color-text-body);
}

.footer-bottom .copyright-text {
    color: #b5b5b5;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75em;
    margin: 0;
}


/* Theme Switch */
.dark-mode--switch-container {
    width: 100%;
    position: fixed;
    bottom: 30px;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.dark-mode--switch-inner {
    padding-left: 70px;
}

.dark-mode--switch {
    cursor: pointer;
    width: 42px;
    height: 42px;
    background: #202f44;
    border-radius: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 3s ease-out;
}

.dark-mode--switch svg {
    transition: all 1s ease;
}

.dark-mode--switch svg>path {
    fill: #fff;
}

.dark-mode--switch:hover {
    transform: scale3d(1.2,1.2,1.2);
    background: #202f44;
}

.dark-mode--switch:hover svg {
    -webkit-animation: buttonRotate 6s;
    animation: buttonRotate 6s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.dark-mode--switch:hover svg>path {
    fill: #fff;
}

@-webkit-keyframes buttonRotate {
    0% {
        transform: rotate(0deg)
    }

    5% {
        transform: rotate(0deg)
    }

    30% {
        transform: rotate(-25deg) translateY(4px)
    }

    60% {
        transform: rotate(60deg) translateY(-2px)
    }
}

@keyframes buttonRotate {
    0% {
        transform: rotate(0deg)
    }

    5% {
        transform: rotate(0deg)
    }

    30% {
        transform: rotate(-25deg) translateY(4px)
    }

    60% {
        transform: rotate(60deg) translateY(-2px)
    }
}

.theme-dark .dark-mode-switch {
    background: #fff;
}

.theme-dark .dark-mode-switch svg>path {
    fill: #202f44;
}

.dark-mode-overlay {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease-in-out
}


/* Media Query */
@media (max-width: 767px) {
    .mobile-nav-activated [data-mobile-nav-style=modern] #wrap {
        background-color: var(--color-background-tertiary);
    }
    [data-mobile-nav-style=modern]:before {
        background-color: var(--color-background-tertiary);
        background-image: none;
    }
    [data-mobile-nav-style=modern] .navbar-collapse-clone {
        top: 6vh;
    }
    [data-mobile-nav-style=modern] .navbar-collapse-clone ul > li > a {
        padding: 1rem 0;
        margin-left: 0;
        border-radius: 0;
    }
    [data-mobile-nav-style=modern] .navbar-collapse-clone ul > li:first-child > a {
        padding-top: 0;
    }
    [data-mobile-nav-style=modern] .navbar-collapse-clone ul > li:last-child > a {
        padding-bottom: 0;
    }
    [data-mobile-nav-style=modern] .navbar-collapse-clone ul > li > a:hover, [data-mobile-nav-style=modern] .navbar-collapse-clone ul > li > a:focus {
        background-color: transparent;
    }
    .hero-copy--wrap {
        flex-direction: column;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .hero-copy {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    .hero-copy h1 {
        font-size: 36px;
    }
    .hero-demo {
        background-size: contain;
        border-radius: 8px;
        height: 220px;
        width: 100%;
        margin-top: 2rem;
    }
    .hero-demo--wrapper .video-playback {
        width: 64px;
        height: 64px;
        left: 42%;
    }
    .hero-image--wrapper {
        display: none;
    }
    .more-block .more-block--title, .document-slider--section .section-title, .uc-block .section-title, .product-pricing .content-wrap .large-title, .cta-block .cta-title {
        font-size: 32px;
    }
    .features-grid {
        display: block;
    }
    .features-grid--list {
        display: block;
        margin-bottom: 8px;
    }
    .features-copy h3 {
        font-size: 32px;
    }
    .features-copy p {
        margin-bottom: 40px;
    }
    .features-block .content-wrap .large-text, .data-block .content-wrap .large-title , .uf-block .content-wrap .large-text, .fav-tools .content-wrap .large-text {
        font-size: 36px;
    }
    .features-card--horizontal .text-wrapper .body-text {
        font-size: 16px;
        margin-top: 0;
    }
    .more-features--layout, .hero-check--wrapper, .why-list, .uc-card--grid, .features-card--grid, .uf-block .uf-grid, .uf-block .content-wrap .content-body, .pre-footer-cta .pre-content--wrap, .footer .footer-social--links, .data-block .content-wrap .text-wrapper, .data-block .data-grid, .features-block .content-wrap .text-wrapper, .fav-tools .content-wrap .content-body, .fav-tools .list-grid, .features-block .accordion-block {
        display: flex;
        flex-direction: column;
    }
    .features-block .accordion-content p {
        font-size: 1.2rem;
    }
    .features-block .accordion-content .image-wrapper {
        position: relative;
        margin: 0;
        height: 480px;
        min-height: 300px;
        overflow: hidden;
        border-radius: 12px;
        margin-top: 20px;
    }
    .features-block .accordion-content .image-wrapper.wider-chat--wrapper {
        height: 740px;
        min-height: 400px;
    }
    .features-block .accordion-content .image-wrapper .image {
        width: 100%;
    }
    .pre-footer-cta .content-wrap {
        height: auto;
    }
    .pre-footer-cta .v-scrolling--wrapper {
        display: none;
    }
    .more-features--card.x2 {
        padding: 30px 20px 0;
    }
    .more-features--card .text-block {
        padding: 0 20px;
    }
    .more-features--card.x2 .text-block {
        margin-right: 0;
    }
    .more-features--card .text-block .heading-text {
        line-height: 1.5;
    }
    .features-block .accordion-content .chat-ui-wrapper {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        pointer-events: none;
        padding: 15px 15px;
    }
    .features-block .accordion-content .chat-ui-wrapper.wider-chat {
        width: 100%;
    }
    .uf-block, .data-block {
        padding-top: 64px;
    }
    .pricing-card {
        margin-bottom: 36px;
    }
    .cta-block--content {
        padding: 3rem 1.5rem;
    }
    .cta-block--description p {
        font-size: 16px;
    }
    .footer .footer-contact--wrapper {
        margin-bottom: 40px;
    }
    .footer .footer-nav--links {
        display: flex;
        flex-wrap: wrap;
        column-gap: 2rem;
        row-gap: 1rem;
    }
    .footer .flex-row {
        flex-direction: column !important;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .footer-bottom .copyright-text {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 1023px) {
    
}

@media only screen and (min-width: 768px)and (max-width:1439px) {
    
}
