@-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;
    }
}


.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.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: #267de5;
    transition: all .2s ease;
}

.product.large:hover .btn-animated:after,
.btn-animated:hover:after {
    width: 240px;
    height: 240px;
    top: -100px;
    left: -3px;
}

/* fix anchor navigation with fixed header */
:target:before {
    content: "";
    display: block;
    height: 80px;
    margin: -80px 0 0;
}

body {
    font-family: 'overpass';
    font-size: 16px;
}

@media (max-width: 1199px) {
    body {
        font-family: 'overpass';
        font-size: 14px;
    }
}



#navbar .nav-header > .nav-item + .nav-item,
#navbar .nav-header > .nav-item + .nav-item:hover {
    background: #2fa4e7;
}

#navbar .nav-header > .nav-item:first-child,
#navbar .nav-header > .nav-item:first-child:hover {
    color: #2fa4e7;
}

#navbar .nav-header > .nav-item + .nav-item,
#navbar .nav-header > .nav-item + .nav-item:hover {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    width: 80px;
    color: #fff;
}

#navbar .container-fluid {
    text-align: center;
}

#navbar #scrollNav a {
    border-radius: 0;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    color: #666666;
    height: 80px;
    padding: 32px 10px 0 10px;
}

#navbar #scrollNav a:hover {
    background: #e5e5e5;
}

#navbar #scrollNav .nav-item:not(:first-child) {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    #navbar #scrollNav a {
        font-size: 16px;
    }

    #navbar #scrollNav .nav-item:not(:first-child) {
        margin-left: 48px;
    }

    #navbar .nav-header li > a {
        font-size: 16px;
        padding: 34px 20px 24px 20px;
    }
}

#navbar #scrollNav .active {
    color: #999999;
    background: transparent;
    border-bottom: 6px solid #2196f3;
}

#sidebar #navTreeView a > .image {
    display: none;
}

#sidebar #navTreeView > ul > li > a {
    font-size: 16px;
    color: #666;
}

#sidebar #navTreeView a {
    font-family: 'overpass';
    font-weight: 500;
    color: #999999;
    font-size: 14px;
}

#sidebar #bottomNav a {
    background: #2196f3;
}

#sidebar #navTreeView li:not(.active) > a:hover {
    background: #2196f3;
    color: #fff;
}

@media (max-width: 575px) {
    body.show-nav #sidebar #bottomNav a .image {
        display: none;
    }

    body.show-nav #sidebar #bottomNav a .image + span {
        display: inline;
        line-height: 36px;
    }
}

.screen {
    transition: margin-left 500ms, margin-right 500ms;
}

#sidebar {
    width: 0;
}

#sidebar #searchResults ul > li > a {
    color: #444444;
    font-weight: 500;
}

#sidebar #searchResults ul > li > a:not(:first-child) {
    font-size: 14px;
}

.show-nav #sidebar {
    width: 280px;
}

.screen {
    width: 100%;
    min-height: 100%;
    display: table;
}

.screen > a {
    min-width: 1px;
    min-height: 1px;
    display: block;
}

.screen-1 {
    background: linear-gradient(to bottom, #267de5, #364abe);
    overflow: hidden;
    position: relative;
}


    .screen-1 .letter-b {
        background: url(../Content/landing-b.png) no-repeat top;
        background-size: 100%;
        opacity: .15;
        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.tablet {
        background: url(../Content/landing-tablet.png) no-repeat center;
        background-size: 100% 100%;
        float: right;
        margin-top: 90px;
        margin-right: -50px;
        margin-bottom: 30px;
        width: 800px;
        height: 695px;
    }

@media (min-width: 1681px) {
    .screen-1 .letter-b {
        width: 511px;
        height: 700px;
        left: 233px;
        top: 168px;
    }

    .screen-1 .text-block {
        top: 290px;
        left: 175px;
        width: 740px;
    }

    .screen-1 #scene .layer.tablet {
        width: 1000px;
        height: 869px;
    }

    .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-b {
        width: 461px;
        height: 632px;
        left: 209px;
        top: 213px;
    }

    .screen-1 .text-block {
        top: 328px;
        left: 157px;
        width: 640px;
    }

    .screen-1 #scene .layer.tablet {
        margin-right: -125px;
        margin-bottom: 35px;
        margin-top: 120px;
    }

    .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.tablet {
        margin-right: -255px;
        margin-bottom: 85px;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .screen-1 .letter-b {
        width: 368px;
        height: 504px;
        left: 125px;
        top: 163px;
    }

    .screen-1 .text-block {
        top: 250px;
        left: 85px;
        width: 530px;
    }

    .screen-1 #scene .layer.tablet {
        margin-right: -285px;
        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-b {
        width: 331px;
        height: 454px;
        left: 120px;
        top: 155px;
    }

    .screen-1 .text-block {
        top: 180px;
        left: 80px;
        width: 480px;
    }

    .screen-1 #scene .layer.tablet {
        margin-right: -285px;
        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: 700px;
    }

    .screen-1 .letter-b {
        width: 461px;
        height: 632px;
        left: 0px;
        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 .text-block {
        width: auto;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 575px) {
    #navbar .nav-header {
        display: none;
    }

    #sidebar .sidebar-body {
        bottom: 114px;
    }

    #sidebar .sidebar-footer {
        display: block;
    }
}

.screen-1 .text-block h1 {
    margin-top: 0;
    font-size: 2.25em;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
}

.screen-1 .text-block span {
    opacity: .6;
}

.screen-1 #scene {
    z-index: 5;
}

    .screen-1 #scene .layer.shapes {
        width: 100%;
        height: 100%;
        background: url(../Content/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 {
    font-size: 2.5em;
    font-weight: 500;
    color: #666666;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
}

.screen > h3 {
    font-size: 1.2em;
    font-weight: 500;
    color: #999999;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
    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 .features > .row > div:not(.clearfix) {
    padding: 10px;
}

.screen-2 .feature {
    text-align: center;
    box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.16);
    position: relative;
    padding: 50px 25px 20px;
    height: 370px;
}

@media (max-width: 1199px) {
    .screen-2 .feature {
        height: 300px;
    }
}

.screen-2 .feature .icon {
    color: #2a71dc;
    font-size: 4em;
}

.screen-2 .feature h4 {
    color: #666;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.screen-2 .feature .desc {
    color: #999;
    font-weight: 500;
    font-size: 1em;
}

@media (max-width: 991px) {
    .screen-2 .features .feature {
        height: auto;
    }

    .screen-2 .features .feature {
        padding-top: 55px;
    }

    .screen-2 .features .feature h4 {
        margin-top: 46px;
        margin-bottom: 25px;
    }
}

.screen-3 {
    background: #f5f5f5;
    overflow: hidden;
    padding-bottom: 80px;
}

/* Screen Products */
.screen-3 .products > .row > div:not(.col-reg),
.screen-3 .products > .row > .col-reg > .row > div {
    padding: 10px;
}
.screen-3 .products > .row > .col-reg > .row {
    margin-left: 0;
    margin-right: 0;
}

.screen-3 .products > .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: #267de5;
    background-image: -webkit-linear-gradient(top, #267de5, #364abe);
    background-image: linear-gradient(to bottom, #267de5, #364abe);
    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: #267de5;
    background-image: -webkit-linear-gradient(top, #267de5, #364abe);
    background-image: linear-gradient(to bottom, #267de5, #364abe);
    color: #fff;
    height: 500px;
}

.screen-3 .product.regular,
.screen-3 .product.horizontal {
    height: 240px;
}

.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 {
    background-size: 100% 100%;
    position: absolute;
    z-index: 5;
}

.screen-3 .product .pic {
    width: 270px;
    height: 150px;
}


.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 {
    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;
    }
}
@media (max-width: 767px) {
	.screen-3 .product.large {
		height: 240px;
		background: #fff;
		color: #666;
	}
	.screen-3 .product.large .pic {
		width: 270px;
		height: 150px;
	}
	.screen-3 .product.large h4 {
		font-size: 1.8em;
	}
	.screen-3 .product.large .text > span:first-child{
		font-size: 1.0em;
		width: 90%;
	}
	.screen-3 .product .btn {
        display: none;
    }
	.screen-3 .product.large:hover,
	.screen-3 .product.large:hover {
		background-color: #267de5;
		background-image: -webkit-linear-gradient(top, #267de5, #364abe);
		background-image: linear-gradient(to bottom, #267de5, #364abe);
		color: #fff;
	}
	.screen-3 .product.large:hover .pic {
        opacity: .25;
    }

    .screen-3 .product.large,
    .screen-3 .product.regular,
    .screen-3 .product.horizontal {
        height: 300px;
    }
}


.screen-3 .product .pic-grid {
    background-image: url('../Content/landing-control-grid.png');
}

.screen-3 .product .pic-charts {
    background-image: url('../Content/landing-control-charts.png');
}

.screen-3 .product .pic-nav {
    background-image: url('../Content/landing-control-nav.png');
}

.screen-3 .product .pic-layout {
    background-image: url('../Content/landing-control-layout.png');
}
.screen-3 .product .pic-editors {
    background-image: url('../Content/landing-control-editors.png');
}
.screen-3 .product .pic-scheduler {
    background-image: url('../Content/landing-control-scheduler.png');
}
.screen-3 .product .pic-cardview {
    background-image: url('../Content/landing-control-cardview.png');
}
.screen-3 .product .pic-filemanager {
    background-image: url('../Content/landing-control-filemanager.png');
}
.screen-3 .product .pic-richedit {
    background-image: url('../Content/landing-control-richedit.png');
}
.screen-3 .product .pic-spreadsheet {
    background-image: url('../Content/landing-control-spreadsheet.png');
}

footer {
    color: #999999;
    background: #f5f5f5;
    font-size: 0.8em;
    font-weight: 400;
    padding: 0 25px 60px 25px;
}

footer .text {
    float: left;
}

    footer .img {
        text-align: right;
        background-image: url('../Content/logo.png');
        width: 160px;
        height: 30px;
        float: right;
    }

@media (max-width: 576px) {
    footer .img {
        display: none;
    }
}