﻿body {
    width: 100%;
    min-height: 100%;
    position: relative;
    font-family: "Raleway", Lucida Sans Unicode, Verdana, Helvetica, sans-serif;
    font-size: 14px; /*Redundant font size style written, unused class commented below. Find with #001*/
    line-height: 24px;
    color: #575757;
    color: #999;
    font-weight: 400;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility;
    font-weight: 500;
    color: #7a7a7a;
}

html {
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", Montserrat, Lucida Sans Unicode, "Helvetica Neue", Helvetica,Arial,sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 10px;
}

h2 {
    color: #1A1A1A;
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    line-height: 35px;
    margin-bottom: 20px;
}

h4 {
    font-size: 17px;
    font-weight: 700;
    color: #2d2d2d;
}

p {
    margin-bottom: 20px;
    line-height: 28px;
}

a, a:visited {
    -webkit-transition: all 150ms ease-in;
    -moz-transition: all 150ms ease-in;
    -o-transition: all 150ms ease-in;
    transition: all 150ms ease-in;
}

a {
    color: blue;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

    a:hover,
    a:focus {
        text-decoration: none;
        color: #007DA0;
        outline: none;
    }

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    ul li {
        line-height: 28px;
    }

::-moz-selection {
    text-shadow: none;
    background: #1F1F1F;
    color: #FFF;
}

::selection {
    text-shadow: none;
    background: #1F1F1F;
    color: #FFF;
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

hr {
    margin-top: 40px;
    margin-bottom: 60px;
    border-top: 1px dotted #EFEFEF;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}

form {
    margin-bottom: 0;
}

/* ==========================================================================
Classes
========================================================================== */
.headline {
    text-align: center;
}

    .headline h1 {
        color: #31373a;
        padding-bottom: 15px;
        border-bottom: 2px solid #DDD;
        display: inline-block;
    }

    .headline p {
        margin-bottom: 50px;
    }

.bg-dark .headline h1 {
    color: #FFF;
}

.bg-dark .headline p {
    color: #FFF;
}

.bg-blue .headline h1 {
    color: #FFF;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.bg-blue .headline p {
    color: #FFF;
}

.white h1 {
    color: #FFF;
}

.white p {
    color: #FFF;
}

.section {
    padding: 90px 0;
}

.section20 {
    padding: 20px 0;
}

.padding70top {
    padding-top: 70px;
}

.bordered {
    border: 1px solid #DDD;
}

.border-left {
    border-left: 1px solid #DDD;
}

.border-right {
    border-right: 1px solid #DDD;
}

.border-top {
    border-top: 1px solid #DDD;
}

.border-bottom {
    border-bottom: 1px solid #DDD;
}

.nopadding-bottom {
    padding-bottom: 0;
}

.margintop40 {
    margin-top: 40px;
}

.divider70 {
    clear: both;
    height: 70px;
}

.divider50 {
    clear: both;
    height: 50px;
}

.divider20 {
    clear: both;
    height: 20px;
}

.divider35 {
    clear: both;
    height: 35px;
}

.margin50 {
    margin: 50px 0;
}

.margin20 {
    margin: 20px 0;
}

.btn {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.blue-btn {
    padding: 12px 15px;
    font-size: 12px;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    background-color: blue;
    color: white;
    border: 1px solid rgba(0,0,0,0.1);
}

    .blue-btn:hover {
        background-color: #31373a;
        color: #FFF;
    }

.black-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    background-color: #31373a;
    color: white;
    border: 1px solid rgba(0,0,0,0.1);
}

    .black-btn:hover {
        background-color: blue;
        color: #FFF;
    }

.tick-list {
    margin: 15px 0;
}

    .tick-list li {
        list-style: none;
        margin-bottom: 10px;
    }

        .tick-list li i {
            margin-right: 10px;
            color: blue;
        }

.quote {
    color: #FFF;
    border: none;
    font-size: 40px;
    text-align: center;
    position: relative;
    font-weight: bold;
}

    .quote::before {
        font-family: 'FontAwesome';
        content: "\f10d";
        font-size: 20px;
        font-weight: bold;
        padding-right: 30px;
        font-weight: normal;
    }

    .quote span {
        display: block;
        font-size: 16px;
    }

.text-center img {
    display: block;
    margin: 0 auto;
}

.normal-list {
    list-style-type: disc;
    margin-bottom: 30px;
    margin-left: 20px;
}

    .normal-list li {
        margin-bottom: 5px;
    }

.green-arrow {
    list-style: none;
}

    .green-arrow li {
        background: url(../img/green-arrow.png) no-repeat left top;
        padding-left: 45px;
        padding-bottom: 15px;
    }

        .green-arrow li:nth-child(odd) {
            font-weight: bold;
        }

.highlight {
    padding: 20px;
    background: #F8F8F8;
    border-radius: 3px;
}

.side-text {
    margin-top: 20px;
    width: 90%;
    margin: 0 auto;
}

    .side-text h4 {
        text-align: center;
    }

    .side-text i {
        display: block;
        background-color: #8FB73C;
        width: 80px;
        height: 80px;
        border-radius: 5px;
        color: #FFF;
        line-height: 80px;
        text-align: center;
        font-size: 30px;
        margin: 20px auto;
    }

.btn:hover, .btn:focus {
    background-color: #1A9FF9;
    color: #FFF;
}

.negativetop80 {
    margin-top: -80px;
}

/* ==========================================================================
Color Customizations
========================================================================== */
.bg-white {
    background-color: #FFF;
}

.bg-grey {
    background-color: #FAF7F8;
}

.bg-grey {
    background-color: #FAFAFA;
}

.bg-grey2 {
    background-color: #F5F5F5;
}

.bg-blue {
    background-color: blue;
}

.bg-dark {
    background-color: #0F141A;
}

.testimonial-bg {
    background: url(../img/headshot-bg.jpg) no-repeat center center fixed;
}

.bg-stats {
    background: url(../img/blur.png) no-repeat center center fixed;
}

.bg-ipad {
    background: url(../img/blur.png) no-repeat center center fixed;
}

.bg-notebook {
    background: url(../img/blur.png) no-repeat center center fixed;
}

.bg-grey-pattern {
    background: url(../img/grey-pattern.jpg);
}

.cover {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
}

.color-blue {
    color: blue;
}

.color-white {
    color: #FFF;
}

.color-green {
    color: #8FB73C;
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    background: rgba(0, 0, 0, 0.5);
    background: -webkit-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.57) 1%, rgba(0, 0, 0, 0.8) 100%);
    background: -moz-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.57) 1%, rgba(0, 0, 0, 0.8) 100%);
    background: -ms-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.57) 1%, rgba(0, 0, 0, 0.8) 100%);
    background: radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.57) 1%, rgba(0, 0, 0, 0.8) 100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 0;
}

/* ==========================================================================
Carousel Settings
========================================================================== */
.carousel-mod .carousel-indicators {
    position: static;
    display: block;
    width: auto;
    margin: 15px auto;
}

    .carousel-mod .carousel-indicators li {
        background-color: #A3A3A3;
        border: none;
        margin: 0;
    }

    .carousel-mod .carousel-indicators .active {
        background-color: #31373a;
        width: 10px;
        height: 10px;
    }

.carousel-mod .carousel-control.left, .carousel-mod .carousel-control.right {
    background: none;
    background-color: transparent;
    filter: none;
}

.carousel-mod .carousel-control {
    top: 45%;
}

/* ==========================================================================
Logo
========================================================================== */
.navbar-inverse .navbar-brand {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    padding: 15px;
}

.scroll-fixed-navbar.navbar-inverse .navbar-brand {
    color: #1a1a1a;
    font-size: 30px;
    font-weight: 700;
    padding: 15px;
}

/* ==========================================================================
Carousel
========================================================================== */
.carousel-indicators {
    bottom: -17%;
}

/* ==========================================================================
Intro Slider
========================================================================== */
html, body {
    height: 100%;
}

#banner {
    background: #1A1A1A;
    position: relative;
    z-index: 1;
}

.header-text {
}

    .header-text h1 {
        font-size: 50px;
        color: #FFF;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 10px;
    }

    .header-text h2 {
        color: #FFF;
    }

    .header-text li {
        color: #FFF;
    }

    .header-text p {
        color: #E7E7E7;
    }

.banner-inner {
    padding-top: 115px;
    padding-bottom: 30px;
    background-image: url(../img/blur.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index:;
}

/* ==========================================================================
Intro
========================================================================== */
.main-point {
    clear: both;
    padding-bottom: 35px;
    border-bottom: 1px solid #F7F7F7;
    margin-bottom: 40px;
}

    .main-point p {
        margin-bottom: 0;
    }

    .main-point i {
        background-color: blue;
        width: 80px;
        height: 80px;
        border-radius: 5px;
        color: #FFF;
        line-height: 80px;
        text-align: center;
        font-size: 42px;
        display: inline-block;
        margin-right: 30px;
        float: left;
        margin-right: 20px;
    }

    .main-point h4 {
        margin-bottom: 10px;
        font-size: 20px;
    }

.main-point-last {
    border: none;
    margin-bottom: 0;
}

/* ==========================================================================
Optin Forms
========================================================================== */

.bg-blue .horizontal-optin button {
    background-color: #31373a;
}

    .bg-blue .horizontal-optin button:hover {
        background-color: blue;
    }


.banner-optin {
    padding: 20px;
    background: rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.1);
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}

    .banner-optin input[type="text"], .banner-optin textarea {
        color: #333;
        border: none;
        outline: none;
        width: 100%;
        padding: 14px 20px;
        display: block;
        transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        border-radius: 0;
        height: auto;
        background: #FFF;
    }

    .banner-optin textarea {
        min-height: 200px;
    }

    .banner-optin button {
        width: 100%;
        text-align: center;
        color: #fff;
        padding: 15px 0;
        background: blue;
        border: none;
        transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        font-weight: bold;
        border-radius: 0;
    }

        .banner-optin button i {
            color: #fff;
            font-size: 24px;
        }

        .banner-optin button:hover {
            background: #0396CF;
            color: #FFF;
        }

    .banner-optin .form-group {
        margin-bottom: 0;
    }

.alert-success {
    margin-top: 40px;
}

.form-process {
    font-weight: bold;
    color: #1a1a1a;
    text-align: right;
}

    .form-process p {
        margin: 20px 0;
        color: #FFF;
    }

    .form-process i {
        color: #1A9FF9;
        margin-right: 10px;
    }

.vertical {
    padding: 30px;
}

    .vertical h1 {
        background: rgba(0,0,0,0.6);
        margin: -30px;
        margin-bottom: 10px;
        padding: 30px 20px;
        color: #f5f5f5;
        font-size: 24px;
        font-weight: normal;
        text-align: center;
        text-transform: capitalize;
    }

        .vertical h1 strong {
            font-size: 28px;
            font-weight: bold;
            color: #FFF;
        }

    .vertical input[type="text"], .vertical textarea {
        color: #fff;
        border: 1px solid rgba(0,0,0,0.7);
        background: rgba(0,0,0,0.4);
        margin-bottom: 15px;
    }

    .vertical button {
        width: auto;
        padding: 15px 20px;
    }

        .vertical button:hover {
            background: #0396CF;
        }

.middle-optin {
    padding: 20px;
    background: #FFF;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.1);
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}

    .middle-optin input[type="text"], .middle-optin textarea {
        color: #333;
        border: none;
        outline: none;
        width: 100%;
        padding: 14px 20px;
        display: block;
        transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        border-radius: 0;
        height: auto;
        background: #F8F8F8;
    }

    .middle-optin textarea {
        min-height: 200px;
    }

    .middle-optin button {
        width: 100%;
        text-align: center;
        color: #fff;
        padding: 15px 0;
        background: blue;
        border: none;
        transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        font-weight: bold;
        border-radius: 0;
    }

        .middle-optin button i {
            color: #fff;
            font-size: 24px;
        }

        .middle-optin button:hover {
            background: #1a1a1a;
            color: #FFF;
        }

    .middle-optin .form-group {
        margin-bottom: 0;
    }

.form-process-middle {
    font-weight: bold;
    color: #FFF;
    text-align: right;
}

    .form-process-middle p {
        margin: 20px 0;
        margin-bottom: 0;
    }

    .form-process-middle i {
        color: #1a1a1a;
        margin-right: 10px;
    }


/* ==========================================================================
 Features
========================================================================== */
.feature-box {
    border: 1px solid #E5E5E5;
    background-color: #FFF;
    padding: 20px;
}

    .feature-box i {
        display: block;
        background-color: blue;
        width: 80px;
        height: 80px;
        border-radius: 5px;
        color: #FFF;
        line-height: 80px;
        text-align: center;
        font-size: 42px;
        margin: 20px auto;
        margin-top: -40px;
    }

    .feature-box h4 {
        text-align: center;
    }

.feature {
}

    .feature i {
        display: block;
        background-color: #0F141A;
        width: 80px;
        height: 80px;
        border-radius: 5px;
        color: #FFF;
        line-height: 80px;
        text-align: center;
        font-size: 42px;
        margin: 20px auto;
    }

    .feature h4 {
        text-align: center;
    }

.bubble {
    position: relative;
    border: 1px solid #E5E5E5;
    background-color: #FFF;
    padding: 20px;
    margin-top: 30px;
    border-radius: 3px;
}

    .bubble:after {
        content: '';
        position: absolute;
        border-style: solid;
        border-width: 0 15px 15px;
        border-color: #FFFFFF transparent;
        display: block;
        width: 0;
        z-index: 1;
        margin-left: -15px;
        top: -15px;
        left: 50%;
    }

    .bubble:before {
        content: '';
        position: absolute;
        border-style: solid;
        border-width: 0 15px 15px;
        border-color: #E5E5E5 transparent;
        display: block;
        width: 0;
        z-index: 0;
        margin-left: -15px;
        top: -16px;
        left: 50%;
    }

.features-list {
    margin-bottom: 40px;
    border-bottom: 1px solid #F7F7F7;
    padding-bottom: 20px;
}

    .features-list h4 {
        font-size: 16px;
    }

    .features-list i {
        width: 80px;
        height: 80px;
        border-radius: 5px;
        color: #FFF;
        line-height: 80px;
        text-align: center;
        font-size: 42px;
        background-color: blue;
        float: left;
        margin-right: 20px;
    }

.last-row .features-list {
    border-bottom: 0;
    margin-bottom: 10px;
}

/* ==========================================================================
Portfolio 
 ========================================================================== */
.hover-details {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    -moz-transition: all ease 400ms ease-in-out;
    -webkit-transition: all ease 400ms ease-in-out;
    -o-transition: all ease 400ms ease-in-out;
    transition: all ease 400ms ease-in-out;
    margin-bottom: 40px;
}

    .hover-details .img-cover {
        width: 100%;
        height: 100%;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.8);
        -moz-transition: all ease 400ms ease-in-out;
        -webkit-transition: all ease 400ms ease-in-out;
        -o-transition: all ease 400ms ease-in-out;
        transition: all ease 400ms ease-in-out;
        border-radius: 3px;
    }

    .hover-details > img {
        width: 100%;
        height: auto;
        -moz-transition: all ease 400ms ease-in-out;
        -webkit-transition: all ease 400ms ease-in-out;
        -o-transition: all ease 400ms ease-in-out;
        transition: all ease 400ms ease-in-out;
    }

.img-zoom {
    width: 45px;
    height: 45px;
    background-color: #1a1a1a;
    line-height: 45px;
    position: absolute;
    top: -45%;
    left: 50%;
    border-radius: 3px;
    margin-top: -35px;
    margin-left: -25px;
    -webkit-transition: all ease 400ms ease-in-out;
    -moz-transition: all ease 400ms ease-in-out;
    -ms-transition: all ease 400ms ease-in-out;
    -o-transition: all ease 400ms ease-in-out;
    transition: all ease 400ms ease-in-out;
    text-align: center;
}

    .img-zoom i {
        color: #FFF;
        font-size: 18px;
    }

.img-cover h3 {
    width: 100%;
    position: absolute;
    bottom: -28%;
    color: blue;
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.hover-details:hover {
    cursor: pointer;
}

    .hover-details:hover > img {
        transform: scale(1.2);
        -ms-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -o-transform: scale(1.2);
        -moz-transform: scale(1.2);
    }

    .hover-details:hover .img-zoom {
        top: 45%;
    }

    .hover-details:hover .img-cover h3 {
        bottom: 28%;
    }

    .hover-details:hover .img-cover {
        opacity: 1;
    }

.img-zoom:hover {
    background-color: #333;
}


/* ==========================================================================
Video Container
============================================================================ */
.video-container {
    position: relative;
}

    .video-container iframe {
        width: 100%;
        height: 430px;
        border: none;
    }

/* ==========================================================================
Team
 ========================================================================== */
.members-detail {
    text-align: center;
    background-color: #FFF;
    border-radius: 4px;
    padding-bottom: 30px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    border: 1px solid #EFEFEF;
}

    .members-detail:hover {
        -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .members-detail h4 {
        display: inline-block;
        padding-bottom: 10px;
        border-bottom: 2px solid #DDD;
    }

    .members-detail img {
        margin-bottom: 20px;
        border-radius: 4px 4px 0 0;
    }

.members-social {
    display: block;
}

    .members-social li {
        display: inline-block;
        height: 40px;
        width: 40px;
        border: 1px solid #EFEFEF;
        line-height: 40px;
    }

        .members-social li:hover a {
            color: #31373a;
        }

/* ==========================================================================
Testimonials
========================================================================== */
.testimonial-inner {
    text-align: center;
}

    .testimonial-inner img {
        margin-bottom: 15px;
        border-radius: 4px;
        border: 3px solid #FFF;
        -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    }

    .testimonial-inner p {
        display: block;
        position: relative;
        font-size: 16px;
    }

        .testimonial-inner p::before {
            font-family: 'FontAwesome';
            content: "\f10d";
            font-size: 20px;
            font-weight: bold;
            padding-right: 30px;
            font-weight: normal;
        }

    .testimonial-inner small {
        display: inline-block;
        border-top: 2px solid #333;
        padding-top: 10px;
        font-size: 14px;
        font-weight: bold;
    }

/* ==========================================================================
Pricing
============================================================================ */
.pricing-container {
    padding-left: 0px;
    padding-right: 0px;
}

.price-column {
    background: #fff;
    margin-top: 0;
    margin-bottom: 40px;
    -webkit-box-shadow: 0 0 7px rgba(0,0,0,0.1);
    box-shadow: 0 0 7px rgba(0,0,0,0.1);
    margin-top: 20px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    position: relative;
    z-index: 1;
}

    .price-column:hover {
        margin-top: -10px;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        -webkit-box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);
    }

    .price-column h2 {
        background-color: #000;
        color: #FFF;
        font-size: 17px;
        text-align: center;
        margin-bottom: 0;
        padding: 30px 0;
    }

    .price-column h3 {
        color: #fff;
        text-align: center;
        font-size: 32px;
        background: #0F141A;
        margin-bottom: 0;
        padding: 30px 0;
        font-weight: bold;
    }

        .price-column h3 span {
            font-weight: 300;
            font-size: 18px;
        }

        .price-column h3 sup {
            font-size: 18px;
        }

    .price-column ul {
        margin: 25px 0;
    }

    .price-column li {
        border-top: 1px dotted #EFEFEF;
        padding: 15px 0;
        width: 75%;
        margin: 0 auto;
        color: #333;
    }

        .price-column li:first-child {
            border-top: none;
        }

        .price-column li i {
            float: right;
            color: #8FB73C;
        }

            .price-column li i.red-color {
                color: #CC0000;
            }

        .price-column li del {
            color: #aaa;
        }

.price-bottom {
    background: #0F141A;
    padding: 25px 0;
    text-align: center;
}

.price-btn {
    background: transparent;
    padding: 12px 30px;
    border: 2px solid #FFF;
    border-radius: 0;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

    .price-btn:hover {
        background: #FFF;
        color: #1A9FF9;
        border: 2px solid #FFF;
    }

.price-column p {
    padding: 20px;
    background: #F8F8F8;
}

.price-column.large {
    margin-top: -20px;
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);
}

    .price-column.large h2 {
        background-color: #1166A0;
    }

    .price-column.large h3 {
        background: #1A9FF9;
        padding: 45px 0;
        font-size: 38px;
    }

    .price-column.large .price-bottom {
        background-color: #1166A0;
    }

/* ==========================================================================
  FAQ
============================================================================ */
.title {
    margin-bottom: 60px;
}

.panel {
    background: #f0f0f0;
}

    .panel .panel-heading {
        padding: 15px 30px;
    }

    .panel .panel-body {
        padding: 30px;
        padding-top: 0;
        color: #666666;
    }

    .panel .panel-title {
        font-weight: normal;
        color: #666666;
        font-size: 14px;
        font-weight: bold;
    }

        .panel .panel-title .active {
            color: #408337;
        }

        .panel .panel-title .panel-toggle .fa {
            margin-right: 10px;
            color: #8FB73C;
        }

.more {
    margin-top: 60px;
}

    .more .title {
        margin-bottom: 15px;
        color: #999999;
    }

/* ==========================================================================
Buttons
========================================================================== */
.btn-bluebg {
    padding: 15px 35px;
    border-radius: 0;
    border: 2px solid color: #FFF;
    background-color: #1A9FF9;
    border-color: #1A9FF9;
    font-size: 14px;
    font-weight: bold;
    margin-right: 20px;
}

.btn-bluenobg {
    padding: 15px 35px;
    border-radius: 0;
    border: 2px solid rgba(0,0,0,0.2);
    color: #1A9FF9;
    background-color: #FFF;
    font-size: 14px;
    font-weight: bold;
}

    .btn-bluebg:hover, .btn-bluenobg:hover {
        border-color: #0F0F0F;
        background-color: #1a1a1a;
    }

/* ==========================================================================
Partners
 ========================================================================== */
.partners-logo img {
    width: 100%;
}

/* ==========================================================================
Footer
 ========================================================================== */
#footer {
    background-color: #0F141A;
    background-color: #777777;
}

    #footer p {
        color: #aaa;
        font-size: 14px;
    }

    #footer h4 {
        font-size: 16px;
        color: #FFF;
    }

    #footer a {
        color: #f5f5f5;
        font-size: 14px;
    }

        #footer a:hover {
            color: #FFF;
        }

    #footer hr {
        border-top: 1px solid rgba(255,255,255,0.2);
        margin-top: 35px;
        margin-bottom: 35px;
    }

.quick-links {
    margin-left: 10px;
}

    .quick-links li {
        list-style-type: square;
        margin-bottom: 10px;
    }

.copyright {
    float: right;
}

    .copyright i {
        color: #FF3D7F;
        margin: 0 5px;
    }

.contact-list li {
    font-size: 14px;
    color: #FFF;
}

.contact-list i {
    border: 1px solid #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}


/* ==========================================================================
Contact
========================================================================== */
.contact-form input[type="text"], .contact-form textarea {
    color: #111;
    border: none;
    outline: none;
    width: 100%;
    display: block;
    margin-bottom: 15px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    border-radius: 0;
    height: auto;
    background: lightgrey;
    font-size: 13px;
    padding: 10px 15px;
}

.contact-form textarea {
    min-height: 200px;
}

.contact-form button {
    text-align: center;
    color: #fff;
    padding: 10px 15px;
    background: transparent;
    border: 2px solid #FFF;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    font-weight: bold;
    border-radius: 0;
}

    .contact-form button i {
        color: #fff;
        font-size: 24px;
    }

    .contact-form button:hover {
        background: #FFF;
        border-color: #FFF;
        color: #1a1a1a;
    }

.contact-form .form-group {
    margin-bottom: 0;
}


.form-process-contact {
    font-weight: bold;
    color: #FFF;
    text-align: right;
}

    .form-process-contact p {
        margin: 20px 0;
        margin-bottom: 0;
    }

    .form-process-contact i {
        color: blue;
        margin-right: 10px;
    }

/* ==========================================================================
Social Links
 ========================================================================== */
.social {
}

    .social li {
        display: inline-block;
        width: 35px;
        height: 35px;
        border-radius: 3px;
        text-align: center;
        line-height: 35px;
        webkit-transition: background-color 400ms ease-out 0.2s;
        -moz-transition: background-color 400ms ease-out 0.2s;
        -o-transition: background-color 400ms ease-out 0.2s;
        transition: background-color 400ms ease-out 0.2s;
    }

        .social li a {
            color: #fff;
        }

        .social li.facebook {
            background: #204385;
        }

        .social li.twitter {
            background: #2aa9e0;
        }

        .social li.google-plus {
            background: #d3492c;
        }

        .social li.linkedin {
            background: #0073b2;
        }

        .social li.skype {
            background: #00b0f6;
        }

        .social li.youtube {
            background: #e22d24;
        }

        .social li:hover {
            background: #31373a;
            cursor: pointer;
        }

/* ==========================================================================
Scroll To Top
 ========================================================================== */
a.scroll-up {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 10px;
    padding: 5px 10px;
    background: blue;
    text-align: center;
    -moz-transition: -moz-transform 0.8s ease-in-out;
    -o-transition: -o-transform 0.8s ease-in-out;
    -webkit-transition: -webkit-transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    -webkit-backface-visibility: hidden;
}

    a.scroll-up i {
        color: #FFF;
    }

    a.scroll-up:hover,
    a.scroll-up:focus {
        -moz-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
        background: #31373a;
    }


/* ---------------------------------------------------------------------- */
/*	Media Queries (to make the layout responsive)
/* ---------------------------------------------------------------------- */

/* ------ Tablet Portrait size to standard 960 (devices and browsers) ------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
    .horizontal-optin input[type="text"], .horizontal-optin textarea {
        margin-bottom: 15px;
    }

    img {
        display: block;
        margin: 20px auto;
    }

    .img-thumbnail {
        margin: 0;
    }

    .bottom-contact {
        padding-top: 40px;
    }

    .last-row .features-list {
        margin-bottom: 40px;
        border-bottom: 1px solid #F7F7F7;
    }

    input[type="text"], textarea {
        margin-bottom: 15px;
    }
}


    .menu-right {
        float: none;
    }

    p {
    }

    h4 {
    }

    hr {
        margin: 15px 0;
    }

    input[type="text"], textarea {
        margin-bottom: 15px;
    }

    .section {
        padding: 70px 0;
    }

    .main-point {
        margin-bottom: 40px;
    }

    .video-container {
        margin-bottom: 40px;
    }

    .members-holder {
        width: 80%;
        float: none;
        margin: 20px auto;
    }

    img {
        display: block;
        margin: 20px auto;
    }

    .img-thumbnail {
        margin: 0;
    }

    .bottom-contact {
        padding-top: 40px;
    }

    .last-row .features-list {
        margin-bottom: 40px;
        border-bottom: 1px solid #F7F7F7;
    }

    .menu-right {
        float: none;
    }

    /*#001*/
    /*body {
        font-size: 13px;
    }*/

    p {
        font-size: 13px;
    }

    h4 {
        font-size: 16px;
        line-height: 25px;
    }

    hr {
        margin: 15px 0;
    }

    img {
        float: none;
        display: block;
        margin: 20px auto;
    }

    iframe {
        max-height: 200px;
    }

    .headline h1 {
        font-size: 30px;
    }

    .section {
        padding: 50px 0;
    }

    input[type="text"], textarea {
        margin-bottom: 15px;
    }

    .bubble {
        margin-bottom: 30px;
    }

    .price-column:hover {
        margin-top: 0;
    }

    .main-point {
        margin-bottom: 20px;
        border: none;
        float: none;
        width: 100%;
        border-bottom: 1px solid #EFEFEF;
    }

    .members-holder {
        width: 80%;
        float: none;
        margin: 20px auto;
    }

    .video-container {
        margin-bottom: 40px;
    }

    .img-cover h3 {
        display: none;
    }

    .img-thumbnail {
        margin: 0;
    }

    .btn-bluebg {
        margin-right: 0;
        margin-bottom: 20px;
    }

    #footer p, #footer li, #footer a {
        font-size: 13px;
    }

    .social {
        margin-bottom: 30px;
    }

    .copyright {
        float: none;
    }
}