/*  ==========================================================


Template name   : Neko - Responsive Bootstrap App Landing Page
Version : 1.3
Author  : balapa
Email   : balapa95@gmail.com

==============================================================

[Table of contents]

1.  Basic reset
2.  Body / body
3.  Email & Subscribe notification / .success & .subscribe-success
4.  Sidebar Navigation / #sidebar-navigation
5.  Home / #home
6.  Features / #features
7.  Action / #action
8.  Brief / .brief
9.  Why / #why
10. Describe / #describe
11. Video / #video
12. Testimonials / #testimonials
13. Screenshots / #screenshot
14. Services / #services
15. Downloads / #downloads
16. Pricing Table / #pricing-table
17. Contact / #contact
18. Footer / footer
19. Custom responsive
    + min-width
    + max-width
    + min-width and max-width

==========================================================  */

/*  ----------------------------------------------------------
[1. Basic reset]
----------------------------------------------------------  */
.loadingWrapper{
	position: absolute;
	left:50%;
	margin-left:-50px;
	width:100px;
	height:100px;
	background: #009cde;
	color:#fff;
	top:20%;
}

.loadingWrapper img{
	position: absolute;
	top:25px;
	height:50px;
	left:25px;
	width:50px;
}

.loadingOverlay{
	position: fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	z-index: 99999999999;
	background-color: #333;
	opacity: .7;
}


.pad20{
	padding:20px;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

html {
	overflow-x: hidden;
}

h1 {
	font-weight: 300;
    font-size: 34px !important;
    margin-top: 0;
}

#features h1,
#action h1,
#screenshot h1,
#contact h1,
#pricing-table h1,
#services h1,
footer h1 {
    text-align: center;
	color:#888;
	margin: 0;
}

#features em,
#action em,
#screenshot em,
#contact em,
#pricing-table em,
#services em,
footer em {
	margin: 0;
	text-align: center;
	display: block;
	font-size: 16px;
	color:#999;
    font-weight: 300;
}

/*  ----------------------------------------------------------
[2. Body / body]
----------------------------------------------------------  */

body {
/*     display: none; */
    font-family: 'Roboto', sans-serif;
}

/*  ---------------------------------------------------------------------
[3. Email & Subscribe notification / .success & .subscribe-success]
---------------------------------------------------------------------  */

.success {
    position: fixed;
    top: 70px;
    right: 30px;
    height: 40px;
    color: white;
    padding: 10px 40px 10px 20px;
    background: #7DD286;
    border-radius: 19px;
    font-size: 14px !important;
    opacity: .85;
    z-index: 999;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    display: inline-block;
    z-index: 9999999999999;
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,.1);
}

.success-after,
.subscribe-success-after {
    -webkit-animation: bounceIn 1s;
    -moz-animation: bounceIn 1s;
    animation: bounceIn 1s;
    opacity: 1;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    transform: scale(1) !important;
}

.subscribe-success {
    margin-bottom: 20px  ;
    font-size: 15px !important;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 11px 0;
    height: 100%;
    background: #7DD286;
    border-radius: 7px;
    z-index: 999;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    color: white;
}

    .subscribe-success span {
        font-size: 15px;
        padding: 2px;
        border: 1px solid white;
        border-radius: 50%;
        margin-left: 5px;
        color: white;
    }

    .close {
        position: absolute;
        top:50%;
        right: 10px;
        font-size: 14px;
        margin-top: -8.8px;
        padding: 2px;
        background: white;
        opacity: 1;
        border-radius: 50%;
        color: #7DD286;
    }

    .close:hover {
        opacity: 1;
        color: #7DD286;
    }

/*  ----------------------------------------------------------
[4. Sidebar navigation / #sidebar-navigation]
----------------------------------------------------------  */

.main-background-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(0,0,0,.45);
    z-index: 9999;
    transition: .1s all ease;
}

.lefting {
    opacity: 1;
    visibility: visible;
}

#sidebar-navigation {
    position: fixed;
    z-index: 9999;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(-270px);
    -moz-transform: translateX(-270px);
    transform: translateX(-270px);
    width: 250px;
    transition: .3s all ease;
    box-shadow: 2px 0px 10px 5px rgba(0,0,0,.1);
}

    .sidebar-footer {
        position: absolute;
        width: calc(100% - 1px);
        bottom: 0;
        padding: 14px;
        text-align: center;
        color: white;
        opacity: .8;
    }

    .sliding {
        -webkit-transform: translateX(-0px) !important;
        -moz-transform: translateX(-0px) !important;
        transform: translateX(-0px) !important;
    }

    .container-nav {
        padding: 0;
        list-style: none;
    }

        .container-nav > li:first-child {
            padding: 40px 0;
            display: block;
            background: url("../img/big-logo.png") no-repeat;
            background-size: 80px;
            background-position: center center;
        }

        .container-nav > li {
            padding: 15px 0 10px 35px;
            color: white;
            cursor: pointer;
            transition: .2s all ease;
            text-transform: uppercase;
            font-weight: 400;
        }

        .container-nav > li:nth-child(even) {
            background: rgba(0,0,0,.05);
        }

        .container-nav > li:hover {
            padding-left: 50px;
        }

    .navbar-toggle {
        position: fixed;
        top: 30px;
        right: 30px;
        padding: 10px;
        z-index: 999;
        cursor: pointer;
        display: none;
        margin: 0 !important;
    }

        .navbar-toggle .icon-bar {
            background-color: #888;
            display: block;
            position: relative;
        }

        .icon-bar-white {
            background-color: white !important;
        }

    .nav-active {
        position: relative;
        transition: .3s all ease;
        -webkit-transition: .3s all ease;
    }

    .nav-active:after {
        content: "";
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        top:20px;
        right: 30px;
        transition: .3s all cubic-bezier(0,1.2,1,1.2);
        -webkit-transition: .3s all cubic-bezier(0,1.2,1,1.2);
        background: white !important;
    }

/*  ----------------------------------------------------------
[5. Home / #home]
----------------------------------------------------------  */

    #home .background-solid {
	   padding: 80px 0 0;
    }

        #home .background-solid h1 {
            margin: 0 0 25px;
            color:white;
            font-size: 25px;
            text-align: left;
            opacity: .9;
        }

            #home .background-solid h1 strong {
                opacity: 1;
                font-size: 45px;
            }

        #home .background-solid h5 {
            margin: 0 0 5px;
            color:white;
            text-align: left;
            font-size: 20px;
            font-family: 'Roboto';
            font-weight: 400;
            line-height: 1.8;
        }
        #home .background-solid ul {
	    	color:white;
            font-size: 18px;
            font-family: 'Roboto';
            opacity: .85;
	    }

    .big-logo {
        margin: 0px auto 10px;
		display: block;
		max-width: 300px;
		max-height: 140px;
    }

    .download-button-container {
        text-align: left;
    }

        .download-button {
            display: inline-block;
            font-size: 16px;
            padding: 10px 15px;
            border-radius: 5px;
            transition: .2s all ease;
            -webkit-transition: .2s all ease;
            border: 1px solid white;
            background: rgba(255,255,255,.15);
        }

        .download-button:hover {
            background: rgba(255,255,255,.25);
        }

        .other {
            color: white;
            font-size: 14px;
            margin: 0 10px;
            font-family: 'Roboto';
            font-weight: 300;
            opacity: .65;
        }

        .other:hover {
            opacity: .8;
            color: white;
            text-decoration: none;
        }

    #home .row .left-column,
    #home .row .right-column {
        margin-top: 55px;
    }

    #home .right-column {
    position: relative;
    }

        .login {
            width: 400px;
            background: #f1f1f1;
            padding: 30px 50px 20px 50px;
            border-top-left-radius: 7px;
            border-top-right-radius: 7px;
            transition: .3s all ease;
            -webkit-transition: .3s all ease;
            box-shadow: 0 5px 25px 5px rgba(0,0,0,.1);
        }

        .signup {
            width: 400px;
            display: none;
            background: #f1f1f1;
            padding: 50px;
            border-radius: 7px;
            position: absolute;
            box-shadow: 0 5px 25px 5px rgba(0,0,0,.1);
        }

        .signup-hide {
            -webkit-transform: translateY(100%);
            -moz-transform: translateY(100%);
            transform: translateY(100%);
        }

        .signup label,
        .login label {
            color: #777;
            font-weight: 400;
            font-size: 13px;
        }

        .signup input.username,
        .signup input.fullname,
        .signup input.password,
        .login input.username,
        .login input.password {
            width: 100%;
            margin-bottom: 15px;
            height: 40px;
            padding-left: 15px;
            border:2px solid #ccc;
            border-radius: 5px;
            transition: .2s all ease;
            -webkit-transition: .2s all ease;
        }

        .checkbox-detail {
            color: #999;
            font-weight: 300;
            font-size: 13px;
            margin-left: 5px;
            position: relative;
            top: -2px;
        }

        .login-description {
            color: #999;
            font-weight: 300;
            font-size: 13px;
            margin-left: 5px;
        }

        .login-button {
            cursor: pointer;
        }

        .righting {
            text-align: right;
            margin-top: 15px;
        }

        .righting input[type="submit"] {
            padding: 12px 25px;
            border-radius: 5px;
            color: white;
            border: none;
            transition: .2s all ease;
            -webkit-transition: .2s all ease;
            font-weight: 400;
        }

        .righting input[type="submit"]:active {
            -webkit-transform: scale(.9);
            -moz-transform: scale(.9);
            transform: scale(.9);
        }

/*  ----------------------------------------------------------
[6. Action / #action]
----------------------------------------------------------  */

#action {
    padding: 85px 0;
    background: #f1f1f1
}

    .container-app {
        background: url("../img/mockup/third-phone.png") no-repeat center;
        height: 520px;
        background-size: 250px;
        width: 550px;
        margin: 50px auto 0;
    }

    .container-comment {
        width: 250px;
        height: 100px;
        position: relative;
        top: 40px;
    }

        .comment {
            background: white;
            color: #888;
            font-size: 13px;
            padding: 10px 15px;
            border-radius: 5px;
            width: 205px;
            position: relative;
            box-shadow: 0px 0px 2px 1px rgba(0,0,0,.1);
            top:58px;
        }

        .comment:after {
            content: "";
            position: absolute;
            width: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 12px solid white;
            top:50%;
            right: 0;
            margin-top: -8px;
            -webkit-transform: translateX(100%);
            -moz-transform: translateX(100%);
            transform: translateX(100%);
        }

        .indicator {
            width: 25px;
            height: 25px;
            position: absolute;
            border-radius: 50%;
            border: 6px solid white;
            box-shadow: 0px 0px 5px 1px rgba(0,0,0,.2);
            right: 0;
            bottom: 0;
            cursor: pointer;
        }

    .container-comment-right {
        width: 250px;
        height: 100px;
        position: relative;
        top: 128px;
        float: right;
    }

        .comment-right {
            background: white;
            color: #888;
            font-size: 13px;
            padding: 10px 15px;
            border-radius: 5px;
            width: 205px;
            position: relative;
            box-shadow: 0px 0px 2px 1px rgba(0,0,0,.1);
            float: right;
        }

        .comment-right:after {
            content: "";
            position: absolute;
            width: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 12px solid white;
            top:50%;
            left: 0;
            margin-top: -8px;
            -webkit-transform: translateX(-100%);
            -moz-transform: translateX(-100%);
            transform: translateX(-100%);
        }

        .indicator-right {
            width: 25px;
            height: 25px;
            position: absolute;
            border-radius: 50%;
            border: 6px solid white;
            box-shadow: 0px 0px 5px 1px rgba(0,0,0,.2);
            top: 15px;
            cursor: pointer;
        }

    .bottom {
        top:207px;
        left: 30px;
    }

/*  ----------------------------------------------------------
[7. Features / #features]
----------------------------------------------------------  */

#features {
	padding-top: 75px;
	padding-bottom: 75px;
	background: white;
	position: relative;
}

    .container-colored-line {
        position: relative;
        height: 45px;
        width: 300px;
        margin: 10px auto 0px;
    }

        .colored-line {
            width: 15px;
            position: absolute;
            z-index: 10;
            right: 0;
            left: 0;
            margin-left: auto;
            margin-right: auto;
            border-radius: 10px;
        }

        .add-colored-line {
            margin-top: 23px;
            right: 0;
            width: 100%;
            height: 2px;
            position: absolute;
            border-radius: 5px;
            border-radius: 10px;
        }

    #features .container-column {
        margin: 65px 100px 0;
    }

        .bottom-column {
            padding: 0;
        }

            .top-column > div,
            .bottom-column > div {
                padding: 20px 0;
                position: relative;
            }

            .top-column .icon,
            .bottom-column .icon {
                font-size: 35px;
                text-align: center;
                color: #777 !important;
            }

            .top-column h4,
            .bottom-column h4 {
                color:#777;
                text-align: center;
                font-size: 17px;
                font-family: 'Roboto';
                font-weight: 300;
            }

/*  ----------------------------------------------------------
[8. Brief / .brief]
----------------------------------------------------------  */

.brief .item {
	overflow: auto;
	margin-bottom: 15px;
}

    .brief .item .item-description {
        font-size: 15px;
        color: #888;
        line-height: 1.6;
        font-family: 'Roboto';
        font-weight: 300;
    }

    .brief .item-description:first-line {
        font-weight: 400;
    }

.brief .icon {
	font-size: 25px;
	margin-right: 20px;
    position: relative;
    top: 6px;
}

    .brief .right-column .title,
    #video .right-column .title {
        text-align: left;
        color:#888;
        margin: 0 0 5px;
        padding: 0;
        border: none;
    }

    .brief .right-column .description,
    #video .right-column .description {
        text-align: left;
        margin-bottom: 40px;
        display: inline-block;
        font-size: 15px;
        color:#999;
        font-weight: 300;
    }

/*  ----------------------------------------------------------
[9. Why / #why]
----------------------------------------------------------  */

#why {
	position: relative;
	background: white;
	z-index: 10;
	position: relative;
	padding: 85px 0;
}

    .container-phones {
        position: relative;
        height: 525px;
    }

        .container-phones .first-phone {
            position: absolute;
            right: 220px;
            margin-top: 20px;
            z-index: 8 !important;
            transition: .2s right, .2s left ease;
            -webkit-transition: .2s right, .2s left ease;
            width: 230px;
        }

        .container-phones .second-phone {
            position: absolute;
            right: 100px;
            z-index: -8 !important;
            transition: .2s right, .2s left ease;
            -webkit-transition: .2s right, .2s left ease;
            width: 250px;
        }

    #why .right-column {
        padding: 0;
        display: block;
    }

        .container-colored-line-two {
            position: relative;
            height: 40px;
        }

        .colored-line-two {
            margin-left: 0;
            width: 7.5px;
            z-index: 10;
            position: absolute;
            border-radius: 10px;
        }

        .add-colored-line-two {
            width: 250px;
            height: 2px;
            position: absolute;
            z-index: -9;
            top: 23px;
            border-radius: 10px;
        }

        .why-description {
            font-size: 15px;
            color: #777;
            line-height: 1.8;
            font-weight: 400;
        }

        .container-other-download {
            margin-top: 50px;
        }

            .get {
                display: inline-block;
                color: white;
                padding: 10px 20px 12px;
                font-family: 'Roboto';
                font-weight: 400;
                border-radius: 5px;
                transition: .2s all ease;
                -webkit-transition: .2s all ease;
                margin-right: 15px;
            }

            .get:active,
            .learn:active {
                -webkit-transform: scale(.9);
                -moz-transform: scale(.9);
                transform: scale(.9);
            }

            .get:hover {
                color: white;
                text-decoration: none;
                opacity: .8;
            }

            .learn:hover {
                opacity: .8;
            }

            .learn {
                display: inline-block;
                color: #777;
                padding: 10px 20px 12px;
                background: #ddd;
                font-family: 'Roboto';
                font-weight: 400;
                border-radius: 5px;
                transition: .2s all ease;
                -webkit-transition: .2s all ease;
            }

            .learn:hover {
                text-decoration: none;
                color: #777;
            }

/*  ----------------------------------------------------------
[10. Describe / #describe]
----------------------------------------------------------  */

#describe {
	background: #f1f1f1;
	z-index: 10;
	position: relative;
	padding: 85px 0;
}

    #describe .title {
        border-bottom: none;
        padding: 0;
        margin-bottom: 5px;
    }

    #describe .description {
        margin-bottom: 40px;
        display: inline-block;
        font-size: 15px;
        color:#999;
        font-weight: 300;
    }

    #describe .first-phone {
        margin-top: 0;
    }

    #describe .first-phone {
        z-index: 9 !important;
    }

    #describe .second-phone {
        z-index: -9 !important;
        margin-top:20px;
    }

    #describe-first-phone {
        left: 100px;
        width: 250px;
    }

    #describe-second-phone {
        left: 220px;
        width: 230px;
    }

    #describe .container-other-download {
        margin-top: 50px;
        text-align: right;
    }

        #describe .get {
            margin-right: 0;
            margin-left: 15px;
        }

/*  ----------------------------------------------------------
[11. Video / #video]
----------------------------------------------------------  */

#video {
    padding: 0;
}

.video-iframe {
    padding: 0;
    position: relative;
    height: 500px;
}

.video-iframe iframe {
    position: absolute;
}

.details {
    padding: 75px;
}

@media (max-width: 480px) {

    .details {
        padding-left: 34px;
        padding-right: 34px;
    }
}

/*  ----------------------------------------------------------
12. Testimonials / #testimonials]
----------------------------------------------------------  */

    #testimonials  .background-solid {
        padding: 95px 0;
    }

        .container-quotes {
            margin: 0;
            width: 100%;
        }

            .profile {
                border-radius:100% !important;
                width: 140px !important;
                margin: 0 auto 35px;
                display: block;
                border: 8px solid rgba(0,0,0,.095);
            }

            .fa-quote-left {
                margin-right: 10px;
                font-size: 2rem;
                -webkit-transform:translateY(10px);
                -moz-transform:translateY(10px);
                transform:translateY(10px);
            }

            .fa-quote-right {
                font-size: 2rem;
                margin-left: 8px;
                position: relative;
                -webkit-transform:translateY(18px);
                -moz-transform:translateY(18px);
                transform:translateY(18px);
            }

            .quotes {
                position: relative;
                color: white;
                font-family: 'Roboto';
                font-weight: 400;
                text-align: center;
                font-size: 16px;
                display: block;
                line-height: 1.6;
                opacity: .95;
                margin-bottom: 45px;
            }

            .profile-name {
                text-align: center;
                color:white;
                text-transform: uppercase;
                position: relative;
                margin-top: 25px;
                font-family: 'Roboto';
                font-weight: 400;
            }

            cite {
                display: block;
                text-align: center;
                color: white;
                text-transform: capitalize;
                opacity: .7;
            }

/*  ----------------------------------------------------------
[13. Screenshot / #screenshot]
----------------------------------------------------------  */

#screenshot {
	background: #f1f1f1;
	padding: 75px 0;
}

/*  ----------------------------------------------------------
[14. Services / #services]
----------------------------------------------------------  */

#services {
    padding: 75px 0;
}

.container-services {
    margin: 65px 100px 0;
}

.container-services > div {
    text-align: center;
}

.services-icon {
    font-size: 40px;
    display: inline-block;
    padding: 50px;
    text-align: center;
    background: #f8f8f8;
    border-radius: 50%;
    position: relative;
    z-index: 9;
}

.services-icon .effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -999;
    border-radius: 50%;
    opacity: 1;
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    transform: scale(.9);
    -webkit-animation: scaling 1s infinite;
    -moz-animation: scaling 1s infinite;
    animation: scaling 1s infinite;
}

@-webkit-keyframes scaling {

    0% {
        opacity: 1;
        -webkit-transform: scale(.9);
        -moz-transform: scale(.9);
        transform: scale(.9);
    }

    50% {
        opacity: .3;
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        transform: scale(1.3);
        border-width: 2px;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        transform: scale(1.5);
        border-width: 3px;
    }    

}

@-moz-keyframes scaling {

    0% {
        opacity: 1;
        -webkit-transform: scale(.9);
        -moz-transform: scale(.9);
        transform: scale(.9);
    }

    50% {
        opacity: .3;
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        transform: scale(1.3);
        border-width: 2px;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        transform: scale(1.5);
        border-width: 3px;
    }    

}

@keyframes scaling {

    0% {
        opacity: 1;
        -webkit-transform: scale(.9);
        -moz-transform: scale(.9);
        transform: scale(.9);
    }

    50% {
        opacity: .3;
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        transform: scale(1.3);
        border-width: 2px;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        transform: scale(1.5);
        border-width: 3px;
    }    

}

.services-detail {
    font-weight: 300;
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    margin: 25px 0 15px;
}

.services-detail:first-line {
    font-weight: 400;
    font-size: 16px;
}

@media (max-width: 992px) {

    .container-services > div {
        margin-bottom: 45px;
    }

}

@media (max-width: 500px) {

    .container-services {
        margin-left: 20px;
        margin-right: 20px;
    }

}

/*  ----------------------------------------------------------
[15. Downloads / #downloads]
----------------------------------------------------------  */

    #downloads .background-solid {
        padding: 95px 0;
    }

        .container-downloads {
            text-align: center;
        }

        .windows {
            display: inline-block;
            font-size: 16px;
            padding: 10px 15px;
            border-radius: 5px;
            transition: .2s all ease;
            -webkit-transition: .2s all ease;
            border: 1px solid white;
            background: rgba(255,255,255,.15);
        }

        .windows:hover,
        .android:hover {
            background: rgba(255,255,255,.25);
        }

        .android {
            display: inline-block;
            font-size: 16px;
            padding: 8.5px 15px;
            border-radius: 5px;
            transition: .2s all ease;
            -webkit-transition: .2s all ease;
            border: 1px solid white;
            background: rgba(255,255,255,.15);
            position: relative;
        }

        #downloads h1 {
            text-align: center;
            color: white;
            opacity: .9;
            margin-bottom: 40px;
            display: block;
        }

/*  ----------------------------------------------------------
[16. Pricing table / #pricing-table]
----------------------------------------------------------  */

#pricing-table {
    background: #f1f1f1;
    padding: 85px 0;
    text-align: center;
}

    #pricing-table .description {
        margin-bottom: 65px;
    }

    .pricing {
        display: inline-block;
        text-align: center;
        padding: 0;
        background: white;
        width: 300px;
        margin: 0 12px;
    }

    .container-table > div {
        border-radius: 7px;
    }

        .table-1 .price-container,
        .table-3 .price-container {
            background: #ddd !important;
        }
 
        .price-container {
            padding: 18px;
        }

        .table-1 h3,
        .table-3 h3 {
            background: #bbb !important;
            font-size: 14px !important;
        }

        .pricing h3 {
            margin: 0;
            font-size: 18px;
            padding: 20px;
            color: white;
            border-top-left-radius: 7px;
            border-top-right-radius: 7px;
        }

        .table-1 .dollar,
        .table-1 .per-month,
        .table-3 .dollar,
        .table-3 .per-month {
            color: #aaa !important;
        }

        .pricing .dollar {
            font-size: 50px;
            color: white
        }

        .pricing .per-month {
            font-size: 12px;
            color: white
        }

        .pricing .detail-price {
            color: #999;
            background: #eee;
            margin-bottom: 0;
            padding: 25px;
            display: block
        }

        .price-features {
            list-style: none;
            padding: 0;
            margin-bottom: 0;
        }
        
            .price-features li {
                text-align: left;
                border-top: 1px solid #eee;
                padding: 12px 30px;
            }

            .feature {
                color: #888;
                font-size: 13px;
            }

            .check {
                float: right;
                color: white;
                padding: 5px;
                font-size: 10px;
                border-radius: 50%;
            }

            .cross {
                float: right;
                color: white;
                padding: 5px;
                background: #bbb;
                font-size: 10px;
                border-radius: 50%;
            }
        
        .order {
            display: block;
            padding: 15px;
            margin-top: 0;
            border-bottom-left-radius: 7px;
            border-bottom-right-radius: 7px;
            color: white;
            transition: .2s all ease;
            -webkit-transition: .2s all ease;
        }

        .order:hover {
            opacity: .8;
            color: white;
            text-decoration: none;
        }

@media (max-width: 992px) {

    .container-table > div {
        margin-bottom: 20px;
    }
    
}

@media (max-width: 480px) {

    #pricing-table {
        padding-left: 20px;
        padding-right: 20px;
    }
    
}

@media (max-width: 400px) {

    .pricing {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

}

/*  ----------------------------------------------------------
[17. Contact / #contact]
----------------------------------------------------------  */

#contact {
    padding: 75px 0;
    position: relative;
}

    .contact-form {
        padding: 0;
        width: 500px;
        margin: 60px auto 0;
        font-family: 'Roboto';
        font-weight: 300;
    }

        .contact-form .col-md-6,
        .contact-form .col-md-12 {
            padding: 0;
        }

            .contact-form .col-md-6 input {
                width: 100%;
                height: 40px;
                padding-left: 15px;
                border:2px solid #ccc;
                margin-bottom: 15px;
                transition: .2s all ease;
                -webkit-transition: .2s all ease;
            }

            .contact-form .col-md-12 input {
                width: 100%;
                height: 40px;
                padding-left: 15px;
                border:2px solid #ccc;
                margin-bottom: 15px;
                border-radius: 5px;
                transition: .2s all ease;
                -webkit-transition: .2s all ease;
            }

            .contact-form .col-md-6 input[type="text"] {
                border-top-left-radius: 5px;
                border-bottom-left-radius: 5px;
                z-index: 999;
                position: relative;
            }

            .contact-form .col-md-6 input[type="email"] {
                border-top-right-radius: 5px;
                border-bottom-right-radius: 5px;
                position: relative;
            }

            .contact-form .col-md-12 textarea {
                width: 100%;
                height: 100px;
                padding-left: 15px;
                border:2px solid #ccc;
                padding-top: 10px;
                margin-bottom: 20px;
                border-radius: 5px;
                transition: .2s all ease;
                -webkit-transition: .2s all ease;
            }

            #contact div input:focus,
            #contact div textarea:focus,
            .signup > input,
            .login > input {
                z-index: 99999;
                outline: none;
            }

            #contact p {
                text-align: center;
            }

                #contact p input {
                    height: 50px;
                    padding: 0 25px;
                    border-radius: 5px;
                    color: white;
                    border: none;
                    transition: .2s all ease;
                    -webkit-transition: .2s all ease;
                    font-weight: 400;
                }

                #contact p input:active {
                    -webkit-transform: scale(.9);
                    -moz-transform: scale(.9);
                    transform: scale(.9);
                }

/*  ----------------------------------------------------------
[18. Footer / footer]
----------------------------------------------------------  */

footer {
    padding: 50px 0;
    background: #f1f1f1;
    text-align: center;
}

    footer em {
        margin-bottom: 50px;
    }

    .input-wrapper {
        position: relative;
        width: 400px;
        height: auto;
        margin: 0 auto 20px;
        display: block;
        border-radius: 7px;
    }

    input:focus {
        outline: none;
    }

    .email {
        width: 70%;
        padding-left: 15px;
        padding-right: 64px;
        height: 45px;
        border:none;
        font-family: 'Roboto';
        font-weight: 300;
        background: white url(../img/mail.png) no-repeat;
        background-size: 20px;
        background-position: 238px center;
        color: #777;
        border-top-left-radius: 7px;
        border-bottom-left-radius: 7px;
        position: relative;
        transition: .2s all ease;
        -webkit-transition: .2s all ease;
        margin-left: -4px;
        border: 2px solid white;
    }

    .subscribe {
        width: 30%;
        position: relative;
        margin-left: -4px;
        height: 45px;
        border:none;
        font-family: 'Roboto';
        font-weight: 400;
        color: white;
        border-top-right-radius: 7px;
        border-bottom-right-radius: 7px;
        transition: .2s all ease;
        -webkit-transition: .2s all ease;
        float: right;
    }

    #contact p input:hover,
    .subscribe:hover,
    .subscribe:focus {
        opacity: .8;
    }

    .promise {
        font-size: 13px;
        text-transform: none;
        display: inline-block;
        color: #aaa;
        margin: 0 auto;
    }

    .container-socmed {
        margin: 50px 100px 0;
        border-top: 1px solid #ddd;
    }

        .socmed {
            list-style: none;
            text-align: center;
            padding-left: 0;
            margin-top: 30px;
            margin-bottom: 30px;
        }

            .socmed li {
                display: inline-block;
                margin: 0 10px;
            }

                .socmed li a {
                    font-size: 25px;
                    color: #aaa;
                    transition: .3s all ease;
                    -webkit-transition: .2s all ease;
                }

                .socmed li a:hover {
                    color: #777;
                    text-decoration: none;
                }
    
    .footer-logo {
        display: block;
        margin: 20px auto;
        opacity: .25;
    }

    .footer-detail {
        color: #777;
        font-weight: 300;
        text-align: center;
        margin-bottom: 0;
    }

/*  ----------------------------------------------------------
[19. Custom responsive]
----------------------------------------------------------  */

/*  ----------------------------------------------------------
[+  min-width]
----------------------------------------------------------  */

@media (min-width: 992px) {
        
    #home .row .left-column {
        padding-left: 110px;
    }
        
    #home .row .right-column { 
        padding-left: 85px;
    }
    
    #features .row {
        margin-left: 250px;
        margin-right: 250px;
        padding-top: 100px;
        padding-bottom: 120px;
    }
        
    .top-column {
        border-bottom: 1px solid #eee;
        padding: 0;
    }

    .top-column > div:first-child {
        border-right: 1px solid #eee;
    }

    .top-column > div:last-child {
        border-left: 1px solid #eee;
    }

    .bottom-column > div:first-child {
        border-right: 1px solid #eee;
    }

    .bottom-column > div:last-child {
        border-left: 1px solid #eee;
    }

    .top-column > div em {
        position: absolute;
        color: white !important;
        font-size: 14px !important;
        margin: 0 40px !important;
        padding: 15px;
        border-radius: 7px;
        -webkit-transform: translateY(-100px);
        -moz-transform: translateY(-100px);
        transform: translateY(-100px);
        opacity: 0;
        transition: .4s all ease;
        -webkit-transition: .4s all ease;
    }

    .top-column > div em:before {
        content: "";
        position: absolute;
        width: 0;
        left: 50%;
        margin-left: -10px;
        right: 0;
        bottom: -13px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
    }

    .top-column > div:hover em {
        opacity: 1;
        -webkit-transform: translateY(-200px);
        -moz-transform: translateY(-200px);
        transform: translateY(-200px);
    }

    .bottom-column > div em {
        position: absolute;
        color: white !important;
        font-size: 14px !important;
        margin: 0 40px !important;
        padding: 15px;
        border-radius: 7px;
        -webkit-transform: translateY(-65px);
        -moz-transform: translateY(-65px);
        transform: translateY(-65px);
        transition: .4s all ease;
        -webkit-transition: .4s all ease;
        opacity: 0;
    }

    .bottom-column > div em:before {
        content: "";
        position: absolute;
        width: 0;
        left: 50%;
        margin-left: -10px;
        right: 0;
        top: -13px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
    }

    .bottom-column > div:hover em {
        opacity: 1;
        -webkit-transform: translateY(25px);
        -moz-transform: translateY(25px);
        transform: translateY(25px);
    }
    
    .container-description {
        margin-right: 200px;
    }
    
    #describe .left-column {
        padding: 0;
        margin-bottom: 50px;
    }

    #describe .title,
    .brief .description {
        text-align: right;
        width: 100% !important;
        display: block;
    }

    #describe .colored-line-two {
        right: 0;
    }

    #describe .add-colored-line-two {
        right: 0;
    }

    #describe .icon {
        float: right;
        margin-right: 0;
        margin-left: 15px;
    }

    #describe .item-description {
        float: right;
        text-align: right;
    }
    
    .contact-form .col-md-6 input[type="email"] {
        left: -2px;
        width: calc(100% + 2px);
    }
        
}

@media (min-width: 870px) {
    
    .navbar-nav > li > a {
        padding: 15px 10px 15px;
        border-bottom: 4px solid transparent;
    }
        
}

@media (min-width: 480px) {
        
    .centering {
        display: inline-block;
    }
        
}

/*  ----------------------------------------------------------
[+  max-width]
----------------------------------------------------------  */

@media (max-width:1180px) {

    .container-phones .first-phone,
    .container-phones .second-phone {
        -webkit-transform: scale(.8);
        -moz-transform: scale(.8);
        transform: scale(.8);
        margin-right: -60px;
    }

    .brief .description {
        margin: 0 auto;
        width: 400px !important;
    }
    
    #describe .description {
        width: 100% !important;
    }
    
    #describe .first-phone,
    #describe .second-phone {
        -webkit-transform: scale(.8);
        -moz-transform: scale(.8);
        transform: scale(.8);
        margin-left: -60px;
    }

}

@media (max-width:992px) {

    .navbar-logo {
            margin-left: 100px;
    }
    
    .brief .title,
    #video .right-column .title {
        text-align: center !important;
    }
    
    .container-colored-line-two {
        display: block;
        width: 23px;
        margin: 0 auto;
    }

    .colored-line-two {
        width: 15px;
    }

    .brief .description,
    #video .right-column .description {
        text-align: center !important;
        display: block;
    }

    .add-colored-line-two {
        width:200px;
        left:-90px;
    }

    .brief .description {
        text-align: center !important;
        display: block;
    }
        
    .container-description {
        text-align: center;
    }
        
    .container-other-download {
        text-align: center;
        margin-bottom: 40px;
    }

    .brief .item {
        overflow-x: hidden;
    }

    .brief .icon,
    .brief .description {
        display: block;
        width: 100% !important;
        text-align: center !important;
        float: none;
    }

    .brief .icon {
        margin-bottom: 10px;
        font-size: 30px;
    }
        
    .brief .item-description {
        text-align: center;
    }

    .container-phones {
        width: 460px;
        margin-left:auto;
        margin-right:auto;
        padding-top: 0;
    }
    
    #describe .container-other-download {
        text-align: center;
    }
    
    #why {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    #describe {
        padding-top: 55px;
        padding-bottom: 55px;
    }
    
    #describe .container-phone {
        margin-top: -40px;
    }

    #testimonials  {
        background-size: 1200px;
    }

    #testimonials  .background-solid {
        padding: 70px 0;
    }

    #subscribe {
        background-size: 1366px !important;
    }
    
    .contact-form div input {
        border-radius: 5px;
    }
    
    .subscribe-line,
    .footer {
        margin-left: 103px;
        margin-right: 103px;    
    }

    #home .right-column .signup {
        margin: 0 auto;
    }
	
	#home .row .left-column, #home .row .right-column {
	    margin-top: 5px;
	}

}

@media (max-width: 991px) { 
    
    .iphone-container {
        width: 250px;
        background-size: 250px;
        display: block;
        margin: 0 auto;
        height: 351px;
    }
    
    .reflection {
        width: 250px;
    }
        
    .screen {
        top: 77px;
        left: 22px;
        right: 19px;
    }
        
    #home h1, 
    #home h5 {
        text-align: center !important;
    }
        
    .download-button-container {
        text-align: center;
    }
        
}

@media (max-width: 869px) {

    .navbar-nav {
        border-top: 1px solid #eee;
        width: 100%;
        margin: 0 !important; /* Use !important to override the value of css property. */
        text-align: center;
    }

    .navbar-nav > li {
        display: inline-block;
    }

}

@media (max-width:768px) {
    
    .success {
        top: 0;
        width: 100%;
        left: 0;
        border-radius: 0;
        height: 52px;
        padding-top: 15px;
        text-align: center
    }
    
    .contact-form {
        width: 100%;
    }
    
    #contact {
        padding-left: 20%;
        padding-right: 20%;
    }
    
}

@media (max-width: 550px) {

    .container-app {
        background-size: 200px;
        width: 480px;
    }

    .comment,
    .comment-right {
        font-size: 12px !important;
    }
    
    .color-switcher {
        display: none;
    }

    .input-wrapper {
        width: 350px;
    }

    .email {
        background-position: 205px center;
    }

    .signup,
    .login {
        width: 90% !important;
    }

    #home .right-column {
        padding: 0 !important;
    }

}

@media (max-width:480px) {

    .navbar-logo {
        margin-left: 30px !important;
    }

    .navbar-toggle {
        margin-right: 30px;
    }
    
    #home .background-solid {
        padding: 20px 15px 0;
    }
    
    .download-button {
        font-size: 15px;
    }
    
    #action {
        padding-left: 40px;
        padding-right: 40px;
    }

    .container-app {
        background-size: 150px;
        width: 100%;
        height: 330px;
    }
        
    .top {
        border-top: 50px solid transparent;
        margin-bottom: 40px;
    }
        
    .container-comment,
    .container-comment-right {
        top:0;
        width: 100%;
        position: static !important;
        float: none;
        text-align: center;
        height: 80px;
    }
        
    .comment,
    .comment-right {
        font-size: 12px !important;
        padding: 5px;
        top: 20px;
        text-align: center;
        width: auto;
        margin: 0 !important;
        display: inline-block;
        float: none;
    }
        
    .bottom {
        top: -100px !important;
        left: 0 !important;
    }

    .indicator,
    .indicator-right {
        width: 15px;
        height: 15px;
        border: 3px solid white;
        position: static !important;
        margin: 0 auto;
    }
        
    .comment:after,
    .comment-right:after {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 8px solid white;
        top:0;
        left: 50%;
        margin-left: -5px;
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    
    #features {
        padding: 60px 40px;
    }

    #features h1,
    #action h1,
    #screenshot h1,
    #contact h1,
    #pricing-table h1,
    #services h1,
    footer h1 {
        font-size: 25px
    }

    .container-colored-line {
        width: 210px;
        margin: 0 auto;
    }

    .colored-line {
        width: 5px !important;
    }

    #features em,
    #action em,
    #screenshot em,
    #contact em,
    #pricing-table em,
    #services em,
    footer em {
        font-size: 15px;
    }

    #features .container-column {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    #why {
        padding: 60px 34px 40px !important;
    }

    .container-phones .first-phone,
    .container-phones .second-phone {
        -webkit-transform:scale(.6) !important;
        -moz-transform:scale(.6) !important;
        transform:scale(.6) !important;
    }

    #why .container-phones {
        padding: 0;
        width: 200px;
        height: 315px;
        margin-bottom: 35px;
    }
        
    #why .first-phone {
        right: 90px;
        margin-top: -85px;
    }
    
    #why .second-phone {
        right: 0;
        margin-top: -105px;
    }

    .brief .description {
        font-size: 15px;
    }
    
    .container-colored-line-two {
        margin: 0 auto;
        height: 50px;
        width:15px;
    }

    .colored-line-two {
        width: 5px;
    }
    
    .brief .item-description {
        width: 100% !important;
        font-size: 14px;
    }

    .brief .icon {
        font-size: 25px;
    }
    
    #describe {
        padding: 60px 24px 40px !important;
    }
        
    #describe .item-description {
        overflow-x:hidden; 
    }
        
    #describe .container-other-download {
        text-align: center;
        margin-top: 25px;
    }
        
    #describe .container-phones {
        padding-left: 0;
        width: 200px;
        margin: 0 auto;
        height: 340px;
        padding-top: 15px;
    }
        
    #describe .second-phone {
        left: 90px;
        margin-top: -85px;
    }
        
    #describe .first-phone {
        margin-top: -105px;
        left: 0;
    }
    
    .quotes {
        font-size: 14px;
        margin: 0 10%;
    }

    .profile {
        width: 100px !important;
    }

    .quotes {
        font-size: 13px;
    }

    .fa-quote-left, 
    .fa-quote-right {
        font-size: 15px;
    }

    .profile-name {
        font-size: 16px;
    }

    #testimonials cite {
        font-size: 12px;
    }
    
    #contact {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .container-colored-line {
        width: 60%;
    }
    
    .container-socmed {
        margin-left: 40px;
        margin-right: 40px;
    }

    .input-wrapper {
        width: 250px !important;
    }

    .email {
        background-position: 135px center !important;
    }
        
    .socmed li {
        margin: 0 4px;
    }
        
    .socmed li a {
        font-size: 20px;
    }
    
    .other {
        margin-bottom: 10px;
        display: block;
    }

    .signup,
    .login {
        width: 100% !important;
    }


    .navbar-toggle {
        top: 10px;
        right: 10px;
    }
    
}

@media (max-width: 320px) {

    .navbar-logo {
        margin-left: 20px !important;
    }

    .navbar-toggle {
        margin-right: 20px !important;
    }
    
    #home .background-solid {
        padding: 60px 15px 0;
    }

    .download-button {
        font-size: 13px !important;
    }
    
    .comment,
    .comment-right {
        font-size: 10px !important;
    }
    
    #features {
        padding: 50px 34px;
    }
    
    #features h1,
    #screenshot h1,
    #contact h1 {
        font-size: 20px;
    }

    #features em,
    #screenshot em,
    #contact em {
        font-size: 14px;
    }

    #features .container-column .left-column {
        margin-top: -30px;
    }
    
    .container-phones {
        padding: 0;
    }
     
    .item-description {
        font-size: 13px !important;
    }
        
    .get,
    .learn {
        font-size: 12px;
    }
    
    #screenshot em {
        font-size: 14px;
    }
    
    #screenshot {
        padding-top: 40px !important;
    }
    
    .input-wrapper {
        width: 100% !important;
    }
        
    .email {
        background-image: none;
        padding-right: 0;
    }

    .signup,
    .login {
        padding: 30px !important;
    }

}

/*  ----------------------------------------------------------
[+  min-width and max-width]
----------------------------------------------------------  */

@media (min-width: 480px) and (max-width: 992px) {
        
    .container-description {
        padding: 0 100px !important;
    }
    
    .brief .item-description {
        margin-left: 20px;
        margin-right: 20px;
    }
    
}
