﻿body {
    font: normal normal 400 1em 'Roboto', -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
    color: #343a40;
    margin: 0;
    padding: 0;
    --wr-max: 1440px;
    position: relative;
    --card-bg: rgb(255, 255, 255);
    word-wrap: anywhere;
    --color-bg: #fff;
    background: #fff;
    word-break: break-word;
    --font-text: normal normal 400 1em 'Roboto', -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    --font-title: normal normal 800 1em 'Rubik', -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
    --font-system: -apple-system, BlinkMacSystemFont, Segoe UI, Inter, Helvetica, Arial, sans-serif;
    overflow-wrap: anywhere;
    --border-width: 1px;
    text-rendering: optimizeLegibility;
    --color-bg-card: #f8f9fa;
    --fontSize-text: 1em;
    --card-boxShadow: 0px 19px 30px -10px rgba(21, 21, 25, 0.21);
    --fontSize-title: 2.5em;
    --color-text-link: #1864ab;
    --card-borderColor: rgb(255, 255, 255);
    --card-borderWidth: 0px;
    --card-borderRadius: 10px;
    --color-text-primary: #212529;
    --color-border-normal: #f1f3f5;
    --color-accent-primary: #9c36b5;
    --color-text-secondary: #343a40;
    -webkit-font-smoothing: antialiased;
    --fontWeight-text-heavy: 700;
    -moz-osx-font-smoothing: grayscale;
    --fontWeight-text-medium: 500;
    -webkit-text-size-adjust: 100%;
    --section-header-height: 70px;
}

a {
    text-decoration: none;
}

.wr {
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    max-width: var(--wr-max);
    box-sizing: border-box;
}

@media only screen and (max-width: 700px) {
    .wr {
        padding: 0 15px;
    }
}

.btn {
    font: normal normal 500 1em var(--font-system), -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
    color: var(--color-text-primary);
    border: none;
    cursor: pointer;
    margin: 0;
    display: inline-flex;
    outline: none;
    padding: 0.7em 0.8em;
    position: relative;
    background: #eee;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    align-items: center;
    border-radius: 3px;
    justify-content: center;
    text-decoration: none;
}

    .btn span {
        text-decoration: none;
    }

.btn--large {
    font-size: 1.2em;
}

.btn--clear {
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.btn .um-arrow {
    margin-left: 0.4em;
}

.btn svg:not(.um-arrow),
.btn img {
    width: initial;
    height: 1.2em;
    margin: -0.1em;
}

.btn--loading {
    cursor: wait;
    pointer-events: none;
}

    .btn--loading:after {
        width: 12px;
        border: 2px solid rgba(125, 125, 125, 0.3);
        height: 12px;
        content: '';
        display: inline-block;
        animation: keyframes-buttonLoading;
        margin-left: 0.6em;
        border-radius: 50%;
        animation-duration: 0.8s;
        border-right-color: var(--color-text-secondary);
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

.btn--error {
    color: #fff !important;
    background: #c92a2a !important;
}

    .btn--error:after {
        float: right;
        content: '⚠';
        padding-left: 9px;
    }

.btn--success {
    color: #fff !important;
    background: #2f9e44 !important;
}

    .btn--success:after {
        float: right;
        content: '✓';
        padding-left: 9px;
    }

    .btn--success:before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        position: absolute;
        box-shadow: 0 0 0 0 #2f9e443b;
        border-radius: inherit;
        animation-name: keyframes-buttonSuccess;
        pointer-events: none;
        animation-duration: 0.4s;
        animation-fill-mode: both;
        animation-timing-function: ease-out;
    }

.btn svg:first-child,
.btn img:first-child {
    margin-right: 0.4em;
}

.btn svg:last-child,
.btn img:last-child {
    margin-left: 0.4em;
}

.btn.btn--icon svg,
.btn.btn--icon img {
    width: initial;
    height: 1.2em;
    margin: -0.1em;
}

.btn:hover,
.btn:hover span {
    text-decoration: none;
}

@keyframes keyframes-buttonSuccess {
    from {
        box-shadow: 0 0 0 0 rgba(47, 158, 68, 0);
    }

    to {
        box-shadow: 0 0 0 5px rgba(47, 158, 68, 0.3);
    }
}

@keyframes keyframes-buttonLoading {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nav-wrapper {
    color: var(--color-text-primary);
    display: flex;
    flex-grow: 1;
    align-items: center;
}

    .nav-wrapper .nav-drawerTrigger {
        display: none;
    }

    .nav-wrapper.um-space-between .nav-links {
        padding-left: 30;
        margin-right: auto;
    }

    .nav-wrapper.um-links-centered .nav-links {
        flex: 1;
        margin: 0 auto;
    }

    .nav-wrapper.um-links-centered .nav-children {
        flex: 1;
        margin-right: 20px;
    }

    .nav-wrapper.um-children-centered .nav-links {
        flex: 1;
    }

    .nav-wrapper.um-children-centered .nav-children {
        flex: 1;
        margin: 0 auto;
    }

    .nav-wrapper.nav-classic .nav-children {
        margin-right: auto;
        display: flex;
        align-items: center;
    }

    .nav-wrapper.hidden .nav-links {
        display: none;
    }

    .nav-wrapper.hidden .nav-buttons {
        display: none;
    }

div.nav-links{
    margin-left: 2rem;
    padding-top: 0.3em;
}

.nav-links {
    margin: 0;
    display: flex;
    padding: 0;
    font-size: 15px;
    list-style: none;
    align-items: center;
}

    .nav-links > li {
        position: relative;
        display: flex;
        align-items: center;
        height: var(--section-header-height);
    }

        .nav-links > li > button {
            font: inherit;
            color: inherit;
            border: none;
            cursor: pointer;
            padding: 10px;
            background: transparent;
        }

        .nav-links > li > a {
            font: inherit;
            color: inherit;
            padding: 5px 5px;
            white-space: nowrap;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .nav-links > li:hover {
            cursor: pointer;
        }

            .nav-links > li:hover > a {
                text-decoration: underline !important;
                color: #ff5c35 !important;
            }

            .nav-links > li:hover svg {
                fill: #ff5c35;
            }

.nav-dropdown-menu {
    z-index: 99;
    position: absolute;
    top: var(--section-header-height);
    left: 100px;
    border: var(--border-width) solid #7691ad;
    border-top: none;
    padding: 1rem 2rem;
    background: var(--color-bg);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: var(--card-boxShadow);
    display: none;
    opacity: 0;
}

.section.header:has(.nav-links > li:hover) {
    border-bottom: var(--border-width) solid #7691ad !important;
}

.section.header:has(.nav-dropdown-menu:hover) {
    border-bottom: var(--border-width) solid #7691ad !important;
}

.section.header:has(.nav-links > li[data-nav-link=industries]:hover) .nav-dropdown-menu[data-nav-dropdown-menu=industries], .nav-dropdown-menu:hover {
    opacity: 1;
    display: block;
    animation: keyframes-navbar;
    transform-origin: 100% 0;
    animation-duration: 500ms;
}

.section.header:has(.nav-dropdown-menu[data-nav-dropdown-menu=industries]:hover) .nav-links > [data-nav-link=industries] > a {
    color: #ff5c35 !important;
}

.section.header:has(.nav-dropdown-menu[data-nav-dropdown-menu=industries]:hover) .nav-links > [data-nav-link=industries] svg {
    fill: #ff5c35;
}

.nav-dropdown-menu ul {
    list-style: none;
    align-items: center;
    padding: 0 !important;
}

    .nav-dropdown-menu li {
        padding: 5px;
        margin-bottom: 10px;
        display: flex;
    }

        .nav-dropdown-menu li:hover {
            color: #ff5c35;
            border-radius: 8px;
            cursor: pointer;
        }

        .nav-dropdown-menu li > a {
            display: flex;
            color: inherit;
            text-decoration: none;
        }

        .nav-dropdown-menu li div:nth-child(1) {
            display: flex;
            align-items: center;
        }

        .nav-dropdown-menu li div + div {
            margin-left: 15px;
        }

        .nav-dropdown-menu li svg {
            width: 30px;
            height: 30px;
        }

    .nav-dropdown-menu h2, .nav-dropdown-menu h3 {
        font-size: 1em;
        font-weight: 500;
        line-height: 1.5em;
    }

    .nav-dropdown-menu h3 {
        margin: 0;
    }

    .nav-dropdown-menu p {
        font-size: 0.875rem;
        font-weight: 300;
        line-height: 1.57142857;
        margin: 0;
    }

.nav-buttons {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

    .nav-buttons > a {
        font-size: 15px;
        margin-left: 10px;
    }

a.btn-link {
    border: 1px solid #ff5c35;
    border-radius: 8px;
    color: #ff5c35;
    cursor: pointer;
    display: inline-block;
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
    padding: 0.25rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: background-color .15s linear,color .15s linear;
}

    a.btn-link:hover {
        background-color: #e04826;
        color: #ffffff;
        border-color: transparent;
    }

    a.btn-link:active {
        background-color: #b3361d;
        color: #ffffff;
        border-color: transparent;
    }

.nav-drawerTrigger {
    width: 3em;
    border: none;
    height: 3em;
    margin: 0;
    padding: 0;
    position: relative;
    background: transparent;
    border-radius: 4px;
}

    .nav-drawerTrigger:after {
        top: 9px;
        left: 7px;
        width: 26px;
        height: 4px;
        content: '';
        opacity: 0.8;
        position: absolute;
        background: var(--color-text-secondary);
        box-shadow: 0 8px 0 var(--color-text-secondary), 0 16px 0 var(--color-text-secondary);
        border-radius: 2px;
    }

    .nav-drawerTrigger.hidden {
        display: none;
    }

@keyframes keyframes-navbar {
    0% {
        opacity: 0;
        transform: scale(0.5) translate(0, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

.nav-drawer {
    top: 10px;
    right: 10px;
    width: 90%;
    z-index: 999;
    overflow: scroll;
    position: fixed;
    font-size: 15px;
    max-width: 300px;
    background: var(--nav-flyout-bg);
    box-shadow: 0px 10px 50px -10px rgba(22, 23, 24, 0.35), 0px 10px 20px -15px rgba(22, 23, 24, 0.2);
    max-height: calc(100vh - 20px);
    border-radius: 10px;
}

    .nav-drawer.hidden {
        display: none;
    }

    .nav-drawer:not(.hidden) {
        animation: keyframes-navbar;
        transform-origin: 100% 0;
        animation-duration: 300ms;
    }

    .nav-drawer header {
        display: flex;
        padding: 5px;
        border-bottom: 1px solid var(--color-border-normal);
        justify-content: flex-end;
    }

    .nav-drawer .drawer-buttons {
        margin: 25px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-drawer .drawer-links {
        display: flex;
        list-style: none;
        flex-direction: column;
    }

        .nav-drawer .drawer-links > li {
            border-bottom: 1px solid var(--color-border-normal);
        }

            .nav-drawer .drawer-links > li > button {
                all: unset;
                font: inherit;
                width: 100%;
                cursor: pointer;
                padding: 12px 20px;
                position: relative;
                font-size: 1em;
                box-sizing: border-box;
                font-weight: var(--fontWeight-text-medium);
            }

            .nav-drawer .drawer-links > li > a {
                font: inherit;
                display: block;
                padding: 12px 20px;
                font-size: 1em;
            }

            .nav-drawer .drawer-links > li > ul {
                margin: 0;
                display: none;
                list-style: none;
                margin-top: -5px;
                padding-left: 10px;
                margin-bottom: 10px;
                flex-direction: column;
            }

                .nav-drawer .drawer-links > li > ul > li > a {
                    font: inherit;
                    color: inherit;
                    display: block;
                    padding: 10px 20px;
                    text-decoration: none;
                }

        .nav-drawer .drawer-links li.um-open > ul {
            display: flex;
        }

        .nav-drawer .drawer-links li.um-open button {
            font: inherit;
            color: var(--color-text-secondary);
            opacity: 0.7;
        }

            .nav-drawer .drawer-links li.um-open button:before {
                top: calc(50% - 2px);
                transform: rotate(135deg);
            }

        .nav-drawer .drawer-links > li > button:before {
            top: calc(50% - 6px);
            right: 20px;
            width: 7px;
            border: 2px solid var(--color-text-secondary);
            height: 7px;
            content: "";
            opacity: 0.6;
            position: absolute;
            transform: rotate(-45deg);
            border-top-width: 0;
            border-right-width: 0;
            border-bottom-left-radius: 2px;
        }

    .nav-drawer .drawer-buttons button {
        width: 100%;
        flex-grow: 1;
        font-size: 15px !important;
        margin-bottom: 10px;
    }

        .nav-drawer .drawer-buttons button:last-child {
            margin-bottom: 0;
        }

    .nav-drawer .drawer-buttons a {
        width: 100%;
        flex-grow: 1;
        font-size: 15px !important;
        margin-bottom: 10px;
    }

        .nav-drawer .drawer-buttons a:last-child {
            margin-bottom: 0;
        }

    .nav-drawer header .nav-drawerClose {
        all: unset;
        width: 40px;
        border: none;
        cursor: pointer;
        height: 40px;
        margin: 0;
        padding: 0;
        font-size: 30px;
        background: transparent;
        text-align: center;
    }

.section.header {
    /*top: 0;
    left: 0;
    right: 0;*/
    display: flex;
    /*z-index: 99;*/
    /*position: absolute;*/
    background: var(--color-bg);
    min-height: var(--section-header-height);
    align-items: center;
    border-bottom: var(--border-width) solid var(--color-border-normal);
}

    .section.header > div {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .section.header > div > div {
            height: var(--section-header-height);
            display: flex;
            position: relative;
            flex-grow: 1;
            align-items: center;
            border-radius: 5px;
            flex-direction: row;
        }

.nav-logo {
    margin: 0;
    margin-right: auto;
    /*border: 1px solid black;*/
    padding: 6px 8px;
    height: 36px;
    display: flex;
    align-items: center;
}

    .nav-logo > a,
    .nav-logo > span {
        color: inherit;
        display: flex;
        align-items: center;
        line-height: 0;
        font-family: "Rubik", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        font-size: 1.75rem;
        font-weight: 500;
        line-height: 1.5;
    }

        .nav-logo > a:hover,
        .nav-logo > span:hover {
            text-decoration: none;
        }

        .nav-logo > a > div + span,
        .nav-logo > span > div + span {
            margin-left: calc(15px * var(--gap));
        }

.section.hero {
    overflow: hidden;
    position: relative;
    /*padding-top: calc(0px + 70px);*/
}

    .section.hero > .wr {
        position: initial;
    }

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
}

@media (max-width: 740px) {
    .hero-container {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 5px;
    }

    .hero-cta {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-cta .email {
        margin-bottom: 5px;
    }

    .hero-background {
        display: none !important;
    }

    .section.solution .col{
        flex: unset;
    }

    .section.easy-steps .col.arrow{
        display: none;
    }

    .section.contact-us > .wr > div {
        flex-direction: column !important;
    }

    .section.contact-us > .wr > div > div {
        width: 100%;
    }
}

.hero-container > div {
    width: 50%;
    display: flex;
    text-align: left;
    align-items: flex-start;
    flex-shrink: 0;
    padding-top: 20px;
    padding-right: 0;
    flex-direction: column;
    padding-bottom: 20px;
}

    .hero-container > div:nth-child(1) {
        padding-top: 40px;
    }

@media (max-width: 740px) {
    .hero-container > div {
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }
}

/*.hero-container header {
                display: flex;
                align-items: flex-start;
                flex-direction: column;
            }*/

.hero-container header > p {
    font-size: 1.3em;
    max-width: 700px;
}

.hero-container header > h1 {
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 1rem;
}

.hero-container header > h2 {
    font-size: 1.8em;
    color: #ff5c35;
    margin-bottom: 1rem;
}

@media (max-width: 500px) {
    .hero-container header > p {
        font-size: 1em;
    }

    .hero-container header > h1,
    .hero-container header > h2 {
        font-size: 2.5em;
    }
}

button, a.btn {
    /*background: #ff5c35;*/
    /*background-color: #006bff;*/
    /*background-color: #eb0249;*/
    background-color: #0C90F0;
    border-radius: 8px;
    border-color: transparent;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    padding: 0.25rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: background-color .15s linear,color .15s linear;
}

    button:not(.disabled):hover {
        /*background-color: #e04826;*/
        /*background-color: #004eba;*/
        /*background-color: #b90138;*/
        background-color: #116BAC;
    }

    button:not(.disabled):active {
        /*background-color: #b3361d;*/
        /*background-color: #004796;*/
        /*background-color: #b90138;*/
        background-color: #116BAC;
    }

button.primary, button.secondary {
    height: 36px;
}

.hero-container p {
    margin: 0.5em 0 60px 0;
    font-size: 1.2em;
}

.hero-cta .email {
    display: inline;
    position: relative;
}

    .hero-cta .email > input {
        border: 1px solid #7691ad;
        border-radius: 3px;
        /*height: 2.75rem;*/
        margin-bottom: 0;
        padding: .5rem 1rem;
        background-color: #f6f9fc;
        color: #213343;
        margin-right: 10px;
        font-family: "Lexend Deca", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
    }

.hero-cta button {
    padding: 0.75rem 1.5rem;
    /*background: #ff5c35;*/
}

.hero-cta-error {
    color: #de2020;
}

.hero-background {
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    position: absolute;
    clip-path: polygon(10% 0, 0 100%, 100% 100%, 100% 0);
    object-fit: cover;
}

@media (max-width: 740px) {
    .hero-background {
        left: 0;
        position: relative;
        clip-path: none;
        margin-top: 2em;
    }
}

.hero-background > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sections-features {
    overflow: hidden;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.features-container {
    display: flex;
    min-height: 500px;
    align-items: center;
}

@media (max-width: 740px) {
    .features-container {
        align-items: flex-start;
        flex-direction: column;
    }
}

.features-container > div {
    display: flex;
    flex-direction: column;
}

@media (max-width: 740px) {
    .features-container > div {
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.features-container header {
    max-width: 55%;
}

@media (max-width: 740px) {
    .features-container header {
        max-width: 100%;
    }
}

._5046083b {
    color: var(--color-accent-primary);
    margin-top: 0;
}

.features-container h2 {
    font: var(--font-title);
    color: var(--color-text-primary);
    margin: 0 0 0 0;
    font-size: var(--fontSize-title);
}

.features-container p {
    margin: 0.5em 0 30px 0;
    font-size: 1.2em;
}

.features {
    width: 50%;
    display: flex;
    box-sizing: border-box;
    padding-right: 2em;
    flex-direction: column;
}

@media (max-width: 740px) {
    .features {
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2em;
}

.icon-el {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    flex-shrink: 0;
    margin-right: 1em;
    justify-content: center;
}

    .icon-el:not(svg):not(img) {
        padding: 0.4em;
    }

.icon-elimg {
    object-fit: contain;
}

.icon-el svg {
    position: relative;
}

.feature-details {
    display: flex;
    flex-direction: column;
}

    .feature-details span:nth-child(1) {
        color: var(--color-text-primary);
        font-size: 1.1em;
        font-weight: var(--fontWeight-text-medium);
    }

.feature-background {
    top: 0;
    left: calc(50% + 50px);
    bottom: 0;
    display: flex;
    position: absolute;
    transform: 0;
    align-items: center;
}

@media (max-width: 740px) {
    .feature-background {
        left: 0;
        position: relative;
        margin-top: 2em;
        align-items: center;
        justify-content: center;
    }
}

.feature-background > div {
    display: flex;
    z-index: 3;
    position: relative;
    max-width: 100%;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    border-radius: 40px;
}

@media (max-width: 1000px) {
    .feature-background > div {
        max-width: 70%;
    }
}

.feature-background > div > div {
    padding: 14px 14px 24px 14px;
    position: relative;
    background: linear-gradient(314deg, #212529 70%, #484e53 100%);
    border-radius: 25px 25px 0 0;
}

    .feature-background > div > div .laptop {
        left: -50px;
        right: -50px;
        bottom: -22px;
        height: 22px;
        position: absolute;
        background: linear-gradient(0deg, #212529 0%, #484e53 100%);
        border-radius: 2px 2px 10px 10px;
    }

        .feature-background > div > div .laptop:after {
            top: 0;
            left: 50%;
            width: 20%;
            height: 8px;
            content: "";
            position: absolute;
            transform: translate(-50%, 0);
            background: #868e96;
            box-shadow: inset 5px 0 5px rgba(0, 0, 0, 0.4), inset -5px 0 5px rgba(0, 0, 0, 0.4);
            border-radius: 0 0 10px 10px;
        }

._572aa2c1 {
    display: block;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px 10px 0 0;
}

    ._572aa2c1 > img {
        max-width: 100%;
        max-height: 100%;
    }

.section.solution {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

._f15eceb0 {
    color: var(--color-accent-primary);
    margin-top: 0;
}

._4f1a8a13 {
    font: var(--font-title);
    color: var(--color-text-primary);
    margin: 0 0 0 0;
    font-size: var(--fontSize-title);
}

/*.solution-container {
                display: flex;
                flex-wrap: wrap;
                margin-bottom: -3em;
                justify-content: space-between;
            }*/

/*.solution-section {
                width: calc(33.333% - 3em);
                display: flex;
                align-items: flex-start;
                margin-bottom: 3em;
                flex-direction: column;
            }*/

/*@media (max-width: 500px) {
                .solution-section {
                    width: 100% !important;
                }
            }

            @media (max-width: 800px) {
                .solution-section {
                    width: calc(50% - 3em);
                }
            }*/

._42ec9cc1 {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 1em;
    justify-content: center;
}

    ._42ec9cc1:not(svg):not(img) {
        padding: 0.4em;
    }

._42ec9cc1img {
    object-fit: contain;
}

._42ec9cc1 svg {
    position: relative;
}

.section.faq {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

._a27084bb {
    color: var(--color-accent-primary);
    margin-top: 0;
}

.section.faq header > p {
    margin: 0.5em 0 30px 0;
    font-size: 1.2em;
}

.section.faq > .wr > div > div {
    display: flex;
    flex-wrap: wrap;
}

.section.faq .question {
    margin: 16px auto 16px 0;
    max-width: 40%;
    min-width: 40%;
}

    .section.faq .question:last-child {
        margin: 16px auto 16px 0;
    }

    .section.faq .question:nth-child(even) {
        margin-left: auto;
        margin-right: 0;
    }

@media (max-width: 1000px) {
    .section.faq .question {
        max-width: 100%;
        min-width: 100%;
    }
}

.section.faq .question > h4 {
    color: var(--color-text-primary);
    margin: 0;
    font-size: 1.05em;
    font-weight: var(--fontWeight-text-medium);
}

footer > .wr > div {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 500px) {
    footer > .wr > div {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
    }
}

span.logo {
    /*color: #2a2b2a;*/
    /* color: #375062;*/
    /*color: #000000;*/
    /*color: #4E374F;*/
    display: inline;
    background-image: url("../../images/novvl-blue.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 80px;
    height: 16px;
}

    span.logo > span {
        /*color: #ff0042;*/
        /*color: #ec6774;*/
        /*color: #D4145B;*/
        color: #E94C31;
        font-size: 1.25em;
    }

footer span {
    font-size: 1em;
}

    footer span.logo {
        font-family: "Rubik", sans-serif;
        font-size: 1.2rem;
    }

footer .address {
    margin-top: 10px;
}

._9fc8f72f {
    display: block;
    max-width: calc(200px * var(--scale));
    max-height: calc(40px * var(--scale));
}

footer .social-networks {
    display: flex;
    margin-top: 1em;
}

footer .social-network {
    color: inherit;
    margin-right: 1em;
    width: 24px;
    height: 24px;
    opacity: 0.86;
}

    footer .social-network:hover {
        opacity: 1;
    }

._2cd4f8c5 {
    display: block;
}

footer .links {
    margin: 0;
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
}

@media (max-width: 500px) {
    footer .links {
        margin-top: 30px;
    }
}

footer .links > li {
    margin-left: 80px;
    margin-bottom: 30px;
}

@media (max-width: 500px) {
    footer .links > li {
        margin-left: 0;
        margin-right: 50px;
    }
}

footer .links > li > h4 {
    color: var(--color-text-primary);
    margin: 0 0 5px 0;
    font-weight: var(--fontWeight-text-medium);
}

footer .links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    footer .links ul > li {
        padding: 4px 0;
        font-size: 0.9em;
    }

        footer .links ul > li > a {
            color: var(--color-text-secondary);
            padding: 10px 0;
        }

/*.section.challenges{
                box-sizing: border-box;
                position: relative;
                width: 100%;
                height: 100vh;
                overflow: hidden;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 50px;
            }

            .section.challenges::before{
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                width: 100vh;
                height: 100vh;
                background: #008dff;
                border-radius: 50%;
                transform-origin: bottom;
                transform: translateX(-50%) scale(4);
            }

            .section.challenges .content{
                position: relative;
                z-index: 1;
                max-width: 1000px;
                text-align: center;
            }

            .section.challenges .content h2{
                font-size: 3em;
            }

            .section.challenges .content p{
                font-size: 1.2em;
            }*/

body {
    font-family: "Lexend Deca", sans-serif;
}

.brand-name {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
}

h2 .brand-name, h4 .brand-name {
    font-weight: 600;
}

.section.challenges {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*min-height: 400px;*/
    /* background-image: linear-gradient(90deg, #fc4a1a, #f7b733);*/
    /*background-image: linear-gradient(90deg, #ffc65f, #ffa500);*/
    /*background-image: linear-gradient(90deg, #f857af, #f2666b);*/
    /*background-image: linear-gradient(90deg, #ff5c35, #ff5c35);*/
    background-image: linear-gradient(90deg, #fef4ea, #fef4ea);
    /*padding-top: 2rem;*/
    /*padding-bottom: 2rem;*/
    text-align: left;
    /*padding: 1rem;*/
    padding-bottom: 3rem;
    border-bottom: 4px solid #ff5c35;
}

    .section.challenges .content {
        background-image: linear-gradient(90deg, #fef4ea, #fef4ea);
        /*border-bottom-right-radius: 1.11111rem;
                    border-bottom-left-radius: 0px;
                    border: solid 1px #ff5c35;
                    border-top: 12px solid #ff5c35;*/
        width: 100%;
        /*padding: 1rem;*/
        padding: 0 2rem;
        margin-top: -4rem;
    }

/*.section.challenges .content*/ h2 {
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 2rem;
}

.section.challenges .content p {
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.3em;
}

.custom-shape-divider-top-1708301415 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .custom-shape-divider-top-1708301415 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 125px;
    }

    .custom-shape-divider-top-1708301415 .shape-fill {
        fill: #FFFFFF;
    }

.spacer {
    aspect-ratio: 900/300;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.spacer2 {
    aspect-ratio: 300/50;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.wave-top {
    background-image: url("../images/wave-top.svg");
    margin-top: -1px;
}

.wave-top2 {
    background-image: url("../images/wave-top2.svg");
    margin-top: -1px;
}

.wave-top-border {
    background-image: url("../images/wave-top3.svg");
    /*margin-top: -1px;*/
}

.wave-bottom {
    background-image: url("../images/wave-bottom.svg");
    margin-bottom: -1px;
}

.wave-bottom2 {
    background-image: url("images/wave-bottom2.svg");
    margin-bottom: -1px;
}

.primary-label {
    color: #ff5c35;
}

.section.easy-steps {
    /*background-color: #f6f9fc;*/
    width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
}

    .section.easy-steps .col {
        text-align: center !important;
        padding: 30px 10px;
    }

    .section.easy-steps .step h5 {
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        margin: 20px 0;
    }

    .section.easy-steps .step p {
        font-family: "Lexend Deca", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        font-size: 1em;
    }

    .section.easy-steps .step svg {
        color: #4762c9;
        width: 48px;
        height: 48px;
    }

    .section.easy-steps .arrow svg {
        color: #ff5c35;
        width: 48px;
        height: 48px;
    }

footer {
    display: flex;
    padding: 30px 0 0 0;
    background-image: url("../../images/footer_bg_15.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 30px 30px 0 0;
    /*border-top: 4px solid #ff5c35;*/
}

    footer .widget-area {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    footer .copyright-wrap {
        padding: 18px 0;
        background-size: 100% auto;
        background-color: transparent;
        border-top: 1px solid rgba(121, 129, 150, 0.35);
    }

    footer .footer-widget, footer .footer-widget .widget {
        padding: 0;
        padding-bottom: 0px;
        border: none;
        padding-bottom: 0;
        background-color: transparent;
        box-shadow: none;
    }

    footer .footer-widget {
        margin-bottom: 50px;
    }

    footer .widget {
        margin-bottom: 40px;
        position: relative;
        border-radius: 5px;
    }

.footer-widget .widget_title.style2::before, .footer-widget .widget_title.style2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 61px;
    height: 2px;
    background: -webkit-linear-gradient(top, #3E66F3 0%, #0031DD 100%);
    background: linear-gradient(180deg, #3E66F3 0%, #0031DD 100%);
}

.footer-widget .widget_title.style2::after {
    width: 16px;
    border: 2px solid #000000;
    height: 10px;
    background: transparent;
    bottom: -3px;
    left: 40px;
    -webkit-animation: footerLine 7s linear infinite;
    animation: footerLine 7s linear infinite;
}

.footer-widget .widget_title::after {
    content: '';
    height: 10px;
    width: 10px;
    background-color: #FFFFFF;
    position: absolute;
    bottom: -4px;
    left: 96px;
    border-radius: 99px;
    border: 2px solid #3E66F3;
}

.footer-widget .widget_title::before {
    content: '';
    height: 2px;
    width: 100px;
    background-color: #3E66F3;
    position: absolute;
    left: 0;
    bottom: 0;
}

.footer-widget .widget_title {
    max-width: 270px;
    color: #FFFFFF;
    font-weight: 600;
    /*text-transform: uppercase;*/
    margin: -0.12em 0 35px 0;
    padding: 0 0 17px 0;
}

@-webkit-keyframes footerLine {
    0% {
        left: 40px;
    }

    50% {
        left: 0;
    }

    100% {
        left: 40px;
    }
}

@keyframes footerLine {
    0% {
        left: 40px;
    }

    50% {
        left: 0;
    }

    100% {
        left: 40px;
    }
}

.widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    line-height: 1em;
    margin: -0.12em 0 28px 0;
}

footer p {
    color: #8E939D;
}

footer ul.menu {
    list-style: none;
    padding: 0;
}

    footer ul.menu a {
        color: #8E939D;
    }

    footer ul.menu a > i.fa {
        margin-right: 5px;
    }

footer ul.footer-menu {
    margin: 0;
    padding: 0;
    list-style-type: disc;
}

footer ul.footer-menu li {
    display: inline-block;
    margin-right: 30px;
}

.footer-menu li a {
    position: relative;
    font-weight: 400;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-transform: capitalize;
}

footer .copyright-wrap p, footer .copyright-wrap a {
    font-size: 0.85em;
    margin: 0;
}

footer .copyright-wrap p {
    margin: 0;
}

/*.widget_nav_menu a::before, .widget_meta a::before, .widget_pages a::before, .widget_archive a::before, .widget_categories a::before {
    content: "\f061";
    position: absolute;
    right: 25px;
    top: 17px;
    font-family: var(--icon-font);
    font-weight: 600;
    color: var(--theme-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}*/

.section.solution header {
    margin-bottom: 60px;
}

    .section.solution header p {
        margin: 10px 0 30px 0;
        font-size: 18px;
    }

.section.solution svg {
    color: #4762c9;
    width: 40px;
    height: 40px;
}

.section.solution h3 {
    margin-left: 5px;
    margin-bottom: 0;
}

.section.solution p {
    margin-top: 10px;
}

.section.pricing-plans {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #F6F5F5;
}

    .section.pricing-plans header {
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
    }

    .section.pricing-plans strong {
        font-size: 14px;
    }

    .section.pricing-plans header > h2 {
        font: var(--font-title);
        color: var(--color-text-primary);
        margin: 0 0 0 0;
        font-size: var(--fontSize-title);
    }

    .section.pricing-plans header > p {
        margin: 0.5em 0 30px 0;
        font-size: 1.2em;
    }

        .section.pricing-plans header > p > span {
            color: #ff5c35;
            font-size: 1em;
            font-weight: 500;
        }

    .section.pricing-plans header + div {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

        .section.pricing-plans header + div > div {
            margin: 0 -1.5em;
            display: flex;
            flex-wrap: wrap;
            /*align-items: flex-end;*/
            justify-content: center;
        }

.pricing-plan {
    color: var(--card-textColorSecondary);
    margin: 0.8em;
    display: flex;
    padding: 1.5em;
    flex-grow: 0;
    min-width: 255px;
    /*min-height: 400px;*/
    background: var(--card-bg);
    box-shadow: var(--card-boxShadow);
    box-sizing: border-box;
    flex-basis: 0;
    /*border-color: var(--card-borderColor);*/
    border: 1px solid #7691ad;
    border-radius: var(--card-borderRadius);
    flex-direction: column;
}

    .pricing-plan > span {
        color: var(--card-textColorPrimary, var(--color-text-primary));
        font-size: 1.4em;
        font-weight: var(--fontWeight-text-heavy);
    }

    .pricing-plan > p {
        all: unset;
        display: unset;
        font-size: unset;
        display: block;
        font-size: 0.9em;
    }

.pricing-plan-price {
    display: flex;
    margin-top: 1em;
    align-items: baseline;
}

    .pricing-plan-price > span:nth-child(1) {
        color: var(--card-textColorPrimary, var(--color-text-primary));
        font-size: 2.5em;
        font-family: var(--font-system);
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }

    .pricing-plan-price > span:nth-child(2) {
        font-size: 0.8em;
        line-height: 1;
        margin-left: 0.2em;
        white-space: pre-wrap;
        color: #8392a5;
    }

.pricing-plan-price-promo {
    margin-top: 1em;
    align-items: baseline;
}

    .pricing-plan-price-promo .promo-price {
        color: #ff5c35;
        font-size: 1.3em;
        font-family: var(--font-system);
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }

    .pricing-plan-price-promo .regular-price {
        margin-top: -0.1em;
        margin-bottom: 0.1em;
    }

    .pricing-plan-price-promo .regular-price > span:nth-child(1) {
        color: var(--card-textColorPrimary, var(--color-text-primary));
        font-size: 1.3em;
        font-family: var(--font-system);
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
        text-decoration: line-through;
    }

    .pricing-plan-price-promo .promo-price + span, .pricing-plan-price-promo .regular-price > span:nth-child(2) {
        font-size: 0.8em;
        line-height: 1;
        margin-left: 0.2em;
        white-space: pre-wrap;
        color: #8392a5;
    }

    .pricing-plan > ul {
        margin: 1em 0 0;
        display: flex;
        padding: 0;
        list-style: none;
        flex-direction: column;
    }

    .pricing-plan > ul > li {
        display: flex;
        font-size: 0.9em;
        margin-top: 0.4em;
        align-items: center;
        margin-bottom: 0.4em;
        align-items: flex-start;
    }

        .pricing-plan > ul > li:nth-child(1) {
            height: 3rem;
            align-items: flex-start;
            /*border-bottom: 1px solid #dadfe4;*/
        }

strong {
    font-weight: var(--fontWeight-text-heavy);
}

.pricing-plan > ul > li > svg {
    font-size: 20px;
    margin-right: 0.4em;
    color: #2ec180;
    min-width: 20px;
    min-height: 20px;
}

.pricing-plan div.free-trial {
    text-align: center !important;
    margin-top: 0.1em;
}

    .pricing-plan div.free-trial > span {
        font-size: 0.6em;
        font-weight: 400;
    }

.pricing-plan > button, .pricing-plan > a.btn-link {
    /*margin-top: 1.5em;
                margin-bottom: 0em;*/
    margin-top: auto !important;
}

.section.contact-us {
    position: relative;
    padding-top: 100px;
    padding-bottom: 150px;
    background-color: #F6F5F5;
}

    .section.contact-us > .wr > div {
        display: flex;
        flex-wrap: wrap;
        text-align: left;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

.contact-us-left {
    width: calc(55% - 60px);
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    flex-direction: column;
}

    .contact-us-left > header {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

        .contact-us-left > header > h2 {
            font-size: var(--fontSize-title-section, 3em);
            line-height: 1.1;
        }

.um-gradient-text {
    background: -webkit-linear-gradient(var(--angle), var(--from), var(--to));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-us-left > header > p {
    font-size: 1.4em;
    max-width: 700px;
}

.contact-us-right {
    color: var(--card-textColorSecondary);
    width: 45%;
    display: flex;
    padding: 2em;
    background: var(--card-bg);
    box-shadow: var(--card-boxShadow);
    box-sizing: border-box;
    border-color: var(--card-borderColor);
    border-style: solid;
    border-width: var(--card-borderWidth);
    border-radius: var(--card-borderRadius);
}

.section.contact-us .form {
    width: 100%;
}

    .section.contact-us .form .field {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

.section.contact-us .field.field-two-col {
    grid-column: span 2;
}

.section.contact-us .form .field label,
.section.contact-us .formCaptcha label {
    font-weight: 500;
    margin-bottom: 4px;
}

.section.contact-us .form input:not([type='radio']):not([type='checkbox']),
.section.contact-us .form textarea,
.section.contact-us .form select {
    display: flex;
    box-sizing: border-box;
    background: transparent;
    border-radius: 4px;
    border-width: var(--border-width);
    border-color: var(--color-border-normal);
    border-style: solid;
    font-size: 14px;
    color: inherit;
    font-family: inherit;
    line-height: 34px;
    height: 36px;
    outline: none;
    padding: 0 10px;
}

.section.contact-us .form input.captchaAnswer {
    font-size: 16px !important;
    width: 200px;
    height: 40px !important;
    line-height: 40px !important;
}

.section.contact-us .form textarea {
    line-height: 20px;
    height: initial;
    padding: 10px;
    resize: vertical;
}

.section.contact-us .form input[type='radio'],
.section.contact-us .form input[type='checkbox'] {
    margin-right: 6px;
}

.section.contact-us .form .radios {
    display: flex;
    flex-direction: column;
}

    .section.contact-us .form .radios label {
        line-height: 1.4;
        font-weight: 400;
    }

.section.contact-us .ctaWrapper {
    position: relative;
    text-align: right;
}

.form .field.error > label {
    color: #de2020;
}

.section.contact-us .form-success {
    background: #dbebff;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    display: none;
    grid-column: span 2;
}

.form-error {
    background: #ff7b7b2d;
    color: rgb(97, 26, 21);
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    display: none;
}

.form-success {
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    display: none;
}

    .form-error:empty, .form-success:empty {
        display: none;
    }

    .form-error::first-letter, .form-success::first-letter {
        text-transform: uppercase;
    }

    .form-error.isVisible, .form-success.isVisible {
        display: flex;
    }

.hero-cta > .email > .error,
.form .error input,
.form .error textarea {
    border: 1px solid #de2020 !important;
}

.form-error > svg {
    padding-top: 2px;
    stroke: #f44336;
}

.form-error > .content, .form-success > content {
    padding-left: 10px;
    flex-direction: row;
    align-items: center;
}

    .form-error > .content > span, .form-success > .content span {
        color: rgb(97, 26, 21);
        padding-bottom: 10px;
        font-size: 14px;
        font-weight: 500;
    }

    .form-error > .content > div, .form-success > .content > div {
        padding-top: 5px;
    }

.section.contact-us .formCaptcha {
    display: none;
}

    .section.contact-us .formCaptcha.isVisible {
        display: block;
    }

@container (width < 550px) {
    .section.contact-us .formRow {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .section.contact-us .form.two-col .formRow > div,
    .section.contact-us .form .formRow > div {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.section.contact-us .form-two-col {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    container-type: inline-size;
}

    .section.contact-us .form-two-col .ctaWrapper {
        grid-column: span 2;
    }

@container (width < 500px) {
    .section.contact-us .form .field {
        grid-column: span 2;
    }
}

/* Sign In/Up Forms */
section.sign-in {
    padding: 1rem;
}

    section.sign-in .row, section.sign-in .row > div {
        max-height: 520px;
        height: 520px;
    }

.sign-in svg {
    border-bottom-right-radius: 0.5rem;
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    transition: 0.3s;
}

.sign-in .row {
    box-shadow: rgba(21, 21, 25, 0.21) 0px 19px 30px -10px;
    box-sizing: border-box;
    border-radius: 10px;
    min-height: 500px;
    max-width: 834px;
}

    .sign-in .row > div:first-child {
        min-width: 200px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        color: #DDE6F8;
        background-image: url("../../images/sign-in.png");
        background-size: cover;
        border-top: 0.2px solid #7691ad;
        border-left: 0.2px solid #7691ad;
        border-bottom: 0.2px solid #7691ad;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        span.logo {
            width: 130px;
            height: 28px;
        }

        .sign-in .row {
            box-shadow: none !important;
        }

        .sign-in .row > div:first-child {
            display: none !important;
        }

            .sign-in .row > div:last-child {
                border: 0.2px solid #7691ad;
                border-radius: 10px;
                margin: auto !important;
            }

        .sign-in .reset-pass {
            display: flex;
            justify-content: space-between;
        }

        .sign-in .reset-pass a.toggle-mode {
            display: unset !important;
        }

        .sign-up .sign-in {
            display: inherit !important;
        }
    }

    @media (max-width: 768px) {
        .sign-in .row > div:last-child {
            border: unset !important;
            border-radius: unset !important;
            margin: auto !important;
            padding: 0 !important;
        }

        .code-inputs {
            gap: 6px !important;
        }

        .code-input {
            width: 44px !important;
            height: 52px !important;
        }
    }

    .sign-in .row > div:last-child {
        padding: 5em;
        min-width: 300px;
        border-top: 0.2px solid #7691ad;
        border-right: 0.2px solid #7691ad;
        border-bottom: 0.2px solid #7691ad;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        background: #fff;
    }

    .sign-in .row > div:first-child h2 {
        margin-top: 6em;
    }

    .sign-in .row > div:first-child p {
        padding: 0 1rem;
    }

    .sign-in .logo {
        font-family: "Rubik", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        font-size: 1.75rem;
        font-weight: 500;
        line-height: 1.5;
    }

    .form.sign-in, .form.sign-in .sign-in-regular, .form.sign-in .sign-in-2fa, .form.sign-up, .form.reset-password {
        display: grid;
        grid-gap: 1rem;
        width: 100%;
    }

    .form.sign-up, .form.reset-password {
        display: none;
    }

    .form input:not(.code-input) {
        border: 1px solid #7691ad;
        border-radius: 3px;
        height: 2.75rem;
        margin-bottom: 0;
        padding: .5rem 1rem;
        background-color: #f6f9fc;
        color: #213343;
        font-family: "Lexend Deca", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
    }

    .form #cb-policy[type=checkbox] {
        height: unset;
        margin-right: 5px;
    }

        .form #cb-policy[type=checkbox] + label {
            display: inline;
        }

    .form .field {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

        .form .field label {
            font-weight: 500;
            margin-bottom: 4px;
            font-family: "Lexend Deca", sans-serif;
        }

    .form button {
        width: 100%;
    }

    .sign-in a.btn-link {
        color: #DDE6F8;
        border: 1px solid #DDE6F8;
    }

        .sign-in a.btn-link:hover {
            background-color: #eb0249;
            color: #ffffff;
            border-color: transparent;
        }

    .sign-in .reset-pass a.toggle-mode {
        display: none;
    }

    .sign-in .reset-pass a,
    .reset-password .sign-in a,
    .sign-in .back-to-login a,
    .sign-up .sign-in a {
        font-size: 14px;
        color: #7d7d8b;
    }

    .sign-up .sign-in {
        display: none;
    }

        .sign-in .reset-pass a:hover,
        .reset-password .sign-in a:hover,
        .sign-in back-to-login a:hover,
        .sign-up .sign-in a:hover {
            text-decoration: underline;
        }

    .form .field.policy {
        font-size: 14px;
        padding: 5px;
    }

    .sign-up-action {
        display: block;
    }

    .sign-in-action {
        display: none !important;
    }

    .sign-up-action, .sign-in-action, .form.sign-in, .form.sign-up {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.4s ease;
    }

    .form-container.transitioning .sign-up-action,
    .form-container.transitioning .sign-in-action,
    .form-container.transitioning .form.sign-in,
    .form-container.transitioning .form.sign-up {
        opacity: 0;
        transform: translateY(20px);
    }

    .form .content {
        font-size: 14px;
        border-radius: 4px;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.00938em;
    }

    .form-container._2fa-mode .sign-in-regular {
        display: none !important;
    }

    .form-container._2fa-mode .sign-in-2fa {
        display: grid !important;
    }

    .form-container.sign-up-mode .sign-up-action,
    .form-container.sign-up-mode .form.sign-in,
    .form-container.reset-password-mode .form.sign-in,
    .form-container.sign-up-mode .form.reset-password {
        display: none !important;
    }

    .form-container.sign-up-mode .sign-in-action {
        display: flex !important;
    }

    .form-container.reset-password-mode .form.reset-password {
        display: grid;
    }

    .form-container.sign-up-mode .form.sign-up {
        display: grid;
    }

    .form.sign-in .sign-in-2fa {
        display: none;
    }

    .form .header {
        margin-bottom: 32px;
    }

    .subtitle {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.5;
        text-align: center !important;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .code-inputs {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-bottom: 24px;
    }

    .code-input {
        width: 48px;
        height: 56px;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-size: 24px;
        font-weight: 600;
        text-align: center;
        color: #1f2937;
        transition: all 0.2s ease;
        background: #f9fafb;
    }

        .code-input:focus {
            outline: none;
            border-color: #4f46e5;
            background: white;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        .code-input:not(:placeholder-shown) {
            border-color: #10b981;
            background: white;
        }

        .code-input.error {
            border-color: #ef4444;
            background: #fef2f2;
        }

    /* Broken link */
    .broken-link {
        background: white;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        padding: 48px;
        max-width: 480px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

        .broken-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0C90F0, #0A7AD8, #065AA3);
        }

        .broken-link .message, .broken-link .support-link {
            text-align: center;
        }

        .broken-link .icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, #ffeaa7, #fab1a0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            animation: pulse 2s infinite;
        }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    .message {
        color: #2d3748;
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .broken-link .form {
        display: grid;
        flex-direction: column;
        grid-gap: 1rem;
        margin-top: 32px;
        width: 100%;
    }

    .broken-link .form-group {
        text-align: left;
    }

    .broken-link .form-label {
        display: block;
        font-weight: 600;
        color: #4a5568;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .broken-link .form-input {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: #f8fafc;
    }

        .broken-link .form-input:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

    .broken-link .submit-btn {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        border: none;
        padding: 16px 32px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

        .broken-link .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .broken-link .submit-btn:active {
            transform: translateY(0);
        }

        .broken-link .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .broken-link .submit-btn:hover::before {
            left: 100%;
        }

    .broken-link .support-link {
        margin-top: 24px;
        font-size: 14px;
        color: #718096;
    }

        .broken-link .support-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }

            .broken-link .support-link a:hover {
                text-decoration: underline;
            }

    @media (max-width: 600px) {
        .broken-link {
            padding: 32px 24px;
        }

            .broken-link .message {
                font-size: 16px;
            }
    }

    .broken-link button {
        width: 100%;
    }