/*

	sky

*/



/* ==========================================================================
   BASE STYLE
   ========================================================================== */

*, *:after, *:before{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
body, html{ margin: 0; padding: 0;
width: 100%;
height: 100%; font-size: 100%; }

body{
	background:#fefefe;
	color:#333333;
    font-size: 1em;
    line-height: 1.6;
	font-weight:400;
	font-family: 'Open Sans', Arial, sans-serif;
}

a{
	color: #1d1d1d;
	text-decoration: none;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	-o-transition: color 0.2s;
	-ms-transition: color 0.2s;
	transition: color 0.2s;
}
a:hover,
a:active {
    outline: 0;
}
a:hover{
	color: #666666;
}

h1, h2{
	font-family: 'Montserrat', sans-serif;
}
audio,
canvas,
img,
video {
    vertical-align: middle;
}

img, object, embed{ max-width: 100%; height: auto; }

img{
	width: auto\9;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
}

::-webkit-input-placeholder{ /* WebKit browsers */
    color: #a9a9a9;
}

:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
    color: #a9a9a9;
}

::-moz-placeholder{ /* Mozilla Firefox 19+ */
    color: #a9a9a9;
}

:-ms-input-placeholder{ /* Internet Explorer 10+ */
    color: #a9a9a9;
}

/* Section Color Scheme */
.white{
	background: #ffffff;
}
.whitesmoke{
	background: #f5f5f5;
}
.gainsboro{
	background: #dcdcdc ;
}
.lightgray{
	background: #d3d3d3;
}
.silver{
	background: #c0c0c0 ;
}
.darkgray{
	background: #a9a9a9;
}
.dark,
.darken{
	background: #1d1d1d;
	color: #ffffff;
}
.darken{
	background: #1f1f1f;
}
.dark a,
.darken a{
	color: #a9a9a9;
}
.dark a:hover,
.darken a:hover{
	color: #ffffff;
}

/* Section with SVG Separator */
.has-svg{
	position: relative;
	padding-top: 100px;
}

/* Adjustment class for section with SVG Separator */
.pull {
	padding-top: 0;
}
.push {
	padding-top: 100px;
}

/* Section Title */
.section-title{
	margin-bottom: 60px;
	text-align: center;
}
.section-title h1{
	position: relative;
	margin-top: 0;
	text-transform: uppercase;
}
.section-title h1:after{
	position: absolute;
	bottom: -10px;
	left: 50%;
	margin-left: -25px;
	width: 50px;
	height: 2px;
	background: rgb(191, 191, 191);
	background: rgba(191, 191, 191, 0.7);
	content: "";
}
.section-title h3{
	position: relative;
	text-align: center;
	color: #999999;
	font-weight: 400;
	font-size: 1em;
}

/* SVG Separator */
.separator{
	position: absolute;
	left: 0;
	bottom: -99px;
	z-index: 900;
	width: 100%;
	height: 100px;
}
.separator.separator-top{
	top: -99px;
	bottom: auto;
}

/* SVG Separator Color Style */
.white .separator path{
	fill: #ffffff;
}
.whitesmoke .separator path{
	fill: #f5f5f5;
}
.gainsboro .separator path{
	fill: #dcdcdc ;
}
.lightgray .separator path{
	fill: #d3d3d3;
}
.silver .separator path{
	fill: #c0c0c0 ;
}
.darkgray .separator path{
	fill: #a9a9a9;
}
.darken .separator path{
	fill: #1d1d1d;
}

/* h1 Logo Style */
.logo{
	font-family: 'Open Sans', Arial, sans-serif;
	margin: 0;
}

.logo a{
	color: #ffffff;
	
	display: inline-block;	
    width: 156px;
    height: 43px;
	
    background-image: url(../img/logo.png);
	background-position:center;
	background-repeat:no-repeat;
	background-size:156px 86px;
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}
.logo a:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/* Text Alignment */
.text-center{
	text-align: center;
}
.text-left{
	text-align: left;
}
.text-right{
	text-align: right;
}

/* Button Style */
.button {
	font-weight: 700;
	padding: 5px 10px;
	display: inline-block;
}

/* Button Dark Style */
.button-dark {
	border: 2px solid #666666;
}
.button-dark:hover{
	color: #ffffff!important;
	border: 2px solid #222222;
	background: #222222;
}

/* Button Light Style */
.button-light {
	color: #ffffff!important;
	border: 2px solid #ffffff;
}
.button-light:hover{
	color: #222222!important;
	background: #ffffff;
}

.spacer{
	margin: 40px 0;
}

/* Animate CSS after page load */
.preload *{
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

/* Hide text for rotate-text */
.rotate-text{
	display: none;
}

/* grayscale image */
.grayscale img{
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-backface-visibility: hidden;
}
.grayscale:hover img{
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}

/* Fullscreen image */
.fullscreen-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	min-height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
	z-index: -1;
}

/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1; /* For IE 6/7 only */
}

/* ==========================================================================
   GRID
   ========================================================================== */

.container{
	max-width: 1170px;
	padding: 60px 20px;
	margin: 0 auto;
}

.container:after,
.row:after,
.column:after{
	content: "";
	display: table;
	clear: both;
}

.row{
	padding-bottom: 0;
}

.column{
	display: block;
	float: left;
    margin-left: 2%;
}

.column:first-child{
	margin-left: 0;
}

.full_width{ width: 100%; }
.half{ width: 49.0%; }
.one_third{ width: 32.0%; }
.two_third{ width: 66.0%; }
.one_fourth{ width: 23.5%; }
.three_fourth{ width: 74.5%; }

@media only screen and (min-width: 768px) and (max-width: 979px){

    .one_fourth{
		width: 49.0%;
    }

    .one_fourth:nth-child(2n+1){
		margin-left: 0;
	}

}

@media only screen and (max-width : 767px){

    .column{
        width: 100%;
        margin-left: 0;
    }

}



/* ==========================================================================
   PRELOADER
   ========================================================================== */

#preloader{
	position: fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:99999; /* makes sure it stays on top */
	background-color:#fff; /* change if the mask should have another color then white */
}

#status{
	position:absolute;
	top:50%; /* centers the loading animation vertically one the screen */
	left:50%; /* centers the loading animation horizontally one the screen */
	margin:-100px 0 0 -100px; /* is width and height divided by two */
	width:200px;
	height:200px;
	background-image:url(../img/AjaxLoader.gif); /* path to your loading animation */
	background-position:center;
	background-repeat:no-repeat;
	background-size:32px 32px;
}



/* ==========================================================================
   PLUGIN: OWL CAROUSEL
   ========================================================================== */

/* Owl Carousel Owl Theme */
.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #666666;
	filter: Alpha(Opacity=50);
	opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #666666;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);
	opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(../img/AjaxLoader.gif);
	background-position:center;
	background-repeat:no-repeat;
}
.owl-carousel .owl-item{
	text-align: center;
}



/* ==========================================================================
   HEADER
   ========================================================================== */

#header{
	width: 100%;
}

/* Tint background image */
#header.tint{
	background: rgba(0,0,0,0.5);
	background: url('../img/background/intro.jpg') no-repeat top left;
}

/* Fallback for IE */
.no-rgba .tint{
   background:transparent;
   filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#50000000,endColorstr=#50000000); 
   zoom: 1;
}

#header .container{
	padding-bottom: 0;
}

/* ==========================================================================
   HEADER: NAVIGATION
   ========================================================================== */
   
.navigation{
	background-color: #1F1F1F;
	display: none;
}
.navigation ul {
	padding: 0;
}
.navigation ul li a {
	color: rgba(255, 255, 255, 0.6);
	padding: 20px;
	display: block;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	padding-left: 0;
	position: relative;
}
.navigation ul li a:hover,
.navigation ul li a:focus {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}
.indicator {
	position: absolute;
	right: 0 !important;
}

#header .nav-header{
	width: 100%;
	height: 120px;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0);
	-webkit-transition: background 0.2s;
	-moz-transition: background 0.2s;
	-o-transition: background 0.2s;
	transition: background 0.2s;
}

#header .nav-header .nav-inner{
	margin: 0 auto;
	max-width: 1170px;
}

#header .nav-header h1,
#nav-toggle,
#header .nav-header .nav{
	position: relative;
	display: inline-block;
}

#header .nav-header h1,
#nav-toggle,
#header .nav-header .nav a{
	color: #fff;
	line-height: 120px;
}

#nav-toggle,
#header .nav-header .nav a{
	outline: 0;
}

#header .nav-header .logo a{
	height: 120px;
}

#header .nav-header h1{
	float: left;
	margin: 0;
	padding-left: 20px;
}

#nav-toggle,
#header .nav-header .nav{
	float: right;
	padding-right: 20px;
	text-transform: uppercase;
}

#header .nav-header .nav a{
	position: relative;
	margin: 0 0 0 20px;
	font-size: 1em;
}

#header .nav-header .nav a.current,
#header .nav-header .nav a:hover{
    color: #a9a9a9;
}



/* ==========================================================================
   HEADER: INTRO
   ========================================================================== */

#header .intro-block{
	width: 100%;
	height: 100%;
	display: table;
	color: #ffffff;
	position: relative;
	padding: 60px 0;
}

#header .intro-block .intro-text{
	display: table-cell;
	vertical-align: middle;
	-webkit-transform:translate3d(0,0,0);
}

#header .intro-block .intro-text h1,
#header .intro-block .intro-text h3{
	text-transform: uppercase;
	margin: 0;
}

#header .intro-block .intro-text h1{
	font-size:4em;
	line-height:1em;
}

#header .intro-block .intro-text .button{
	margin-top: 40px;
	padding: 10px 15px;
	font-size: 1.17em;
}

#header .intro-block .store-links {
	margin: 40px 0 0;
	padding: 0;
}
#header .intro-block .store-links li{
	list-style: none;
	display: inline-block;
	margin-right: 10px;
}
#header .intro-block .store-links li img{
	max-width: 128px;
}

/* Rotating Text */
#header .rotating{
	display: inline-block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
	-moz-transform: rotateX(0) rotateY(0) rotateZ(0);
	-o-transform: rotateX(0) rotateY(0) rotateZ(0);
	transform: rotateX(0) rotateY(0) rotateZ(0);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin-x: 50%;
}

#header .rotating.flip{
 	position: relative;
}

#header .rotating .front, #header .rotating .back{
	top: 0;
	left: 0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
}

#header .rotating .front{
	position: absolute;
	display: inline-block;
	-webkit-transform: translate3d(0,0,1px);
	-moz-transform: translate3d(0,0,1px);
	-ms-transform: translate3d(0,0,1px);
	-o-transform: translate3d(0,0,1px);
	transform: translate3d(0,0,1px);
}

#header .rotating.flip .front{
	z-index: 1;
}

#header .rotating .back{
	display: block;
	opacity: 0;
}

#header .rotating.flip .back{
	z-index: 2;
	display: block;
	opacity: 1;

	-webkit-transform: rotateY(180deg) translate3d(0,0,0);
	-moz-transform: rotateY(180deg) translate3d(0,0,0);
	-ms-transform: rotateY(180deg) translate3d(0,0,0);
	-o-transform: rotateY(180deg) translate3d(0,0,0);
	transform: rotateY(180deg) translate3d(0,0,0);
}

#header .rotating.flip.up .back{
	-webkit-transform: rotateX(180deg) translate3d(0,0,0);
	-moz-transform: rotateX(180deg) translate3d(0,0,0);
	-ms-transform: rotateX(180deg) translate3d(0,0,0);
	-o-transform: rotateX(180deg) translate3d(0,0,0);
	transform: rotateX(180deg) translate3d(0,0,0);
}

#header .intro-img{
	position: relative;
	z-index: 990;
	text-align: center;
}



/* ==========================================================================
   SERVICE
   ========================================================================== */

#features .feature-block{
	max-width: 960px;
	margin: 0 auto 60px;
}

#features .feature-block:last-child{
	margin-bottom: 0;
}

#features .feature-block .feature-icon,
#features .feature-block .feature-body{
	position: relative;
}

#features .feature-block:nth-child(odd) .feature-icon{
	left: 49.0%;
}

#features .feature-block:nth-child(odd) .feature-body{
	left: -49.0%;
	margin-left: 0;
}

#features .feature-block .feature-body h2{
	margin-top: 0;
}


/* ==========================================================================
   INFORMATION
   ========================================================================== */
#information .container{
    overflow:hidden !important;
}
#information .center_phone {
    height:610px;
    background:url(../img/mockups/center_phone.png) 218px 0 no-repeat;
    margin:0 auto;
    padding-top:80px;
    position:relative;
    width: 730px;
	left: 50%;
	margin-left: -365px;
}
.phone_previews {
    overflow:hidden;
    padding-top:64px;
}

/* Owl Slider */
#information .owl-wrapper-outer {
    overflow:visible !important;
}
#information .owl-item {
    opacity:0.2;
    filter: alpha(opacity=20);
    padding:0 0px;
}
#information .owl-item.o_2away {
    opacity:0.04;
    filter: alpha(opacity=04);
    transition:all .45s ease-in-out;
    -webkit-transition:all .45s ease-in-out;
    -moz-transition:all .45s ease-in-out;
}
#information .owl-item div {
    text-align:center;
}
#information .owl-item.active {
    opacity:1;
    filter: alpha(opacity=100);
    transition:all .45s ease-in-out;
    -webkit-transition:all .45s ease-in-out;
    -moz-transition:all .45s ease-in-out;
    position:relative;
    z-index:50
}
#information .owl-item.active div img {
    width:240px;
    margin-top:10px;
}
    #information .owl-item div img {
        width:200px;
    margin-top:21px;
    transition:all .5s ease-in-out;
    -webkit-transition:all .5s ease-in-out;
    -moz-transition:all .5s ease-in-out;
    text-align:center;
}
#information .owl-item h2 {
    color: #fff;
    font-weight: 200;
    margin-top: 0;
    display: inline-block;
    width: 270px;
    height: 30px;
    position: absolute;
    top: -145px;
    left: 50%;
    margin-left: -135px;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    opacity:0;
    filter: alpha(opacity=0);
}
.end_slider {
    text-indent:-9999px;
}
#information .owl-buttons {
    font-family:"FontAwesome";
    display:inline-block;
    font-style:normal;
    font-weight:normal;
    -webkit-font-smoothing: antialiased;
    font-size:33px;
    top:-150px;
    position:absolute;
    left:50%;
    z-index:9000;
}
#information .owl-buttons div {
    transition:.3s all ease-in-out;
    -webkit-transition:.3s all ease-in-out;
    -moz-transition:.3s all ease-in-out;
	background: transparent;
	padding: 0;
	font-size: 16px;
}
#information .owl-buttons div.owl-prev {
    position:absolute;
    top:0;
    left:-120px;
}
#information .owl-buttons div.owl-next {
    position:absolute;
    top:0;
    right:-120px;
}
#information .owl-buttons div:hover {
    color:#464e54;
}

/*----------------------------
Bullet Base Position Styling
---------------------------- */
.bullet.left {
    left:50%;
}
.bullet.right {
    right:50%;
}
/* Bullet Height Positions */
.bullet.top {
        top:20px;
}
.bullet.centre {
        top:200px;
}
.bullet.btm {
        top:400px;
}
/*----------------------------
Right Length Positions
---------------------------- */
.bullet.right div {
    background: url(../img/indicator-right.png) right no-repeat;
position: absolute;
left: 17px;
height: 14px;
}
/* Left close Length */
.right.close {
    margin-right:-120px;
}
.bullet.right.close span {
    left:30px;
}
.bullet.right.close > div {
    width:45px;
}
.right.mid {
    margin-right:-70px;
}
.right.mid > div {
    background: url(../img/indicator-right.png) right no-repeat;
position: absolute;
width: 108px;
left: 17px;
height: 14px;
}

/* Right far Length */
.bullet.right.far {
    margin-right:-40px;
}
.bullet.right.far span {
    left:170px;
}
.bullet.right.far > div {
    width:185px;
}

/*----------------------------
Left Positions
---------------------------- */
.bullet.left div {
    background: url(../img/indicator.png) left no-repeat;
position: absolute;
right: 17px;
height: 14px;
}
/* Left close Length */
.left.close {
    margin-left:-120px;
}
.bullet.left.close span {
    right:30px;
}
.bullet.left.close > div {
    width:45px;
}
/* Left mid Length */
.bullet.left.mid {
    margin-left:-70px;
}
.bullet.left.mid span {
    right:90px;
}
.bullet.left.mid > div {
    width:108px;
}
/* Left far Length */
.bullet.left.far {
    margin-left:-40px;
}
.bullet.left.far span {
    right:170px;
}
.bullet.left.far > div {
    width:185px;
}

/*----------------------------
Bullet Span Styling
---------------------------- */
.bullet.left span {
    display:block;
    padding-right:30px;
    position:absolute;
    right:90px;
    width:250px;
    top:-12px;  
    text-align:right;
}
.bullet.right span {
    display:block;
    padding-left:30px;
    position:absolute;
    left:90px;
    width:250px;
    top:-12px;  
    text-align:left;
}

/*----------------------------
Phone Hover - Typography
---------------------------- */
.bullet span h4 {
    font:18px "Montserrat", sans-serif;
    margin: 10px 0 0;
    text-transform:uppercase;
}
.bullet span p {
	color: #dfdfdf;
    font-size:13px;
    font-weight:normal;
	margin-top: 0;
}

/*----------------------------
Phone Bullets - General Styling
---------------------------- */
#information .owl-item .bullet {
    opacity:0;
    filter: alpha(opacity=0);
    transition:all .2s ease-in-out;
    -webkit-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    transform:scale(0.8);
    -webkit-transform:scale(0.8);
    -ms-transform:scale(0.8);
    -moz-transform:scale(0.8);
    width:20px;
    height:20px;
    border-radius:20px;
    background:#222222;
    position:absolute;
    border:3px solid white;
}
#information .owl-item.active h2 {
    transition:all .2s ease-in-out;
    -webkit-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    transform:scale(0.8);
    -webkit-transform:scale(0.8);
    -ms-transform:scale(0.8);
    -moz-transform:scale(0.8);
    opacity:0;
    filter: alpha(opacity=0);
}
#information .owl-item.active .bullet, #information .owl-item.active h2 {
    opacity:1;
    filter: alpha(opacity=100);
    transition:1s all .4s ease-in-out;
    -webkit-transition:1s all .4s ease-in-out;
    -moz-transition:1s all .4s ease-in-out;
    transform:scale(1);
    -webkit-transform:scale(1);
    -ms-transform:scale(1);
    -moz-transform:scale(1);
}

/* .phoneOverlay */
.phoneOverlay {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 318px;
    background: rgba(255,255,255,0.9);
    z-index: 9999;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    display:none;
}
.phoneOverlay div {
    width:280px;
    margin:20px auto;
    text-align:center;
}
.phoneOverlay div h4 {
    font:18px "Montserrat", sans-serif;
    text-transform:uppercase;
    color:#222222;
    margin-top:120px;
}
.phoneOverlay div p {
    font: 13px "Open Sans", sans-serif;
    color:#222222;
}
.phoneOverlay .clicktoClose {
    margin: 0 auto;
    position: relative;
    bottom: 45px;
    font: 11px "Montserrat", sans-serif;
    text-align: center;
    width: 200px;
    margin-left: -100px;
    left: 50%;
    position: absolute;
    color:#222222;
    text-transform: uppercase;
    cursor:pointer;
}



@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(83, 83, 83, 0.8);
  }

  50% {
    box-shadow: inset 0 0 1px 1px rgba(83, 83, 83, 0.8);
  }

  100% {
    -webkit-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(83, 83, 83, 0);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(83, 83, 83, 0.8);
  }

  50% {
    box-shadow: inset 0 0 1px 1px rgba(83, 83, 83, 0.8);
  }

  100% {
    -moz-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(83, 83, 83, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(83, 83, 83, 0.8);
  }

  50% {
    box-shadow: inset 0 0 1px 1px rgba(83, 83, 83, 0.8);
  }

  100% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(83, 83, 83, 0);
  }
}



/* ==========================================================================
   SERVICE
   ========================================================================== */

#features .container{
	max-width: 960px;
	margin: 0 auto;
}



/* ==========================================================================
   CLIENTS
   ========================================================================== */
#clients{
}



/* ==========================================================================
   QUOTES
   ========================================================================== */

#quotes h2, #quotes  .quote{
	font-weight: normal;
	font-family: Georgia,Times,"Times New Roman",serif;
}

#quotes h2{
	margin-top: -32px;
}

#quotes  .quote{
	font-size: 5em;
	line-height: 1em;
}



/* ==========================================================================
   SUBSCRIBE
   ========================================================================== */

#subscribe h2 {
	margin-top: 10px;
	margin-bottom: 0;
}
#subscribe p {
	margin-top: 0;
}

#subscribe form {
	margin-top: 6px;
}

#subscribe form input[type=text] {
	width: 65%;
	height: 60px;
	display: block;
	padding: 0 20px;    	
	background-color: #fff;
	border: 1px solid #fff;
	-webkit-border-top-left-radius: 2px;
	-webkit-border-bottom-left-radius: 2px;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-bottomleft: 2px;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	line-height: 60px;
	color: #262626;
	float: left;
}

#subscribe form input:focus {
	outline: 0;
}

#subscribe form input[type=submit] {
	width: 35%;
	height: 60px;
	display: block;
	padding: 0 10px; 
	background-color: #5d9cec;
	border: 1px solid #5d9cec;
	color: #fff;
	-webkit-border-top-right-radius: 2px;
	-webkit-border-bottom-right-radius: 2px;
	-moz-border-radius-topright: 2px;
	-moz-border-radius-bottomright: 2px;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;        
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;	
	transition: all 0.125s ease-in-out 0s;
	-moz-transition: all 0.125s ease-in-out 0s;
	-webkit-transition: all 0.125s ease-in-out 0s;
	-o-transition: all 0.125s ease-in-out 0s;
	-ms-transition: all 0.125s ease-in-out 0s;
	float: right;
}

#subscribe form input[type=submit]:hover {
	background-color: #2980b9;
	border: 1px solid #2980b9;
}

#subscribe .message {
	height: 2.5em;
	padding: 10px 20px;
	color: #262626;
	font-size: 0.9em;
}

#subscribe .message i {
	margin-right: 5px;
}

#subscribe .message .fa-warning {
	color: #ff5c5c;
}

#subscribe .message .fa-check {
	color: #5d9cec;
} 


/* ==========================================================================
   FOOTER
   ========================================================================== */

#footer{
	background: #1d1d1d;
	color: white;
}

#footer .container{
	padding-top: 100px;
}

#footer a{
	color: #fff;
}


#footer-bottom .socials{
	padding: 0;
	margin: 0;
	list-style: none;
}

#footer-bottom .socials li{
	display: inline-block;
}

#footer-bottom .socials li a{
	display: inline-block;
	margin: 10px;
	color: #ffffff;
}



/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

/* Portrait tablet to landscape and desktop */
@media only screen and (min-width: 768px) and (max-width: 979px){
}

/* Landscape phone to portrait tablet */
@media only screen and (max-width: 767px){
	#header.page{
		height: 90px;
	}

	#header .nav-header{
		height: 90px;
	}

	#header .nav-header .nav-inner{
		width: 100%;
	}

	#nav-toggle,
	#header .nav-header h1{
		line-height: 90px;
	}

	#header .nav-header .logo a{
		height: 90px;
	}

	#header .nav-header .nav a{	
		line-height: 50px;
	}

	#nav-toggle{
		display: block;
	}

	#header .nav-header .nav{
		display: none;
		position: absolute;
		top: 90px;
		right: 0;
		width: 100%;
		float:none;
		padding-right: 0;
		border-bottom: 10px solid rgba(0,0,0,0.952941);
		-webkit-transition: right 0.3s;
		-moz-transition: right 0.3s;
		-o-transition: right 0.3s;
		-ms-transition: right 0.3s;
		transition: right 0.3s;
	}

	#header .nav-header .nav.open{
		display: block;
	}

	#header .nav-header .nav a{
		display: inline-block;
		width: 100%;
		margin: 0;
		padding-left: 20px;
		background: #1d1d1d;
		border-left: 4px solid transparent;
	}

	#header .nav-header .nav a:hover{
		background: #191919;
	}

	#header .nav-header .nav a.current{
		border-left: 4px solid #a9a9a9;
	}

	#header .nav-header .nav a.current:after{
		background: transparent;
	}

	#header .intro-block{
		padding-top: 0;
	}

	#header .intro-block .store-links {
		text-align: center;
	}
	
	#header .intro-img{
		margin-bottom: -240px;
		z-index: 0;
	}
	
    #information .owl-item.active .bullet,
	#information .owl-item.active h2 {
		opacity:1;
		transition:1s all .1s ease-in-out;
		-webkit-transition:1s all .1s ease-in-out;
		-moz-transition:1s all .1s ease-in-out;
		transform:scale(1);
		-webkit-transform:scale(1);
		-ms-transform:scale(1);
		-moz-transform:scale(1);
    }
	
    #information .owl-item.active .bullet::after {
		/* this is used to create the pulse animation */
		content: '';
		position: absolute;
		z-index: 1;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		border-radius: inherit;
		background-color: transparent;
		-webkit-animation: pulse 2s infinite;
		-moz-animation: pulse 2s infinite;
		animation: pulse 2s infinite;
	}
	
    #information .owl-item div img {
		width:200px;
		margin-top:21px;
		transition:all .5s ease-in-out;
		-webkit-transition:all .5s ease-in-out;
		-moz-transition:all .5s ease-in-out;
		text-align:center;
    }
	
    #information .bullet span {
        width:200px !important;
    }
	
    #information .bullet.right.far span {
        left:118px;
    }
    #information .bullet.left.far span {
        right:118px;
    }
    #information .bullet.far > div {
        width:135px !important;
    }
	
	
	#information .bullet div {
        display:none;
    }
    #information .bullet div.active {
        display:block;
    }
    #information .owl-item .bullet {
        width:30px;
        height:30px;
    }
    #information .owl-item.active .bullet:hover {
        background:#78858e;
    }

	#features .feature-block:nth-child(odd) .feature-icon,
	#features .feature-block:nth-child(odd) .feature-body{
		left: 0;
	}

	#features .feature-block .feature-body{
		text-align: center;
	}

	#features .feature-block .feature-body h2{
		margin-top: 0.83em;
	}

	#features .feature-block .feature-body p{
		text-align: left;
	}
}

/* Retina Display */
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {
	.logo a{
		background-image: url(../img/logo@2x.png);
	}
	#status{
		background-image: url(../img/AjaxLoader@2x.gif);
	}
}