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

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

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

@font-face {
	font-family: 'Axiforma';
	src: url('../fonts/Axiforma-Light.woff') format("woff"), url('../fonts/Axiforma-Light.woff2') format("woff2");
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'Axiforma';
	src: url('../fonts/Axiforma-Book.woff') format("woff"), url('../fonts/Axiforma-Book.woff2') format("woff2");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Axiforma';
	src: url('../fonts/Axiforma-Regular.woff') format("woff"), url('../fonts/Axiforma-Regular.woff2') format("woff2");
	font-weight: 400;
	font-style: normal;
}

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

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

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

@font-face {
	font-family: 'SFMono';
	src: url('../fonts/SFMono-Regular.woff2') format("woff2");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'CallingCode';
	src: url('../fonts/CallingCode-Regular.woff') format("woff"), url('../fonts/CallingCode-Regular.woff2') format("woff2");
	font-weight: 400;
	font-style: normal;
}


/* General */
:root {
    --font: 'Manrope', sans-serif;
    --border-color: #232946;
    --color-primary: #fff;
    --color-secondary: #F27121;
    --color-tertiary: #E94057;
    --color-offwhite: #ecedfe;
    --color-text-default: #fff;
    --color-text-body: #a9b3c2;
    --color-text-primary: #202f44;
    --color-text-secondary: #111b26;
    --color-background: #020314;
    --color-background-secondary: #14182a;
    --color-background-tertiary: #060718;
    --trans-300: all 300ms ease;
    --trans-600: all 600ms ease;
    --trans-900: all 900ms ease;
    --trans-1200: all 1200ms ease;
}

body {
    font-family: 'Manrope', sans-serif;
    text-rendering: optimizeLegibility;
    color: #222;
    font-size: 16px;
    line-height: 1.9em;
    background: var(--color-background);
    background: #0e161e;
    background: #0b1218;
}

#content {
    background-color: #0e161e;
    background-color: #0b1218;
}

.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: 'Manrope', sans-serif;
    font-size: 16px;
}

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

.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: 1280px;
    width: 100%;
    margin: 0 auto;
}

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

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

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

.divider-light {
    border-color: #dee1e6;
}

.gradient-text {
    background: linear-gradient(117.15deg, #A32B7B -7.16%, #E94057 56.41%, #F27121 119.98%);
    background: linear-gradient(to right, #e5605c, #ffcc8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

hr {
    border-color: rgb(38 41 57);
    margin-top: 40px;
    margin-bottom: 40px;
}

a.text-underline:hover, a.text-underline:focus {
    color: var(--color-tertiary);
}


/* Text Colors */ 
.text-color-amber-500 {
    color: #e5b15a
}

.text-color-teal-500 {
    color: #0eb3a0
}

.text-color-cyan-400 {
    color: #7bdae8;
}

.text-color-sky-500 {
    color: #079de0;
    font-style: normal
}

.text-color-red-500 {
    color: #e23b3b
}

.text-color-pink-500 {
    color: #f86caa
}

.text-color-violet-300 {
    color: #c0b3f3
}

.text-color-indigo-300 {
    color: #8f9ee7
}

.text-color-sky-300 {
    color: #73cbf5
}

.text-color-teal-300 {
    color: #29a89b
}

.text-color-violet-500 {
    color: #8d62ee
}

.text-color-red-400 {
    color: #e27979
}

.text-color-yellow-300 {
    color: #c3bd8f
}


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

.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: 500;
    /* font-family: 'Manrope', sans-serif; */
    letter-spacing: 0;
}

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


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

.is-stuck {
    background-color: var(--color-background-tertiary);
    background-color: #0e161e;
    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: #fff !important;
}

.megamenu .megamenu-container .container {
    max-width: 1140px;
}

.megamenu .grid-menu--wrapper h4, .megamenu-description h4, .megamenu-row--wrapper h4, .megamenu-right--links h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
}

.megamenu .grid-menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 24px;
    row-gap: 12px;
    padding: 30px 0 30px;
}

.megamenu .megamenu-inner-row {
    background-color: var(--color-background-tertiary);
    padding: 0 35px;
}

.megamenu .lqd-custom-menu li {
    margin-bottom: 0;
}

.mega-link {
    margin-left: -0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: transparent;
    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: var(--color-background-secondary);
}

.mega-link.text:hover {
    background-color: rgb(222 139 65 / 8%);
}

.mega-link.document:hover {
    background-color: rgb(169 103 228 / 8%);
}

.mega-link.image:hover {
    background-color: rgb(56 215 149 / 8%);
}

.mega-link .text-icon--wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.mega-link .text-icon--wrapper .image-icon, .megamenu-row--lists li a .image-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 3px;
}

.mega-link .text-icon--wrapper .link-name, .megamenu-row--lists li a .link-name {
    color: var(--color-text-default);
    margin-left: 0;
    font-size: 16px;
    line-height: 1.25rem;
    font-weight: 500;
    /* background: linear-gradient(117.15deg, #A32B7B -7.16%, #E94057 56.41%, #F27121 119.98%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.mega-link .link-description, .megamenu-row--lists li a .link-description {
    font-size: 13px;
    line-height: 1.65;
    display: block;
    color: #aab6c9;
    margin-top: 8px;
}

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

.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-family: 'Manrope', sans-serif;
    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;
}

.megamenu-link--flex {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
}

.megamenu-description {
    display: inline-block;
    padding: 35px 0 0;
    width: 250px;
    min-width: 250px;
}

.megamenu-row--wrapper, .megamenu-post--wrapper {
    display: inline-block;
    padding: 35px 0 30px;
    width: 100%;
}

.megamenu-post--wrapper, .megamenu-right--links {
    border-left: 1px solid var(--border-color);
    padding-left: 1.5rem;
}

.megamenu-right--links .content-wrapper {
    padding: 35px 0 30px;
}

.megamenu-row--lists {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-top: 1.5rem;
}

.megamenu-row--lists li {
    font-size: 15px;
    display: block;
    padding-bottom: 12px;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}

.megamenu-row--lists li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.megamenu-row--lists li a, .megamenu-description a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.megamenu-description a {
    padding-top: 24px;
}

.megamenu-row--lists li a .image-icon {
    margin-top: 0;
}

.megamenu-row--lists li a .link-name, .megamenu-description a .link-name {
    color: var(--color-text-default);
    font-size: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.megamenu-description a .link-name {
    color: #e84057;
}

.megamenu-row--lists li a .link-name svg, .megamenu-description a .link-name svg {
    display: inline-block;
    pointer-events: none;
    -webkit-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    transform: translateX(-8px);
    opacity: 0;
    -webkit-transition: opacity 250ms ease,-webkit-transform 250ms ease;
    transition: opacity 250ms ease,-webkit-transform 250ms ease;
    -o-transition: opacity 250ms ease,transform 250ms ease;
    transition: opacity 250ms ease,transform 250ms ease;
    transition: opacity 250ms ease,transform 250ms ease,-webkit-transform 250ms ease;
}

.megamenu-row--lists li a:hover .link-name, .megamenu-row--lists li a:focus .link-name {
    color: #e84057;
}

.megamenu-row--lists li a:hover .link-name svg, .megamenu-row--lists li a:focus .link-name svg, .megamenu-description a:hover .link-name svg, .megamenu-description a:focus .link-name svg {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
}

.megamenu-description p, .megamenu-right--links p {
    color: var(--color-text-default);
    font-size: 14px;
    line-height: 1.65;
    margin-top: 16px;
    margin-bottom: 0;
}

.navbar-brand {
    outline: 0;
}

.header-module .btn-text {
    color: var(--color-text-body);
    font-size: 14px;
    font-weight: 500;
    /* font-family: 'Manrope', sans-serif; */
    letter-spacing: 0;
}

.nav-item-children {
    background-color: var(--color-background-secondary);
    padding: .75em .75em;
}

.nav-item-children > li > a {
    padding: .8em 1em;
    border-radius: 5px;
    color: #fff;
}

.nav-item-children > li:hover > a { 
    background-color: #0c121f; 
    color: #fff;
}



/* Hero */
.hero-section {
    position: relative;
}

.hero-particles {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-section .top-bg--gradient {
    background-image: radial-gradient(80% 50% at 50% -20%,rgba(94,176,239,.5),hsla(0,0%,100%,0));
    inset: 0;
    z-index: 0;
    position: absolute;
}

.hero-section .stroke-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    stroke: hsla(0,0%,100%,.05);
    -webkit-mask-image: radial-gradient(75% 50% at top center,#fff,transparent);
    mask-image: radial-gradient(75% 50% at top center,#fff,transparent);
    z-index: 0;
}

.hero-section .blending-group-wrapper {
    z-index: 1;
    filter: blur(120px);
    mix-blend-mode: normal;
    position: absolute;
}

.hero-section .blending-group-wrapper .shape-1 {
    width: 40em;
    height: 40em;
    opacity: .06;
    background-color: #a0bce0;
    border-radius: 999em;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -24.7em;
    left: 0;
    right: 0;
}

.hero-section .blending-group-wrapper .shape-2 {
    width: 43em;
    height: 40em;
    opacity: .38;
    background-color: #3448bb;
    border-radius: 999em;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -20em;
    left: -27.4em;
    right: 0;
}

.hero-section .blending-group-wrapper .shape-3 {
    width: 53em;
    height: 100em;
    opacity: .2;
    background-color: #1d4394;
    border-radius: 999em;
    position: absolute;
    top: -19.8em;
    left: -26em;
    right: 0;
    transform: rotate(-28deg);
}

.hero-section .blending-group-wrapper .shape-4 {
    width: 65em;
    height: 40em;
    opacity: .17;
    background-color: #7d6744;
    border-radius: 999em;
    margin-left: auto;
    position: absolute;
    top: -11.3em;
    left: 0;
    transform: rotate(40deg);
}

.hero-section .blending-group-wrapper .shape-5 {
    width: 30em;
    height: 30em;
    opacity: .2;
    background-color: #71351f;
    border-radius: 999em;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -21.7em;
    left: 0;
    right: 0;
}

.hero-section .blending-group-wrapper .shape-6 {
    width: 66em;
    height: 60em;
    opacity: .2;
    background-color: #384d68;
    border-radius: 999em;
    margin-left: auto;
    position: absolute;
    top: -14.2em;
    right: -25em;
    transform: rotate(60deg);
}

.hero-section .blending-group-wrapper .shape-7 {
    width: 20em;
    height: 13em;
    opacity: .23;
    background-color: #6936c7;
    border-radius: 999em;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -4.1em;
    left: 0;
    right: -23.9em;
    transform: rotate(40deg);
}

.hero-section .blending-group-wrapper .shape-8 {
    width: 47em;
    height: 119em;
    opacity: .1;
    background-color: #749266;
    border-radius: 999em;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -1.1em;
    left: 26.7em;
    right: 0;
    transform: rotate(29deg);
}

.hero-section .blending-group-wrapper .shape-9 {
    width: 30em;
    height: 119em;
    opacity: .13;
    background-color: #1b1b1b;
    border-radius: 999em;
    position: absolute;
    top: -5.3em;
    right: 1.2em;
    transform: rotate(39deg);
}

.hero-copy--wrap {
    position: relative;
    padding-top: 64px;
    margin-top: 120px;
    margin-bottom: 40px;
    z-index: 3;
}

.hero-image {
    position: absolute;
    background-image: url('../img/intro-bg-image.png');
    background-position: 0 0;
    background-size: cover;
    background-repeat: repeat;
    top: 20%;
    left: 45%;
    right: auto;
    min-height: 440px;
    min-width: 700px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    text-align: center;
    width: 850px;
}

.hero-copy h1 {
    color: var(--color-text-default);
    font-size: 66px;
    font-family: 'Manrope', sans-serif;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 24px;
}

.textTyping-wrapper {
    position: relative;
    perspective: 1000px;
}

.textTyping-text {
    display: inline-block;
    animation: typingEffect 3s steps(15, end), blinkCursor 0.5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid transparent;
}

@keyframes typingEffect {
    from {
        width: 0;
    }
}

@keyframes blinkCursor {
    to {
        border-color: #fff;
    }
}

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

.hero-copy .small-text {
    font-size: 12px;
    width: 350px;
    color: #cfd8e2;
    text-align: center;
    padding-top: 13px;
    margin: 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;
}

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

.hero-notification--wrapper {
    margin-bottom: 0.5rem;
}

.hero-notification {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgb(44, 44, 51);
    border-radius: 100px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 8px;
    padding: 0.25rem 1rem;
    width: fit-content;
    margin: 0 auto;
}

.hero-notification .image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-notification .image {
    max-width: 100%;
    width: 28px;
    height: auto;
    object-fit: contain;
}

.hero-notification .text-wrapper {
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    line-height: 1.25rem;
    width: 100%;
}

.hero-notification .text {
    color: var(--color-text-default);
    font-size: 14px;
    line-height: 1.25rem;
    text-align: left;
}

.hero-notification .cta-btn {
    color: #d9365d;
    background-color: transparent;
    border-radius: 4px;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    justify-content: center;
    padding: 6px 1.25rem;
    margin: 0 auto;
    text-decoration: none;
    text-transform: capitalize;
    min-width: 0;
    width: fit-content;
    white-space: nowrap;
    position: relative;
}

.hero-notification .btn-label {
    display: inline;
}

.hero-notification .btn-arrow {
    margin-left: 8px;
    display: flex;
    align-items: center;
}

.hero-notification .cta-btn:hover {
    background-color: rgba(217, 54, 93, .08);
}

.hero-tag--text {
    display: inline-block;
    /* font-family: 'SFMono', sans-serif; */
    padding: 6px 12px;
    background: #e5f0ff;
    color: #fff;
    font-size: .75rem;
    line-height: .875rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 16px;
}

.hero-body--text {
    color: var(--color-text-default);
    font-size: 20px;
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-tag--wrap, .section-tag--wrap {
    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;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
    z-index: 9;
}

.hero-tag--gradient, .section-tag--gradient {
    border-radius: 4px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1em;
    display: inline-block;
}

.hero-tag--gradient, .section-tag--gradient {
    background: linear-gradient(117.15deg, #ed8a61 -7.16%, #bd8303 56.41%, #f5640a 119.98%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Hero Video */
.hero-video {
    padding-top: 2rem;
    position: relative;
}

.hero-video--wrapper {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 1.6rem;
}

.video-with--preview {
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 10;
}

.video-with--preview .video-play--button {
    display: block;
    width: 100%;
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 0;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}

.video-with--preview .video-content {
    width: 100%;
    border-radius: 1.5rem;
}

.video-with--preview img {
    width: 100%;
}

.video-with--preview .play-with--sound {
    display: flex;
    position: absolute;
    padding: 1rem 1.5rem;
    background: #041527;
    border-radius: 2rem;
    box-shadow: 0px 18px 36px 0px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.04);
    color: #fff;
    font-weight: 500;
    align-items: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    bottom: 2rem;
    left: 2rem;
}

.video-with--preview .play-icon, .video-with--preview .mute-icon {
    height: 18px;
    width: 18px;
    margin-left: 10px;
}



/* Hero Demo */
.hero-demo--section {
    margin-top: 0;
    position: relative;
    padding-bottom: 3rem;
}

.hero-demo--wrap {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.hero-demo--wrap .demo-image {
    margin-top: 2rem;
    margin-left: -1vw;
    width: calc(100% + 2vw);
    height: auto;
}

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



/* Input */
.the__button {
    display: inline-block;
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 500;
    background: linear-gradient(70deg,#3f3737,#272d2c);
    color: #fff;
    border: 1px solid #2d3230;
    transition: color 600ms ease, background 1200ms ease;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    line-height: inherit;
    height: auto;
    min-width: 0;
    width: max-content;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

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

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

.the__button.btn--white {
    background: #fff;
    color: var(--color-text-secondary);
    border: 1px solid #fff;
}

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

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

.the__button.btn--white:before {
    background: #f7f7f7;
    color: var(--color-text-secondary);
}

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

.the__button.btn--white:hover {
    color: var(--color-text-secondary);
    background: #fff;
}

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

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

.the__button .the__button-image {
    width: auto;
    max-height: 32px;
    z-index: 2;
}

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

.the__button.btn--white .the__button-arrow {
    color: var(--color-text-secondary);
}

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

select {
    background: url(../img/icons/arrow-down.svg) no-repeat right 0.8em center/1.4em;
    cursor: pointer !important;
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 85%;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    border-left: 2px solid transparent;
}

.badge-positive {
    background-color: #e1f1e9;
    border-color: #26c08a;
    color: rgb(38, 192, 138);
}

.badge-neutral {
    background-color: #fff9ee;
    border-color: #f8c25e;
    color: rgb(196, 148, 37);
}

.badge-negative {
    background-color: #fde9e9;
    border-color: #f86c6b;
    color: #f86c6b;
}


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

.logo-text--header {
    font-size: 26px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 0;
    background: linear-gradient(117.15deg, #A32B7B -7.16%, #E94057 56.41%, #F27121 119.98%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.logo-text--wrapper {
    color: var(--color-text-default);
    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;
    position: relative;
    z-index: 9;
}

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

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


/* Features */
.features-block {
    padding: 96px 0;
    margin-top: 3rem;
    position: relative;
}

.features-block .intro-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 2.5rem;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
    z-index: 9;
}

.features-block .intro-grid .intro-text {
    color: var(--color-text-default);
    font-size: 36px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.05rem;
    margin: 0;
}

.features-block .intro-grid .body-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255,255,255,.8);
    margin: 0;
}

.features-block .hero-bg {
    z-index: -1;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    top: -70%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

/* .features-block .hero-bg.saturation-125 {
    width: 150%;
    height: 100%;
    max-width: 100%;
    filter: saturate(125%);
    object-fit: contain;
    padding-top: 0;
    display: inline-block;
    top: -70%;
} */

.features-copy, .cwf-section--copy {
    width: 900px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 9;
}

.features-copy .small-title, .cwf-section--copy .small-title {
    color: var(--color-text-body);
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 14px;
    margin-bottom: 10px;
}

.features-copy h3, .cwf-section--copy h3 {
    color: var(--color-text-default);
    font-size: 36px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.05rem;
    margin-top: 0;
    margin-bottom: 26px;
}

.features-copy p, .cwf-section--copy p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text-default);
    margin-bottom: 0;
}

.features-data--wrapper {
    justify-content: space-around;
    align-items: center;
    display: flex;
}

.features-data--wrapper .features-data {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    color: #fff;
}

.features-data--wrapper .data-number {
    color: #f29062;
    margin-bottom: 8px;
    font-size: 60px;
    font-weight: 600;
    line-height: 48px;
    margin-top: 48px;
}

.features-data--wrapper .data-number--small {
    font-size: 24px;
    line-height: 32px;
}

.features-about--component {
    grid-column-gap: 4rem;
    grid-row-gap: 1rem;
    grid-template: ". Area" / 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    padding-top: 48px;
}

.features-about--component .left-content {
    height: 100%;
}

.features-about--component .left-content .content-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-about--component .left-content .text-icon--wrapper {
    column-gap: 0.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.features-about--component .left-content .icon-wrapper {
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.features-about--component .left-content .icon-wrapper .svg-icon {
    fill: currentColor;
}

.features-about--component .left-content .small-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.features-about--component .left-content .large-text {
    color: #e5e7ee;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
}

.features-about--component .right-content .content-wrap {
    gap: 1.5rem;
    flex-direction: column;
    display: flex;
}

.features-about--component .right-content .content-item {
    grid-column-gap: 1.25rem;
    background-color: #161e26;
    border-radius: 0.75rem;
    color: #fff;
    align-items: center;
    padding: 1.25rem;
    display: flex;
}

.features-about--component .right-content .icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: rgba(118, 245, 245, .15);
    border-radius: 8px;
    color: rgb(118, 245, 245);
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-about--component .right-content .icon-wrapper .svg-icon {
    fill: currentColor;
}

.features-about--component .right-content .body-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.features-about--component .right-content .large-text {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.features-about--divider {
    background-color: rgba(164, 173, 183, .15);
    margin-top: 5rem;
    margin-bottom: 5rem;
    width: 100%;
    height: 1px;
}

.features-grid {
    display: block;
    width: 100%;
}

.features-grid .carousel-cell {
    width: 100%;
}


.features-block .flickity-prev-next-button {
    top: auto;
    bottom: -18%;
}

.features-block .flickity-page-dots .dot, .solutions-section .flickity-page-dots .dot {
    background-color: var(--color-text-primary);
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.features-block .flickity-page-dots .dot.is-selected, .solutions-section .flickity-page-dots .dot.is-selected {
    background-color: #E94057;
    stroke-dashoffset: 34.3522;
    position: relative;
    opacity: 1;
}

.features-block .flickity-page-dots .dot.is-selected::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid transparent;
    stroke: #ffffff;
    stroke-width: 2px;
    stroke-dasharray: 307.919;
    stroke-dashoffset: 307.919;
    opacity: 1;
    animation: progressCircle 6s linear infinite;
}


@keyframes progressCircle {
    0% {
        stroke-dashoffset: 307.919;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.features-grid--list {
    font-size: .875rem;
    line-height: 1.25rem;
    padding: 30px 24px;
    border: 1px solid #15162e;
    border-radius: 16px;
    background-color: var(--color-background-tertiary);
    min-height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.features-grid--list .list-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.features-grid--list .icon-wrapper {
    position: relative;
}

.features-grid--list .icon-wrapper .icon {
    width: 36px;
    height: 36px;
    display: block;
    color: #fff;
}

.features-grid--list .image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
}

.features-grid--list .image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    overflow: hidden;
}

.features-grid--list .list-header .list-header--text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
    display: inline-block;
    color: var(--color-text-default);
}

.features-grid--list .list-subtext {
    color: var(--color-offwhite);
    font-size: 16px;
    line-height: 1.5;
    margin-top: 18px;
}

.features-grid--list .list-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-body);
    margin-top: 18px;
    margin-bottom: 32px;
}

.features-grid--list .more-info--wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    align-items: center;
    cursor: pointer;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
    position: relative;
    width: min-content;
    will-change: transform;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.features-grid--list .more-info {
    color: var(--color-text-body);
    flex: none;
    height: 24px;
    position: relative;
    width: 24px;
}

.features-block .tabs-nav-filled {
    padding-top: 16px;
    position: relative;
}

.features-block .tabs-nav.features-tabs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
}

.features-block .tabs-nav.features-tabs::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #23273c;
}

.features-block .tabs-nav-filled .tabs-nav.features-tabs a {
    color: var(--color-text-default);
    font-size: 17px;
    padding: 16px 24px;
    position: relative;
}

.features-block .tabs-nav-active-filled .tabs-nav.features-tabs li.active a, .features-block .tabs-nav-active-filled .tabs-nav.features-tabs li a:hover {
    background-color: transparent;
}

.features-block .tabs-nav-active-filled .tabs-nav.features-tabs li.active a::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 25px;
    left: 20px;
    bottom: -32px;
    filter: blur(20px);
    background: linear-gradient(85.5deg, rgb(244 46 135) 5.66%, rgb(255 39 68) 99.14%);
}

/* .features-block .tabs-nav-active-filled .tabs-nav li.active a::after {
    content: "";
    position: absolute;
    width: 112px;
    height: 28px;
    right: 20px;
    bottom: -38px;
    filter: blur(20px);
    background: linear-gradient(85.5deg, rgb(238, 2, 139) 5.66%, rgb(174, 41, 255) 99.14%);
} */

.features-block .tabs-nav-active-filled .tabs-nav.features-tabs li.active a::after {
    background: linear-gradient(85.5deg, #ed573e 5.66%, #ba306f 99.14%);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
}

.features-block .nta-content--wrapper {
    padding-top: 1rem;
}

.features-block .nta-tabs {
    color: var(--color-text-default);
    display: flex;
    flex-direction: row;
    gap: 48px;
    padding-top: 0;
}

.features-block .nta-tabs .tabs-nav {
    color: var(--color-text-default);
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 24%;
    max-width: 24%;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
}

.features-block .nta-tabs .tabs-nav li {
    display: block;
    text-align: left;
}

.features-block .nta-tabs .tabs-nav li+li {
    margin-left: 0;
}

.features-block .nta-tabs .tabs-nav a {
    display: flex;
    justify-content: flex-start;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    background-color: #101320 !important;
    border: 1px solid transparent;
}

.features-block .nta-tabs.tabs-nav-active-filled .tabs-nav li.active a {
    background-color: var(--color-background-secondary) !important;
    border-color: var(--border-color);
}

.features-block .nta-tabs .tabs-nav .content-body {
    color: var(--color-text-default);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 8px;
}

.features-block .nta-tabs .tabs-nav .content-body .icon {
    width: 24px;
    max-width: 24px;
    height: 24px;
    overflow: hidden;
}

.features-block .nta-tabs .tabs-nav .content-body .heading-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    display: block;
}

.features-block .nta-tabs .tabs-nav .content-body .body-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgb(215, 223, 235);
    display: none;
    padding-top: 3px;
}

.features-block .nta-tabs.tabs-nav-active-filled .tabs-nav li.active .body-text {
    display: block;
}

.features-block .nta-tabs .nta-content--block {
    margin-top: 24px;
}

.features-block .nta-tabs .nta-content {
    background: var(--color-background-secondary);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 24px;
}

.features-block .nta-tabs .nta-content .text-ref {
    padding: 0.5rem 1.25rem;
    background-color: rgb(0, 0, 0);
    color: rgb(0, 232, 120);
    font-size: 1rem;
    text-transform: lowercase;
}

.features-block .nta-tabs .nta-content .text-block--wrap {
    display: flex;
    width: 100%;
    padding: 1.25rem;
    background-color: #090917;
    color: rgb(237, 237, 242);
    flex-direction: row;
    gap: 20px;
}

.features-block .nta-tabs .nta-content .flex-row--20 {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.features-block .nta-tabs .nta-content .text-block {
    display: flex;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-height: 600px;
    overflow-y: auto;
    flex-direction: column;
    gap: 16px;
    padding-right: 0.5rem;
}

.features-block .nta-tabs .nta-content .text-block--right {
    display: flex;
    max-height: 600px;
    overflow-y: auto;
    flex-direction: column;
    gap: 16px;
    padding-right: 0.5rem;
    border-left: 1px solid var(--border-color);
    padding-left: 16px;
    flex: 0 0 240px;
    max-width: 240px;
}

.features-block .nta-tabs .nta-content .text-block--right .flex-col--8 {
    display: flex;
    padding-left: 0px;
    gap: 8px;
    flex-direction: column;
}

.features-block .nta-tabs .nta-content .result-text {
    padding-left: 1rem;
    border-left: 3px solid rgb(19, 239, 147);
    color: rgb(226, 253, 237);
    margin-left: 0;
    font-size: 18px;
    font-weight: 500;
}

.features-block .nta-tabs .nta-content .text-block--right .result-text {
    font-size: 15px;
}

.features-block .nta-tabs .nta-content .result-text.positive {
    border-color: rgb(19, 239, 147);
}

.features-block .nta-tabs .nta-content .result-text.positive .result {
    color: #00d16c;
}

.features-block .nta-tabs .nta-content .result-text.negative {
    border-color: #f86c6b;
}

.features-block .nta-tabs .nta-content .result-text.negative .result {
    color: #f86c6b;
}

.features-block .nta-tabs .nta-content .text-block .badge {
    border-radius: 0;
    border-left-width: 0;
    font-size: 92%;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid transparent;
}

.features-block .nta-tabs .nta-content .text-block .badge-rounded {
    border-radius: 24px !important;
    border: 1px solid var(--border-color);
    background-color: var(--color-background-tertiary);
    color: #768394;
    font-size: 11px !important;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
    padding: .75em .85em .4rem !important;
    margin-right: 5px;
    margin-bottom: 5px;
}

.features-block .nta-tabs .nta-content .text-block .badge-rounded.negative {
    border-color: #be346d;
    background-color: #ffe5e5;
    color: #951943;
}

.features-block .nta-tabs .nta-content .text-block .badge-positive {
    background-color: transparent;
    border-color: #06be65;
    color: #fff;
}

.features-block .nta-tabs .nta-content .text-block .badge-neutral {
    background-color: transparent;
    border-color: #f09c1c;
    color: #fff;
}

.features-block .nta-tabs .nta-content .text-block .badge-negative {
    background-color: transparent;
    border-color: #f86c6b;
    color: #fff;
}

.features-block .nta-tabs .nta-content .text-block .sentiment-legend--wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.features-block .nta-tabs .nta-content .text-block .sentiment-legend {
    padding: 0;
    border-radius: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.features-block .nta-tabs .nta-content .text-block .sentiment-legend:not(:first-child) {
    margin-left: 1rem;
}

.features-block .nta-tabs .nta-content .text-block .legend-positive {
    border-color: #26c08a;
    color: #26c08a;
    background: #090917;
}

.features-block .nta-tabs .nta-content .text-block .legend-negative {
    border-color: #f86c6b;
    color: #f86c6b;
    background: #090917;
}

.features-block .nta-tabs .nta-content .text-block .legend-neutral {
    border-color: #f09c1c;
    color: #f09c1c;
    background: #090917;
}

.features-block .sa-content--wrapper, .features-block .dpe-content--wrapper, .features-block .ia-content--wrapper {
    padding-top: 1rem;
}

.features-block .sa-flex--row, .features-block .dpe-flex--row, .features-block .ia-flex--row {
    display: flex;
    flex-direction: row;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--color-text-default);
    gap: 40px;
    width: 100%;
}

.features-block .sa-flex--left {
    color: var(--color-text-default);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 1.5rem;
    border-radius: 16px;
    background-color: var(--color-background-secondary);
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

.features-block .sa-flex--left .audio-content--box {
    border-radius: 4px;
    background-color: var(--color-background-tertiary);
    margin-bottom: 0;
    padding: 3px 15px 8px;
}

.features-block .sa-flex--left .audio-content--box:after {
    display: none;
}

.features-block .sa-flex--row .text-title, .features-block .dpe-flex--row .text-title, .features-block .ia-flex--row .text-title {
    font-size: 20px;
    line-height: 1.3;
}

.features-block .dpe-flex--row .caption, .features-block .ia-flex--row .caption {
    color: #a3afc1;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    text-align: left;
    display: block;
}

.features-block .sa-flex--left .audio-input--wrapper {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.features-block .sa-flex--left .audio-input {
    display: flex;
    gap: 10px;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    background-color: rgb(39 44 70);
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.features-block .sa-flex--left .audio-input .icon-wrapper {
    display: inline-flex;
}

.features-block .sa-flex--left .run-demo--btn {
    background: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0)) padding-box padding-box, linear-gradient(85.5deg, rgb(237 82 67) 5.66%, rgb(196 53 106) 99.14%) border-box border-box;
    color: rgb(255, 255, 255);
    filter: drop-shadow(rgba(178, 39, 248, 0.2) 10px 0px 15px) drop-shadow(rgba(236, 4, 143, 0.2) -10px 0px 15px);
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 2;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 4px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 6px 1.25rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    min-width: 0px;
    transition: unset;
    white-space: nowrap;
    position: relative;
    margin-left: 0px;
    margin-right: 0px;
    width: fit-content;
}

.features-block .sa-flex--left .run-demo--btn:hover {
    background: linear-gradient(117.15deg, #A32B7B -7.16%, #E94057 56.41%, #F27121 119.98%);
}

.features-block .sa-flex--left .run-demo--btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -1px;
    left: -1px;
    z-index: 0;
    opacity: 0;
    transition: opacity 100ms ease-in-out 0s, background-position 400ms ease-in-out 0s;
    border-radius: 4px;
    box-sizing: content-box;
    padding: 1px;
}

.features-block .sa-flex--left .run-demo--btn::before {
    background: linear-gradient(to right, rgb(237 85 62), rgb(234 67 85), rgb(209 57 99), rgb(199 53 105)) 0% 0% / 300% 100%;
}

.features-block .sa-flex--left .run-demo--btn span {
    position: relative;
    z-index: 1;
}

.features-block .sa-flex--left .post-wrapper, .features-block .ia-flex--right .post-wrapper {
    font-size: 1rem;
    max-height: 200px;
    overflow-y: auto;
}

.features-block .sa-flex--left .post, .features-block .ia-flex--right .post {
    border: 0;
    border-radius: 4px;
    background-color: var(--color-background-tertiary);
    color: #c5c8c6;
    font-family: 'CallingCode', sans-serif;
    direction: ltr;
    text-align: left;
    word-spacing: normal;
    word-break: normal;
    font-size: 14px;
    line-height: 1.5;
    padding: 20px 24px;
    margin: 0;
    overflow: auto;
    overflow-x: auto;
}

.features-block .sa-flex--left .post .code, .features-block .ia-flex--right .post .code {
    color: #E1E1E5;
    font-family: 'SFMono', monospace;
    white-space: pre-wrap;
    display: flex;
}

.features-block .sa-flex--left .post .code span {
    color: rgb(108, 233, 166);
    color: #7bdae8;
}

.features-block .sa-flex--left .post .code span.token {
    color: rgb(225, 225, 229);
    color: #0eb3a0;
}

.features-block .sa-flex--right, .features-block .dpe-flex--left, .features-block .dpe-flex--right {
    background-color: var(--color-background-secondary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
    flex: 1 0 0px;
    padding: 1.5rem;
}

.features-block .sa-flex--right .transcribed-output--wrapper, .features-block .dpe-flex--right .extracted-output--wrapper {
    background-color: var(--color-background-tertiary);
    border-radius: 4px;
    color: rgb(225, 225, 229);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    padding: 1.25rem 1.5rem;
    height: 100%;
    max-height: 520px;
    overflow-y: auto;
    z-index: 10;
}

.features-block .dpe-flex--right .extracted-output--wrapper {
    max-height: 540px;
}

.features-block .dpe-flex--left .file-input--wrapper {
    background-color: var(--color-background-tertiary);
    border-radius: 0;
    color: rgb(225, 225, 229);
    height: 100%;
    max-height: 520px;
    overflow-y: auto;
    z-index: 10;
}

.features-block .dpe-flex--left .file-input--wrapper {
    padding: 2px;
    background-size: 100% 100%;
    background-image: url(../img/file-upload-border.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.features-block .dpe-flex--left .file-input {
    width: 100%;
    height: 510px;
    position: relative;
}

.features-block .dpe-flex--left .file-input .image-wrapper {
    height: 510px;
    width: 100%;
}

.features-block .dpe-flex--left .file-input .input-image {
    display: block;
    object-fit: contain;
    width: auto;
    height: 100%;
    margin: 0 auto;
}

.features-block .dpe-flex--right .extracted-output {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    -ms-grid-columns: repeat(2,1fr);
    grid-template-columns: repeat(2,1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 20px;
}

.features-block .dpe-flex--right .extracted-output .grid-item .label {
    color: var(--color-text-default);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.65;
}

.features-block .dpe-flex--right .extracted-output .grid-item .output {
    color: white;
    width: 100%;
    cursor: pointer;
    padding: 0.5rem;
    overflow: hidden;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.2s;
    border-left: 2px solid transparent;
    white-space: nowrap;
    border-radius: 0.25rem;
    min-height: 30px;
    text-overflow: ellipsis;
}

.features-block .sa-flex--right .transcribed-data {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    align-items: center;
}

.features-block .sa-flex--right .transcribed-output {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 1;
    transition: opacity 300ms ease-in-out 0s;
}

.features-block .sa-flex--right .transcribed-output p {
    margin-bottom: 0;
}

.features-block .ia-flex--left {
    background-color: var(--color-background-secondary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
    flex: 1 0 0px;
    padding: 1.5rem;
    flex: 0 0 calc(60% - 20px);
    max-width: calc(60% - 20px);
}

.features-block .ia-flex--left .preview-template--wrapper {
    display: flex;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.features-block .ia-flex--left .preview-template {
    width: 100%;
    overflow: hidden;
}

.features-block .ia-flex--left .preview-template .preview-image--wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.features-block .ia-flex--left .preview-template .preview-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.features-block .ia-flex--left .preview-template .preview-image .image {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}

.features-block .ia-flex--right {
    background-color: var(--color-background-secondary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
    flex: 1 0 0px;
    padding: 1.5rem;
}

.features-block .ia-flex--right .post-wrapper {
    max-height: 300px;
}

.features-block .ia-flex--right .text-block {
    display: flex;
    width: 100%;
    padding: 1.25rem;
    background-color: #090917;
    color: rgb(237, 237, 242);
    flex-direction: row;
    gap: 20px;
}

.features-block .ia-flex--right .result-text {
    padding-left: 1rem;
    border-left: 3px solid rgb(19, 239, 147);
    color: rgb(226, 253, 237);
    margin-left: 0;
    font-size: 18px;
    font-weight: 500;
}

.features-block .ia-flex--right .result-text.positive .result {
    color: #00d16c;
}

.wf-grid--container {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: repeat(12,1fr);
    grid-gap: 2rem;
}

.wf-grid--item {
    width: 100%;
}

.wf-grid--item-1-1 {
    grid-column: span 12;
}

.wf-grid--item-2-2 {
    grid-column: span 6;
}

.wf-grid--item-2-3 {
    grid-column: span 7;
}

.wf-grid--item-3-3 {
    grid-column: span 4;
}

.wf-grid--item-3-2 {
    grid-column: span 5;
}

.wf-card {
    background-color: var(--color-background-secondary);
    border: 1px solid #1c223d;
    background-color: rgba(10,11,30,.5);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    color: var(--color-text-default);
    display: block;
    max-width: 100%;
    height: 100%;
}

.wf-card .card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-row-gap: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.wf-card .card-inner--row {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
    padding-right: 0;
}

.wf-card .card-text {
    display: flex;
    row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    padding-bottom: 0;
}

.wf-card .card-inner--row .card-text {
    width: 100%;
    max-width: 480px;
    row-gap: 20px;
    padding-right: 0;
}

.wf-card .card-heading--wrapper {
    grid-column-gap: 8px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 20px;
    grid-auto-columns: 1fr;
    display: grid;
}

.wf-card .card-inner--row .card-heading--wrapper {
    display: block;
}

.wf-card .small-title {
    color: var(--color-text-body);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
}

.wf-card .card-heading {
    color: var(--color-text-default);
    font-size: 19px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    line-height: 28px;
    margin-top: 0;
    margin-bottom: 0;
}

.wf-card .card-inner--row .card-heading {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
}

.wf-card .card-arrow {
    opacity: 0;
    margin-top: 0;
    line-height: 1;
    transition: opacity 0.3s;
}

.wf-card:hover .card-arrow {
    opacity: 1;
    transition: opacity 0.3s;
}

.wf-card .card-copy {
    color: var(--color-text-default);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 0;
}

.wf-card .card-image--wrapper {
    line-height: 0;
    display: inherit;
    max-width: 100%;
    max-height: 100%;
}

.wf-card .card-image {
    height: auto;
    width: auto;
    max-width: inherit;
    max-height: inherit;
}

.wf-card .card-inner--row .card-image {
    max-width: 100%;
}

.card-2x--flex-wrap {
    grid-column-gap: 0px;
    justify-content: space-between;
    margin-bottom: 40px;
    display: flex;
}

.card-2x--flex-wrap .card-wrap {
    width: 100%;
    height: 520px;
    max-width: 560px;
    background-color: #10122a;
    border-radius: 20px;
    padding-top: 24px;
    position: relative;
}

.card-2x--flex-wrap .coming-soon--wrapper {
    margin-bottom: 32px;
    padding-left: 25px;
    display: inline-block;
    position: static;
    top: 4%;
    bottom: auto;
    left: 4%;
    right: auto;
}

.card-2x--flex-wrap .coming-soon {
    color: #fff;
    background-color: rgba(255,255,255,.1);
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    text-transform: uppercase;
}

.card-2x--flex-wrap .card-content--wrap {
    max-width: 420px;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.card-2x--flex-wrap .card-title--wrap {
    height: 5.5rem;
    margin-bottom: 20px;
}

.card-2x--flex-wrap .card-title {
    color: #fff;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
}

.card-2x--flex-wrap .card-copy {
    color: rgba(255,255,255,.75);
    font-size: 16px;
    line-height: 24px;
    margin: 0 10px;
}

.card-2x--flex-wrap .card-button--wrap {
    margin-top: 24px;
}

.card-2x--flex-wrap .card-button--wrap .the__button {
    font-size: 14px;
    padding: 10px 18px;
}

.card-2x--flex-wrap .card-img {
    max-width: 415px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.cwf-block {
    padding: 96px 0;
    position: relative;
}

.cwf-flex--wrap {
    grid-column-gap: 30px;
    margin-bottom: 40px;
    justify-content: space-between;
    display: flex;
}

.cwf-flex--wrap ._2x-card--wrap {
    z-index: 1;
    width: 100%;
    height: 300px;
    max-width: 660px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background-color: rgba(10,11,30,.5);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 32px 32px 0;
    position: relative;
    overflow: hidden;
}

.cwf-flex--wrap ._1x-card--wrap {
    width: 100%;
    height: 300px;
    max-width: 470px;
    background-color: rgba(10,11,30,.5);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 32px 32px 0;
}

.cwf-flex--wrap .card-inner--wrapper {
    justify-content: space-between;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
}

.cwf-flex--wrap .left-content--wrap {
    width: 100%;
    max-width: 200px;
}

.cwf-flex--wrap .left-content--wrap .icon-wrap {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

.cwf-flex--wrap .left-content--wrap .card-title {
    color: var(--color-text-default);
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -.15px;
    margin-top: 0;
    margin-bottom: 12px;
}

.cwf-flex--wrap .left-content--wrap .card-copy {
    color: var(--color-text-body);
    font-size: 15px;
    line-height: 1.5;
}

.cwf-flex--wrap .right-list--wrap {
    width: 100%;
    max-width: 320px;
    grid-row-gap: 16px;
    flex-direction: column;
    margin-top: 50px;
    display: flex;
}

.cwf-flex--wrap .right-list {
    height: 52px;
    grid-column-gap: 12px;
    background-color: #fff;
    border: 1px solid #e2e0e0;
    border-radius: 12px;
    align-items: center;
    padding: 12px 16px 12px 12px;
    display: flex;
    box-shadow: 0 12px 32px rgb(0 0 0 / 5%);
}

.cwf-flex--wrap .right-list--icon-wrap {
    width: 28px;
    height: 28px;
    background-color: var(--heading-color);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.cwf-flex--wrap .right-list--icon-wrap img {
    width: 12px;
    height: 12px;
}

.cwf-flex--wrap .right-list--text {
    color: #8f919c;
    font-size: 15px;
    font-weight: 400;
}

.cwf-flex--wrap .right-list--title {
    color: #373847;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.cwf-flex--wrap .right-list--copy {
    color: #696c76;
    font-size: 11px;
    line-height: 12px;
    margin-bottom: 0;
}

.cwf-flex--wrap .shadow-1 {
    z-index: -1;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: auto;
}



/* Use Cases */
.use-cases, .use-cases--rm {
    padding: 120px 0;
    background-color: #0e161e;
    background-color: #0b1218;
    position: relative;
}

.use-cases .background-wrapper {
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.use-cases .background-wrapper .gradient-image {
    width: 50rem;
    height: 50rem;
    border-radius: 100%;
    position: absolute;
    bottom: auto;
    left: 0%;
    right: auto;
}

.use-cases .background-wrapper .gradient-image.is-1 {
    top: -1%;
    left: -26%;
    overflow: hidden;
}

.use-cases .background-wrapper .gradient-image.is-2 {
    opacity: .71;
    top: 23%;
    bottom: auto;
    left: auto;
    right: -21%;
    overflow: hidden;
}

.use-cases .background-wrapper .gradient-image.is-3 {
    top: -50%;
    bottom: 0%;
    left: -24%;
    right: auto;
    overflow: hidden;
}

.use-cases--copy {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.use-cases--copy .small-title {
    color: var(--color-text-body);
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 14px;
    margin-bottom: 10px;
}

.use-cases--copy h3 {
    color: #fff;
    font-size: 40px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 8px;
    margin-bottom: 48px;
    width: 550px;
}

.use-cases--copy .body-text {
    font-size: 17px;
    line-height: 1.5;
    color: #aebbc8;
    margin-bottom: 35px;
    width: 550px;
}

.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: 24px;
    font-weight: 400;
    margin-bottom: 0;
}

.use-cases--selection-wrapper {
    margin-top: 64px;
}

.use-cases--selection {
    margin-top: 48px;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 9;
}

.custom-select select {
    display: none;
}

.custom-select__selected {
    background-color: #0c1418;
    color: var(--color-text-default);
    padding: 15px 16px 15px;
    font-size: 15px;
    line-height: 1.6;
    border: 1px solid #252b31;
    border-radius: 6px;
    cursor: pointer;
}

.custom-select__arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -3px;
    border: solid var(--color-offwhite);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: translateY(-50%) rotate(45deg);
    cursor: pointer;
}

.custom-select__options {
    display: none;
    position: absolute;
    background-color: #0c1418;
    min-width: 100%;
    border: 1px solid #252b31;
    border-top: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    padding-bottom: 4px;
    z-index: 1;
}

.custom-select__options .option {
    color: var(--color-text-default);
    font-size: 15px;
    line-height: 1.5;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.custom-select__options .option:hover {
    background-color: #0e161e;
    color: var(--color-offwhite);
}

.use-cases .tabs-nav-filled {
    padding-top: 16px;
}

.use-cases .tabs-nav-filled .tabs-nav a {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    padding-right: 24px;
    border-radius: 100px;
    color: #667380;
    background-color: transparent;
}

.use-cases .tabs-nav-spaced .tabs-nav li + li {
    margin-left: 16px;
}

.use-cases .tabs-nav-active-filled .tabs-nav li.active a, .use-cases .tabs-nav-active-filled .tabs-nav li a:hover {
    background-color: transparent;
    color: #fff;
}

.use-cases .tabs-content p {
    color: #fff;
}

.use-cases--rm .section-header {
    display: flex;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.use-cases--rm .section-header .content-wrap {
    max-width: 550px;
}

.use-cases--rm .section-header .content-wrap h3 {
    color: #fff;
    font-size: 38px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.use-cases--rm .section-grid {
    display: grid;
    grid-gap: 10%;
    grid-template-columns: 45% 45%;
    min-height: 680px;
}

.use-cases--rm .section-grid .left-content {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.use-cases--rm .section-grid .left-content .tab-container {
    margin-top: 1rem;
}

.use-cases--rm .section-grid .left-content .tabs-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 0;
}

.use-cases--rm .section-grid .left-content .tabs-nav-spaced .tabs-nav li + li {
    margin-left: 0;
}

.use-cases--rm .section-grid .left-content .tabs-nav-filled .tabs-nav a {
    color: #fff;
    font-size: 36px;
    font-weight: 200;
    line-height: 40px;
    padding: 0;
    background-color: transparent;
    opacity: .5;
}

.use-cases--rm .section-grid .left-content .tabs-nav li.active a, .use-cases--rm .section-grid .left-content .tabs-nav li a:hover, .use-cases--rm .section-grid .left-content .tabs-nav li a:focus {
    font-weight: 400;
    opacity: 1;
}

.use-cases--rm .section-grid .left-content .text-bottom {
    margin-top: 2rem;
    margin-bottom: 0;
}

.use-cases--rm .section-grid .left-content .text-bottom .body-text {
    color: var(--color-offwhite);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.use-cases--rm .section-grid .left-content .text-bottom .link-wrap {
    display: block;
    margin-top: 1rem;
}

.use-cases--rm .section-grid .left-content .text-bottom  .link {
    color: var(--color-offwhite);
    font-size: 18px;
    font-weight: 500;
    line-height: 135%;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.use-cases--rm .section-grid .right-content {
    position: relative;
    z-index: 9;
}

.use-cases--rm .section-grid .right-content .image-container {
    position: relative;
}

.use-cases--rm .section-grid .right-content .image-content--wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.use-cases--rm .section-grid .right-content .image-content {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.use-cases--rm .section-grid .right-content .image-wrapper {
    height: 680px;
    width: 100%;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.use-cases--rm .section-grid .right-content .image-wrapper img {
    bottom: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-width: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    object-fit: cover;
    transition: opacity 500ms linear 0s;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.solutions-grid .solution-card {
    border-radius: 12px;
    z-index: 1;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    max-width: 100%;
    min-height: 350px;
    overflow: hidden;
}

.solutions-grid .solution-card--main, .solutions-grid .solution-card--flipped {
    position: absolute;
    height: 100%;
    width: 100%;
}

.solutions-grid .solution-card--main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none !important;
    padding: 24px;
    top: 0;
    left: 0;
}

.solutions-grid .solution-card--flipped {
    background: #161e26;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .135s ease-in-out;
    -moz-transition: opacity .135s ease-in-out;
    transition: opacity .135s ease-in-out;
}

.solution-card.has-bg--color {
    background: var(--color-offwhite);
    color: var(--color-text-primary);
}

.solution-card.has-bg--image {
    color: #fff;
}

.solution-card.has-bg--image:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    border-radius: inherit;
}

.solution-card .card-bg--image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none;
    border-radius: inherit;
    overflow: hidden;
}

.solution-card .card-bg--image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    transition: -webkit-transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    -o-transition: transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    transition: transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    transition: transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99), -webkit-transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.solution-card .card-header {
    margin-bottom: 60px;
    width: 100%;
}

.solution-card .card-tag {
    font-size: 14px;
    color: var(--color-text-secondary);
    background-color: #f4f4f4;
    border-radius: 20px;
    padding: 4px 12px;
}

.solution-card .card-title {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.solution-card.is-main-card .card-title {
    font-size: 26px;
}

.solution-card .solution-card--flipped .card-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.solution-card .card-content {
    margin-top: auto;
    width: 100%;
}

.solution-card .solution-card--flipped .card-content {
    margin-top: 0;
}

/* .solution-card.has-link .card-content, .solution-card.has-link .card-arrow {
    -webkit-transform: translateY(36px);
    -ms-transform: translateY(36px);
    transform: translateY(36px);
    -webkit-transition: all 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    -o-transition: all 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    transition: all 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
} */

.solution-card .card-text {
    font-size: 14px;
    line-height: 1.5;
    display: block;
}

.solution-card.is-main-card .card-text {
    font-size: 16px;
}

.solution-card .solution-card--flipped .card-text {
    font-size: 16px;
    line-height: 1.65;
}

.solution-card.has-link .card-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    opacity: 1;
    margin-top: 16px;
}

.solution-card.has-link .card-arrow svg {
    color: var(--color-text-default);
    width: 20px;
    height: 24px;
}

.solution-card.has-bg--color .card-arrow svg {
    color: var(--color-text-primary);
}

/* .solution-card.has-link:hover.has-bg--image .card-bg--image img, .solution-card.has-link:focus.has-bg--image .card-bg--image img {
    -webkit-transform: scale(1.08) translateZ(0);
    transform: scale(1.08) translateZ(0)
} */

.solution-card.has-link:hover .card-content, .solution-card.has-link:hover .card-arrow, .solution-card.has-link:focus .card-content, .solution-card.has-link:focus .card-arrow {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.solution-card:hover .solution-card--flipped {
    opacity: 1;
}

.use-cases .tabs-content--grid .text-block h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
}

.use-cases--section, .use-cases--bottom {
    position: relative;
    padding: 80px 0;
}

.use-cases--section .hero-bg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    top: -.5%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    z-index: -1;
}

.use-cases--section .content-wrap {
    position: relative;
    padding-top: 48px;
    margin: 40px auto 80px;
    text-align: center;
    max-width: 700px;
    z-index: 3;
}

.use-cases--section .content-wrap .header-tag {
    color: #f1f1ff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    margin-bottom: 8px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    display: inline-flex;
}

.use-cases--section .content-wrap .large-title {
    color: var(--color-text-default);
    font-size: 42px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 2rem;
}

.use-cases--section .content-wrap .body-text {
    color: #c5d1e4;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.use-cases--cp {
    width: 750px;
    margin: 0 auto 48px;
    text-align: center;
}

.use-cases--cp h3 {
    color: var(--color-text-default);
    font-size: 30px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.35;
    margin-top: 0;
    margin-bottom: 26px;
}

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

.use-cases--wrapper {
    height: 100%;
    margin-bottom: 40px;
}

.use-cases--wrapper .use-cases--card {
    padding: 32px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    text-decoration: none !important;
    z-index: 1;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    max-width: 100%;
    height: 100%;
    min-height: 400px;
}

.use-cases--wrapper .use-cases--card.has-bg--color {
    background: var(--color-background-secondary);
    color: var(--color-text-default);
    padding-left: 32px;
    padding-right: 0px;
    padding-top: 32px;
    padding-bottom: 0px;
}

.use-cases--wrapper .use-cases--card.has-bg--image {
    color: #fff !important;
}

.use-cases--wrapper .use-cases--card.has-bg--image:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    border-radius: inherit;
}

.use-cases--wrapper .use-cases--card .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none;
    border-radius: inherit;
    overflow: hidden;
}

.use-cases--wrapper .use-cases--card .bg-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    transition: -webkit-transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    -o-transition: transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    transition: transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    transition: transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99), -webkit-transform 500ms cubic-bezier(0.17, 0.67, 0.37, 0.99);
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.use-cases--wrapper .use-cases--card .card-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.use-cases--wrapper .use-cases--card .card-content h3 {
    color: var(--color-text-default);
    font-size: 28px;
    line-height: 1.16;
    margin-bottom: 8px;
    margin-top: 0;
    padding-right: 32px;
}

.use-cases--wrapper .use-cases--card.has-bg--image .card-content h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.use-cases--wrapper .use-cases--card .card-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    padding-right: 32px;
    max-width: 600px;
}

.solutions-section {
    padding: 80px 0;
    position: relative;
}

.solutions-header--wrap {
    position: relative;
    padding-top: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
    z-index: 3;
}

.solutions-header {
    margin: 0 auto;
    text-align: center;
    width: 800px;
}

.solutions-header .header-tag {
    color: #f1f1ff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    margin-bottom: 8px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    display: inline-flex;
}

.solutions-header .header-text {
    color: var(--color-text-default);
    font-size: 36px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 2rem;
}

.solutions-header .body-text {
    color: var(--color-text-default);
    font-size: 18px;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.solutions-header .btn-links {
    margin: 32px 0 32px;
}

.solutions-header .btn-links .the__button+.the__button {
    margin-left: 16px;
}

.solutions-section .hero-bg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    top: 5%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    z-index: -1;
}

.solutions-section .solutions-tabs {
    background-color: var(--color-background-tertiary);
    display: flex;
    flex-direction: row;
    border-radius: 0.5rem;
    margin-top: 80px;
    padding-top: 0;
}

.solutions-section .solutions-tabs .tabs-nav {
    border-right: 1px solid #141e29;
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 auto;
    flex-direction: column;
    margin-bottom: 0;
}

.solutions-section .tabs-content--wrapper {
    display: flex;
    flex-direction: row;
    width: 825px;
    height: 100%;
    min-height: 420px;
    /* 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;
}

.solutions-section .solutions-tabs .tabs-nav a {
    color: var(--color-text-body);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    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;
}

.solutions-section .solutions-tabs .tabs-nav li + li {
    margin-left: 0;
}

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

.solutions-section .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-text-default);
}

.solutions-section .tabs-nav-active-filled .tabs-nav li a .icon {
    width: 24px;
    max-width: 24px;
    height: 24px;
    margin-right: 8px;
    overflow: hidden;
}

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

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

.solutions-section .tabs-content--wrapper .text-block p {
    color: #bdc8d9;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

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

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

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

.solutions-section .solutions-list--card {
    background-image: radial-gradient(199.49% 100% at 48.99% 0%, #060718 59.9%, rgb(40 34 73) 84.83%, rgb(17 8 29) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: inline-block;
    padding: 2rem;
    width: 100%;
    height: 100%;
    margin-top: 80px;
    min-height: 400px;
    position: relative;
}

.solutions-section .solutions-list--card .small-title {
    color: var(--color-text-body);
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.solutions-section .solutions-list--card .large-title {
    color: var(--color-text-default);
    font-size: 24px;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 8px;
}

.solutions-section .solutions-list--card .body-text {
    color: #bdc8d9;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.solutions-section .solutions-list--card .image-wrapper {
    position: relative;
    top: 0;
    z-index: 1;
}

.solutions-section .solutions-list--card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
}

.solutions-why {
    padding: 64px 0;
}

.solutions-why .copy-wrapper {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.solutions-why .copy {
    align-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 480px;
}

.solutions-why .copy h3 {
    color: var(--color-text-default);
    font-size: 28px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
}

.solutions-why .copy p {
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 40px;
}

.solutions-why .why-flex--wrapper {
    border-top: 1px solid var(--border-color);
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 48px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding-top: 32px;
    position: relative;
    width: 100%;
}

.solutions-why .why-flex {
    flex: 1 0 0px;
    height: auto;
    position: relative;
}

.solutions-why .why-flex--content {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.solutions-why .why-flex--content .icon {
    width: 24px;
    height: 24x;
    max-width: 24px;
    padding-top: 3px;
}

.solutions-why .why-flex--content .text {
    color: #dfe2e7;
    font-size: 16px;
    line-height: 1.6;
}

.bullet-point--wrapper {
    margin: 40px auto 40px;
    display: grid;
    row-gap: 2rem;
    column-gap: 4rem;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
}

.bullet-point--item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    column-gap: 1rem;
}

.bullet-point--circle {
    width: 24px;
    height: 24px;
}

.use-cases--grid-large {
    display: grid;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
}

.use-cases--grid-large .api-card {
    text-align: center;
    background-color: var(--color-background-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    transition: box-shadow .2s;
    display: flex;
}

.use-cases--grid-large .api-card .card-image {
    width: 32px;
    height: 32px;
    overflow: hidden;
}

.use-cases--grid-large .api-card .card-text {
    color: var(--color-text-default);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
}


/* Code Snippet */
.code-snippet--section {
    padding: 80px 0 80px;
    position: relative;
}

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

.code-snippet--section .code-snippet--copy h3 {
    font-size: 36px;
    font-family: 'Manrope', sans-serif;
    line-height: 1.2;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 24px;
}

.code-snippet--section .code-snippet--copy p {
    color: var(--color-text-default);
    margin-bottom: 0;
}

.code-snippet--section .code-snippet--copy .btn-links {
    margin-top: 32px;
}

.code-snippet--wrapper {
    background-color: var(--color-background-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
}

.code-snippet--tabs {
    position: relative;
}

.code-snippet--tabs .tabs-nav {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: start;
    justify-content: flex-start;
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}

.code-snippet--tabs .tabs-nav::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #23273c;
}

.code-snippet--tabs .tabs-nav li + li {
    margin-left: 0;
}

.code-snippet--tabs .tabs-nav a {
    color: var(--color-text-body);
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 18px 2.65rem;
    position: relative;
    white-space: nowrap;
}

.code-snippet--tabs .tabs-nav li.active a::after {
    background: linear-gradient(85.5deg, #ed573e 5.66%, #ba306f 99.14%);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.code-snippet--tabs .tabs-nav li.active a, .code-snippet--tabs .tabs-nav li a:hover {
    color: var(--color-text-default);
    background-color: transparent;
}

.code-snippet--window {
    width: 100%;
    display: block;
    padding: 1.15em;
    position: relative;
    overflow-x: auto;
}

.code-snippet--list {
    width: 100%;
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    overflow: scroll;
}

.code-snippet--list .code-row {
    color: var(--color-text-body);
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    white-space: nowrap;
    grid-template-rows: auto;
    grid-template-columns: 2em 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'CallingCode', sans-serif;
    position: relative;
    /* overflow: hidden; */
    width: 100%;
}

.use-cases--section .large-image--wrapper {
    margin-bottom: 64px;
}

.use-cases--value {
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.use-cases--value .value-icon {
    height: 36px;
    width: 36px;
}

.use-cases--value .value-heading {
    color: var(--color-text-default);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 0;
}

.use-cases--value .value-text {
    color: var(--color-text-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.use-cases--example {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    background-color: #fff;
    border-radius: 8px;
    margin: 11px auto 28px;
    padding: 22px 33px 30px 30px;
}

.use-cases--example .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #e7f1ff;
    border-radius: 100px;
    margin-bottom: 0;
}

.use-cases--example .icon {
    width: 40px;
    height: 40px;
}

.use-cases--example .heading-text {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
}

.use-cases--example .body-text {
    color: var(--color-text-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 0;
}



/* More Block */
.more-block, .steps-block {
    background-color: var(--color-background-tertiary);
    background-color: #0e161e;
    position: relative;
    padding: 80px 0;
}

.more-block .more-block--title {
    position: relative;
    color: var(--color-text-body);
    margin-top: 0;
    margin-bottom: 40px;
    text-align: left;
    font-size: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    z-index: 1;
}

.more-block--description {
    position: relative;
    text-align: left;
    z-index: 1;
    margin: 14px auto 42px;
}

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

.why-list {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    -ms-grid-columns: repeat(3,1fr);
    grid-template-columns: repeat(3,1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 36px;
    margin-top: .5rem;
    margin-bottom: 2rem;
}

.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: #1d1e2f;
    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-heading {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
}

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

.why-block {
    padding: 80px 0;
}

.why-block--grid {
    display: grid;
    grid-column-gap: 1rem;
    column-gap: 0;
    grid-column: 2/-2;
    grid-template-columns: 0 [main-start] repeat(12,1fr) [main-end] 0;
}

.why-block--grid .left-content--wrap {
    grid-column: 2/span 4;
}

.why-block--grid .left-content--wrap .heading-text {
    color: var(--color-text-default);
    font-size: 36px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.05rem;
    margin-top: 0;
    margin-bottom: 26px;
}

.why-block--grid .left-content--wrap .body-text {
    color: var(--color-text-default);
    margin: 1.5rem 0;
}

.why-block--grid .right-content--wrap {
    padding-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 3.5rem;
    grid-column: 7/span 7;
}

.why-block--grid .right-content--wrap .why-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 1.5rem;
}

.why-block--grid .right-content--wrap .why-item .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(118, 245, 245, .15);
    color: rgb(118, 245, 245);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-block--grid .right-content--wrap .why-item .svg-icon {
    fill: currentColor;
}

.why-block--grid .right-content--wrap .why-item .body-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text-default);
    margin-bottom: 0;
}


/* Steps */
.steps-section--copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin-bottom: 77px;
}

.steps-section--copy h3 {
    font-size: 36px;
    font-family: 'Manrope', sans-serif;
    line-height: 1.2;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 24px;
}

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

.levels-card {
    background-color: var(--color-background-secondary);
    color: var(--color-text-default);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border-left: 9px solid #be346d;
    height: 100%;
}

.levels-card--content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 20px;
}

.levels-card--content h3 {
    color: var(--color-text-default);
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
}

.levels-card--content p {
    line-height: 1.6;
    margin-bottom: 0;
}



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

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

.testimonial-slider--block .quote-divider {
    z-index: 4;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(270deg,rgba(255,255,255,0),#5f7fe5 50%,rgba(255,255,255,0));
    margin: 4rem 0;
    position: relative;
}

.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-family: 'Manrope', sans-serif;
    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-family: 'Manrope', sans-serif;
    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 */
.card-section--resources, .blog-resources, .blog-resources--single {
    position: relative;
    padding: 80px 0;
}

.blog-relative--section {
    border-top: 1px solid rgb(38 41 57);
    padding: 80px 0 48px;
}

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

.blog-resources--single {
    margin-top: 48px;
    padding-bottom: 96px;
}

.blog-header--section {
    padding: 64px 0 60px;
    text-align: left;
}

.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 {
    font-family: 'Manrope', sans-serif;
    color: var(--color-primary);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 10px;
}

.blog-header--section .body-text {
    font-size: 18px;
    line-height: 1.5;
    color: #546175;
    margin-bottom: 0;
}

.blog-relative--section .section-title {
    color: var(--color-text-default);
    font-size: 24px;
    font-family: 'Manrope', sans-serif;
    line-height: 48px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 32px;
}

.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-family: 'Manrope', sans-serif;
    line-height: 1.2;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 24px;
}

.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: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    height: 100%;
    z-index: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.blog-featured--content-wrapper {
    background: var(--color-background-secondary);
    color: var(--color-primary);
    margin-top: 48px;
    margin-bottom: 48px;
    padding-top: 48px;
    padding-bottom: 48px;
}

.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 {
    color: var(--color-text-default);
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    padding-top: 0;
    margin: 0 0 24px;
    letter-spacing: -0.015em;
}

.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 {
    color: var(--color-text-body);
    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 {
    color: var(--color-text-body);
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 14px;
    margin: 6px 0;
}

.blog-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    height: 100%;
    min-height: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 0;
    background-color: transparent;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 6%);
    box-shadow: none;
    -webkit-transition: box-shadow .3s,-webkit-transform .3s;
    transition: box-shadow .3s,transform .3s,-webkit-transform .3s;
}

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

.blog-card--thumbnail {
    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 0;
    -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: 8px;
}

.blog-card--category {
    color: var(--color-tertiary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.blog-card--title {
    color: var(--color-primary);
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 0;
    margin-top: 0;
}

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

.blog-card--meta {
    font-size: 14px;
    color: var(--color-text-body);
}

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

.card-section--resources .carousel-nav-lg .flickity-prev-next-button {
    font-size: 26px;
    width: 45px;
    height: 45px;
}

.card-section--resources .carousel-nav-solid .flickity-prev-next-button {
    background: #ecedfd;
    border: 1px solid #202f44;
}

.card-section--resources .carousel-nav-solid .flickity-prev-next-button:before, .card-section--resources .carousel-nav-bordered .flickity-prev-next-button:before {
    background: #202f44;
}

.card-section--resources .carousel-nav-shadowed .flickity-prev-next-button {
    box-shadow: none;
}

.card-section--resources .flickity-prev-next-button.previous {
    left: 30px;
    top: 295px;
}

.card-section--resources .flickity-prev-next-button.next {
    left: 100px;
    top: 240px;
}

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

.blog-section--pagination .pagination-button.active {
    color: #c93667;
    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: 0;
    height: 100%;
}

.blog-single--content-wrapper {
    position: relative;
    margin-top: 18px;
    padding-top: 48px;
}

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

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

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

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

.blog-single--content .blog-content p {
    color: var(--color-text-default);
    font-size: 17px;
}

.blog-single--content .blog-content .section-title {
    color: var(--color-text-default);
}

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

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

.blog-single--content .blog-content img {
    margin-top: 20px;
    margin-bottom: 24px;
}

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

.blog-single--content-wrapper .social-links--wrapper {
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 24px;
}

.blog-single--content-wrapper .social-links--wrapper span {
    color: var(--color-text-body);
}

.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-left: 18px;
    overflow: hidden;
    pointer-events: all;
}

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


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

.cta-block .two-halves {
    display: flex;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.06);
    border-color: transparent;
    background: rgba(10,11,30,.5);
    margin: 0 auto;
    min-height: 580px;
}

.cta-block .two-halves--left, .cta-block .two-halves--right {
    width: 50%;
    padding: 35px;
}

.cta-block .two-halves .two-halves--right {
    background: var(--color-background-secondary);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.cta-block .cta-title {
    position: relative;
    color: var(--color-primary);
    text-align: left;
    font-size: 38px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 18px;
    z-index: 1;
}

.cta-block--description {
    position: relative;
    text-align: left;
    z-index: 1;
    margin: 14px 0 42px;
}

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

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

.cta-block--description .bullet-item {
    color: var(--color-text-body);
    display: block;
    position: relative;
    padding: 0;
    margin-top: 15px;
    padding-left: 40px;
}

.cta-block--description .bullet-item:before {
    content: "";
    width: 28px;
    height: 28px;
    text-align: center;
    margin-right: 10px;
    background: rgba(255,255,255,.25);
    display: block;
    position: absolute;
    left: 0;
    border-radius: 9999px;
    top: -1.9px;
    background-image: url(../img/checkmark.svg);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
}

.cta-block--description .bullet-item:first-of-type {
    margin-top: 30px;
}

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

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

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

.cta-block .form-block .text-field {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-body);
    background-color: transparent;
    border: 0px solid #9fa0ac;
    border-bottom-width: 1px;
    text-transform: none;
    border-radius: 0;
    display: block;
    padding: 8px 15px 12px;
    padding-left: 0;
    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%;
}

.form-block .text-field::-moz-placeholder {
    color: var(--color-text-body);
    opacity: 1
}

.form-block .text-field:-ms-input-placeholder {
    color: var(--color-text-body)
}

.form-block .text-field::-webkit-input-placeholder {
    color: var(--color-text-body)
}

.cta-block .form-block label {
    color: var(--color-text-body);
    font-size: 13px;
}

.cta-block .disclaimer, .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;
}

.cta-block-v2 {
    padding: 0;
    padding-bottom: 3rem;
    margin-top: 4rem;
    position: relative;
}

.cta-block--line {
    background: linear-gradient(90deg,transparent,rgb(90 172 158 / 65%) 50%,transparent);
    width: 80%;
    max-width: 500px;
    height: 1px;
    left: 50%;
    top: -0.125rem;
    transform: translateX(-50%);
    position: absolute;
}

.cta-block-v2 .stroke-lines {
    width: 100%;
    height: 100%;
    stroke: hsla(0,0%,100%,.05);
    inset: 0;
    -webkit-mask-image: radial-gradient(40% 80% at center,#000,transparent);
    mask-image: radial-gradient(40% 80% at center,#000,transparent);
    position: absolute;
    z-index: 0;
}

.cta-block-v2 .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: transparent;
    border-radius: 12px;
    padding: 4rem 4rem;
    padding-bottom: 1rem;
    width: 100%;
    overflow: hidden;
}

.cta-block-v2 .cta-title {
    position: relative;
    color: var(--color-text-default);
    text-align: center;
    font-size: 38px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

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

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

.cta-block--playground-wrapper {
    border-radius: 16px;
    background: #101321;
    width: 100%;
    height: 100%;
    margin: 40px auto 64px;
    overflow: hidden;
    position: relative;
}

.cta-block--playground-wrapper .hero-bg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    top: -.5%;
    bottom: 0%;
    right: -13%;
    position: absolute;
}

.cta-block--playground {
    color: var(--color-text-default);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
    padding: 2rem;
    position: relative;
    z-index: 9;
}

.cta-block--playground .heading-text {
    color: var(--color-text-default);
    font-size: 38px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    max-width: 450px;
    margin-top: 0;
}

.cta-block--playground .body-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-body);
    margin-bottom: 0;
    max-width: 450px;
}

.audio-wrapper {
    background: #101221;
    border: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    position: absolute;
    width: 100%;
    min-width: 50%;
    max-width: 600px;
    margin-bottom: 0;
    padding: 36px 32px;
    top: 5%;
    right: -6px;
    z-index: 10;
}

.audio-intro--wrapper {
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 13px;
    margin-bottom: 16px;
    color: var(--color-text-default);
    position: relative;
    background-image: linear-gradient(90.25deg,rgb(28 33 51 / 28%) .09%,hsla(0,0%,100%,.007) 163.42%);
}

.audio-intro--wrapper:after {
    content: "";
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(257.92deg,hsla(0,0%,100%,0) -15.06%,hsl(286.18deg 31.21% 27.08%) 56.1%,hsl(232.5deg 16.08% 23.58%) 80.48%);
    -webkit-mask: linear-gradient(#fff,#fff) content-box content-box,linear-gradient(#fff,#fff);
    -webkit-mask-composite: xor;
}

.audio-content--box {
    color: #fff;
    background-image: linear-gradient(90.25deg,rgb(28 33 51 / 28%) .09%,hsla(0,0%,100%,.007) 163.42%);
    border-radius: 8px;
    font-size: 13px;
    padding: 15px 18px 20px;
    margin-bottom: 16px;
    position: relative;
}

.audio-content--box:after {
    content: "";
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(257.92deg,hsla(0,0%,100%,0) -15.06%,hsl(286.18deg 31.21% 27.08%) 56.1%,hsl(232.5deg 16.08% 23.58%) 80.48%);
    -webkit-mask: linear-gradient(#fff,#fff) content-box content-box,linear-gradient(#fff,#fff);
    -webkit-mask-composite: xor;
}

.audio-content--box .heading-text, .audio-transcribe .heading-text {
    color: var(--color-text-body);
    font-size: 13px;
    /* font-weight: 500; */
    font-family: 'SFMono', monospace;
}

.audio-content--box .audio-player {
    width: 100%;
    background-color: transparent;
    border-radius: 24px;
    padding: 0;
    margin-top: 8px;
}

.audio-content--box .controls {
    display: flex;
    align-items: center;
}

.audio-content--box .play-btn {
    font-size: 16px;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 100px;
    color: rgba(21.96%,92.94%,67.45%,1);
    outline: none;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.audio-content--box .play-btn:hover {
    background-color: var(--color-primary);
    color: #101221;
}

.audio-content--box .play-btn svg {
    width: 18px;
    height: 18px;
}

.audio-content--box .progress-bar {
    width: 100%;
    height: 5px;
    background-color: rgba(11.76%,17.25%,23.53%,1);
    border-radius: 0;
    margin-left: 10px;
    position: relative;
}

.audio-content--box .progress {
    height: 100%;
    width: 0;
    background: linear-gradient(117.15deg, #A32B7B -7.16%, #E94057 56.41%, #F27121 119.98%);
}

.audio-content--box .slider {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    top: -5px;
    left: 0;
    pointer-events: none;
}

.audio-content--box .duration {
    margin-left: 10px;
    font-size: 14px;
    color: var(--color-text-default);
}

.audio-transcribe {
    color: #fff;
    background-image: linear-gradient(90.25deg,rgb(28 33 51 / 28%) .09%,hsla(0,0%,100%,.007) 163.42%);
    border-radius: 8px;
    font-size: 13px;
    position: relative;
    padding: 18px 18px;
}

.audio-transcribe:after {
    content: "";
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(257.92deg,hsla(0,0%,100%,0) -15.06%,hsl(286.18deg 31.21% 27.08%) 56.1%,hsl(232.5deg 16.08% 23.58%) 80.48%);
    -webkit-mask: linear-gradient(#fff,#fff) content-box content-box,linear-gradient(#fff,#fff);
    -webkit-mask-composite: xor;
}

.audio-transcribe .transcription-output--wrapper {
    width: 100%;
    min-height: 200px;
    margin-top: 16px;
}

.audio-transcribe .transcription-output {
    color: #fff;
    display: block;
    /* font-family: 'SFMono', monospace; */
    font-size: 14px;
    line-height: 1.5;
    margin-top: 20px;
    opacity: 0;
    animation: typingEffect 2s steps(30) forwards;
    white-space: wrap;
    overflow: hidden;
}

.cursor {
    display: inline-block;
    width: 0.4em;
    height: 1.1em;
    background-color: #fff;
    vertical-align: text-bottom;
    animation: blinkCursor 1s infinite;
}

@keyframes typingEffect {
    from {
        width: 0;
        opacity: 1;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes blinkCursor {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}



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

.our-mission--section .hero-bg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    top: -.5%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    z-index: -1;
}

.our-mission--section .section-content {
    text-align: left;
    margin-bottom: 80px;
}

.our-mission--section .small-title, .career-section .content-wrap .small-title {
    color: inherit;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-top: 14px;
    margin-bottom: 24px;
    white-space: nowrap;
}

.our-mission--section h2, .career-section .content-wrap .large-title {
    color: var(--color-text-default);
    font-family: 'Manrope', sans-serif;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 24px;
}

.our-mission--section h3 {
    color: var(--color-text-default);
    font-size: 40px;
    line-height: 1.3;
    margin-top: 0;
}

.our-mission--section .body-text, .career-section .content-wrap .body-text {
    color: var(--color-text-body);
    font-size: 18px;
    line-height: 1.65;
    padding-bottom: 16px;
}

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

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

.cv-section {
    padding: 80px 0;
    position: relative;
}

.cv-content--block {
    background-color: var(--color-background-tertiary);
    border-radius: 16px;
    padding: 80px 64px;
}

.cv-content--header h3 {
    color: #fff;
    font-size: 32px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 8px;
}

.cv-content--header p {
    color: var(--color-text-body);
}

.cv-content--grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3,minmax(0,1fr));
    margin-top: 32px;
    margin-bottom: 0;
}

.cv-grid--list {
    font-size: .875rem;
    line-height: 1.25rem;
    padding-top: 16px;
    padding-bottom: 16px;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    text-decoration: none;
    justify-content: flex-end;
}

.cv-grid--list .list-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.cv-grid--list .icon-wrapper {
    position: relative;
}

.cv-grid--list .icon-wrapper .icon {
    width: 36px;
    height: 36px;
    display: block;
    color: #fff;
}

.cv-grid--list .list-header .heading-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 16px;
    display: inline-block;
    color: var(--color-offwhite);
}

.cv-grid--list .body-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-offwhite);
    margin-top: 18px;
    margin-bottom: 0;
}



/* Team */
.team-section {
    padding: 80px 0;
}

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

.team-card {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    display: flex;
}

.team-avatar--wrapper {
    align-items: center;
    display: flex;
    gap: 1rem;
}

.team-avatar--wrapper .team-avatar {
    width: 64px;
    height: 64px;
    min-height: 64px;
    min-width: 64px;
    border-radius: 100px;
}

.team-avatar--wrapper .team-avatar .image {
    border-radius: 100px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-member--details .team-name {
    color: var(--color-text-default);
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}

.team-member--details .team-pos {
    color: var(--color-text-default);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}


/* Career */
.career-section .content-wrap {
    text-align: center;
}

.career-section .content-wrap .large-title {
    margin-top: 0;
}

.career-section .content-wrap .body-text {
    color: var(--color-text-default);
    font-size: 16px;
}

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



/* 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 {
    color: var(--color-text-default);
    font-size: 32px;
    font-family: 'Manrope', sans-serif;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 12px;
}

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

.benefits-grid {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    gap: 42px;
    -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: var(--color-text-default);
}

.benefits-grid .benefits-item .benefits-text--small {
    color: var(--color-text-body);;
    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: 1.25rem 0;
}

.jobs-listing td {
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.jobs-listing h4, .jobs-listing p {
    color: var(--color-text-default);
    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: 120px 0;
    position: relative;
}

.product-pricing .gradient-bg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    opacity: .3;
    position: absolute;
    top: -.5%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    z-index: -1;
}

.product-pricing .content-wrap {
    text-align: left;
    margin-top: 48px;
    margin-bottom: 64px;
}

.product-pricing .content-wrap .small-title {
    color: var(--color-text-body);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 16px;
}

.product-pricing .content-wrap .large-title {
    color: var(--color-primary);
    font-family: 'Manrope', sans-serif;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 24px;
}

.product-pricing .content-wrap .body-text {
    color: var(--color-text-body);
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 24px;
}

.pricing-3x--benefits {
    display: grid;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 64px;
    width: 100%;
}

.pricing-benefit--item {
    width: 100%;
    color: #ccdae7;
    border-bottom: 1px solid #21262d;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1em;
    display: flex;
    justify-self: start;
}

.pricing-benefit {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-auto-columns: auto;
    grid-auto-flow: column;
    justify-content: start;
    display: grid;
    align-items: center;
    position: relative;
    z-index: 2;
}

.pricing-benefit .icon {
    width: 24px;
    height: 24px;
}

.pricing-benefit .text {
    color: var(--color-text-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
}

.pricing-card--grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3,minmax(0,1fr));
}

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

.pricing-card.popular {
    background-color: #230c0e;
    border-color: #7d2b36;
}

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

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

.pricing-price {
    color: var(--color-offwhite);
    font-size: 48px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    line-height: 1;
}

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

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

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

.pricing-card.popular .pricing-cta--button {
    background-color: #a02d3c;
    border-color: #dc4c5f;
}

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

.pricing-table--wrapper {
    margin-top: 4rem;
    margin-bottom: 4rem;
    position: relative;;
}

.pricing-table {
    border: 0;
    width: 100%;
    text-align: left;
}

.pricing-table thead th:not(:first-child) {
    font-weight: 500;
    width: 12rem;
}

.pricing-table tr {
    border-color: var(--border-color);
}

.pricing-table thead tr {
    border-width: 2px;
}

.pricing-table tbody th, .pricing-table tbody td, .pricing-table thead th {
    border: 0;
    color: var(--color-text-default);
    padding-left: 0;
}

.pricing-table tbody td {
    font-size: 15px;
    line-height: 1.4;
}

.pricing-table .check-mark {
    color: #09ce68;
}

.pricing-table .cancel-mark {
    color: var(--color-text-body);
}

.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-family: 'Manrope', sans-serif;
    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: 13px;
}

.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-family: 'Manrope', sans-serif;
    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;
}

.additional-features--wrapper {
    border-top: 1px solid rgba(130,147,170,.5);
    padding-top: 24px;
    margin-top: 80px;
}

.additional-features {
    display: block;
}

.additional-features ul {
    display: flex;
    list-style: none;
    flex-flow: row wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.additional-features ul li {
    align-items: center;
    color: var(--color-text-default);
    display: inline-flex;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
}

.additional-features .m-text {
    color: var(--color-text-default);
    font-size: 16px;
    line-height: 1.4;
    margin-top: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.additional-features ul .svg-icon {
    margin-right: 8px;
}



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

.faq-wrapper {
    background-color: var(--color-background-tertiary);
    border-radius: 12px;
    padding: 72px 3%;
}

.faq-wrapper .section-title--wrap {
    max-width: 620px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

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

.faq-wrapper .section-title {
    position: relative;
    color: var(--color-primary);
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 40px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    z-index: 1;
}

.faq-wrapper .faq-content-wrapper {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.faq-wrapper .faq-content {
    margin: 3rem 0 1rem;
}

.faq-wrapper .faq-question--wrap {
    cursor: pointer;
    background-color: var(--color-background-secondary);
    margin-bottom: 24px;
    padding: 32px;
}

.accordion-title a {
    color: var(--color-primary);
    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 #17182a;
}

.faq-circle {
    width: 48px;
    height: 48px;
    background-color: var(--border-color);
    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: 30px;
}

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


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


/* Pre-footer */
.pre-footer {
    padding: 0;
    position: relative;
}

.pre-footer--grid {
    display: grid;
    margin-top: 4rem;
    margin-bottom: 0;
    padding: 0;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 0;
    border-top: 1px solid #263544;
    border-bottom: 1px solid transparent;
}

.pre-footer--card {
    position: relative;
    padding: 3rem 2rem 2rem;
    border-right: 1px solid #263544;
    text-decoration: none;
    color: #e0e0e0;
    grid-column: initial;
    background-color: transparent;
    transition: all .32s ease-out;
}

.pre-footer--card:first-child {
    padding-left: 4rem;
}

.pre-footer--card:nth-child(3) {
    padding-right: 4rem;
    border-right: none;
}

.pre-footer--card .content-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 2rem;
    justify-content: flex-start;
}

.pre-footer--card .content-wrap .header-text {
    color: #fcfcfc;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.01em;
    height: 5ex;
    margin: 0;
}

.pre-footer--card .cta-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.pre-footer--card .cta-wrapper .des-text {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 1.5rem;
}

.pre-footer--card .cta-wrapper .svg-icon  {
    fill: currentColor;
    min-width: 32px;
}


/* Footer */
.footer {
    position: relative;
    color: #98a2aa;
    padding: 0;
}

.footer-section {
    padding: 32px 0;
    border-top: 1px solid #263544;
    border: none;
}

.footer-nav--brand {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    border-top: 1px solid hsla(0,0%,100%,.1);
    padding-top: 1rem;
}

.footer-copyright--wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom--links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer a:not(.btn) {
    font-size: 16px;
    color: var(--color-text-default);
    display: inline-block;
}

.footer a:not(.btn):hover {
    color: var(--color-primary);
}

.footer-logo {
    width: 145px;
}

.footer-contact--text {
    font-size: 15px;
    line-height: 24px;
    margin-top: 40px;
}

.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 .footer-menu--grid {
    display: grid;
    grid-column-gap: 20px;
    grid-template-columns: repeat(3,minmax(10px,1fr));
}

.footer .footer-menu--item {
    overflow: hidden;
    position: relative;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-direction: row-reverse; */
    margin: 0;
}

.footer-bottom p, .footer-nav--brand p {
    color: var(--color-text-default);
    font-size: 14px;
    opacity: .8;
    margin: 0;
}

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

.footer-locations {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.footer-locations .location-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-offwhite);
}

.footer-locations .location-item .flag-image {
    width: 18px;
    height: auto;
}



/* 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) {
    .d-xs-none {
        display: none;
    }
    .navbar-brand img {
        width: 130px;
        min-width: 130px;
    }
    .navbar-header > * {
        -webkit-box-flex: 0;
        flex: 0 0 100%;
    }
    .nav-trigger .bar {
        background-color: var(--color-primary);
    }
    .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;
    }
    .megamenu .grid-menu {
        display: block;
    }
    .mega-link .text-icon--wrapper .link-name, .megamenu-row--lists li a .link-name {
        font-size: 14px;
    }
    .mega-link .link-description, .megamenu-row--lists li a .link-description, .megamenu .grid-menu--wrapper h4 {
        display: none;
    }
    .megamenu-row--wrapper h4 {
        font-size: 14px;
        margin-top: 24px;
    }
    ul.nav.main-nav > li > a, [data-mobile-nav-style=modern] .megamenu .megamenu-container, .megamenu-description, .megamenu-row--wrapper {
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 22px;

    }
    ul.nav.main-nav > li > a {
        font-size: 18px;
    }
    [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;
    }
    .megamenu .lqd-custom-menu li:not(:last-child) {
        border-bottom: 1px solid var(--border-color);
    }
    .mega-link .text-icon--wrapper .image-icon {
        display: none;
    }
    .megamenu-row--wrapper {
        padding-right: 0;
    }
    .mainbar-wrap .row {
        flex-direction: row !important;
    }
    .main-header .menu-right {
        display: flex;
        flex-direction: row !important;
    }
    .main-header .menu-right .header-module {
        display: inline-block;
        padding-top: 14px;
        padding-right: 15px;
    }
    .header-module .the__button {
        font-size: 13px;
        line-height: 24px;
        height: auto;
        padding: 6px 16px;
    }
    .the__button {
        padding: 15px 20px;
        min-width: 130px;
    }
    .the__button+.the__button {
        background: none;
        border: none;
        color: var(--color-text-default);
    }
    .the__button+.the__button.btn--white .the__button-arrow {
        color: currentColor;
    }
    .hero-copy, .features-copy, .cta-block-v2 .cta-block--description, .use-cases--copy h3, .solutions-header, .solutions-why .copy, .cta-block .two-halves--left, .cta-block .two-halves--right, .pricing-calculator--left, .pricing-calculator--right {
        width: 100%;
    }
    .hero-copy h1 {
        font-size: 38px;
    }
    .hero-copy--wrap {
        margin-top: 0px;
        margin-bottom: 0px;
        padding-top: 16px;
    }
    .hero-tag--gradient {
        font-size: 14px;
    }
    .hero-body--text {
        font-size: 16px;
    }
    .video-with--preview .play-with--sound {
        font-size: 14px;
        padding: .5rem 1rem;
        left: .75rem;
        bottom: 1.25rem;
    }
    .our-mission--section .section-content {
        margin-bottom: 24px;
    }
    .cv-content--block {
        padding: 40px 18px;
    }
    .features-block .intro-grid, .features-data--wrapper, .features-about--component, .features-about--component .right-content .content-item {
        display: flex;
        flex-direction: column;
    }
    .features-block .intro-grid .intro-text {
        font-size: 28px;
    }
    .features-grid--list {
        display: block;
        margin-bottom: 8px;
    }
    .features-data--wrapper .data-number {
        font-size: 48px;
    }
    .features-about--component {
        gap: 2rem;
    }
    .features-about--component .left-content .large-text {
        font-size: 24px;
        line-height: 1.4;
    }
    .features-about--component .right-content .content-item {
        align-items: flex-start;
        gap: 1.25rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .why-list, .solutions-why .why-flex--wrapper, .cv-content--grid, .pricing-3x--benefits, .pricing-card--grid, .solutions-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .cv-content--grid, .pricing-3x--benefits, .pricing-card--grid {
        gap: 20px;
    }
    .features-block .hero-bg, .solutions-section .hero-bg {
        width: 100%;
        height: 80%;
        object-fit: cover;
        top: -86%;
    }
    .use-cases, .use-cases--rm {
        padding-top: 64px;
    }
    .use-cases--rm .section-header {
        padding-bottom: 2rem;
    }
    .use-cases--rm .section-header .content-wrap h3 {
        font-size: 24px;
        line-height: 1.5;
    }
    .use-cases--rm .section-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    .use-cases--rm .section-grid .left-content .tabs-nav {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }
    .use-cases--rm .section-grid .left-content .tabs-nav-filled .tabs-nav a {
        font-size: 21px;
    }
    .use-cases--rm .section-grid .right-content .image-wrapper {
        height: 400px;
    }
    .solutions-section .hero-bg {
        top: -2%;
    }
    .why-list .why-heading {
        font-size: 20px;
    }
    .blog-card {
        margin-bottom: 48px;
    }
    .card-section--resources, .blog-resources, .blog-resources--single {
        padding-bottom: 48px;
    }
    .cards-section--copy h3, .features-copy h3, .use-cases--copy h3, .solutions-header .header-text, .cta-block .cta-title, .our-mission--section h3 {
        font-size: 28px;
    }
    .cards-section--copy p, .cta-block--description p {
        font-size: 16px;
    }
    .solutions-header--wrap, .product-pricing .content-wrap {
        padding-top: 0;
        margin-top: 0;
    }
    .solutions-section .solutions-list--card .large-title, .faq-wrapper .section-title {
        font-size: 24px;
    }
    .solutions-grid .solution-card {
        min-height: 300px;
        position: relative;
    }
    .use-cases--selection-wrapper {
        margin-top: 30px;
    }
    .features-block, .use-cases {
        padding: 80px 0 96px;
    }
    .features-copy p {
        font-size: 16px;
    }
    .levels-card {
        margin-bottom: 32px;
    }
    .cta-block-v2, .our-mission--section, .career-section, .product-pricing {
        padding-top: 48px;
    }
    .cta-block-v2 .cta-block--content {
        padding: 2.5rem 1.2rem;
    }
    .cta-block-v2 .cta-title, .code-snippet--section .code-snippet--copy h3 {
        font-size: 24px;
    }
    .cta-block .two-halves, .pricing-calculator--wrapper {
        flex-direction: column;
    }
    .cta-block .two-halves .two-halves--right, .pricing-calculator--right {
        border-top-right-radius: 0;
        border-bottom-left-radius: 16px;
    }
    .footer {
        padding-bottom: 40px;
    }
    .footer-nav--brand {
        flex-direction: column;
        gap: 2rem;
        padding-top: 3rem;
    }
    .footer-copyright--wrapper {
        flex-direction: column;
        gap: .5rem;
    }
    .footer-locations {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    /* .footer-locations .location-item {
        flex: 0 1 calc(33% - 10px);
    } */
    .footer .footer-menu--grid {
        grid-template-columns: repeat(2,minmax(10px,1fr));
        margin-top: 40px;
    }
    .footer .footer-menu--item {
        margin-bottom: 30px;
    }
    .footer .widget-title {
        font-size: 14px;
        margin-top: 16px;
        margin-bottom: 12px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 40px;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none!important;
    }
}

@media only screen and (max-width: 1023px) {
    .dark-mode--switch-container {
        display:none
    }
}

@media only screen and (min-width: 768px)and (max-width:1439px) {
    .dark-mode--switch-inner {
        padding-left:30px
    }
}

