/* --------------------------------------
=========================================
LandX - Responsive App Landing Page
Version: 1.0 (Initial Release)
Designed By: Mizanur Rahman
=========================================

1. IMPORT CSS

2. GLOBAL STYLES (USED IN VARIOUS SECTION OF THE WEBSITE)
	2.1 GENERAL STYLES
	2.2 PRE LOADER
	2.3 ANCHOR AND BOLD TEXT  

3. COMPONENTS (ELEMNTS USED IN MANY SECTION)
	3.1 BACKGROUND COLORS AND LINE
	3.2 TYPOGRAPHY
	3.3 BUTTONS

4. SECTION STYLES AND COMPONENTS
	4.1 SECTIONS PADDING AND COLOR OVERLAY

	4.2 SECTION: HOME
		4.2.1 BASIC STYLES
		4.2.2 NAVIGATION 
		4.2.3 FEATURE LIST 
		4.2.4 VERTICAL REGISTRATION FORM

	4.3 SECTION: WITH LEFT / RIGHT SCREENSHOT
		4.3.1 BASIC STYLES   
		4.3.2 FEATURE LIST    

	4.4 SECTION: FEATURES 

	4.5 SECTION: PRICING TABLE 

	4.6 SECTION: VIDEO   
		4.6.1 BASIC STYLE / RESET
		4.6.2 VIDEO FEATURES 

	4.7 SECTION: SCREENSHOTS 
	
	4.8 SECTION: CLIENTS AND FEEDBACKS
		4.8.1 CLIENTS LOGO 
		4.8.2 FEEDBACKS

	4.9 SECTION: CALL TO ACTION
		4.9.1 CALL TO ACTION WITH TEXT/BUTTON 
		4.9.2 SUBSCRIBE FORM 

	4.10 SECTION: CONTACT US
		4.10.1 BASIC STYLES
		4.10.2 CONTACT FORM   


	4.11 SECTION: FOOTER   

-----------------------------------------*/

/*---------------------------------------
   1. IMPORT GOOGLE WEB FONTS                
-----------------------------------------*/

@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic|Raleway:500,600,700);

/* --------------------------------------
=========================================
   2. GLOBAL STYLES
=========================================
-----------------------------------------*/

/*---------------------------------------
   2.1 GENERAL STYLES                
-----------------------------------------*/

html {
	font-size: 100%;
}

body {
	background: #ffffff;
	/*font-family: 'Source Sans Pro', sans-serif;*/
	/*font-family: 'Playfair Display', serif;*/
	font-family: 'PT Serif', serif;
	font-weight:300;
/*	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;*/
	font-size: 18px;
	color: #261912;
	line-height: 25px;
	text-align: center;
	overflow-x: hidden !important;
	margin: auto !important;
}

/*---------------------------------------
   2.2 PRE LOADER              
-----------------------------------------*/
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fefefe;
	z-index: 99999;
	height: 100%;
	width: 100%;
	overflow: hidden !important;
}

.status {
	width: 40px;
	height: 40px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-image: url(../images/loading.gif);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	margin: -20px 0 0 -20px;
}

/*---------------------------------------
   2.3 ANCHOR AND BOLD TEXT           
-----------------------------------------*/
a {
	text-decoration: none;
	-webkit-transition: all ease 0.25s;
	transition: all ease 0.25s;
}

a:hover {
	text-decoration: underline;
}

a:focus {
	outline: inherit;
	color: inherit;
}

strong {
	font-weight: 700;
}

.strong {
	font-weight: 700;
}


/*---------------------------------------
   2.4 MISC FIXES         
-----------------------------------------*/
@-webkit-viewport {
	width: device-width;
}

@-moz-viewport {
	width: device-width;
}

@-ms-viewport {
	width: device-width;
}

@-o-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul,
ol {
	padding-left: 0 !important;
}

li {
	list-style: none;
}

/* --------------------------------------
=========================================
   3. COMPONENTS 
=========================================
-----------------------------------------*/

/*---------------------------------------
   3.1 BACKGROUND COLORS AND LINE               
-----------------------------------------*/

.dark-bg {
	background: #323232;
	color: #ffffff;
}

.color-bg {
	color: #ffffff;
}

.bgcolor-2 {
	background: #f7f8fa;
}

.bgcolor-white {
	background: #ffffff;
}

.colored-line {
	height: 1px;
	width: 70px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}


/*---------------------------------------
   3.2 TYPOGRAPHY               
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #323232;
	margin-bottom: 0;
	margin-top: 0;
}

h1 {
	font-size: 48px;
	line-height: 54px;
	font-weight: 300;
}

h2 {
	font-size: 2.188rem;
	line-height: 3.125rem;
	font-weight: 400;
}

h3 {
	font-size: 1.5rem;
	line-height: 2.375rem;
	font-weight: 700;
}

h4 {
	font-size: 1.25rem;
	line-height: 2rem;
	font-weight: 700;
}

h5 {
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
}

h6 {
	font-size: 16px;
	line-height: 25px;
	font-weight: 700;
}


/*---------------------------------------
   3.3 BUTTONS               
-----------------------------------------*/
.btn:focus,
.btn:active,
.btn,
.open .dropdown-toggle.btn {
	outline: inherit;
	border-color: inherit;
}

.standard-button {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	border-radius: 10px;
	padding: 10px 30px;
	border: 0;
	margin: 5px;
	line-height: inherit;
	-webkit-transition: all ease 0.25s;
	transition: all ease 0.25s;
}

.secondary-button {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 15px 30px;
	border: 0;
	margin: 5px;
	border: 1px solid #727272;
	color: #323232;
	background: #ffffff;
	line-height: inherit;
	-webkit-transition: all ease 0.25s;
	transition: all ease 0.25s;
}


/* --------------------------------------
=========================================
   4. SECTION SPECIFIC CSS
=========================================
-----------------------------------------*/

/*---------------------------------------
   4.1 SECTIONS PADDING AND COLOR OVERLAY                
-----------------------------------------*/

.section1,
.section2,
.section3,
.section4,
.section5,
.section6,
.section7 {
	padding-top: 0px;
	padding-bottom: 0px;
}

.color-overlay {
	background: rgba(255, 255, 255, 0.50);
}

.color-overlay-contact {
	background: rgba(0, 0, 0, 0.60);
}


/*========================================
   4.2 SECTION: HOME                
==========================================*/

/*---------------------------------------
   4.2.1 BASIC STYLES               
-----------------------------------------*/

header {
    /*background: url(../images/bg-image-1.jpg) no-repeat center;
    -webkit-background-size: cover;*/
    /*background-size: cover;*/
}
#section13 {
	/*background: url(../images/bg-image-1.jpg) no-repeat center;
	-webkit-background-size: cover;*/
	background-size: cover;
	/*padding-top: 250px;*/
}

header .vertical-registration-form {
	margin-top: 0px;
}

.navigation-header {
	padding-top: 17px;
	padding-bottom: 0px;
}

.navbar-brand{
	text-align:left;	
}

.intro-section {
	margin-top: 30px;
	margin-bottom: 17px;
}

.intro {
	color: #f3fef9;
}

.navbar-header img {
	max-height: 80px;
}


/*---------------------------------------
   4.2.2 NAVIGATION                
-----------------------------------------*/
/* NAV RESETS */
.navbar-nav > li > a:hover {
	background: inherit;
}

/* NORMAL NAVIGATION WITH SOCIAL ICON AND LOGO ONLY */
.non-sticky .navbar-nav.navbar-right:last-child {
	margin-right: 0;
}

.non-sticky .navbar-nav > li > a {
	font-size: 25px;
	padding: 0;
	padding-left: 5px;
	padding-top: 3px;
	color: #ffffff;
}


/* STICKY NAVIGATION */
.sticky-navigation {
	min-height: 75px;
	background: #ffffff;
	-webkit-backface-visibility: hidden;
	border: 0;
	-webkit-box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
	box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
}

.sticky-navigation .navbar-header {
	padding-top: 8px;
}

.sticky-navigation .main-navigation {
	padding-top: 13px;
}

.sticky-navigation .main-navigation .current a {
	-webkit-backface-visibility: hidden;
	outline: inherit;
	position: relative;
}

.sticky-navigation .navbar-nav > li > a {
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	color: #323232;
}


/*---------------------------------------
   4.2.3 FEATURE LIST               
-----------------------------------------*/
.feature-list-1 {
	margin-top: 0px;
	margin-bottom: 20px;
}
	
	.uses-list {
		margin: 0 90px 0 90px;	
	}

.feature-list-1 li {
	margin-top: 15px;
	margin-bottom: 25px;
}

.feature-list-1 li .icon-container {
	width: 32px;
	height: 32px;
	border-radius: 3px;
	color: #ffffff;
	line-height: 32px;
	margin-right: 15px;
	margin-top: 8px;
}

.feature-list-1 li p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
	line-height: 30px;
}


/*---------------------------------------
   4.2.4 VERTICAL REGISTRATION FORM               
-----------------------------------------*/
.vertical-registration-form {
	/*background: rgba(0, 0, 0, 0.5);
	background: #f2efea;*/
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 10px;
	width: 100%;
	max-width: 500px;
	margin: auto;
	padding-bottom: 30px;
}

.firstscreen-registration-form {
	background: rgba(0,0,0,0.5);
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 10px;
	width: 90%;
	max-width: 1000px;
	margin: auto;
	padding-bottom: 30px;
}

.darkerform{
	/*background: rgba(0, 0, 0, 0.75);*/
	background:url(../images/wood.jpg) repeat;
}

.vertical-registration-form .colored-line {
	margin-top: 0;
}

.vertical-registration-form h3 {
	color: #FFF;
	text-transform: uppercase;
	margin-top: 30px;
	margin-bottom: 30px;
}

.vertical-registration-form .input-box {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	height: 45px;
	background: #FFF;
	border-radius: 3px;
	font-size: 16px;
	color: rgba(0, 0, 0, 0.75);
	box-shadow: inherit;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}

.vertical-registration-form .input-box:focus,
.vertical-registration-form .input-box:active {
	box-shadow: inherit;
	color: #333;
}


.firstscreen-registration-form .colored-line {
	margin-top: 0;
}

.firstscreen-registration-form h3 {
	color: #FFF;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 10px;
	margin-bottom: 10px;
}

.firstscreen-registration-form .input-box {
	width: 200px;
	margin-top: 10px;
	margin-bottom: 0px;
	margin-right: 15px;
	display:inline-block;
	height: 45px;
	background: rgba(255, 255, 255, 1);
	border-radius: 3px;
	font-size: 16px;
	color: #333;
	box-shadow: inherit;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}

.firstscreen-registration-form .input-box:focus,
.firstscreen-registration-form .input-box:active {
	box-shadow: inherit;
	color: #111;
}


/*========================================
   4.3 SECTION WITH LEFT / RIGHT SCREENSHOT             
==========================================*/
/*---------------------------------------
   4.3.1 BASIC STYLES               
-----------------------------------------*/
.side-screenshot,
.side-screenshot2 {
	max-width: 532px;
}

.brief h2 {
	margin-top: 0;
	margin-bottom: 10px;
}

.brief p {
	margin-top: 45px;
}

/*---------------------------------------
   4.3.2 FEATURE LIST               
-----------------------------------------*/

.feature-list-2 {
	margin-top: 25px;
}

.feature-list-2 li {
	overflow: auto;
	padding-top: 12px;
	padding-bottom: 12px;
}

.feature-list-2 li .icon-container {
	width: 32px;
	height: 32px;
	border-radius: 3px;
	color: #ffffff;
	line-height: 32px;
	margin-right: 15px;
	margin-top: 5px;
	text-align: center;
}

.feature-list-2 li .details {
	width: 89%;
}

.feature-list-2 li .details p {
	margin-top: 5px;
}


/*========================================
   4.4 SECTION: FEATURES                
==========================================*/
.features {
	margin-top: 35px;
}

.feature {
	margin-top: 40px;
	margin-bottom: 35px;
}

.feature_inner {
	background-color: rgba(0,0,0,0.1);
	min-height: 250px;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
	
	border-left: 3px solid #0196a7;
	border-right: 3px solid #0196a7;
	
}

.feature .icon {
	font-size: 50px;
	margin-bottom: 30px;
}

.feature h4 {
	margin-bottom: 10px;
}


/*========================================
   4.5 SECTION: PRICING TABLE               
==========================================*/
.pricing-table {
	margin-top: 35px;
}

.package {
	overflow: auto;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	margin-top: 40px;
}

.package .header {
	padding-top: 20px;
	padding-bottom: 20px;
}

.package .header h3 {
	color: #ffffff;
}

.package-features .column-9p {
	width: 90%;
	float: left;
	text-align: left;
}

.package-features .column-1p {
	width: 10%;
	float: right;
	text-align: right;
	color: #323232;
}

.package-features .column-7p {
	width: 60%;
	float: left;
	text-align: left;
}

.package-features .column-3p {
	width: 40%;
	float: right;
	text-align: right;
}

.package-features ul li {
	overflow: auto;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-right: 35px;
	padding-left: 35px;
	border-bottom: 1px dotted #e3e3e3;
}

.package-features .bottom-row {
	overflow: auto;
	padding-top: 8px;
	padding-bottom: 17px;
	padding-right: 35px;
	padding-left: 35px;
}

.package-features .bottom-row h6 {
	padding-top: 5px;
}

.package-features .bottom-row .secondary-button,
.package-features .bottom-row .standard-button {
	margin: 0;
	padding: 7px 15px;
	vertical-align: middle;
}


/*========================================
   4.6 SECTION: VIDEO              
==========================================*/
/*---------------------------------------
   4.6.1 BASIC STYLE / RESET         
-----------------------------------------*/
video {
	max-width: 100%;
	height: auto;
}

iframe,
embed,
object {
	max-width: 100%;
}

.video-container {
	width: 100%;
	background: #ffffff !important;
	margin-top: 75px;
}

.video {
	background: #ffffff !important;
}


/*---------------------------------------
   4.6.2 VIDEO FEATURES         
-----------------------------------------*/
.video-features {
	margin-top: 40px;
}

.video-features .inline-icon {
	padding-right: 5px;
}


/*========================================
   4.7 SECTION: SCREENSHOTS              
==========================================*/
.screenshots {
	margin-top: 68px;
}

.shot {
	margin: 10px;
	border-radius: 3px;
	border: 5px solid #ffffff;
}

.shot img {
	max-width: 100%;
	/*width: 100%;*/
}

.shot img:hover {
	cursor: crosshair;
	opacity: 0.8;
}



/*========================================
   4.8 SECTION: CLIENTS AND FEEDBACKS              
==========================================*/
/*---------------------------------------
   4.8.1 CLIENTS LOGO        
-----------------------------------------*/
.clients {
	margin-top: 35px;
}

.client-logos li {
	display: inline-block;
	vertical-align: middle;
	margin: 15px;
}

/*---------------------------------------
   4.8.2 FEEDBACKS        
-----------------------------------------*/
.testimonials {
	margin-top: 15px;
}

.single-feedback {
	position: relative;
	margin-top: 20px;
}

.single-feedback .client-pic {
	width: 48px;
	height: 48px;
	margin: auto;
	position: relative;
	margin-bottom: -24px;
	z-index: 999;
	border: 3px solid #ffffff;
	box-shadow: 0px 0px 0px 3px #f7f8fa;
}

.single-feedback .client-pic img {
	max-width: 100%;
}

.single-feedback .box {
	margin-right: 15px;
	margin-left: 15px;
	border-radius: 3px;
	position: relative;
	background: #f7f8fa;
	padding-top: 20px;
	-webkit-box-shadow: 0px 1px 0px 0px rgba(229, 229, 229, 0.75);
	-moz-box-shadow: 0px 1px 0px 0px rgba(229, 229, 229, 0.75);
	box-shadow: 0px 1px 0px 0px rgba(229, 229, 229, 0.75);
}

.single-feedback .box .message {
	padding: 25px;
	font-style: italic;
}

.single-feedback .box:after,
.single-feedback .box:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.single-feedback .box:after {
	border-color: rgba(247, 248, 250, 0);
	border-top-color: #f7f8fa;
	border-width: 15px;
	margin-left: -15px;
}

.single-feedback .box:before {
	border-color: rgba(229, 229, 229, 0);
	border-top-color: #e5e5e5;
	border-width: 16px;
	margin-left: -16px;
}

.single-feedback .client-info {
	margin-top: 30px;
}

.single-feedback .client-info .client-name {
	line-height: 20px;
}

.single-feedback .client-info .company {
	font-size: 13px;
}


/*========================================
   4.9 SECTION: CALL TO ACTION              
==========================================*/
/*---------------------------------------
   4.9.1 CALL TO ACTION WITH TEXT/BUTTON          
-----------------------------------------*/
.cta-section {
	background: url(../images/bg-image-2.jpg) no-repeat center fixed;
	-webkit-background-size: cover;
	background-size: cover;
}

.section10 {
	background: url(../images/bg-image-3.jpg) no-repeat center fixed;
	-webkit-background-size: cover;
	background-size: cover;
}


.section12 {
/*	background: url(../images/bg-image-4.jpg) no-repeat center fixed;
	-webkit-background-size: cover;
	background-size: cover;*/
}

.cta-section h4 {
	color: #222;
}

.cta-section h2 {
	color: #222;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 40px;
}

.cta-section h3 {
	color: #222;
}

.section10 h4 {
	color: #222;
}

.section10 h2 {
	color: #222;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 40px;
}

.section10 h3 {
	color: #222;
}

.section12 h4 {
	color: #222;
}

.section12 h2 {
	color: #222;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 0px;
}

.section12 h3 {
	color: #222;
}

.cta-section .color-overlay {
	padding-top: 125px;
	padding-bottom: 125px;
}

.section10 .color-overlay {
	padding-top: 25px;
	padding-bottom: 125px;
}

.section12 .color-overlay {
	padding-top: 65px;
	padding-bottom: 65px;
}


/*---------------------------------------
   4.9.2 SUBSCRIBE FORM           
-----------------------------------------*/
.subscribe-section {
	margin-top: 75px;
}

.subscription-form .input-box {
	width: 300px;
	margin-top: 25px;
	margin-bottom: 25px;
	height: 55px;
	border-radius: 3px;
	font-size: 16px;
	color: #000000;
	box-shadow: inherit;
}

.subscription-success,
.subscription-error {
    color: #FFFFFF;
}

/*========================================
   4.10 SECTION: CONTACT US             
==========================================*/
/*---------------------------------------
   4.10.1 BASIC STYLES        
-----------------------------------------*/
.contact-us {
	/*padding-top: 75px;
	padding-bottom: 75px;*/
}

.contact-us .heading {
	margin-bottom: 10px;
}

.contact-link {
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 50px;
	font-family: 'Raleway', sans-serif;
}

.contact-link:hover {
	text-decoration: none;
}

.contact-link span {
	margin-right: 10px;
}


/*---------------------------------------
   4.10.2 CONTACT FORM        
-----------------------------------------*/
.contact-form {
	margin-top: 25px;
}

.contact-form .success,
.contact-form .error {
	display: none;
}

.contact-form .input-box,
.contact-form .textarea-box {
	margin-bottom: 15px;
	margin-top: 15px;
	outline: 0;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #e3e3e3;
	border-radius: 3px;
	color: #111111;
	padding-left: 12px;
	font-size: inherit;
	line-height: auto;
}

.contact-form .input-box {
	min-height: 50px;
}

.contact-form .textarea-box {
	min-height: 200px;
	-webkit-backface-visibility: hidden;
}

.contact-form .input-box:active,
.contact-form .textarea-box:active,
.contact-form .input-box:focus,
.contact-form .textarea-box:focus {
	color: #323232;
}

.contact-form .btn {
	margin-top: 25px;
}


/*========================================
   4.11 SECTION: FOOTER             
==========================================*/
footer {
	padding-top: 75px;
	padding-bottom: 75px;
}

.footer-logo {
	max-width: 640px;
	margin: auto;
}

.copyright {
	margin-top: 15px;
	margin-bottom: 15px;
}

.social-icons li {
	display: inline;
	margin: 2px;
}

.social-icons li a {
	font-size: 25px;
	color: #919191;
}

.social-icons li a:hover {
	text-decoration: none;
}

.pricetext{
	font-size:24px;	
}

.round {
  width: 150px;
  height: 150px;
  border-radius: 75px;
  border: 1px solid #777;
  box-shadow: 0 0 7px #666;
}

.b-popup_rasm{
    min-width:100%;
    min-height:100%;
    height: 2000px;
    background-color: rgba(255,255,255,0.5);
    overflow:hidden;
    position:fixed;
    top:0px;
    left:0px;
}
.b-popup_rasm .b-popup-content_rasm{
    margin: auto auto auto -210px;
	top: 60px;
	left: 50%;
    position:fixed;
    width:420px;
    height: 425px;
    padding:0;
    /*background-color: rgba(0,0,0,0.65);*/
    border-radius:2px;
    /*box-shadow: 0px 0px 10px #000;*/
}

.b-popup_phone{
    min-width:100%;
    min-height:100%;
    height: 2000px;
    background-color: rgba(0,0,0,0.65);
    overflow:hidden;
    position:fixed;
    top:0px;
    left:0px;
}
.b-popup_phone .b-popup-content_phone{
    margin: -160px auto auto -210px;
	top: 50%;
	left: 50%;
    position:fixed;
    width:420px;
    height: 255px;
    padding:0;
    /*background-color: rgba(0,0,0,0.65);*/
    border-radius:2px;
    /*box-shadow: 0px 0px 10px #000;*/
}

.industrypopuplink, .industrypopuplink:hover{
	text-decoration:none;
	color:inherit;
}

#yt-totop {
  background: url(../images/up-arrow.png) no-repeat center center rgba(16, 64, 48, 0.5);
  /* background: rgba(198, 39, 68, 0.5); */
  border-radius: 5px 5px 5px 5px;
  /* padding: 17px 8px; */
  color: #FFF;
  font-size: 11px;
  text-decoration: none;
  bottom: 50px;
  height: 45px;
  overflow: hidden;
  position: fixed;
  right: 30px;
  width: 45px;
  z-index: 40;
  text-indent: -999em;
}

td{
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.col-20-perc{
	width: 19.9%;
	max-width: 220px;
	text-align:center;
	display:inline-block;
	margin: 0 auto;
	padding: 0 20px;
}

.round-2 {
  width: 100px;
  height: 100px;
  border-radius: 50px;	
}

.h250 {
	height: 250px;
}

.certificate {
	width: 125px;
	height: 180px;
}

.client-logos li{
	background: rgba(255,255,255,0.5);
	width: 200px;
	height:50px;
	padding: 3px auto;
}

.client-logos li::before {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    width: 0;
}

.button-green{
	background: #104030;	
}

.button-green:hover {
	background: #52c85e;	
}

.header_feature {
	font-size:14px;
	line-height:20px;
	color:#261912;
	font-weight:500;
	font-family: 'Playfair Display', serif;
	padding-left:10px;
	padding-right:10px;
	margin: 0;
}

.partner_image{
	margin: 15px 20px;	
}

.col-md-2_my{
	position: relative;
	display:inline-block;	
}

@media(min-width:767px) {
.col-md-2_my{
	width:16.66666667%;
	min-width: 150px;
	max-width: 250px;
}
}

@media(max-width:767px) {
.col-md-2_my{
	width:33.33333333%;
	min-width: 150px;
	max-width: 250px;
}
	
}

.col-md-3_my{
	display:inline-block;	
}

.col-md-3_my{
	vertical-align:top;
	width:20%;
	min-width: 125px;
	max-width: 300px;
	margin: 5px 3px;
}


.col-md-1-7_my{
	height: 184px;
	display:inline-block;
	vertical-align:top;	
}
.col-md-1-5_my{
	display:inline-block;
	vertical-align:top;
}	

@media(min-width:910px) {
.col-md-1-7_my{
	width:20%;
	min-width: 100px;
	max-width: 250px;
}
.col-md-1-5_my{
	width:33%;
	margin: auto;
}
}

@media(max-width:910px) {
.col-md-1-7_my{
	width:30%;
	min-width: 100px;
	max-width: 150px;
	margin:auto;
}

.col-md-1-5_my{
	width:33%;
	margin: auto;
}	
}

.feature_label {
	height: 75px;	
}

@media(min-width:680px) and (max-width: 991px) {
.plantmap, .buyersmap {
	width: 654px;
}
.button-green{
	max-width: 800px;
	white-space: normal;	
}
}

@media(min-width:480px) and(max-width:680px) {
.plantmap, .buyersmap {
	width: 436px;
}
.button-green{
	max-width: 450px;
	white-space: normal;	
}
}

@media(max-width:480px) {
.plantmap, .buyersmap {
	width: 280px;
}
.button-green{
	max-width: 280px;
	white-space: normal;	
}
.req_img{
	width: 240px;
}
.partner_image{
	width: 240px;
}
}
@media(min-width:480px) {
.req_img{
	width: 320px;
}
}

.fuel_type_list{
	font-size:22px; 
	font-weight:400; 
	width:440px; 
	text-align:left; 
	margin:auto; 
	padding: 15px; 
	border: #FFF 2px solid; 
	margin-bottom:40px;
}

.phone_geo{
	margin: 0;
}


@media(min-width:680px) {
.fuel_type_list{
	font-size:22px; 
	font-weight:400;  
	width:440px; 
}
.phone_geo{
	font-size:26px;
}
.phone_geo_block{
	margin-top: 0px;
}
.intro-section{
	margin-top: 30px;
}
}

@media(min-width:400px) and (max-width:680px) {
.fuel_type_list{
	font-size:16px; 'Playfair Display', serif
	font-weight:400;
	line-height:18px;  
	width:360px; 
}
.phone_geo{
	font-size:16px;
}

.phone_geo_block{
	margin-top:0px;
}
.intro-section{
	margin-top: 0px;
}
}


@media(max-width:400px) {
.fuel_type_list{
	font-size:16px; 
	font-weight:400;
	line-height:18px;  
	width:280px; 
}
.phone_geo{
	font-size:16px;
}

.phone_geo_block{
	margin-top:0px;
}
.intro-section{
	margin-top: 0px;
}
}

@media(max-width:430px) {
.hide430{
	display:none;
}
}

.header-menu{
	position:fixed;
	width: 100%;
	height:30px;
	/* background: url(../images/wood.jpg) repeat-x;*/
	background: rgba(0,0,0,0.9);
	z-index:9999;
}

.header-menu-item{
	color:#FFF; 
	font-family: 'Playfair Display', serif;
	line-height:28px;
	font-weight:400; 
	font-size:18px;	
}

.reason-text{
	font-family: 'Playfair Display', serif;
	font-weight:700; 
	font-size:16px;
	padding: 0 10px;
}

.serv-container {
	padding-left:40px; 
	padding-right:40px;	
}

.serv-item {
	width:280px; 
	height:400px; 
	margin-bottom:20px; 
	font-size:22px;	
	font-weight:400; 
	-webkit-box-shadow: 3px -2px 5px 0px rgba(51,51,51,1);
	-moz-box-shadow: 3px -2px 5px 0px rgba(51,51,51,1);
	box-shadow: 3px -2px 5px 0px rgba(51,51,51,1);
}

.serv-img {
	width:280px; 
	height:400px; 
	display:block; 
	position:absolute;	
}

.serv-subheader {
	position:relative; 
	width:260px; 
	left:20px; 
	top:280px; 
	height:90px; 
	background: rgba(52,44,31,0.9); 
	font-family: 'Playfair Display', serif; 
	font-size:16px;
	line-height: 18px;
	font-weight:400; 
	padding: 5px; 
	text-align:left;	
}

.serv-header {
	position:relative; 
	width:210px; 
	left:60px; 
	top:135px; 
	height:60px; 
	background: rgba(118,190,41, 0.96); 
	font-family: 'Playfair Display', serif; 
	font-size:18px; 
	font-weight:700; 
	padding: 3px 7px; 
	line-height:25px; 
	text-align:left;
}

.serv-button-link{
	position:relative;
	top: 208px;
	left: 55px;
}

.serv-button{
	padding: 7px 10px;
	border-radius: 2px;
}

.header_feature_img {
  width: 100px;
  height: 100px;	
}

.round-3{
	width: 120px;
	height: 120px;
	border-radius: 60px;
}

.stage-container{
	max-width: 280px;
}

.stages-text{
	max-width:260px;
	margin:auto;
	padding-left:5px; 
	padding-right:5px; 
	font-family: 'Playfair Display', serif; 
	font-size:16px;
}

.case-row{
	vertical-align:top; 
	margin-top:20px;	
}

.case-img-block{
	display: inline-block; 
	float:none; 
	margin: auto;	
}

.case-img-row{
	padding-top: 3px;
}

.case-img-container{
	display:inline-block;
}

.case-text-block{
	display: inline-block; 
	float:none; 
	margin: auto; 
	vertical-align:top; 
}

.case-text-header{
	color:#130e0b; 
	font-size:28px;	
	font-weight:300; 
	font-family: 'Playfair Display', serif; 
	text-align:left;
}

.case-text-subheader{
	color:#130e0b; 
	font-size:18px;	
	font-weight:700; 
	font-family: 'Playfair Display', serif; 
	text-align:left; 
	margin-top:15px;
}

.case-text-textblock{
	color:#130e0b; 
	font-size:14px;	
	font-weight:300; 
	text-align:left;
}

.whydesign{
	font-size:16px;
	line-height:22px;
	color:#261912;
	font-weight:300;
	font-family: 'Playfair Display', serif;
	padding-left:10px;
	padding-right:10px;
	margin: 0;
}

.whydesign_img {
  width: 130px;
  height: 130px;	
}

.roomtypes_img{
	height:150px;
	width: 150px;
	border-radius: 75px;
	margin-top:15px;
	margin-bottom:10px;
	border: 1px #333333 solid;
}

.form-control {
	background: rgba(255,255,255,0.9)
	
}