@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400,400i,500,700');
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);

@font-face {
    font-family: 'fontello';
    src: url('../font/fontello.eot?94145983');
    src: url('../font/fontello.eot?94145983#iefix') format('embedded-opentype'),
       url('../font/fontello.woff?94145983') format('woff'),
       url('../font/fontello.ttf?94145983') format('truetype'),
       url('../font/fontello.svg?94145983#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 13px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
    -webkit-text-size-adjust: 100% !important;
}

.wrapper {
    width: 100%;
    float: left;
}

.header {
    width: 100%;
    height: 850px;
    float: left;;
    background: #212d3c;
    background: #f4f4f4;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

#main:before {
    content: '';
    display: block;
    float: left;
    margin: 0 auto;
    width: 100%;
    height: 180px;
    padding: 0;
    transform: skew(0deg,-5deg);
    -ms-transform: skew(0deg,-5deg);
    -webkit-transform: skew(0deg,-5deg);
    position: absolute;
    top: -80px;
    background: #fff;
    z-index: 0;
}

.header-content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.header-top {
    width: 100%;
    padding: 20px 0;
    display: inline-block;
}

.header-top ul {
    padding: 0;
    margin: 0;
    float: right;
}

.header-top li {
    list-style-type: none;
}

.header-top .btn-cta {
    background: #2cb48f;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-color: #2cb48f;
    color: #fff;
    border: 0;
}

.header-bottom {
    margin-top: 0;
    border-top: 1px solid #fff;
    border-color: rgba(255,255,255,0.15);
}

img.logo {
    width: 250px;
    margin-top: 20px;
}

/* NAVIGATION */
ul.navigation {
    float: right;
    width: auto;
    padding: 0;
    margin: 0;
    margin-top: -1px;
}

ul.navigation li {
    list-style-type: none;
    float: left;
    position: relative;
    overflow: hidden;
}

ul.navigation li:hover {
    overflow: visible;
}

ul.navigation li a {
    color: #fff;
    text-decoration: none;
    float: left;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 0;
    margin-left: 30px;
    padding-top: 40px;
    padding-bottom: 10px;
    margin-top: 0;
    position: relative;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

ul.navigation li a:before {
    content: '';
    width: 100%;
    height: 2px;
    background: #93bd47;
    position: absolute;
    bottom: 0;
    right: -20px;
    opacity: 0;
    transition: all 200ms ease;
}

ul.navigation li a:hover:before {
    opacity: 1;
    right: 0;
}

ul.navigation li.cta {
    margin-left: 20px;
}

ul.navigation li.cta a {
    border: 1px solid #fff;
    border-radius: 30px;
    font-size: 15px;
    margin-top: 6px;
    padding: 9px 20px;
}

ul.navigation li.cta a:hover {
    border: 1px solid #76a242;
    background: #76a242;
    color: #fff;
}

ul.navigation li.cta a:before {
    opacity: 0!important;
}

ul.submenu {
    display: block;
    position: absolute;
    top: 90px;
    left: -230px;
    width: 600px;
    padding: 0;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    opacity: 0;
    transition: 0;
}

ul.navigation li:hover ul.submenu {
    display: block;
    opacity: 1;
    top: 80px;
    transition: all 300ms ease;
}

ul.navigation .submenu li {
    width: 50%;
}

ul.navigation .submenu li a {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 10px 10px;
    margin-top: 0;
    margin-bottom: 0;
    border-right: 1px solid #eee;
}

ul.navigation .submenu li a:before {
    display: none;
}

ul.navigation .submenu li a i {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin: 0 auto;
    background: none;
    border-radius: 100%;
}

ul.navigation .submenu li a i img {
    width: 100%;
}

.submenu strong {
    width: 100%;
    color: #111;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 500;
    float: left;
}

.submenu span {
    width: 100%;
    float: left;
    color: #777;
    font-size: 14px;
    margin-top: 10px;
    line-height: 21px;
    text-transform: none;
    letter-spacing: 0;
}

ul.submenu .divider {
    width: 100%;
    float: left;
}

ul.submenu i.arrow {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    display: inline-block;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    position: relative;
    background: #fff;
    transition: all 200ms ease;
}

ul.navigation li:hover ul.submenu i.arrow {
    top: -5px;
}

/* ABOVE THE FOLDER */
.interactive {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: url(https://nodehosting.io/assets/img/bg.jpg);
    background-size: cover;
    background-position: top;
}

/*.interactive:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #15634e;
    background: url(../img/bg-1.jpg);
    background-size: cover;
    position: absolute;
    opacity: 0.7;
    top: 0;
    left: 0;
}*/

.hero {
    width: 100%;
    margin-top: 150px;
    float: left;
    text-align: left;
}

.hero h1 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.hero span {
    width: 100%;
    float: left;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.hero a.btn-cta {
    margin-top: 30px;
    padding: 14px 24px;
    display: inline-block;
    border-radius: 4px;
    border-color: #93bd47;
    background: #93bd47;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    box-shadow: inset 0px -3px 0px #7ba334;
}

.hero a.btn-cta:hover {
    background: #438D39;
    border-color: #438D39;
    color: #fff;
    box-shadow: inset 0px -3px 0px #387a2f;
}

/* MAIN */
div#main {
    width: 100%;
    float: left;
    position: relative;
    background: #e7f0f5;
    z-index: 99;
}

.heading h2 {
    font-size: 42px!important;
    margin-bottom: 10px;
}

.heading p {
    text-align: center;
    font-size: 18px;
    margin-top: 0;
}

div#section-home {
    margin-top: -250px;
    margin-bottom: 0;
    padding: 0;
    display: inline-block;
    background: none;
    padding-top: 50px!important;
}

#section-home .md-col-12 {
    padding: 0 20px 50px;
    box-sizing: border-box;
}

#section-home .md-col-4 {
    padding: 0 30px 0;
    box-sizing: border-box;
}

#section-home h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    border-bottom: 0;
    padding: 0;
}

#section-home h3 {
    width: 100%;
    float: left;
}

#section-home i {
    width: 30px;
    height: 30px;
    background: none;
    float: left;
    border-radius: 100%;
    position: relative;
    top: -4px;
    margin-right: 10px;
}

#section-home i img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%); 
}

#section-home .illustration-system {
    width: 70%;
    margin: 0 auto;
}

#section-home .illustration-system img {
    width: 100%;
    box-shadow: 0px 1px 15px #888;
    border-radius: 10px;
}

div#section-price-info .md-col-8 {
    width: 90%;
    margin: 0 5%;
    float: none;
    display: inline-block;
    text-align: center;
}

.md-col-6.illustration-system-2 img {
    width: 900px;
    position: absolute;
    left: 0;
    top: -100px;
}

div#section-price-info {
    padding: 30px 0;
    z-index: 1;
    margin-bottom: 60px;
    background: #fff;
}

.type1 {
    height: 300px;
    padding: 0 50px;
    box-sizing: border-box;
}

img.illustration {
    width: 800px;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    bottom: -2px;
}

#video {
  position: fixed;
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: -100;
}

.video {
    text-align: center;
    position: relative;
}

.video-nav {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 120px;
    z-index: 1;
}

.video a {
    width: 50px;
    height: 50px;
    display: inline-block;
    background: #76a242;
    border-radius: 100%;
}

.video a img {
    width: 100%;
    margin-left: 2px;
}

/* SECTION HOME INFO */
div#section-home-info {
    display: grid;
}

div#section-home-info .md-col-6:last-child {
    padding-left: 50px;
    box-sizing: border-box;
}

div#section-home-info h4 {
    font-size: 34px;
    font-weight: 300;
    line-height: 44px;
    margin: 10px 0 30px 0;
}

div#section-home-info strong {
    font-size: 18px;
    font-weight: 400;
}

div#section-home-info ul {
    margin-top: 50px;
}

div#section-home-info li {
    list-style-type: none;
    position: relative;
}

div#section-home-info li p {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 30px;
}

div#section-home-info i {
    position: absolute;
    width: 45px;
    height: 45px;
    background: none;
    left: -65px;
    top: 0;
    border-radius: 100%;
}

div#section-home-info i img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


/* SECTION TESTIMONIAL */

div#section-home-cta h5 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
}

div#section-home-cta p {
    font-size: 16px;
    color: #fff;
}

div#section-home-cta a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 10px 15px;
    margin-top: 20px;
    display: inline-block;
}

div#section-home-cta a:hover {
    background: #fff;
    color: #0f97cf;
}

/* FEATURES */

#section-features {
    min-height: 500px;
    background-image: url(../img/phone.png);
    background-repeat: no-repeat;
    background-position: right;
    padding: 80px;
    display: grid;
}

#section-features h2 {
    margin-top: 0;
}

.section.theme {
    min-height: 500px;
    margin-bottom: 0;
    background: url(../img/bg-gradient.jpg);
    border-radius: 0;
}

div#section-highlight {
    text-align: center;
    padding: 80px;
}

div#section-highlight h5 {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 150px;
}

div#section-highlight p {
    color: #fff;
}

#section-highlight .md-col-4 {
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

/* CUSTOM FONT */
.hl1 {
    font-size: 21px;
    font-weight: 300;
    text-transform: none;
    color: #2cb48f;
}

.hl2 {
    font-size: 28px;
    font-weight: 300;
    line-height: 34px;
    margin: 10px 0 30px 0;
}

.right {
    float: right!important;
}

/* FOOTER */
.footer {
    text-align: center;
}

.footer-content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.footer .content {
    text-align: left;
}

.footer img.logo {
    width: 180px;
}

.footer-top {
    width: 100%;
    float: left;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.footer-top span {
    padding: 25px 0 0;
    float: right;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #999;
}

.footer-bottom ul li h6 {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 20px 0;
    color: #111;
}

.footer-bottom ul li a {
    text-decoration: none;
    padding: 5px 0;
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
}

img.logo-bottom {
    margin-top: 15px;
    width: 150px;
}

.footer-cta {
    text-align: right;
}

.footer-cta span {
    font-size: 18px;
}

.footer-cta a.btn-cta {
    margin-left: 20px;
}

.footer-bottom {
    width: 100%;
    float: left;
    padding: 40px 0 80px;
}

.footer-bottom ul {
    margin: 0;
    padding: 0;
}

.footer-bottom ul li {
    list-style-type: none;
}

.last p, .last h6 {
    text-align: right;
}

.footer-bottom ul li a,
.footer-bottom ul li p {
    color: #888;
    text-decoration: none;
    padding: 6px 0;
    margin: 0;
    float: left;
    width: 100%;
    line-height: 16px;
}

.footer-bottom ul li a:hover {
    color: #76a242;
}

/* HEROES */
.hero-large .hero h1,
.hero-large .hero span  {
    text-align: left;
}

.hero-large .hero a.btn-cta {
    float: left;
}

div#hero-features {
    background: url(../img/bg-gradient.jpg);
    background-size: cover;
}


/* FRAMEWORK */
.md-col-3,
.md-col-4,
.md-col-6,
.md-col-8,
.md-col-9 {
    display: inline-block;
    float: left;
    min-height: 1px;
}

.md-col-3 { 
    width: 25%
}

.md-col-4 { 
    width: 33.33%
}

.md-col-6 { 
    width: 50%
}

.md-col-8 { 
    width: 66.66%
}

.md-col-9 { 
    width: 75%
}

.md-col-12 { 
    width: 100%
}

.full-width {
    background: #fff;
    padding: 0;
    display: flex;
    position: relative;
}

.full-width.grey {
    background: #f6f9fa;
}

.pattern:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/pattern.png);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: right top;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.8;
}

.nopadding {
    padding: 0!important;
}

.content {
    max-width: 1300px;
    width: 100%;
    min-height: 200px;
    padding: 0 20px;
    margin: 0 auto;
    display: inline-block;
}

.section {
    background: none;
    padding: 30px 50px;
    margin-bottom: 0;
    border-radius: 5px;
    box-sizing: border-box;
}

.transparent {
    background: none;
}

.btn {
    border-radius: 30px;
    text-decoration: none;
}

.btn-cta,
body .md-content input[type="submit"] {
    text-decoration: none;
    border-radius: 50px;
    padding: 14px 24px;
    display: inline-block;
    border-radius: 4px;
    border-color: #93bd47;
    background: #93bd47;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    box-shadow: inset 0px -3px 0px #7ba334;
}

.btn-cta:hover,
body .md-content input[type="submit"]:hover {
    background: #438D39;
    border-color: #438D39;
    color: #fff;
    box-shadow: inset 0px -3px 0px #387a2f;
}

body .md-content input[type="submit"] {
    margin: 0 auto;
    margin-top: 10px;
    padding: 8px 25px 11px;
    display: -webkit-box;
    border: 0!important;
}

*:focus,
button:focus {
    outline:0;
}

a,
input,
button {
    transition: all 200ms ease;
}

a:hover {
    color: #76a242;
}

h2 {
    font-size: 30px;
    font-weight: 400;
}

h3 {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #777;
}

input {
    border: 1px solid transparent!important; 
}

input:focus {
    border: 1px solid #c1cad5!important;
}


/* PRICE */
.price-box {
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 0;
    padding-bottom: 30px;
    width: 100%;
    display: inline-block;
    overflow: hidden;
    box-shadow: 0px 3px 15px #ddd;
}

.ui-widget-content {
    border: 3px solid #eee;
    background: #e1e1e1;
    color: #222222;
    margin-top: 4px;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 5.2em;
    height: 2.2em;
    cursor: default;
    margin: 0 -40px auto !important;
    text-align: center; 
    line-height: 30px;
    color: #FFFFFF;
    font-size: 15px;
}

.ui-slider .ui-slider-handle .glyphicon {
    color: #FFFFFF;
    margin: 0 3px; 
    font-size: 11px;
    opacity: 0.5;
}

.ui-corner-all {
    border-radius: 20px;
    position: relative;
    margin-top: 25px;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.9em;
}

.ui-state-default, .ui-widget-content .ui-state-default {
    border: 0;
    background: #93bd47;
    width: 25px;
    height: 25px;
    text-decoration: none;
    border-radius: 100%;
    text-indent: -9999px;
    top: -13px;
    margin: 0 0 0 -10px!important;

}

.ui-slider-horizontal .ui-slider-handle {
    margin-left: -0.5em;
}

.ui-slider .ui-slider-handle {
    cursor: pointer;
}

a.ui-slider-handle:before {
    content: '';
    width: 2px;
    height: 10px;
    background-color: rgba(0,0,0,0.2);
    position: absolute;
    top: 8px;
    left: 9px;
    border-radius: 5px;
}


a.ui-slider-handle:after {
    content: '';
    width: 2px;
    height: 10px;
    background-color: rgba(0,0,0,0.2);
    position: absolute;
    top: 8px;
    right: 9px;
    border-radius: 5px;
}

.ui-slider a,
.ui-slider a:focus {
    cursor: pointer;
    outline: none;
}

.price, .lead p {
    font-weight: 600;
    font-size: 32px;
    display: inline-block;
    line-height: 30px;
    margin: 10px 0;
    color: #111;
}

p#total-label,
.price-form label[for="total"] {
    color: #93bd47;
}

.total {
    position: relative;
}

.price-slider {
    width: 90%;
    position: relative;
    margin: 0 5%;
    margin-top: 20px;
    margin-bottom: 50px;
    float: left;
}

.price-slider span {
    font-weight: 200;
    display: inline-block;
    color: #7f8c8d;
    font-size: 13px;
}

.price-form {
    background: #f9fcfd;
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 0;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
}


.price-form .form-group {
    width: 33%;
    display: inline-block;
    text-align: center;
    margin-bottom: 0;
}

.form-group span.price {
    font-weight: 200;
    display: inline-block;
    color: #7f8c8d;
    font-size: 14px;
    display: none;
}

.help-text {
    display: block;
    margin-top: 32px;
    margin-bottom: 10px;
    color: #737373;
    position: absolute;
    /*margin-left: 20px;*/
    font-weight: 200;
    text-align: right;
    width: 188px;
}

.price-form label {
    font-weight: 200;
    font-size: 16px;
}



img.payment {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.ui-slider-range-min {
    background: #bdd690;
    position: absolute;
    top: -3px;
    left: -3px;
    margin-top: 0;
    height: 6px;
    border-radius: 5px;
    transition: all 200ms ease;
}

.md-close {
    display: none!important;
}

@media only screen and (max-width: 768px) {

    .wrapper {
        overflow: hidden;
    }

    .header {
        height: 750px;
    }

    .header .md-col-9.right {
        display: none;
    }

    .hero {
        margin-top: 100px;
    }

    .hero h1 {
        font-size: 36px;
    }

    div#main {
        width: 90%;
        margin: 0 5%;
    }

    #main:before {
        display: none;
    }

    .md-col-6 {
        width: 100%;
    }

    .price-form .form-group {
        width: 49%;
    }

    .price, .lead p {
        font-size: 24px;
    }

    .price-form label {
        font-size: 13px;
    }

    .footer .content {
        padding: 0 20px;
        box-sizing: border-box;
        text-align: center;
    }

    .footer-top span {
        width: 100%;
    }

    .footer .md-col-3 {
        width: 100%;
        margin-bottom: 40px;
    }

    .last p, .last h6 {
        text-align: center;
    }

}