:root {
    --grey: #323232;
    --dark-grey: #141415;
    --gradient1-left: #fa5853;
    --text-color: #dadada;
    --tomato: #fa5853;
    --light-blue: #f4f8fb;
    --gradient2-left: #60aef8;
    --gradient2-middle: #f46692;
    --gradient2-right: #f3a562;
    --light-grey: #787878;
    --gradient1-middle: #f46692;
    --gradient1-right: #ffc444;
    --dark-black: #212121;
    --light-grey-2: whitesmoke;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.w-checkbox {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block;
}

.w-checkbox:before {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-checkbox:after {
    content: " ";
    clear: both;
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-checkbox-input {
    float: left;
    margin: 4px 0 0 -20px;
    line-height: normal;
}

.w-checkbox-input--inputType-custom {
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 12px;
    height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
    background-color: #3898ec;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
    box-shadow: 0 0 3px 1px #3898ec;
}

h1 {
    color: var(--grey);
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: Manrope, sans-serif;
    font-size: 75px;
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    color: var(--grey);
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: Manrope, sans-serif;
    font-size: 70px;
    font-weight: 800;
    line-height: 1.2;
}

h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: Manrope, sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Manrope, sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
}

h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Manrope, sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.3;
}

h6 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 10px;
}

a {
    color: var(--grey);
    text-decoration: none;
    transition: color .2s;
}

a<span class="hljs-selector-pseudo">:hover {
    color: var(--dark-grey);
    text-decoration: underline;
}

ul {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 30px;
    list-style-type: disc;
}

ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 30px;
    list-style-type: decimal;
}

li {
    margin-bottom: 8px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
}

img {
    max-width: 100%;
    display: inline-block;
}

blockquote {
    border-style: solid;
    border-width: 0 0 0 3px;
    border-color: black black black var(--gradient1-left);
    color: var(--dark-grey);
    margin: 1em auto;
    padding: 1em 0 1em 1em;
    font-family: Manrope, sans-serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.2;
    overflow: visible;
}

figure {
    margin-top: 20px;
    margin-bottom: 20px;
}

figcaption {
    color: var(--text-color);
    text-align: center;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 400;
}

.fixed-nav {
    z-index: 500;
    background-color: #fff;
    height: 75px;
    position: fixed;
    inset: 0% 0% auto;
    box-shadow: 0 1px #f1f1f1;
}

.nav-logo {
    height: 40px;
}

.nav-link {
    opacity: .8;
    color: var(--grey);
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 1em;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    position: relative;
}

.nav-link<span class="hljs-selector-pseudo">:hover {
    opacity: 1;
    color: var(--grey);
    text-decoration: none;
}

.nav-link.w--current {
    color: var(--tomato);
}

.footer {
    text-align: center;
    align-items: flex-start;
    margin-top: auto;
    padding: 0;
}

.footer-flex-container {
    text-align: left;
    flex-direction: row;
    justify-content: flex-start;
    display: flex;
}

.section {
    position: relative;
}

.section.dark {
    background-color: var(--dark-grey);
}

.section.light-blue-bg {
    background-color: var(--light-blue);
}

.section.second {
    margin-top: 50vh;
}

.section.timeline {
    z-index: -3;
}

.section.white {
    background-color: #fff;
}

.section.blue {
    background-color: var(--light-blue);
}

.section.grey {
    background-color: #dee2e5;
}

.container {
    text-align: left;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1em;
}

.container.nav-container {
    align-items: center;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
}

.container.phone-container {
    padding-top: 6rem;
    padding-bottom: 0;
}

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

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

.container.no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.hero-text {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 210px;
    font-weight: 800;
    line-height: 1.2;
    overflow: hidden;
}

.hero-text._1 {
    text-align: right;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(60deg, #80cce2 20%, #5f7bec 51%, #9e6ab4 80%);
    -webkit-background-clip: text;
    background-clip: text;
    width: 50vw;
    padding-right: 1rem;
}

.hero-text._2 {
    text-align: left;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(60deg, #9e6ab4, #ce678d 30%, #e4b764 61%);
    -webkit-background-clip: text;
    background-clip: text;
    width: 50vw;
    padding-left: 1rem;
}

.black-box {
    background-color: var(--dark-grey);
    width: 100%;
    padding: 1em;
}

.white-text {
    color: #fff;
}

.section-hero {
    padding-top: 3em;
    position: relative;
}

.section-hero.white {
    background-color: #fff;
}

.content {
    flex: 1;
}

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

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

.link {
    flex: 0 auto;
    margin-right: 5px;
    padding-bottom: 5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.link<span class="hljs-selector-pseudo">:hover {
    text-decoration: none;
}

.link-underline {
    background-color: #13cc78;
    background-image: linear-gradient(to right, var(--gradient2-left), var(--gradient2-middle) 50%, var(--gradient2-right));
    width: 100%;
    height: 2px;
    position: absolute;
    inset: auto auto 0% 0%;
}

.grid-6-col {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.grid-6-col.margin {
    margin-top: 2em;
    margin-bottom: 2em;
}

.grid-6-col.left {
    justify-items: start;
}

.grid-6-col.full-height {
    z-index: 11;
    height: 100%;
    position: relative;
}

.grid-6-col.margin-large {
    margin-top: 2em;
    margin-bottom: 4em;
}

.grid-6-col._80-width {
    width: 100%;
}

.project-item {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 50px;
    text-decoration: none;
    position: relative;
}

.project-item<span class="hljs-selector-pseudo">:hover {
    text-decoration: none;
}

.nav-menu {
    z-index: 1;
    flex: 1;
    padding-top: 6px;
    padding-bottom: 6px;
    display: flex;
}

.brand {
    z-index: 2;
    align-self: center;
    margin-right: 30px;
    padding-top: 0;
    padding-bottom: 0;
}

.menu-button {
    z-index: 2;
}

.wrapper {
    flex-direction: column;
    min-height: 100vh;
    display: flex;
}

.project-item-style-2 {
    border-bottom: 5px solid #fff;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 60px;
    padding-right: 160px;
    text-decoration: none;
    position: relative;
}

.project-item-style-2<span class="hljs-selector-pseudo">:hover {
    text-decoration: none;
}

.heading-display {
    font-size: 70px;
}

.utility-page-wrap {
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    min-height: 60vh;
    max-height: 100%;
    display: flex;
}

.utility-page-content {
    text-align: center;
    flex-direction: column;
    max-width: 40vw;
    display: flex;
}

.utility-page-form {
    flex-direction: column;
    align-items: stretch;
    display: flex;
}

.represent-title {
    border: 1px solid var(--text-color);
    background-color: #fff;
    background-image: linear-gradient(86deg, var(--gradient1-left), var(--gradient2-left) 49%, var(--gradient1-left));
    color: #fff;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
}

.represent-container {
    margin-top: 100px;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.represent-container.first {
    margin-top: 0;
}

.post-item {
    padding-bottom: 0;
}

.post-item<span class="hljs-selector-pseudo">:hover {
    text-decoration: none;
}

.subscribe-form {
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 0;
}

.subscribe-form-flex {
    flex-direction: row;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: relative;
}

.subscribe-form-input-wrapper {
    text-align: left;
    flex: 1;
    position: relative;
}

.form-input {
    border: 1px solid var(--text-color);
    color: var(--dark-grey);
    background-color: #f4f8fb40;
    border-radius: 5px;
    min-width: 350px;
    height: 47px;
    margin-bottom: 0;
    padding: 10px;
    font-size: 18px;
    line-height: 1;
    transition: border-color .2s;
}

.form-input<span class="hljs-selector-pseudo">:focus {
    border-color: var(--gradient1-left);
}

.form-input<span class="hljs-selector-pseudo">::placeholder {
    color: var(--text-color);
}

.form-input.subscribe-input {
    border-radius: 20px;
    height: 70px;
    padding-left: 20px;
    font-size: 25px;
}

.success-message {
    border: 2px solid var(--gradient1-left);
    background-color: var(--light-blue);
    background-image: linear-gradient(to right, var(--gradient2-left), var(--gradient2-middle) 54%, var(--gradient2-right));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    border-radius: 5px;
    padding: 15px 20px;
}

.error-message {
    color: var(--gradient1-left);
    background-color: #fee;
    border-radius: 3px;
}

.asset-licensing-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
}

.text-gradient-1 {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(111deg, #60aef8, #f46692 50%, #f3a562);
    -webkit-background-clip: text;
    background-clip: text;
}

.text-gradient-2 {
    background-image: linear-gradient(111deg, var(--gradient2-left), var(--gradient2-middle) 50%, var(--gradient2-right));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.text-gradient-2.no-margin-top {
    padding-bottom: 5px;
}

.text-gradient-2.margin-bottom {
    margin-bottom: 40px;
}

.footer-logo-link {
    max-width: 130px;
    margin-bottom: 1em;
    margin-right: 2em;
}

.footer-logo-link.w--current {
    width: 110px;
    max-width: 110px;
}

.footer-image {
    text-align: left;
    object-fit: contain;
    object-position: 0% 50%;
    width: 200px;
    height: 100px;
}

.grey-text {
    color: var(--light-grey);
    text-align: left;
    padding-top: 20px;
    font-size: 15px;
}

.grey-text.top-margin {
    margin-top: 2em;
}

.gradient-line {
    background-image: linear-gradient(103deg, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right) 103%);
    width: 100%;
    height: 3px;
}

.gradient-line.line-margin {
    margin-top: 20px;
    margin-bottom: 20px;
}

.nav-cta-button {
    text-align: right;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.button {
    background-color: var(--gradient1-left);
    color: #fff;
    text-align: center;
    letter-spacing: 0;
    background-image: linear-gradient(to right, #57d0e3, #4f75f4 25%, #e45f85 75%, #f1b552);
    border-radius: 5px;
    min-width: 180px;
    padding: 13px 20px;
    font-family: Open Sans, sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: letter-spacing .3s, color .3s;
}

.button<span class="hljs-selector-pseudo">:hover {
    color: #fff;
    letter-spacing: 1px;
    text-decoration: none;
}

.button.btn-subscribe {
    background-image: url('../images/Arrow-White.svg'), linear-gradient(to right, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right));
    background-position: 50%, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: auto, auto;
    border-radius: 15px;
    width: 100px;
    min-width: 100px;
    line-height: 3.5;
    transition: background-position .3s, letter-spacing .3s, color .2s;
    position: absolute;
    inset: 5px 5px 5px auto;
}

.button.btn-subscribe<span class="hljs-selector-pseudo">:hover {
    background-position: 55%, 0 0;
}

.button.download {
    background-color: var(--dark-grey);
    background-image: none;
    border-radius: 8px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    display: flex;
}

.button.download<span class="hljs-selector-pseudo">:hover {
    background-color: var(--dark-black);
    letter-spacing: 0;
}

.button.rounded-orage-button {
    background-color: #fa5853;
    background-image: none;
    border-radius: 200px;
    flex: 1;
    margin-left: 24px;
    margin-right: 12px;
}

.button.rounded-orage-button.no-margin {
    margin-top: 12px;
    margin-left: 0;
}

.button.rounded-orage-button.margin {
    margin-bottom: 2em;
}

.button.orange-button {
    background-color: var(--tomato);
    background-image: none;
}

.button.black {
    background-color: #141415;
    background-image: none;
}

.button.top-margin {
    margin-top: 1.5em;
}

.button.modal-black {
    background-color: #141415;
    background-image: none;
}

.button.modal-white {
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 2px solid #000;
}

.card-item {
    background-color: #1d1e1f;
    border-radius: 20px;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px #0000000d;
}

.card-item<span class="hljs-selector-pseudo">:hover {
    text-decoration: none;
}

.card-item.light {
    background-color: #fcfdff;
    justify-content: space-between;
}

.card-item.white {
    background-color: #fff;
}

.white-40 {
    color: #fff6;
}

.card-item-content {
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 2em;
    display: flex;
    position: relative;
}

.card-item-content.download {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.no-margin {
    margin: 0;
}

.text-center {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
}

.text-center.top-margin {
    margin-top: 5em;
}

.hero-product-demo {
    width: 100%;
    height: 160vh;
    display: block;
    position: relative;
}

.product-demo-sticky {
    z-index: 1;
    min-height: auto;
    padding-top: 0;
    position: sticky;
    top: 110px;
}

.small-container {
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}

.small-container.left-align {
    align-items: flex-start;
}

.customers-panel {
    padding-top: 3em;
    padding-bottom: 3em;
}

.text-holder {
    padding-top: 2em;
    padding-bottom: 2em;
    position: relative;
}

.text-holder.overflow-hidden {
    overflow: hidden;
}

.customer-image {
    object-fit: contain;
    max-height: 30px;
}

.text-container {
    max-width: 70%;
    padding-bottom: 40px;
}

.product-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em;
    display: flex;
    position: relative;
    top: -30px;
    overflow: hidden;
}

.play-icon-holder {
    z-index: 7;
    cursor: pointer;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    transition: box-shadow .2s;
    position: absolute;
    inset: 50% auto auto 50%;
}

.play-icon-holder<span class="hljs-selector-pseudo">:hover {
    box-shadow: 0 0 9px 4px #0000004d;
}

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

.play-icon-image {
    border: 1px solid #fa585369;
    border-radius: 100%;
    position: relative;
    box-shadow: 0 0 30px #0000000d;
}

.product-phone-image {
    z-index: 1;
    width: 100%;
    position: relative;
}

.product-phone-demo-image {
    opacity: 1;
    object-fit: cover;
    border-radius: 40px;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    inset: 0%;
}

.grid-10-columns {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.grid-10-columns.margin-top {
    margin-top: 15px;
}

.team-item {
    color: #fff;
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
}

.team-item<span class="hljs-selector-pseudo">:hover {
    text-decoration: none;
}

.change-log-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 2fr;
    grid-auto-columns: 1fr;
    place-content: space-around start;
    place-items: center start;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    display: grid;
}

.feature-grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
    margin-bottom: 3em;
}

.ellipse-left {
    z-index: -1;
    background-image: url('../images/Ellipse-1.png');
    background-position: 50%;
    background-size: cover;
    width: 520px;
    height: 650px;
    position: absolute;
    inset: 5em auto auto -430px;
}

.ellipse-left.top {
    inset: -70% auto auto -34%;
}

.ellipse-right {
    z-index: -1;
    background-image: url('../images/Ellipse-2.png');
    background-position: 50%;
    background-size: cover;
    width: 650px;
    height: 650px;
    position: absolute;
    inset: 0% -530px auto auto;
}

.ellipse-right.top {
    top: -53%;
    right: -505px;
}

.ellipse-right.bot {
    opacity: .3;
    inset: auto -15% -71% -16%;
}

.app-icon-holder {
    border-radius: 50%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    padding: 5px;
    display: flex;
}

.app-icon {
    width: 100%;
}

.main-hero-container {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 70vh;
    display: flex;
    overflow: hidden;
}

.ellipses-holder {
    z-index: -1;
    position: absolute;
    inset: 0%;
    overflow: hidden;
}

.ellipses-holder.cta {
    z-index: 1;
}

.ellipses-holder._30-opacity {
    opacity: .3;
}

.hero-text-holder {
    flex-direction: row;
    justify-content: center;
    width: 100vw;
    display: flex;
    position: absolute;
    top: 200px;
    overflow: hidden;
}

.hero-text-sticky {
    flex-direction: row;
    justify-content: center;
    width: 100vw;
    display: flex;
    position: sticky;
    top: 75px;
    overflow: visible;
}

.product-phone-content {
    z-index: -1;
    position: absolute;
    inset: 36px 37px 35px 36px;
    overflow: hidden;
}

.product-phone-image-holder {
    width: 400px;
    position: relative;
}

.iphone-lock-screen-image {
    opacity: 1;
    object-fit: cover;
    border-radius: 36px;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    inset: 0%;
}

.main-heading {
    font-size: 55px;
}

.grid-5-col {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.download-buttons {
    margin-top: 2em;
    margin-bottom: 3em;
    display: flex;
}

.download-buttons.footer {
    margin-top: 0;
    margin-bottom: 0;
}

.download-button {
    margin-right: 30px;
}

.download-button.last {
    margin-right: 0;
}

.download-button-icon {
    width: 25px;
    min-width: 25px;
    max-width: 25px;
    height: 25px;
    min-height: 25px;
    max-height: 25px;
    margin-right: 5px;
}

.image-circles {
    object-fit: cover;
    object-position: 50% 0%;
    height: 300px;
}

.image-circles.bottom {
    object-fit: cover;
    height: auto;
    padding-right: 4em;
}

.card-feature-center {
    text-align: center;
    width: 100%;
}

.card-feature-icon {
    height: 65px;
    margin-bottom: .5em;
}

.content-sticky {
    position: sticky;
    top: 100px;
}

.trusted-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20vh;
    display: flex;
}

.trusted-item.last {
    margin-bottom: 0;
}

.trusted-no {
    background-image: linear-gradient(128deg, var(--gradient2-left), var(--gradient1-middle) 50%, var(--gradient1-right));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
}

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

.trusted-item-header {
    align-items: center;
    display: flex;
}

.trusted-white-overlay {
    background-image: linear-gradient(#fff, #fff0);
    width: 49vw;
    height: 10em;
    position: sticky;
    inset: 75px 0% auto;
}

.trusted-white-overlay.bottom {
    background-image: linear-gradient(to top, #fff, #ffffff45 73%, #fff0);
    height: 20vh;
    top: 80vh;
}

.trusted-overlay-container {
    width: 1px;
    height: 100%;
    position: absolute;
    inset: 0% 0% auto;
}

.trusted-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
}

.trusted-content.trusted-list {
    padding-top: 70vh;
}

.text-small {
    font-size: 60%;
}

.card-iphone {
    width: 100%;
    height: 390px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.card-iphone-image {
    z-index: 1;
    width: 100%;
    position: relative;
}

.light-grey {
    color: var(--light-grey);
}

.light-grey.small {
    margin-bottom: 0;
    font-size: 10px;
}

.card-iphone-overlay {
    z-index: 2;
    background-image: linear-gradient(to top, #1d1e1f, #1d1e1e00);
    height: 30%;
    position: absolute;
    inset: auto 0% 0%;
}

.card-phone-image-container {
    z-index: 0;
    border-radius: 14px;
    position: absolute;
    inset: 2.3% 4.9%;
    overflow: hidden;
}

.card-phone-image-container.small {
    z-index: 0;
}

.card-phone-image-container.small.landscape {
    inset: 4% 2%;
}

.card-phone-image-container.justify-bottom {
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
}

.card-phone-image-container.on-dark {
    top: 8%;
    left: 8.5%;
    right: 8.5%;
}

.card-phone-image-container.center-content {
    justify-content: center;
    align-items: center;
    display: flex;
}

.width-full {
    width: 100%;
}

.card-iphone-screelock {
    border-radius: 29px;
    width: 100%;
    position: absolute;
    inset: 0%;
}

.dont-take-our-word-title {
    text-align: center;
    margin-top: 5em;
    margin-bottom: 2em;
}

.testimonial-header {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1.5em;
    display: flex;
}

.testimonial-text {
    flex: 1;
}

.testimonial-picture {
    border-radius: 50%;
    width: 43px;
    height: 43px;
    margin-right: 15px;
}

.testimonials-container {
    position: relative;
}

.testimonial-see-more {
    z-index: 2;
    background-image: linear-gradient(to top, var(--dark-grey), #141415d1 50%, #14141500);
    text-align: center;
    border-radius: 0 0 20px 20px;
    padding-top: 7em;
    position: absolute;
    inset: auto 0% 1em;
}

.more-testimonials {
    margin-top: 1em;
    position: relative;
    overflow: hidden;
}

.hero-text-holder-1 {
    text-align: right;
    width: 50vw;
    overflow: hidden;
}

.hero-text-holder-2 {
    text-align: left;
    width: 50vw;
    overflow: hidden;
}

.hero-text-line {
    background-image: linear-gradient(60deg, #9e6ab4, #ce678d);
    border-radius: 20px;
    width: 3px;
    height: 160px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.external-link {
    background-image: url('../images/External-Link-Icon.svg');
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: auto;
    padding-right: 23px;
    font-family: Manrope, sans-serif;
    font-weight: 800;
}

.footer-social-media-container {
    text-align: left;
    border-bottom: 1px solid #d5d7db;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 0;
    margin-bottom: 2em;
    padding-bottom: 2em;
    display: flex;
}

.footer-list {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
    display: flex;
}

.footer-list-item {
    margin-bottom: 0;
    padding-right: 1em;
}

.footer-brand-content {
    text-align: left;
    flex-flow: column;
    flex: 1;
    align-items: flex-start;
    margin-top: 20px;
    padding-right: 50px;
    font-size: 15px;
    display: flex;
}

.footer-copyright {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
}

.social-media-link {
    opacity: 1;
    margin-left: 1em;
    transition: opacity .2s, color .2s;
}

.social-media-link<span class="hljs-selector-pseudo">:hover {
    opacity: .7;
}

.social-media-content {
    flex-direction: row;
    display: flex;
}

.made-container {
    flex-direction: row;
    flex: 1;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
}

.powered-by {
    margin-left: 1em;
}

.app-icon-holder-xs {
    background-image: linear-gradient(349deg, var(--gradient1-left), var(--gradient1-middle) 52%, var(--gradient1-right));
    border-radius: 50%;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width: 48px;
    min-width: 48px;
    height: 48px;
    margin-right: 10px;
    padding: 10px;
    display: flex;
}

.app-icon-text-holder {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.phone-holder-container {
    z-index: 2;
    height: 750px;
    position: relative;
    overflow: hidden;
}

.phone-slider-container {
    z-index: -1;
    background-color: #fa58539c;
    width: 239px;
    height: 511px;
    position: absolute;
    top: 25px;
    left: 75px;
    right: auto;
}

.phone-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.phone-slider-mask {
    width: 100%;
    height: 100%;
}

.phone-slide {
    position: relative;
}

.phone-slide-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.phone-slider-arrows,
.phone-slide-nav {
    display: none;
}

.phone-holder-image {
    width: 530px;
    min-width: 530px;
}

.grid-testimonial {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
}

.no-margin-top {
    margin-top: 0;
}

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

.hero-description {
    font-size: 16px;
    line-height: 22px;
}

.fade-in-on-scroll.left {
    justify-content: flex-start;
    display: flex;
}

.fade-in-on-scroll.top-margin {
    margin-top: 2em;
    margin-bottom: 24px;
}

.fade-in-on-scroll.top-margin-small {
    margin-top: 24px;
    margin-bottom: 24px;
}

.licensing-images-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    margin-top: 1em;
}

.licensing-device-image {
    max-height: 418px;
}

.iphone-holder {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.iphone-holder.shadow {
    height: 100%;
    box-shadow: 1px 1px 40px 60px #f4f8fb;
}

.iphone-holder.half {
    max-height: 370px;
    margin-top: 2em;
    position: relative;
}

.iphone-holder.bottom-visable {
    height: auto;
    margin-top: -350px;
    position: relative;
}

.iphone-holder.cta {
    width: 60%;
    height: 100%;
}

.feature-iphone {
    width: 70%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.iphone-overlay {
    z-index: 4;
    background-image: linear-gradient(10deg, #fff 48%, #fff0 84%, #0000);
    width: 100%;
    height: 40%;
    position: absolute;
    inset: auto 0% 0%;
}

.iphone-overlay.light-blue {
    z-index: 4;
    background-image: linear-gradient(8deg, #f4f8fb 31%, #f4f8fb00 78%, #f4f8fb00);
}

.oragne-circle {
    background-color: var(--gradient1-left);
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    display: flex;
}

.iphone-container {
    z-index: 3;
    margin-top: 5em;
    position: relative;
}

.half-iphone-container {
    background-color: #f4f8fb;
    width: 60%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.text-gradient-overlay {
    background-image: linear-gradient(69deg, #f4f8fb00, #f4f8fb 50%, #f4f8fb);
    width: 200%;
    position: absolute;
    inset: 0%;
    transform: translate(50%);
}

.hero-section.relative {
    position: relative;
}

.phone-holder {
    width: 100%;
}

.phones-holder {
    grid-column-gap: 24px;
    grid-row-gap: 10px;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: -30%;
    padding-bottom: 5em;
    padding-left: 2em;
    padding-right: 2em;
    display: grid;
    overflow: hidden;
}

.portrait-iphone-holder {
    width: 100%;
    position: relative;
}

.background-color {
    z-index: -5;
    background-image: linear-gradient(to top, #70a6ed1a, #70a6ed00);
    position: absolute;
    inset: 0%;
}

.background-color.blue {
    background-image: linear-gradient(#f4f8fb, #f4f8fb);
}

.background-color.white {
    background-color: #fff;
    background-image: none;
}

.card-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

.card-grid.margin {
    margin-top: 4em;
    margin-bottom: 1em;
}

.grey-card-item-holder {
    background-color: #f5f5f7;
    border-radius: 32px;
}

.grey-card-item-holder.small-card {
    height: 290px;
}

.card-content-holder {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 20px 40px;
    display: flex;
    overflow: hidden;
}

.card-content-holder.center {
    justify-content: space-between;
}

.grey-card-iphone {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.grey-card-iphone.justify-botton {
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
}

.feature-icon-holder {
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 111px;
    display: flex;
    position: relative;
}

.icon-circle {
    background-color: #fff;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    display: flex;
    position: absolute;
    inset: 0% auto 0% 0%;
}

.icon-circle.top {
    z-index: 2;
    position: absolute;
    inset: 0% 0% 0% auto;
    box-shadow: 1px 1px 20px #0000001a;
}

.feature-icon-container {
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
}

.blue-card-background {
    background-color: var(--light-blue);
    border-radius: 20px;
    height: 600px;
    padding: 80px 2em;
    position: relative;
}

.cta-holder {
    background-color: #fff;
    border: 2px solid #ededed;
    border-radius: 90px;
    flex-direction: row;
    width: 350px;
    padding: 12px;
    display: flex;
    box-shadow: -6px 7px 20px #0000000d;
}

.circle-button-holder {
    background-color: #fff;
    border: 2px solid #ededed;
    border-radius: 90px;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    transition: transform .2s, border-color .2s;
    display: flex;
}

.circle-button-holder<span class="hljs-selector-pseudo">:hover {
    border-color: var(--gradient1-left);
    transform: translate(0, -2px);
}

.circle-button-holder.margin-right {
    margin-right: 8px;
}

.call-to-action-holder {
    flex-direction: column;
    justify-content: space-between;
    display: flex;
}

.featured-blog-post-holder {
    background-color: #fffc;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    overflow: hidden;
}

.featured-blog-post-holder<span class="hljs-selector-pseudo">:hover {
    text-decoration: none;
    transform: translate(0, -4px);
    box-shadow: 0 6px 30px 1px #0000001a;
}

.thumbnail-image-holder {
    width: 45%;
    height: 400px;
    position: relative;
}

.featured-blog-description-holder {
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
    padding-left: 70px;
    display: flex;
}

.category-holder {
    color: #fff;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    padding: 3px 10px;
    display: flex;
}

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

.featured-post-wrapper {
    margin-top: 5em;
}

.category-filter-holder {
    border: 2px solid #0000;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    padding: 5px 15px;
    transition: opacity .2s;
    display: flex;
    position: relative;
}

.category-filter-holder<span class="hljs-selector-pseudo">:hover {
    opacity: .7;
    text-decoration: none;
}

.category-filter-holder.current {
    border-color: var(--gradient1-left);
}

.category-filter-holder.margin-right {
    margin-right: 5px;
}

.category-list {
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.category-item<span class="hljs-selector-pseudo">:last-child {
    margin-right: 0;
}

.filter-holder {
    flex-direction: row;
    margin-top: 2em;
    display: flex;
}

.filter-holder.no-margin {
    margin-top: 1em;
}

.border-color {
    border: 2px solid #000;
    border-radius: 100px;
    position: absolute;
    inset: 0%;
}

.border-color.hidden {
    display: none;
}

.simple-blog-posts-holder {
    margin-top: 2em;
}

.simple-collection-list {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.blog-post-holder {
    background-color: #fffc;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    overflow: hidden;
}

.blog-post-holder<span class="hljs-selector-pseudo">:hover {
    text-decoration: none;
    transform: translate(0, -4px);
    box-shadow: 0 6px 30px 1px #0000001a;
}

.small-thumbnail-image {
    width: 100%;
    padding-top: 80%;
    position: relative;
    overflow: hidden;
}

.blog-description-holder-copy {
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
    padding: 1em;
    display: flex;
}

.description-holder {
    width: 70%;
    margin-bottom: 1em;
}

.main-blog-image {
    border-radius: 18px;
}

.rich-text-holder {
    justify-content: center;
    align-items: center;
    width: 70%;
    display: flex;
}

.rich-text-container {
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    display: flex;
}

.contact-left-side-holder {
    flex-direction: column;
    justify-content: space-between;
    display: flex;
}

.contact-grid-holder {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.contact-detail-holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.list-item-card {
    border: 2px solid #0000;
    border-radius: 7px;
    margin-bottom: .5em;
    padding: .7em;
    transition: box-shadow .2s, background-color .2s, border-color .2s;
    display: flex;
    box-shadow: -5px 7px 20px #0000;
}

.list-item-card<span class="hljs-selector-pseudo">:hover {
    border: 2px solid var(--gradient1-left);
    background-color: #fff;
    text-decoration: none;
    box-shadow: -5px 7px 20px #0000000f;
}

.list-item-card.w--current {
    border-color: var(--gradient1-left);
    background-image: url('../images/Red-Arrows.svg');
    background-position: 96%;
    background-repeat: no-repeat;
    background-size: auto;
    border-radius: 7px;
    box-shadow: -5px 7px 20px #0000001a;
}

.list-item-card.middle {
    margin-top: 12px;
    margin-bottom: 12px;
}

.card-icon-holder {
    width: 24px;
    height: 24px;
    margin-right: 24px;
}

.list-item-text {
    font-weight: 600;
}

.white-background {
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    padding: 25px;
}

.contact-form-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.field-label {
    color: #323232;
    font-weight: 400;
}

.text-field {
    border: 2px solid var(--text-color);
    background-color: #fff;
    border-radius: 8px;
    padding-top: 25px;
    padding-bottom: 25px;
    transition: transform .2s, border-color .2s;
}

.text-field<span class="hljs-selector-pseudo">:focus {
    border-color: var(--gradient1-middle);
    transform: translate(0, -4px);
}

.text-area {
    border: 2px solid var(--text-color);
    border-radius: 8px;
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 400px;
    transition: transform .2s, border-color .2s;
}

.text-area<span class="hljs-selector-pseudo">:focus {
    border-color: var(--gradient1-left);
    transform: translate(0, -4px);
}

.form {
    width: 100%;
    height: 100%;
}

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

.buttons-holder {
    display: flex;
}

.thumbnail-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}

.hero-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    margin-bottom: 2em;
    display: grid;
}

.hero-image {
    border-radius: 12px;
    width: 100%;
}

.half-text-container {
    width: 80%;
}

.half-text-container.left-align {
    text-align: left;
    width: 95%;
}

.grey-borders-card {
    border: 0 solid #0000;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.grey-borders-card<span class="hljs-selector-pseudo">:hover {
    border-color: #dadada00;
}

.blue-circle {
    background-color: #63acf41a;
    border-radius: 200px;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    display: flex;
}

.small-card-holder {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em;
    display: flex;
}

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

.company-images {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.grid-9-col {
    grid-column-gap: 15px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.grid-9-col.margin {
    margin-top: 2em;
    margin-bottom: 2em;
}

.job-postion-card-holder {
    cursor: pointer;
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
    transition: opacity .2s;
    display: flex;
    overflow: hidden;
}

.simple-info {
    flex-direction: row;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.arrow-holder {
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: 40px;
    display: flex;
}

.card-background-color {
    z-index: -1;
    background-image: linear-gradient(to right, var(--gradient2-left), var(--gradient2-middle) 52%, var(--gradient1-left));
    opacity: 0;
    cursor: pointer;
    border-radius: 12px;
    position: absolute;
    inset: 0%;
}

.simple-info-holder {
    z-index: 4;
    border: 2px solid var(--light-grey-2);
    background-color: #fff;
    border-radius: 12px;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px 3em;
    transition: border-color .2s;
    display: flex;
    position: relative;
}

.simple-info-holder<span class="hljs-selector-pseudo">:hover {
    border-color: #fafafa;
}

.more-info-holder {
    border: 2px solid var(--light-grey-2);
    border-radius: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    top: -15px;
    overflow: hidden;
}

.job-description-holder {
    justify-content: space-between;
    align-items: flex-start;
    width: 70%;
    display: flex;
}

.job-description-holder.last {
    margin-bottom: 2em;
}

.job-description-holder.top {
    margin-top: 40px;
}

.line {
    background-color: var(--light-grey-2);
    width: 70%;
    height: 2px;
    margin-top: 2em;
    margin-bottom: 2em;
}

.line.half-margin {
    margin-top: 1em;
    margin-bottom: 1em;
}

.margin-right,
.job-content.title {
    flex: none;
    margin-right: 2em;
}

.arrow-image {
    width: 28px;
}

.city-image-holder {
    border-radius: 4px;
    height: 250px;
    margin-bottom: 24px;
    overflow: hidden;
}

.card-content {
    padding: 16px;
}

.city-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.small-description {
    color: #636363;
}

.timeline-proggres-holder {
    z-index: -3;
    background-color: #5a5a5a4d;
    width: 3px;
    height: 100%;
    position: absolute;
}

.timeline-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}

.timeline-proggres-bar {
    background-image: linear-gradient(to bottom, var(--gradient2-left), var(--gradient1-left) 52%, var(--gradient2-right));
    width: 3px;
    height: 50vh;
    position: fixed;
    inset: 0 auto 50vh;
}

.timeline-item {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 180px 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    display: grid;
}

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

.page-wrapper {
    z-index: 0;
    position: relative;
}

.timeline-center {
    flex-direction: row;
    justify-content: center;
    display: flex;
}

.timeline-circle {
    background-color: #5a5a5a;
    border-radius: 100%;
    width: 15px;
    min-width: 15px;
    max-width: 15px;
    height: 15px;
    min-height: 15px;
    max-height: 15px;
    position: sticky;
    top: 50vh;
    box-shadow: 0 0 14px 9px #fff;
}

.sticky {
    position: sticky;
    top: 45vh;
}

.timeline-right {
    background-color: #fff;
    border: 2px solid #e9e9e9;
    border-radius: 12px;
    padding: 28px;
}

.timeline-image {
    object-fit: cover;
    border-radius: 7px;
    width: 100%;
    height: 300px;
    margin-top: 1em;
}

.overlay-fade-top {
    z-index: 2;
    background-image: linear-gradient(#fff, #fff0);
    height: 120px;
    position: absolute;
    inset: 0% 0% auto;
}

.overlay-fade-bottom {
    z-index: 2;
    background-image: linear-gradient(to top, #fff, #fff0);
    height: 120px;
    position: absolute;
    inset: auto 0% 0%;
}

.press-update-backgound {
    border: 2px solid var(--light-grey-2);
    background-color: #fff;
    border-radius: 12px;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 20px 20px 10px;
    text-decoration: none;
}

.press-update-backgound<span class="hljs-selector-pseudo">:hover {
    text-decoration: none;
}

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

.white {
    background-color: #fffdfd;
}

.white-space {
    background-color: #fffdfd;
    height: 3em;
}

.customer-story-container {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.customer-story-background {
    z-index: -1;
    background-color: #1ad26f;
    position: absolute;
    inset: 0%;
}

.customer-story-background._2 {
    background-color: red;
}

.customer-story-background._3 {
    background-color: #1da1f2;
}

.customer-story-background._4 {
    background-color: #fbad50;
}

.customer-story-image-container {
    width: 100%;
    height: 260px;
    position: relative;
}

.customer-story-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.customer-logo {
    width: 70px;
}

.customer-logo.invert {
    filter: invert();
    width: 90px;
}

.info-holder {
    padding: 25px;
}

.overlay {
    background-image: linear-gradient(to top, #19d26f, #19d26f00);
    height: 70px;
    position: absolute;
    inset: auto 0% 0%;
}

.overlay._2 {
    background-image: linear-gradient(to top, red, #f000);
}

.overlay._3 {
    background-image: linear-gradient(to top, #1da1f2, #1da1f200);
}

.overlay._4 {
    background-image: linear-gradient(to top, #fbad50, #fbad5000);
}

.grid-4-columns {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.grid-4-columns.relative {
    z-index: 1;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    position: relative;
}

.support-grid-layout {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: auto;
    grid-template-columns: 2fr 4fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.support-nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.support-navigation-cards {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 1em;
    display: flex;
}

.collection-list-wrapper {
    width: 100%;
}

.support-cta-holder {
    border: 2px solid var(--gradient1-left);
    background-color: #fff;
    border-radius: 7px;
    flex-direction: column;
    margin-top: 1em;
    padding: 1em;
    display: flex;
    box-shadow: -4px 3px 20px #0003;
}

.support-article-holder {
    border: 2px solid #ececec;
    border-radius: 10px;
    padding: 1.5em;
    box-shadow: 0 11px 17px #6767671a;
}

.icon-image {
    width: 40px;
    height: auto;
}

.icon-image.small {
    width: 20px;
}

.icon-image.medium {
    width: 28px;
}

.store-icon {
    height: 25px;
}

.blog-item-text-header {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.blog-item-date {
    color: var(--light-grey);
    flex-direction: row;
    align-items: center;
    display: flex;
    position: relative;
}

.blog-item-date-circle {
    background-color: var(--light-grey);
    border-radius: 6px;
    width: 6px;
    height: 6px;
    margin-left: 10px;
    margin-right: 10px;
}

.empty-state {
    background-color: var(--light-grey-2);
    color: var(--light-grey);
    border-radius: 6px;
    padding: 15px;
    font-size: 16px;
}

.blog-item-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.support-content {
    margin-top: 1em;
}

.search-button {
    background-color: #0000;
    background-image: url('../images/Search-Icon.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    width: 50px;
    position: absolute;
    inset: 0% 0 0% auto;
}

.search-form {
    width: 100%;
    margin-bottom: 2em;
    position: relative;
}

.search-input {
    border: 2px solid var(--light-grey);
    color: #323232cc;
    text-transform: uppercase;
    border-radius: 7px;
    height: auto;
    margin-bottom: 0;
    padding: 10px;
    box-shadow: 0 5px 20px #0000000d;
}

.search-input<span class="hljs-selector-pseudo">:focus {
    border-color: var(--gradient1-left);
}

.brand-resources-grid-holder {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.blue-card-color {
    background-color: #f4f8fb;
    border-radius: 23px;
}

.blue-card-holder {
    width: 100%;
    height: 100%;
    padding: 30px;
}

.full-logo-holder {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    height: 370px;
    margin-top: 2em;
    display: flex;
    position: relative;
}

.logo-holder {
    height: 50px;
}

.logo-full {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.resources-button-holder {
    position: absolute;
    inset: auto 5% 5% auto;
}

.grid-4-col {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.grid-4-col.top-margin {
    margin-top: 2em;
}

.product-assets-holder {
    width: 100%;
    height: 100%;
}

.product-assets-phone {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-app-holder {
    border-radius: 5px;
    position: absolute;
    inset: 2% 4%;
}

.iphone {
    z-index: 2;
    position: relative;
}

.image {
    object-fit: cover;
    object-position: 50% 0%;
    width: 100%;
    height: 100%;
}

.div-block {
    display: flex;
}

.image-tiles {
    padding: 2em;
}

.image-tiles.top {
    padding-bottom: 0;
}

.image-tiles.bottom {
    padding-top: 0;
}

.image-2 {
    margin-bottom: 53px;
}

.feature-payment-request {
    width: 90%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

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

.number-box {
    background-color: #658aeb;
    border-radius: 5px;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    margin-right: 1em;
    padding: 5px;
    display: flex;
}

.number-box.gradient {
    background-image: linear-gradient(58deg, #627de9, #a06bb3 56%, #f3a066);
}

.heading {
    color: #fff;
}

.number-list-holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}

.number-list-description.title {
    flex: none;
    margin-right: 2em;
}

.number-list-item {
    justify-content: flex-start;
    align-items: flex-start;
    width: 80%;
    margin-bottom: 20px;
    display: flex;
}

.number-list-item.last {
    margin-bottom: 2em;
}

.number-list-item.top {
    margin-top: 40px;
}

.center-grid {
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.black-circle {
    background-color: var(--dark-black);
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    display: flex;
}

.feature-payment-image {
    height: 60%;
}

.superscript {
    color: #afafaf;
    font-size: 20px;
    font-weight: 600;
}

.superscript.small {
    font-size: 14px;
}

.superscript.big {
    font-size: 25px;
}

.superscript.title {
    font-size: 50px;
}

.div-block-2 {
    width: 30%;
}

.disclosure {
    background-color: #e0e7ec;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1em 2em;
    display: flex;
}

.table-padding {
    width: 100%;
    margin-bottom: 10px;
}

.hero-disclosure {
    color: var(--light-grey);
    font-size: 10px;
}

.hero-disclosure.small {
    margin-bottom: 0;
    font-size: 10px;
}

.hero-disclosure.bottom {
    width: 250px;
    margin-top: 20px;
}

.hero-button {
    background-color: var(--gradient1-left);
    color: #fff;
    text-align: center;
    letter-spacing: 0;
    background-image: linear-gradient(to right, #57d0e3, #4f75f4 25%, #e45f85 75%, #f1b552);
    border-radius: 5px;
    min-width: 180px;
    margin-top: 1em;
    margin-bottom: 0;
    margin-right: 0;
    padding: 13px 20px;
    font-family: Open Sans, sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: letter-spacing .3s, color .3s;
}

.hero-button<span class="hljs-selector-pseudo">:hover {
    color: #fff;
    letter-spacing: 1px;
    text-decoration: none;
}

.hero-button.btn-subscribe {
    background-image: url('../images/Arrow-White.svg'), linear-gradient(to right, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right));
    background-position: 50%, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: auto, auto;
    border-radius: 15px;
    width: 100px;
    min-width: 100px;
    line-height: 3.5;
    transition: background-position .3s, letter-spacing .3s, color .2s;
    position: absolute;
    inset: 5px 5px 5px auto;
}

.hero-button.btn-subscribe<span class="hljs-selector-pseudo">:hover {
    background-position: 55%, 0 0;
}

.hero-button.download {
    background-color: var(--dark-grey);
    background-image: none;
    border-radius: 8px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    display: flex;
}

.hero-button.download<span class="hljs-selector-pseudo">:hover {
    background-color: var(--dark-black);
    letter-spacing: 0;
}

.hero-button.rounded-orage-button {
    background-color: #fa5853;
    background-image: none;
    border-radius: 200px;
    flex: 1;
    margin-left: 24px;
    margin-right: 12px;
}

.hero-button.rounded-orage-button.no-margin {
    margin-top: 12px;
    margin-left: 0;
}

.hero-button.rounded-orage-button.margin {
    margin-bottom: 2em;
}

.hero-button.orange-button {
    background-color: var(--tomato);
    background-image: none;
}

.hero-button.black {
    background-color: #141415;
    background-image: none;
}

.hero-button.top-margin {
    margin-top: 1.5em;
}

.text-span {
    font-size: 30px;
}

.rich-text-block {
    display: flex;
}

.rich-text.indented {
    padding-left: 60px;
}

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

.dim-page {
    z-index: 1000;
    background-color: #0000007a;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0%;
}

.modal-box {
    z-index: 3;
    background-color: #fff;
    border-radius: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 600px;
    height: 400px;
    margin: auto;
    padding: 30px 40px;
    display: flex;
    position: absolute;
    inset: 0%;
}

.modal-text {
    margin-top: 27px;
    margin-bottom: 13px;
}

.blue-text {
    color: #4e96df;
}

.modal-button-holder {
    flex-direction: row;
    justify-content: space-around;
    margin-top: 27px;
    display: flex;
}

.rich-text-block-2 {
    font-size: 22px;
}

.image-8 {
    min-width: 100%;
}

.link-2 {
    color: var(--text-color);
    text-decoration: underline;
}

.link-2<span class="hljs-selector-pseudo">:hover {
    color: var(--gradient2-left);
    background-color: #0000;
}

.dropdown-wrapper {
    cursor: pointer;
    align-self: auto;
    min-width: 180px;
    height: 50px;
    margin-left: 20px;
    display: block;
    position: relative;
}

.dropdown-trigger {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.text-block {
    color: #7c838d;
    text-align: center;
    font-weight: 600;
}

.dropdown-content {
    border: 1px solid var(--light-grey);
    background-color: #fff;
    border-radius: 5px;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    overflow: hidden;
}

.dropdown-link {
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.dropdown-link.dropdowin-link-last {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.paragraph {
    margin-left: 35px;
}

.text-block-2 {
    font-size: 15px;
}

.body {
    padding-top: 0;
}

.link-3 {
    color: var(--gradient2-left);
}

.rich-text-block-3 {
    font-style: normal;
}

@media screen and (min-width: 1280px) {
    .container {
        border-radius: 0;
        max-width: 1280px;
    }

    .container<span class="hljs-selector-pseudo">:hover {
        color: var(--grey);
    }

    .button {
        background-image: linear-gradient(to right, #57d0e3, #4f75f4 25%, #e45f85 75%, #f1b552);
    }

    .button.black {
        margin-left: 0;
    }

    .button.text-button {
        color: #7c838d;
        -webkit-text-stroke-color: #fff;
        background-color: #fff;
        background-image: none;
        margin-left: 0;
    }

    .card-item.light<span class="hljs-selector-pseudo">:hover {
        color: var(--dark-black);
    }

    .card-item-content<span class="hljs-selector-pseudo">:hover {
        clear: none;
        opacity: 1;
        color: var(--dark-black);
        border-radius: 0;
        position: relative;
        inset: 0%;
    }

    .text-xl<span class="hljs-selector-pseudo">:hover {
        color: var(--grey);
    }

    .card-phone-image-container.small {
        inset: 13px;
    }

    .iphone-holder.bottom-visable {
        margin-top: -550px;
    }

    .blue-card-background {
        padding-left: 3em;
        padding-right: 3em;
    }

    .grey-borders-card {
        box-shadow: none;
        border-width: 0;
        border-radius: 0;
        transition-property: none;
    }

    .grey-borders-card<span class="hljs-selector-pseudo">:hover {
        box-shadow: none;
        transform: none;
    }

    .sticky {
        top: 47.2vh;
    }

    .image-3,
    .image-4,
    .image-5,
    .image-6 {
        width: 100%;
    }

    .image-7 {
        width: 100%;
    }

    .image-8 {
        min-width: 100%;
    }

    .dropdown-trigger {
        margin: 0 auto;
    }

    .text-block {
        color: #7c838d;
        text-align: center;
        font-weight: 600;
    }

    .dropdown-link {
        display: block;
    }
}

@media screen and (min-width: 1440px) {
    h2 {
        font-size: 70px;
    }

    h3 {
        font-size: 50px;
    }

    h4 {
        font-size: 38px;
    }

    figure {
        margin-top: 20px;
    }

    .content.centered {
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .product-container {
        position: relative;
    }

    .play-icon-holder {
        margin-top: -76px;
        position: absolute;
        inset: 50% auto auto 50%;
    }

    .product-phone-image-holder {
        position: relative;
    }

    .card-phone-image-container {
        inset: 18px;
    }

    .iphone-overlay {
        background-image: linear-gradient(10deg, #fff 35%, #fff0 73%, #0000);
    }

    .phones-holder {
        grid-row-gap: 18px;
        margin-top: -35%;
        padding-left: 5em;
        padding-right: 5em;
    }

    .portrait-iphone-holder {
        position: relative;
    }

    .blue-card-background {
        padding-left: 5em;
        padding-right: 5em;
    }

    .sticky {
        top: 47.6vh;
    }

    .modal-box {
        height: 450px;
    }

    .image-8 {
        min-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 60px;
    }

    h2 {
        font-size: 55px;
    }

    img {
        width: 100%;
    }

    .nav-link {
        text-align: left;
        margin-bottom: .5em;
        margin-left: 0;
        font-weight: 600;
    }

    .footer-flex-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .container.phone-container {
        padding-right: 0;
    }

    .hero-text {
        font-size: 100px;
    }

    .section-hero {
        padding-top: 1em;
    }

    .project-item {
        width: 100%;
        padding-right: 0;
    }

    .nav-menu {
        background-color: #fff;
        padding-top: 1em;
        padding-bottom: 1em;
        box-shadow: 0 2px 3px #0000000d;
    }

    .brand {
        padding-left: 0;
    }

    .menu-button {
        text-align: center;
        background-color: #000;
        border-radius: 10px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        padding: 15px;
        line-height: 1;
        transition: background-color .2s;
        display: flex;
        position: absolute;
        inset: 7px 10px auto auto;
    }

    .menu-button.w--open {
        background-color: var(--grey);
    }

    .project-item-style-2 {
        padding-right: 0;
    }

    .heading-display {
        font-size: 55px;
    }

    .utility-page-content {
        max-width: 50vw;
    }

    .asset-licensing-grid {
        grid-template-columns: 1fr;
    }

    .nav-cta-button {
        text-align: left;
        justify-content: flex-start;
        padding-left: 1em;
    }

    .button.modal-black,
    .button.modal-white {
        margin-top: 10px;
    }

    .small-container {
        max-width: 100%;
    }

    .customers-panel {
        padding-top: 1em;
        padding-bottom: 1em;
    }

    .text-container {
        max-width: 70%;
    }

    .play-icon-holder {
        width: 100px;
        margin-top: -50px;
        margin-left: -50px;
    }

    .play-icon-image {
        width: 100px;
    }

    .product-phone-demo-image {
        border-radius: 10px;
    }

    .grid-10-columns {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .team-item {
        min-height: 300px;
    }

    .ellipse-left {
        left: -450px;
    }

    .ellipse-right {
        right: -560px;
    }

    .main-hero-container {
        padding-left: 1em;
        padding-right: 1em;
    }

    .download-buttons.mobile-vertical {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .download-button {
        margin-bottom: 10px;
    }

    .download-button.last {
        margin-bottom: 0;
    }

    .hero-text-line {
        height: 90px;
        margin-top: 25px;
    }

    .footer-social-media-container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .grid-testimonial {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .licensing-device-image {
        max-height: 250px;
    }

    .iphone-holder.bottom-visable {
        margin-top: -425px;
    }

    .iphone-holder.cta {
        width: 80%;
        height: auto;
    }

    .phones-holder {
        margin-top: -38%;
        padding-bottom: 3em;
        padding-left: 1em;
        padding-right: 1em;
    }

    .card-grid.margin {
        grid-template-rows: auto auto auto;
        grid-template-columns: 1fr 1fr;
    }

    .featured-blog-post-holder {
        flex-direction: column;
    }

    .thumbnail-image-holder {
        width: 100%;
        height: 60vw;
    }

    .featured-blog-description-holder {
        padding: 35px;
    }

    .simple-collection-list {
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        grid-template-columns: 1fr 1fr;
    }

    .rich-text-holder {
        width: 80%;
    }

    .simple-info-holder {
        padding-left: 1em;
        padding-right: 1em;
    }

    .job-description-holder {
        width: 100%;
        padding-left: 1em;
        padding-right: 1em;
    }

    .line {
        margin-top: 1em;
        margin-bottom: 1em;
    }

    .timeline-item {
        grid-template-columns: 1fr 80px 1fr;
    }

    .grid-4-columns {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-4-columns.relative {
        grid-template-columns: 1fr 1fr;
    }

    .support-grid-layout {
        grid-template-columns: 2fr 3fr;
    }

    .support-article-holder {
        padding: 1em;
    }

    .number-list-item {
        width: 100%;
        padding-left: 1em;
        padding-right: 1em;
    }

    .modal-box {
        width: 400px;
        height: 600px;
    }

    .modal-button-holder {
        flex-direction: column;
    }

    .dropdown-wrapper {
        max-width: 180px;
    }

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

    .dropdown-content {
        justify-content: flex-start;
        align-items: flex-start;
        display: flex;
    }

    .dropdown-link {
        display: inline-block;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 55px;
    }

    h2 {
        font-size: 45px;
    }

    h3 {
        font-size: 40px;
    }

    h4 {
        font-size: 30px;
    }

    h5 {
        font-size: 24px;
    }

    blockquote {
        font-size: 22px;
    }

    .footer-flex-container {
        flex-direction: column;
    }

    .section.second {
        margin-top: 400px;
    }

    .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .container.phone-container {
        padding-top: 3rem;
    }

    .hero-text {
        margin-top: 0;
    }

    .hero-text._1 {
        text-align: center;
        width: 100%;
        padding-right: 0;
    }

    .hero-text._2 {
        text-align: center;
        width: 100%;
        padding-left: 0;
    }

    .content.phone-content-text {
        padding-right: 1em;
    }

    .grid-6-col {
        grid-template-columns: 1fr 1fr;
    }

    .project-item {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .nav-menu {
        flex-direction: column;
        display: flex;
    }

    .menu-button.w--open {
        color: #000;
    }

    .heading-display {
        font-size: 45px;
    }

    .utility-page-content {
        max-width: none;
    }

    .subscribe-form-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .subscribe-form-input-wrapper {
        margin-right: 0;
    }

    .asset-licensing-grid {
        grid-template-rows: auto auto auto;
        grid-template-columns: 1fr;
    }

    .footer-image {
        object-fit: contain;
    }

    .button {
        margin-bottom: 5px;
    }

    .button.btn-subscribe {
        margin-right: 0;
        bottom: 0;
    }

    .button.rounded-orage-button.margin {
        margin-bottom: 1em;
    }

    .card-item {
        flex-direction: column;
    }

    .card-item-content {
        align-self: auto;
    }

    .text-center.mobile-left {
        align-items: flex-start;
    }

    .hero-product-demo {
        height: 130vh;
    }

    .customer-image {
        margin-bottom: 1em;
    }

    .text-container {
        max-width: 100%;
    }

    .grid-10-columns {
        grid-template-columns: 1fr 1fr;
    }

    .team-item {
        min-height: auto;
    }

    .change-log-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text-holder {
        flex-direction: column;
        align-items: center;
    }

    .grid-5-col {
        grid-template-columns: 1fr 1fr;
    }

    .download-buttons {
        text-align: center;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .download-buttons.mobile-vertical {
        margin-top: 1em;
        margin-bottom: 1em;
    }

    .download-button {
        width: 100%;
        margin-right: 0;
    }

    .trusted-item {
        margin-bottom: 3em;
    }

    .trusted-overlay-container {
        display: none;
    }

    .trusted-content {
        padding-top: 0;
        padding-bottom: 3rem;
    }

    .trusted-content.trusted-list {
        padding-top: 0;
    }

    .hero-text-holder-1,
    .hero-text-holder-2 {
        text-align: center;
        width: 100%;
    }

    .hero-text-line {
        width: 30%;
        height: 2px;
        margin-top: 0;
    }

    .footer-social-media-container,
    .footer-list {
        flex-direction: column;
    }

    .footer-brand-content {
        flex-direction: column;
        padding-right: 0;
    }

    .footer-copyright {
        padding-top: 1em;
    }

    .made-container {
        padding-top: 1em;
        padding-right: 0;
    }

    .grid-testimonial,
    .licensing-images-grid {
        grid-template-columns: 1fr 1fr;
    }

    .iphone-holder.bottom-visable {
        margin-top: -214px;
    }

    .iphone-holder.cta {
        width: 100%;
        margin-top: 2em;
    }

    .iphone-overlay,
    .iphone-overlay.light-blue {
        inset: auto 0% 0%;
    }

    .phones-holder {
        grid-template-rows: .5fr .5fr auto .5fr .5fr;
        grid-template-columns: .5fr .5fr .5fr .5fr;
        margin-top: -48%;
    }

    .blue-card-background {
        height: auto;
    }

    .filter-holder.no-margin {
        flex-direction: column;
        align-items: flex-start;
    }

    .simple-collection-list {
        grid-template-columns: 1fr;
    }

    .small-thumbnail-image {
        padding-top: 60%;
    }

    .description-holder {
        width: 80%;
    }

    .rich-text-holder {
        width: 100%;
    }

    .contact-grid-holder {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .half-text-container {
        width: 100%;
    }

    .job-description-holder {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .job-description-holder.last {
        margin-bottom: 1em;
    }

    .timeline-proggres-holder {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 64px 1fr;
    }

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

    .grid-4-columns,
    .support-grid-layout {
        grid-template-columns: 1fr 1fr;
    }

    .number-list-item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .number-list-item.last {
        margin-bottom: 1em;
    }

    .hero-button {
        margin-bottom: 5px;
    }

    .hero-button.btn-subscribe {
        margin-right: 0;
        bottom: 0;
    }

    .hero-button.download {
        justify-content: flex-start;
    }

    .hero-button.rounded-orage-button.margin {
        margin-bottom: 1em;
    }
}

@media screen and (max-width: 479px) {
    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 30px;
        font-weight: 500;
    }

    h4 {
        font-size: 28px;
    }

    h5 {
        font-weight: 400;
    }

    .fixed-nav {
        padding-left: 0;
        padding-right: 0;
    }

    .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .footer {
        text-align: left;
    }

    .footer-flex-container {
        flex-direction: column;
    }

    .section.second {
        margin-top: 50vh;
    }

    .hero-text {
        font-size: 80px;
    }

    .heading-display {
        font-size: 38px;
    }

    .subscribe-form-input-wrapper {
        flex: 1;
        align-self: stretch;
    }

    .form-input {
        width: 100%;
        min-width: auto;
    }

    .form-input.subscribe-input {
        border-radius: 10px;
        height: 60px;
        font-size: 18px;
    }

    .button.btn-subscribe {
        border-radius: 10px;
        width: 100%;
        height: 50px;
        margin-top: 5px;
        margin-bottom: 0;
        position: relative;
        top: 0;
        right: 0;
    }

    .button.rounded-orage-button {
        margin-left: 0;
    }

    .card-item-content.download {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-product-demo {
        height: 80vh;
    }

    .ellipse-left {
        width: 320px;
        height: 350px;
        top: 30%;
        left: -60%;
    }

    .ellipse-right {
        width: 350px;
        height: 350px;
        top: 30%;
        left: 75vw;
        right: auto;
    }

    .app-icon-holder {
        width: 80px;
        height: 80px;
    }

    .product-phone-content {
        inset: 26px 27px;
    }

    .product-phone-image-holder {
        width: 300px;
    }

    .iphone-lock-screen-image {
        border-radius: 30px;
    }

    .footer-social-media-container,
    .footer-list {
        flex-direction: column;
    }

    .footer-list-item {
        margin-bottom: 10px;
    }

    .footer-brand-content,
    .made-container {
        flex-direction: column;
    }

    .powered-by {
        margin-top: .5em;
        margin-left: 0;
    }

    .phone-holder-container {
        height: 520px;
    }

    .phone-slider-container {
        width: 158px;
        height: 337px;
        top: 17px;
        left: 50px;
    }

    .phone-holder-image {
        width: 350px;
        min-width: 350px;
    }

    .licensing-images-grid {
        grid-template-columns: 1fr;
    }

    .iphone-overlay.light-blue {
        inset: auto 0% -1%;
    }

    .iphone-container {
        height: 100vh;
    }

    .half-iphone-container {
        width: 100%;
    }

    .phone-holder._1,
    .phone-holder._3,
    .phone-holder._4,
    .phone-holder._6 {
        display: none;
    }

    .phones-holder {
        grid-template-rows: auto auto auto auto auto;
        grid-template-columns: .5fr .5fr .5fr;
        grid-auto-rows: auto;
        grid-auto-columns: .5fr;
        margin-top: 0%;
        padding-left: 1em;
        padding-right: 1em;
    }

    .background-color.blue {
        inset: 0%;
    }

    .card-grid.margin {
        grid-template-columns: 1fr;
    }

    .blue-card-background {
        padding: 20px 1em;
    }

    .cta-holder {
        border-radius: 12px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: auto;
        margin-top: 1em;
    }

    .featured-blog-description-holder {
        padding: 1em;
    }

    .category-list {
        flex-flow: column wrap;
        align-items: flex-start;
    }

    .category-list-wrapper {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        display: flex;
    }

    .filter-holder {
        flex-direction: column;
        align-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }

    .simple-collection-list {
        grid-template-columns: 1fr;
    }

    .description-holder {
        width: 100%;
    }

    .contact-grid-holder {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .list-item-card.w--current {
        background-size: auto 15px;
    }

    .buttons-holder {
        margin-bottom: 24px;
        display: flex;
    }

    .grid-9-col {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-proggres-holder {
        left: 14px;
    }

    .timeline-item {
        grid-template-columns: 30px 1fr;
    }

    .timeline-right {
        padding: 14px;
    }

    .timeline-image {
        height: 200px;
    }

    .grid-4-columns.relative {
        grid-template-columns: 1fr;
    }

    .logo-holder {
        height: 30px;
    }

    .resources-button-holder {
        justify-content: center;
        align-items: center;
        display: flex;
        inset: auto 0% 5%;
    }

    .grid-4-col.top-margin {
        grid-template-columns: 1fr;
    }

    .feature-payment-request {
        display: none;
    }

    .hero-button.btn-subscribe {
        border-radius: 10px;
        width: 100%;
        height: 50px;
        margin-top: 5px;
        margin-bottom: 0;
        position: relative;
        top: 0;
        right: 0;
    }

    .hero-button.rounded-orage-button {
        margin-left: 0;
    }

    .modal-box {
        width: 300px;
    }

    .modal-text {
        font-size: 15px;
    }

    .modal-button-holder {
        flex-direction: column;
    }
}

#w-node-_72db7d5e-67ba-1361-b1aa-1a07ac8f1178-995e2145 {
    grid-area: 1 / 2 / 2 / 10;
}

#w-node-_7b19d13e-0e8d-2369-5abf-e24fedfaa268-995e2145 {
    grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_628315c7-9285-9cb1-4712-9cee2615c32b-995e2145,
#w-node-_342fdcc3-31fb-f30b-37f3-2287c0a2e018-995e2145 {
    grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-d8c14a68-7b67-5bc2-0910-37f256e4b0b8-995e2145 {
    grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_64ab14ec-0a71-9abe-100c-83874d852302-995e2145,
#w-node-_1511bf1a-c884-944b-f323-a3f0ea7187b5-995e2145 {
    grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-ece89d93-2df3-9c66-994e-a99360ef72ee-995e2145 {
    grid-area: 1 / 2 / 2 / 10;
}

#w-node-_3b85f699-c949-f7e1-8df4-af4ae38e2f15-995e2145,
#w-node-_8502412a-6474-098f-1e09-76bce2a84c58-995e2145 {
    grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-dc7224ca-e1a6-5f22-af6a-66bccec780c6-995e2145,
#w-node-fac30180-3e79-e769-7ab6-62a59aa4f3d5-995e2145 {
    grid-area: 1 / 2 / 2 / 10;
}

#w-node-_418ff701-e443-b4cf-c598-7f49b7fb532d-995e2145 {
    grid-area: 1 / 1 / 2 / 8;
}

#w-node-_8410c039-633e-19df-d83a-fa7e44f2df85-5a5e214d,
#w-node-cf7dcf62-595e-9456-f415-2812c5b70dfc-5a5e214d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: end;
}

#w-node-a8d2195f-98fe-b819-5328-795e712ab843-5a5e214d {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
}

#w-node-b9080989-83bf-781a-bcca-0f9d8dacde28-5a5e214d {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: start;
}

#w-node-e7b0e74a-29a6-ccdb-1845-34fc0b727a2b-5a5e214d {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: end;
}

#w-node-_9da97db8-5be4-cf8d-e638-01c285a4cb4f-5a5e214d,
#w-node-_9da97db8-5be4-cf8d-e638-01c285a4cb59-5a5e214d,
#w-node-_9da97db8-5be4-cf8d-e638-01c285a4cb63-5a5e214d {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-fc8ce2a7-31c4-74d5-09d8-e6ee36a54f97-5a5e214d {
    grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-fac2ae07-9cc1-15e5-cd6c-73c29e79df49-5a5e214d,
#w-node-_4d6e4f05-bf55-9ecc-62ef-fd95d5e80e1a-5a5e214d {
    grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_6e7f8ef4-8b3f-c72a-53b1-d3bf3346e384-5a5e214d {
    grid-area: span 1 / span 5 / span 1 / span 5;
    align-self: center;
}

#w-node-_19470797-235b-8339-a890-adfbc92bf179-5a5e214d {
    grid-area: 1 / 3 / 2 / 8;
}

#w-node-_3b23471c-eb85-d1a1-8be9-f33501398417-5a5e214d,
#w-node-e27c33cf-c3e0-c861-4793-98b5718d4e61-5a5e214d,
#w-node-_37917662-20c4-6178-c504-ea68a0078fc2-5a5e214d,
#w-node-_66fa827a-7aa4-1890-8d92-f7a63eea9f96-5a5e214d,
#w-node-d59633b8-fa86-aefc-a5ab-2d0835304757-5a5e214d,
#w-node-ba850ee5-a8f5-03ad-d299-c89ac3e5feeb-5a5e214d {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_993fedd3-ff59-e38d-27ee-49bdec4452a1-5a5e214d {
    grid-area: 1 / 2 / 2 / 10;
}

#w-node-_993fedd3-ff59-e38d-27ee-49bdec4452a2-5a5e214d {
    grid-area: 1 / 1 / 2 / 8;
}

#w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-905e214f,
#w-node-_67fbe7da-c0af-e85b-d709-7c5e7f1e72a7-905e214f {
    grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_2663c628-7b54-4b84-2cd8-69c75601bc60-f85e2151 {
    grid-area: 1 / 3 / 2 / 8;
}

#w-node-_7991320a-a1b5-78af-97ed-275d7a66a8d7-aa5e2153 {
    grid-area: 1 / 1 / 2 / 2;
}

#w-node-_7991320a-a1b5-78af-97ed-275d7a66a8e6-aa5e2153 {
    grid-area: 1 / 2 / 4 / 3;
}

#w-node-_7991320a-a1b5-78af-97ed-275d7a66a8f7-aa5e2153 {
    grid-area: 2 / 1 / 3 / 2;
}

#w-node-c5dc0ea8-c2c5-b242-03cf-50ab7bad8cfe-115e2156 {
    grid-area: 1 / 1 / 3 / 2;
    place-self: end center;
}

#w-node-b21c3592-6097-a00f-7870-a45f43f4c8ca-115e2156 {
    grid-area: 2 / 2 / 3 / 4;
    place-self: end center;
}

#w-node-_6100e9f7-c266-d539-49f2-36ba0f2f222a-115e2156 {
    grid-area: 2 / 4 / 4 / 5;
    place-self: start center;
}

#w-node-_134b2cf9-1cde-2284-cfef-2f33ec3a7754-115e2156 {
    grid-area: 3 / 1 / 5 / 2;
    place-self: end center;
}

#w-node-_96411b2f-d8b7-4022-8470-ca36b1742fb8-115e2156 {
    grid-area: 4 / 2 / 5 / 4;
    place-self: end center;
}

#w-node-b8e1c276-0417-8be7-5251-cea6eb586b2f-115e2156 {
    grid-area: 4 / 4 / 6 / 5;
    place-self: start center;
}

#w-node-_7f53f6a7-ff3e-f2fa-58b3-66c188953508-115e2156 {
    grid-area: 3 / 2 / 4 / 4;
    place-self: center;
}

#w-node-_6d543952-9836-4a83-ff2f-f22cde15c0aa-115e2156 {
    grid-area: 5 / 1 / 6 / 4;
    place-self: center stretch;
}

#w-node-_53a09231-6224-33b5-eda7-63dda24c0245-115e2156,
#w-node-_53a09231-6224-33b5-eda7-63dda24c0247-115e2156,
#w-node-_53a09231-6224-33b5-eda7-63dda24c0249-115e2156,
#w-node-_53a09231-6224-33b5-eda7-63dda24c024b-115e2156,
#w-node-_53a09231-6224-33b5-eda7-63dda24c024d-115e2156,
#w-node-_4536715f-1b07-6698-b18c-32248f50c5ee-115e2156 {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b262d101-88e2-3de7-f57b-8d4a24389714-115e2156 {
    grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-b0293b47-d88a-9d64-f93a-680bc42fe107-115e2156 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    justify-self: center;
}

#w-node-_8fa5e293-ccac-c85e-13e3-87448104db82-115e2156,
#w-node-_93ce9fe0-86a8-ae50-dcd3-aec252772f34-115e2156,
#w-node-c761fa66-c3dd-1109-ff39-d5157388a9b8-115e2156 {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_683f6423-2343-b727-5633-7065e36f1185-115e2156 {
    grid-area: 1 / 1 / 3 / 2;
}

#w-node-d418cca7-24ea-bf31-041d-3be16c0d0430-115e2156 {
    grid-area: 1 / 2 / 2 / 3;
}

#w-node-a5ef09e5-6cbb-1536-db37-970e446055c9-115e2156 {
    grid-area: 1 / 3 / 3 / 4;
}

#w-node-_879b0df6-b25a-d37d-9c82-7798283ffcbb-115e2156 {
    grid-area: 2 / 2 / 3 / 3;
    align-self: end;
}

#w-node-e78b4ad7-ec14-a261-424e-16eea79edf09-115e2156 {
    grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e78b4ad7-ec14-a261-424e-16eea79edf16-115e2156 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    place-self: start center;
}

#w-node-_1e7ba95a-12f5-d14f-865c-58c6925923e9-d35e215a {
    grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e1c4f535-3127-939f-3b3c-b1fd35478144-d35e215a {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1e7ba95a-12f5-d14f-865c-58c6925923f0-d35e215a,
#w-node-_28629c33-4257-71a6-acd3-330ff62be0ab-d35e215a,
#w-node-_1a295a86-cf11-59c3-3bcd-ebc7bcbcf3bd-d35e215a,
#w-node-dc4af716-a088-4ac6-0cf2-c02239306c12-d35e215a,
#w-node-de36af8a-24a1-2976-1cf9-2f3aa5c76409-d35e215a,
#w-node-f932aca1-7ca1-1f39-9677-c9eca9d4e8fc-d35e215a {
    grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-775e215b {
    grid-area: 1 / 2 / 2 / 10;
}

#w-node-_18d37471-af41-f2e5-0b72-17d258bac949-775e215b,
#w-node-fd85a797-d4a1-2318-cdc7-e62ce47a5531-775e215b,
#w-node-a403c714-2711-b310-0b4c-64360bef309a-775e215b {
    grid-area: 1 / 3 / 2 / 9;
}

#w-node-d2fbeefd-03b1-d4bd-bfc6-32f02622a3c0-775e215b,
#w-node-_381af94e-ef60-702f-1610-0be12ad975fa-775e215b,
#w-node-_25295085-d617-4925-f461-e156fc35cf36-775e215b,
#w-node-e369206c-1d98-efa3-045e-22f86aa3b83d-775e215b {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cb8ecc22-ce78-fe25-e497-3f5f257434de-775e215b {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cb8ecc22-ce78-fe25-e497-3f5f257434e0-775e215b {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: center;
}

#w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-775e215b {
    grid-area: span 1 / span 3 / span 1 / span 3;
    place-self: start center;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e7e0-035e215f {
    grid-area: 1 / 1 / 2 / 2;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e7f2-035e215f {
    grid-area: 1 / 2 / 4 / 3;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e7fa-035e215f {
    grid-area: 1 / 2 / 2 / 10;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e803-035e215f {
    grid-area: 2 / 1 / 3 / 2;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e810-035e215f {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: center;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e816-035e215f {
    grid-area: span 1 / span 3 / span 1 / span 3;
    place-self: start center;
}

#w-node-_55fc5522-bb2b-2f60-a4a5-2e1d59064549-815e2160,
#w-node-_55fc5522-bb2b-2f60-a4a5-2e1d59064553-815e2160 {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ed754a59-142e-5306-6934-ed458e9b3ad5-9d5e2161 {
    grid-area: 1 / 1 / 2 / 2;
}

#w-node-ed754a59-142e-5306-6934-ed458e9b3aed-9d5e2161 {
    grid-area: 1 / 2 / 4 / 3;
}

#w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-9d5e2161 {
    grid-area: 1 / 2 / 2 / 10;
}

#w-node-ed754a59-142e-5306-6934-ed458e9b3ae4-9d5e2161 {
    grid-area: 2 / 1 / 3 / 2;
}

#w-node-cb8ecc22-ce78-fe25-e497-3f5f257434e0-9d5e2161 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: center;
}

#w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-9d5e2161 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    place-self: start center;
}

#w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-013bab6c,
#w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-013bab6c {
    grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_810989da-0a8a-7867-51ee-93304e9e3e58-013bab6c,
#w-node-_663f8651-526b-b348-7a34-70a34920853a-013bab6c,
#w-node-_6bb59c62-4885-a2de-f817-23663ce970af-013bab6c,
#w-node-_0b5105b3-8b1b-3beb-c9a1-62dabd8dda72-013bab6c,
#w-node-_810989da-0a8a-7867-51ee-93304e9e3e60-013bab6c {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_16f8c74d-6c56-9440-455c-929291345f0a-3316e4a6 {
    grid-area: 1 / 3 / 2 / 8;
}

#w-node-df631eef-03da-2cbb-6068-dec6945ef65d-3316e4a6,
#w-node-df631eef-03da-2cbb-6068-dec6945ef668-3316e4a6 {
    grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-d4bb18f0,
#w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-d4bb18f0 {
    grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_810989da-0a8a-7867-51ee-93304e9e3e58-d4bb18f0,
#w-node-_31654b21-c11b-4f29-d937-6e0910f4a63b-d4bb18f0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-b087a2e0 {
    grid-area: span 1 / span 6 / span 1 / span 6;
}

@media screen and (min-width: 1440px) {
    #w-node-_1511bf1a-c884-944b-f323-a3f0ea7187b5-995e2145 {
        grid-area: span 1 / span 3 / span 1 / span 3;
    }

    #w-node-_6d543952-9836-4a83-ff2f-f22cde15c0aa-115e2156 {
        align-self: center;
    }

    #w-node-e78b4ad7-ec14-a261-424e-16eea79edf16-115e2156,
    #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-775e215b,
    #w-node-a70f84fd-27d8-6687-cecb-85c2c112e816-035e215f,
    #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-9d5e2161 {
        place-self: start center;
    }

    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-013bab6c {
        grid-column: span 3 / span 3;
    }

    #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-013bab6c {
        grid-area: span 1 / span 5 / span 1 / span 5;
    }

    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-d4bb18f0 {
        grid-column: span 3 / span 3;
    }

    #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-d4bb18f0 {
        grid-area: span 1 / span 5 / span 1 / span 5;
    }
}

@media screen and (min-width: 1280px) {

    #w-node-_64ab14ec-0a71-9abe-100c-83874d852302-995e2145,
    #w-node-_1511bf1a-c884-944b-f323-a3f0ea7187b5-995e2145 {
        grid-area: span 1 / span 3 / span 1 / span 3;
    }

    #w-node-fac2ae07-9cc1-15e5-cd6c-73c29e79df49-5a5e214d {
        grid-area: span 1 / span 4 / span 1 / span 4;
    }
}

@media screen and (max-width: 991px) {

    #w-node-_72db7d5e-67ba-1361-b1aa-1a07ac8f1178-995e2145,
    #w-node-ece89d93-2df3-9c66-994e-a99360ef72ee-995e2145,
    #w-node-dc7224ca-e1a6-5f22-af6a-66bccec780c6-995e2145,
    #w-node-fac30180-3e79-e769-7ab6-62a59aa4f3d5-995e2145,
    #w-node-_993fedd3-ff59-e38d-27ee-49bdec4452a1-5a5e214d {
        grid-area: span 1 / span 6 / span 1 / span 6;
    }

    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-905e214f,
    #w-node-_67fbe7da-c0af-e85b-d709-7c5e7f1e72a7-905e214f {
        grid-column: span 8 / span 8;
    }

    #w-node-_683f6423-2343-b727-5633-7065e36f1185-115e2156 {
        grid-area: 1 / 1 / 3 / 2;
    }

    #w-node-d418cca7-24ea-bf31-041d-3be16c0d0430-115e2156 {
        grid-area: 3 / 2 / 4 / 3;
    }

    #w-node-a5ef09e5-6cbb-1536-db37-970e446055c9-115e2156 {
        grid-area: 1 / 2 / 3 / 3;
    }

    #w-node-_879b0df6-b25a-d37d-9c82-7798283ffcbb-115e2156 {
        grid-area: 3 / 1 / 4 / 2;
    }

    #w-node-_1e7ba95a-12f5-d14f-865c-58c6925923e9-d35e215a,
    #w-node-_1e7ba95a-12f5-d14f-865c-58c6925923f0-d35e215a,
    #w-node-_28629c33-4257-71a6-acd3-330ff62be0ab-d35e215a,
    #w-node-_1a295a86-cf11-59c3-3bcd-ebc7bcbcf3bd-d35e215a,
    #w-node-dc4af716-a088-4ac6-0cf2-c02239306c12-d35e215a,
    #w-node-de36af8a-24a1-2976-1cf9-2f3aa5c76409-d35e215a,
    #w-node-f932aca1-7ca1-1f39-9677-c9eca9d4e8fc-d35e215a {
        grid-column: span 1 / span 1;
    }

    #w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-775e215b {
        grid-area: span 1 / span 6 / span 1 / span 6;
    }

    #w-node-_18d37471-af41-f2e5-0b72-17d258bac949-775e215b {
        grid-area: 1 / 2 / 2 / 6;
    }

    #w-node-a70f84fd-27d8-6687-cecb-85c2c112e7fa-035e215f,
    #w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-9d5e2161 {
        grid-area: span 1 / span 6 / span 1 / span 6;
    }

    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-013bab6c,
    #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-013bab6c,
    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-d4bb18f0,
    #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-d4bb18f0,
    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-b087a2e0 {
        grid-column: span 8 / span 8;
    }
}

@media screen and (max-width: 767px) {

    #w-node-_72db7d5e-67ba-1361-b1aa-1a07ac8f1178-995e2145,
    #w-node-_7b19d13e-0e8d-2369-5abf-e24fedfaa268-995e2145,
    #w-node-_628315c7-9285-9cb1-4712-9cee2615c32b-995e2145,
    #w-node-_342fdcc3-31fb-f30b-37f3-2287c0a2e018-995e2145,
    #w-node-d8c14a68-7b67-5bc2-0910-37f256e4b0b8-995e2145,
    #w-node-_3b85f699-c949-f7e1-8df4-af4ae38e2f15-995e2145,
    #w-node-_8502412a-6474-098f-1e09-76bce2a84c58-995e2145,
    #w-node-dc7224ca-e1a6-5f22-af6a-66bccec780c6-995e2145 {
        grid-column: span 2 / span 2;
    }

    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-905e214f,
    #w-node-_67fbe7da-c0af-e85b-d709-7c5e7f1e72a7-905e214f {
        grid-column: span 6 / span 6;
    }

    #w-node-_7991320a-a1b5-78af-97ed-275d7a66a8d7-aa5e2153 {
        grid-area: 1 / 1 / 2 / 3;
    }

    #w-node-_7991320a-a1b5-78af-97ed-275d7a66a8e6-aa5e2153 {
        grid-area: 2 / 1 / 3 / 3;
    }

    #w-node-_7991320a-a1b5-78af-97ed-275d7a66a8f7-aa5e2153 {
        grid-row: 3 / 4;
        grid-column-end: 3;
    }

    #w-node-_6100e9f7-c266-d539-49f2-36ba0f2f222a-115e2156 {
        grid-area: 2 / 4 / 3 / 5;
        place-self: end center;
    }

    #w-node-b8e1c276-0417-8be7-5251-cea6eb586b2f-115e2156 {
        grid-area: 4 / 4 / 5 / 5;
        place-self: end center;
    }

    #w-node-_6d543952-9836-4a83-ff2f-f22cde15c0aa-115e2156 {
        grid-column-end: 5;
    }

    #w-node-_53a09231-6224-33b5-eda7-63dda24c0245-115e2156,
    #w-node-_53a09231-6224-33b5-eda7-63dda24c0247-115e2156,
    #w-node-_53a09231-6224-33b5-eda7-63dda24c0249-115e2156,
    #w-node-_53a09231-6224-33b5-eda7-63dda24c024b-115e2156 {
        grid-column: span 1 / span 1;
    }

    #w-node-_53a09231-6224-33b5-eda7-63dda24c024d-115e2156,
    #w-node-_4536715f-1b07-6698-b18c-32248f50c5ee-115e2156 {
        grid-area: span 1 / span 1 / span 1 / span 1;
    }

    #w-node-e78b4ad7-ec14-a261-424e-16eea79edf16-115e2156 {
        justify-self: start;
    }

    #w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-775e215b {
        grid-column: span 2 / span 2;
    }

    #w-node-e7dc4c6c-be0c-f036-05ee-ea9fb8b1bc6d-775e215b {
        grid-area: 1 / 2 / 2 / 3;
    }

    #w-node-_5358a172-3e22-2e96-3258-fa3b6e333bcf-775e215b {
        grid-area: 1 / 1 / 3 / 2;
    }

    #w-node-c9167761-0118-d8da-34c9-88620a9a20ab-775e215b {
        grid-area: 1 / 2 / 2 / 3;
    }

    #w-node-c9167761-0118-d8da-34c9-88620a9a20ae-775e215b {
        grid-area: 1 / 1 / 3 / 2;
    }

    #w-node-_61634497-f93e-badc-8fff-e8ba29c41226-775e215b {
        grid-area: 1 / 2 / 2 / 3;
    }

    #w-node-_61634497-f93e-badc-8fff-e8ba29c41229-775e215b {
        grid-area: 1 / 1 / 3 / 2;
    }

    #w-node-_18d37471-af41-f2e5-0b72-17d258bac949-775e215b {
        grid-area: span 1 / span 2 / span 1 / span 2;
    }

    #w-node-fd85a797-d4a1-2318-cdc7-e62ce47a5531-775e215b,
    #w-node-a403c714-2711-b310-0b4c-64360bef309a-775e215b {
        grid-area: span 1 / span 6 / span 1 / span 6;
    }

    #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-775e215b {
        justify-self: start;
    }

    #w-node-_76c393bd-f465-d630-3a41-e281cce6c579-775e215b,
    #w-node-_55c4f116-ba92-9f1f-7bc2-9b7d088aa78c-775e215b,
    #w-node-_5ec808e3-0e3d-f84c-645c-beab699ed3c8-775e215b,
    #w-node-c167524c-aed7-c111-817e-ae6d035c5133-775e215b,
    #w-node-bdabcbf3-78e7-2932-47c6-7e77260c1e69-775e215b,
    #w-node-b17f6aec-0f44-4ea4-5dfe-01c47c28ec86-775e215b {
        grid-area: span 1 / span 2 / span 1 / span 2;
    }

    #w-node-a70f84fd-27d8-6687-cecb-85c2c112e7e0-035e215f {
        grid-area: 1 / 1 / 2 / 3;
    }

    #w-node-a70f84fd-27d8-6687-cecb-85c2c112e7f2-035e215f {
        grid-area: 2 / 1 / 3 / 3;
    }

    #w-node-a70f84fd-27d8-6687-cecb-85c2c112e7fa-035e215f {
        grid-column: span 2 / span 2;
    }

    #w-node-a70f84fd-27d8-6687-cecb-85c2c112e803-035e215f {
        grid-row: 3 / 4;
        grid-column-end: 3;
    }

    #w-node-a70f84fd-27d8-6687-cecb-85c2c112e816-035e215f {
        justify-self: start;
    }

    #w-node-ed754a59-142e-5306-6934-ed458e9b3ad5-9d5e2161 {
        grid-area: 1 / 1 / 2 / 3;
    }

    #w-node-ed754a59-142e-5306-6934-ed458e9b3aed-9d5e2161 {
        grid-area: 2 / 1 / 3 / 3;
    }

    #w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-9d5e2161 {
        grid-column: span 2 / span 2;
    }

    #w-node-ed754a59-142e-5306-6934-ed458e9b3ae4-9d5e2161 {
        grid-row: 3 / 4;
        grid-column-end: 3;
    }

    #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-9d5e2161 {
        justify-self: start;
    }

    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-013bab6c,
    #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-013bab6c,
    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-d4bb18f0,
    #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-d4bb18f0,
    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-b087a2e0 {
        grid-column: span 6 / span 6;
    }
}

@media screen and (max-width: 479px) {

    #w-node-_8410c039-633e-19df-d83a-fa7e44f2df85-5a5e214d,
    #w-node-cf7dcf62-595e-9456-f415-2812c5b70dfc-5a5e214d {
        grid-column: span 4 / span 4;
    }

    #w-node-a8d2195f-98fe-b819-5328-795e712ab843-5a5e214d,
    #w-node-b9080989-83bf-781a-bcca-0f9d8dacde28-5a5e214d,
    #w-node-e7b0e74a-29a6-ccdb-1845-34fc0b727a2b-5a5e214d {
        grid-column: span 8 / span 8;
    }

    #w-node-fac2ae07-9cc1-15e5-cd6c-73c29e79df49-5a5e214d,
    #w-node-_4d6e4f05-bf55-9ecc-62ef-fd95d5e80e1a-5a5e214d {
        grid-area: 1 / 1 / 2 / 6;
    }

    #w-node-_19470797-235b-8339-a890-adfbc92bf179-5a5e214d {
        grid-column: 1 / 3;
    }

    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-905e214f,
    #w-node-_67fbe7da-c0af-e85b-d709-7c5e7f1e72a7-905e214f {
        grid-column: span 3 / span 3;
    }

    #w-node-c5dc0ea8-c2c5-b242-03cf-50ab7bad8cfe-115e2156 {
        grid-area: 1 / 1 / 3 / 2;
        place-self: end center;
    }

    #w-node-b21c3592-6097-a00f-7870-a45f43f4c8ca-115e2156 {
        grid-area: 2 / 1 / 3 / 4;
        place-self: end center;
    }

    #w-node-_6100e9f7-c266-d539-49f2-36ba0f2f222a-115e2156 {
        grid-area: 2 / 3 / 3 / 4;
        place-self: end center;
    }

    #w-node-_134b2cf9-1cde-2284-cfef-2f33ec3a7754-115e2156 {
        grid-area: 3 / 1 / 5 / 2;
        place-self: end center;
    }

    #w-node-_96411b2f-d8b7-4022-8470-ca36b1742fb8-115e2156 {
        grid-area: 4 / 1 / 5 / 4;
        place-self: start center;
    }

    #w-node-b8e1c276-0417-8be7-5251-cea6eb586b2f-115e2156 {
        grid-area: 4 / 3 / 5 / 4;
        place-self: end center;
    }

    #w-node-_7f53f6a7-ff3e-f2fa-58b3-66c188953508-115e2156 {
        grid-area: 3 / 1 / 4 / 4;
        place-self: center;
    }

    #w-node-_6d543952-9836-4a83-ff2f-f22cde15c0aa-115e2156 {
        grid-column-end: 4;
    }

    #w-node-_683f6423-2343-b727-5633-7065e36f1185-115e2156 {
        grid-area: span 2 / span 1 / span 2 / span 1;
    }

    #w-node-d418cca7-24ea-bf31-041d-3be16c0d0430-115e2156 {
        grid-area: span 1 / span 1 / span 1 / span 1;
    }

    #w-node-a5ef09e5-6cbb-1536-db37-970e446055c9-115e2156 {
        grid-area: span 2 / span 1 / span 2 / span 1;
    }

    #w-node-_879b0df6-b25a-d37d-9c82-7798283ffcbb-115e2156 {
        grid-area: span 1 / span 1 / span 1 / span 1;
    }

    #w-node-e78b4ad7-ec14-a261-424e-16eea79edf16-115e2156 {
        justify-self: center;
    }

    #w-node-e1c4f535-3127-939f-3b3c-b1fd35478144-d35e215a {
        grid-column: span 1 / span 1;
    }

    #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-775e215b {
        justify-self: center;
    }

    #w-node-_5ec808e3-0e3d-f84c-645c-beab699ed3c8-775e215b,
    #w-node-c167524c-aed7-c111-817e-ae6d035c5133-775e215b,
    #w-node-bdabcbf3-78e7-2932-47c6-7e77260c1e69-775e215b,
    #w-node-b17f6aec-0f44-4ea4-5dfe-01c47c28ec86-775e215b {
        grid-column: span 1 / span 1;
    }

    #w-node-a70f84fd-27d8-6687-cecb-85c2c112e816-035e215f,
    #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-9d5e2161 {
        justify-self: center;
    }

    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-013bab6c,
    #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-013bab6c {
        grid-column: span 3 / span 3;
    }

    #w-node-_810989da-0a8a-7867-51ee-93304e9e3e50-013bab6c,
    #w-node-_810989da-0a8a-7867-51ee-93304e9e3e54-013bab6c,
    #w-node-_810989da-0a8a-7867-51ee-93304e9e3e58-013bab6c,
    #w-node-_663f8651-526b-b348-7a34-70a34920853a-013bab6c,
    #w-node-_6bb59c62-4885-a2de-f817-23663ce970af-013bab6c,
    #w-node-_0b5105b3-8b1b-3beb-c9a1-62dabd8dda72-013bab6c {
        grid-area: span 1 / span 2 / span 1 / span 2;
    }

    #w-node-_16f8c74d-6c56-9440-455c-929291345f0a-3316e4a6 {
        grid-column: 1 / 3;
    }

    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-d4bb18f0,
    #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-d4bb18f0 {
        grid-column: span 3 / span 3;
    }

    #w-node-_810989da-0a8a-7867-51ee-93304e9e3e58-d4bb18f0,
    #w-node-_810989da-0a8a-7867-51ee-93304e9e3e50-d4bb18f0,
    #w-node-_810989da-0a8a-7867-51ee-93304e9e3e54-d4bb18f0,
    #w-node-_31654b21-c11b-4f29-d937-6e0910f4a63b-d4bb18f0 {
        grid-area: span 1 / span 2 / span 1 / span 2;
    }

    #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-b087a2e0 {
        grid-column: span 3 / span 3;
    }
}