:root {
    --color-primary: #8168e3;
    --color-primary-dark: #6032c0;
    --color-secondary: #2a91f0;
    --color-secondary-dark: #1c7fdb;
    --color-grey-100: #f2f6fa;
    --color-grey-200: #e4edf7;
    --color-grey-300: #dce6f2;
    --color-grey-400: #d1deee;
    --color-grey-500: #b4c0d0;
    --color-grey-700: #5f6d7f;
    --color-grey-900: #3b4552;
}

#async-wrapper {
    display: none;
}

#header {
    position: relative;
    padding: 8rem 0 4rem;
    min-height: 30vh;
    text-align: center;
    color: #fff;
    background: linear-gradient(to top, #6032c0, #6737cb);
}

#header .btn-link {
    background: transparent;
    color: #fff;
}

#header .try-video-controller {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

#header #btn-try-start {
    z-index: 101;
    position: absolute;
    bottom: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    background: #fff;
    color: #6435c6;
    display: inline-block;
    left: 50%;
    padding: 14px 25px;
    border-radius: 2em;
    transition: transform 0.2s ease-out;
    transform: translate3d(-50%, 200%, 0);
    cursor: pointer;
    text-decoration: none;
}
#header #btn-try-start.appear {
    transform: translate3d(-50%, 0, 0);
}


#header .video-mute {
	display: none!important;
    text-indent: -9999px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    opacity: 0;
    border: none;
    border-radius: 1.5rem;
    color: #fff;
}

#header .video-mute:hover {
    opacity: 1;
}

#header .video-mute.video--mute {
}

#header .btn,
#header .icon {
    vertical-align: middle;
    margin-left: 0.5em;
    text-decoration: none;
}

#header svg {
    margin: 0;
    padding: 0;
}

#header .section-header {
    position: relative;
    margin: 4em auto 7em;
}

#header .text-headline {
    font-size: 2.9rem;
    font-weight: normal;
    color: #fff;
}

#header em {
    font-style: italic;
}
html.touch #btn-download {
	display: none;
}

#header .header-cta {
    border: 2px solid #fff;
    padding: 0 1.5rem;
    height: 3.1rem;
    line-height: 2.7rem;
    border-radius: 1.5rem;
    font-size: 1rem;
	margin-bottom: 10px;
}

#header .header-cta:hover {
    background: rgba(0,0,0,0.3);
}

@media (max-width: 760px) {
    #header {
        margin-bottom: -5rem;
    }
    #header+section {
        padding-top: 10rem;
    }
}

#header .player-module {
    position: relative;
    width: 100%;
}

#header .try-module {
    position: relative;
    display: block;
    color: white;
    width: 26rem;
    margin: 0 auto;
    z-index: 50;
    text-decoration: none;
    font-size: 16px;
}

#header .try-module-container {
    display: flex;
    flex-direction: column;
    border-radius: 0.25rem;
    overflow: hidden;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 512px) {
    #header .try-module {
        width: 80%;
        font-size: 10px;
    }
}

#header .try-header {
    flex: 0 1 auto;
    order: 1;
    position: relative;
    width: 100%;
    height: 3rem;
    background: #fff;
}

#header .try-btn {
    background: #8168e3;
    border: none;
    border-radius: 2px;
    color: #fff;
    padding: 0;
}

#header .try-btn:hover {
    background: #8c75e5;
}

#header .try-btn:active {
    transform: scale(0.98);
    background: #8168e3;
}

#header .try-btn:focus {
    outline: 4px solid blue;
}

#header .try-btn-25 {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.25rem;
}

#header .try-body {
    flex: 1;
    order: 2;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #c8d1db;
}

#header .try-body-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#header .try-video {
    width: 100%;
}
#header .try-iframe {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 101;
}

#header .try-footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}

#header .try-slide,
#header .try-others {
    flex: 0 1 auto;
}

#header .try-color,
#header .try-layout,
#header .try-size {
    display: inline-block;
}

#header .try-color:after,
#header .try-layout:after,
#header .try-size:after {
    content: '|';
    color: rgba(255, 255, 255, 0.2);
}

#header .try-size:after {
    content: '';
}

#header .try-color-ul,
#header .try-color-li {
    display: inline-block;
}

#header .try-color-li {
    text-indent: -9999px;
    width: 0.75rem;
    height: 0.75rem;
    border: 1px solid #ffffff;
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
    vertical-align: middle;
}

#header .try-color-li:first-of-type {
    background: #745dfa;
}

#header .try-color-li:nth-of-type(2) {
    background: #ffffff;
}

#header .try-color-li:last-of-type {
    background: #ffdc51;
}

@media (max-width: 480px) {
    #header .try-body-container {
        flex-direction: column-reverse;
    }
}

#header .flyouts {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    perspective: 1000px;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
}
@media (min-width: 761px) {
	#header .flyouts {
		max-width: 2000px;
		left: 50%;
		transform: translateX(-50%);
	}
}

#header .flyouts-li {
    cursor: pointer;
    position: absolute;
    width: 20rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #6032c0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
    top: 50%;
}

#header .flyouts-li img {
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0.6;
    transition: all 0.3s ease;
}

#header .flyouts-li:before {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12);
    background: #fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjNjAzMmMwIiBkPSJNOCA2LjgydjEwLjM2YzAgLjc5Ljg3IDEuMjcgMS41NC44NGw4LjE0LTUuMThjLjYyLS4zOS42Mi0xLjI5IDAtMS42OUw5LjU0IDUuOThDOC44NyA1LjU1IDggNi4wMyA4IDYuODJ6Ii8+PC9zdmc+) center / 80% no-repeat;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
    z-index: 30;
}

#header .flyouts-li:hover img {
    opacity: 1;
}

#header .flyouts-li:hover:before {
    opacity: 1;
    transform: translateY(0);
}

#header .flyouts-li:nth-of-type(1) {
    left: 25%;
    transform: translate(-50%, -50%) rotateY(20deg) scale(0.8);
}

#header .flyouts-li:nth-of-type(1):before {
    left: 1.5rem;
}

#header .flyouts-li:nth-of-type(1):hover {
    transform: translate(-50%, -50%) rotateY(10deg) scale(0.8);
}

#header .flyouts-li:nth-of-type(2) {
    left: 35%;
    transform: translate(-50%, -50%) rotateY(40deg);
    z-index: 34;
}

#header .flyouts-li:nth-of-type(2):before {
    left: 1.5rem;
}

#header .flyouts-li:nth-of-type(2):hover {
    transform: translate(-50%, -50%) rotateY(30deg);
}

#header .flyouts-li:nth-of-type(3) {
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 35;
}

#header .flyouts-li:nth-of-type(4) {
    left: 65%;
    transform: translate(-50%, -50%) rotateY(-40deg);
    z-index: 34;
}

#header .flyouts-li:nth-of-type(4):hover {
    transform: translate(-50%, -50%) rotateY(-30deg);
}

#header .flyouts-li:nth-of-type(5) {
    left: 75%;
    transform: translate(-50%, -50%) rotateY(-20deg) scale(0.8);
}

#header .flyouts-li:nth-of-type(5):hover {
    transform: translate(-50%, -50%) rotateY(-10deg) scale(0.8);
}

@media (max-width: 760px) {
    #header {
        overflow: hidden;
    }
    #header .flyouts-wrapper {
        position: relative;
        margin-top: 3rem;
        margin-bottom: 5rem;
        padding: 0;
        width: 100%;
        perspective: 500px;
        overflow: visible;
        perspective-origin: 0% 50%;
        z-index: 200;
    }
    #header .flyouts {
        width: 120%;
        overflow-y: scroll;
        overflow-x: visible;
        transform: rotateY(10deg);
        height: 217px;
        position: relative;
        top: 32px;
    }
    #header .flyouts-ul {
        width: 60rem;
    }
    #header .flyouts-li {
        position: relative;
        display: inline-block;
        width: 10rem;
        margin-right: 1rem;
        top: 0 !important;
        left: 0 !important;
        animation: none !important;
        transform: none !important;
    }
    #header .flyouts-li img {
        opacity: 1;
    }
}

#stat {
    position: relative;
    width: 100%;
    background: white;
    text-align: left;
    border-bottom: 1px solid #f2f6fa;
}

#stat .text-headline {
    color: #000;
}

.stats-li {
    margin-bottom: 2rem;
    border-left: 4px solid #8168e3;
}

.text-title {
    /* margin-bottom: 5px; */
}

.text-stat {
    display: inline-block;
    font-size: 2.5rem;
    line-height: 1;
    width: auto;
    height: auto;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
    border: none;
    text-align: center;
    font-weight: 600;
    color: #2a91f0;
}

#UI {
    background: #fff;
    padding-bottom: 0;
    overflow: hidden;
}

#UI:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

#UI[data-emergence='visible']:before {
    opacity: 1;
}

#UI[data-emergence='visible'] .ui-preview {
    transform: perspective(1000px) rotateX(0deg);
}

#UI .text-headline {
    color: #fff;
    font-weight: bolder;
}

.ui-preview {
    font-size: 0;
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
    border-top-right-radius: 0.75rem;
    border-top-left-radius: 0.75rem;
    overflow: hidden;
    padding: 1rem 1rem 0 1rem;
    perspective-origin: 50% 0%;
    transform: perspective(1000px) rotateX(-25deg);
    transition: transform 1s ease;
}

.ui-preview .ui-preview-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top-right-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
    border-bottom: none;
}

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

.ui-tutorial {
    padding: 0;
}

.ui-tutorial-header {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ui-tutorial-li {
    padding: 4rem 0;
}

.ui-tutorial-icon {
    padding: 0 2rem;
}

.ui-tutorial-icon svg {
    width: 3rem;
    height: 3rem;
}

.ui-tutorial-content {
    padding: 1rem 2rem;
}

@media (min-width: 768px) {
    #UI {
        text-align: center;
    }
    .ui-tutorial-li+.ui-tutorial-li {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
}

#features {
    background: white;
    text-align: left;
    font-weight: bolder;
}

#features .text-headline {
    color: #000;
}

.features {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.features:after {
    content: '';
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(0.89);
    top: 0;
    left: 0;
    background: url('../assets/illus.svg') center / contain no-repeat;
}

.features-li {
    flex: 0 1 100%;
    margin-bottom: 2vw;
    text-align: left;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.features-empty {
    display: none;
}

.features-content {
    width: 100%;
    padding: 1.25rem 1.1rem 1.5rem 1rem;
    border-radius: 2px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
    background: #6032c0;
    color: white;
}

.features-number {
    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: 2px;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
    color: #f2f6fa;
    background: #8168e3;
}

@media (min-width: 480px) {
    .features-li {
        flex: 0 1 48%;
    }
    .features-empty {
        display: inherit;
    }
    .stats-li {
        border: none;
    }
    .text-stat {
        line-height: 8rem;
        width: 8rem;
        height: 8rem;
        border-radius: 4rem;
        border: 2px solid #f2f6fa;
    }
}

@media (min-width: 480px) {
    .video-content:after {
        top: 1rem;
        right: 1rem;
        font-size: 1rem;
        line-height: 3rem;
        width: 3rem;
        height: 3rem;
    }
}

@media (min-width: 768px) {
    .headline {
        margin: 6rem 0 0 2.5rem;
    }
    .features-li {
        flex: 0 1 32%;
    }
    #stat,
    #features {
        text-align: center;
    }
    .features-empty {
        display: inherit;
    }
}

#cta .text-headline {
    color: #fff;
    font-weight: bolder;
}

#cta .text-title {
    color: #fff;
}
#cta .btn-primary {
    background: transparent;
    border: 1px solid #fff;
}

#testimonials {
    background: #f3f5f7;
    padding-top: 3rem;
    padding-bottom: 3rem
}

.testi-ul {
    position: relative;
    font-size: 0
}

.testi-li {
    position: relative;
    padding: 1.5rem
}

.testi-user-info {
    position: relative;
    font-size: .8rem;
    line-height: 1.4;
    margin-bottom: .5rem
}

.testi-company {
    opacity: .8
}

.testi-logo {
    display: inline-block;
    border-radius: 6px;
    padding: .5rem;
    background: #fff;
    margin-bottom: .5rem;
    filter: grayscale(100%);
    mix-blend-mode: multiply;
    opacity: .5;
    transition: all .15s ease
}

.testi-logo>img {
    width: auto;
    height: 2rem
}

.testi-logo:hover {
    mix-blend-mode: normal;
    filter: grayscale(0);
    opacity: 1
}

.testi-name a {
    text-decoration: none;
    color: inherit
}

.testi-quote {
    font-size: 1.12rem;
    line-height: 1.25;
    border-left: 3px solid #2a91f0;
    padding-left: .6rem;
    margin-bottom: 1em;
    transition: all .15s ease;
    opacity: .8
}

.testi-li:hover .testi-quote {
    opacity: 1;
    padding-left: .7rem
}

.sr .sr-reveal {
    visibility: hidden
}

#stat {
    position: relative;
    width: 100%;
    background: #fff;
    text-align: left;
    border-bottom: 1px solid #f2f6fa
}

.stats-li {
    margin-bottom: 2rem;
    border-left: 4px solid #8168e3
}

.text-stat {
    display: inline-block;
    font-size: 2.5rem;
    line-height: 1;
    width: auto;
    height: auto;
    border-radius: 2rem;
    margin-bottom: .5rem;
    border: none;
    text-align: center;
    font-weight: 600
}

#features {
    background: #fff;
    text-align: left;
    overflow: hidden
}

.features {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 5rem
}

.features:after,
.features:before {
    content: "";
    z-index: -1;
    position: absolute;
    width: 512px;
    height: 349px;
    background: url(illus.03778574.svg) 50%/cover no-repeat
}

.features:after {
    top: 0;
    right: 0;
    transform: translate(50%, -30%)
}

.features:before {
    bottom: 0;
    left: 0;
    transform: translate(-50%)
}

.features-li {
    flex: 0 1 100%;
    margin-bottom: .25vw;
    text-align: left
}

.features-empty {
    display: none
}

.features-content {
    width: 100%;
    height: 100%;
    padding: 1.25rem 1.1rem 1.5rem 1rem;
    border-radius: 2px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .05);
    background: #6032c0;
    color: #fff
}

.features-number {
    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: 2px;
    margin-bottom: .5rem;
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
    color: #f2f6fa;
background: #8168e3
}

@media (min-width:480px) {
    .features-li {
        flex: 0 1 49.6%
    }
    .features-empty {
        display: inherit
    }
    .stats-li {
        border: none
    }
    .text-stat {
        line-height: 8rem;
        width: 8rem;
        height: 8rem;
        border-radius: 4rem;
        border: 2px solid #f2f6fa
    }
}

@media (min-width:480px) {
    .video-content:after {
        top: 1rem;
        right: 1rem;
        font-size: 1rem;
        line-height: 3rem;
        width: 3rem;
        height: 3rem
    }
}

@media (min-width:768px) {
    .headline {
        margin: 6rem 0 0 2.5rem
    }
    .features:after,
    .features:before {
        width: 768px;
        height: 523px;
        opacity: .6
    }
    .features:after {
        transform: translate(65%, -60%)
    }
    .features:before {
        transform: translate(-70%, 60%)
    }
    .features-li {
        flex: 0 1 33.2%
    }
    #features,
    #stat,
    #UI {
        text-align: center
    }
    .features-empty {
        display: inherit
    }
}

#prevent-many-cpc {
    display: none;
}
#prevent-many-cpc h2 {
    font-size: 1.8em;
    line-height: 1.2em;
}
#prevent-many-cpc p {
    line-height: 1.5em;
    margin-bottom: 2em;
}
#prevent-many-cpc .btn-primary {
    background: #fff;
    color: #000;
}
#prevent-many-cpc .btn-link {
    color: #eee;
}
html.no-touch #prevent-many-cpc {
    display: block;
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate3d(-50%, -50%, 0);
    width: 90%;
    max-width: 480px;
    background: rgba(33,33,33,0.95);
    padding: 3em;
    box-shadow: 0 0 20px rgba(0,0,0,0.9);
}

