
@import url(http://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700);
/* --------------------------------------
=========================================
   2. PRELOADER
=========================================
-----------------------------------------*/

/*---------------------------------------
   2.1 LOADING               
-----------------------------------------*/

#loading{
	background:#2980b9;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1;
	margin-top: 0px;
	top: 0px;
}

#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
}

#loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 200px;
	width: 200px;
	margin-top: -100px;
	margin-left: -100px;
}

#object{
	width: 30px;
	height: 30px;
	-webkit-animation: animate 1s infinite ease-in-out;
	animation: animate 1s infinite ease-in-out;
	margin-right: auto;
	margin-left: auto;
	margin-top: 60px;
	background:#fff;
}

/*---------------------------------------
   2.2 LOADING ANIMATION               
-----------------------------------------*/

@-webkit-keyframes animate {
  0% { -webkit-transform: perspective(160px); }
  50% { -webkit-transform: perspective(160px) rotateY(-180deg); }
  100% { -webkit-transform: perspective(160px) rotateY(-180deg) rotateX(-180deg); }
}

@keyframes animate {
  0% { 
    transform: perspective(160px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(160px) rotateX(0deg) rotateY(0deg); 
  } 50% { 
    transform: perspective(160px) rotateX(-180deg) rotateY(0deg);
    -webkit-transform: perspective(160px) rotateX(-180deg) rotateY(0deg) ;
  } 100% { 
    transform: perspective(160px) rotateX(-180deg) rotateY(-180deg);
    -webkit-transform: perspective(160px) rotateX(-180deg) rotateY(-180deg);
  }
}

/* --------------------------------------
=========================================
   3. SECTION CSS
=========================================
-----------------------------------------*/

/*---------------------------------------
   3.1 BASIC STYLE             
-----------------------------------------*/

section {
    text-align:center;
	padding: 70px 0;
}

section h2 {
	margin: 0;
	font-family: "Roboto Slab", serif;
	line-height:1.3;
}

.seprator {
	display: inline-block;
	width: 100px;
	height: 2px;
	margin: 26px 0;
	background: #2980b9;
}

/* --------------------------------------
=========================================
   4. HEADER SECTION
=========================================
-----------------------------------------*/

/*---------------------------------------
   4.1 HEADER LEFT             
-----------------------------------------*/

#header-section {
	background: #2980b9;
	color: #fff;
	text-align:left;
}

#header-section h1 {
	margin-top: 48px;
}

#header-section p {
	font-size: 18px; /* PIXEL FALLBACK */
	font-size: 1.8rem;
	color:#fff;
}

ul.header-list {
	padding: 0px;
	margin-top:15%;
}

ul.header-list li {
	background: url("/wp-content/themes/Sterling/images/check.png") no-repeat 0 8px;
	font-size: 18px; /* PIXEL FALLBACK */
	font-size: 1.8rem;
	line-height: 26px;
	list-style: outside none;
	margin-bottom: 26px;
	padding-left: 60px;
	color: #fff;
}

/*---------------------------------------
   4.2 SUBMIT FORM              
-----------------------------------------*/

.submit-form-position{
	position:absolute;
	}
	
.submit-form-position img{
	max-width:364px;
	width:100%;
	}
	
.submit-form {
	background: #f6f6f6;
	padding: 0 20px 43px;
	width:100%;
	float:left;
}

.submit-form h3 {
    margin: 44px 0 20px;
    text-align: center !important;
    font-weight: bold;
    color: #333;
    font-size: 2.2rem;
    font-family: "Roboto Slab", serif;
    line-height: 1.3;
}

.submit-form p {
	color: #000 !important;
	margin: 30px 0 0;
	padding: 0;
	text-align: center;
	width: 100%;
}

.submit-form input {
	background: #fff;
	border: none;
	color: #000;
	height: 48px;
	margin-bottom:22px;
	padding: 0 15px;
	width: 100%;
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,.075);
    box-shadow: inset 0 0 0 rgba(0,0,0,.075);
}

.submit-form button{
	width: 100%;
	margin: 0px;
	padding: 0px;
	height: 55px;
	background: #d12323;
	color: #fff;
	border: none;
}

.submit-form button:hover{
	background: #e22525;
}

/*---------------------------------------
   4.3 NOTIFICATIONS          
-----------------------------------------*/
#notifications {
    position: absolute;
    width: 100%;
    bottom: 392px;
    left: 0px;
}
.error {
    background: #d12323;
    color: #fff;
    text-align: center;
    line-height: 70px;
    margin-bottom: 15px;
}
	
.success{
	background:#42b089;
    color: #fff;
    text-align: center;
    line-height: 70px;
    margin-bottom: 15px;
	}

/* --------------------------------------
=========================================
   5. BRANDS SECTION
=========================================
-----------------------------------------*/

/*---------------------------------------
   5.1 BASIC STYLE           
-----------------------------------------*/

#brands-section h3 {
	font-weight: bold;
	margin: 0 0 30px;
	text-align:left;
}

.brand-logo {
	width:48%;
	display:inline-block;
	background: #f6f6f6;
	line-height: 90px;
	text-align: center;
	margin-bottom:20px;
}

.brand-logo.padd-right {
	margin-right:3%;
}

/* --------------------------------------
=========================================
   6. FEATURES SECTION
=========================================
-----------------------------------------*/

/*---------------------------------------
   6.1 BASIC STYLE            
-----------------------------------------*/

#feature-section {
	padding-top:0;
}

.feature {
	margin-top: 38px;
}

.feature h3 {
	font-weight: bold;
	font-size: 22px;
}
/* --------------------------------------
=========================================
   7. VIDEO SECTION
=========================================
-----------------------------------------*/

/*---------------------------------------
   7.1 BASIC STYLE            
-----------------------------------------*/

#video-section {
	background: #f6f6f6;
}

.video {
	margin-top: 38px;
	border:none;
}

.video iframe {
	width: 100%;
	float: left;
	height: 550px;
}

/* --------------------------------------
=========================================
   8. CLIENT SECTION
=========================================
-----------------------------------------*/

/*---------------------------------------
   8.1 BASIC STYLE            
-----------------------------------------*/

.client {
    margin-top: 30px;
    display: inline-block;
}

.client-img {
	text-align: center;
}

.client-inner {
	width: 100%;
	float: left;
	background: #f6f6f6;
	padding:20px;
}

.client-inner p {
	line-height: 26px;
	text-align: left;
}

.client-inner p.normal {
	font-style: normal;
}

.client-inner h3 {
	text-align: left;
	font-weight: bold;
	line-height:1.3;
}
.client-inner ul{
    padding-left:25px;
    color:#333;
    font-size: 16px;
    font-family: "Roboto Slab", serif;
}
.client-inner li{
    text-align : left;
    color:#333;
    font-size: 16px;
    font-family: "Roboto Slab", serif;
}

/* --------------------------------------
=========================================
   9. FAQ SECTION
=========================================
-----------------------------------------*/	

/*---------------------------------------
   4.1 BASIC STYLE            
-----------------------------------------*/

#faq-section {
	background: #f6f6f6;
}

.questions {
	text-align:left;
}

.questions h3 {
	font-weight: bold;
}

.questions p {
	color: #666666;
}
/* --------------------------------------
=========================================
   10. FOOTER SECTION
=========================================
-----------------------------------------*/

/*---------------------------------------
   10.1 FOOTER SOCIAL            
-----------------------------------------*/

#footer-section {
	background: #303d4a;
	padding:25px 0;
	text-align:center;
}

ul.footer-social-icons {
	display: inline-block;
	padding: 0px;
}

ul.footer-social-icons li {
	display:inline-block;
	margin: 0px 10px;
	list-style: none;
}

/*---------------------------------------
   10.2 FOOTER COPYRIGHT           
-----------------------------------------*/

#footer-section p {
	color: #fff;
	font-size: 14px;
	width: 100%
}

/* --------------------------------------
=========================================
   11. RESPONSIVE FIXES
=========================================
-----------------------------------------*/

/*---------------------------------------
   11.1 FOR MAXIMUM DEVICE WIDTH 1200PX            
-----------------------------------------*/

@media only screen and (max-width:1199px) {

.submit-form-position{
	top:-22px;
	}
	
}

/*---------------------------------------
   11.1 FOR MAXIMUM DEVICE WIDTH 992PX            
-----------------------------------------*/

@media only screen and (max-width:991px) {

.submit-form-position{
	position:relative;
	top:0;
}
	
#faq-section {
	text-align:left;
}

.video iframe {
	height: 450px;
}

}

/*---------------------------------------
   11.1 FOR MAXIMUM DEVICE WIDTH 480PX            
-----------------------------------------*/

@media only screen and (max-width:480px) {

.brand-logo {
	width:100%;
}

.video iframe {
	height: 250px;
}

}