@-webkit-keyframes bottom-to-top {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bottom-to-top {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes left-to-right {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes left-to-right {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes right-to-left {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes right-to-left {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}


.animated {
    -webkit-animation-duration: 700ms;
    animation-duration: 700ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.left-to-right {
    -webkit-animation-name: left-to-right;
    animation-name: left-to-right;
}

.animated.right-to-left {
    -webkit-animation-name: right-to-left;
    animation-name: right-to-left;
}

.animated.bottom-to-top {
    -webkit-animation-name: bottom-to-top;
    animation-name: bottom-to-top;
}


/* animated button */
.btn-animated {
    border: 3px solid #fff;
    position: relative;
    font-weight: 700;
    border-radius: 38px;
    padding: 17px 60px 14px;
    overflow: hidden;
    color: #fff;
}

.btn-animated:after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background: #fff;
    transition: all 300ms;
}

.btn-animated:focus {
    color: #fff;
}

.product.large:hover .btn-animated,
.btn-animated:hover {
    color: #7544c0;
    transition: all .2s ease;
}

.product.large:hover .btn-animated:after,
.btn-animated:hover:after {
    width: 240px;
    height: 240px;
    top: -100px;
    left: -3px;
}

.screen-2 .btn-animated {
    background-color: #7833c3;
    border: 3px solid #7833c3;
}

.screen-2 .btn-animated:hover {
    background: #fff;
}

.screen-2 .btn-container {
    justify-content: center;
    display: flex;
}

/* fix anchor navigation with fixed header */
:target:before {
    content: "";
    display: block;
    height: 80px;
    margin: -80px 0 0;
}

body {
    /*font-family: 'overpass';*/
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

@media (max-width: 1199px) {
    body {
       
        font-size: 14px;
    }
}




.screen {
    transition: margin-left 500ms, margin-right 500ms;
}
.screen {
    width: 100%;
    min-height: 100%;
    display: table;
}

.screen > a {
    min-width: 1px;
    min-height: 1px;
    display: block;
}

.screen-1 {
    background: linear-gradient(to top, #291646, #8d34e0);
    overflow: hidden;
    position: relative;
}

.screen-1 .letter-c {
    background: url(../images/landing-c.png) no-repeat top;
    background-size: 100%;
    opacity: .5;
    position: absolute;
    z-index: 10;
}

.screen-1 .text-block {
    color: #fff;
    font-weight: 400;
    position: absolute;
    width: 760px;
    font-size: 1.25em;
    z-index: 15;
}

.screen-1 #scene .layer.laptop {
    background: url(../images/landing-pc.png) no-repeat center;
    background-size: 100% 100%;
    float: right;
    margin-top: 180px;
    margin-right: -50px;
    margin-bottom: 50px;
    width: 992px;
    height: 697px;
}

.screen-1 .text-block > a.btn-link {
    padding: 0;
    margin-left: 15px;
}
.screen-1 .text-block > a.btn-link:hover {
    opacity: .75;
}

@media (min-width: 1681px) {
    .screen-1 .letter-c {
        width: 511px;
        height: 700px;
        left: 233px;
        top: 168px;
    }

    .screen-1 .text-block {
        top: 220px;
        left: 175px;
        width: 740px;
    }

    .screen-1 .text-block h1 {
        margin-bottom: 45px;
    }

    .screen-1 .text-block .btn {
        margin-top: 68px;
    }
}

@media (min-width: 1281px) and (max-width: 1680px) {
    .screen-1 .letter-c {
        width: 461px;
        height: 632px;
        left: 209px;
        top: 213px;
    }

    .screen-1 .text-block {
        top: 200px;
        left: 157px;
        width: 640px;
    }

    .screen-1 #scene .layer.laptop {
        margin-right: -200px;
        margin-bottom: 35px;
    }

    .screen-1 .text-block h1 {
        margin-bottom: 39px;
    }

    .screen-1 .text-block .btn {
        margin-top: 60px;
    }
}

@media (min-width: 1281px) and (max-width: 1480px) {
    .screen-1 #scene .layer.laptop {
        margin-right: -350px;
        margin-bottom: 85px;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .screen-1 .letter-c {
        width: 368px;
        height: 504px;
        left: 125px;
        top: 163px;
    }

    .screen-1 .text-block {
        top: 180px;
        left: 85px;
        width: 530px;
    }

    .screen-1 #scene .layer.laptop {
        margin-right: -400px;
        margin-bottom: 35px;
    }

    .screen-1 .text-block h1 {
        margin-bottom: 26px;
    }

    .screen-1 .text-block .btn {
        margin-top: 47px;
    }
}

@media (max-width: 1024px) {
    .screen-1 .letter-c {
        width: 331px;
        height: 454px;
        left: 120px;
        top: 155px;
    }

    .screen-1 .text-block {
        top: 180px;
        left: 80px;
        width: 480px;
    }

    .screen-1 #scene .layer.laptop {
        margin-right: -500px;
        margin-bottom: 35px;
    }

    .screen-1 .text-block h1 {
        margin-bottom: 22px;
    }

    .screen-1 .text-block .btn {
        margin-top: 41px;
    }
}

@media (max-width: 991px) {
    .screen-1 {
        height: 750px;
    }

    .screen-1 .letter-c {
        width: 461px;
        height: 632px;
        left: 90px;
        top: 90px;
    }

    .screen-1 #scene {
        display: none !important;
    }

    .screen-1 .text-block {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        width: 500px;
        text-align: center;
    }

    .screen-1 .text-block h1 {
        margin-bottom: 51px;
    }

    .screen-1 .text-block .btn {
        margin-top: 76px;
    }

    .screen-1 .arrow-container {
        display: none;
    }

    #navbar #scrollNav {
        display: none;
    }
}

@media (max-width: 767px) {
    .screen-1 .letter-c {
        left: 10px;
    }

    .screen-1 .text-block {
        top: 120px;
        width: auto;
        margin-left: 15px;
        margin-right: 15px;
    }
}


.screen-1 .text-block h1 {
    margin-top: 0;
    font-size: 3.25em;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .screen-1 .text-block h3 {
        font-size: 1em;
    }

    .screen-1 .text-block h1 {
        font-size: 2em;
    }
}

.screen-1 .text-block span {
    opacity: .6;
}

.screen-1 #scene {
    z-index: 5;
}

.screen-1 #scene .layer.shapes {
    width: 100%;
    height: 100%;
    background: url(../images/landing-shapes.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 10;
}

.screen-1 .arrow-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip: rect(0, auto, auto, 0);
}

.screen-1 .arrow-container .scroll-arrow {
    bottom: 50px;
    position: fixed;
    left: 50%;
    color: #fff;
    z-index: 10;
    font-weight: 400;
    font-size: 0.8em;
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: .8;
}

.screen-1 .scroll-arrow .line {
    width: 40px;
    height: 2px;
    background: #fff;
    display: inline-block;
    margin-bottom: 4px;
    margin-left: 8px;
}

.screen > h2,
.screen .step h2 {
    margin-top: 0.5em;
    font-size: 2.1em;
    font-weight: 500;
    color: #666666;
}

.screen .step a {
    color: #593196;
}

.screen > h2 {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 80px;
}

.screen > h3,
.screen .step {
    font-size: 1.2em;
    font-weight: 500;
    color: #999999;
    line-height: 1.5;
}

.screen > h3 {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
    width: 50%;
    text-align: center;
}

@media (max-width: 1199px) {
    .screen > h3 {
        width: 900px;
    }
}

@media (max-width: 991px) {
    .screen > h3 {
        width: 700px;
    }
}

@media (max-width: 767px) {
    .screen > h3 {
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

.screen-2 {
    padding-bottom: 40px;
    overflow: hidden;
}

.screen-2 .steps-container {
    box-shadow: inset 0px 8px 20px -4px rgba(0, 0, 0, 0.16);
    padding: 30px 0px;
}

@media (max-width: 320px) {
    .screen .container {
        padding-left: 0;
        padding-right: 0;
    }
}

.screen-2 .step {
    padding: 50px 30px;
}

.screen-2 .step > .img {
    width: 380px;
    min-width: 380px;
    height: 380px;
    background: no-repeat;
    position: relative;
    background-size: 100% 100%;
}

.screen-2 .step > .img:before {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
    position: absolute;
    right: 0;
    top: -20px;
    background: #7833c3;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding-top: 6px;
}

.screen-2 .step > .img:first-child {
    margin-right: 50px;
}
.screen-2 .step > .img:not(:first-child) {
    margin-left: 50px;
}


@media (min-width: 1200px) {
    .screen-2 .step > .media-body {
        width: 68%;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .screen-2 .step > .media-body {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .screen-2 .step {
        padding-left: 10px;
        padding-right: 10px;
    }

    .screen-2 .step > .img:first-child,
    .screen-2 .step > .img:not(:first-child) {
        margin-left: auto;
        margin-right: auto;
    }

    .screen-2 .step h2 {
        font-size: 1.7em;
    }
    .screen-2 .step {
        padding-top: 0;
        align-items: center;
        flex-direction: column;
    }
    .screen-2 .step-2 {
        flex-direction: column-reverse;
    }

    .screen-2 .step > .img {
        width: 300px;
        height: 300px;
        min-width: 300px;
        margin-top: 10px;
        margin-bottom: 10px;
        position: relative;
    }
    .screen-2 .step-4 > .img > .code-gif {
        width: 300px!important;
        height: 300px!important;
        background-image: url('../images/landing-step-4-sm.gif')!important;
    }
    .screen-2 .step > .img:before {
        width: 84px;
        height: 84px;
        top: -5px;
    }
}

@media (max-width: 320px) {
    .screen-2 .step > .img:first-child,
    .screen-2 .step > .img:not(:first-child) {
        margin-left: 0;
        margin-right: 0;
    }
}

.screen-2 .step-1 > .img {
    background-image: url('../images/landing-step-1.png');
}

.screen-2 .step-1 > .img:before {
    content: "1";
}


.screen-2 .step-2 > .img {
    background-image: url('../images/landing-step-2.png');
}

.screen-2 .step-2 > .img:before {
    content: "2";
}

.screen-2 .step-3 > .img {
    background-image: url('../images/landing-step-3.png');
}

.screen-2 .step-3 > .img:before {
    content: "3";
}

.screen-2 .step-4 > .img > .code-gif {
    width: 380px;
    height: 380px;
    background: url('../images/landing-step-4.gif');
    border-radius: 50%;
}
.screen-2 .step-4 > .img:before {
    content: "4";
}

.screen-2 .step .media-body p {
    margin-bottom: .2rem;
}
.screen-2 .step .media-body code {
    color: #593196;
}

.screen-3 {
    background: #efefef;
    overflow: hidden;
}

/* Screen Products */

.screen-3 .products > div.row > div:not(.col-reg),
.screen-3 .products > div.row > .col-reg > .row > div {
    padding: 10px;
}
.screen-3 .products > .row > .col-reg > .row {
    margin-left: 0;
    margin-right: 0;
}
.screen-3 .products > div.row > div.col-reg {
    padding: 0;
}

.screen-3 .product {
    display: block;
    text-decoration: none;
    background: #fff;
    padding: 30px 25px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    color: #999;
    position: relative;
}

.screen-3 .product,
.screen-3 .product h4,
.screen-3 .product .pic {
    -webkit-transition-property: background, color;
    -moz-transition-property: background, color;
    -o-transition-property: background, color;
    transition-property: background, color;
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}

.screen-3 .product.regular:hover,
.screen-3 .product.horizontal:hover {
    background-color: #7544c0;
    background-image: -webkit-linear-gradient(top, #7544c0, #593196);
    background-image: linear-gradient(to bottom, #7544c0, #593196);
    color: #fff;
}

.screen-3 .product.regular:hover h4,
.screen-3 .product.horizontal:hover h4 {
    color: #fff;
}

.screen-3 .product.regular:hover .pic,
.screen-3 .product.horizontal:hover .pic {
    opacity: .25;
}

.screen-3 .product.large {
    background-color: #7544c0;
    background-image: -webkit-linear-gradient(top, #7544c0, #593196);
    background-image: linear-gradient(to bottom, #7544c0, #593196);
    color: #fff;
    height: 500px;
}

.screen-3 .product.regular,
.screen-3 .product.horizontal {
    height: 160px;
}

.screen-3 .product h4 {
    margin-top: 0;
    z-index: 10;
}

.screen-3 .product.large h4 {
    font-size: 3em;
}

.screen-3 .product.regular h4 {
    font-size: 1.8em;
    color: #666;
}

.screen-3 .product.horizontal h4 {
    font-size: 2em;
    color: #666;
}

.screen-3 .product .text {
    z-index: 10;
    position: relative;
}

.screen-3 .product.large .text > span:first-child {
    opacity: .8;
    font-size: 1.2em;
    font-weight: 400;
    width: 70%;
    display: block;
}

.screen-3 .product.regular .text {
    width: 75%;
}
.screen-3 .product.horizontal .text {
    width: 50%;
}
@media (max-width: 1199px) {
	.screen-3 .product.horizontal .text {
		width: 75%;
	}
}
@media (max-width: 767px) {
	.screen-3 .product.regular .text,
	.screen-3 .product.horizontal .text {
		width: 90%;
	}
}

.screen-3 .product .btn {
    margin-top: 30px;
    display: inline-block;
}

.screen-3 .product .pic {
    width: 270px;
    height: 150px;
    position: absolute;
    z-index: 5;
}

.screen-3 .product.large .pic {
    width: 568px;
    height: 340px;
}

@media (min-width: 1200px) {
	.screen-3 .product.horizontal .pic {
		width: 568px;
		height: 340px;
		right: -120px;
		top: -50px;
	}
}

.screen-3 .product .pic {
	background-size: 100% 100%;
    position: absolute;
    right: 0;
    bottom: 0;
}

@media (max-width: 1199px) {
    .screen-3 .product.large {
        height: 400px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .screen-3 .product.large .pic {
        bottom: -70px;
    }

    .screen-3 .product.regular,
    .screen-3 .product.horizontal {
        height: 200px;
    }

    .screen-3 .product.regular .text {
        font-size: 1em;
    }

    .screen-3 .product.horizontal h4 {
        font-size: 1.8em;
    }

    .screen-3 .product.horizontal .pic {
        width: 250px;
        height: 150px;
        background-size: 100% 100%;
        bottom: 0;
        right: 0;
        top: auto;
    }

    .screen-3 .product.horizontal .text,
    .screen-3 .product.regular .text,
    .screen-3 .product.large .text {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .screen-3 .product.large {
        background: #fff;
    }

    .screen-3 .product.horizontal .pic,
    .screen-3 .product.large .pic {
        width: 250px;
        height: 150px;
        background-size: 100% 100%;
        bottom: 0;
        right: 0;
        top: auto;
    }

    .screen-3 .product.large h4,
    .screen-3 .product.regular h4,
    .screen-3 .product.horizontal h4 {
        font-size: 1.8em;
        color: #666;
    }

    .screen-3 .product.large,
    .screen-3 .product.regular,
    .screen-3 .product.horizontal {
        height: 160px;
    }

    .screen-3 .product.large .text span:first-child,
    .screen-3 .product.regular .text,
    .screen-3 .product.horizontal .text {
        width: 90%;
        color: #999;
        font-size: 1.1em;
    }

    .screen-3 .product .btn {
        display: none;
    }

    .screen-3 .product.large:hover {
        background-color: #7544c0;
        background-image: -webkit-linear-gradient(top, #7544c0, #593196);
        background-image: linear-gradient(to bottom, #7544c0, #593196);
        color: #fff;
    }

    .screen-3 .product.regular:hover h4,
    .screen-3 .product.regular:hover .text,
    .screen-3 .product.horizontal:hover h4,
    .screen-3 .product.horizontal:hover .text,
    .screen-3 .product.large:hover h4,
    .screen-3 .product.large:hover .text > span:first-child {
        color: #fff;
    }

    .screen-3 .product.large:hover .pic {
        opacity: .25;
    }
}

.screen-3 .product .pic-grid {
    background-image: url('../images/landing-control-grid.png');
}

.screen-3 .product .pic-charts {
    background-image: url('../images/landing-control-charts.png');
}

.screen-3 .product .pic-nav {
    background-image: url('../images/landing-control-nav.png');
}

.screen-3 .product .pic-layout {
    background-image: url('../images/landing-control-layout.png');
}

.screen-3 .product .pic-editors {
    background-image: url('../images/landing-control-editors.png');
}
.screen-3 .product .pic-scheduler {
    background-image: url('../images/landing-control-scheduler.png');
}
.screen-3 .product .pic-cardview {
    background-image: url('../images/landing-control-cardview.png');
}
