/*

A1 App Landing Page

Table of Contents:

body, heading, paragraph
Logo
Intro
Special Features
App Screen Shots 
Subscription
Footer, Footer Bottom, Social icons
Custom Media Query

*/


/* body, heading, paragraph */

body {
	color:#123241!important;
	overflow-x: hidden;
}

h1 {
    font-weight: 700;
    line-height: 51px;
    font-size: 46px;
    text-transform: uppercase;
	margin-top: 0;
}
	
h2 {
    font-size: 28px;
    line-height: 34px;
    margin: 0;
	color:#fff;
}

p {
    font-size: 14px;
    line-height: 26px;
    margin: 0 0 5px 0!important;
}

/* Logo */

.logo{
	padding:100px 0 40px;
}

/* Intro */

#intro{
	height: 660px;
	margin: 0 auto;
	background-size:cover;
	padding:0;
}

#intro h1{
	color:#123241;
	padding-top:0px;
	font-size:72px;
	line-height:96px;
}

#intro p{
	color:#123241;
	font-size:20px;
	padding-bottom: 60px;
}

.introtext{
	transform: translateY(-55px);
	opacity:0;
	transition: all 2s linear 0s;
}

.introtext-animate{
	transform: translateY(0px)!important;
	opacity:1;
}

.introimg{
	padding-top:62px;
	opacity:0;
	transition: all 4s linear 0s;
}

.introimg-animate{
	opacity:1;
}

.appstorebtn{
	border-radius:3px;
	background:#123241;
	width:195px;
	
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
		 -o-transition: all 0.3s ease 0s;
			transition: all 0.3s ease 0s;	
}


/* Special Features */

.cir{
	transition: all 2s ease 0s;
	font-size:0px;
	
}

.cir-animate{
	/* transform: translateY(0px)!important; */
	font-size:28px;
}

.fa{
	height: 28px;
	float: left;
}

.fa-icon{
	float:left;
	width:28px;
}

.fa-text{
	float: left;
    padding-left: 30px;
	padding-bottom: 30px;
    text-align: left;
	padding-top: 5px;
	width: 100%;
}

.second {
	padding:90px 0 60px;	
}

.second p{
    float: left;
    padding-left: 12px;	
}

.second p.lead{
	font-size:18px;
}

/* App Screen Shots */

.third{
	padding:60px 0;
	color:#fff;
}

.fourth{
	background:url(../images/bg2.jpg) no-repeat 50% 0;
	background-size:cover;
}

.fourth-inner{
	background-color: rgba(255, 255, 255, 0.6);
}

.third h2{
	font-size:38px;
	line-height:48px;
}

h2 span{
	font-size:60%;
	display:block;
}

.screenshots{
	padding-top:60px;
}

.ac-wrapper{
	padding:60px 0;
}

.ac-wrapper h2{
	color:#123241;
	font-size: 32px;
	text-transform:uppercase;
}

.ac-device h3 {
	color:#123241;
    font-size: 16px;
    line-height: 32px;
}


.ac-wrapper p{
	text-align:center;
	padding-top: 5px;
}

.ac-wrapper nav span{
	display:inline-block;
	/* float:left; */
	margin:2px;	
	width:40px;
	height:40px;
	cursor:pointer;
	border-radius: 3px;
	
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
		 -o-transition: all 0.3s ease 0s;
			transition: all 0.3s ease 0s;	
}

.ac-wrapper nav span:hover{
	background-color:#123241;
}


.title{
	padding-top:60px;
}

/* Subscription */

form input[type="text"] {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 0 none;
    color: #7D8895;
    font-size: 18px;
    padding: 17px 23px;
    width: 300px;
}
form input {
    border-radius: 3px;
}

.subscribe form input[type="submit"] {
    border: 2px solid #FFF;
    padding: 15px 21px;
}
.subscribe form input {
    margin-top: 4px;
}
form input[type="submit"] {
    border: 0 none;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: bold;
    margin-left: 20px;
    outline: 0 none;
    padding: 17px 23px;
    text-transform: uppercase;
}

.subs{
	transform: translateY(-55px);
	opacity:0;
	transition: all 2s ease 0s;
}

.subs-animate{
	transform: translateY(0px)!important;
	opacity:1;
}

.subscribe{
	padding:60px 0;
}

.subscribe p{
	color:#fff;
}

/* Footer */

.footer{
	background:#123241;
	padding:30px 0;
	color:#fff;
}

.footer2{
	background:#123241;
	padding:0 0 30px 0;
	color:#fff;
}

.socialico li{
	width:48px;
	height:48px;
	display:inline-block;
	margin-right:5px;
}

.socialico li:last-child{
	margin-right:0px;
}

.socialico li a{
	width:48px;
	height:48px;
	display:block;	
}

.socialico li a:hover{
}

.fb {
	background:url(../images/TransparentSocialIcons/Facebook.png);
	background-size:cover;
}

.tw {
	background:url(../images/TransparentSocialIcons/Twitter.png);
	background-size:cover;
}

.dr {
	background:url(../images/TransparentSocialIcons/Dribbble.png);
	background-size:cover;
}

.in {
	background:url(../images/TransparentSocialIcons/Linkedin.png);
	background-size:cover;
}

.fb, .tw, .dr, .in{
	/*transition*/
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
		 -o-transition: all 0.3s ease 0s;
			transition: all 0.3s ease 0s;	
}

.fb:hover, .tw:hover, .dr:hover, .in:hover{
	/* transform:scale(1.3); */
	opacity:.4;
}

.bottom{
	border-top:1px solid #596677;
	padding-top: 30px;
}

.bottom a{
	color:#fff;
}

.bottom a:hover{
	text-decoration:none;
}

.bottom p{
	font-size:12px;
}

/* Custom Media Query */

@media (max-width: 767px) {

	.introimg{
		display:none;
	}
	
	#intro h1{
		font-size:36px;
		line-height:48px;
	}	
	
	h1 {
		font-size: 32px;	
	}
	
	.ac-wrapper{
		padding: 0 20px 150px!important;
	}
	
	.ac-wrapper p{	
		display:none;
	}
	
	.subscribe h2{
		text-align:center;
		padding-bottom:20px;
	}

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