/* =======================================================================
Kane - Responsive App Landing Page 1.7
======================================================================= */

/* --------------------------------------
=========================================
GLOBAL STYLES
=========================================
-----------------------------------------*/

html {
    font-size: 100%;
}

body {
    background: #ffffff;
    font-family: 'AvenirNext', sans-serif;
    font-size: 16px;
    font-weight: 0;
    color: #313131;
    line-height: 28px;
    text-align: center;
    overflow-x: hidden !important;
    margin: auto !important;
}


/* Internet Explorer 10 in Windows 8 and Windows Phone 8 Bug fix */

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

a {
    -webkit-transition: all ease 0.25s;
            transition: all ease 0.25s;
}

a:hover {
    text-decoration: none;
}

.btn:focus,
.btn:active {
    outline: inherit;
}


    .btn-carrot {
    background-color: #FFD10D !important;
    color: #E60000 !important;
    text-align: left;
    border-color: rgba(0,0,0,0);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  transition: all 0.5s ease;

}


.btn-carrot:hover {
transform: scale(1.04,1.04);
    -webkit-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.5);
box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.5);
}

.btn, .btn-primary, .btn-primary:hover {
background-color: #E60000;
border-color: #E60000;
  transition: all 0.5s ease;
color: #fff;
} 

.btn-primary:hover {
transform: scale(1.04,1.04);
    -webkit-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.5);
box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.5);
    }

/* Other fixes*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
            box-sizing: border-box;
}

ul,
ol {
    padding-left: 0 !important;
}

li {
    list-style: none;
}


/* PRE LOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fefefe;
    z-index: 99999;
    height: 100%;
    width: 100%;
    overflow: hidden !important;
}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 99999;
    height: 100%;
    width: 100%;
    overflow: hidden !important;
}
.status {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../images/ripple.html);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
            background-size: cover;
    margin: -20px 0 0 -20px;
}


/*---------------------------------------
   Typography                
-----------------------------------------*/

/* FONT FACE LOADER */
@font-face {
    font-family: 'AvenirNext';
    src: url('fonts/AvenirNext-Regular.ttf');
}

@font-face {
    font-family: 'AvenirNext';
    font-weight: 300;
    src: url('fonts/AvenirNext-DemiBold.ttf');
}

/* HEADINGS */

h1,
h2 {
    font-family: 'AvenirNext', sans-serif;
}

h1 {
    font-size: 3.75rem;
    line-height: 4.688rem;
}

h2 {
    font-size: 3.125rem;
    line-height: 4.063rem;
}

h3 {
    font-size: 24px;
    line-height: 38px;
    font-weight: 300;
}

h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}

h5 {
    font-size: 18px;
    font-weight: 300;
}

/*---------------------------------------
   CUSTOM BUTTON              
-----------------------------------------*/

.standard-button,
.standard-button2 {
    font-size: 18px;
    font-weight: 400 !important;
    border-radius: 4px !important;
    text-shadow: 0 !important;
    color: #ffffff;
    min-width: 150px;
    border: none;
    padding: 16px 25px 16px 25px;
    margin: 5px;
    -webkit-transition: all ease 0.25s;
            transition: all ease 0.25s;
}

.standard-button:hover,
.standard-button2:hover {
    border: none;
}

.standard-button i,
.standard-button2 i {
    vertical-align: inherit;
    margin-right: 8px;
    font-size: 20px;
}


/*---------------------------------------
   TEXTS               
-----------------------------------------*/

.white-text {
    color: #ffffff;
}

.dark-text {
    color: #272727;
}

.grey-bg {
    background: #F7F8FA !important;
}


/*---------------------------------------
   SECTIONS          
-----------------------------------------*/

.section-header {
    padding-bottom: 18px;
}

.section-header h2 {
    color: #E60000;
    font-size: 36px;
    margin-bottom: 20px;
}

.section-header .section-description {
    display: inline-block;
    position: relative;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

/*---------------------------------------
   LINES          
-----------------------------------------*/

.colored-line {
    margin: auto;
    z-index: 1;
    width: 165px;
    height: 1px;
}

.white-line {
    margin: auto;
    z-index: 1;
    width: 165px;
    height: 1px;
    background: #ffffff;
}

.colored-line-left {
    float: left;
    z-index: 1;
    display: block;
    width: 165px;
    height: 1px;
}

/*---------------------------------------
=========================================
 **   SECTION STYLES                
=========================================
-----------------------------------------*/

/*---------------------------------------
   SECTION:  HOME                 
-----------------------------------------*/

header {
    background: url(../images/doodle.html) repeat fixed;
    -webkit-background-size: contain;
            background-size: contain;
            background-repeat: repeat;
}

header p {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

header .color-overlay {
    height: 100%;
}

header .full-screen {
    width: 100%;
    height: 100%;
}

.header-container {
    padding-top: 40px;
}

/* TOP BAR WITH NAVIGATION */

.sticky-navigation {
  min-height: 60px;
 /* background: url(../images/doodle.png) repeat fixed;
    -webkit-background-size: contain;
            background-size: contain;
            background-repeat: repeat;
            */
            background-color: rgba(0,0,0,0);
  border: none;
  padding: 0 !important;
  margin-bottom: -40px !important;
 
}

.sticky-navigation .navbar-header img {
  max-height: 40px;
  -webkit-backface-visibility: hidden;
}

.sticky-navigation .main-navigation .current a {
  color: #fff !important;
  position: relative;
  outline: none;
}

.sticky-navigation .main-navigation li a {
  line-height: 30px;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
    color: #fff !important;
    cursor: pointer;;
}

.sticky-navigation .main-navigation li a:hover {
  color: #FFD10D !important;
}

.navbar-inverse .navbar-toggle {
  color: #fff !important;
  color: #fff !important;
}

.navbar-brand {
    padding-top: 10px;
}

header .only-logo .navbar {
    background: none;
    padding: 60px;
}

header .only-logo .navbar .navbar-header {
    float: none;
}

/* INTRO */
header .home-contents {
    margin-top: 5%;
}

header .intro-section {
    text-align: left;
}

header .intro-section .standard-button {
    margin: 0;
}

header .phone-image {
    max-width: 350px;
    margin: auto;
    margin-bottom: 50px;
}

header .phone-image img {
    width: 80%;
    float: right;
}

header .intro-section .intro {
    color: #ffffff;
    margin-bottom: 36px;
}

header .intro-section h5 {
    color: #ffffff;
}

header .intro-section .buttons {
    margin-top: 90px;
}

header .intro-section .signup-button-container {
        margin-top: 90px;
}
/*---------------------------------------
   SECTION:  FEATURES                 
-----------------------------------------*/

.features {
    padding-top: 10px;
    padding-bottom: 30px;
    background: #ffffff;
}
/*
.features .wow img {
	background-color: #fff;
	padding: 10px;
	border-radius: 6px;
}
*/
.features .features-left {
    text-align: right;
    margin-top: 12px;
    margin-bottom: 12px;
}

.features .features-left .icon-container {
    float: right;
    margin-left: 20px;
}

.features .features-right {
    text-align: left;
    margin-top: 12px;
    margin-bottom: 12px;
}

.features .features-right .icon-container {
    float: left;
    margin-right: 20px;
}

.features .feature {
    margin-bottom: 40px;
        margin-top: 35%;
}

.features .feature .icon-container {
    display: block;
    min-height: 120px;
    margin-top: 5px;
}

.features .feature .icon-container .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    line-height: 55px;
    font-size: 18px;
    text-align: center;
    -webkit-transition: all ease-in 0.25s;
            transition: all ease-in 0.25s;
    -webkit-background-clip: padding-box;
           -moz-background-clip: padding;
            background-clip: padding-box;
}

.features .phone-image {
    max-width: 250px;
    margin: auto;
    margin-bottom: 80px;
}

.features .phone-image img {
    width: 100%;
}


/*---------------------------------------
   SECTION:  BRIEF                 
-----------------------------------------*/

.app-brief {
    padding-top: 110px;
    padding-bottom: 60px;
}

.app-brief h2 {
    margin-bottom: 20px;
}

.app-brief .phone-image {
    max-width: 350px;
    margin: auto;
    margin-bottom: 50px;
}

.app-brief .phone-image img {
    width: 100%;
}

.app-brief .left-align {
    text-align: left;
    margin-bottom: 50px;
}

.app-brief .left-align p {
    display: block;
    float: none;
    margin-top: 50px;
}

.app-brief .left-align .feature-list {
    margin-top: 40px;
}

.app-brief .left-align .feature-list li {
    margin-bottom: 26px;
}

.app-brief .left-align .feature-list li i {
    margin-right: 10px;
    vertical-align: inherit;
}


/* VIDEO */

video {
    max-width: 100%;
    height: auto;
}

iframe,
embed,
object {
    max-width: 100%;
}

.video-container {
    width: 90%;
    background: transparent !important;
    margin: auto;
    margin-bottom: 50px;
    margin-top: 40px; 
}

.video {
    background: transparent !important;
}


/*---------------------------------------
   SECTION:  TESTIMONIALS                 
-----------------------------------------*/
.testimonials {
    background: url(../images/bg-2.html) no-repeat center fixed;
    -webkit-background-size: cover;
            background-size: cover;
    color: #ffffff;
}

.testimonials .color-overlay {
    padding-top: 110px;
    padding-bottom: 110px;
}

.testimonials .feedback {
    max-width: 750px;
    margin: auto;
}

.testimonials .feedback .image {
    font-size: 24px;
    border: 2px solid transparent;
    -webkit-box-shadow: 0px 0px 0px 2px #ffffff;
            box-shadow: 0px 0px 0px 2px #ffffff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: auto;
    margin-top: 5px;
    overflow: hidden;
}

.testimonials .feedback .image img {
    width: 100%;
    vertical-align: top;
}

.testimonials .feedback .message {
    font-size: 18px;
    font-style: italic;
    margin-top: 40px;
    margin-bottom: 30px;
}

.testimonials .feedback .name {
    margin-top: 15px;
    font-weight: 400;
}

.testimonials .feedback .company-info {
    font-size: 12px;
}

.testimonials .owl-theme .owl-controls .owl-page span {
    background: #ffffff;
    border-radius: 50%;
}

.testimonials .customNavigation a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/*---------------------------------------
   SECTION:  SERVICES           
-----------------------------------------*/

.services {
    padding-top: 80px;
    padding-bottom: 60px;
    background: #ffffff;
}

.services .single-service {
    padding-bottom: 60px;
}

.services .single-service .service-icon {
    font-size: 80px;
}

.services .single-service h3 {
    margin-top: 20px;
}



/*---------------------------------------
   SECTION:  SCREENSHOTS 
-----------------------------------------*/

.screenshots {
	/*
    padding-top: 80px;
    padding-bottom: 120px;
    */
    padding-top : -40px;
}

.screenshots .shot {
	/*
    padding: 10px;
    margin: 13px;
    */
    border-radius: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: block;
    
}

.screenshots .shot img {
    border-radius: 0px;
    width: 100%;
}

/*---------------------------------------
   SECTION:  PACKAGES | Added on version 1.7      
-----------------------------------------*/

.packages {
    padding-top: 80px;
    padding-bottom: 60px;
    background: #ffffff;
}

.single-package {
    background: #F7F8FA;
    overflow: auto;
    border: 0px solid #161616;
    border-radius: 3px;
    margin-bottom: 60px;
}

.single-package .price {
    background: #FFFFFF;

}
.single-package .color-bg {
    background-color: #E60000 !important;
}
.single-package .price h2 {
    color: #272727;
}

.single-package .price .color-bg h2 {
    color: #FFFFFF !important;
} 

.single-package .price .sign {
    vertical-align: super;
    font-size: 20px;
}

.single-package .price .month {
    font-size: 16px;
    font-family: 'AvenirNext', sans-serif;
    font-weight: 300;
}

.single-package .package-feature {
  margin-top: 25px;
  margin-bottom: 25px;
}

.single-package .package-feature > li {
  margin-top: 15px;
  margin-bottom: 15px;
}

.single-package .package-feature > li > span {
  margin-right: 7px;
}


/*---------------------------------------
   SECTION:  DOWNLOAD                 
-----------------------------------------*/

.download {
    background: url(../images/doodle.html) repeat fixed;
    -webkit-background-size: contain;
            background-size: contain;
            background-repeat: repeat;
    color: #ffffff;
}

.download .color-overlay {
    padding-top: 110px;
    padding-bottom: 70px;
}

.download .download-container {
    padding-bottom: 80px;
}

.download .subscription-form-container {
    padding-bottom: 80px;
}

.download .subscription-form .input-box {
    height: 57px;
    padding-left: 20px;
    width: 320px;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #FFF;
    border: 2px solid #FFF;
}

.download .subscription-form .input-box:focus, 
.download .subscription-form .input-box:active {
    color: #000;
    font-weight: 400;
}

.download .subscription-form .subscription-success,
.download .subscription-form .subscription-error {
    display: none;
}

.download h2 {
    margin-bottom: 30px;
}


/*---------------------------------------
   SECTION:  FOOTER                
-----------------------------------------*/

footer .contact-box {
    margin-bottom: 78px;
}

footer .contact-box .contact-button {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin: auto;
    position: relative;
    font-size: 30px;
    line-height: 60px;
    vertical-align: middle;
    margin-top: -40px;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 0px 3px #ffffff;
            box-shadow: 0px 0px 0px 3px #ffffff;
    -webkit-backface-visibility: hidden;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

footer .contact-box .contact-button:hover {
    color: #ffffff;
}

footer .contact-box .expanded-contact-form {
   /* margin-top: 40px;*/
}

footer .contact-box .expanded-contact-form .success,
footer .contact-box .expanded-contact-form .error {
    display: none;
}

.signup-success,
.signup-error {
    display: none;
}

footer .contact-box .expanded-contact-form .input-box {
    margin-bottom: 10px;
    margin-top: 10px;
    height: 50px;
    -webkit-box-shadow: none;
            box-shadow: none;
}

footer .contact-box .expanded-contact-form .textarea-box {
    margin-top: 20px;
    margin-bottom: 20px;
    -webkit-box-shadow: none;
            box-shadow: none;
            min-width: 100%;
}

footer .contact-box .expanded-contact-form .textarea-box:active {
    color: #000;
}

footer .social-icons {
    margin-top: 30px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 50px;
}

footer .social-icons li {
    display: inline-block;
    margin: 5px;
}

footer .social-icons li a {
    font-size: 30px;
    color: #c2c2c2;
}

footer .copyright {
    color: #808080;
    padding-top: 10px;
    margin-bottom: 50px;
}

.smartbanner-container {
    text-align: left;
}

.slider-title {
	opacity: .1;
font-size: 14px;
    margin: 12px;
    	cursor: pointer;
	-moz-transition: all 0.3s ease;  /* FF4+ */
    -o-transition: all 0.3s ease;  /* Opera 10.5+ */
    -webkit-transition: all 0.3s ease;  /* Saf3.2+, Chrome */
    -ms-transition: all 0.3s ease;  /* IE10 */
    transition: all 0.3s ease;  
}

.slider-title.active {
	opacity: 1;
	display: block;
	    font-size: 22px;
    margin: 24px;
}

ul.how {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.how {
	margin-top: 20%
}

ul.how li {
  padding-left: 1em; 
  text-indent: -.7em;
}

ul.how li::before {
  content: "•";
  padding-right: 24px;
  float: left;
  color: #E60000; /* or whatever color you prefer */
}

.howto{
	margin: auto;
	    position: relative;
    width: 250px;
    height: 550px;
}

.xs-center-sm-left {
	text-align: left;
}

.scr-holder {
	margin:auto;
	display: block;
	position: absolute;
	width: 210px;
	height: 535px;
	top: 77px;
    left: 21px;
}

.iphone-blank {
	margin:auto;
	display: block;
	position: absolute;
	width: 250px;
	height: 535px;
	background-image: url('../images/iphone-blank.html');
	background-size: 250px 527px;
	background-repeat: no-repeat;
}

.appstore {
	    background-image: url(../images/appstore-tr.html);
    background-repeat: no-repeat;
    background-size: 100% 100%;
        width: 150px;
    height: 50px;
    display: block;
    float: left;
    margin-right: 10px;
}

.playstore {
	    background-image: url(../images/playstore-tr.html);
        background-repeat: no-repeat;
        background-size: 100% 45px;
    width: 150px;
    height: 50px;
    background-position: 0 3px;
    display: block;
    float: left;
    margin-right: 10px;
}

.ladda-button {
	    float: right;
    margin-right: 15px;
}

.g-recaptcha {
	    float: left;
    display: inline-block;
}

.control-label {
    font-size: 12px;
    line-height: 18px;
}

.intl-tel-input {
    display: block;
}

.intl-tel-input .country-list {
    z-index: 999;
    max-width: 320px;
}

.modal-sm {
    width: 450px;
  }

@media only screen and (max-width: 768px) {
    html,body
    {
        width: 100%;
        height: 100%;
        margin: 0px;
        padding: 0px;
        overflow-x: hidden; 
            -webkit-overflow-scrolling: touch;
    }

    
header {
    background-attachment:initial;
}
.control-label {
    display: none;
}
    .features .features-left .icon-container {
        margin-left: 0px;
    }

.xs-center-sm-left {
	text-align: center;
}

.features .features-left {
        text-align: center;
    }


.features .features-right {
        text-align: center;
    }

.features .feature {
	margin: 20px;
margin-bottom: 0 !important;
margin-top: 0;
	}

.header-container {
     padding-top: 0px;
}

.slider-title {
	font-size: 16px;
	margin: 20px;
	display: none;


}
.slider-title.active {
	font-size: 16px;
	margin: 20px;
}
.howto{
	margin-right:  calc(50% - 170px);
}
ul.how {
	margin-top: 0;
}

    .features .features-right .icon-container {
        margin-right: 0px;
    }
}