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

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

html {
    font-size: 100%;
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	font-weight: 300;
	color: #666666;
	line-height: 16px;
	text-align: center;
	overflow-x: hidden !important;
	margin: auto !important;
	background-color: #F0F0F0;
}

@media (min-width:768px) {
	body {
		
		font-size: 14px;
		
		line-height: 22px;
		
	}
}
/* 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;
}

textarea:focus, input:focus {
    color: #ffffff;
}
/* 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;
}

.status {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../img/loading.gif);
    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: 'Lane';
    src: url('../fonts/lanenar_Lane.eot');
    src: url('../fonts/lanenar_Laned41d.eot?#iefix') format('embedded-opentype'), url('../fonts/lanenar_Lane.woff') format('woff'), url('../fonts/lanenar_Lane.ttf') format('truetype'), url('../fonts/lanenar_Lane.svg#Lane') format('svg');
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
 
    @font-face {
        font-family: 'Lane';
        src: url('../fonts/lanenar_Lane.svg#Lane') format('svg');
    }
}

/* HEADINGS */

h1,
h2 {
    font-family: 'Lane', sans-serif;
    font-weight: normal;
}

h1 {
    font-size: 2.75rem;
    line-height: 2.688rem;
}

h2 {
    font-size: 2.125rem;
    line-height: 2.063rem;
}

h3 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
}
@media (min-width:768px) {
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;
}

a{
	color: #145F30;
	text-decoration: none;
}

a:hover {
	color: #58585A;
	text-decoration: none;
}
a:focus {
	outline: none;
	outline: 0;
}

/*---------------------------------------
   TEXTS AND BG               
-----------------------------------------*/

.white-text {
    color: #ffffff;
}

.dark-text {
	color: #145F30;
}

.deep-dark-bg {
    background: #161616 !important;
}

.dark-section{
	background-color: #145F30;
}
/*
 * logo
 * --------------------------------------------------
 */
.logo{
	position: fixed;
	z-index: 1000;
	text-align: center;
	width: 100%;
	top: 5px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
}
.logo img{
	width:100%;
	max-width: 200px;
	height:auto;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
@media (min-width:768px) {
	.logo img{
		
		max-width: 250px;
		
	}
}
.logo_panel{
	
	
	position:fixed;
	z-index:990;
	text-align:center;
	width:100%;
	top:-240px;
}
.logo_panel img{
	width:100%;
	max-width: 600px;
	height:auto;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
/*
 * Layout
 * --------------------------------------------------
 */

.mb-20{
	margin-bottom:20px;
}
.vh-100{
	height: 100vh;
}
.mvh-100{
	min-height: 100vh;
}
/*
 * Vertical Center
 * --------------------------------------------------
 */
@media (min-width:992px) {
.flex-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  resize: vertical;
  
 /* height:100%;*/
}
}
/*
 * content
 * --------------------------------------------------
 */
#home {
	background-image: url(../img/bg1.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	background-size: cover;
	
}
#home .flex-center{
background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
@media (max-width:767px) {
#home .flex-center{
	padding-top:120px;
	
}
}
@media (min-width:768px) and (max-width:991px) {
#home .flex-center{
	padding-top:220px;
	
}
}

@media (min-width:768px) {
#home p{
	font-size:1.4em;
	
}
}



#info {
	background-image: url(../img/bg2.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	background-attachment: fixed;
}

#info .flex-center{
	padding-top:120px;
	padding-bottom:70px;
}

/*
* ----------custom icons
*/

.custom_icon{
	display: inline-block;
	width: 80px;
	height: 80px;
	margin-right: auto;
	margin-left: auto;
}
.custom_icon img{
	width:100%;
	height:auto;
}




#people{
	position:relative;
	background-color:#fff;
}
#people .flex-center{
	padding-top:100px;
	padding-bottom:70px;
}

.avatar{
	width: 120px;
	height: 120px;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
	border: 1px dotted #145F30;
	padding:4px;
	/*margin: 0 auto;*/
	margin-right:20px;
	margin-bottom:10px;
	margin-top:0px;
	overflow:hidden;
}

@media (min-width:768px) {
	.avatar{
		margin-top:20px;
	}
}
.avatar img{
	width: 100%;
	height: auto;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
	
}



#reference{
	position: relative;
	background-image: url(../img/bg3.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	background-attachment: fixed;
	background-color: #333;
}


#reference .row{
   padding-top:100px;
   padding-bottom:240px;
}
@media (min-width:768px) {
	#reference .row{
	   padding-top:120px;
	  
	}
}
#reference .row i{
  font-size: 2em;
  color: rgba(255,255,255,0.5);
  padding-bottom:15px;
}
#reference a{
	color: rgba(255,255,255,1);
}
#reference p{
  
  padding-top:15px;
}

#contact-form{
  width: 100%;
  position: fixed;
  z-index: 1000;
  left: 0px;
  bottom: 0px;
  
  background-color: #000;
}
#contact-form form{
	display:none;
	padding-top: 30px;
}
#contact-form input[type="text"],
#contact-form textarea{
   width: 100%;
   background-color: #1F1F1F;
  padding: 5px;
  border: 1px solid #145F30;
  
  -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow:    inset 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow:         inset 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
@media (min-width:768px) {
#contact-form input[type="text"],
#contact-form textarea{
  
  padding: 10px;
 
}
}
#contact-form button{
	line-height: 26px;
	color: #FFF;
	background-color: #145F30;
	padding: 15px;
	width: 240px;
	border:none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

#contact-form textarea{
	resize:vertical;
}

.form-button{
	line-height: 26px;
	color: #FFF;
	background-color: #1D8B46;
	padding: 15px;
	width: 240px;
	position: absolute;
	top: -56px;
	margin-left: -120px;
	left: 50%;
}
.form-button:hover{
	color: #FFF;
	background-color: #000;
}
#contact-form.open .form-button{
	background-color: #000;
}

 
 
.close-button{
	position: absolute;
	top: 10px;
	
	right: 10px;
	font-size: 2em;
	color: #145F30;
}
.form-button:hover{
	color: #FFF;
	
}
 
#view-form{
	position: absolute;
	height: 10px;
	width: 100%;
	left: 0px;
	bottom: 0px;
	
}
#unview-panel{
	position: absolute;
	height: 10px;
	width: 100%;
	left: 0px;
	top: 0px;
	
}


#contact-form .success,
#contact-form .error {
    display: none;
	color:#FFF;
}
#captcha{
	width:50%!important;
}
@media (min-width:768px) {
.realperson-challenge{
	float:left;
	margin-right:20px;
}
#captcha{
	width:50%!important;
	float:right;
}
}


/*
misc
*/








.next-section{
	clear:both;
	text-align: center;

}
.next-section a{
	color: rgba(255,255,255,0.5);
	background-color: rgba(0,0,0,0.1);
	
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
	text-align: center;
	display: inline-block;
	width: 48px;
	height: 48px;
	margin-top:20px;
}
 
 .next-section a i{
	
	font-size: 44px;
	line-height: 48px;
	height: 48px;
 }
.next-section a:hover{
	color: rgba(255,255,255,1);
	background-color: rgba(0,0,0,1);
	
	
}


















