@charset "UTF-8";
/* 
 *  
 * Contents
 * ----------------------------
 * 1. TYPOGRAPHY STYLES
 * 2. BODY BACKGROUND IMAGE
 * 3. HELPER CLASSES
 * 4. NAVBAR STYLES
 * 5. BUTTON STYLES
 * 6. BAND STYLES
 * 7. SECTION TITLE STYLES
 * 8. HERO SECTION
 * 9. SUBSCRIPTION FORM
 * 10. FEATURES SECTION
 * 11. BENEFITS SECTION
 * 12. CUSTOMER QUOTES SECTION
 * 13. FOOTER SECTION
 * 14. CAROUSEL STYLES
 * 15. LIGHTBOX STYLES
 * 16. VIDEO EMBED RESPONSIVE STYLES
 * 17. RESET
 * 18. RESPONSIVE MEDIA QUERIES
 *
 */

/******************************
1. TYPOGRAPHY STYLES
******************************/

h1, h2, h3, h4, h5, h6 {
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	color: #333;
}

h1 {font-size: 36px; line-height: 40px;}
h2 {font-size: 28px; line-height: 34px;}
h3 {font-size: 24px; line-height: 28px;}
h4 {font-size: 20px; line-height: 24px;}
h5 {font-size: 18px; line-height: 22px;}
h6 {font-size: 16px; line-height: 20px;}

a {
	color: #08C;
}

a:hover {
	color: #005580;
}

/******************************
2. BODY BACKGROUND IMAGE
******************************/

body {
	background: whiteSmoke url('../img/backgrounds/brushed_alu.png') repeat;
	color: #666;
}

/******************************
3. HELPER CLASSES
******************************/

.text-blue {
	color: #08C;
}

.text-purple {
	color: #8C0095;
}

.text-green {
	color: #59c54a;
}

.text-orange {
	color: #FF8F32;
}

.text-teal {
	color: #008299;
}

.text-white {
	color: #FFF;
}

.text-light-grey {
	color: #CCC;
}

.text-dark-grey {
	color: #333;
}

.text-black {
	color: #000;
}

::selection {
	color: #FFF;
	background-color: #08C;
}

/******************************
4. NAVBAR STYLES
******************************/

.navbar-static-top .navbar-inner,
.navbar-fixed-top .navbar-inner {
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	border-top: 3px solid #08C;
}

.navbar-inner {
	background-image: none;
	background-color: #FFF;
}

.navbar .brand,
#phone p {
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 40px;
	font-size: 24px;
	padding: 5px 5px;
	margin-bottom: 0;
	font-weight: 200;
}

/******************************
5. BUTTON STYLES
******************************/

.button {
	display: inline-block;
	padding: 8px 18px;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	color: #FFF;
	border-width: 0 0 3px 0;
	border-style: solid;
	border-color: #005580;
	background-color: #08C;
}

.button:hover {
	padding: 10px 18px 6px;
	color: #FFF;
	text-decoration: none;
	background-color: #005580;
}

/******************************
6. BAND STYLES
******************************/

.band {
	padding: 20px 0px;
}

.band-white {
	background: #fff;
	color: #666 !important;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 4px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 0px 4px rgba(0,0,0,0.1);
}

.band-color {
	background: #08C;
	color: #FFF;
}

.band-color h1,
.band-color h2,
.band-color h3,
.band-color h4,
.band-color h5,
.band-color h6 {
	color: #FFF;
}

/******************************
7. SECTION TITLE STYLES
******************************/

.section-title {
	text-align: center;
	margin: 15px 0 35px;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
	display: inline-block;
	margin-bottom: 20px;
}

.section-title h3 {
	text-transform: uppercase;
}

.section-title-blue {
	background: url("../img/divide-blue.gif") no-repeat scroll center bottom transparent;
}

.section-title-purple {
	background: url("../img/divide-purple.gif") no-repeat scroll center bottom transparent;
}

.section-title-green {
	background: url("../img/divide-green.gif") no-repeat scroll center bottom transparent;
}

.section-title-orange {
	background: url("../img/divide-orange.gif") no-repeat scroll center bottom transparent;
}

.section-title-teal {
	background: url("../img/divide-teal.gif") no-repeat scroll center bottom transparent;
}

.section-title-white {
	background: url("../img/divide-white.gif") no-repeat scroll center bottom transparent;
}

.section-title-light-grey {
	background: url("../img/divide-light-grey.gif") no-repeat scroll center bottom transparent;
}

.section-title-dark-grey {
	background: url("../img/divide-dark-grey.gif") no-repeat scroll center bottom transparent;
}

.section-title-black {
	background: url("../img/divide-black.gif") no-repeat scroll center bottom transparent;
}

/******************************
8. HERO SECTION
******************************/

#hero h2 {
	margin: 10px 0 15px;
}

#hero form {
	margin: 25px 0 5px;
}

#newsletter-hero {
	padding-bottom: 0px;
}

.newsletter-img {
	position: relative;
}

.newsletter-enlarge {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
}

.newsletter-enlarge a {
	position: relative;
	top: 50%;
	color: white;
	background-color: #08C;
	padding: 20px 18px 18px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}

.newsletter-enlarge a:hover {
	text-decoration: none;
	background-color: #005580;
}

/******************************
9. SUBSCRIPTION FORM (LAYOUT 3)
******************************/

#subscription-form .input-block-level {
	min-height: 39px;
}

#subscription-form {
	padding-top: 30px;
}

/******************************
10. FEATURES SECTION
******************************/

#features .icon {
	font-size: 32px;
	line-height: 50px;
}

#features .feature {
	padding: 10px 0;
}

/******************************
11. BENEFITS SECTION
******************************/

#benefits {
	padding-top: 10px;
}

#benefits ul.check {
	list-style: none;
	margin-left: 0;
}

#benefits ul.check li {
	background: url('../img/check.png') no-repeat;
	background-position: 0px 5px;
	padding-left: 25px;
	margin: 15px 0 7px 0px;
}

/******************************
12. CUSTOMER QUOTES SECTION
******************************/

.customer {
	margin-bottom: 20px;
}

.customer-pic {
	margin-bottom: 10px;
	text-align: center;
}

.quote {
	font-family: Georgia, serif;
	font-style:italic;
}

.quote i {
	margin-right: 5px;
}

/******************************
13. FOOTER SECTION
******************************/

#footer {
	padding: 20px 0 50px;
}

.copyright {
	float: left;
	line-height: 50px;
}

/* Add @font-face for Social Icon font */

@font-face{ 
	font-family: 'Socialico';
	src: url('../font/socialico-webfont.eot');
	src: url('../font/socialico-webfont.eot?#iefix') format('embedded-opentype'),
	     url('../font/socialico-webfont.woff') format('woff'),
	     url('../font/socialico-webfont.ttf') format('truetype'),
	     url('../font/socialico-webfont.svg#webfont') format('svg');
	font-weight: normal;
  	font-style: normal;
}

.social a {
	font-family: Socialico;
	font-size: 50px;
	line-height: 50px;
	color: #08C;
}

.social a:hover {
	text-decoration: none;
	color: #005580;
}

.social {
	float: right;
}

.social ul {
	list-style: none;
	margin: 0;
}

.social ul li {
	display: inline;
}

/******************************
14. CAROUSEL STYLES
******************************/

.carousel-control {
	top: 50%;
	background-color: transparent;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	border:0;
	left: 0px;
}

.carousel-control.left {
	background-image: url('../img/prev.png');
}

.carousel-control.right {
	background-image: url('../img/next.png');
	right: 0px;
}

.carousel-indicators {
	top: auto;
	bottom: 15px;
}

.carousel-inner img {
	width: 100%;
}

.carousel-indicators .active {
	background-color: #08C;
}

.carousel-indicators li {
	background-color: rgba(204,204,204,0.6);
	cursor: pointer;
}

/******************************
15. LIGHTBOX STYLES
******************************/

#lightbox {
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.lb-outerContainer {
    max-width: 100%;
	height: auto !important;
}

.lb-container {
	padding: 0;
}
 
#lightbox img.lb-image {
    max-width: 98%;
	padding: 1%;
}

.lb-next:hover,
.lb-prev:hover{
	cursor: pointer;
}

.lb-dataContainer {
    position: relative;
    max-width: 100%;
}

.lb-data .lb-caption {
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 26px;
    color: #fff;
    line-height: 32px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}
 
.lb-data .lb-number {
    color: #ccc; 
	padding: 1em 0 2em;
}

/******************************
16. VIDEO EMBED RESPONSIVE STYLES - DO NOT CHANGE
******************************/

.embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16/9 ratio */
    padding-top: 30px; /* IE6 workaround*/
    height: 0;
    overflow: hidden;
	margin-bottom: 20px;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/******************************
17. RESET
******************************/

iframe {
	border: 0;
}

label {
	cursor: default;
}

/******************************
18. RESPONSIVE MEDIA QUERIES
******************************/

@media (max-width: 980px) {
	h1 {font-size: 28px; line-height: 32px;}
	h2 {font-size: 24px; line-height: 28px;}
	h3 {font-size: 20px; line-height: 24px;}
	h4 {font-size: 18px; line-height: 22px;}
	h5 {font-size: 16px; line-height: 20px;}
}

@media (max-width: 767px) { 

.navbar .brand {
	float: none;
	text-align: center;
}

.band {
	margin-left: -20px;
	margin-right: -20px;
}

.band .container {
	padding: 0 20px;
}

.social, .copyright {
	float: none;
	text-align: center;
}

}