
* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', arial, sans-serif;
}
/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
  }
  
  html {
	font-size: 62.5%;
  }
  
  body {
	font-family: "Open Sans", sans-serif;
	color: #2c343b;
	background-color: #f2f2f2;
  }
  
  a {
	color: #d44457;
	text-decoration: none;
  }
  
  img {
	max-width: 100%;
  }
  
  /* -------------------------------- 
  
  Main Components 
  
  -------------------------------- */
  .cd-header {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background-color: #21272c;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  @media only screen and (min-width: 768px) {
	.cd-header {
	  height: 70px;
	  background-color: transparent;
	}
  }
  
  #cd-logo {
	float: left;
	margin: 13px 0 0 5%;
  }
  #cd-logo img {
	display: block;
  }
  @media only screen and (min-width: 768px) {
	#cd-logo {
	  margin: 23px 0 0 5%;
	}
  }
  
  .cd-primary-nav {
	/* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
	float: right;
	margin-right: 5%;
	width: 44px;
	height: 100%;
  }
  .cd-primary-nav ul {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
  }
  .cd-primary-nav ul.is-visible {
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
  }
  .cd-primary-nav a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding-left: 5%;
	background: #21272c;
	border-top: 1px solid #333c44;
	color: #ffffff;
  }
  @media only screen and (min-width: 768px) {
	.cd-primary-nav {
	  /* reset navigation values */
	  width: auto;
	  height: auto;
	  background: none;
	}
	.cd-primary-nav ul {
	  position: static;
	  width: auto;
	  -webkit-transform: translateY(0);
	  -moz-transform: translateY(0);
	  -ms-transform: translateY(0);
	  -o-transform: translateY(0);
	  transform: translateY(0);
	  line-height: 70px;
	}
	.cd-primary-nav ul.is-visible {
	  -webkit-transform: translateY(0);
	  -moz-transform: translateY(0);
	  -ms-transform: translateY(0);
	  -o-transform: translateY(0);
	  transform: translateY(0);
	}
	.cd-primary-nav li {
	  display: inline-block;
	  margin-left: 1em;
	}
	.cd-primary-nav a {
	  display: inline-block;
	  height: auto;
	  font-weight: 600;
	  line-height: normal;
	  background: transparent;
	  padding: .6em 1em;
	  border-top: none;
	}
  }
ul {
	list-style: none;
}
p {
	color: #5a5a5a;
	font-size: 15px;
	letter-spacing: 0.25px;
	line-height: 24px;
}
.primary-button a {
	display: inline-block;
	background-color: #a2cf8d;
	padding: 12px 18px;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 20px;
	transition: all 0.5s;
}
.primary-button a:hover {
	background-color: #5c9d7d;
}
.white-button a {
	display: inline-block;
	background-color: #fff;
	padding: 12px 18px;
	color: #121212;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 20px;
	transition: all 0.5s;
}
.white-button a:hover {
	background-color: #121212;
	color: #fff;
}
.section-heading h4 {
	text-align: center;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: 700;
	color: #121212;
}
.section-heading .line-dec {
	width: 60px;
	height: 3px;
	background-color: #121212;
	margin: 0 auto;
}
.header {
    background-color: #5a5a5a;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 10000;
    transition: all 0.02s ease-in-out;
    height: 80px;
    background-color:transparent;  
    text-align: center;
    line-height: 40px;
}

.navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav>li>a {
    text-shadow: none;
}

.navbar-brand {
	line-height: 80px;
	padding: 0px;
}

.navbar-nav>li>a {
	color: black!important;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	text-shadow: none;
	line-height: 80px;
	padding: 0px;
	letter-spacing: 0.5px;
}

.navbar-nav>li {
	margin-left: 45px;
}

.header.active .navbar-nav>li>a {
	font-size: 15px;
	font-weight: 300;
	text-transform: uppercase;
	text-shadow: none;
	color: #121212!important;
}

.header.active {
    background-color: rgba(250, 250, 250, 0.98);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}
.navbar-brand .logo{
	/*margin-top: 2px;*/
	margin-right: 12px;
	/*background-image: url(img1/Nisarg_vent_logo.png);*/
	display: inline-block;
	width: 175px;
	height: 32px;
	background-repeat: no-repeat;
	
}
.header.active .navbar-brand .logo{
	/*margin-top: 2px;*/
	margin-right: 12px;
	/*background-image: url(img1/Nisarg_vent_logo.png);*/
	display: inline-block;
	width: 160px;
	height: 32px;
	background-repeat: no-repeat;
}
#main-nav {
	background-color: transparent;
	background-image: none!important;
}
.header .navbar-brand {
    font-weight: 900;
}
.navbar-inverse {
	background-image: none;
	background-color: transparent;
}
.header .navbar {
    margin: 0;
    border: none;
}
.page-section {
    padding: 80px 0;
}
.navbar-inverse .navbar-toggle {
	margin-top: 22px;
    border-color: #a2cf8d;
    background-color: #a2cf8d;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
	background-color: #a2cf8d;
}
bootstrap.min.css.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 15px!important;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
@media (min-width: 768px) {
    .header .navbar-brand {
        padding-left: 0;
    }
    .navbar-nav {
        float: right;
    }
}
@media (max-width: 480px) {
    .page-section h1 {
        font-size: 3em;
    }
    .page-section h2 {
        font-size: 2em;
    }
    .page-section p {
        font-size: 1em;
        margin: 0 0 20px;
    }
}
/*-----About-------*/
#about
{
	padding-top:90px;
    padding-bottom: 40px;
}

.about-content p
{
    padding-top: 15px;
	font-size: 16px;
	text-align: justify;
}

.about-content1 #p1,#p2,#p3,#p4,#p5,#p6
{
	font-size: 16px;
	text-align: justify;
}

#about img
{
    margin-top: 50px;
    float: left;
    height: 180px;
    width: 550px;
}

/*---Get In Touch---*/
#contact
{
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-form
{
    padding: 15px;
}

.form-control
{
    border-radius: 0 !important;
    border: none !important;
}

::placeholder
{
    color: #999 !important;
}

.follow
{
    background: #fff;
    padding:10px;
    margin: 15px;
}

.contact-info .fa{
    margin: 10px;
    color: #007bff;
    font-weight: bold;
}

#contact .section-heading h3 {
	color: black;
	font-weight: 500;
}

#contact .section-heading .line-dec {
	background-color: #fff;
}

#contact .section-heading {
	margin-bottom: 60px;
}

#contact {
	background-image: url(../img1/contact_us_21.jpg);
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 80px 0px;
}

/* FOOTER */

footer {
	background-color: #202628;
	padding: 8px;
}

footer p {
	font-size: 12px;
	color: #fff;
	margin-bottom: 0px;
	margin-top: 5px;
}

 /* RESPONSIVE */
  
 @media (max-width: 767px){
	#main-nav {
		border-color: rgba(250, 250, 250, 0.95);
		margin-top: 16px;
		background-color: rgba(250, 250, 250, 0.95);
		box-shadow: 0px 5px 10px #cdcdcd;
	}
	.navbar-nav {
		padding: 0px;
		margin-top: 0px;
		margin-top: 0px;
	}
	.navbar-nav>li {
		margin-left: 0px;
		border-bottom: 1px solid #eee;
	}
	.navbar-nav>li:last-child {
		border-bottom: none;
	}
	.navbar-nav>li>a {
		line-height: 50px;
		color: #121212!important;
	}
}

@media (max-width: 768px){
	.cd-hero .slide-caption span {
		font-size: 13px;
	}

	.cd-hero .slide-caption h2 {
		font-size: 28px;
	}
}


@media (max-width: 1015px){
	.slide-caption .content-caption p {
		padding: 0 10%;
	}

	#what-we-do .right-image {
		margin-top: 60px;
	}

	footer {
		text-align: center;
	}

	footer ul {
		float: none;
	}
}