a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    line-height: 1;
    scroll-behavior: smooth;
    background-color: var(--background-color)
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

img {
    max-width: 100%;
    -webkit-user-select: none;
    user-select: none
}

a {
    text-decoration: none
}

input {
    font-size: 12px
}

ul.inline li {
    display: inline-block
}

h1 {
    font-size: 30px;
    color: var(--heading-text-color);
    font-weight: 500
}

p {
    font-weight: 400;
    font-size: 20px;
    color: var(--body-text-color);
    line-height: 32px
}

.text-link,
p.small {
    font-size: 15px;
    line-height: 24px
}

.text-link {
    font-weight: 600;
    letter-spacing: 0;
    position: relative;
    color: var(--text-link-color)
}

.text-link:before {
    content: "";
    width: 100%;
    position: absolute;
    height: 2px;
    background-color: #2c343e;
    bottom: -4px
}

.animated-content {
    padding-top: 32px;
    min-height: 0;
    opacity: 0;
    transition: min-height 1s cubic-bezier(.075, .82, .165, 1), opacity .7s cubic-bezier(.645, .045, .355, 1)
}

.animated-content.show {
    min-height: 964px;
    opacity: 1
}

footer {
    bottom: 0;
    height: 64px;
    max-width: 616px;
    padding: 0 32px;
    width: 50vw;
    position: fixed;
    left: 25%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 1
}

footer:before {
    content: "";
    width: 100%;
    position: absolute;
    z-index: -1;
    height: 128px;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-image: var(--footer-background-image)
}

@media screen and (max-width:956px) {
    footer {
        position: absolute;
        width: 100%;
        left: 50%
    }
}

@media screen and (max-width:562px) {
    footer {
        left: unset;
        transform: unset
    }
}

footer ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 64px;
    align-self: flex-end
}

footer ul li {
    font-weight: 400;
    font-size: 16px;
    color: var(--body-text-color);
    cursor: pointer
}

footer ul li .badge {
    font-weight: 700;
    font-size: 13px;
    color: #f9fafa;
    position: relative;
    z-index: 1;
    margin-left: 16px;
    display: inline-flex;
    align-items: center;
    flex-direction: row
}

footer ul li .badge:before {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background-image: linear-gradient(180deg, #ee641a, #bd2500);
    border-radius: 18px;
    z-index: -1;
    left: -4px
}

@media screen and (max-width:562px) {
    footer ul li .badge {
        margin-left: 10px
    }
}

footer ul li a {
    color: var(--body-text-color)
}

@media screen and (max-width:562px) {
    footer ul {
        flex-wrap: wrap;
        justify-content: center
    }

    footer ul li:not(:first-child),
    footer ul li:not(:last-child) {
        padding: 0 8px
    }
}

@media screen and (max-width:562px) {
    footer {
        padding: 0 16px
    }
}

.modal-container {
    background-color: rgba(13, 27, 45, .9);
    width: 100%;
    height: 100%;
    position: fixed;
    transition: all .25s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10
}

.modal-container .modal {
    background-color: #fff;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    padding: 40px;
    max-width: 800px;
    margin: 24px;
    position: relative;
    max-height: calc(100vh - 48px);
    overflow: auto
}

.modal-container .modal .cross {
    position: absolute;
    right: 24px;
    top: 24px;
    cursor: pointer
}

.modal-container .modal h1 {
    color: #1e222b;
    margin-bottom: 24px
}

.modal-container .modal p {
    color: #939bac
}

.feature {
    display: flex;
    align-items: flex-start
}

.feature:not(:first-child) {
    margin-top: 32px
}

.feature .icon {
    min-width: 28px;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    margin-top: 4px
}

.feature-text h2 {
    font-weight: 500;
    font-size: 18px;
    color: var(--heading-text-color);
    letter-spacing: 0;
    line-height: 30px
}

.feature-text p {
    font-weight: 400;
    font-size: 15px;
    color: var(--body-text-color);
    letter-spacing: 0;
    line-height: 24px;
    margin-bottom: 12px
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate3d(-50%, -4px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(-50%, 16px, 0)
    }
}

.index-page {
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    min-height: 100vh;
    max-width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth
}

.index-page {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: auto;
    width: 100%
}

.index-page .left {
    width: 50%;
    min-height: 100vh;
    position: absolute;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
    top: 0
}

.index-page .left .content {
    max-width: 518px;
    width: 100%;
    position: relative;
    padding: 64px 40px 128px;
    margin: 0 auto
}

.index-page .left .content .logo {
    margin-bottom: 24px;
    cursor: pointer
}

.index-page .left .content>p {
    margin-top: 12px
}

.index-page .left .content .buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px
}

.index-page .left .content .buttons .app-store {
    cursor: pointer;
    height: 60px;
    transition: all .2s ease-in-out
}

.index-page .left .content .buttons .app-store:hover {
    transform: translateY(-2px)
}

.index-page .left .content .buttons .learn-more {
    background: #4fb9fc;
    border-radius: 6px;
    font-weight: 500;
    font-size: 20px;
    border: 1px solid #4fb9fc;
    color: #fff;
    letter-spacing: .2px;
    padding: 16px 48px;
    height: 60px;
    text-align: center;
    cursor: pointer;
    outline: none;
    transition: all .2s ease-in-out
}

.index-page .left .content .buttons .learn-more:hover {
    transform: translateY(-2px)
}

@media screen and (max-width:562px) {
    .index-page .left .content .buttons .app-store {
        height: 48px;
        width: auto
    }

    .index-page .left .content .buttons .learn-more {
        height: auto;
        padding: 12px 22px
    }
}

@media screen and (max-width:414px) {
    .index-page .left .content .buttons {
        flex-direction: column
    }

    .index-page .left .content .buttons .app-store {
        margin-bottom: 16px
    }
}

.index-page .left .content .reviews {
    margin-top: 40px;
    border-radius: 6px;
    margin-bottom: 80px;
    background-image: var(--review-background-image)
}

.index-page .left .content .other-features {
    text-align: left;
    margin-top: 112px
}

@media screen and (max-width:562px) {
    .index-page .left .content {
        padding: 152px 32px 128px
    }
}

.index-page .right {
    border-radius: 6px;
    width: 50%;
    height: 100%;
    position: fixed;
    right: 0;
    background-image: var(--right-background-image);
    pointer-events: none
}

.index-page .right,
.index-page .right .video {
    display: flex;
    justify-content: center;
    align-items: center
}

.index-page .right .video {
    max-width: 388px;
    position: relative
}

.index-page .right .video .knoet-video {
    position: absolute;
    height: calc(100% - 38px)
}

.index-page .right .video .device {
    max-width: 388px;
    pointer-events: none;
    width: auto;
    height: auto;
    position: relative;
    z-index: 1;
    max-height: calc(100vh - 140px)
}

.index-page .right .video .play-button {
    position: absolute
}

.index-page .right .copy-right {
    position: absolute;
    bottom: 24px;
    color: var(--copy-right-color)
}

@media screen and (max-width:956px) {
    .index-page {
        flex-direction: column
    }

    .index-page .left,
    .index-page .right {
        width: 100%;
        text-align: center;
        height: auto;
        position: relative
    }

    .index-page .right {
        padding: 40px 40px 96px;
        min-height: 836px;
        pointer-events: auto
    }
}