/* ------------------------------------------ */
/*             TABLE OF CONTENTS
/* ------------------------------------------ */

/*   01 - General & Basic Styles   */
/*   02 - Header & Navigation      */
/*   03 - Intro      			   */
/*   04 - About        			   */
/*   05 - Features                 */
/*   06 - FAQs		               */
/*   07 - Pricing	               */
/*   08 - Blog		               */
/*   09 - Clients                  */
/*   10 - Call to Action           */
/*   11 - Footer         		   */
/*   12 - Scroll to Top	   		   */
/*   13 - Contact Form Response    */
/*   14 - Breadcrumb		   	   */
/*   15 - What We Do  		 	   */
/*   16 - Our Skills		   	   */
/*   17 - Team   	 			   */
/*   18 - Statistic Banner   	   */
/*   19 - Right Sidebar   		   */
/*   20 - Blog Page   			   */
/*   21 - Single Post Page   	   */



/* ==========================================================================
   01. GENERAL & BASIC STYLES
   ========================================================================== */

/*------------------------------------------*/
/*	 Preload Animation 
/*------------------------------------------*/

#preloader{
	position: fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:99999; 
	background-color:#fff;
}

#status{
	position:absolute;
	top:50%; 
	left:50%; 
	margin:-100px 0 0 -100px;
	width:200px;
	height:200px;
	background-image:url(../img/icons/loader.gif);
	background-position:center;
	background-repeat:no-repeat;
	background-size:75px 75px;
}   
 
#content-wrapper, 
#about-page-wrapper {
}  
 
/*------------------------------------------*/
/*	 Parallax Background Settings
/*------------------------------------------*/

.intro-parallax {
	background-attachment: fixed !important;
	background-position: top center;
	background-repeat: no-repeat;
        background-image: url(../img/best-ecommerce-developers.png);
}

#intro { 
	background-image: url(../img/best-ecommerce-developers.png); 
}

.parallax {
	background-attachment: fixed !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#features { 
	background-image: url(../img/parallax_bg/features_bkg.jpg);  
}

#call-to-action { 
	background-image: url(../img/parallax_bg/call_to_action_bkg.jpg); 
}

#icall-to-action { 
	background-image: url(../img/ecommerce-development-features.png); 
}

#h1call-to-action { 
	background-image: url(../img/h1banner.png); 
       
}

#statistic-banner { 
	/* background-image: url(../img/parallax_bg/statistic_banner_bkg.jpg);  */
}

/*------------------------------------------*/
/*	 Headers
/*------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	margin-top: 0; 
	margin-bottom: 10px;
}

/*------------------------------------------*/
/*	 Lists
/*------------------------------------------*/

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/*------------------------------------------*/
/*	 Link Setting
/*------------------------------------------*/

a {
	text-decoration: none;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

a:hover {
	color: #444;
	text-decoration: none;
}

a:focus {
	color: #f8f8f8;
	outline: none;
	border: none;
	text-decoration: none;
} 

/*------------------------------------------*/
/*	 Theme Button
/*------------------------------------------*/

.btn-theme {
	background-color: #6FC04C;
	color: #fff;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	padding: 8px 16px;
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.btn-theme:hover {
	background-color: #3071a9;
	color: #fff;
}

/*------------------------------------------*/
/*	 Black Button
/*------------------------------------------*/

.btn-black {
	background-color: #444;
	color: #fff;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	padding: 8px 16px;
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.btn-black:hover {
	background-color: #222;
	color: #fff;
}

/*------------------------------------------*/
/*	 Button Hover/Focus
/*------------------------------------------*/

.btn:focus {
	outline: none;
}

.btn:focus {
	color: #f8f8f8;
	text-decoration: none;
}

/*------------------------------------------*/
/*	 Section Titlebar
/*------------------------------------------*/

.titlebar {
	margin-bottom: 40px;
}

.titlebar h1 {
	color: #000;
	font-weight: 300;
	margin-top: 0;
	margin-bottom: 5px;
}

.titlebar p {
	color: #666;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
}



/* ==========================================================================
   02. HEADER & NAVIGATION
   ========================================================================== */ 

/*------------------------------------------*/
/*	 Logo Image    
/*------------------------------------------*/
.logo {
    width: 260px;
    padding: 14px;
}

.navbar-brand {
	padding: 10px 15px 10px;
}   
      
/*------------------------------------------*/
/*	 Navigation Menu    
/*------------------------------------------*/

.navbar {	
background: rgba(0,0,0,0);

}

.navbar-nav > li > a {
	color: white;	
    display: block;
	padding: 0 15px;
	font-size: 14px;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 65px;
	border-bottom: 3px solid transparent;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a.selected-nav {
	background: none;
	color: #8E5B38;
}

/*------------------------------------------*/
/*	 Responsive Menu    
/*------------------------------------------*/

.navbar-toggle {
    position: relative;
    float: right;
    padding: 10px;
	margin: 12px 30px 12px 0;
    background-color: none;
	border: 2px solid #444;
}

.navbar-toggle .icon-bar {
	background-color: #444;
	height: 2px;
}



/* ==========================================================================
   03. INTRO
   ========================================================================== */
 
#intro {
	padding-top: 70px;
	padding-bottom: 80px;
	color: #fff;
} 

/*------------------------------------------*/
/*	  Intro Section Description
/*------------------------------------------*/

#intro_description h1 {
	font-size: 40px;
	margin-bottom: 30px;
}

.intro_feature {
	margin-bottom: 20px;
}

.intro_feature h4 {
	font-weight: 600;
}

.intro_feature i {
	margin-right: 5px;
}

.intro_feature p {
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	padding-left: 25px;
}

/*------------------------------------------*/
/*	  Intro Section Button
/*------------------------------------------*/

.intro_button {
	margin-top: 60px;
}

/*------------------------------------------*/
/*	  Register Form
/*------------------------------------------*/

#intro_form {
}

.form_register {
width: 100%;
margin: 0 auto;
padding: 20px 20px 25px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
text-align: left;
background-color:rgba(255,255,255,0.4);





}

.form_register h2 {
	color: #fff;
    text-align: center;
    line-height: 30px;
	font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/*------------------------------------------*/
/*	  Register Form Input
/*------------------------------------------*/

.form_register .form-control {
	height: 46px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	-webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 2px;
    width:100%;
     

}

input[type="text"],
input[type="email"],
textarea {
	color: #444;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.form_register textarea {
	min-height: 140px;
}

/*------------------------------------------*/
/*	   Register Form Error Message 
/*------------------------------------------*/

.error {
	color: #fc0000;
	font-size: 13px;
	margin-bottom: 20px;
}


 
/* ==========================================================================
   04. ABOUT
   ========================================================================== */
  
#about-1 {
	padding-top: 60px;
	padding-bottom: 30px;
	
}

#about-2 {
	padding-top: 70px;
	padding-bottom: 70px;
}

#about-1 .titlebar {
	margin-bottom: 30px;
}

#about-1 h4, #about-2 h4  {
	font-weight: 600;
	margin-bottom: 15px;	
}

/*------------------------------------------*/
/*	  About-1 Text
/*------------------------------------------*/

#about-1-text {
	padding-right: 35px;
}

/*------------------------------------------*/
/*	  Accordion
/*------------------------------------------*/

#accordion_holder {
	margin-top: 40px;
}

.accordion {
	margin-bottom: 40px;
}

#text_1,
#text_2,
#text_3,
#text_4 { 
	width: 100%;
	display: block; 
	float: left; 
	padding: 0; 
	margin: 3px 0; 	
	cursor: pointer; 	
}

.accordion a { 
	color: #666; 
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 26px;
	padding: 10px 40px 10px 15px;
	text-decoration: none; 
	border-left: 4px solid transparent;
	display: block; 
	cursor: pointer; 
	background: rgba(170, 170, 170, 0.15) url(../img/icons/open.png) no-repeat center right;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.accordion li.active>a { 
	background: rgba(170, 170, 170, 0.15) url(../img/icons/close.png) no-repeat center right;  
	color: #151515;
	
	
	box-shadow: none;
}

/*------------------------------------------*/
/*	  Accordion Answer
/*------------------------------------------*/

.accordion li div { 
	background: #fff;
	line-height: 22px;
	padding: 10px 10px; 
	margin-bottom: 5px;
	display: block; 
	clear: both; 
	float: left; 
}

/*------------------------------------------*/
/*	 Video Holder
/*------------------------------------------*/

#video_holder p {
	margin-bottom: 30px;
}

/*------------------------------------------*/
/*	  Video Content Settings
/*------------------------------------------*/ 

.video-block {
	position: relative;
	padding-bottom: 54.25%;
	padding-top: 20px;
	margin-top: 20px;
	height: 0;
	overflow: hidden;
}

.video-block iframe,
.video-block object,
.video-block embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border:0;
}

/*------------------------------------------*/
/*	 About-2 Text
/*------------------------------------------*/

#about-2-text {
	padding-left: 60px;
}

/*------------------------------------------*/
/*	  Quote
/*------------------------------------------*/

#quote_holder {
	margin-top: 40px;
}

.quote-text {
	background: rgba(170, 170, 170, 0.15);
    border-left: none;
    color: rgba(85, 94, 106, 0.8);
    font-style: italic;
    line-height: 25px;
    margin: 0 0 30px 0;
    padding: 26px;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 0 rgba(182, 196, 209, 0.3);
    -moz-box-shadow: 0 3px 0 rgba(182, 196, 209, 0.3);
    box-shadow: 0 3px 0 rgba(182, 196, 209, 0.3);
}

.quote-text:before {
    border: 14px solid transparent;
    z-index: 3;
    border-top-color: #f2f2f2;
    top: auto;
    right: auto;
    bottom: -28px;
    left: 30px;
}

.quote-text:after {
    border: solid 14px transparent;
    z-index: 2;
    border-width: 18px;
    border-top-color: rgba(182, 196, 209, 0.3);
    top: auto;
    right: auto;
    bottom: -36px;
    left: 26px;
}

.quote-text:before,
.quote-text:after,
.quote-text-up:before,
.quote-text-up:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    position: absolute;
}

.quote-text a {
    color: #8c989e;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}

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

.flexslider .slides img { 
	float: left;
    margin-right: 15px;
    margin-left: 6px;
    width: 75px;
	box-shadow: 0 0 5px rgba(140, 140, 140, 0.8);
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    -ms-border-radius: 1000px;
    -o-border-radius: 1000px;
    border-radius: 1000px;
}

.quote-author {
    display: inline-block;
    font-size: 14px !important;
    line-height: 65px !important;
} 

.quote-author strong {
	color: #333;
	margin-right: 3px;
}

/*------------------------------------------*/
/*	  Full Info Button
/*------------------------------------------*/

#full-about-info {
	margin-top: 70px;
}

#full-about-info h3 {
	color: #222;
	font-weight: 300;
}

#full-about-info a {
	background-color: #6FC04C;
	color: #fff;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	-webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
	margin-left: 8px;
	padding: 6px 12px;
}

#full-about-info a:hover {
	background-color: #3071a9;
}
 


/* ==========================================================================
   05. FEATURES
   ========================================================================== */
 
#features {
	padding-top: 60px;
	padding-bottom: 30px;
}

/*------------------------------------------*/
/*	  Feature Box
/*------------------------------------------*/

.feature-box {
	margin-bottom: 50px;
	padding-left: 5px;
	padding-right: 5px;
}

/*------------------------------------------*/
/*	  Feature Box Icon
/*------------------------------------------*/

.feature-box-icon {
    
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0px;
    top: 10px;
    border-radius: 30px;
    
    line-height: 60px;
    text-align: center;
    font-size: 30px;
}

/*------------------------------------------*/
/*	  Feature Box Content
/*------------------------------------------*/

.feature-box-content {
	padding-left: 70px;
}

.feature-box-content h4 {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
}


 
/* ==========================================================================
   06. FAQs
   ========================================================================== */
 
#faq {
	padding-top: 60px;
	padding-bottom: 50px;
	border-bottom: 1px solid #cfcfcf;
}

/*------------------------------------------*/
/*	  FAQs Titlebar
/*------------------------------------------*/

#faq .titlebar {
	margin-bottom: 30px;
}

/*------------------------------------------*/
/*	  FAQs Question
/*------------------------------------------*/

.question {
	margin-bottom: 20px;
}
  
.question h4 {
	font-weight: 600;
}

.question p {
	color: #666;
	font-family: 'Lato', sans-serif;
}



/* ==========================================================================
   07. PRICING 
   ========================================================================== */

#pricing {
	padding-top: 0px;
	padding-bottom: 30px;
} 

#pricing-table-holder {
	/* adding: 0 30px;  */
}

#price_1, #price_2, #price_3 {
	margin-bottom: 50px;
}

.pricing-table {
	border: 1px solid #cfcfcf;
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
background-color:white;
margin-top:15px;
}

/*------------------------------------------*/
/*	  Pricing Table Header
/*------------------------------------------*/

.pricing-table .price-header {
	border-bottom: 1px solid #cfcfcf;
	position: relative;
}

.pricing-table .plan-title {
	color: #333;
	font-size: 19px;
	font-weight: 300;
	text-transform: uppercase;
    padding: 27px 0px;
    margin: 0;
	-webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;	
}

/*------------------------------------------*/
/*	  Pricing Table Price Plan
/*------------------------------------------*/

.pricing-table .plan-price {
     background-color: #f3f3f3;
    border-top: 1px solid #cfcfcf;
    line-height: normal;
    margin: 0;
    padding: 8px;
    transition: all 250ms ease-in-out 0s;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	
}

.pricing-table .plan-price h2 {
	color:  #222;
	font-size: 23px;
	font-weight: 400;
	margin-bottom: 0;
}

.pricing-table .plan-price span {
	color: #999;
	font-weight: 700;
	text-transform: uppercase;
}

/*------------------------------------------*/
/*	  Pricing Table Body
/*------------------------------------------*/

.pricing-table ul.features {
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
    padding: 5px 5px;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.pricing-table ul.features li {
    border-top: 1px solid #e7e7e7;
    padding: 9px 5px; 
    height:46px;
}

.pricing-table ul.features li:nth-child(1),
.pricing-table.featured ul.features li:nth-child(1) {
    border: none;
}

/*------------------------------------------*/
/*	  Pricing Table Footer
/*------------------------------------------*/

.pricing-table .price-footer {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #e7e7e7;
	-webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

/*------------------------------------------*/
/*	  Featured Table
/*------------------------------------------*/

.pricing-table.featured .price-header {
	border-bottom: 1px solid #6FC04C;
}

.pricing-table.featured .plan-title {
	background-color: #6FC04C;
	color: #f7f7f7;
}

.pricing-table.featured .plan-price {
	background-color: #6FC04C;
	color: #f7f7f7;
	border-top: 1px solid #2f689a;
}

.pricing-table.featured .plan-price h2,
.pricing-table.featured .plan-price span { 
		color: #f7f7f7;
}



/* ==========================================================================
   08. BLOG
   ========================================================================== */ 

#addons {
	padding-top: 60px;
	border-top: 1px solid #ddd;
}

#addon a:focus {
	color: #333;
}
     
/*------------------------------------------*/
/*	  Blog Post Titlebar
/*------------------------------------------*/ 

.addon-post-titlebar h4 {
	line-height: 24px;
	font-weight: 700;
}

.addon-post-titlebar a {
	color: #333;	
}

.addon-post-titlebar a:hover {
	color: #6FC04C;
}

/*------------------------------------------*/
/*	  Blog Post Description
/*------------------------------------------*/ 

.addon-post-desc {
	color: #666;
	font-family: 'Lato', sans-serif;
	margin-bottom: 15px;
}

/*------------------------------------------*/
/*	  Blog Post Meta
/*------------------------------------------*/ 

.addon-post-info {
	padding-bottom: 70px;
	color: #333;
	font-size: 13px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
}

/*------------------------------------------*/
/*	  Blog Video Post Settings
/*------------------------------------------*/ 

.addon-video-block {
	position: relative;
	padding-bottom: 65.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.addon-video-block iframe,
.addon-video-block object,
.addon-video-block embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border:0;
}

/*------------------------------------------*/
/*	  All Posts Button
/*------------------------------------------*/ 

#all-posts {
	margin-bottom: 60px;
}

#all-posts h3 {
	color: #222;
	font-weight: 300;
}

#all-posts a {
	background-color: #6FC04C;
	color: #fff;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	-webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
	margin-left: 8px;
	padding: 6px 12px;
}

#all-posts a:hover {
	background-color: #3071a9;
}


 
/* ==========================================================================
   09. CLIENTS
   ========================================================================== */
 
#clients {
	padding-top: 60px;
	padding-bottom: 80px;
	border-top: 1px solid #ddd;
}	

#clients-titlebar {
	position: relative;
}	

/*------------------------------------------*/
/*	 Clients Carousel Navigation
/*------------------------------------------*/

.customNavigation {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 10px;
}

.customNavigation .btn {
	padding: 4px 10px;
}

.customNavigation i {
	font-size: 20px;
	color: #fff;
}


/* ==========================================================================
   10.1 CALL TO ACTION
   ========================================================================== */

#call-to-pricing { 
	background-image: url(../images/pricing.png); 

}

#icall-to-pricing { 
	background-image: url(../img/ecommerce-development-features.png); 
}

#h1call-to-pricing { 
	background-image: url(../img/h1banner.png); 
       
}
#h1call-to-pricing {
	padding-top: 20px;
	padding-bottom: 10px;
        margin-top:100px;
}




#h1call-to-pricing h1 {
	    color: #333;
    font-size: 38px;
    font-weight: 300;
    padding: 0 15%;
    margin-bottom: 15px;
}
#h1call-to-pricing h3 {
	color: #333;
	font-size: 20px;
	font-weight: 300;
	padding: 0 2%;
	margin-bottom: 15px;
}

#call-to-pricing {
	padding-top: 200px;
	padding-bottom: 200px;
}
#icall-to-pricing {
	padding-top: 100px;
	padding-bottom: 100px;
}

#call-to-pricing h1 {
	 color: #333;
    font-size: 38px;
    font-weight: 300;
    padding: 0 15%;
    margin-bottom: 15px;
}

#call-to-pricing p {
	color: #fff;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	padding: 0 10%;
	margin-bottom: 30px;
}
.parallaxprice {
	background-attachment: fixed !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}


/* ==========================================================================
   10.2 CALL TO portfolio 
   ========================================================================== */

#call-to-portfolio { 
	background-image: url(../images/portfolio.png); 

}

#icall-to-portfolio { 
	background-image: url(../img/ecommerce-development-features.png); 
}

#h1call-to-portfolio { 
	background-image: url(../img/h1banner.png); 
       
}
#h1call-to-portfolio {
	padding-top: 20px;
	padding-bottom: 10px;
        margin-top:100px;
}




#h1call-to-portfolio h1 {
	    color: #333;
    font-size: 38px;
    font-weight: 300;
    padding: 0 15%;
    margin-bottom: 15px;
}
#h1call-to-portfolio h3 {
	color: #333;
	font-size: 18px;
	font-weight: 300;
	padding: 0 2%;
	margin-bottom: 15px;
}

#call-to-portfolio {
	padding-top: 200px;
	padding-bottom: 300px;
}
#icall-to-portfolio {
	padding-top: 100px;
	padding-bottom: 100px;
}

#call-to-portfolio h1 {
	 color: #333;
    font-size: 24px;
    font-weight: 300;
    padding: 0 15%;
    margin-bottom: 15px;
}

#call-to-portfolio p {
	color: #fff;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	padding: 0 10%;
	margin-bottom: 30px;
}
.parallaxportfolio {
	background-attachment: fixed !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}



/* ==========================================================================
   10. CALL TO ACTION
   ========================================================================== */
#h1call-to-action {
	padding-top: 20px;
	padding-bottom: 10px;
        margin-top:100px;
}
#h1call-to-action h1 {
	color: #fff;
	font-size: 38px;
	font-weight: 400;
	padding: 0 2%;
        margin: 0 !important;
}
#h1call-to-action h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	padding: 0 2%;
	margin-bottom: 15px;
}

#call-to-action {
	padding-top: 100px;
	padding-bottom: 100px;
}
#icall-to-action {
	padding-top: 100px;
	padding-bottom: 100px;
}

#call-to-action h1 {
	color: #fff;
	font-size: 38px;
	font-weight: 300;
	padding: 0 15%;
	margin-bottom: 15px;
}

#call-to-action p {
	color: #fff;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	padding: 0 10%;
	margin-bottom: 30px;
}


   

.foo_social {
    width: 40px;
    height: 40px;
	text-align: center;
	color: #1A1E23;
	font-size: 20px;
    line-height: 40px;
	margin: 0 5px;
	background-color: #999;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    text-decoration: none;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

/*------------------------------------------*/
/*	 Footer Icons Hover 
/*------------------------------------------*/

.ico-facebook:hover {background-color: #3b5998;color: #f8f8f8;}
.ico-twitter:hover {background-color: #00a9ed;color: #f8f8f8;}
.ico-google-plus:hover {background-color: #cd1111;color: #f8f8f8;}
.ico-linkedin:hover {background-color: #015886;color: #f8f8f8;}
.ico-dribbble:hover {background-color: #d92d84;color: #f8f8f8;}
.ico-instagram:hover {background-color: #beb3a8;color: #f8f8f8;}
.ico-pinterest:hover {background-color: #ac281a;color: #f8f8f8;}
.ico-dropbox:hover {background-color: #008ad2;color: #f8f8f8;}
.ico-skype:hover {background-color: #00a9ed;color: #f8f8f8;}
.ico-youtube:hover {background-color: #cd1b20;color: #f8f8f8;}
.ico-tumblr:hover {background-color: #3a5976;color: #f8f8f8;}
.ico-vimeo:hover {background-color: #00adee;color: #f8f8f8;}
.ico-flickr:hover {background-color: #d2d2d2;color: #f8f8f8;}
.ico-github:hover {background-color: #222;color: #f8f8f8;}
.ico-renren:hover {background-color: #364a83;color: #f8f8f8;}
.ico-vk:hover {background-color: #3b5998;color: #f8f8f8;}
.ico-xing:hover {background-color: #015f5e;color: #f8f8f8;}
.ico-weibo:hover {background-color: #be4443;color: #f8f8f8;}
.ico-rss:hover {background-color: #ff6600;color: #f8f8f8;}

/*------------------------------------------*/
/*	 Footer Newsletter Form
/*------------------------------------------*/

.subscribe-form {
	margin: 5px auto 0;
    position: relative;
    z-index: 10;
	width: 90%;
}

#newsletter_form p {
	color: #666;
	font-size: 13px;
	line-height: 16px;
	font-family: 'Lato', sans-serif;
	text-align: center;
	margin-top: 10px;
}

#newsletter_form p span {
	color: #6FC04C;
}

.subscribe-input {
	width: 68%;
    height: 30px;
	background-color: #aaa;
	color: #ddd;
	font-size: 14px;
    font-weight: 300;
	padding-left: 10px;
	border: none;
}

.subscribe-submit {
	width: 32%;
	height: 30px;
	background: #383e46;
    color: #fff;
	font-size: 12px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	text-decoration:none;
	text-transform: uppercase;
	text-align:center;
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    border:none;
    cursor: pointer;
    outline: 0;
	box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2) inset, 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

.subscribe-submit:active {
    outline: 0;
}

.subscribe-submit:hover {
	background: #6FC04C;
}


 
/* ==========================================================================
   12. SCROLL TO TOP
   ========================================================================== */

#scrollUp {
	display: none;
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-image: url(../img/icons/back-to-top.png);
	background-repeat: no-repeat;
	background-position: 50% 48%;
	background-color:rgba(123, 123, 123, 0.65);	
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
	-webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	transition: all 250ms linear;	
}

#scrollUp:hover {
	background-color: rgba(66, 139, 202, 0.95);
}

nav a#pull {  
    display: none;  
}
 


/* ==========================================================================
   13. CONTACT FORM RESPONSE PAGE   
   ========================================================================== */
   
#form_response {
	margin: 50px auto; 
}

#form_response .img-responsive { display: inline-block; }

#form_response h1 {
	font-size: 40px; 
	font-weight: 700;
	margin-top: 10px;
}

#form_response p {
	font-size: 18px; 
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	margin-bottom: 20px;
}



/* ==========================================================================
   14. BREADCRUMB 
   ========================================================================== */

#breadcrumb-wrapper {
	background: url(../img/thumbs/breadcrumb_bg.jpg) 50% 50%; 
}

.breadcrumb {
	background: transparent;
	color: #fff;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
	padding: 20px 0;
}

.breadcrumb > li {
	display: inline-block;
	line-height: 60px;
	text-shadow:none;
}

.breadcrumb > li + li:before {
    color: #fff;
}

.breadcrumb > li a {
	color: #fff;	
	font-size: 24px;
	font-weight: 700;
}

.breadcrumb > li a:hover {
	color: #444;
	text-decoration: none;
}

.breadcrumb > .active {
	color: #fff !important;
}



/* ==========================================================================
   15. WHAT WE DO
   ========================================================================== */
   
#what-we-do {
	padding-top: 40px;
	border-bottom: 1px solid #cfcfcf;	
}

/*------------------------------------------*/
/*	 Service List
/*------------------------------------------*/

#service-list {
	margin-top: 20px;
}

/*------------------------------------------*/
/*	 Service Box
/*------------------------------------------*/

.service-box {
	margin-bottom: 30px;
} 

.service-box-title {
	margin-bottom: 15px;
}

.service-box-icon {
    color: #FFF;
    background-color: #6FC04C;
    background-repeat: no-repeat;
	float: left;
    display: block;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: all 0.2s linear 0s;
}

.service-box-title h4 {
    float: left;
    font-weight: 700;
    line-height: 50px;
	margin-bottom: 0;
}



/* ==========================================================================
   16. OUR SKILLS
   ========================================================================== */
   
#our-skills {
	background-color: #f0f0f0;
	border-bottom: 1px solid #cfcfcf;
	padding-top: 60px;
	padding-bottom: 80px;
}

/*------------------------------------------*/
/*	 Progress Bar
/*------------------------------------------*/

.progress {
	background: #e0e0e0;
	height: 36px;
	margin-bottom: 15px;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.progress .progress-bar:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-top: 36px solid transparent;
	border-right: 20px solid #e0e0e0;
}

.progress-bar {
	background: #6FC04C;
	height: 36px;
	position: relative;
	font-size: 14px;
	font-weight: 700;
	font-weight: 700;
	line-height: 36px;
	text-align: right;
	overflow: hidden;
	padding: 0 20px;
}

.progress-label {
	color: #fff;
	float: left;
}



/* ==========================================================================
   17. TEAM
   ========================================================================== */
   
#team {
	padding-top: 60px;
	padding-bottom: 10px;
}

.team-member {
	text-align: center;
	margin-bottom: 50px;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

/*------------------------------------------*/
/*	  Team Member Photo
/*------------------------------------------*/

.img-block { 
	margin: 10px 10px 20px 10px;
}

.img-block img {
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
	box-shadow: 0px 0px 0px 0 rgba(10, 10, 10, 0.15);
	opacity: 1;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

/*------------------------------------------*/
/*	  Team Member Photo Hover
/*------------------------------------------*/

.team-member:hover .img-block img {
	box-shadow: 0px 0px 0px 10px rgba(10, 10, 10, 0.15);
	opacity: .85;
}

/*------------------------------------------*/
/*	  Team Member Meta
/*------------------------------------------*/

.team-img-meta h4 {
	font-weight: 700;
	margin-bottom: 5px;
}

.team-img-meta p {
	color: #6FC04C;
	font-size: 16px;
	margin-bottom: 5px;
	padding: 0 15%;
}

p.member-info {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 20px;
	padding: 0 5%;
}

/*------------------------------------------*/
/*	  Team Member Social Icons 
/*------------------------------------------*/

.team-member-socials {
	text-align: right;
	display: inline-block;
	margin: 0 auto;
}

.team-member-socials li {
	float: left;
    display: inline-block !important;
    vertical-align: top;
    width: auto !important;
    clear: none !important;
}

.page_social {
    width: 40px;
    height: 40px;
	color: #aaa;
	font-size: 14px; 
    text-align: center;
    line-height: 40px;
    display: block;
    text-decoration: none;
	margin: 0 3px 5px;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}



/* ==========================================================================
   18. STATISTIC BANNER
   ========================================================================== */

#statistic-holder {
	padding-top: 40px;
	padding-bottom: 80px;
} 
 
/*------------------------------------------*/
/*	  Statistic Banner Titlebar
/*------------------------------------------*/ 

#statistic-banner .titlebar {
	margin-top: 70px;
	margin-bottom: 0;
}

#statistic-banner .titlebar h1 {
	color: #fff;
	font-weight: 400;
}

/*------------------------------------------*/
/*	  Statistic Banner Content
/*------------------------------------------*/ 

.statistic-block {
	text-align: center;
}

.statistic-icon {
	color: #fff;
	font-size: 60px;
	font-family: 'Lato', sans-serif;
	line-height: 60px;	
}

.statistic-number {
	color: #fff;
	font-size: 80px;
	font-family: 'Lato', sans-serif;
	line-height: 90px;
	font-weight: 700;
}

.statistic-text {
	color: #fff;
	font-size: 26px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}
 


/* ==========================================================================
   19. RIGHT SIDEBAR 
   ========================================================================== */   

#sidebar-right h4 {
	font-weight: 600;
	margin-bottom: 15px;
}

#sidebar-right .col-xs-12 {
	margin-bottom: 60px;
}

/*------------------------------------------*/
/*	 Blog Page Search Form
/*------------------------------------------*/

.form-control {
    color: #666;
    box-shadow: none;
}

.search-btn {
    background-color: #6FC04C;
    border-color: #3071a9;
    color: #fff;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

.search-btn:hover {
	background-color: #3071a9;
    border-color: #3071a9;
	color: #fff;
}

.input-group input[type="text"]:focus {
	color: #444;
	border-color: rgba(219, 79, 57, .35);
	outline: 0;
	-webkit-box-shadow: none;
    box-shadow: none;
}

/*------------------------------------------*/
/*	 Blog Categories / Blog Archive
/*------------------------------------------*/

ul.addon-category-list,
ul.addon-archive-list {
	padding: 5px 0 0;
}

ul.addon-category-list li i,
ul.addon-archive-list li i {
	color: #6FC04C;
	font-weight: 900;
	margin-right: 8px;
}

ul.addon-category-list > li,
ul.addon-archive-list > li {
	padding: 8px 0;
	border-bottom: 1px dashed #c0c0c0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;	
}

ul.addon-category-list > li:first-child,
ul.addon-archive-list > li:first-child {
	padding: 0 0 8px;
}

ul.addon-category-list > li:last-child,
ul.addon-archive-list > li:last-child {
	padding: 8px 0 0;
	border-bottom: none;
}

ul.addon-category-list > li a,
ul.addon-archive-list > li a,
ul.addon-category-list > li span,
ul.addon-archive-list > li span {
	color: #333;
	font-size: 15px;
	font-family: 'Lato', sans-serif;
}

ul.addon-category-list li a:hover,
ul.addon-archive-list > li a:hover {
	color: #6FC04C;
	text-decoration: none;
}

/*------------------------------------------*/
/*	 Blog Page Popular Posts
/*------------------------------------------*/

.popular-posts li { 
	padding: 10px 0;
	border-bottom: 1px dashed #c0c0c0;
}

.popular-posts li:first-child {
	padding: 0 0 10px;
}

.popular-posts li:last-child {
	padding: 10px 0 0;
	border-bottom: 0; 
}

/* Popular Post Summary
----------------------------------*/

.post-summary a { 
	color: #333;
	font-size: 14px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}

.popular-posts .post-summary a:hover { 
	color: #6FC04C;
}

/* Popular Post Meta
----------------------------------*/
.popular-posts p { 
	color: #6FC04C;	
	font-size: 13px;
	font-family: 'Lato', sans-serif;
	font-weight: 600;
	margin: 4px 0;
}

/*------------------------------------------*/
/*	 Blog Page Popular Tags
/*------------------------------------------*/

.badge {
    font-size: 11px;
	font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #fff;
	border: 1px solid #6FC04C;
	background-color: #6FC04C;
    border-radius: 0px;
	margin-bottom: 5px;
	padding: 3px 6px;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;	
}

.badge a {
	color: #fff!important;
	font-size: 11px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1.42857;
}

.badge:hover {
	background-color: #3071a9;
	border-color: #3071a9;
    color: #fff;
}

.badge:hover a {
	color: #fff!important;
}

/*------------------------------------------*/
/*	 Blog Page Text Widget
/*------------------------------------------*/

#text-widget p {
	font-size: 14px;
	font-family: 'Lato', sans-serif;
}



/* ==========================================================================
   20. BLOG PAGE
   ========================================================================== */

#addon-page-wrapper, 
#single-post-wrapper {
	margin-top: 68px;
}

#addon-page {
	margin-top: 60px;
	margin-bottom: 40px;
}

#single-post-page {
	margin-top: 60px;
	margin-bottom: 10px;
}
   
#addon-large article {
	margin: 0 45px 60px 0;
	padding-bottom: 40px;
	border-bottom: 1px dashed #aaa;
}

.post-large .video-block {
	margin-top: 0px;
}

/*------------------------------------------*/
/*	 Blog Page Post Heading
/*------------------------------------------*/

.addon-item h3, .single-post h3 {
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 5px;
}

.addon-item.text h3, .single-post.text h3 {
	margin-top: 0;
}

/*------------------------------------------*/
/*	 Blog Page Post Meta
/*------------------------------------------*/

.post-meta {
	margin-bottom: 20px;
}

ul.post-meta-list li {
	color: #666;
	font-size: 15px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	float: left;
	margin-right: 8px;
}

ul.post-meta-list li a, 
.post-content a {
	color: #6FC04C;
	font-size: 14px;
	font-weight: 600;
	text-decoration: underline;
}

ul.post-meta-list li a:hover, 
.post-content a:hover {
	color: #3071a9;
	text-decoration: none;
}

/*------------------------------------------*/
/*	 Blog Page Flexslider
/*------------------------------------------*/

.addon-img-slider .slides {
	margin: 0;
}

/*------------------------------------------*/
/*	 Audio Content Settings
/*------------------------------------------*/ 

.audio-block iframe {
	width: 100%;
	height: 166px;
	border:0;
	border-radius: 0px 0px 0px 0px;
}

/*------------------------------------------*/
/*	 Blog Page Pagination
/*------------------------------------------*/

.pagination {
	margin-top: 0;
}

.pagination > li > a {
	background-color: transparent;
	border: 1px solid #ccc;
	color: #999;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 500;
	padding: 7px 12px;
	margin-left: 5px;
}

.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999;
  cursor: not-allowed;
  background-color: #e8e8e8;
  border-color: #ccc;
}

.pagination > li:first-child > a {
  margin-left: 0;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}

.pagination > li:last-child > a {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.pagination > li > a:hover {
	background-color: #6FC04C;
	border-color: #6FC04C;
	color: #fff;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover {
	background-color: #3071a9;
	border-color: #3071a9;
	color: #fff;
	z-index: 2;
	cursor: default;
}


/* ==========================================================================
   21. SINGLE POST PAGE
   ========================================================================== */
  
#single-post article {
	margin: 0 45px 50px 0;
}

/*------------------------------------------*/
/*	 Single Post  Label 
/*------------------------------------------*/

.post-label {
	margin: 30px 0 40px;
	padding: 25px 0 20px;
	border-top:1px dashed #ddd;
	border-bottom:1px dashed #ddd;
}

.tags-label,
.social_label {
	color: #151515;
	font-size: 16px; 
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	float: left;
	margin-right: 15px;
}

.social_label {
	line-height: 36px;
}

/*------------------------------------------*/
/*	 Single Post Tags 
/*------------------------------------------*/

.post-tags-list {
	margin: 0px 0 10px;
}

.post-tags-list span a {
	color: #666;
	font-size: 15px;
	font-family: 'Lato', sans-serif;
	margin-right: 5px;
}

.post-tags-list span a:hover {
	color: #6FC04C;
}

/*------------------------------------------*/
/*	 Single Post Social
/*------------------------------------------*/

.share-links ul li {
	float: left;
    display: inline-block !important;
    vertical-align: top;
    width: auto !important;
    clear: none !important;
}

.post_social {
    width: 36px;
    height: 36px;
	color: #888;
	font-size: 15px;
    text-align: center;
    line-height: 36px;
    display: block;
	margin-right: 5px;
    text-decoration: none;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

/*------------------------------------------*/
/*	 Single Post Navigation
/*------------------------------------------*/

.post-nav {
	margin-bottom: 40px;
	padding: 20px 15px;
	background-color: #f0f0f0;
}

.post-nav span {
	color: #6FC04C;
	display: block;
	font-size: 14px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
}

.post-nav div {
    display: inline-block;
    position: relative;
    color: #999;
}

.post-nav div.post-next {
	text-align: right;
}

.post-nav div a {	
	color: #333;
	font-size: 13px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	text-decoration: underline;
}

.post-nav div a:hover {
	color: #6FC04C;
}

/*------------------------------------------*/
/*	 Single Post Comments
/*------------------------------------------*/

#post_comments {
	margin-bottom: 40px;
}

#post_comments h3, #form_holder h3 {
	margin-bottom: 20px;
}

.post-comments p {
	color: #ccc;
	margin-bottom: 20px;
}

.comment {
    position: relative;
    padding-top: 20px;
	border-top: 1px dashed #aaa;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    float: left;
    overflow: hidden;
}

.comment-content {
    margin-left: 79px;
	margin-bottom: 20px;
}

.comment-meta {
    margin-bottom: 10px;
}

.comment-name {
	color: #333;
	margin: 0;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	text-decoration:none;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.comment-name:hover {
	color: #6FC04C;
}

.comment-date {
	color: #666;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
    margin-bottom: 5px;
}

.btn-reply a {
	background-color: #6FC04C;
	color:  #f8f8f8;
	font-size: 12px;	
	font-family: 'Lato', sans-serif;
	font-weight: 500;
	padding: 2px 4px;	
	text-transform: uppercase;
	-moz-border-radius: 2px;
	-webkit-border-radius:2px;
	border-radius:2px;
}

.btn-reply a:hover {
	background-color: #444;
}

.comment-reply {
    margin-left: 40px;
}

/*------------------------------------------*/
/*	  Comment Form Input
/*------------------------------------------*/

#comment-form {
	margin-top: 30px;
}

#comment-form .form-control {
	height: 40px;
	font-size: 14px;
	margin-bottom: 15px;
	border: 1px solid #bbb;
}

#comment-form textarea {
	min-height:180px;
}

/*------------------------------------------*/
/*	  Contact Form Input Focus
/*------------------------------------------*/

.form-control:focus {
    outline: 0px none;
    box-shadow: none;
}

/*------------------------------------------*/
/*	  Contact Form Submit Button
/*------------------------------------------*/

#form_btn {
	margin-top: 20px;
}

/*------------------------------------------*/
/*	  NAV contact bar
/*------------------------------------------*/
/*------ header top bar ------- */
#topbar { border-bottom: 0px solid #515151;
    height: 32px;
    padding-top: 2px;
background-color: rgba(0, 0, 0, 0.5); }

#topbar address { display: inline-block; float: left; margin: 0; }

#topbar address .tel { background: none repeat scroll 0 0 transparent; margin: 3px 0; padding-left: 0; }

#topbar address a.email { background: none repeat scroll 0 0 transparent; margin: 5px 0; padding-left: 0; text-decoration: none; }

#topbar .vcard span, #topbar .vcard a { color: white; display: inline-block; font-size: 14px; font-weight: normal; line-height: 10px; padding-right: 15px; width: auto; }





/* ==========================================================================
   09. Preloader & Portfolio
   ========================================================================== */     

#wt_loader {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	background-color: #ffffff;
	z-index: 99999; }
.wt_loader_html {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	margin: -100px 0 0 -100px;
	background-image: url("../img/loader.gif");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 70px 70px; } 

/* Portfolio
   ------------------------------------------------- */	
.wt_portofolio_container {
	height: 100%;
    width: 100%;
	position: relative;
	overflow: hidden; }
.wt_portofolio_details {
	padding: 25px 10px;
	text-align: center;
	background: #fff; }
.wt_portfolio_overlay .wt_portofolio_details {
	color: #ffffff;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 40px 10px;
	opacity: 0;
    filter: alpha(opacity=00);
	background: rgba(10, 10, 10, 0.65); }
.wt_portfolio_overlay .wt_portofolio_container:hover .wt_portofolio_details {
	opacity: 1;
    filter: alpha(opacity=100); }

/* ----- Portfolio Overlay Title ----- */
.wt_portofolio_details h4 {
	font-size: 20px;
	font-weight: 300;
	text-align: center;
	margin-bottom: 0px;
	-webkit-transition: all 300ms ease-in-out;
	  -moz-transition: all 300ms ease-in-out;
	    -o-transition: all 300ms ease-in-out;
	      -ms-transition: all 300ms ease-in-out;
	        transition: all 300ms ease-in-out; }
.wt_portfolio_overlay .wt_portofolio_details h4 {
	width: 100%;
	font-size: 24px;	
	position: absolute;
	bottom: -10%;
	margin: 0 0 10px -10px; }
.wt_portfolio_overlay .wt_portofolio_container:hover h4 {
	bottom: 20%; }
.wt_portfolio_overlay h4 a {
	color: #f8f8f8; }
.wt_portfolio_overlay h4 a:hover {
	color: #f8f8f8;
	color: rgba(248, 248, 248, 0.85); }
	
/* ----- Portfolio Overlay Details ----- */
.wt_portofolio_det {
	text-align: center;
	margin: 5px 0 0;
	-webkit-transition: all 300ms ease-in-out;
	  -moz-transition: all 300ms ease-in-out;
	    -o-transition: all 300ms ease-in-out;
	      -ms-transition: all 300ms ease-in-out;
	        transition: all 300ms ease-in-out; }
.wt_portfolio_overlay .wt_portofolio_det {
	width: 100%;	
	position: absolute;
	bottom: -10%;
	margin: 0 0 0 -10px; }
.wt_portfolio_overlay .wt_portofolio_container:hover .wt_portofolio_det {
	bottom: 20%; }
.wt_portofolio_details .wt_portfolioCategory {
    font-size: 16px;
	font-style: italic;
	margin: 0; }
.wt_portfolio_overlay .wt_portofolio_details .wt_portfolioCategory {
    font-size: 18px;
	font-weight: 700;
	font-style: normal;
    text-transform: uppercase; }
.wt_portofolio_det :last-child,
.wt_portf_readmore {
	margin-bottom: 0; }
.wt_portf_readmore {
	margin-top: 10px; }
.wt_portfolio_overlay .wt_portf_readmore a {
	color: #fff; }
.wt_portfolio_overlay .wt_portf_readmore a:hover {
	color: #fff;
	color: rgba(255, 255, 255, 0.85); }
.wt_portfolio_excerpt {
	color: #737373;
	font-size: 13.5px;
	margin-top: 15px; }
.wt_portfolio_overlay .wt_portfolio_excerpt {
	color: #fff; }

/* ----- Portfolio Overlay Icon ----- */
.wt_icon_lightbox {
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	color: #fff;
	background-color: #6FC04C;
	text-align: center;
	position: absolute;
	top: -50%;
	left: 50%;
	border-radius: 50%;
	margin-top: -25px;
	margin-left:  -25px;
	-webkit-transition: all ease 400ms ease-in-out;
	  -moz-transition: all ease 400ms ease-in-out;
	    -ms-transition: all ease 400ms ease-in-out;
	      -o-transition: all ease 400ms ease-in-out;
	        transition: all ease 400ms ease-in-out; }
.wt_icon_lightbox i {
    color: #fff !important; }
.wt_icon_lightbox:hover {
	background-color: #3071a9; }
.wt_portofolio_container:hover .wt_icon_lightbox{
	top: 50%; }
.wt_portfolio_overlay .wt_portofolio_container:hover .wt_icon_lightbox {
	top: 40%; }
			
.sortableLinks {
	padding: 0 15px;
	margin: 40px auto 40px;
	text-align: center;
    overflow: hidden; }
.wt_portfolio_row .sortableLinks {
	margin-top: 0; }
.sortableLinks a {
    color: #aaa !important;
    background: none;
    font-size: 11px;
    text-transform: uppercase;
    padding: 10px 14px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.15em;
    font-weight: 300;
	margin: 5px 5px 5px 0;
    text-decoration: none !important;
	border: 1px solid #bdbdbd;
	-webkit-border-radius: 3px;
	  -moz-border-radius: 3px;
		border-radius: 3px; }
.sortableLinks a:last-child {
	margin-right: 0; }
.sortableLinks a:hover,
.sortableLinks a.selected {
    background:  #6FC04C;
    color: #fff !important;
	border-color: transparent; }
.wt_portfolio_wrapper {
    width: 108%;
    overflow: hidden;
    position: relative; }
.wt_portfolio_wrapper article,
.wt_portfolio_wrapper_carousel article {
    float: left;
    overflow: hidden;
    position: relative; }
.wt_portfolio_wrapper.wt_portfolio_2 article {
    width: 50%; }
.wt_portfolio_wrapper.wt_portfolio_3 article {
    width: 23.3%; }
.wt_portfolio_wrapper.wt_portfolio_4 article {
    width: 25%; }
.wt_portfolio_wrapper.wt_portfolio_5 article {
    width: 20%; }
.wt_portfolio_wrapper.wt_portfolio_6 article {
    width: 16.6%; }

/*	Commented since new version of Isotope

.wt_portfolio_wrapper.wt_isotope.wt_portfolio_2 article {
    width: 49.9%; }
.wt_portfolio_wrapper.wt_isotope.wt_portfolio_4 article {
    width: 24.98%; }
*/

.wt_portfolio_row {
	height: auto !important; }
.wt_portfolio_wrapper.wt_grid_spaces {
	margin-top: -15px; }
.wt_portfolio_wrapper.wt_grid_spaces article {
	padding: 15px; }
	
.wt_portfolio_wrapper article img,
.wt_portfolio_wrapper article .wt_portofolio_details,
.wt_portfolio_wrapper article .wt_image_overlay,
.wt_portfolio_wrapper_carousel article img,
.wt_portfolio_wrapper_carousel article .wt_portofolio_details,
.wt_portfolio_wrapper_carousel article .wt_image_overlay  {
	-moz-transition: all 400ms ease-in-out;
	  -webkit-transition: all 400ms ease-in-out;
	    -o-transition: all 400ms ease-in-out;
	      transition: all 400ms ease-in-out; }
.wt_portfolio_wrapper article img,
.wt_portofolio_container,
.wt_portfolio_wrapper .wt_image_frame,
.wt_portfolio_wrapper .wt_image_holder {
    width: 100%; }
.wt_portfolio_wrapper .wt_image_frame {
	overflow: hidden; } 
.wt_portfolio_wrapper .wt_portofolio_container:hover img {
    -moz-transform: rotate(0deg) scale(1.3);
      -ms-transform: rotate(0deg) scale(1.3);
    	-webkit-transform: rotate(0deg) scale(1.3);
    	  transform: rotate(0deg) scale(1.3); }
.wt_portfolio_no_overlay .wt_image_overlay {
	position: absolute;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
    filter: alpha(opacity=00);
	background: rgba(10, 10, 10, 0.65); }
.wt_portfolio_no_overlay .wt_portofolio_container:hover .wt_image_overlay {
	opacity: 1;
    filter: alpha(opacity=100); }
.single-wt_portfolio .portEntry_title {
	margin-bottom: 15px;
	font-weight: 900; }	
.single-wt_portfolio .portEntry_content {
	border: 1px dashed #c0c0c0;
	border-top: none; }
.portEntry_content {
	padding: 20px; }



/*----------------------------- v6 ------------------- */

.submen a
{
line-height: 25px;
}

.cnt223 .x {
    float: right;
    height: 36px;
    left: 0;
    position: relative;
    top: 0;
    width: auto;
}
.custom-section-container{
    padding: 20px 0 10px 0;
    color: #FFF;
    position: relative;
}
.custom-section-container .container:before{
    content: "\f0c0";
    font-family: "FontAwesome";
    position: absolute;
    font-size: 15em;
    opacity: .2;
    left: -30px;
    top: -20px;
}
.custom-section-container .container{
    padding: 40px 0 35px 0;
}
.custom-section-text, .custom-section-buttons{
    width: 50%;
    float: left;
}
.custom-section-text{
    padding-right: 10%;
    border-right: 1px solid #FFF;
}
.custom-section-text p{
    opacity: .7;
}
.custom-section-text h2{
    margin: 15px 0 15px 0;
}
.custom-section-buttons{
    text-align: right;
    padding-top:50px;
    position: relative;
}
.custom-section-buttons:before{
    /* content: "\f0da"; */
    position: absolute;
    font-family: "FontAwesome";
    left: -0.5px;
    top: 78%;
}

#video-landing {
  height: 700px !importnant;
  position: relative;
  /*overflow-y: hidden;*/
  color: white;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-image:url(https://media.cartin.in/images/cartin.jpg);
  background-size: cover;

}

#video-ae{
  height: 700px ;
  position: relative;
  /*overflow-y: hidden;*/
  color: white;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-image:url(https://media.cartin.in/images/cartin-ae-site.jpg);
      background-size: cover;

}

#video-za{
  height: 700px ;
  position: relative;
  /*overflow-y: hidden;*/
  color: white;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-image:url(https://media.cartin.in/images/cartin-za.jpg);
     background-size: cover;

}
.bgvid {
/*background-image: url("https://media.cartin.in/img/bg.jpg"); */
}

#video-landing video {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -100;
    width:100%;
    background-size: cover;
    transition: 1s opacity;
    top: 0;
    left: 0;
}

#video-landing h1{
    font-size: 3em; 
}


/*------ v6 ------- */ 

.ifeature {
text-align : left;
padding-top: 48px;
}

.ifeature h4 {
color : #6FC04C;
padding-top: 12px;

}

.ifeature i {
color : #6FC04C;
font-size: 27px;
}


.coorgle {
background:url(https://media.cartin.in/images/intro-4.jpg) -70px 50%;margin-top: 4%;
}

.coorgleservice {
background-color: rgba(0,0,0,0.75);
text-align: center;
}


.coorgle h1 {
font-size: 70px;
    color: white;
    padding-top: 38px;
    padding-bottom:6px;
}


@media screen and (min-width: 767px) {
    #thinkcartin {
   /* background: #fff url(https://media.cartin.in/images/cartin-think-cut.jpg)no-repeat right center;
    padding: 80px 0 200px;
    background-size: 56%;*/
}
}


.cartinsupportf h1{
padding-top: 18px;
}



#our-clients h3{
text-align: center;
color:#7b7474;
padding-bottom: 18px;
font-weight:300;
}

#our-clients {
    background-repeat: repeat !important;
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: auto !important;
    background-image: url(https://media.cartin.in/img/footer-com.jpg);
}

#our-clients {
    padding-top: 60px;
    padding-bottom: 35px;
}

.home section {
    overflow: hidden;
}

.light cite, .light blockquote, .light, .light .lead {
    color: #FFFFFF;
}




/* ------------------------------------------------------------------
                ====[ App Description ]====
------------------------------------------------------------------- */
.app-description { padding: 80px 0 80px }
.app-description .heading {
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 0;
}
.app-description .heading h2:before {
    left: 0;
    margin-left: 0;
}
.app-description .heading h2:after {
    left: 0;
    margin-left: 58px;
}
.app-description .ad-mobiles { position: relative }
.app-description .ad-mobiles .ad-frame-one {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.app-description .ad-mobiles .ad-frame-one img {
    height: auto;
    width: 240px;
}
.app-description .ad-mobiles .ad-frame-two {
    position: absolute;
    top: 26px;
    left: 31%;
    z-index: 1;
}
.app-description .ad-mobiles .ad-frame-two img {
    height: auto;
    width: 230px;
}
.app-description .app-description-content p {
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 20px;
}
.app-description .app-description-content p:last-child { margin-bottom: 0 }




.btn-accent {
    color: #fff;
    background-color: #1B99B9;
    border-color: #1887a3;
}
.btn {
    border-radius: 3px;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    text-transform: uppercase;
    padding: 1em 2em;
    font-size: 14px;
    box-shadow: 0 2px 5px -1px rgba(0,0,0,.26);
    display: block;
}

.btn-download, a.btn {
    display: inline-block;
}


/*------ header social icon ------- */
.header-social-icon { display: inline-block; float: right; margin: 2px 0; }

.header-social-icon li { list-style:none; float:right; margin:0px 0 0 5px }

.header-social-icon li .icon { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4); color: #fff; width:22px; height:22px; float:left; font-size: 14px; text-align: center; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3); -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; -webkit-transition:all .3s ease;
-moz-transition:all .3s ease;
-o-transition: all .3s ease;
-ms-transition:all .3s ease;
transition:all .3s ease
}

.header-social-icon li .icon:hover { background-color: #169FE6; }

.galler
{
height: 50px;
    bottom: 221px;
    position: absolute;
    background-position: 50%;

}


.btncallback {
    border-radius: 3px;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    text-transform: uppercase;
    font-size: 11px;
    box-shadow: 0 2px 5px -1px rgba(0,0,0,.26);
    display: block;
    
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}




/*** NS CSS ****


  .mySlides1 {display:none}
        .mySlides2 {display:none}
        /* Slideshow container */
        .slideshow-container {
            max-width: 1000px;
            position: relative;
            margin: auto;
        }
        .slideshow-tab-container{
            position: absolute;
            right: 0%;
            top: 2%;
            padding: 11px;
            padding-right: 0px;
            margin-right: 0;
            width: 70%;

        }
        .slideshow-mob-container{
            position: absolute;
            left: 6%;
            top: 21%;
            width: 22%;
        }
       /* .slideshow-tab-container{
            position: absolute;
            right: 16px;
            top: 10px;
            padding: 88px;
            padding-right: 0px !important;
            padding-top:0px !important;
            margin-right: 0;
            !* width: 500px;*!

        }
        .slideshow-mob-container{
            position: absolute;
            left: 48px;
            top: 93px;
            !*  width: 152px;*!
        }*/

        /* Caption text */
     
       

        /* The dots/bullets/indicators */
        .dot {
            height: 13px;
            width: 13px;
            margin: 0 2px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
        }

        .active {
            background-color: #717171;
        }

        /* Fading animation */
        .fade {
            -webkit-animation-name: fadeInRight ;
            -webkit-animation-duration: 2s;
            animation-name: fadeInRight;
            animation-duration: 2s;

        }

        @-webkit-keyframes fadeInRight {
            from {
                opacity: .5;
                right:-100px;

            }
            to {
                opacity: 1;
                right: 0px;

            }
        }

        @keyframes fadeInRight {
            from {
                opacity: .5;
                right:-100px;
            }
            to {
                opacity: 1;
                right: 0px;
            }
        }

        
        .container-main-img{
            position: relative;
            z-index:123;
        }
        .pad-0{
         padding-right:0px !important;   
        }
        
        .crt-home-1{
                margin-top: -25px;
                margin-right: 19px;
                padding:0px !important;
        }
        
        .crt-home-2{
            margin-top: 35px;
        }

